/* ================================
   LEONA ZHANG NAILS — DESIGN SYSTEM
   ================================ */
:root {
  --violet:       #7B5EA7;
  --violet-light: #A78BCA;
  --violet-pale:  #EDE5F5;
  --rose:         #F2C4CE;
  --rose-dark:    #D4899A;
  --gold:         #C9A87C;
  --gold-light:   #E8C9A0;
  --cream:        #FDFAF7;
  --white:        #FFFFFF;
  --dark:         #1C1520;
  --muted:        #8B7E8B;
  --border:       rgba(123,94,167,0.15);
  --glow-violet:  0 0 40px rgba(123,94,167,0.25);
  --glow-rose:    0 0 30px rgba(242,196,206,0.4);
  --shadow-soft:  0 8px 40px rgba(123,94,167,0.1);
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --pull-easing:   cubic-bezier(0.32, 0, 0.67, 0);
  --return-easing: cubic-bezier(0.175, 0.885, 0.32, 1.4);
  --active-toggle: #f5f8ea;
}

/* ================================
   RESET
   ================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }

@media (max-width: 1023px) {
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ================================
   SCROLLBAR
   ================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--violet-light); border-radius: 5px; }

/* ================================
   CUSTOM CURSOR
   ================================ */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 7px; height: 7px;
  background: var(--violet);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid var(--rose-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s;
}
.cursor-ring.grow { width: 50px; height: 50px; border-color: var(--violet); }
@media (max-width: 1023px) { .cursor-dot, .cursor-ring { display: none; } }

/* ================================
   LOADER
   ================================ */
.loader {
  position: fixed; inset: 0;
  z-index: 9000;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease;
}
.loader__inner { text-align: center; position: relative; }
.loader__stars {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
}
.loader__star {
  position: absolute;
  font-size: 1.2rem;
  color: var(--violet);
  animation: starSpin 2s ease-in-out infinite;
}
.loader__star--1 { top: -30px; left: -40px; animation-delay: 0s; color: var(--gold); }
.loader__star--2 { top: -20px; right: -30px; animation-delay: .3s; }
.loader__star--3 { bottom: -25px; left: 20px; animation-delay: .6s; color: var(--rose-dark); }
@keyframes starSpin {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .6; }
  50% { transform: translateY(-8px) rotate(15deg); opacity: 1; }
}
.loader__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-style: italic;
  color: var(--violet);
  line-height: 1;
  letter-spacing: 0.02em;
}
.loader__sub {
  display: block;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .25em;
  color: var(--muted);
  margin-top: .5rem;
  text-transform: uppercase;
}

/* ================================
   NAVIGATION
   ================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 72px;
  display: flex; align-items: center;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(253,250,247,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  width: 100%; max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; gap: .1rem; flex-shrink: 0; }
.nav__logo-name { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; color: var(--violet); }
.nav__logo-sub { font-size: .55rem; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; }
.nav__links { display: none; gap: 2rem; margin-left: auto; }
.nav__link {
  font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); transition: color .2s; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--violet);
  transition: width .3s var(--ease);
}
.nav__link:hover { color: var(--violet); }
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: auto; display: none; }
.nav__burger {
  margin-left: auto; width: 28px; height: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.nav__burger span {
  display: block; height: 1.5px; background: var(--dark); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 700;
  background: rgba(253,250,247,.98);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  opacity: 0; transform: translateY(-16px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.mobile-menu:not([hidden]) { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-menu__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem; color: var(--muted);
  transition: color .2s; cursor: pointer;
}
.mobile-menu__close:hover { color: var(--violet); }
.mobile-menu__links { text-align: center; }
.mobile-menu__links li + li { margin-top: 1rem; }
.mobile-menu__links a {
  font-family: var(--font-display); font-size: 2.5rem; font-style: italic;
  color: var(--dark); transition: color .2s;
}
.mobile-menu__links a:hover { color: var(--violet); }

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9em 2em; border-radius: 40px;
  font-family: var(--font-body); font-size: .9rem; font-weight: 500;
  letter-spacing: .04em; cursor: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--violet {
  background: var(--violet); color: var(--white);
  box-shadow: 0 4px 20px rgba(123,94,167,.3);
}
.btn--violet:hover { background: var(--violet-light); box-shadow: var(--glow-violet); }
.btn--ghost {
  background: transparent; color: var(--violet);
  border: 1.5px solid var(--violet);
}
.btn--ghost:hover { background: var(--violet-pale); box-shadow: var(--glow-violet); }
.btn--full { width: 100%; border-radius: 14px; padding: 1em 2em; font-size: 1rem; }
@media (max-width: 1023px) { .btn { cursor: pointer; } }

/* ================================
   SECTION SHARED
   ================================ */
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section__inner { width: 90%; max-width: 1200px; margin: 0 auto; }
.section__header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section__eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--violet); margin-bottom: .75rem;
}
.section__title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark); line-height: 1.1; margin-bottom: 1.25rem;
}
.section__divider {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--violet));
  border-radius: 2px; margin: 0 auto;
}
.section__divider--rose { background: linear-gradient(90deg, var(--rose-dark), var(--rose)); margin: 1rem 0 1.5rem; }

