/* ============================================
   DERM AESTHETIC BY NADJA BEFORT
   Design System — Gold & Braun, Minimalistisch
   ============================================ */

:root {
  --color-light: #EFE9E1;
  --color-cream: #F2E8DF;
  --color-gold: #C5A059;
  --color-gold-soft: #D4B478;
  --color-gold-deep: #A8843F;
  --color-dark: #3B2A1E;
  --color-dark-soft: #5A4636;
  --color-white: #FDFBF7;
  --color-text: #2A1E14;
  --color-muted: #8A7A6A;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-script: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-soft: 0 4px 30px rgba(59, 42, 30, 0.06);
  --shadow-medium: 0 12px 50px rgba(59, 42, 30, 0.10);
  --shadow-gold: 0 10px 40px rgba(197, 160, 89, 0.25);

  --radius: 4px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1280px;
  --container-narrow: 960px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============== TYPOGRAPHY ============== */

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 300; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 400; }
h4 { font-size: 1.3rem; font-weight: 500; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-block;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 3rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: var(--color-gold);
}
.eyebrow.center { padding-left: 0; }
.eyebrow.center::before { display: none; }

.script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

p { margin-bottom: 1rem; color: var(--color-dark-soft); }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--color-dark-soft); font-weight: 300; }

/* ============== LAYOUT ============== */

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 2rem; }

section { padding: 8rem 0; position: relative; }
section.tight { padding: 5rem 0; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 5rem 0; }
}

/* ============== BUTTONS ============== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-dark);
  color: var(--color-light);
  border: 1px solid var(--color-dark);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateY(100%);
  transition: transform .5s var(--ease);
  z-index: 0;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover {
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}
.btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-light);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}
.btn-gold:hover {
  background: var(--color-gold-deep);
  border-color: var(--color-gold-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-arrow {
  padding: 0;
  background: transparent;
  color: var(--color-dark);
  letter-spacing: 0.15em;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-dark);
}
.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform .4s var(--ease);
  margin-left: 0.4rem;
}
.btn-arrow:hover { color: var(--color-gold); border-color: var(--color-gold); }
.btn-arrow:hover::after { transform: translateX(6px); }

/* ============== NAVIGATION ============== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.6rem 0;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
  transition: padding .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s var(--ease);
}
.nav.scrolled { padding: 1rem 0; }

/* === Cover-Modus: Nav transparent über dem Cover-Bild === */
body.has-cover .nav:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.has-cover .nav:not(.scrolled) .nav-logo img {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}
body.has-cover .nav:not(.scrolled) .nav-links > li > a {
  color: rgba(253, 251, 247, 0.96);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
body.has-cover .nav:not(.scrolled) .nav-links > li > a:hover {
  color: var(--color-gold);
}
body.has-cover .nav:not(.scrolled) .nav-links > li > a::after {
  background: var(--color-light);
}
body.has-cover .nav:not(.scrolled) .nav-cta {
  background: rgba(253, 251, 247, 0.14) !important;
  border: 1px solid rgba(253, 251, 247, 0.45);
  color: var(--color-light) !important;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
body.has-cover .nav:not(.scrolled) .nav-cta:hover {
  background: var(--color-gold) !important;
  border-color: var(--color-gold);
}
body.has-cover .nav:not(.scrolled) .burger span {
  background: var(--color-light);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* Mobile-Menü offen über Cover: Links + Burger × wieder dunkel,
   damit sie auf dem weißen Panel lesbar sind. !important nötig,
   weil die "transparent über Cover"-Regel höhere Spezifität hat. */
@media (max-width: 1024px) {
  body.has-cover .nav .nav-links.open > li > a,
  body.has-cover .nav:not(.scrolled) .nav-links.open > li > a {
    color: var(--color-dark) !important;
    text-shadow: none !important;
  }
  body.has-cover .nav .nav-links.open .nav-cta,
  body.has-cover .nav:not(.scrolled) .nav-links.open .nav-cta {
    background: var(--color-dark) !important;
    color: var(--color-light) !important;
    border-color: var(--color-dark) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  body.has-cover .nav .burger.open span,
  body.has-cover .nav:not(.scrolled) .burger.open span {
    background: var(--color-dark) !important;
    box-shadow: none !important;
  }

  /* Auf Mobile: hover/focus/active-States neutralisieren — kein Sticky-Hover
     nach Tap, keine Verschiebungen, keine cremigen Highlights, keine Goldlinien */
  .nav-links > li > a,
  .nav-links > li > a:hover,
  .nav-links > li > a:focus,
  .nav-links > li > a:active {
    color: var(--color-dark) !important;
    text-shadow: none !important;
    background: transparent !important;
  }
  .nav-links > li > a::after,
  .nav-links > li > a:hover::after,
  .nav-links > li > a:focus::after,
  .nav-links > li > a:active::after,
  .nav-links > li > a.active::after {
    width: 0 !important;
    background: transparent !important;
  }
  .nav-drop-menu a,
  .nav-drop-menu a:hover,
  .nav-drop-menu a:focus,
  .nav-drop-menu a:active {
    background: transparent !important;
    color: var(--color-dark) !important;
  }
  /* TERMIN BUCHEN im offenen Burger-Menü: überall einheitlich dunkel-braun.
     Maximale Spezifität, damit Cover-Glassmorphism-Style nicht durchschlägt */
  .nav-links.open .nav-cta,
  .nav-links.open .nav-cta:hover,
  .nav-links.open .nav-cta:focus,
  .nav-links.open .nav-cta:active,
  body.has-cover .nav .nav-links.open .nav-cta,
  body.has-cover .nav:not(.scrolled) .nav-links.open .nav-cta,
  body.has-cover .nav:not(.scrolled) .nav-links.open .nav-cta:hover,
  body.has-cover .nav .nav-links.open .nav-cta:hover {
    background: var(--color-dark) !important;
    color: var(--color-light) !important;
    border: 0 !important;
    border-color: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    padding: 1rem 1.8rem !important;
    text-align: center !important;
    border-radius: 0 !important;
  }

  /* Headerleisten-CTA (Menü zu) auf Nicht-Cover-Seiten ebenfalls konsistent dunkel */
  .nav-cta,
  .nav-cta:hover,
  .nav-cta:focus,
  .nav-cta:active {
    background: var(--color-dark) !important;
    color: var(--color-light) !important;
    border-color: var(--color-dark) !important;
  }

  /* Tap-Highlight (subtle Goldfarbe) statt sticky-Background */
  .nav-links a {
    -webkit-tap-highlight-color: rgba(197, 160, 89, 0.18);
  }

  /* === Verbietet ALLE layout-shifts beim Hover/Focus/Active auf Mobile === */
  .btn:hover, .btn:focus, .btn:active,
  .btn-primary:hover, .btn-outline:hover, .btn-gold:hover,
  .service-card:hover, .booking-alt:hover,
  .hero-badge:hover, .about-quote:hover,
  .benefit-item:hover .benefit-icon,
  .footer-contact li:hover svg {
    transform: none !important;
  }

  /* Pfeil-Buttons: kein translateX beim Hover */
  .btn-arrow:hover::after,
  .btn-arrow:focus::after,
  .btn-arrow:active::after {
    transform: translateX(0) !important;
  }

  /* Treatment-Zeilen: kein padding-Shift, kein Background-Highlight */
  .treatment-row,
  .treatment-row:hover,
  .treatment-row:focus,
  .treatment-row:active {
    padding-left: 0 !important;
    background: transparent !important;
  }

  /* Nav-Top-Level: kein padding/transform beim Hover */
  .nav-links > li > a:hover,
  .nav-links > li > a:focus,
  .nav-links > li > a:active {
    padding: 0.5rem 0 !important;
    transform: none !important;
  }

  /* Submenü: kein padding/transform beim Hover */
  .nav-drop-menu a:hover,
  .nav-drop-menu a:focus,
  .nav-drop-menu a:active {
    padding: 0.4rem 0 !important;
    transform: none !important;
  }
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-dark);
  letter-spacing: 0.01em;
}
.nav-logo img { height: 102px; width: auto; transition: height .4s var(--ease); }
.nav.scrolled .nav-logo img { height: 76px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dark);
  position: relative;
  padding: 0.5rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--color-gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* dropdown */
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--color-white);
  min-width: 280px;
  padding: 1.5rem 0;
  border: 1px solid rgba(197, 160, 89, 0.15);
  box-shadow: var(--shadow-medium);
  opacity: 0;
  pointer-events: none;
  transition: all .4s var(--ease);
  list-style: none;
}
.nav-drop:hover .nav-drop-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu li { display: block; }
.nav-drop-menu a {
  display: block;
  padding: 0.7rem 1.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: none;
  font-weight: 400;
}
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover { background: var(--color-light); color: var(--color-gold); }

.nav-cta {
  padding: 0.85rem 1.8rem !important;
  background: var(--color-dark);
  color: var(--color-light) !important;
  letter-spacing: 0.15em !important;
  transition: all .4s var(--ease);
}
.nav-cta:hover {
  background: var(--color-gold);
  color: var(--color-white) !important;
}
.nav-cta::after { display: none !important; }

.burger {
  display: none;
  width: 32px; height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 102;
}
.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-dark);
  transition: all .4s var(--ease);
}
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 2px; }
.burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 420px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 6rem 3rem;
    gap: 1.8rem;
    transition: right .5s var(--ease);
    box-shadow: var(--shadow-medium);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .burger { display: block; }
  .nav-drop-menu,
  .nav-drop:hover .nav-drop-menu,
  .nav-drop:focus .nav-drop-menu,
  .nav-drop:active .nav-drop-menu,
  .nav-drop:focus-within .nav-drop-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0.5rem 0 0 1rem !important;
    opacity: 1 !important;
    pointer-events: all !important;
    min-width: unset !important;
  }
  .nav-drop-menu a { padding: 0.4rem 0; font-size: 0.85rem; }
}

