/* ═══════════════════════════════════════════════════════════════════════
   BEISPIEL-WEBSITE "Salon Lena" — Arbeitsprobe von Leadcrown
   Weicher Blush-Stil: grosse, leichte Serifenschrift (Fraunces), warmes
   Rosé, stark gerundete Karten, sanfte rosa-getoente Schatten.
   Keine Fotos noetig — gestaltete Flaechen wirken fertig, nicht platzhalterhaft.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --r-sm: 14px; --r: 22px; --r-lg: 30px; --r-full: 999px;

  /* Farbwelt: warm, hell, rosé */
  --blush:    #FFF6F4;   /* Grund */
  --blush-2:  #FCEBE7;   /* zweite Stufe / Sektionen */
  --creme:    #FFFDFC;   /* Karten */
  --plum:     #4E3A47;   /* Ueberschriften */
  --plum-70:  #6B5361;   /* Fliesstext */
  --plum-40:  #7C6672;   /* Nebentext, haelt 4,9:1 auf Blush */
  --rose:     #B0466A;   /* Akzent (Text + Flaeche) */
  --rose-hell:#E79BB0;   /* dekorativ */
  --rose-tief:#8F3352;   /* Hover */
  --lila:     #8E63B8;   /* zweiter Akzent, sparsam */
  --gold:     #8C6524;   /* Sterne, antikes Gold, haelt Kontrast */
  --linie:    rgba(78, 58, 71, .1);

  --f-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --f-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.2, 0, 0, 1);
  --smooth: cubic-bezier(0.22, 1, 0.36, 1);        /* weiche, langsame Einblendung */
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);     /* federnder Hover mit Ueberschwingen */
  --dur: 240ms;
  --wrap: 1120px;
  --pad: clamp(20px, 5vw, 44px);

  --sh-sm: 0 4px 16px -8px rgba(176,70,106,.28), inset 0 1px 0 rgba(255,255,255,.6);
  --sh-md: 0 14px 40px -14px rgba(176,70,106,.28), 0 2px 6px rgba(78,58,71,.05), inset 0 1px 0 rgba(255,255,255,.7);
  --sh-lg: 0 34px 80px -26px rgba(176,70,106,.36), 0 6px 18px -8px rgba(78,58,71,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: 17px; line-height: 1.75;
  color: var(--plum-70);
  background: var(--blush);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--rose); color: var(--creme); }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: var(--r-sm); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.sec { padding-block: var(--s-9); }
.sec--2 { background: var(--blush-2); }

/* Serifen-Ueberschriften, leicht (nicht fett) — der Kern des Looks */
h1, h2, h3 { font-family: var(--f-display); color: var(--plum); font-weight: 400; text-wrap: balance; }
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.08; letter-spacing: -.01em; margin-bottom: var(--s-4); }
h3 { font-size: 1.35rem; line-height: 1.25; }
p { max-width: 60ch; }

.label {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-family: var(--f-body); font-size: .76rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--rose); margin-bottom: var(--s-4);
}
.label::before { content: ''; width: 26px; height: 1px; background: var(--rose); opacity: .6; }
.lead { font-size: 1.2rem; line-height: 1.7; color: var(--plum-70); max-width: 48ch; }

/* Bewertungs-Badge (Pille) */
.badge {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: var(--creme); border: 1px solid var(--linie); border-radius: var(--r-full);
  padding: var(--s-2) var(--s-4); box-shadow: var(--sh-sm);
  font-size: .9rem; color: var(--plum); margin-bottom: var(--s-5);
}
.badge__stars { color: var(--gold); letter-spacing: 1px; }
.badge b { font-weight: 700; }
.badge span { color: var(--plum-40); }

/* Demo-Hinweis */
.demo-bar { position: relative; z-index: 60; background: var(--plum); color: var(--blush); font-size: .8rem; text-align: center; padding: var(--s-2) var(--s-4); }
.demo-bar strong { color: var(--rose-hell); }
.demo-bar a { text-decoration: underline; text-underline-offset: 3px; }

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 246, 244, .8);
  backdrop-filter: blur(14px) saturate(150%); -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid var(--linie);
}
.nav__in { height: 80px; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); }
.logo { font-family: var(--f-display); font-weight: 400; font-size: 1.5rem; color: var(--plum); display: inline-flex; align-items: center; gap: var(--s-3); }
.logo em { font-style: italic; color: var(--rose); }
.logo__mark { width: 38px; height: 38px; border-radius: var(--r-full); background: linear-gradient(150deg, var(--rose-hell), var(--rose)); display: grid; place-items: center; box-shadow: var(--sh-sm); }
.logo__mark svg { width: 19px; height: 19px; color: var(--creme); }
.nav__links { display: flex; align-items: center; gap: var(--s-6); }
.nav__links a { font-size: .95rem; color: var(--plum-70); transition: color var(--dur) var(--ease); }
.nav__links a:hover { color: var(--rose); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  height: 52px; padding-inline: var(--s-6);
  border: 1px solid transparent; border-radius: var(--r-full);
  font-family: var(--f-body); font-weight: 700; font-size: .95rem; white-space: nowrap;
  transition: transform .28s var(--spring), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; transition: transform .28s var(--spring); }
