/* ═══════════════════════════════════════════════════════════
   Nails by Svenja — Main Stylesheet
   Design: Feminine Luxury Minimalist
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --rose:        #C9847A;
  --rose-light:  #E8C4BF;
  --rose-xlight: #F5ECEA;
  --rose-dark:   #A86860;
  --gold:        #C9A87A;
  --gold-light:  #EDD9BA;
  --cream:       #FDFAF8;
  --cream-2:     #F4EDE9;
  --cream-3:     #E8DDD9;
  --text:        #2C2220;
  --text-2:      #6B5553;
  --text-3:      #9E8785;
  --white:       #FFFFFF;
  --success:     #7BAE8C;
  --error:       #C9604E;

  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 4px rgba(44,34,32,.07);
  --shadow-md:  0 4px 20px rgba(44,34,32,.09);
  --shadow-lg:  0 12px 48px rgba(44,34,32,.12);

  --transition: 220ms ease;
  --max-w:      1140px;
  --nav-h:      72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-b); border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea {
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--text);
}

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: var(--cream-2); }
.section-label {
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: all var(--transition);
  min-height: 52px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,132,122,.35); }
.btn-secondary {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}
.btn-secondary:hover { background: var(--rose-xlight); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #b8955e; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,122,.35); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ── Divider ── */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
  margin: 20px 0 32px;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(253,250,248,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--rose); }
