/* =========================================================
   MONACO BEAUTY & WELLNESS — Premium Luxury Stylesheet
   Brand: deep forest green + gold, warm cream accents
   ========================================================= */

:root {
  /* Brand */
  --green:        #14361f;
  --green-dark:   #0d2616;
  --green-soft:   #1c4429;
  --gold:         #c6a563;
  --gold-light:   #ddc18a;
  --gold-deep:    #a98842;

  /* Warm neutrals */
  --cream:        #f8f4ec;
  --cream-2:      #f2ebdd;
  --champagne:    #efe3cf;
  --ink:          #20281f;
  --muted:        #6f7a6c;
  --muted-light:  #b9c4b2;
  --line:         rgba(20, 54, 31, 0.10);

  /* System */
  --shadow-sm:    0 8px 24px -14px rgba(13, 30, 16, 0.30);
  --shadow:       0 30px 70px -30px rgba(13, 30, 16, 0.40);
  --shadow-gold:  0 20px 50px -22px rgba(169, 136, 66, 0.45);
  --radius:       6px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h:        84px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
  overflow-anchor: none;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; font-weight: 600; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--green-dark); }

/* ---------- LENIS (smooth scroll) ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
/* When GSAP drives the reveals, let it fully own them (kill CSS transition to avoid double-animation) */
.gsap-on .reveal { transition: none; }

/* ---------- LAYOUT ---------- */
.container { width: min(1200px, 90%); margin: 0 auto; }
section { padding: clamp(70px, 11vw, 140px) 0; position: relative; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before, .eyebrow.center::after {
  content: ''; width: 28px; height: 1px; background: var(--gold);
  display: inline-block; opacity: 0.6;
}
.section-head { max-width: 660px; margin: 0 auto clamp(48px, 7vw, 80px); text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 18px; letter-spacing: 0.01em; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Crown */
.crown { width: 48px; height: auto; margin: 0 auto; }
.crown path, .crown circle, .crown rect { fill: var(--gold); }

/* ---------- BUTTONS (magnetic) ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 17px 40px; border-radius: 2px;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  border: 1px solid var(--gold); overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.25s var(--ease);
  will-change: transform;
}
.btn span { position: relative; z-index: 2; }
.btn::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary { background: var(--gold); color: var(--green-dark); }
.btn-primary::after { background: var(--gold-light); }
.btn-primary:hover { color: var(--green-dark); }
.btn-ghost { background: transparent; color: var(--green); }
.btn-ghost:hover { color: var(--green-dark); }
.btn-light { background: transparent; color: var(--cream); border-color: rgba(221,193,138,0.5); }
.btn-light:hover { color: var(--green-dark); }

/* ---------- PAGE LOADER ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--green-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#loader.done { opacity: 0; visibility: hidden; }
#loader .crown { width: 60px; animation: floaty 2s ease-in-out infinite; }
#loader .word {
  font-family: 'Cormorant Garamond', serif; color: var(--cream);
  font-size: 1.8rem; letter-spacing: 0.5em; text-transform: uppercase; text-indent: 0.5em;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.3s forwards;
}
.loader-bar { width: 120px; height: 1px; background: rgba(221,193,138,0.25); overflow: hidden; }
.loader-bar i { display: block; height: 100%; width: 40%; background: var(--gold); animation: load 1.2s ease-in-out infinite; }
@keyframes load { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- NAVBAR ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background 0.4s var(--ease), height 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
header.scrolled {
  background: rgba(13, 38, 22, 0.92); backdrop-filter: blur(14px) saturate(1.2);
  height: 66px; box-shadow: 0 10px 40px -20px rgba(0,0,0,0.6);
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; padding-inline: clamp(8px, 2.5vw, 32px); }
.logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--cream); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.logo b { margin-left: -0.04em; }
.logo svg { width: 26px; }
.logo b { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a:not(.btn) {
  position: relative; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); padding: 4px 0; transition: color 0.3s;
}
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--gold-light); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links .btn { padding: 11px 26px; }
.menu-toggle { display: none; background: none; border: none; width: 30px; height: 22px; position: relative; z-index: 1100; }
.menu-toggle span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--cream); transition: all 0.35s var(--ease); }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; text-align: center;
  position: relative; color: var(--cream); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: -8% 0; z-index: -2;
  background: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(13,38,22,0.78) 0%, rgba(20,54,31,0.72) 45%, rgba(13,38,22,0.92) 100%);
}
.hero__content { max-width: 820px; margin: 0 auto; padding: 120px 0 80px; }
.hero .crown { margin-bottom: 24px; opacity: 0; }
.hero h1 {
  font-size: clamp(3.4rem, 11vw, 7rem); letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 0.95;
}
.hero .script {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem); color: var(--gold-light); margin: 6px 0 4px;
}
.hero .names {
  letter-spacing: 0.34em; font-size: 0.82rem; text-transform: uppercase;
  color: var(--muted-light); margin-bottom: 30px;
}
.hero p { font-size: 1.12rem; color: #ece3d2; max-width: 540px; margin: 0 auto 40px; font-weight: 300; }
.hero__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero__loc { margin-top: 36px; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-light); }
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-light);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue i { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--gold); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }

/* hero word stagger */
.hero h1, .hero .script, .hero .names, .hero p, .hero__actions, .hero__loc { opacity: 0; }
body.loaded .hero .crown { animation: fadeUp 1s var(--ease) 0.2s forwards; }
body.loaded .hero h1 { animation: fadeUp 1.1s var(--ease) 0.4s forwards; }
body.loaded .hero .script { animation: fadeUp 1s var(--ease) 0.65s forwards; }
body.loaded .hero .names { animation: fadeUp 1s var(--ease) 0.8s forwards; }
body.loaded .hero p { animation: fadeUp 1s var(--ease) 0.95s forwards; }
body.loaded .hero__actions { animation: fadeUp 1s var(--ease) 1.1s forwards; }
body.loaded .hero__loc { animation: fadeUp 1s var(--ease) 1.25s forwards; }

/* ---------- VORTEILE (benefits) ---------- */
.benefits { background: var(--cream); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px; text-align: center; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}
.benefit:hover { transform: translateY(-8px); box-shadow: var(--shadow-sm); border-color: rgba(198,165,99,0.4); }
.benefit__icon {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--champagne); color: var(--gold-deep);
  transition: background 0.4s, color 0.4s;
}
.benefit:hover .benefit__icon { background: var(--green); color: var(--gold-light); }
.benefit__icon svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.45rem; color: var(--green); margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: 0.92rem; }