.btn--fill { background: var(--rose); color: var(--creme); box-shadow: 0 10px 26px -10px rgba(176,70,106,.6); }
.btn--fill:hover { background: var(--rose-tief); transform: translateY(-3px); box-shadow: 0 18px 38px -12px rgba(176,70,106,.75); }
.btn--fill:hover svg { transform: translateX(4px); }
.btn--fill:active { transform: translateY(0); }
.btn--line { border-color: var(--linie); color: var(--plum); background: var(--creme); }
.btn--line:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
.btn--sm { height: 46px; padding-inline: var(--s-5); font-size: .9rem; }

/* ── Gestaltete Bildflaechen ── */
.art {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background:
    radial-gradient(120% 90% at 18% 12%, rgba(231,155,176,.5), transparent 55%),
    radial-gradient(130% 100% at 88% 92%, rgba(142,99,184,.22), transparent 55%),
    linear-gradient(160deg, #FCE7E2, #F6DCE2);
  box-shadow: var(--sh-md); display: grid; place-items: center; isolation: isolate;
}
.art::before, .art::after { content: ''; position: absolute; border-radius: var(--r-full); z-index: 0; }
.art::before { width: 44%; aspect-ratio: 1; top: -12%; right: -8%; background: rgba(255,253,252,.45); }
.art::after  { width: 32%; aspect-ratio: 1; bottom: -10%; left: -6%; background: rgba(176,70,106,.12); }
.art__illu { position: relative; z-index: 1; width: 46%; max-width: 180px; color: var(--rose); }
.art--gross { aspect-ratio: 5 / 6; }
.art__cap {
  position: absolute; z-index: 2; left: var(--s-4); bottom: var(--s-4);
  font-family: var(--f-display); font-weight: 400; font-size: 1.1rem; color: var(--plum);
  background: rgba(255,253,252,.92); padding: var(--s-2) var(--s-4); border-radius: var(--r-full); box-shadow: var(--sh-sm);
}
/* ── Schwebende, weichgezeichnete Farbflecken im Hintergrund (das Signatur-Element) ── */
.blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(55px); opacity: .6; will-change: transform; }
.blob--1 { width: clamp(340px, 46vw, 560px); aspect-ratio: 1; top: -10%; left: -8%;
  background: radial-gradient(circle, rgba(233,142,168,1), transparent 68%); animation: floatY 14s ease-in-out infinite; }
.blob--2 { width: clamp(280px, 40vw, 500px); aspect-ratio: 1; bottom: -12%; right: -8%;
  background: radial-gradient(circle, rgba(160,115,205,.85), transparent 68%); animation: floatSlow 18s ease-in-out infinite; }
.blob--3 { width: clamp(240px, 32vw, 420px); aspect-ratio: 1; top: 42%; right: 18%;
  background: radial-gradient(circle, rgba(238,170,150,.8), transparent 68%); animation: floatY 16s ease-in-out infinite 3s; }
.sec, .hero, .termin { position: relative; }
.sec > .wrap, .hero > .wrap, .termin > .wrap, .marquee { position: relative; z-index: 1; }

@keyframes floatY { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(14px,-28px,0); } }
@keyframes floatSlow { 0%,100% { transform: translate3d(0,0,0) rotate(0deg); } 50% { transform: translate3d(-12px,-18px,0) rotate(4deg); } }

.float { position: absolute; z-index: 3; background: var(--creme); border: 1px solid var(--linie);
  border-radius: var(--r); box-shadow: var(--sh-lg); padding: var(--s-3) var(--s-4); animation: floatCard 6s ease-in-out infinite; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float--seit { right: calc(var(--s-4) * -1); top: var(--s-7); }
.float--rate { left: calc(var(--s-4) * -1); bottom: var(--s-7); display: flex; align-items: center; gap: var(--s-3); animation-delay: -2.5s; }
.float__stars { color: var(--gold); font-size: .95rem; letter-spacing: 1px; }
.float b { font-family: var(--f-display); color: var(--plum); font-size: 1.15rem; display: block; line-height: 1.1; }
.float span { font-size: .78rem; color: var(--plum-40); }
@media (max-width: 560px) { .float--seit { right: var(--s-3); } .float--rate { left: var(--s-3); } }

/* ── Echte Fotos: gerundeter Rahmen, sanfte 3D-Neigung ── */
.foto { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); position: relative; background: var(--blush-2); }
.foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.foto--hero { aspect-ratio: 4 / 3; }
@media (min-width: 940px) { .foto--hero { aspect-ratio: 5 / 5.4; } }
.hero__art { perspective: 1000px; }
.hero__art .foto--hero { transform: rotate(1.2deg); transition: transform .5s var(--smooth); will-change: transform; }