.nav__cta {
  padding: 10px 24px;
  min-height: 42px;
  font-size: .88rem;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav drawer */
.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 12px 20px 24px;
  box-shadow: 0 12px 40px rgba(44,34,32,.13);
  flex-direction: column;
  gap: 2px;
  z-index: 99;
  border-top: 1px solid var(--cream-3);
  /* Hidden by default via transform instead of display:none for animation */
  display: flex;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .28s ease;
}
.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav__mobile a {
  font-size: .97rem;
  color: var(--text);
  font-weight: 500;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  transition: background var(--transition), color var(--transition);
}
.nav__mobile a:hover { background: var(--cream-2); color: var(--rose); }
.nav__mobile .btn {
  margin-top: 10px;
  justify-content: center;
  width: 100%;
  border-radius: var(--radius-lg);
}
/* Hamburger → X animation */
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  background: linear-gradient(160deg, #F5EDE8 0%, #EDD9CE 40%, #E3C9C0 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,132,122,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,122,.14) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
  z-index: 1;
}
.hero__content { flex: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--rose-light);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 24px;
}
.hero__badge svg { width: 14px; height: 14px; }
.hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--rose); }
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__trust {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero__stat { }
.hero__stat-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}
.hero__stat-label { font-size: .8rem; color: var(--text-2); margin-top: 4px; letter-spacing: .04em; }
.hero__image {
  flex: 0 0 420px;
  position: relative;
}
.hero__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--cream-3);
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__image-badge {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__image-badge-icon {
  width: 40px; height: 40px;
  background: var(--rose-xlight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
}
.hero__image-badge-text strong { display: block; font-size: .9rem; }
.hero__image-badge-text span { font-size: .78rem; color: var(--text-2); }

/* ── Hero 3D & Branding ── */

/* Brand signature line */
.hero__brand-line {
  font-family: var(--font-h);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--rose-dark) 0%, var(--gold) 50%, var(--rose-dark) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brand-shimmer 4.5s ease-in-out infinite;
  margin-bottom: 22px;
}
@keyframes brand-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* Decoration layer */
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Crystal gems */
.hero__crystal {
  position: absolute;
  filter: drop-shadow(0 6px 18px rgba(201,132,122,.32));
  animation: crystal-float 7s ease-in-out infinite;
  will-change: transform;
}
.hero__crystal--1 { width: 66px; top: 10%; right: 7%;  animation-duration: 7.5s; animation-delay: 0s;    }
.hero__crystal--2 { width: 54px; bottom: 16%; left: 4%; animation-duration: 9s;   animation-delay: -2.5s; }
.hero__crystal--3 { width: 42px; top: 54%; right: 13%; animation-duration: 6.2s; animation-delay: -4.2s; }
.hero__crystal--4 { width: 36px; top: 28%; left: 10%;  animation-duration: 8.5s; animation-delay: -1.5s; }
@keyframes crystal-float {
  0%, 100% { transform: translateY(0)    rotateX(0deg)   rotateY(0deg)   rotate(0deg); }
  25%       { transform: translateY(-14px) rotateX(14deg)  rotateY(10deg)  rotate(3deg); }
  50%       { transform: translateY(-8px)  rotateX(-5deg)  rotateY(-8deg)  rotate(-2deg); }
  75%       { transform: translateY(-18px) rotateX(8deg)   rotateY(6deg)   rotate(4deg); }
}

/* Nail polish bottles */
.hero__bottle {
  position: absolute;
  filter: drop-shadow(0 4px 14px rgba(201,132,122,.26));
  animation: bottle-float 8s ease-in-out infinite;
  will-change: transform;
}
.hero__bottle--1 { width: 38px; top: 20%; left: 7%;      animation-delay: -1s;  animation-duration: 8.5s; }
.hero__bottle--2 { width: 30px; bottom: 22%; right: 9%;  animation-delay: -4s;  animation-duration: 7s; }
@keyframes bottle-float {
  0%, 100% { transform: translateY(0)    rotate(-4deg); }
  35%       { transform: translateY(-12px) rotate(3deg); }
  70%       { transform: translateY(-6px)  rotate(-6deg); }
}

/* Larger sparkle variant */
.sparkle--lg {
  width: calc(10px * var(--s, 1));
  height: calc(10px * var(--s, 1));
}

/* 3D Scene (replaces hero__image) */
.hero__scene {
  flex: 0 0 420px;
  position: relative;
  perspective: 1100px;
  animation: scene-entrance 1.1s ease .15s both;
}
@keyframes scene-entrance {
  from { opacity: 0; transform: translateX(52px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Decorative rings behind the card */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  pointer-events: none;
  top: 50%; left: 50%;
}
.hero__ring--1 {
  width: 490px; height: 490px;
  border-color: rgba(201,132,122,.13);
  transform: translate(-50%, -50%);
  animation: ring-pulse 7s ease-in-out infinite;
}
.hero__ring--2 {
  width: 388px; height: 388px;
  border-color: rgba(201,168,122,.18);
  transform: translate(-50%, -50%);
  animation: ring-pulse 7s ease-in-out infinite;
  animation-delay: -3.5s;
}
@keyframes ring-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: .5; }
  50%       { transform: translate(-50%, -50%) scale(1.04); opacity: .9; }
}

/* 3D Card */
.hero__card {
  position: relative;
  transform-style: preserve-3d;
  animation: card-levitate 5.5s ease-in-out infinite;
  will-change: transform;
  transition: transform .6s ease;
}
@keyframes card-levitate {
  0%, 100% { transform: perspective(1100px) rotateY(-5deg) rotateX(2deg) translateY(0); }
  50%       { transform: perspective(1100px) rotateY(-3deg) rotateX(-1deg) translateY(-12px); }
}

/* Give image-wrap a shadow boost and position context for sheen */
.hero__card .hero__image-wrap {
  position: relative;
  box-shadow: 0 28px 80px rgba(201,132,122,.22), 0 8px 28px rgba(44,34,32,.11), 0 0 0 1px rgba(255,255,255,.5);
}

/* Light sheen overlay on image */
.hero__card-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255,255,255,.22) 0%,
    rgba(255,255,255,0)   45%,
    rgba(255,255,255,.09) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* Floating info pills */