/* ---------- LEISTUNGEN (services) ---------- */
.services { background: var(--cream-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.service__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.service:hover .service__img img { transform: scale(1.07); }
.service__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2; padding: 6px 14px; border-radius: 2px;
  background: var(--green-dark);
  color: var(--gold-light); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.service__body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.service__body h3 { font-size: 1.7rem; color: var(--green); margin-bottom: 8px; }
.service__body p { color: var(--muted); font-size: 0.93rem; margin-bottom: 20px; flex: 1; }
.service__meta { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); }
.service__price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold-deep); }
.service__price small { font-family: 'Jost'; font-size: 0.72rem; color: var(--muted); display: block; letter-spacing: 0.05em; }
.service__link { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); display: inline-flex; gap: 7px; align-items: center; transition: gap 0.3s, color 0.3s; }
.service__link:hover { gap: 13px; color: var(--gold-deep); }

/* ---------- ÜBER UNS ---------- */
.about { background: var(--cream); overflow: hidden; }
.about__wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about__media::after {
  content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold);
  border-radius: var(--radius); z-index: -1;
}
.about__badge {
  position: absolute; bottom: -26px; right: -10px; background: var(--green); color: var(--cream);
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-gold); text-align: center;
}
.about__badge strong { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold-light); display: block; line-height: 1; }
.about__badge span { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-light); }
.about__text h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); margin: 16px 0 22px; }
.about__text p { color: var(--muted); margin-bottom: 18px; font-size: 1.04rem; }
.about__text strong { color: var(--green); font-weight: 500; }
.about__text em { color: var(--gold-deep); font-style: italic; }
.about__stats { display: flex; gap: 44px; margin-top: 32px; flex-wrap: wrap; }
.about__stats .s strong { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold-deep); display: block; line-height: 1; }
.about__stats .s span { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- PREISE ---------- */
.prices { background: var(--green); color: var(--cream); position: relative; }
.prices .section-head h2 { color: #fff; }
.prices .section-head p { color: var(--muted-light); }
.prices .eyebrow { color: var(--gold-light); }
.prices .eyebrow::before, .prices .eyebrow.center::after { background: var(--gold-light); }
.price-list { max-width: 760px; margin: 0 auto; }
.price-row { display: flex; align-items: baseline; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(198,165,99,0.22); }
.price-row .pn { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--cream); }
.price-row .pn small { display: block; font-family: 'Jost'; font-size: 0.8rem; color: var(--muted-light); letter-spacing: 0.03em; }
.price-row .dots { flex: 1; border-bottom: 1px dotted rgba(198,165,99,0.4); transform: translateY(-6px); }
.price-row .pv { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold-light); text-align: right; white-space: nowrap; }
.price-row .pv small { display: block; font-family: 'Jost'; font-size: 0.78rem; color: var(--muted-light); }
.price-note { text-align: center; max-width: 600px; margin: 46px auto 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; color: var(--gold-light); }