/* ── Laufende Bilder-Leiste (Marquee), GPU-glatt und nahtlos ── */
.marquee { overflow-x: auto; overflow-y: hidden; padding-block: var(--s-5); cursor: grab;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee::-webkit-scrollbar { display: none; }
.marquee.is-dragging { cursor: grabbing; }
.marquee__track { display: flex; gap: var(--s-4); width: max-content; will-change: scroll-position; }
.marquee__item { width: clamp(240px, 34vw, 340px); aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-md); flex: none; position: relative; transition: transform .4s var(--smooth); }
@media (hover: hover) { .marquee:not(.is-dragging) .marquee__item:hover { transform: translateY(-6px) scale(1.015); } }
.marquee.is-dragging .marquee__item { transition: none; }
.marquee__item img { pointer-events: none; }
.marquee__item img { width: 100%; height: 100%; object-fit: cover; }
.marquee__item span { position: absolute; left: var(--s-3); bottom: var(--s-3); background: rgba(255,253,252,.92); color: var(--plum); font-family: var(--f-display); font-size: .95rem; padding: 4px var(--s-3); border-radius: var(--r-full); box-shadow: var(--sh-sm); }
@keyframes slide { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } .float, .blob, .orb, .fl { animation: none; } }

/* ── Hero: zentriert nach Vorbild, mit Lichtschein und schwebenden Foto-Karten ── */
.hero3d {
  position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden;
  padding: calc(var(--s-9) + 40px) 0 var(--s-9);
  background: radial-gradient(120% 80% at 50% 0, var(--blush) 0, var(--creme) 55%), var(--creme);
}
.hero3d__inner {
  position: relative; z-index: 3; text-align: center;
  display: flex; flex-direction: column; align-items: center; max-width: 860px;
}
/* Weicher Lichtschein hinter dem Text — hält die Schrift über der Wirbelsäule lesbar */
.hero3d__inner::before {
  content: ''; position: absolute; inset: -18% -20%; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 54% at 50% 46%, rgba(255,253,250,.94) 0, rgba(255,253,250,.66) 44%, transparent 76%);
}
.hero3d .badge { margin-bottom: var(--s-5); }
.hero3d__title {
  font-family: var(--f-display); font-weight: 400; color: var(--plum);
  font-size: clamp(3rem, 9vw, 6.6rem); line-height: .96; letter-spacing: -.02em;
  margin: .2rem 0 var(--s-5); text-shadow: 0 2px 30px rgba(255,253,250,.6);
}
/* Handschrift-Akzentzeile (Caveat, lila) — die Signatur des Vorbilds */
.hero3d__script {
  display: inline-block; font-family: 'Caveat', var(--f-display), cursive;
  font-weight: 700; font-style: normal; color: #9A63C4;
  font-size: 1.28em; line-height: .9; letter-spacing: 0;
  transform: rotate(-2deg); margin-top: .06em;
}
.hero3d__lead { max-width: 52ch; margin: 0 auto var(--s-6); }
.hero3d .hero__cta { justify-content: center; }

/* Vertrauens-Zeile unter den Buttons */
.hero__trust { display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--s-2) var(--s-5); margin-top: var(--s-6); font-size: .95rem; color: var(--plum-70); }
.hero__trust li { display: flex; align-items: center; gap: var(--s-2); }
.hero__trust svg { width: 18px; height: 18px; color: var(--rose); flex: none; }

/* 3D-Wirbelsäule (Three.js) — das Canvas ist der Hero-Hintergrund */
.hero3d__canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; display: block; width: 100%; height: 100%; }
/* Nur auf Seiten MIT 3D-Wirbelsäule ersetzt die Szene Orbs + Ornamente;
   Seiten ohne Canvas behalten die weichen Orbs/Ornamente als Hintergrund. */
.hero3d:has(.hero3d__canvas) .orb,
.hero3d:has(.hero3d__canvas) .floral { display: none; }