.hero__pill {
  position: absolute;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-full);
  padding: 10px 18px 10px 10px;
  box-shadow: 0 8px 32px rgba(44,34,32,.09);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 3;
}
.hero__pill strong { display: block; font-size: .84rem; font-weight: 600; line-height: 1.2; color: var(--text); }
.hero__pill span   { font-size: .73rem; color: var(--text-2); }
.hero__pill-icon {
  width: 28px; height: 28px;
  background: var(--rose-xlight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  flex-shrink: 0;
}
.hero__pill--1 {
  top: -18px; right: -16px;
  animation: pill-float 4.5s ease-in-out infinite;
  animation-delay: -1.2s;
}
.hero__pill--2 {
  bottom: 32px; left: -22px;
  animation: pill-float 5.5s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes pill-float {
  0%, 100% { transform: translateY(0)   rotate(-1deg); }
  50%       { transform: translateY(-7px) rotate(1deg); }
}

/* Staggered entrance for hero content */
.hero__content > * { animation: hero-entrance .75s ease both; }
.hero__brand-line  { animation-delay: .05s; }
.hero__badge       { animation-delay: .18s; }
.hero__title       { animation-delay: .32s; }
.hero__sub         { animation-delay: .46s; }
.hero__actions     { animation-delay: .60s; }
.hero__trust       { animation-delay: .75s; }
@keyframes hero-entrance {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════
   ABOUT / ÜBER MICH
   ══════════════════════════════════════════════════ */
.about__inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.about__image {
  flex: 0 0 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-3);
  box-shadow: var(--shadow-md);
}
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__content { flex: 1; }
.about__features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about__feature-icon {
  flex: 0 0 44px;
  height: 44px;
  background: var(--rose-xlight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
}
.about__feature-text strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.about__feature-text span { font-size: .88rem; color: var(--text-2); }

/* Mobile badge */
.mobile-badge {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.mobile-badge__icon {
  flex: 0 0 56px;
  height: 56px;
  background: rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.mobile-badge__icon svg { width: 28px; height: 28px; }
.mobile-badge__text strong {
  display: block;
  font-family: var(--font-h);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.mobile-badge__text p { font-size: .9rem; opacity: .9; line-height: 1.6; }

/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--cream-3);
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--rose-light); }
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--rose-xlight);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  margin-bottom: 20px;
}
.service-card__name {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.service-card__desc { font-size: .9rem; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
.service-card__price { font-size: 1rem; font-weight: 500; color: var(--rose); }

/* ══════════════════════════════════════════════════
   PRICES
   ══════════════════════════════════════════════════ */
.prices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--cream-3);
}
.price-card--highlight {
  background: linear-gradient(160deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  border-color: transparent;
}
.price-card__title {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.price-card--highlight .price-card__title { color: var(--white); }
.price-list { display: flex; flex-direction: column; gap: 10px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-3);
  font-size: .92rem;
}
.price-card--highlight .price-row { border-color: rgba(255,255,255,.2); }
.price-row:last-child { border-bottom: none; }
.price-row__amount { font-weight: 500; color: var(--rose); }
.price-card--highlight .price-row__amount { color: var(--gold-light); }
.price-note {
  margin-top: 48px;
  background: var(--rose-xlight);
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   BOOKING SYSTEM
   ══════════════════════════════════════════════════ */
.booking {
  background: var(--cream);
}
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--cream-3);
  margin: 0 8px;
  transition: background var(--transition);
}
.step.completed:not(:last-child)::after { background: var(--rose-light); }
.step__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-3);
  color: var(--text-3);
  font-size: .8rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.step.active .step__num { background: var(--rose); color: var(--white); }
.step.completed .step__num { background: var(--rose-light); color: var(--rose-dark); }
.step__label { font-size: .75rem; font-weight: 500; color: var(--text-3); white-space: nowrap; }
.step.active .step__label { color: var(--rose); }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text);
}

/* Service selection */
.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.service-option {
  border: 2px solid var(--cream-3);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}
.service-option:hover { border-color: var(--rose-light); background: var(--rose-xlight); }
.service-option.selected { border-color: var(--rose); background: var(--rose-xlight); }
.service-option__name { font-weight: 500; font-size: .95rem; margin-bottom: 4px; }
.service-option__price { font-size: .82rem; color: var(--text-2); }

/* Length options */
.length-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.length-btn {
  border: 2px solid var(--cream-3);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  background: var(--white);
}
.length-btn:hover { border-color: var(--rose-light); }
.length-btn.selected { border-color: var(--rose); background: var(--rose-xlight); }
.length-btn__size { font-weight: 600; font-size: 1.1rem; display: block; }
.length-btn__price { font-size: .75rem; color: var(--text-2); }

/* Design options */
.design-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.design-btn {
  border: 2px solid var(--cream-3);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  text-align: left;
}
.design-btn:hover { border-color: var(--rose-light); }
.design-btn.selected { border-color: var(--rose); background: var(--rose-xlight); }
.design-btn__name { font-weight: 500; font-size: .88rem; }
.design-btn__price { font-size: .78rem; color: var(--text-2); }