/* ============== HERO COVER (Vollbild Intro) ============== */

.hero-cover {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--color-dark);
}
.hero-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: coverZoom 22s ease-in-out infinite alternate;
}
@keyframes coverZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-cover-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(59, 42, 30, 0.18) 0%, transparent 30%, transparent 70%, rgba(59, 42, 30, 0.45) 100%);
  pointer-events: none;
}

/* Marken-Wortmarke mittig — dezent */
.hero-cover-mark {
  position: absolute;
  bottom: 18%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 2;
  width: max-content;
  max-width: 90%;
  /* Initial state direkt = animation from, kein Layout-Sprung beim Laden */
  opacity: 0;
  transform: translate(-50%, 20px);
  animation: fadeUp 1.2s var(--ease) 0.4s forwards;
  will-change: transform, opacity;
}
.hero-cover-mark-line {
  width: 60px;
  height: 1px;
  background: rgba(253, 251, 247, 0.7);
}
.hero-cover-mark-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.95);
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.hero-cover-mark-text em {
  font-style: italic;
  color: var(--color-gold);
  text-transform: none;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-left: 0.4rem;
}

/* Scroll-Indikator */
.hero-cover-scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(253, 251, 247, 0.85);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
  text-decoration: none;
  transition: color .3s var(--ease);
  /* Initial state = animation from */
  opacity: 0;
  transform: translate(-50%, 20px);
  animation: fadeUp 1.2s var(--ease) 0.7s forwards;
  will-change: transform, opacity;
}
.hero-cover-scroll svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: bounceDown 2.4s ease-in-out infinite;
}
.hero-cover-scroll:hover {
  color: var(--color-gold);
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(8px); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 700px) {
  .hero-cover { min-height: 520px; }
  .hero-cover-mark { bottom: 22%; gap: 0.8rem; }
  .hero-cover-mark-line { width: 30px; }
  .hero-cover-mark-text { font-size: 0.85rem; letter-spacing: 0.14em; }
  .hero-cover-scroll { bottom: 1.8rem; font-size: 0.62rem; }
}