/* Zwei weiche Orbs (wie im Vorbild) */
.orb { position: absolute; z-index: 0; border-radius: 50%; filter: blur(60px); opacity: .4;
  pointer-events: none; will-change: transform; }
.orb--rose { width: clamp(320px, 42vw, 520px); aspect-ratio: 1; top: -140px; left: -100px;
  background: radial-gradient(circle, #F48FB1 0, transparent 70%); animation: floatY 14s ease-in-out infinite; }
.orb--gold { width: clamp(300px, 38vw, 460px); aspect-ratio: 1; bottom: -160px; right: -120px;
  background: radial-gradient(circle, #F6B6CF 0, transparent 70%); animation: floatY 14s ease-in-out -5s infinite; }

/* Botanische Linien-Ornamente */
.floral { position: absolute; inset: 0; z-index: 1; pointer-events: none; color: var(--rose-hell); }
.fl { position: absolute; opacity: .5; will-change: transform; }
.fl--1 { width: 120px; top: 8%; left: 3%; opacity: .55; animation: sway 12s ease-in-out infinite; }
.fl--2 { width: 150px; bottom: 9%; right: 4%; opacity: .5; color: var(--rose); animation: sway 15s ease-in-out infinite -4s; }
.fl--3 { width: 96px; top: 18%; right: 8%; opacity: .4; animation: sway 13s ease-in-out infinite -7s; }
@keyframes sway { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(6deg); } }
@media (max-width: 720px) { .fl--3 { display: none; } .fl--1 { width: 84px; } .fl--2 { width: 100px; } }

/* Scroll-Indikator (scrollPulse wie im Vorbild) */
.scrolldown {
  position: absolute; bottom: var(--s-6); left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-2);
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--plum-40);
}
.scrolldown__line { position: relative; width: 2px; height: 46px; overflow: hidden; border-radius: 2px; background: rgba(78,58,71,.12); }
.scrolldown__line::after { content: ''; position: absolute; inset: 0; transform-origin: top;
  background: linear-gradient(var(--rose), transparent); animation: scrollPulse 1.9s ease-in-out infinite; }
@keyframes scrollPulse { 0% { transform: scaleY(0); opacity: 0; } 40% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1) translateY(46px); opacity: 0; } }

/* ── (alter Hero, noch von anderen Stellen genutzt) ── */
.hero { padding-block: var(--s-9) var(--s-8); }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-8); align-items: center; }
@media (min-width: 940px) { .hero__grid { grid-template-columns: 1.05fr .95fr; gap: var(--s-8); } }
.hero h1 { font-size: clamp(3rem, 7vw, 5.2rem); line-height: 1.0; letter-spacing: -.015em; color: var(--plum); margin-bottom: var(--s-5); max-width: 12ch; }
.hero h1 em { font-style: italic; color: var(--rose); }
.hero .lead { margin-bottom: var(--s-6); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-7); }
.hero__chips { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); font-size: .95rem; color: var(--plum-70); }
.hero__chips li { display: flex; align-items: center; gap: var(--s-2); }
.hero__chips svg { width: 18px; height: 18px; color: var(--rose); flex: none; }
.hero__art { position: relative; }
.hero__art .art__illu { max-width: 220px; }

/* ── Info-Leiste (Adresse / Zeiten / Telefon) ── */
.infobar { margin-top: calc(var(--s-8) * -1); position: relative; z-index: 5; }
.infobar__card {
  background: var(--creme); border: 1px solid var(--linie); border-radius: var(--r-lg); box-shadow: var(--sh-md);
  display: grid; grid-template-columns: 1fr; gap: var(--s-5); padding: var(--s-6);
}
@media (min-width: 720px) { .infobar__card { grid-template-columns: repeat(3, 1fr); } }
.infobar__item { display: flex; gap: var(--s-3); align-items: flex-start; }
.infobar__ic { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: var(--r-full); background: var(--blush-2); color: var(--rose); }
.infobar__ic svg { width: 20px; height: 20px; }
.infobar__item strong { font-family: var(--f-display); font-weight: 400; color: var(--plum); font-size: 1.1rem; display: block; }
.infobar__item span { font-size: .92rem; color: var(--plum-40); }