/* ---------- GALERIE (masonry) ---------- */
.gallery { background: var(--cream-2); }
.masonry { columns: 3; column-gap: 16px; }
.masonry figure { break-inside: avoid; margin: 0 0 16px; position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.masonry img { width: 100%; transition: transform 0.8s var(--ease), filter 0.6s; filter: saturate(0.95); }
.masonry figure::after {
  content: '+'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--cream); background: rgba(13,38,22,0); opacity: 0;
  transition: background 0.5s, opacity 0.5s; font-weight: 200;
}
.masonry figure:hover img { transform: scale(1.06); filter: saturate(1.08); }
.masonry figure:hover::after { background: rgba(13,38,22,0.35); opacity: 1; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(13,30,16,0.94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; padding: 30px; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90%; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow); transform: scale(0.94); transition: transform 0.5s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox__close { position: absolute; top: 24px; right: 30px; color: var(--cream); font-size: 2rem; background: none; border: none; line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--cream); font-size: 2.2rem; background: none; border: none; padding: 20px; opacity: 0.7; transition: opacity 0.3s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav.prev { left: 10px; } .lightbox__nav.next { right: 10px; }

/* ---------- STIMMEN (testimonials) ---------- */
.testimonials { background: var(--cream); text-align: center; }
.t-track { max-width: 760px; margin: 0 auto; position: relative; min-height: 220px; }
.t-slide { position: absolute; top: 0; left: 0; right: 0; opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); pointer-events: none; }
.t-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.t-stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 18px; }
.t-slide blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--green); line-height: 1.4; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-author .av { width: 50px; height: 50px; border-radius: 50%; background: var(--champagne) center/cover; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold-deep); }
.t-author .meta { text-align: left; }
.t-author .meta strong { display: block; color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.t-author .meta span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; }
.t-dots { display: flex; gap: 10px; justify-content: center; margin-top: 38px; }
.t-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--muted-light); transition: all 0.3s; }
.t-dots button.active { background: var(--gold-deep); width: 26px; border-radius: 5px; }

/* ---------- TEAM ---------- */
.team { background: var(--cream-2); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 880px; margin: 0 auto; }
.member { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.member:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.member__img { aspect-ratio: 1; overflow: hidden; }
.member__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.member:hover .member__img img { transform: scale(1.06); }
.member__body { padding: 26px 28px 30px; }
.member__body .role { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.member__body h3 { font-size: 1.7rem; color: var(--green); margin: 4px 0 10px; }
.member__body p { color: var(--muted); font-size: 0.92rem; }

/* ---------- BUCHUNG (booking) ---------- */
.booking { background: var(--green-dark); color: var(--cream); position: relative; overflow: hidden; }
.booking::before { content: ''; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(198,165,99,0.14), transparent 70%); }
.booking .section-head h2 { color: #fff; }
.booking .section-head p, .booking .eyebrow { color: var(--gold-light); }
.booking .eyebrow::before, .booking .eyebrow.center::after { background: var(--gold-light); }
.booking-form {
  max-width: 820px; margin: 0 auto; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,165,99,0.22); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px); backdrop-filter: blur(8px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.booking-form .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 3px; font-family: inherit; font-size: 0.95rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(198,165,99,0.25); color: var(--cream);
  transition: border-color 0.3s, background 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(221,221,221,0.45); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.09); }