/* ============== HERO ============== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-light) 0%, var(--color-cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%; right: -10%;
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, transparent 70%);
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 35vw; height: 35vw;
  background: radial-gradient(circle, rgba(59, 42, 30, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}
.hero-content h1 .hl-1 { display: block; white-space: nowrap; }
.hero-content h1 .script { display: block; font-size: 0.95em; margin-top: -0.2em; }

.hero-content p { font-size: 1.12rem; max-width: 500px; margin-bottom: 2.8rem; line-height: 1.75; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: nowrap; align-items: center; }
.hero-ctas .btn { white-space: nowrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
}
.hero-visual-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2px;
}
.hero-visual-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: zoomSlow 20s ease-in-out infinite alternate;
}

@keyframes zoomSlow {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-badge {
  position: absolute;
  bottom: -30px; left: -30px;
  background: rgba(253, 251, 247, 0.55);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  padding: 1.6rem 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  box-shadow:
    0 20px 60px -12px rgba(59, 42, 30, 0.28),
    0 4px 18px -4px rgba(197, 160, 89, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  max-width: 280px;
  z-index: 3;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}
.hero-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  border-radius: 14px 0 0 14px;
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 70px -10px rgba(59, 42, 30, 0.34),
    0 6px 22px -4px rgba(197, 160, 89, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.hero-badge-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.3rem;
  position: relative;
}
.hero-badge-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-dark);
  font-weight: 500;
  position: relative;
}

.hero-float {
  position: absolute;
  top: -20px; right: -30px;
  background: rgba(42, 30, 20, 0.55);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  color: var(--color-light);
  padding: 1rem 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  z-index: 3;
  border: 1px solid rgba(197, 160, 89, 0.32);
  border-radius: 999px;
  box-shadow:
    0 14px 40px -8px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}
.hero-float::before {
  content: '✦';
  color: var(--color-gold);
  font-style: normal;
  display: inline-block;
  animation: sparkle 2.5s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.6; transform: scale(1.2) rotate(180deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 4rem; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero { padding: 8rem 0 4rem; }
}

/* marquee */
.marquee {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: scroll 35s linear infinite;
  gap: 3rem;
  align-items: center;
}
.marquee span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.marquee .dot { color: var(--color-gold); font-size: 0.8rem; }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== SECTION HEADER ============== */

.sec-header { text-align: center; margin-bottom: 5rem; }
.sec-header.left { text-align: left; max-width: 620px; }
.sec-header h2 { margin-bottom: 1.5rem; }
.sec-header p { max-width: 640px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; }
.sec-header.left p { margin: 0; }

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.divider-ornament span {
  width: 40px; height: 1px;
  background: var(--color-gold);
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

/* ============== SERVICES GRID ============== */

.services { background: var(--color-white); }

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(197, 160, 89, 0.12);
  overflow: hidden;
  position: relative;
  transition: all .6s var(--ease);
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(59, 42, 30, 0.4));
}

.service-card-body { padding: 2rem 2rem 2.2rem; }
.service-card-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 { margin-bottom: 0.8rem; font-size: 1.55rem; }
.service-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-card .btn-arrow { font-size: 0.72rem; }

/* ============== ABOUT SPLIT ============== */