/* Toggle options */
.toggle-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.toggle-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border: 2px solid var(--cream-3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  cursor: pointer;
  transition: all var(--transition);
}
.toggle-opt:hover { border-color: var(--rose-light); }
.toggle-opt.active { border-color: var(--rose); background: var(--rose-xlight); }
.toggle-opt__label { font-size: .92rem; font-weight: 500; }
.toggle-opt__extra { font-size: .8rem; color: var(--text-2); }
.toggle-opt__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--cream-3);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.toggle-opt.active .toggle-opt__check { background: var(--rose); border-color: var(--rose); }
.toggle-opt.active .toggle-opt__check::after { content: '✓'; color: var(--white); font-size: .7rem; }

/* Remove old selection */
.remove-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.remove-btn {
  border: 2px solid var(--cream-3);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  background: var(--white);
  font-size: .85rem;
}
.remove-btn:hover { border-color: var(--rose-light); }
.remove-btn.selected { border-color: var(--rose); background: var(--rose-xlight); }
.remove-btn__label { font-weight: 500; display: block; margin-bottom: 4px; }
.remove-btn__price { font-size: .75rem; color: var(--text-2); }

/* Form fields */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 6px;
}
.form-group label .required { color: var(--rose); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius-md);
  font-size: .95rem;
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--rose); background: var(--white); }
.form-control.error { border-color: var(--error); }
.form-hint { font-size: .78rem; color: var(--text-3); margin-top: 4px; }
.form-error { font-size: .78rem; color: var(--error); margin-top: 4px; display: none; }
.form-error.show { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Summary */
.booking-summary {
  background: var(--cream);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.booking-summary h4 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-3);
}
.summary-row:last-child { border-bottom: none; }
.summary-row__label { color: var(--text-2); }
.summary-row__value { font-weight: 500; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--rose-light);
}
.summary-total__label { font-weight: 600; }
.summary-total__price {
  font-family: var(--font-h);
  font-size: 1.8rem;
  color: var(--rose);
  font-weight: 600;
}
.summary-duration { font-size: .82rem; color: var(--text-3); text-align: right; margin-top: 4px; }

/* Step actions */
.step-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 32px;
}
.step-actions .btn { flex: 1; justify-content: center; }

/* Price calculator sidebar */
.price-calculator {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-3);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.price-calculator h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.price-calculator p { font-size: .85rem; color: var(--text-2); margin-bottom: 24px; }
.calc-display {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.calc-price {
  font-family: var(--font-h);
  font-size: 3rem;
  color: var(--rose);
  font-weight: 600;
  line-height: 1;
}
.calc-duration { font-size: .85rem; color: var(--text-2); margin-top: 8px; }
.calc-items { display: flex; flex-direction: column; gap: 8px; }
.calc-item {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--text-2);
}
.calc-item span:last-child { font-weight: 500; color: var(--text); }