.field select option { background: var(--green-dark); color: var(--cream); }
.booking-form .btn { width: 100%; }
.form-success { grid-column: 1 / -1; text-align: center; padding: 26px 10px; }
.form-success__ic { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--gold); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #fff; margin-bottom: 10px; }
.form-success p { color: var(--muted-light); max-width: 420px; margin: 0 auto; }
.contact__wa { margin-top: 26px; }

/* ---------- KONTAKT ---------- */
.contact { background: var(--cream); }
.contact__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact__info { background: #fff; padding: clamp(34px, 5vw, 60px); }
.contact__info h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--green); margin: 14px 0 22px; }
.contact__info ul { list-style: none; margin-top: 24px; }
.contact__info li { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact__info li:last-child { border-bottom: none; }
.contact__info .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--champagne); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; flex: 0 0 42px; }
.contact__info .ic svg { width: 19px; height: 19px; }
.contact__info .lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.contact__info .val { color: var(--ink); font-weight: 400; }
.contact__info .val a:hover { color: var(--gold-deep); }
.contact__map { min-height: 380px; }
.contact__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }
.map-consent { width: 100%; height: 100%; min-height: 380px; background: var(--green-soft); display: flex; align-items: center; justify-content: center; padding: 30px; }
.map-consent__inner { text-align: center; max-width: 320px; }
.map-consent__inner p { color: var(--cream); opacity: 0.85; font-size: 0.92rem; margin-bottom: 18px; }