.about-split {
  background: var(--color-light);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual { position: relative; aspect-ratio: 4/5; }
.about-visual-main {
  width: 90%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.about-visual-main img { width: 100%; height: 100%; object-fit: cover; }

/* Solo-Variante (ohne Akzent-Bild) — Hauptbild nimmt die volle Breite */
.about-visual--solo .about-visual-main { width: 100%; }
.about-visual--solo .about-quote { left: -5%; bottom: -8%; }

.about-visual-accent {
  position: absolute;
  top: 10%; right: 0;
  width: 35%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 8px solid var(--color-light);
  z-index: 3;
}
.about-visual-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-quote {
  position: absolute;
  bottom: 6%; left: -6%;
  background: rgba(42, 30, 20, 0.5);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  backdrop-filter: blur(26px) saturate(150%);
  color: var(--color-light);
  padding: 1.5rem 1.8rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  z-index: 4;
  max-width: 270px;
  line-height: 1.4;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 14px;
  box-shadow:
    0 18px 50px -10px rgba(0, 0, 0, 0.45),
    0 4px 18px -4px rgba(197, 160, 89, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.about-quote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
}
.about-quote::after {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 70%; height: 180%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.about-quote:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 60px -8px rgba(0, 0, 0, 0.5),
    0 6px 22px -4px rgba(197, 160, 89, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid rgba(59, 42, 30, 0.1); }
.stat-num { font-family: var(--font-serif); font-size: 3.2rem; font-weight: 300; color: var(--color-gold); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-dark-soft); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-visual { max-width: 440px; margin: 0 auto; }
}

/* ============== BENEFITS STRIP ============== */

.benefits { background: var(--color-dark); color: var(--color-light); }
.benefits .sec-header h2 { color: var(--color-light); }
.benefits .sec-header p { color: rgba(239, 233, 225, 0.75); }
.benefits .eyebrow { color: var(--color-gold); }

.benefit-item { text-align: center; padding: 2rem 1rem; position: relative; }
.benefit-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  transition: all .5s var(--ease);
}
.benefit-icon svg { width: 30px; height: 30px; stroke: var(--color-gold); fill: none; stroke-width: 1.4; }
.benefit-item:hover .benefit-icon { background: var(--color-gold); transform: rotate(360deg); }
.benefit-item:hover .benefit-icon svg { stroke: var(--color-white); }
.benefit-item h4 { color: var(--color-light); font-family: var(--font-serif); font-weight: 400; margin-bottom: 0.8rem; font-size: 1.3rem; }
.benefit-item p { color: rgba(239, 233, 225, 0.7); font-size: 0.95rem; }

/* ============== TREATMENT LIST (Detail Page) ============== */

.treatment-hero {
  padding: 11rem 0 5rem;
  background: linear-gradient(180deg, var(--color-light), var(--color-cream));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.treatment-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
}
.treatment-hero h1 {
  position: relative;
  z-index: 1;
  text-wrap: balance;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 1.1;
}
.treatment-hero p { position: relative; z-index: 1; max-width: 640px; margin: 1.5rem auto 0; font-size: 1.12rem; line-height: 1.8; }

.crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.crumbs a { color: var(--color-dark); }
.crumbs a:hover { color: var(--color-gold); }
.crumbs span { margin: 0 0.6rem; color: var(--color-gold); }

.treatment-list { padding: 6rem 0; }
.treatment-cat { margin-bottom: 5rem; }
.treatment-cat:last-child { margin-bottom: 0; }
.treatment-cat-header { margin-bottom: 3rem; display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid rgba(59, 42, 30, 0.15); padding-bottom: 1.5rem; }
.treatment-cat-header h2 { font-size: 2.2rem; margin: 0; }
.treatment-cat-header .eyebrow { margin: 0; padding-left: 0; }
.treatment-cat-header .eyebrow::before { display: none; }

.treatment-row {
  display: grid;
  grid-template-columns: 1fr 120px 160px auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(59, 42, 30, 0.08);
  transition: all .4s var(--ease);
}
.treatment-row:hover { padding-left: 1.5rem; background: var(--color-light); }
.treatment-row h4 { font-family: var(--font-serif); font-weight: 400; font-size: 1.25rem; color: var(--color-dark); margin-bottom: 0.3rem; }
.treatment-row p { font-size: 0.92rem; color: var(--color-muted); margin: 0; line-height: 1.55; max-width: 580px; }
.treatment-row .duration { font-size: 0.85rem; color: var(--color-dark-soft); letter-spacing: 0.1em; }
.treatment-row .price { font-family: var(--font-serif); font-size: 1.55rem; color: var(--color-gold); font-weight: 400; }
.treatment-row .btn-book {
  padding: 0.8rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--color-dark);
  color: var(--color-light);
  transition: all .4s var(--ease);
  display: inline-block;
}
.treatment-row .btn-book:hover { background: var(--color-gold); }

@media (max-width: 900px) {
  .treatment-row { grid-template-columns: 1fr; gap: 0.6rem; align-items: flex-start; padding: 1.5rem 0; }
  .treatment-row .duration, .treatment-row .price { font-size: 1rem; }
  .treatment-row .btn-book { justify-self: start; margin-top: 0.5rem; }
  .treatment-cat-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ============== BOOKING CTA ============== */

.booking {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
  color: var(--color-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 60%);
  filter: blur(40px);
  animation: pulse 12s ease-in-out infinite;
}
.booking .container-narrow { position: relative; z-index: 1; }
.booking h2 { color: var(--color-light); font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1.5rem; }
.booking h2 .script { color: var(--color-gold); }
.booking p { color: rgba(239, 233, 225, 0.8); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.1rem; }
.booking-ctas { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

/* ============== FAQ ============== */

.faq { background: var(--color-cream); }
.faq-item {
  background: var(--color-white);
  margin-bottom: 1rem;
  border: 1px solid rgba(197, 160, 89, 0.12);
  overflow: hidden;
  transition: all .4s var(--ease);
}
.faq-item:hover { border-color: var(--color-gold); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-dark);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.faq-q::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--color-gold);
  transition: transform .4s var(--ease);
  font-weight: 300;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .5s var(--ease);
  padding: 0 2rem;
  color: var(--color-dark-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 2rem 1.8rem; }

/* ============== CONTACT ============== */

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info p { font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.8; }
.contact-block {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(59, 42, 30, 0.1);
}
.contact-block:last-child { border-bottom: none; }
.contact-block-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
}
.contact-block-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 1.6; }
.contact-block-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 0.3rem; }
.contact-block-value { font-family: var(--font-serif); font-size: 1.15rem; color: var(--color-dark); }
.contact-block-value a:hover { color: var(--color-gold); }

.form-wrap {
  background: var(--color-white);
  padding: 3rem;
  border: 1px solid rgba(197, 160, 89, 0.15);
}
.form-row { margin-bottom: 1.4rem; }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 1.4rem; }
@media (max-width: 640px) { .form-row-grid { grid-template-columns: 1fr; } }

.form-row label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-dark-soft);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(59, 42, 30, 0.15);
  background: var(--color-white);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--color-dark);
  transition: all .3s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--color-dark-soft);
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.form-check input { margin-top: 3px; accent-color: var(--color-gold); }
.form-check a { color: var(--color-gold); text-decoration: underline; }