/* Form success/error states */
.form-message {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  margin-top: 16px;
}
.form-message.show { display: block; }
.form-message.success { background: #e8f5ec; color: #356944; border: 1px solid #b8ddc1; }
.form-message.error { background: #fce8e6; color: #8c2d23; border: 1px solid #f0c4be; }

/* ══════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════ */
.gallery { overflow: hidden; }
.gallery__slider-wrap {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.gallery__track {
  display: flex;
  gap: 16px;
  cursor: grab;
  transition: transform 350ms ease;
  will-change: transform;
  user-select: none;
}
.gallery__track:active { cursor: grabbing; }
.gallery__slide {
  flex: 0 0 calc(33.333% - 11px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-3);
}
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 500ms ease;
}
.gallery__slide:hover img { transform: scale(1.04); }

.gallery__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.gallery__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--cream-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: all var(--transition);
  cursor: pointer;
}
.gallery__btn:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }
.gallery__dots { display: flex; gap: 8px; }
.gallery__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-3);
  cursor: pointer;
  transition: all var(--transition);
}
.gallery__dot.active { background: var(--rose); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════ */
.reviews__slider-wrap {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
}
.reviews__track {
  display: flex;
  gap: 24px;
  transition: transform 400ms ease;
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--cream-3);
  box-shadow: var(--shadow-sm);
}
.review-card__stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-card__text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 20px;
  font-style: italic;
}
.review-card__author {
  font-weight: 500;
  font-size: .9rem;
  color: var(--text);
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.reviews__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--cream-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: all var(--transition);
  cursor: pointer;
}
.reviews__btn:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }
.reviews__dots { display: flex; gap: 8px; }
.reviews__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-3);
  cursor: pointer;
  transition: all var(--transition);
}
.reviews__dot.active { background: var(--rose); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.contact-options { display: flex; flex-direction: column; gap: 16px; }
.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: all var(--transition);
}
.contact-option:hover { border-color: var(--rose-light); box-shadow: var(--shadow-sm); }
.contact-option__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-option__icon--rose { background: var(--rose-xlight); color: var(--rose); }
.contact-option__icon--green { background: #e8f5ec; color: #25D366; }
.contact-option__icon--pink { background: #fce8f3; color: #E1306C; }
.contact-option__text strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.contact-option__text span { font-size: .82rem; color: var(--text-2); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */
.faq__list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--rose-light); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: .95rem;
  gap: 16px;
}
.faq-question__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--rose-xlight);
  color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.faq-item.open .faq-question__icon { transform: rotate(45deg); background: var(--rose); color: var(--white); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand img { height: 48px; filter: brightness(10); opacity: .9; margin-bottom: 16px; }
.footer__brand p { font-size: .88rem; line-height: 1.7; }
.footer__col h4 {
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--rose-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════
   MODAL (AGB / Datenschutz)
   ══════════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,34,32,.5);
  z-index: 200;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 40px;
  max-width: 720px;
  width: 100%;
  max-height: 85dvh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.modal__title {
  font-family: var(--font-h);
  font-size: 1.6rem;
}
.modal__close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-2);
  transition: all var(--transition);
}
.modal__close:hover { background: var(--rose-xlight); color: var(--rose); }
.modal__content { font-size: .92rem; color: var(--text-2); line-height: 1.75; }
.modal__content h2, .modal__content h3 { color: var(--text); font-family: var(--font-h); margin: 20px 0 8px; }

/* ══════════════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  padding: 0 0 env(safe-area-inset-bottom);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--text);
  color: rgba(255,255,255,.88);
  padding: 16px 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.cookie-banner__link {
  background: none;
  border: none;
  color: var(--rose-light, #e8b4ad);
  font-size: .84rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-left: 6px;
  white-space: nowrap;
}
.cookie-banner__btn {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 24px;
  padding: 9px 22px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.cookie-banner__btn:hover { background: var(--rose-dark); }

/* ══════════════════════════════════════════════════
   SIZE GUIDE
   ══════════════════════════════════════════════════ */
.size-guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-xlight, #fdf0ee);
  border: 1px solid var(--rose-light, #e8b4ad);
  border-radius: 20px;
  padding: 2px 10px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  vertical-align: middle;
  margin-left: 10px;
}
.size-guide-btn:hover { background: var(--rose-xl, #f8ddd8); transform: scale(1.04); }

.size-guide-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,34,32,.55);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.size-guide-overlay.open { display: flex; }
.size-guide-overlay__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(44,34,32,.18);
  text-align: center;
}
.size-guide-overlay__close {
  position: absolute;
  top: 14px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream-2);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.size-guide-overlay__close:hover { background: var(--rose-xlight); color: var(--rose); }
.size-guide-overlay__title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--text);
  margin: 0 0 16px;
}
.size-guide-overlay__img {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-md);
  display: block;
  margin: 0 auto;
}
.size-guide-overlay__hint {
  font-size: .8rem;
  color: var(--text-3);
  margin: 12px 0 0;
}
.size-guide-overlay__card--wide {
  max-width: 1000px;
  padding: 28px 20px 22px;
}
.level-guide__legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin: 14px 0 0;
  font-size: .82rem;
  color: var(--text-2);
  text-align: left;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.level-guide__legend strong { color: var(--text); }

/* ══════════════════════════════════════════════════
   FLOATING CTA (mobile)
   ══════════════════════════════════════════════════ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
  z-index: 90;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
  box-shadow: 0 -4px 24px rgba(201,132,122,.25);
  gap: 10px;
}

/* ══════════════════════════════════════════════════
   SUCCESS SCREEN
   ══════════════════════════════════════════════════ */