/* ---------- FOOTER ---------- */
footer { background: var(--green-dark); color: var(--cream); padding: 70px 0 34px; text-align: center; }
footer .crown { margin-bottom: 16px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-logo b { color: var(--gold); }
.footer-tag { color: var(--muted-light); font-size: 0.92rem; margin-top: 8px; font-style: italic; font-family: 'Cormorant Garamond', serif; }
.footer-nav { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin: 30px 0; }
.footer-nav a { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-line { width: 100%; max-width: 320px; height: 1px; background: rgba(198,165,99,0.25); margin: 0 auto 24px; }
.footer-bottom { color: var(--muted-light); font-size: 0.78rem; opacity: 0.75; }
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { color: #fff; }

/* ---------- FLOATING BUTTONS ---------- */
.floats { position: fixed; right: 22px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.float {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); color: #fff; transform: translateY(20px); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s, filter 0.3s;
}
.floats.show .float { transform: translateY(0); opacity: 1; }
.float:hover { filter: brightness(1.1); transform: translateY(-3px); }
.float svg { width: 26px; height: 26px; }
.float.wa { background: #25D366; }
.float.book { background: var(--gold); color: var(--green-dark); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- MARQUEE (laufband) ---------- */
.marquee {
  background: var(--green); padding: 20px 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(198,165,99,0.25); border-bottom: 1px solid rgba(198,165,99,0.25);
}
.marquee__track { display: inline-flex; animation: marquee 30s linear infinite; will-change: transform; }
.marquee__track span {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.1em;
  display: inline-flex; align-items: center; padding: 0 30px;
}
.marquee__track span::after { content: '✦'; color: var(--gold); font-size: 0.55em; margin-left: 30px; opacity: 0.8; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   MU- UPGRADE BLOCK (prefixed — no collisions with existing)
   Stats · Before/After · FAQ · Sticky CTA bar · Ink-fill · Gallery glow
   ========================================================= */

/* ---------- Ink-fill on CTA buttons (sprite mask) ---------- */
/* Layered on top of the existing .btn::after gold sweep — the ink label
   is a duplicate of the text, masked in via a 23-frame sprite. Text stays readable. */
.btn.mu-ink { overflow: hidden; }
.mu-ink .mu-ink__fill {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; white-space: nowrap;
  font: inherit; letter-spacing: inherit; text-transform: inherit;
  -webkit-mask: url(assets/ink-sprite.png) no-repeat; mask: url(assets/ink-sprite.png) no-repeat;
  -webkit-mask-size: 2300% 100%; mask-size: 2300% 100%;
  -webkit-mask-position: 100% 0; mask-position: 100% 0;
}
/* Primary = gold base → deep-green ink fill with cream text */
.btn-primary.mu-ink .mu-ink__fill { background: var(--green); color: var(--cream); }
/* Disable the original gold ::after sweep on ink buttons so the two don't clash */
.btn.mu-ink::after { display: none; }
.btn-primary.mu-ink:hover { color: var(--green-dark); }
@keyframes muInkIn  { from { -webkit-mask-position: 100% 0; mask-position: 100% 0; } to { -webkit-mask-position: 0 0; mask-position: 0 0; } }
@keyframes muInkOut { from { -webkit-mask-position: 0 0; mask-position: 0 0; } to { -webkit-mask-position: 100% 0; mask-position: 100% 0; } }

/* ---------- Stats strip (count-up) ---------- */
.mu-stats { background: var(--cream-2); padding: clamp(48px, 7vw, 84px) 0; }
.mu-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.mu-stat { position: relative; padding: 8px 10px; }
.mu-stat + .mu-stat::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px; background: rgba(198,165,99,0.4);
}
.mu-num {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 3.8rem); color: var(--gold-deep);
  line-height: 1; display: block; font-variant-numeric: tabular-nums;
}
.mu-stat span { display: block; margin-top: 10px; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Vorher / Nachher slider ---------- */
.mu-bawrap { background: var(--cream); }
.mu-ba {
  position: relative; max-width: 860px; margin: 0 auto; aspect-ratio: 16/10;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.mu-ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mu-ba__before { clip-path: inset(0 calc(100% - var(--x, 50%)) 0 0); }
.mu-ba__tag {
  position: absolute; top: 16px; z-index: 4; padding: 6px 14px; border-radius: 2px;
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(13,38,22,0.82); color: var(--gold-light); pointer-events: none;
}
.mu-ba__tag--before { left: 16px; } .mu-ba__tag--after { right: 16px; }
.mu-ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--x, 50%); width: 2px;
  background: var(--cream); transform: translateX(-1px); z-index: 5; pointer-events: none;
  box-shadow: 0 0 0 1px rgba(13,38,22,0.18);
}
.mu-ba__handle i {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--cream);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(198,165,99,0.5);
}
.mu-ba__handle i::before, .mu-ba__handle i::after {
  content: ''; position: absolute; top: 50%; width: 0; height: 0;
  border-block: 5px solid transparent;
}
.mu-ba__handle i::before { left: 11px; border-right: 7px solid var(--gold-deep); transform: translateY(-50%); }
.mu-ba__handle i::after  { right: 11px; border-left: 7px solid var(--gold-deep); transform: translateY(-50%); }
/* The native range sits invisibly on top so it's fully keyboard + touch accessible */
.mu-ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; z-index: 6;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; background: transparent;
}
.mu-ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 46px; height: 46px; }
.mu-ba__range::-moz-range-thumb { width: 46px; height: 46px; border: 0; background: transparent; }
.mu-ba__range:focus-visible { outline: none; }
.mu-ba__range:focus-visible ~ .mu-ba__handle i { box-shadow: var(--shadow-sm), 0 0 0 3px var(--gold); }

/* ---------- FAQ accordion ---------- */
.mu-faq { background: var(--cream-2); }
.mu-faq__list { max-width: 760px; margin: 0 auto; }
.mu-faq__item { border-bottom: 1px solid var(--line); }
.mu-faq__item:first-child { border-top: 1px solid var(--line); }
.mu-faq__q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; font-family: 'Cormorant Garamond', serif; font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--green); transition: color 0.3s var(--ease);
}
.mu-faq__q:hover { color: var(--gold-deep); }
.mu-faq__q i { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.mu-faq__q i::before, .mu-faq__q i::after {
  content: ''; position: absolute; top: 50%; left: 50%; background: var(--gold-deep);
  transition: transform 0.4s var(--ease);
}
.mu-faq__q i::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.mu-faq__q i::after  { width: 1.5px; height: 16px; transform: translate(-50%, -50%); }
.mu-faq__item.open .mu-faq__q i::after { transform: translate(-50%, -50%) scaleY(0); }
.mu-faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.42s var(--ease); }
.mu-faq__a > div { overflow: hidden; }
.mu-faq__a p { color: var(--muted); font-size: 0.98rem; padding: 0 4px 26px; }
.mu-faq__item.open .mu-faq__a { grid-template-rows: 1fr; }