/* ── Einblicke (gestaltete Kacheln) ── */
.galerie { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-7); }
@media (min-width: 620px) { .galerie { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .galerie { grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 1fr; } }
@media (min-width: 960px) { .galerie > :first-child { grid-row: span 2; } }
.galerie .art { min-height: 200px; height: 100%; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.galerie a:hover .art { transform: translateY(-4px); box-shadow: var(--sh-lg); }

/* ── Leistungen (weiche Karten) ── */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-7); }
@media (min-width: 620px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc {
  background: var(--creme); border: 1px solid var(--linie); border-radius: var(--r-lg);
  padding: var(--s-6); box-shadow: var(--sh-sm);
  transition: transform .3s var(--spring), box-shadow .3s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.svc__ic { transition: transform .3s var(--spring); }
.svc:hover .svc__ic { transform: scale(1.08) rotate(-4deg); }
.svc__ic { width: 52px; height: 52px; display: grid; place-items: center; border-radius: var(--r-full);
  background: linear-gradient(150deg, var(--rose-hell), var(--rose)); color: var(--creme); margin-bottom: var(--s-4); box-shadow: var(--sh-sm); }
.svc__ic svg { width: 26px; height: 26px; }
.svc h3 { margin-bottom: var(--s-2); }
.svc p { font-size: .96rem; margin-bottom: var(--s-3); }
.svc__preis { font-family: var(--f-display); color: var(--rose); font-size: 1.1rem; }

/* ── Warum ── */
.warum { display: grid; grid-template-columns: 1fr; gap: var(--s-5); margin-top: var(--s-7); }
@media (min-width: 720px) { .warum { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
.warum li { display: grid; grid-template-columns: 28px 1fr; gap: var(--s-4); }
.warum svg { width: 26px; height: 26px; color: var(--rose); margin-top: 2px; }
.warum strong { font-family: var(--f-display); font-weight: 400; color: var(--plum); font-size: 1.2rem; display: block; margin-bottom: var(--s-1); }
.warum p { font-size: .96rem; }

/* ── 3 Schritte ── */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--s-5); margin-top: var(--s-7); }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); } }
.step { text-align: center; }
.step__no { width: 64px; height: 64px; margin: 0 auto var(--s-4); display: grid; place-items: center; border-radius: var(--r-full);
  background: var(--creme); border: 1px solid var(--linie); box-shadow: var(--sh-md);
  font-family: var(--f-display); font-size: 1.6rem; color: var(--rose); }
.step h3 { margin-bottom: var(--s-2); }
.step p { font-size: .96rem; margin-inline: auto; }