.form-msg {
  padding: 1rem 1.4rem;
  margin-bottom: 1.4rem;
  border-left: 3px solid var(--color-gold);
  background: var(--color-cream);
  font-size: 0.92rem;
  display: none;
}
.form-msg.success { background: #e8f3ea; border-color: #4a8d5d; color: #2d5a3a; display: block; }
.form-msg.error { background: #f8e4e4; border-color: #b04141; color: #7a2d2d; display: block; }

/* ============== TESTIMONIAL ============== */

.testimonial {
  text-align: center;
  padding: 8rem 0;
  background: var(--color-light);
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.5;
  color: var(--color-dark);
  max-width: 880px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  color: var(--color-gold);
  font-size: 1.5em;
  line-height: 0;
  display: inline;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

/* ============== FOOTER ============== */

.footer {
  background: #2A1E14;
  color: rgba(239, 233, 225, 0.75);
  padding: 6rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand img { height: 72px; width: auto; object-fit: contain; margin-bottom: 1.5rem; filter: brightness(1.1); }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 320px; color: rgba(239, 233, 225, 0.6); }
.footer h5 {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.4rem;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.7rem; }
.footer a { color: rgba(239, 233, 225, 0.7); font-size: 0.95rem; transition: color .3s var(--ease); }
.footer a:hover { color: var(--color-gold); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(239, 233, 225, 0.7);
  font-size: 0.95rem;
}
.footer-contact li svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.footer-contact li:hover svg { transform: scale(1.15); }
.footer-bottom {
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(239, 233, 225, 0.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ============== REVEAL ANIMATION ============== */

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }
.reveal.delay-4 { transition-delay: 0.6s; }

.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 1s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 1s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: all 1s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* cursor */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s var(--ease), width .3s var(--ease), height .3s var(--ease);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), width .3s var(--ease), height .3s var(--ease), opacity .3s var(--ease);
  opacity: 0.5;
}
.cursor-dot.hover { width: 12px; height: 12px; }
.cursor-ring.hover { width: 60px; height: 60px; opacity: 0.8; }

@media (max-width: 1024px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* === BUCHUNGS-HUB (Planity Weiterleitung) === */
.booking-hub {
  padding: 5rem 0 7rem;
  background: linear-gradient(180deg, var(--color-light) 0%, var(--color-cream) 100%);
}

.booking-card {
  background: var(--color-white);
  padding: 4rem 3.5rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: 4px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.booking-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-deep) 50%, var(--color-gold) 100%);
}
.booking-card-icon {
  width: 84px; height: 84px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(197, 160, 89, 0.04) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 50%;
  color: var(--color-gold);
  position: relative;
}
.booking-card-icon svg {
  width: 38px; height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.booking-card .eyebrow { padding-left: 0; margin-bottom: 0.8rem; }
.booking-card .eyebrow::before { display: none; }
.booking-card h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 1.3rem;
  position: relative;
}
.booking-card p {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.02rem;
  line-height: 1.75;
  position: relative;
}
.booking-card strong { color: var(--color-gold); font-weight: 500; }

.btn-large {
  font-size: 0.92rem !important;
  padding: 1.4rem 3rem !important;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}

.booking-card-trust {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 42, 30, 0.08);
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}
.booking-card-trust span { white-space: nowrap; }

.booking-alts {
  margin-top: 5rem;
  text-align: center;
}
.booking-alts h3 { font-size: 1.6rem; }
.booking-alts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.booking-alt {
  background: var(--color-white);
  padding: 2rem 1.4rem;
  text-align: center;
  border: 1px solid rgba(197, 160, 89, 0.12);
  border-radius: 4px;
  transition: all .4s var(--ease);
  display: block;
  text-decoration: none;
  color: var(--color-dark);
}
.booking-alt:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.booking-alt-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  border-radius: 50%;
  transition: all .4s var(--ease);
}
.booking-alt-icon svg {
  width: 20px; height: 20px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.booking-alt:hover .booking-alt-icon { background: var(--color-dark); }
.booking-alt-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}
.booking-alt-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-dark);
  font-weight: 400;
}

@media (max-width: 700px) {
  .booking-hub { padding: 3.5rem 0 5rem; }
  .booking-card { padding: 2.5rem 1.4rem; }
  .booking-card-icon { width: 64px; height: 64px; }
  .booking-card-icon svg { width: 28px; height: 28px; }
  .booking-card-trust { gap: 1rem; flex-direction: column; align-items: center; padding-top: 1.5rem; margin-top: 2rem; }
  .booking-card-trust span { font-size: 0.78rem; }
  .booking-alts { margin-top: 3.5rem; }
  .booking-alts-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .booking-alt {
    padding: 1.2rem 1.3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.1rem;
    row-gap: 0.15rem;
    text-align: left;
    align-items: center;
  }
  .booking-alt-icon {
    margin: 0;
    grid-row: 1 / 3;
    grid-column: 1;
    align-self: center;
  }
  .booking-alt-label {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: end;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }
  .booking-alt-value {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    font-size: 1rem;
    line-height: 1.3;
  }
  .btn-large { padding: 1.1rem 2rem !important; font-size: 0.78rem !important; }
}

/* === Trial Banner (Kostenlose Probebehandlung) === */
.trial-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.8rem;
  padding: 2rem 2.4rem;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}
.trial-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.trial-banner-icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 50%;
  color: var(--color-gold);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.trial-banner-icon svg {
  width: 28px; height: 28px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.trial-banner > div:nth-child(2) { position: relative; z-index: 1; }
.trial-banner .eyebrow { color: var(--color-gold); padding-left: 0; display: block; }
.trial-banner .eyebrow::before { display: none; }
.trial-banner h3 {
  color: var(--color-light);
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0.3rem 0 0.6rem;
}
.trial-banner p {
  color: rgba(239, 233, 225, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.trial-banner .btn { position: relative; z-index: 1; white-space: nowrap; flex-shrink: 0; }

@media (max-width: 800px) {
  .trial-banner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.6rem 1.4rem;
    text-align: center;
  }
  .trial-banner-icon { margin: 0 auto; }
  .trial-banner .btn { width: 100%; justify-content: center; }
  .trial-banner h3 { font-size: 1.25rem; }
}

/* aktion banner */
.aktion-banner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: stretch;
  margin-bottom: 2.4rem;
  background: var(--color-dark);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}
.aktion-banner-media { position: relative; min-height: 320px; }
.aktion-banner-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 48%;
}
.aktion-banner-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(59, 42, 30, 0) 55%, var(--color-dark) 100%);
  pointer-events: none;
}
.aktion-banner-body {
  padding: 2.8rem 2.8rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.aktion-banner-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 80% at 50% 62%, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.aktion-banner-body > * { position: relative; z-index: 1; }
.aktion-banner-body .eyebrow { color: var(--color-gold); padding-left: 0; display: block; }
.aktion-banner-body .eyebrow::before { display: none; }
.aktion-banner-body h3 {
  color: var(--color-light);
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.1;
  margin: 0.4rem 0 0.5rem;
}
.aktion-banner-body h3 .script { color: var(--color-gold); }
.aktion-banner-body p {
  color: rgba(239, 233, 225, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 0.4rem;
}
.aktion-price { display: flex; align-items: center; gap: 1.1rem; margin: 0.6rem 0 0.9rem; }
.aktion-price-old {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1;
  color: rgba(239, 233, 225, 0.5);
  text-decoration: none;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  position: relative;
  display: inline-block;
}
.aktion-price-old::after {
  content: '';
  position: absolute;
  left: -0.06em; right: -0.06em;
  top: 42%;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
  pointer-events: none;
}
.aktion-price-new {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--color-gold);
  font-weight: 400;
}
.aktion-extra {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.7rem;
  font-size: 0.95rem;
  color: rgba(239, 233, 225, 0.85);
}
.aktion-extra strong { color: var(--color-light); font-weight: 600; }
.aktion-extra svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--color-gold);
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 800px) {
  .aktion-banner { grid-template-columns: 1fr; }
  .aktion-banner-media { min-height: 220px; }
  .aktion-banner-media::after {
    background: linear-gradient(0deg, var(--color-dark) 2%, rgba(59, 42, 30, 0) 55%);
  }
  .aktion-banner-body { padding: 2rem 1.6rem 2.2rem; text-align: center; align-items: center; }
  .aktion-banner-body .btn { width: 100%; justify-content: center; }
  .aktion-price { justify-content: center; }
  .aktion-extra { justify-content: center; }
  .aktion-banner-body h3 { font-size: 1.7rem; }
  .aktion-price-new { font-size: 2.8rem; }
}