/* ---------- Sticky "Termin buchen" bar ---------- */
.mu-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 850;
  background: rgba(13, 38, 22, 0.96); backdrop-filter: blur(12px) saturate(1.2);
  border-top: 1px solid rgba(198,165,99,0.28); box-shadow: 0 -16px 40px -24px rgba(0,0,0,0.7);
  transform: translateY(110%); transition: transform 0.5s var(--ease); will-change: transform;
}
.mu-cta-bar.show { transform: translateY(0); }
.mu-cta-bar__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px clamp(8px, 2.5vw, 32px); }
.mu-cta-bar__txt { display: flex; flex-direction: column; line-height: 1.3; }
.mu-cta-bar__txt strong { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--cream); font-weight: 600; }
.mu-cta-bar__txt span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); }
.mu-cta-bar .btn { flex: 0 0 auto; padding: 13px 30px; }

/* ---------- Gallery heat-glow / warm hover upgrade (B28) ---------- */
.masonry figure img { filter: saturate(0.82) brightness(0.97); }
.masonry figure::before {
  content: ''; position: absolute; inset: 0; z-index: 1; opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
  box-shadow: inset 0 0 70px rgba(198,165,99,0.45);
  background: linear-gradient(160deg, rgba(198,165,99,0.10), transparent 55%);
}
@media (hover: hover) {
  .masonry figure:hover img { filter: saturate(1.1) brightness(1.02); transform: scale(1.07); }
  .masonry figure:hover::before { opacity: 1; }
}

/* ---------- MU responsive ---------- */
@media (max-width: 880px) {
  .mu-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .mu-stat:nth-child(odd)::before { display: none; }
}
@media (max-width: 720px) {
  .mu-ba { aspect-ratio: 4/5; }
  .mu-cta-bar__txt span { display: none; }
  .mu-cta-bar__txt strong { font-size: 1.15rem; }
  .mu-cta-bar .btn { padding: 12px 22px; font-size: 0.72rem; }
}
@media (max-width: 460px) {
  .mu-stats__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- MU reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .mu-cta-bar { transition: none; }
  .mu-faq__a { transition: none; }
  .mu-ink .mu-ink__fill { display: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .benefit-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about__wrap { grid-template-columns: 1fr; gap: 60px; }
  .about__media { max-width: 440px; }
  .masonry { columns: 2; }
  .contact__wrap { grid-template-columns: 1fr; }
  .contact__map { min-height: 300px; order: 2; }
}
@media (max-width: 720px) {
  .menu-toggle { display: block; }
  /* backdrop-filter on a fixed ancestor turns it into the containing block for
     fixed children — which would squash the mobile menu. Drop it on mobile. */
  header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--green-dark); }
  .nav-links {
    position: fixed; inset: 0 0 0 28%; background: var(--green-dark); flex-direction: column;
    justify-content: center; gap: 32px; transform: translateX(100%); transition: transform 0.5s var(--ease);
    box-shadow: -30px 0 80px -40px rgba(0,0,0,0.7);
  }
  .nav-links.open { transform: translateX(0); }
  .benefit-grid, .services-grid, .team-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .about__badge { right: 10px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1, .hero .script, .hero .names, .hero p, .hero__actions, .hero__loc, .hero .crown { opacity: 1; }
}