/* ── Team (Monogramm-Avatare) ── */
.team { display: grid; grid-template-columns: 1fr; gap: var(--s-6); margin-top: var(--s-7); }
@media (min-width: 620px) { .team { grid-template-columns: repeat(3, 1fr); } }
.ava { aspect-ratio: 1; border-radius: var(--r-lg); display: grid; place-items: center; box-shadow: var(--sh-md); position: relative; overflow: hidden; }
.ava--1 { background: linear-gradient(150deg, #E79BB0, #B0466A); }
.ava--2 { background: linear-gradient(150deg, #D69ACB, #8E63B8); }
.ava--3 { background: linear-gradient(150deg, #E7A6A0, #B85A6E); }
.ava__mono { font-family: var(--f-display); font-weight: 400; font-size: clamp(3rem, 9vw, 4.6rem); color: rgba(255,253,252,.95); }
.ava::after { content: ''; position: absolute; width: 58%; aspect-ratio: 1; border-radius: var(--r-full); top: -16%; right: -12%; background: rgba(255,253,252,.14); }
.person__name { font-family: var(--f-display); font-weight: 400; color: var(--plum); margin-top: var(--s-4); font-size: 1.25rem; }
.person__rolle { font-size: .92rem; color: var(--plum-40); }

/* ── Testimonials ── */
.stimmen { display: grid; grid-template-columns: 1fr; gap: var(--s-5); margin-top: var(--s-7); }
@media (min-width: 800px) { .stimmen { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); } }
.stimme { background: var(--creme); border: 1px solid var(--linie); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--sh-sm); position: relative; }
.stimme__q { font-family: var(--f-display); font-size: 3.4rem; line-height: .6; color: var(--rose-hell); }
.stimme p { font-size: .98rem; color: var(--plum-70); margin: var(--s-3) 0 var(--s-4); }
.stimme__stars { color: var(--gold); letter-spacing: 1px; font-size: .9rem; margin-bottom: var(--s-2); }
.stimme__name { font-family: var(--f-display); color: var(--plum); }

/* ── Zeiten ── */
.zeiten { margin-top: var(--s-5); max-width: 460px; }
.zeiten li { display: grid; grid-template-columns: 1fr auto; gap: var(--s-4); padding-block: var(--s-3); border-bottom: 1px solid var(--linie); font-size: 1rem; }
.zeiten li:first-child { border-top: 1px solid var(--linie); }
.zeiten strong { font-weight: 600; color: var(--plum); }
.zeiten span { color: var(--plum-40); }
.zeiten .zu span { color: var(--rose); }

/* ── Abschluss ── */
.termin { text-align: center; }
.termin__card {
  background: linear-gradient(155deg, #FCE7E2, #F3D6DE);
  border: 1px solid var(--linie); border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: clamp(var(--s-7), 8vw, var(--s-9)) var(--s-6);
}
.termin h2 { margin-inline: auto; }
.termin p { margin: 0 auto var(--s-6); color: var(--plum-70); }
.termin__wege { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3); }

/* ── Footer ── */
.fuss { background: var(--plum); color: rgba(255,246,244,.6); padding-block: var(--s-6); font-size: .85rem; }
.fuss__in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3); align-items: center; }
.fuss a { color: var(--rose-hell); text-decoration: underline; text-underline-offset: 3px; }

/* Einblenden: langsam und weich wie beim Vorbild (0,9s, 42px Weg) */
html.js [data-in] { opacity: 0; transform: translate3d(0, 42px, 0); transition: opacity .9s var(--smooth), transform .9s var(--smooth); will-change: opacity, transform; }
html.js [data-in].is-in { opacity: 1; transform: none; }
/* Gestaffelt: Kinder erscheinen nacheinander — per ANIMATION (nicht transition),
   damit der eigene Hover-Uebergang der Karten (federnd) nicht ueberschrieben wird. */
html.js [data-stagger] > * { opacity: 0; }
html.js [data-stagger].is-in > * { animation: revealUp .8s var(--smooth) both; }
html.js [data-stagger].is-in > :nth-child(2) { animation-delay: .09s; }
html.js [data-stagger].is-in > :nth-child(3) { animation-delay: .18s; }
html.js [data-stagger].is-in > :nth-child(4) { animation-delay: .27s; }
html.js [data-stagger].is-in > :nth-child(5) { animation-delay: .36s; }
html.js [data-stagger].is-in > :nth-child(6) { animation-delay: .45s; }
@keyframes revealUp { from { opacity: 0; transform: translate3d(0, 34px, 0); } to { opacity: 1; transform: none; } }

@media (max-width: 820px) { .nav__links a:not(.btn) { display: none; } }
/* Unter 420px passt selbst der CTA nicht neben das Logo — dann nur Logo. */
@media (max-width: 420px) { .nav__links { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html.js [data-in], html.js [data-stagger] > * { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   MEHRSEITEN-STRUKTUR
   ═══════════════════════════════════════════════════════════ */

/* ── Navigation über mehrere Seiten ── */
.nav__links { gap: var(--s-5); }
.nav__links a[aria-current="page"] { color: var(--rose); font-weight: 700; }
.nav__toggle { display: none; }

@media (max-width: 900px) {
  .nav__links a:not(.btn) { display: inline-block; }   /* hebt die alte Ausblend-Regel auf */
  .nav__toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 42px; padding: 0 11px; border: 1px solid var(--linie);
    border-radius: var(--r); background: var(--creme); cursor: pointer;
  }
  .nav__toggle span { display: block; height: 2px; width: 100%; background: var(--plum); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255, 246, 244, .98); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--linie); box-shadow: var(--sh-lg);
    padding: var(--s-3) var(--pad) var(--s-5);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(.btn) { padding: var(--s-3) 0; font-size: 1.08rem; border-bottom: 1px solid var(--linie); }
  .nav__links .btn { margin-top: var(--s-4); justify-content: center; }
}

/* ── Teaser-Karten auf der Startseite (Wege in die Unterseiten) ── */
.teasers { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: var(--s-5); margin-top: var(--s-7); }
.teaser { display: block; background: var(--creme); border: 1px solid var(--linie); border-radius: var(--r-lg);
  padding: var(--s-6); box-shadow: var(--sh-sm); transition: transform .3s var(--spring), box-shadow .3s var(--ease); }
.teaser:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.teaser__ic { width: 48px; height: 48px; border-radius: var(--r); background: var(--blush-2); display: grid; place-items: center; color: var(--rose); margin-bottom: var(--s-4); transition: transform .3s var(--spring); }
.teaser:hover .teaser__ic { transform: scale(1.08) rotate(-4deg); }
.teaser__ic svg { width: 24px; height: 24px; }
.teaser h3 { margin-bottom: var(--s-2); }
.teaser p { font-size: .98rem; color: var(--plum-70); }
.teaser__go { margin-top: var(--s-4); color: var(--rose); font-weight: 700; font-size: .95rem; display: inline-flex; align-items: center; gap: 6px; }
.teaser__go svg { width: 16px; height: 16px; transition: transform .3s var(--spring); }
.teaser:hover .teaser__go svg { transform: translateX(4px); }

/* kompakter Hero (z.B. Kontaktseite) */
.hero3d--kurz { min-height: 76svh; }

/* ── Kontakt-Layout + Formular ── */
.kontakt-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-6); margin-top: var(--s-7); }
@media (min-width: 880px) { .kontakt-grid { grid-template-columns: 1.1fr .9fr; gap: var(--s-8); align-items: start; } }
.form { background: var(--creme); border: 1px solid var(--linie); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--sh-sm); }
.form__row { display: grid; gap: var(--s-2); margin-bottom: var(--s-4); }
.form__row label { font-size: .9rem; color: var(--plum); font-weight: 600; }
.form input, .form textarea {
  width: 100%; font: inherit; color: var(--plum); background: var(--blush);
  border: 1px solid var(--linie); border-radius: var(--r); padding: var(--s-3) var(--s-4);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(176,70,106,.14); }