/* aktion: durchgestrichener Alt-Preis in der Behandlungs-Zeile */
.treatment-row .price .price-old {
  font-size: 0.95rem;
  color: var(--color-muted);
  text-decoration: line-through;
  margin-right: 0.35rem;
  font-weight: 400;
}

/* startseite: aktions-teaser-strip */
.promo-strip--inline {
  margin: 0.5rem 0 3.5rem;
}
.promo-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 1.8rem;
  background: var(--color-dark);
  color: var(--color-light);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo-strip:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(59, 42, 30, 0.22); }
.promo-strip-badge {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-gold);
  padding: 0.4rem 0.75rem;
}
.promo-strip-text {
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(239, 233, 225, 0.88);
}
.promo-strip-text strong { color: var(--color-light); font-weight: 600; }
.promo-strip-text s {
  color: rgba(239, 233, 225, 0.5);
  font-variant-numeric: lining-nums;
}
.promo-strip-text em {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1.3rem;
  color: var(--color-gold);
}
.promo-strip-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}
.promo-strip-cta svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.promo-strip:hover .promo-strip-cta svg { transform: translateX(4px); }

@media (max-width: 700px) {
  .promo-strip { flex-direction: column; text-align: center; gap: 0.9rem; padding: 1.4rem 1.2rem; }
}

/* price note */
.note {
  background: var(--color-cream);
  border-left: 3px solid var(--color-gold);
  padding: 1.4rem 1.8rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--color-dark-soft);
  line-height: 1.7;
}

/* scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--color-gold);
  z-index: 200;
  width: 0%;
  transition: width .1s linear;
}

/* ================================================
   MOBILE OPTIMIERUNG
   ================================================ */

/* Allgemeine Overflow-Absicherung */
html, body { overflow-x: hidden; width: 100%; }