.booking-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.booking-success.show { display: block; }
.booking-success__icon {
  width: 80px; height: 80px;
  background: #e8f5ec;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--success);
}
.booking-success h3 {
  font-family: var(--font-h);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.booking-success p { color: var(--text-2); font-size: .95rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .booking__inner { grid-template-columns: 1fr; }
  .price-calculator { position: static; }
  .hero__image { display: none; }
  .hero__scene { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }

  .hero__inner { padding: 40px 20px; }
  .hero__trust { gap: 24px; }

  .about__inner { flex-direction: column; gap: 40px; }
  .about__image { flex: none; width: 100%; aspect-ratio: 4/3; }

  .contact__inner { grid-template-columns: 1fr; gap: 40px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .booking-form-wrap { padding: 24px 20px; }

  .service-options { grid-template-columns: 1fr 1fr; }
  .length-options { grid-template-columns: repeat(4, 1fr); }
  .design-options { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .gallery__slide { flex: 0 0 calc(80% - 8px); }
  .review-card { flex: 0 0 calc(88% - 12px); }

  .float-cta {
    display: flex;
    position: fixed !important;
  }
  body { padding-bottom: 56px; }

  .modal { border-radius: var(--radius-xl) var(--radius-xl) 0 0; padding: 28px 24px; }

  .step-indicator .step__label { display: none; }
  .remove-options { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; width: 100%; }
  .service-options { grid-template-columns: 1fr; }
  .length-options { grid-template-columns: repeat(2, 1fr); }
  .design-options { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .prices__grid { grid-template-columns: 1fr; }
  .price-menu__top { grid-template-columns: 1fr; }
  .price-size-grid { grid-template-columns: repeat(4, 1fr); }
  .price-menu__bottom { grid-template-columns: 1fr; }
  .zone-cards { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════
   HERO LOGO
   ══════════════════════════════════════════════════ */
.hero__logo-wrap {
  margin-bottom: 24px;
}
.hero__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ══════════════════════════════════════════════════
   PRICE MENU (neu)
   ══════════════════════════════════════════════════ */
.price-menu {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.price-menu__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.price-block {
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--cream-3);
}
.price-block--rose {
  background: linear-gradient(160deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  border-color: transparent;
}
.price-block--light {
  background: var(--white);
}
.price-block__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.price-block__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.price-block--rose .price-block__icon { background: rgba(255,255,255,.2); }
.price-block--light .price-block__icon { background: var(--rose-xlight); color: var(--rose); }
.price-block__title {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
.price-block--rose .price-block__title { color: var(--white); }
.price-block__hint {
  width: 100%;
  font-size: .78rem;
  opacity: .75;
  margin-top: -4px;
}
.price-block--light .price-block__hint { color: var(--text-3); }

.price-size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.price-size {
  text-align: center;
  padding: 16px 8px;
  border-radius: var(--radius-md);
}
.price-block--rose .price-size { background: rgba(255,255,255,.12); }
.price-block--light .price-size { background: var(--cream); border: 1px solid var(--cream-3); }
.price-size__label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: .7;
}
.price-size__val {
  display: block;
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 600;
}
.price-block--light .price-size__val { color: var(--rose); }

.price-menu__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-extras-card {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
}
.price-extras__title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-3);
}
.price-extras__list { display: flex; flex-direction: column; gap: 10px; }
.price-extra-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-2);
}
.price-extra-item em { font-style: normal; font-size: .76rem; color: var(--text-3); display: block; }
.price-extra-val { font-weight: 600; color: var(--rose); white-space: nowrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   ANFAHRTSPAUSCHALE
   ══════════════════════════════════════════════════ */
.zone-layout {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.zone-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.zone-card {
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  position: relative;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.zone-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.zone-card--free {
  background: linear-gradient(160deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
}
.zone-card--low { background: var(--white); border-color: var(--cream-3); }
.zone-card--mid { background: var(--white); border-color: var(--cream-3); }
.zone-card--inquiry { background: var(--cream-2); border-color: var(--cream-3); }

.zone-card__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.25);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.zone-card__radius {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--text-3);
}
.zone-card--free .zone-card__radius { color: rgba(255,255,255,.7); }
.zone-card__title {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.zone-card--free .zone-card__title { color: var(--white); }
.zone-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 12px;
  font-family: var(--font-h);
}
.zone-card--free .zone-card__price { color: var(--gold-light); font-size: 1.2rem; }
.zone-card--inquiry .zone-card__price { color: var(--text-2); }
.zone-card__desc { font-size: .84rem; color: var(--text-2); line-height: 1.6; }
.zone-card--free .zone-card__desc { color: rgba(255,255,255,.85); }

.zone-info {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.zone-info__item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--cream-3);
}
.zone-info__item:last-child { border-right: none; }
.zone-info__icon {
  width: 40px; height: 40px;
  background: var(--rose-xlight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  flex-shrink: 0;
}
.zone-info__item strong { display: block; font-size: .92rem; margin-bottom: 4px; }
.zone-info__item span { font-size: .84rem; color: var(--text-2); line-height: 1.6; }

@media (max-width: 1024px) {
  .zone-cards { grid-template-columns: repeat(2, 1fr); }
  .zone-info { flex-direction: column; }
  .zone-info__item { border-right: none; border-bottom: 1px solid var(--cream-3); }
  .zone-info__item:last-child { border-bottom: none; }
  .price-menu__bottom { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .price-menu__top { grid-template-columns: 1fr; }
  .price-menu__bottom { grid-template-columns: 1fr; }
  .zone-cards { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════
   WOW EFFECTS – Animations & 3D
   ══════════════════════════════════════════════════ */

/* ── Animated hero orbs ── */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
  opacity: .55;
  animation: orb-drift 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #DEBCB4 0%, transparent 70%);
  top: -120px; right: -80px;
  animation-delay: 0s; animation-duration: 9s;
}
.hero__orb--2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #E8C89C 0%, transparent 70%);
  bottom: -60px; left: -60px;
  animation-delay: -3s; animation-duration: 11s;
}
.hero__orb--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #C9847A 0%, transparent 70%);
  top: 40%; left: 45%;
  animation-delay: -6s; animation-duration: 7s;
  opacity: .25;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(24px, -18px) scale(1.06); }
  66%       { transform: translate(-16px, 20px) scale(.96); }
}

/* ── Sparkles ── */
.hero__sparkles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sparkle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(6px * var(--s, 1));
  height: calc(6px * var(--s, 1));
  background: var(--gold);
  border-radius: 50%;
  animation: sparkle-pulse 3s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  opacity: 0;
}
.sparkle::before, .sparkle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.sparkle::after { transform: translate(-50%, -50%) rotate(90deg); }
@keyframes sparkle-pulse {
  0%, 100% { opacity: 0; transform: scale(.6) rotate(0deg); }
  50%       { opacity: .8; transform: scale(1.2) rotate(45deg); }
}

/* ── Gradient section titles ── */
.section-title em, .hero__title em {
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* ── 3D card hover ── */
.service-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-8px) perspective(600px) rotateX(3deg);
  box-shadow: 0 20px 56px rgba(201,132,122,.2), 0 4px 12px rgba(44,34,32,.06);
}
.zone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201,132,122,.18);
}
.review-card {
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ── Price block shimmer ── */
.price-block--rose {
  position: relative;
  overflow: hidden;
}
.price-block--rose::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
  animation: shimmer 4s ease-in-out infinite;
  animation-delay: 1.5s;
}
@keyframes shimmer {
  0%   { left: -75%; }
  100% { left: 130%; }
}

/* ── Button shine on hover ── */
.btn-primary, .btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .45s ease;
}
.btn-primary:hover::after, .btn-gold:hover::after { left: 150%; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero badge glass ── */
.hero__badge {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.55);
  border-color: rgba(255,255,255,.7);
  box-shadow: 0 2px 16px rgba(201,132,122,.12);
}

/* ── Hero stat enhanced ── */
.hero__stat-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Booking form glow ── */
.booking-form-wrap {
  box-shadow: 0 8px 48px rgba(201,132,122,.12), 0 2px 8px rgba(44,34,32,.06);
}
.booking-form-wrap:focus-within {
  box-shadow: 0 8px 48px rgba(201,132,122,.2), 0 2px 8px rgba(44,34,32,.06);
}

/* ── Section title gradient ── */
.section-title {
  background: linear-gradient(135deg, var(--text) 0%, var(--text-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Zone card free: animated border ── */
.zone-card--free {
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(201,132,122,.3); }
  50%       { box-shadow: 0 8px 48px rgba(201,132,122,.55); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__orb, .sparkle, .price-block--rose::after, .zone-card--free,
  .reveal { animation: none; transition: none; }
  .reveal { opacity: 1; transform: none; }
}