.form textarea { resize: vertical; min-height: 130px; }
.form__hinweis { font-size: .82rem; color: var(--plum-40); margin-top: var(--s-3); }
.kontakt-side { display: grid; gap: var(--s-5); }
.kontakt-karte { background: var(--creme); border: 1px solid var(--linie); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--sh-sm); }
.kontakt-karte h3 { margin-bottom: var(--s-4); }
.kontakt-karte ul { display: grid; gap: var(--s-3); }
.kontakt-karte li { display: flex; align-items: flex-start; gap: var(--s-3); color: var(--plum-70); }
.kontakt-karte li svg { width: 20px; height: 20px; color: var(--rose); flex: none; margin-top: 2px; }
.kontakt-karte a { color: var(--plum); }
.kontakt-karte a:hover { color: var(--rose); }
.map-fake { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--linie); box-shadow: var(--sh-sm);
  aspect-ratio: 16 / 9; background:
    linear-gradient(rgba(176,70,106,.05), rgba(160,115,205,.06)),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(78,58,71,.06) 28px 29px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(78,58,71,.06) 28px 29px),
    var(--blush-2);
  display: grid; place-items: center; text-align: center; color: var(--plum-40); font-size: .9rem; padding: var(--s-5); }
body.theme-dark .form, body.theme-dark .kontakt-karte { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
body.theme-dark .form input, body.theme-dark .form textarea { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: #EDE9F5; }

/* ── Stellen (Karriere) ── */
.jobs { display: grid; gap: var(--s-4); margin-top: var(--s-7); }
.job { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-4);
  background: var(--creme); border: 1px solid var(--linie); border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6); box-shadow: var(--sh-sm); transition: transform .3s var(--spring), box-shadow .3s var(--ease); }
.job:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.job__t strong { font-family: var(--f-display); font-size: 1.3rem; color: var(--plum); display: block; line-height: 1.2; }
.job__t span { font-size: .92rem; color: var(--plum-40); }