/* Reveal animations */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0s);
}
.fade-up    { transform: translateY(32px); }
.fade-left  { transform: translateX(-32px); }
.fade-right { transform: translateX(32px); }
.fade-up.visible, .fade-left.visible, .fade-right.visible {
  opacity: 1; transform: none;
}

/* ================================
   HERO
   ================================ */
/* ── Hero: full-screen photo background ──────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background-image: url('../images/nail-3d.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease;
}

/* Overlay — light mode default, dark mode override */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(253, 250, 247, 0.35);
  z-index: 1;
  transition: background 0.6s ease;
}
.hero.dark-mode::before {
  background: rgba(28, 21, 32, 0.65);
}


/* Floating Stars */
.hero__stars { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hstar {
  position: absolute; font-size: 1.2rem;
  animation: starFloat 4s ease-in-out infinite;
}
.hstar--1 { top: 20%; left:  8%; color: var(--gold);       animation-delay: 0s;   font-size: 1.5rem; }
.hstar--2 { top: 15%; right: 12%; color: #D9B8F5;          animation-delay: .8s; }
.hstar--3 { top: 65%; left:  5%; color: var(--rose-dark);  animation-delay: 1.6s; font-size: .9rem; }
.hstar--4 { top: 75%; right: 8%; color: var(--gold-light); animation-delay: 2.4s; }
@keyframes starFloat {
  0%, 100% { transform: translateY(0) rotate(0deg);     opacity: .7; }
  50%       { transform: translateY(-14px) rotate(8deg); opacity: 1; }
}

.hero__inner {
  position: relative; z-index: 2;
  width: 90%; max-width: 760px; margin: 0 auto;
  padding: 8rem 0 5rem;
}

.hero__eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 500;
  letter-spacing: .2em; color: rgba(253,250,247,.85); margin-bottom: 1.25rem;
}
.hero__title { margin-bottom: 1rem; }
.hero__line--1 {
  display: block;
  font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: .95; color: #FDFAF7; letter-spacing: -.01em;
}
.hero__line--2 {
  display: block;
  font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: .95; color: #C9A8E8; letter-spacing: -.01em;
  font-style: italic;
}
.hero__tagline {
  font-size: .85rem; letter-spacing: .12em; color: rgba(253,250,247,.65);
  text-transform: uppercase; margin-bottom: .75rem;
}
.hero__sub {
  font-size: clamp(.9rem, 1.4vw, 1rem); color: rgba(253,250,247,.7);
  line-height: 1.8; margin-bottom: 2rem;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero__social { font-size: .82rem; color: rgba(253,250,247,.6); }
.hero__social a { color: #C9A8E8; text-decoration: underline; text-underline-offset: 3px; }

/* ── Light mode text (readable on pale overlay) ── */
.hero.light-mode .hero__eyebrow            { color: rgba(28,21,32,0.7); }
.hero.light-mode .hero__line--1            { color: #1C1520; }
.hero.light-mode .hero__line--2            { color: #5B3F8A; }
.hero.light-mode .hero__tagline            { color: rgba(28,21,32,0.7); }
.hero.light-mode .hero__sub               { color: #3D2B4A; }
.hero.light-mode .hero__social            { color: #3D2B4A; }
.hero.light-mode .hero__social a          { color: #7B5EA7; }
.hero.light-mode .hero__scroll span       { color: rgba(28,21,32,0.5); }
.hero.light-mode .hero__scroll-line       { background: linear-gradient(to bottom, #7B5EA7, transparent); }
.hero.light-mode .toggle-label            { color: rgba(28,21,32,0.65); }

/* ── Dark mode text (white on dark overlay) ── */
.hero.dark-mode .hero__eyebrow            { color: rgba(253,250,247,.85); }
.hero.dark-mode .hero__line--1            { color: #FDFAF7; }
.hero.dark-mode .hero__line--2            { color: #C9A8E8; }
.hero.dark-mode .hero__tagline            { color: rgba(253,250,247,.65); }
.hero.dark-mode .hero__sub               { color: rgba(253,250,247,.7); }
.hero.dark-mode .hero__social            { color: rgba(253,250,247,.6); }
.hero.dark-mode .hero__social a          { color: #C9A8E8; }
.hero.dark-mode .hero__scroll span       { color: rgba(253,250,247,.55); }
.hero.dark-mode .hero__scroll-line       { background: linear-gradient(to bottom, #C9A8E8, transparent); }

/* Scroll hint */
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  z-index: 2;
}
.hero__scroll span { font-size: .65rem; letter-spacing: .2em; color: rgba(253,250,247,.55); text-transform: uppercase; }
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, #C9A8E8, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; } 50% { opacity: 1; }
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Glass Toggle ─────────────────────────────────────────────────────────── */
.toggle-wrapper {
  display: flex;
  align-items: center;
  margin-top: 2.2rem;
  position: relative;
  z-index: 2;
}

.glass-toggle {
  width: 140px;
  height: 54px;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;

  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    0 2px 8px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.12);
  transition: background 0.5s ease, box-shadow 0.5s ease;
  user-select: none;
  -webkit-user-select: none;
}

/* Subtle inner gloss shine */
.glass-toggle::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.18), transparent);
  pointer-events: none;
}

.glass-toggle.dark {
  background: rgba(30, 10, 60, 0.32);
  border-color: rgba(201,168,200,0.25);
  box-shadow:
    0 8px 40px rgba(123,94,167,0.5),
    0 2px 8px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.2);
}

.toggle-thumb {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 4px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;

  background: rgba(255,255,255,0.95);
  box-shadow:
    0 4px 14px rgba(0,0,0,0.28),
    0 1px 4px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,1);

  transition:
    transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
    background 0.45s ease,
    box-shadow 0.45s ease;
}

.glass-toggle.dark .toggle-thumb {
  transform: translateX(86px);
  background: linear-gradient(135deg, #2A1050, #4A2080);
  box-shadow:
    0 4px 16px rgba(123,94,167,0.5),
    0 1px 4px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.toggle-track-label {
  position: absolute;
  right: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: opacity 0.25s ease, color 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.glass-toggle.dark .toggle-track-label {
  right: auto;
  left: 14px;
  color: rgba(201,168,232,0.85);
}

/* ================================
   SHARED SECTION LABELS
   ================================ */
.s-label {
  display: block; font-size: .68rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 1.5rem;
}
.s-label--light { color: rgba(255,255,255,.45); }

/* ================================
   S2 — LEISTUNGEN
   ================================ */
.leistungen {
  background: #FFFFFF;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  position: relative; z-index: 2;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.leistungen__inner { width: 90%; max-width: 1100px; margin: 0 auto; }

.service-list { margin-top: 2rem; }

.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem; align-items: center;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  border-bottom: 1px solid rgba(28,21,32,.08);
  transition: padding-left .25s var(--ease);
}
.service-item:last-child { border-bottom: none; }
.service-item:hover { padding-left: .5rem; }

.service-item__num {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900; line-height: 1;
  color: #1C1520; font-family: var(--font-body);
  letter-spacing: -.03em; opacity: .1;
  min-width: 2ch; transition: opacity .3s;
}
.service-item:hover .service-item__num { opacity: .2; }

.service-item__body { min-width: 0; }
.service-item__head {
  display: flex; align-items: baseline;
  gap: 1rem; flex-wrap: wrap; margin-bottom: .35rem;
}
.service-item__name {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: #1C1520; font-weight: 600;
}
.service-item__price {
  font-size: .72rem; letter-spacing: .14em; color: var(--violet);
  font-weight: 600; text-transform: uppercase;
  background: rgba(123,94,167,.1); padding: .25em .8em; border-radius: 50px;
}
.service-item__desc { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.service-item__arrow {
  font-size: 1.3rem; color: rgba(28,21,32,.25);
  transition: transform .35s var(--ease), color .2s;
  flex-shrink: 0;
}
.service-item:hover .service-item__arrow { transform: translateX(8px); color: var(--violet); }

@media (max-width: 600px) {
  .service-item { grid-template-columns: auto 1fr; gap: 1rem; }
  .service-item__arrow { display: none; }
}

/* ================================
   S3 — GALERIE
   ================================ */
.galerie {
  background: #1C1520;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  position: relative; z-index: 3;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
}
.galerie__header { margin-bottom: 3.5rem; }
.galerie__title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(3rem, 7vw, 6rem); line-height: .95;
  background: linear-gradient(135deg, #C9A8E8 0%, #F2C4CE 55%, #C9A87C 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.marquee-wrap { overflow: hidden; }
.marquee-row { overflow: visible; display: flex; padding: 4px 0; }
.marquee-track {
  display: flex; gap: 12px; width: max-content;
  will-change: transform;
}
.marquee-img {
  width: 320px; height: 220px; object-fit: cover;
  border-radius: 20px; flex-shrink: 0; display: block;
  pointer-events: none; user-select: none;
}
.galerie__cta { text-align: center; margin-top: 3.5rem; }
.btn--outline-light {
  border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8);
  padding: .85em 2.4em; border-radius: 50px; font-size: .88rem;
  transition: border-color .2s, color .2s, background .2s;
}
.btn--outline-light:hover {
  border-color: rgba(255,255,255,.7); color: #fff;
  background: rgba(255,255,255,.06);
}

/* Lightbox (kept for future use) */
.lightbox {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(253,250,247,.97);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; animation: lbFadeIn .2s ease;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.75rem; color: var(--muted); cursor: pointer;
  transition: color .2s; background: none; border: none;
}
.lightbox__close:hover { color: var(--violet); }
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2.5rem; color: var(--violet);
  background: var(--white); border: 1.5px solid var(--border);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.lightbox__prev:hover, .lightbox__next:hover { background: var(--violet); color: var(--white); }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__content { max-width: 800px; width: 100%; }
.lightbox__img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-soft); }

/* ================================
   S4 — ÜBER MICH
   ================================ */
.ueber {
  background: #FFFFFF;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  position: relative; z-index: 4;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.ueber__inner {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; align-items: center;
}
@media (min-width: 768px) { .ueber__inner { grid-template-columns: 1fr 1fr; } }

.ueber__img-wrap {
  border-radius: 30px; overflow: hidden;
  border: 3px solid var(--rose);
  box-shadow: 0 20px 60px rgba(242,196,206,.4);
  aspect-ratio: 3/4;
  background: var(--violet-pale);
}
.ueber__photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.ueber__title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: .95;
  color: #1C1520; margin: .75rem 0 1.75rem;
}
.ueber__text {
  font-size: clamp(.95rem, 1.4vw, 1.1rem); line-height: 1.9;
  color: #3D2B4A; margin-bottom: 2.5rem;
}
.cw { display: inline; opacity: .12; transition: opacity .5s ease; }

.ueber__values { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.ueber__value { display: flex; align-items: center; gap: .9rem; font-size: .93rem; color: #1C1520; }
.ueber__value-icon { font-size: 1.1rem; color: var(--violet); width: 1.75rem; text-align: center; flex-shrink: 0; }

/* ================================
   S5 — PREISE + TERMINBUCHUNG
   ================================ */
.preise {
  background: #1C1520;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  position: relative; z-index: 5;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 9rem);
}
.preise__intro { margin-bottom: 3rem; }
.preise__title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.8rem, 6vw, 5rem); line-height: .95;
  color: #FDFAF7; margin-top: .75rem;
}

.preise-stack {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; align-items: start;
}
@media (min-width: 768px) {
  .preise-stack { grid-template-columns: 1fr 1.25fr; }
  .preise-card { position: sticky; top: 5.5rem; }
  .preise-card--form { top: 7.5rem; transform: scale(0.97); transform-origin: top center; }
}

.preise-card {
  border-radius: 40px;
  border: 1px solid rgba(242,196,206,.18);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: clamp(2rem, 4vw, 2.75rem);
  color: rgba(253,250,247,.8);
  transition: transform .3s var(--ease);
}
.preise-card h3 {
  font-family: var(--font-heading); font-size: 1.3rem;
  color: #FDFAF7; margin-bottom: 1.5rem;
}

.preisliste__items { display: flex; flex-direction: column; }
.preisliste__item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .92rem; color: rgba(253,250,247,.7);
}
.preisliste__item:last-child { border-bottom: none; }
.preisliste__price { color: #C9A8E8; font-weight: 600; font-size: .88rem; }
.preisliste__note {
  margin-top: 1rem; font-size: .78rem; color: rgba(253,250,247,.35);
  line-height: 1.6; font-style: italic;
}
.preisliste__ig { margin-top: 2rem; }
.preisliste__ig-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff; padding: .7em 1.4em; border-radius: 50px;
  font-size: .85rem; font-weight: 500; transition: opacity .2s, transform .2s;
}
.preisliste__ig-btn:hover { opacity: .9; transform: translateY(-2px); }

.termin-card__sub { font-size: .85rem; color: rgba(253,250,247,.45); margin-bottom: 1.75rem; }

/* Form (dark variant) */
.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form__group { display: flex; flex-direction: column; gap: .35rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group label {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  color: rgba(253,250,247,.45); text-transform: uppercase;
}
.form__hint { font-weight: 400; font-style: italic; letter-spacing: 0; opacity: .7; }
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: .8em 1.1em;
  color: #FDFAF7; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.form__group input::placeholder, .form__group textarea::placeholder { color: rgba(253,250,247,.25); }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  border-color: rgba(201,168,232,.6);
  box-shadow: 0 0 0 3px rgba(123,94,167,.2); outline: none;
}
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A8E8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; background-color: rgba(255,255,255,.07);
}
.form__group select option { background: #1C1520; color: #FDFAF7; }
.form__group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.5); }
.form__error { font-size: .75rem; color: var(--rose-dark); min-height: 1em; }
.form__check { display: flex; align-items: flex-start; }
.check-label { display: flex; align-items: flex-start; gap: .6rem; cursor: pointer; font-size: .85rem; color: rgba(253,250,247,.5); }
.check-label input[type="checkbox"] { margin-top: .2rem; accent-color: var(--violet); }
.check-label a { color: #C9A8E8; text-decoration: underline; text-underline-offset: 2px; }
.form__global-error {
  background: rgba(212,137,154,.12); border: 1px solid var(--rose-dark);
  border-radius: 10px; padding: .75rem 1rem;
  font-size: .85rem; color: var(--rose-dark);
}
.form__success { text-align: center; padding: 2.5rem 1rem; }
.form__success-heart { font-size: 3rem; color: var(--violet); animation: heartPop .4s var(--ease); display: block; margin-bottom: 1rem; }
@keyframes heartPop { from { transform: scale(0); } to { transform: scale(1); } }
.form__success h3 { font-family: var(--font-heading); font-size: 1.75rem; color: #FDFAF7; margin-bottom: .75rem; }
.form__success p { color: rgba(253,250,247,.55); }
.form__success-sub { font-size: .82rem; margin-top: .4rem; }

/* ================================
   S6 — FOOTER / KONTAKT
   ================================ */
.footer { background: #0A0805; position: relative; overflow: hidden; color: rgba(255,255,255,.55); }

.footer__ig-cta {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 2rem clamp(4rem, 8vw, 6rem);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__ig-label {
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 1rem; display: block;
}
.ig-handle {
  display: block;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(3rem, 10vw, 7rem); line-height: 1;
  background: linear-gradient(135deg, #C9A8E8 0%, #F2C4CE 50%, #C9A87C 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1.5rem; transition: filter .3s;
}
.ig-handle:hover { filter: brightness(1.15); }
.footer__ig-sub {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.22); display: block;
}

.footer__inner {
  width: 90%; max-width: 1200px; margin: 0 auto;
  padding: 4rem 0 2rem; position: relative; z-index: 1;
}
.footer__top { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr; } }

.footer__col h4 {
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col ul a { font-size: .88rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer__col ul a:hover { color: rgba(255,255,255,.9); }

.footer__logo-name { display: block; font-family: var(--font-display); font-size: 2rem; font-style: italic; color: rgba(255,255,255,.3); line-height: 1; }
.footer__logo-sub { display: block; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.18); margin-top: .25rem; }
.footer__tagline { font-size: .85rem; margin-top: .75rem; color: rgba(255,255,255,.28); }

.footer__ig-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff; padding: .7em 1.3em; border-radius: 50px;
  font-size: .85rem; font-weight: 500; margin-bottom: 1.25rem;
  transition: opacity .2s, transform .2s;
}
.footer__ig-btn:hover { opacity: .9; transform: translateY(-2px); }
.footer__address { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.35); }
.footer__address small { opacity: .6; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06);
  font-size: .78rem; color: rgba(255,255,255,.2);
}
.footer__bottom nav { display: flex; gap: 1.5rem; }
.footer__bottom nav a { color: rgba(255,255,255,.2); transition: color .2s; }
.footer__bottom nav a:hover { color: rgba(255,255,255,.65); }

/* ================================
   FAB INSTAGRAM
   ================================ */
.fab-ig {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--violet); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--glow-violet);
  animation: fabPulse 3s ease-in-out infinite;
  transition: transform .2s var(--ease);
}
.fab-ig:hover { transform: scale(1.1); animation: none; box-shadow: 0 0 30px rgba(123,94,167,.6); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123,94,167,.4), var(--glow-violet); }
  50%       { box-shadow: 0 0 0 12px rgba(123,94,167,0), var(--glow-violet); }
}

/* ================================
   PHYSICS / EASING HELPERS
   ================================ */

/* Default resting state for bg-front elements */
.bg-front {
  transition: transform 0.5s var(--return-easing), opacity 0.5s ease;
}

/* Pull-down state: heavy accelerating drag downward */
.pull-down {
  transform: translateY(20vh) scale(1.1) !important;
  opacity: 0.8 !important;
  transition:
    transform 0.3s var(--pull-easing),
    opacity   0.3s ease !important;
}

/* ================================
   UTILITIES
   ================================ */
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .form__row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