/* ========== Tablet & kleiner (≤900px) ========== */
@media (max-width: 900px) {
  section { padding: 4.5rem 0; }
  section.tight { padding: 3.5rem 0; }

  .container, .container-narrow { padding: 0 1.5rem; }

  h1 { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  h2 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  h3 { font-size: 1.4rem; }

  .lead { font-size: 1.02rem; }
  .sec-header { margin-bottom: 3rem; }

  .eyebrow { font-size: 0.68rem; letter-spacing: 0.28em; padding-left: 2.2rem; }
  .eyebrow::before { width: 1.4rem; }

  /* Navigation Logo kleiner */
  .nav { padding: 1rem 0; }
  .nav-logo img { height: 74px; }
  .nav.scrolled .nav-logo img { height: 58px; }

  /* Hero: Reihenfolge erzwingen — Buttons IMMER über Bild */
  .hero { padding: 7rem 0 3.5rem; min-height: auto; }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .hero-content { order: 1; width: 100%; }
  .hero-visual { order: 2; }

  .hero-content h1 { font-size: clamp(1.6rem, 6.4vw, 2.8rem); margin-bottom: 1.3rem; line-height: 1.14; }
  .hero-content p { font-size: 1rem; margin-bottom: 2rem; }
  .hero-ctas { flex-direction: row; flex-wrap: nowrap; align-items: center; gap: 0.7rem; width: 100%; max-width: none; }
  .hero-ctas .btn { justify-content: center; flex: 1 1 0; min-width: 0; padding: 1rem 0.8rem; font-size: 0.7rem; letter-spacing: 0.1em; }

  /* Visual: Boxen außen — aber Padding im Container, damit nichts überläuft */
  .hero-visual {
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 1.5rem auto 2rem;
    aspect-ratio: 4/5;
    overflow: visible;
  }
  .hero-visual-main {
    overflow: hidden;
    border-radius: 4px;
  }
  .hero-badge {
    bottom: -22px; left: -14px;
    padding: 1rem 1.3rem 1rem 1.4rem;
    max-width: 175px;
    border-radius: 12px;
  }
  .hero-badge::before { border-radius: 12px 0 0 12px; }
  .hero-badge-num { font-size: 2rem; }
  .hero-badge-label { font-size: 0.62rem; letter-spacing: 0.15em; }
  .hero-float {
    top: -14px; right: -10px;
    padding: 0.6rem 1.1rem;
    font-size: 0.82rem;
  }

  /* Marquee kompakter */
  .marquee { padding: 1rem 0; }
  .marquee span { font-size: 1rem; }
  .marquee-track { gap: 1.8rem; }

  /* Service-Cards */
  .service-card-body { padding: 1.5rem 1.5rem 1.8rem; }
  .service-card h3 { font-size: 1.3rem; }

  /* About-Split */
  .about-visual { max-width: 100%; aspect-ratio: auto; }
  .about-visual-main { width: 100%; aspect-ratio: 4/5; max-width: 440px; margin: 0 auto; }
  .about-visual-accent {
    width: 45%; max-width: 200px;
    top: auto; bottom: 15%;
    right: 0;
    border-width: 5px;
  }
  .about-quote {
    bottom: 8%; left: 10px;
    padding: 1rem 1.3rem;
    font-size: 0.95rem;
    max-width: 200px;
  }
  .stats { gap: 1rem; margin-top: 2rem; padding-top: 2rem; }
  .stat-num { font-size: 2.4rem; }

  /* Benefits */
  .benefit-item { padding: 1.5rem 0.5rem; }
  .benefit-icon { width: 60px; height: 60px; margin-bottom: 1.1rem; }
  .benefit-icon svg { width: 24px; height: 24px; }

  /* Testimonial */
  .testimonial { padding: 5rem 0; }
  .testimonial-quote { font-size: clamp(1.15rem, 4.5vw, 1.6rem); line-height: 1.55; }

  /* Booking CTA */
  .booking-ctas { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .booking-ctas .btn { width: 100%; justify-content: center; }

  /* Treatment-Hero */
  .treatment-hero { padding: 9rem 0 3.5rem; }
  .treatment-hero h1 { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .treatment-hero p { font-size: 1rem; margin-top: 1.2rem; }
  .crumbs { font-size: 0.7rem; letter-spacing: 0.15em; margin-bottom: 1rem; }

  /* Treatment-Liste */
  .treatment-list { padding: 4rem 0; }
  .treatment-cat { margin-bottom: 3.5rem; }
  .treatment-cat-header { margin-bottom: 2rem; padding-bottom: 1rem; }
  .treatment-cat-header h2 { font-size: 1.7rem; }
  .treatment-cat-header .eyebrow { padding-left: 0; font-size: 0.62rem; }
  .treatment-cat-header .eyebrow::before { display: none; }

  .treatment-row {
    padding: 1.4rem 0;
    gap: 0.4rem;
  }
  .treatment-row:hover { padding-left: 0.5rem; }
  .treatment-row h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
  .treatment-row p { font-size: 0.88rem; }
  .treatment-row .duration,
  .treatment-row .price { display: inline-block; margin-right: 1rem; }
  .treatment-row .duration { font-size: 0.82rem; color: var(--color-muted); }
  .treatment-row .price { font-size: 1.25rem; }
  .treatment-row .btn-book { margin-top: 0.6rem; padding: 0.7rem 1.3rem; font-size: 0.68rem; }

  /* Form-Wrap */
  .form-wrap { padding: 2rem 1.5rem; }
  .form-row input,
  .form-row select,
  .form-row textarea { padding: 0.85rem 1rem; font-size: 0.95rem; }

  /* Contact-Info */
  .contact-block { padding: 1.2rem 0; gap: 1rem; }
  .contact-block-icon { width: 42px; height: 42px; }
  .contact-block-icon svg { width: 18px; height: 18px; }
  .contact-block-value { font-size: 1.05rem; }

  /* Planity */
  .planity-wrap { padding: 3rem 0 4rem; }
  .planity-embed { padding: 1.5rem 1rem; min-height: 700px; }
  #planity { min-height: 650px; }

  /* Buttons allgemein: größeres Touch-Target */
  .btn {
    padding: 1rem 2rem;
    font-size: 0.75rem;
    min-height: 48px;
  }

  /* Notes/Hinweise */
  .note { padding: 1.2rem 1.3rem; font-size: 0.9rem; margin: 1.5rem 0; }

  /* Divider Ornament kleiner */
  .divider-ornament { margin: 1rem 0; }
  .divider-ornament span { width: 28px; }

  /* Grid-Info-Cards auf Wimpern-Seite (inline styles) */
  .treatment-cat .grid.grid-2 > div { padding: 1.4rem !important; }

  /* Footer kompakter */
  .footer { padding: 4rem 0 1.5rem; }
  .footer-grid { gap: 2.2rem; margin-bottom: 2.5rem; }
  .footer-brand img { height: 56px; margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.9rem; }
  .footer h5 { font-size: 0.72rem; margin-bottom: 1rem; }
  .footer li { margin-bottom: 0.5rem; }
  .footer a { font-size: 0.9rem; }
  .footer-bottom { font-size: 0.78rem; text-align: center; justify-content: center; flex-direction: column; }
}

/* ========== Handy (≤600px) ========== */
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .container, .container-narrow { padding: 0 1.2rem; }

  h1 { font-size: clamp(2rem, 9vw, 2.8rem); }

  /* Nav-CTA kompakter */
  .nav-cta {
    padding: 0.75rem 1.3rem !important;
    font-size: 0.72rem !important;
  }

  /* Hero */
  .hero { padding: 6.5rem 0 3rem; }
  .hero-grid { gap: 2rem; }
  .hero-content h1 { font-size: clamp(1.5rem, 6.8vw, 2.4rem); line-height: 1.14; }
  .hero-content p { font-size: 0.95rem; line-height: 1.65; }
  .hero-ctas { gap: 0.6rem; }
  .hero-ctas .btn { padding: 0.95rem 0.5rem; font-size: 0.62rem; letter-spacing: 0.05em; }

  .hero-badge {
    bottom: -18px; left: -10px;
    padding: 0.85rem 1.1rem;
    max-width: 150px;
  }
  .hero-badge-num { font-size: 1.7rem; }
  .hero-badge-label { font-size: 0.6rem; }

  .hero-float {
    top: -12px; right: -8px;
    padding: 0.55rem 0.85rem;
    font-size: 0.74rem;
  }

  /* Service Cards */
  .service-card-body { padding: 1.3rem; }
  .service-card-num { font-size: 0.78rem; margin-bottom: 0.7rem; }
  .service-card h3 { font-size: 1.2rem; }
  .service-card p { font-size: 0.9rem; margin-bottom: 1.2rem; }

  /* About */
  .about-visual-accent {
    width: 48%;
    bottom: 18%;
    border-width: 4px;
  }
  .about-quote {
    font-size: 0.88rem;
    padding: 0.9rem 1.1rem;
    max-width: 170px;
    bottom: 10%;
  }

  /* Stats nebeneinander behalten, aber kleiner */
  .stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.68rem; letter-spacing: 0.14em; }

  /* Benefits einspaltig */
  .grid.grid-4 { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Treatment-Hero */
  .treatment-hero { padding: 8rem 0 3rem; }
  .treatment-hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .treatment-hero p { font-size: 0.95rem; }

  /* Treatment-Rows */
  .treatment-row { padding: 1.2rem 0; }
  .treatment-row h4 { font-size: 1.05rem; }
  .treatment-row p { font-size: 0.85rem; line-height: 1.55; }
  .treatment-row .price { font-size: 1.15rem; }

  /* Form */
  .form-wrap { padding: 1.5rem 1.2rem; }
  .form-row label { font-size: 0.68rem; letter-spacing: 0.18em; }
  .form-check { font-size: 0.8rem; }

  /* Buttons */
  .btn { padding: 0.95rem 1.6rem; font-size: 0.72rem; letter-spacing: 0.15em; }

  /* Testimonial */
  .testimonial-quote { font-size: clamp(1.05rem, 5vw, 1.4rem); }

  /* Marquee langsamer auf mobile */
  .marquee-track { animation-duration: 28s; gap: 1.4rem; }
  .marquee span { font-size: 0.9rem; }

  /* Nav-Panel Width */
  .nav-links { width: 90%; padding: 5rem 2rem; gap: 1.4rem; }
  .nav-links a { font-size: 0.95rem; }

  /* Booking CTA */
  .booking { padding: 4rem 0; }
  .booking h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .booking p { font-size: 1rem; margin-bottom: 2rem; }

  /* Tight spacing für Impressum/Datenschutz */
  section.tight { padding: 2.5rem 0; }
}

/* ========== Sehr kleine Handys (≤380px) ========== */
@media (max-width: 380px) {
  .container, .container-narrow { padding: 0 1rem; }
  .hero-content h1 { font-size: clamp(1.4rem, 6.8vw, 1.9rem); }
  .hero-ctas .btn { padding: 0.9rem 0.4rem; font-size: 0.55rem; letter-spacing: 0.03em; }
  .hero-badge { max-width: 130px; padding: 0.7rem 0.9rem; bottom: -14px; left: -8px; }
  .hero-badge-num { font-size: 1.4rem; }
  .hero-badge-label { font-size: 0.55rem; letter-spacing: 0.1em; }
  .hero-float { top: -10px; right: -6px; padding: 0.45rem 0.7rem; font-size: 0.66rem; }
  .about-quote { max-width: 150px; font-size: 0.8rem; }
  .treatment-row h4 { font-size: 1rem; }
  .nav-logo img { height: 56px; }
}

/* ========== Touch-Geräte: Hover-Effekte deaktivieren ========== */
@media (hover: none) {
  .service-card:hover { transform: none; box-shadow: var(--shadow-soft); }
  .service-card:hover .service-card-img img { transform: none; }
  .treatment-row:hover { padding-left: 0; background: transparent; }
  .btn-primary:hover, .btn-outline:hover, .btn-gold:hover { transform: none; }
  .benefit-item:hover .benefit-icon { transform: none; background: transparent; }
  .benefit-item:hover .benefit-icon svg { stroke: var(--color-gold); }

  /* Nav: kein sticky-hover auf Touch — Texte bleiben in Position */
  .nav-links > li > a:hover { color: inherit; }
  .nav-links > li > a:hover::after { width: 0; }
  .nav-drop-menu a:hover {
    background: transparent;
    color: inherit;
  }
  .nav-cta:hover {
    background: var(--color-dark);
    color: var(--color-light) !important;
  }
}

/* ========== Landscape auf kleinen Geräten ========== */
@media (max-height: 600px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 7rem 0 3rem; }
  .treatment-hero { padding: 8rem 0 2.5rem; }
}

/* ========== Reduced Motion Support ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}

/* ================================================
   COOKIE / CONSENT BANNER
   ================================================ */
#consent-banner {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 140%);
  width: calc(100% - 2.5rem);
  max-width: 760px;
  background: rgba(250, 247, 241, 0.72);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  box-shadow:
    0 28px 80px -16px rgba(59, 42, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  z-index: 9999;
  opacity: 0;
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .5s ease;
  overflow: hidden;
}
#consent-banner.consent-show { transform: translate(-50%, 0); opacity: 1; }
#consent-banner.consent-hide { transform: translate(-50%, 140%); opacity: 0; }

.consent-inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 1.8rem 2rem;
}
.consent-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
}
.consent-text p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-dark-soft, #5b4636);
}
.consent-text a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
}
.consent-more {
  background: transparent;
  color: var(--color-dark-soft, #5A4636);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.08em;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  margin-right: auto;
}
.consent-more:hover { color: var(--color-gold); }
.consent-deny {
  background: transparent;
  color: var(--color-dark);
  border-color: rgba(59, 42, 30, 0.35);
}
.consent-deny:hover {
  background: rgba(59, 42, 30, 0.06);
  border-color: var(--color-dark);
}
.consent-accept {
  background: var(--color-gold);
  color: #fff;
}
.consent-accept:hover {
  background: var(--color-gold-deep, #a3823f);
  transform: translateY(-1px);
}
.consent-reopen {
  cursor: pointer;
}

@media (max-width: 680px) {
  #consent-banner { bottom: 0; width: 100%; border-radius: 16px 16px 0 0; border-bottom: 0; }
  .consent-inner { gap: 1.1rem; padding: 1.5rem 1.3rem; }
  .consent-actions { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .consent-btn { width: 100%; padding: 1rem; }
  .consent-more { order: 3; margin-right: 0; }
  .consent-deny { order: 2; }
  .consent-accept { order: 1; }
}