/* ── Theme-Tönungen (heller Hero je Seite) ── */
body[data-spine-theme="warm"] .hero3d { background: radial-gradient(120% 80% at 50% 0, #FBF1E6 0, #FFFDFA 55%), #FFFDFA; }
body[data-spine-theme="cozy"] .hero3d { background: radial-gradient(120% 80% at 50% 0, #F7EFE4 0, #FFFDFA 55%), #FFFDFA; }
body[data-spine-theme="sage"] .hero3d { background: radial-gradient(120% 80% at 50% 0, #EAF1E6 0, #FCFEFB 55%), #FCFEFB; }
body[data-spine-theme="warm"] .hero3d__script { color: #B0702F; }
body[data-spine-theme="cozy"] .hero3d__script { color: #BC6E3F; }
body[data-spine-theme="sage"] .hero3d__script { color: #4F7E56; }
body[data-spine-theme="sage"] .orb--rose { background: radial-gradient(circle, #A6D08C 0, transparent 70%); }
body[data-spine-theme="sage"] .orb--gold { background: radial-gradient(circle, #C7E0A0 0, transparent 70%); }
body[data-spine-theme="sage"] .floral { color: #8FB98A; }
body[data-spine-theme="warm"] .orb--gold, body[data-spine-theme="cozy"] .orb--gold { background: radial-gradient(circle, #E8C79A 0, transparent 70%); }

/* ═══ Dunkles cinematic-Theme (Erlebnis) ═══ */
body.theme-dark { background: #0B0A18; color: #C4C7DE; }
body.theme-dark .demo-bar { background: #05040E; color: #C9B6D8; }
body.theme-dark .demo-bar a { color: #E6D2F0; }
body.theme-dark .nav { background: rgba(11, 10, 24, .74); border-bottom-color: rgba(255, 255, 255, .09); }
body.theme-dark .logo { color: #EDE9F5; }
body.theme-dark .nav__links a { color: #D7D4E8; }
body.theme-dark .nav__links a:hover { color: #C9A7FF; }
body.theme-dark .nav__links a[aria-current="page"] { color: #B79BFF; }
body.theme-dark .nav__toggle { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .16); }
body.theme-dark .nav__toggle span { background: #EDE9F5; }
body.theme-dark .nav__links { background: rgba(11, 10, 24, .98); border-bottom-color: rgba(255, 255, 255, .09); }
body.theme-dark .nav__links a:not(.btn) { border-bottom-color: rgba(255, 255, 255, .08); }
body.theme-dark .hero3d { background: radial-gradient(120% 85% at 50% 0, #16132E 0, #0B0A18 62%), #0B0A18; }
body.theme-dark .hero3d__inner::before { background: radial-gradient(66% 60% at 50% 48%, rgba(10, 9, 22, .9) 0, rgba(10, 9, 22, .68) 45%, transparent 78%); }
body.theme-dark .hero3d__title { color: #F4F1FB; text-shadow: 0 2px 44px rgba(130, 100, 230, .4); }
body.theme-dark .hero3d__script { color: #93D6FF; }
body.theme-dark .hero3d__lead { color: #C2C4DE; }
body.theme-dark .badge { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .15); color: #EDE9F5; }
body.theme-dark .badge span { color: #A9AAC8; }
body.theme-dark .badge__stars { color: #F2C36B; }
body.theme-dark .hero__trust { color: #C2C4DE; }
body.theme-dark .hero__trust svg { color: #93D6FF; }
body.theme-dark .scrolldown { color: #9092B8; }
body.theme-dark .scrolldown__line { background: rgba(255, 255, 255, .15); }
body.theme-dark .scrolldown__line::after { background: linear-gradient(#93D6FF, transparent); }
body.theme-dark .btn--line { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .2); color: #EDE9F5; }
body.theme-dark .orb--rose { background: radial-gradient(circle, #7A3FD0 0, transparent 70%); opacity: .5; }
body.theme-dark .orb--gold { background: radial-gradient(circle, #3E63C8 0, transparent 70%); opacity: .5; }
body.theme-dark .floral { color: rgba(150, 120, 230, .5); }
/* dunkle Inhaltssektionen */
body.theme-dark .sec--2 { background: #0F0D22; }
body.theme-dark h1, body.theme-dark h2, body.theme-dark h3 { color: #F4F1FB; }
body.theme-dark .lead, body.theme-dark p { color: #C2C4DE; }
body.theme-dark .label { color: #93D6FF; }
body.theme-dark .step, body.theme-dark .svc, body.theme-dark .stimme, body.theme-dark .teaser, body.theme-dark .job, body.theme-dark .infobar__card {
  background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); box-shadow: none;
}
body.theme-dark .svc__preis { color: #93D6FF; }
body.theme-dark .termin__card { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }
body.theme-dark .fuss { background: rgba(20, 13, 30, .92); border-top-color: rgba(255, 255, 255, .08); color: #9092B8; }
body.theme-dark .fuss a { color: #B79BFF; }

/* ═══ Erlebnis-Reise: die lange Wirbelsäule liegt FEST hinter der ganzen Seite
   und wandert beim Scrollen durch; Texte liegen auf sanften Glas-Panels darauf. ═══ */
body.theme-dark { background: #1A1220; }                         /* warmes dunkles Pflaume statt Blau */
body.theme-dark .hero3d__canvas { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 0; }
body.theme-dark .hero3d { background: transparent; min-height: 100svh; }
/* Nav bleibt STICKY (nur über das Canvas heben) — Navigation muss immer erreichbar bleiben */
body.theme-dark .demo-bar, body.theme-dark main, body.theme-dark .fuss { position: relative; z-index: 2; }
body.theme-dark main, body.theme-dark .sec, body.theme-dark .sec--2, body.theme-dark .termin { background: transparent; }
/* Texte auf weichen, halbdurchsichtigen Glas-Panels über der Wirbelsäule */
body.theme-dark .sec .wrap > [data-in],
body.theme-dark .warum,
body.theme-dark .termin__card {
  background: rgba(22, 15, 30, .58);
  -webkit-backdrop-filter: blur(12px) saturate(120%); backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, .09); border-radius: var(--r-lg);
  padding: var(--s-6); box-shadow: 0 20px 60px -30px rgba(0, 0, 0, .8);
}
body.theme-dark .warum { margin-top: var(--s-6); }
