/* =====================================================================
   AFRODITA MASSAGEN — Design System
   Direction: sensual Art-Déco luxe · candlelit black + gold + dusty rose
   Type: Cormorant Garamond (display) + Montserrat (UI)
   ===================================================================== */

:root {
  /* — palette — */
  --ink:        #0E0B09;   /* near-black, warm */
  --ink-1:      #14100C;
  --ink-2:      #1B1510;   /* panels / cards */
  --ink-3:      #241C15;   /* raised cards */
  --espresso:   #2C2118;

  --gold:       #C9A24B;
  --gold-soft:  #E6C77E;
  --gold-deep:  #957530;
  --rose:       #C98A7D;   /* warm "Afrodita" accent, used sparingly */

  --cream:      #F4ECDD;   /* primary text on dark */
  --cream-dim:  #CDBFA8;   /* muted text (contrast-safe on ink) */
  --cream-faint:#9D9079;

  --line:       rgba(201,162,75,.22);
  --line-soft:  rgba(244,236,221,.10);

  --grad-gold:  linear-gradient(135deg, #F0D596 0%, #D9B468 28%, #C9A24B 55%, #9A7B33 100%);
  --grad-dark:  linear-gradient(180deg, #14100C 0%, #0E0B09 100%);

  /* — type — */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Montserrat", system-ui, -apple-system, Segoe UI, sans-serif;

  /* — spacing / shape — */
  --container: 1200px;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 18px 50px -18px rgba(0,0,0,.7);
  --shadow-gold: 0 14px 40px -16px rgba(201,162,75,.45);

  /* — z-index scale — */
  --z-base: 1;
  --z-nav: 40;
  --z-grain: 60;
  --z-float: 70;
  --z-modal: 90;
  --z-lightbox: 95;
  --z-age: 100;

  --ease: cubic-bezier(.22,.61,.36,1);
}

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

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.75;
  color: var(--cream-dim);
  background: var(--ink);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
[hidden] { display: none !important; }   /* override .btn/.field display when toggled hidden */

::selection { background: rgba(201,162,75,.3); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ===================== typography ===================== */
h1,h2,h3,h4 { font-family: var(--serif); color: var(--cream); font-weight: 600; line-height: 1.08; }

.section__title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--cream);
  margin-bottom: .6em;
}
.section__lead {
  max-width: 60ch;
  color: var(--cream-dim);
  font-size: 1.06rem;
}
.section__lead strong { color: var(--gold-soft); font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .8em;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--grad-gold); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 34px; height: 1px; background: var(--grad-gold); }

/* ===================== layout utils ===================== */
.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; z-index: var(--z-base); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem,5vw,4rem); }
.section__head .section__lead { margin-inline: auto; }

/* ===================== buttons ===================== */
.btn {
  --pad-y: .95rem; --pad-x: 1.9rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--sans);
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em;
  border-radius: 2px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
  will-change: transform;
}
.btn--sm { --pad-y: .7rem; --pad-x: 1.25rem; font-size: .72rem; }

.btn--gold {
  background: var(--grad-gold);
  color: #1A1206;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 46px -14px rgba(201,162,75,.6); }
.btn--gold:active { transform: translateY(-1px); }

.btn--ghost {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  background: rgba(201,162,75,.04);
}
.btn--ghost:hover { background: rgba(201,162,75,.14); color: var(--cream); border-color: var(--gold-soft); transform: translateY(-3px); }

/* ===================== GOOGLE BADGE ===================== */
.g-badge {
  position: fixed; bottom: 100px; right: 24px; z-index: var(--z-float);
  display: flex; align-items: center; flex-direction: row-reverse; gap: 0;
}
.g-badge__toggle {
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(15,12,9,.92); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.g-badge__toggle:hover { transform: scale(1.08); }
.g-badge__logo { width: 24px; height: 24px; }
.g-badge__panel {
  display: flex; flex-direction: column; gap: .15rem;
  background: rgba(15,12,9,.92); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  padding: .6rem .9rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  margin-right: .5rem;
  max-width: 0; overflow: hidden; opacity: 0; pointer-events: none;
  transition: max-width .35s var(--ease), opacity .3s var(--ease), padding .3s var(--ease);
  white-space: nowrap;
}
.g-badge--open .g-badge__panel {
  max-width: 180px; opacity: 1; pointer-events: auto;
}
.g-badge__stars { display: flex; gap: 1px; line-height: 1; }
.g-badge__star { font-size: .9rem; color: #555; }
.g-badge__star--on { color: #FBBC05; }
.g-badge__star--half { position: relative; color: #555; }
.g-badge__star--half::before {
  content: "★"; position: absolute; left: 0; top: 0;
  color: #FBBC05; width: 50%; overflow: hidden; display: block;
}
.g-badge__score { font-size: .85rem; font-weight: 700; color: #fff; line-height: 1; }
.g-badge__count { font-size: .68rem; color: rgba(255,255,255,.45); line-height: 1; }

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: var(--z-float);
  width: 58px; height: 58px; display: grid; place-items: center;
  background: var(--grad-gold); color: var(--ink); border-radius: 50%;
  box-shadow: var(--shadow-gold); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 20px 40px -10px rgba(201,162,75,.6); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  pointer-events: none;
  z-index: -1;
  animation: wa-ring 3s infinite var(--ease);
}
.wa-float svg { animation: pulse-gold 2.5s infinite var(--ease); }

@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ===================== PULSE ANIMATIONS ===================== */
.pulse-icon {
  animation: pulse-gold 2.5s infinite var(--ease);
  transform-origin: center bottom;
}
@keyframes pulse-gold {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(201,162,75,0)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 6px rgba(201,162,75,0.6)); }
}

/* Dekorativer Marker auf der Karte */
.map-marker-pulse {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 2; display: flex; align-items: center; justify-content: center;
}
.map-marker-pulse__dot {
  width: 10px; height: 10px; background: var(--gold); border-radius: 50%;
  border: 1px solid var(--ink); box-shadow: 0 0 10px rgba(0,0,0,0.8);
}
.map-marker-pulse__ring {
  position: absolute; width: 10px; height: 10px; border: 1px solid var(--gold);
  border-radius: 50%; animation: map-ring 2s infinite ease-out;
}
@keyframes map-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(5); opacity: 0; }
}
/* ===================== decorative: grain, glow, meander ===================== */
.grain {
  position: fixed; inset: 0; z-index: var(--z-grain); pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.glow { position: fixed; z-index: 0; pointer-events: none; border-radius: 50%; filter: blur(90px); opacity: .5; }
.glow--one { width: 50vw; height: 50vw; top: -12vw; right: -10vw;
  background: radial-gradient(circle, rgba(201,162,75,.20), transparent 65%); }
.glow--two { width: 46vw; height: 46vw; bottom: 8vw; left: -14vw;
  background: radial-gradient(circle, rgba(201,138,125,.16), transparent 65%); }

.meander {
  height: 18px; margin-top: 1.8rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='18' viewBox='0 0 30 18' fill='none' stroke='%23C9A24B' stroke-width='1.6'%3E%3Cpath d='M0 16 H30 M4 16 V5 H21 V13 H10 V8.5 H16.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x; background-position: left center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: .8;
}
.meander--footer { max-width: 520px; margin: 2.4rem auto 1.6rem; }

/* ===================== reveal animation ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== AGE GATE ===================== */
.agegate {
  position: fixed; inset: 0; z-index: var(--z-age);
  display: grid; place-items: center; padding: 1.5rem;
  background: rgba(8,6,5,.86); backdrop-filter: blur(10px);
}
.agegate[hidden] { display: none; }
.agegate__card {
  max-width: 460px; text-align: center;
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: var(--shadow);
}
.agegate__logo { width: 132px; margin: 0 auto 1.2rem; filter: drop-shadow(0 6px 20px rgba(0,0,0,.5)); }
.agegate__title { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: .7rem; }
.agegate__text { font-size: .98rem; margin-bottom: 1.8rem; }
.agegate__actions { display: grid; gap: .8rem; }
.agegate__fine { margin-top: 1.6rem; font-size: .72rem; color: var(--cream-faint); letter-spacing: .05em; }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  transition: background-color .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14,11,9,.82); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
/* ⚠️ Wichtig: Ein Element mit backdrop-filter wird laut CSS-Spezifikation zum
   Bezugsrahmen für position:fixed-Kinder. Sobald die Seite gescrollt war
   (.is-scrolled), richtete sich das Schubladen-Menü deshalb nicht mehr am
   Bildschirm aus, sondern an der ~70px hohen Kopfleiste — es wirkte dadurch
   abgeschnitten und schien hinter dem Seiteninhalt zu liegen.
   Solange das Menü offen ist, wird der Weichzeichner daher abgeschaltet. */
.nav.is-open,
.nav.is-scrolled.is-open { backdrop-filter: none; -webkit-backdrop-filter: none; }

/* .nav erzeugt durch sein z-index einen eigenen Stapelkontext — ein Kind kann
   daraus nicht ausbrechen. Damit das offene Menü über Filmkorn (60) und
   Google-Badge (70) liegt, muss deshalb die Kopfleiste selbst steigen. */
.nav.is-open { z-index: calc(var(--z-float) + 1); }
.nav__inner {
  width: min(100% - 2.6rem, var(--container)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 0;
}
.nav__brand { display: flex; align-items: center; gap: .7rem; }
.nav__logo { width: 48px; height: 48px; object-fit: contain; }
.nav__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--cream); line-height: 1; display: flex; flex-direction: column; }
.nav__name-sub { font-family: var(--sans); font-size: .58rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-top: 2px; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links > a:not(.btn) {
  font-size: .82rem; letter-spacing: .08em; color: var(--cream-dim);
  position: relative; padding: .3rem 0; transition: color .25s var(--ease);
}
/* Unterstrich über transform statt width: width löst pro Frame ein Re-Layout
   aus, scaleX läuft rein im Compositor. Sichtbar identisch. */
.nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--cream); }
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); }

.nav__toggle { display: none; position: relative; z-index: calc(var(--z-nav) + 1); width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 24px; height: 2px; background: var(--gold-soft); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 7rem 1.3rem 4rem; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 18%, rgba(201,162,75,.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201,138,125,.12), transparent 60%),
    var(--grad-dark);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, transparent 40%, rgba(8,6,5,.55) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 880px; }
.hero__title { font-size: clamp(3.2rem, 12vw, 7.5rem); font-weight: 600; line-height: .92; margin-bottom: 1.4rem; }
.hero__title-script {
  display: block; font-style: italic; font-weight: 500;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 24px rgba(201,162,75,.25));
}
.hero__title-line {
  display: block; font-size: .42em; letter-spacing: .5em; text-transform: uppercase;
  font-family: var(--sans); font-weight: 300; color: var(--cream); margin-top: .5rem; padding-left: .5em;
}
.hero__sub { max-width: 54ch; margin: 0 auto 2.3rem; font-size: 1.1rem; color: var(--cream-dim); }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; margin-top: 2.6rem; }
.hero__trust li { font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; color: var(--cream-faint); display: flex; align-items: center; gap: .7rem; }
.hero__trust li:not(:first-child)::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin-left: -1.05rem; }

.hero__scroll { 
  position: absolute; 
  bottom: 2rem; 
  left: 50%; 
  transform: translateX(-50%); 
  z-index: 1; 
  width: 40px; /* Breite für die Klickfläche */
  height: 80px; 
  display: flex; 
  justify-content: center;
  transition: opacity 0.3s ease;
}

.hero__scroll:hover { opacity: 0.7; }

.hero__scroll-line { 
  width: 2px; 
  height: 60px; 
  background: rgba(201, 162, 75, 0.3); /* Sanfter, goldener Hintergrund */
  position: relative; 
  overflow: hidden; 
  border-radius: 2px;
}

.hero__scroll-line::after { 
  content: ""; 
  position: absolute; 
  top: -50%; 
  left: 0; 
  width: 100%; 
  height: 30px; /* Die Länge des laufenden Punktes */
  background: var(--gold); 
  box-shadow: 0 0 10px var(--gold); 
  animation: scrollDot 2.2s var(--ease) infinite; 
}

@keyframes scrollDot { 
  0% { top: -50%; } 
  60%, 100% { top: 100%; } 
}

/* ===================== ÜBER UNS ===================== */
.ueber__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.ueber__text p { margin-bottom: 1.1rem; max-width: 52ch; }
.ueber__features { display: grid; gap: 1.4rem; }
.ueber__features li {
  display: flex; gap: 1.1rem; padding: 1.4rem 1.5rem;
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.ueber__features li:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.feat__icon { flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--gold-soft); background: rgba(201,162,75,.08); border: 1px solid var(--line); }
.ueber__features h3 { font-size: 1.35rem; color: var(--cream); margin-bottom: .15rem; }
.ueber__features p { font-size: .92rem; margin: 0; }


/* ===================== FILTERS ===================== */
.filter-wrap { margin-bottom: 3rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.search-box {
  position: relative;
  width: min(100%, 400px);
}
.search-box input {
  width: 100%;
  background: rgba(14,11,9,.4);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1.5rem 0.8rem 3rem;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.search-box input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 15px rgba(201,162,75,0.2); }
.search-box svg {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-soft);
  pointer-events: none;
}

.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
.filter-btn { 
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; 
  padding: 0.6rem 1.2rem; border: 1px solid var(--line); border-radius: 999px; 
  color: var(--cream-dim); background: rgba(14,11,9,0.4);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--cream); }
.filter-btn.is-active { 
  background: var(--grad-gold); 
  color: var(--ink); 
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* ===================== MASSEURINNEN ===================== */
.masseure__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mcard {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  border: 1px solid var(--line); background: var(--ink-2);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.mcard:hover, .mcard:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.mcard__media { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.mcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mcard:hover .mcard__media img { transform: scale(1.05); }
.mcard__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.3rem 1.4rem;
  background: linear-gradient(180deg,
    rgba(10,7,5,0) 20%,
    rgba(10,7,5,.3) 50%,
    rgba(10,7,5,.82) 72%,
    rgba(10,7,5,.97) 100%);
}
.mcard__name { font-size: clamp(1.4rem,2.4vw,1.9rem); font-family: var(--serif); color: var(--cream); line-height: 1; }
.mcard__meta { font-size: .78rem; color: var(--gold-soft); letter-spacing: .05em; margin-top: .3rem; }
.mcard__tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .65rem; }
.mtag { font-size: .61rem; text-transform: uppercase; letter-spacing: .12em; padding: .25rem .6rem; border: 1px solid rgba(201,162,75,.35); border-radius: 999px; color: var(--cream-dim); background: rgba(10,7,5,.55); backdrop-filter: blur(4px); }
.mcard__cue { position: absolute; top: 1rem; right: 1rem; display: inline-flex; align-items: center; gap: .4rem; font-size: .62rem; text-transform: uppercase; letter-spacing: .16em; color: var(--ink); background: var(--grad-gold); padding: .35rem .7rem; border-radius: 999px; opacity: 0; transform: translateY(-6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.mcard:hover .mcard__cue, .mcard:focus-visible .mcard__cue { opacity: 1; transform: none; }

/* Obere Leiste: Status-Badge (links) + Aktionen (rechts), bricht bei Platzmangel um */
.mcard__topbar {
  position: absolute; top: 1rem; left: 1rem; right: 1rem; z-index: 3;
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: .5rem;
  pointer-events: none;
}
.mcard__topbar > * { pointer-events: auto; }

/* Live-Badge auf der Karte */
.mcard__live {
  display: inline-flex; align-items: center; gap: .45rem; max-width: 100%;
  font-size: .65rem; text-transform: uppercase; letter-spacing: .12em;
  color: #fff; background: rgba(15,40,15,.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(34,197,94,.55); padding: .3rem .7rem;
  border-radius: 999px;
}
.mcard__live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #22c55e; }
  50%       { opacity: .6; box-shadow: 0 0 14px #22c55e; }
}

/* Status-Varianten */
.mcard__live--busy   { background: rgba(40,25,5,.75); border-color: rgba(245,158,11,.5); }
.mcard__live--busy   .mcard__live-dot { background: #f59e0b; box-shadow: 0 0 6px #f59e0b; }
.mcard__live--later  { background: rgba(30,20,5,.75); border-color: rgba(201,162,75,.5); }
.mcard__live--later  .mcard__live-dot { background: #c9a24b; box-shadow: 0 0 6px #c9a24b; animation: none; }
.mcard__live--online .mcard__live-dot { animation: livePulse 2s ease-in-out infinite; }
.mcard__live--offline { background: rgba(10,7,5,.7); border-color: rgba(255,255,255,.08); color: rgba(244,236,221,.5); }
.mcard__live--offline .mcard__live-dot { background: #555; box-shadow: none; animation: none; }

/* "Jetzt verfügbar"-Filter-Button */
.filter-bar--live { margin-bottom: .5rem; }
.filter-btn--live {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  padding: .4rem 1rem; border-radius: 999px;
  border: 1px solid rgba(34,197,94,.4); color: rgba(34,197,94,.75);
  background: rgba(34,197,94,.06); transition: all .25s var(--ease);
}
.filter-btn--live:hover, .filter-btn--live.is-active {
  border-color: #22c55e; color: #22c55e; background: rgba(34,197,94,.14);
}
.filter-btn--live.has-live { border-color: rgba(34,197,94,.6); color: rgba(34,197,94,.9); }
.filter-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: currentColor;
  animation: livePulse 2s ease-in-out infinite;
}

/* ===================== PREISE ===================== */
.preise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.preis-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .3rem; padding: 2rem 1rem;
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line); border-radius: var(--radius);
  text-align: center;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.preis-card:hover { border-color: rgba(201,162,75,.4); transform: translateY(-4px); }
.preis-card--highlight {
  border-color: rgba(201,162,75,.5);
  background: linear-gradient(180deg, rgba(201,162,75,.1), var(--ink-1));
  position: relative;
}
.preis-card--highlight::before {
  content: "Beliebt"; position: absolute; top: -.75rem;
  background: var(--grad-gold); color: var(--ink-1);
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .2rem .7rem; border-radius: 99px;
}
.preis-card__time {
  font-size: 2rem; font-weight: 700; color: var(--cream); line-height: 1;
  font-family: var(--serif);
}
.preis-card__time small { font-size: .9rem; font-weight: 400; color: var(--cream-dim); }
.preis-card__from { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cream-faint); }
.preis-card__price { font-size: 1.6rem; font-weight: 700; color: var(--gold); font-family: var(--serif); }
.preise__note {
  text-align: center; font-size: 1rem; color: var(--cream-dim);
  max-width: 42ch; margin: 0 auto;
  padding: 1.4rem 2rem;
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: rgba(201,162,75,.04);
  line-height: 1.7;
}
.preise__note strong { color: var(--gold-soft); }
@media (max-width: 700px) {
  .preise__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== BUCHUNG KONTAKT-OPTIONEN ===================== */
.buchung__kontakt {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.buchung__kontakt-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .75rem 1.5rem; border-radius: 99px; font-size: .95rem; font-weight: 600;
  border: 1px solid var(--line); background: var(--ink-2); color: var(--cream);
  cursor: pointer; text-decoration: none; transition: border-color .2s, background .2s, transform .2s;
  font-family: var(--sans); letter-spacing: .03em;
}
.buchung__kontakt-btn:hover { border-color: var(--gold-soft); background: rgba(201,162,75,.08); transform: translateY(-2px); }
.buchung__kontakt-btn--tel {
  border-color: var(--gold);
  background: linear-gradient(180deg, #C9A24B 0%, #b08a35 100%);
  color: #1a1410;
  box-shadow: 0 4px 14px rgba(201,162,75,.28);
}
.buchung__kontakt-btn--tel:hover {
  border-color: var(--gold);
  background: linear-gradient(180deg, #d6b059 0%, #c09640 100%);
  box-shadow: 0 6px 18px rgba(201,162,75,.42);
}
@media (max-width: 560px) {
  .buchung__kontakt { flex-direction: column; align-items: stretch; }
  .buchung__kontakt-btn { justify-content: center; }
}

/* ===================== GALERIE ===================== */
.galerie__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gtile { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); cursor: pointer; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gtile:hover img { transform: scale(1.06); }
.gtile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,7,5,.65)); opacity: 0; transition: opacity .3s var(--ease); }
.gtile:hover::after { opacity: 1; }
.gtile__cap { position: absolute; left: 1rem; bottom: .85rem; z-index: 1; font-size: .82rem; color: var(--cream); letter-spacing: .04em; opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.gtile:hover .gtile__cap { opacity: 1; transform: none; }
.gtile--tall { grid-row: span 2; }
.gtile--wide { grid-column: span 2; }

/* ===================== BOOKING ===================== */
.booking { max-width: 880px; margin: 0 auto; background: linear-gradient(180deg, var(--ink-2), var(--ink-1)); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow); }
.booking__steps { display: flex; justify-content: space-between; gap: .5rem; margin-bottom: 2.4rem; counter-reset: s; position: relative; }
.booking__steps::before { content: ""; position: absolute; top: 16px; left: 6%; right: 6%; height: 1px; background: var(--line); z-index: 0; }
.booking__steps li { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .55rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cream-faint); flex: 1; text-align: center; }
.booking__steps li span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); background: var(--ink); font-family: var(--serif); font-size: 1rem; color: var(--cream-faint); transition: all .3s var(--ease); }
.booking__steps li.is-active span { background: var(--grad-gold); color: #1A1206; border-color: transparent; box-shadow: var(--shadow-gold); }
.booking__steps li.is-active { color: var(--gold-soft); }
.booking__steps li.is-done span { border-color: var(--gold); color: var(--gold-soft); }

.booking__panel { border: 0; display: none; animation: fade .4s var(--ease); }
.booking__panel.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.booking__legend { font-family: var(--serif); font-size: clamp(1.5rem,3vw,2rem); color: var(--cream); margin-bottom: 1.5rem; }

.booking__options { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; }
.booking__options--people { grid-template-columns: repeat(3,1fr); }
.opt { position: relative; display: block; cursor: pointer; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt__box { 
  display: flex; 
  flex-direction: column;
  border: 1px solid var(--line); 
  border-radius: var(--radius-sm); 
  padding: 1rem 1.1rem; 
  transition: border-color .25s var(--ease), background-color .25s var(--ease); 
  height: 100%; 
  background: rgba(14,11,9,.4); 
}

.opt:hover .opt__box { 
  border-color: var(--gold); 
}

.opt.is-selected .opt__box { 
  border-color: var(--gold); 
  background: rgba(201,162,75,.1); 
  box-shadow: inset 0 0 0 1px var(--gold); 
}

.opt__title { 
  display: block; 
  font-family: var(--serif); 
  font-size: 1.25rem; 
  color: var(--cream); 
  line-height: 1.2; 
}

.opt__desc { 
  display: block; 
  font-size: .82rem; 
  color: var(--cream-dim); 
  margin-top: .25rem; 
  flex-grow: 1; /* Schiebt den Preis immer bündig ans untere Ende der Karte */
}

.opt__price { 
  display: block; 
  font-size: .85rem; 
  color: var(--gold-soft); 
  margin-top: .8rem; 
  letter-spacing: .04em; 
  font-weight: bold;
}
/* Macht die Inhaltsbox flexibel, damit alles zentriert wird */
.opt--person .opt__box { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; /* Zentriert die Karte ohne Bild vertikal */
  text-align: center; 
  height: 100%; 
  padding: 1.5rem 1rem;
}

/* Feste Bildgröße und runde Form für einen edleren Look */
.opt--person img { 
  width: 90px; 
  height: 90px; 
  object-fit: cover; 
  border-radius: 50%; 
  margin-bottom: 1rem; 
  border: 1px solid var(--line);
}

.opt--person .opt__title { 
  font-size: 1.1rem; 
  margin-bottom: 0.2rem;
}

.booking__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.field label { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); }
.field__opt { color: var(--cream-faint); text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--cream);
  background: rgba(14,11,9,.55); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .9rem; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,162,75,.3); }
.field input::placeholder, .field textarea::placeholder { color: var(--cream-faint); }
.field select option { background: var(--ink-2); color: var(--cream); }
/* dark date/time picker */
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.8) sepia(1) saturate(3) hue-rotate(2deg); cursor: pointer; }

.field__check { display: flex; gap: .7rem; align-items: flex-start; font-size: .86rem; color: var(--cream-dim); cursor: pointer; }
.field__check input { width: 18px; height: 18px; margin-top: .25rem; accent-color: var(--gold); flex-shrink: 0; }

.booking__hint { font-size: .8rem; color: var(--cream-faint); margin-top: .4rem; }
.booking__hint--center { text-align: center; margin-top: 1.2rem; }
.booking__error { color: var(--rose); font-size: .84rem; margin-top: .8rem; min-height: 1em; }

.booking__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.booking__nav .btn--gold { margin-left: auto; }

/* summary */
.summary { display: grid; gap: .7rem; background: rgba(14,11,9,.5); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.4rem; margin-bottom: 1.5rem; }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line-soft); }
.summary__row:last-child { border-bottom: 0; padding-bottom: 0; }
.summary__label { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream-faint); }
.summary__val { color: var(--cream); text-align: right; font-weight: 500; }
.summary__val--price { color: var(--gold-soft); font-family: var(--serif); font-size: 1.4rem; }
.booking__send { display: flex; gap: 1rem; flex-wrap: wrap; }
.booking__send .btn { flex: 1; min-width: 200px; }

/* ===================== KONTAKT ===================== */
.kontakt__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: stretch; }
.kontakt__list { display: grid; gap: 1.1rem; margin: 1.8rem 0; }
.kontakt__list li { display: flex; flex-direction: column; gap: .15rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line-soft); }
.kontakt__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); }
.kontakt__value { font-size: 1.15rem; color: var(--cream); transition: color .25s var(--ease); }
a.kontakt__value:hover { color: var(--gold-soft); }
.kontakt__hours { margin-bottom: 1.8rem; }
.kontakt__hours h3 { font-size: 1.4rem; margin-bottom: .8rem; color: var(--cream); }
.kontakt__hours table { width: 100%; border-collapse: collapse; }
.kontakt__hours th { text-align: left; font-weight: 400; color: var(--cream-dim); padding: .45rem 0; border-bottom: 1px solid var(--line-soft); font-family: var(--sans); }
.kontakt__hours td { text-align: right; color: var(--gold-soft); padding: .45rem 0; border-bottom: 1px solid var(--line-soft); }

.kontakt__map {
  border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column; min-height: 500px;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,162,75,.12), transparent 60%),
    repeating-linear-gradient(45deg, rgba(201,162,75,.04) 0 12px, transparent 12px 24px),
    var(--ink-2);
}
.map-tabs { display: flex; border-bottom: 1px solid var(--line); background: var(--ink-2); flex-shrink: 0; }
.map-tab {
  flex: 1; padding: .65rem 1rem; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: .85rem; letter-spacing: .04em; color: var(--cream-dim);
  transition: color .2s, background .2s; border-bottom: 2px solid transparent;
}
.map-tab:hover { color: var(--cream); background: rgba(201,162,75,.06); }
.map-tab.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(201,162,75,.08); }
#mapGoogle, #mapAnfahrt { flex: 1; display: flex; flex-direction: column; }
#mapGoogle iframe { flex: 1; width: 100%; height: 100%; min-height: 400px; display: block; }
#mapAnfahrt { align-items: center; justify-content: center; padding: 1rem; }
#mapAnfahrt img { max-height: 100%; max-width: 100%; object-fit: contain; border-radius: 6px; }
.map__inner { color: var(--gold-soft); display: grid; gap: .5rem; place-items: center; padding: 2rem; }
.map__inner p { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); }
.map__inner span { font-size: .82rem; color: var(--cream-faint); max-width: 28ch; }

/* ===================== FOOTER ===================== */
/* ===================== JOB BANNER ===================== */
.job-banner {
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, var(--ink-2) 0%, rgba(201,162,75,.07) 100%);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.job-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
}
.job-banner__text { flex: 1; min-width: 260px; }
.job-banner__title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem); color: var(--cream);
  margin: .4rem 0 1rem; line-height: 1.25;
}
.job-banner__list {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem;
}
.job-banner__list li {
  font-size: .9rem; color: var(--cream-dim); padding-left: 1.2rem; position: relative;
}
.job-banner__list li::before {
  content: "✦"; position: absolute; left: 0;
  color: var(--gold); font-size: .6rem; top: .2rem;
}
.job-banner__cta { flex-shrink: 0; white-space: nowrap; }
.eyebrow--gold { color: var(--gold); }
@media (max-width: 640px) {
  .job-banner__inner { flex-direction: column; align-items: flex-start; }
  .job-banner__cta { width: 100%; text-align: center; }
}

.footer { border-top: 1px solid var(--line); padding-top: clamp(3rem,6vw,5rem); position: relative; z-index: var(--z-base); background: var(--ink-1); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; }
.footer__logo { width: 120px; margin-bottom: 1rem; }
.footer__brand p { font-size: .92rem; max-width: 34ch; }
.footer__nav h4 { font-family: var(--sans); font-size: .74rem; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); margin-bottom: 1.1rem; }
.footer__nav a, .footer__nav .linklike { display: block; font-size: .92rem; color: var(--cream-dim); padding: .3rem 0; transition: color .25s var(--ease); text-align: left; }
.footer__nav a:hover, .footer__nav .linklike:hover { color: var(--gold-soft); }
.footer__age { display: block; margin-top: 1rem; font-size: .74rem; color: var(--cream-faint); }
.footer__copy { text-align: center; font-size: .78rem; color: var(--cream-faint); padding: 0 1rem 2.2rem; letter-spacing: .04em; }

/* ===================== MODALS ===================== */
.modal { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: center; padding: 1.5rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8,6,5,.82); backdrop-filter: blur(8px); animation: fade .3s var(--ease); }
.modal__dialog { position: relative; z-index: 1; width: min(100%, 940px); max-height: 90vh; overflow-y: auto;
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1)); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); animation: popin .4s var(--ease); }
@keyframes popin { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 3; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--cream); background: rgba(14,11,9,.6); border: 1px solid var(--line); transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.modal__close:hover { background: var(--grad-gold); color: var(--ink); transform: rotate(90deg); }

/* setcard */
.setcard__body { display: grid; grid-template-columns: 1fr 1fr; }
.setcard__gallery { background: var(--ink); padding: 1.2rem; display: flex; flex-direction: column; gap: .8rem; }

/* main image + nav */
.setcard__main {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 3/4; border: 1px solid var(--line); cursor: zoom-in;
}
.setcard__main-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .16s ease; }
.setcard__main-img.is-fading { opacity: 0; }

/* prev / next arrows */
.setcard__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 64px; display: grid; place-items: center;
  background: rgba(10,7,5,.55); border: 1px solid rgba(201,162,75,.25);
  color: var(--cream); font-size: 1.5rem; line-height: 1;
  backdrop-filter: blur(6px); transition: background .2s, border-color .2s, opacity .2s;
  opacity: 0; border-radius: 4px;
}
.setcard__nav--prev { left: .5rem; border-radius: 4px 0 0 4px; }
.setcard__nav--next { right: .5rem; border-radius: 0 4px 4px 0; }
.setcard__main:hover .setcard__nav { opacity: 1; }
.setcard__nav:hover { background: rgba(201,162,75,.2); border-color: var(--gold); }

/* image counter */
.setcard__counter {
  position: absolute; bottom: .7rem; right: .8rem;
  font-size: .7rem; color: var(--cream-dim); letter-spacing: .08em;
  background: rgba(10,7,5,.6); backdrop-filter: blur(4px);
  padding: .25rem .6rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

/* thumbnail strip */
.setcard__thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; }
.setcard__thumb { border-radius: 6px; overflow: hidden; aspect-ratio: 2/3; border: 2px solid transparent; cursor: pointer; opacity: .55; transition: opacity .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease); }
.setcard__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.setcard__thumb.is-active { opacity: 1; border-color: var(--gold); transform: none; }
.setcard__thumb:hover:not(.is-active) { opacity: .85; border-color: rgba(201,162,75,.5); transform: translateY(-2px); }

.setcard__info { padding: clamp(1.6rem, 3vw, 2.6rem); }
.setcard__name { font-size: clamp(2.2rem,4vw,3rem); color: var(--cream); line-height: 1; }
.setcard__name span { color: var(--gold-soft); font-size: .5em; font-style: italic; }
.setcard__stats { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.4rem; margin: 1.6rem 0; padding: 1.3rem 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.setcard__stat { display: flex; flex-direction: column; gap: .1rem; }
.setcard__stat dt { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); }
.setcard__stat dd { color: var(--cream); font-size: 1rem; }
.setcard__bio { font-size: .95rem; margin-bottom: 1.3rem; }
.setcard__chips { display: flex; flex-wrap: wrap; gap: .65rem .7rem; margin-bottom: 1.8rem; }
.setcard__chip { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; padding: .42rem .95rem; border: 1px solid var(--line); border-radius: 999px; color: var(--cream-dim); }

.setcard__portfolio { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; border-top: 1px solid var(--line-soft); padding-top: 1.5rem; }
.portfolio-cat h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.6rem; font-family: var(--sans); }
.portfolio-cat ul { display: flex; flex-wrap: wrap; gap: 0.4rem 0.8rem; font-size: 0.88rem; color: var(--cream-dim); }
.portfolio-cat li { display: flex; align-items: center; }
.portfolio-cat li::after { content: "•"; margin-left: 0.8rem; opacity: 0.3; color: var(--gold); }
.portfolio-cat li:last-child::after { content: none; }

.setcard__actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.setcard__actions .btn { flex: 1; min-width: 160px; }

/* lightbox */
.lightbox .modal__close { top: 1.5rem; right: 1.5rem; }
.lightbox__img { position: relative; z-index: 1; max-width: 90vw; max-height: 88vh; border-radius: var(--radius-sm); border: 1px solid var(--line); box-shadow: var(--shadow); animation: popin .35s var(--ease); }

/* legal */
.legal { width: min(100%, 620px); padding: clamp(2rem,4vw,3rem); }
.legal__title { font-size: 2.2rem; margin-bottom: .4rem; }
.legal__subtitle { font-size: 1.2rem; color: var(--gold-soft); margin: 1.8rem 0 .8rem; font-family: var(--serif); border-top: 1px solid var(--line-soft); padding-top: 1.4rem; }
.legal__note { font-size: .82rem; color: var(--cream-faint); margin-bottom: 1.4rem; }
.modal .legal a { color: var(--gold-soft); text-decoration: underline; }
.legal p { margin-bottom: 1rem; font-size: .95rem; }
.legal strong { color: var(--cream); font-weight: 500; }
.linklike { color: var(--cream-dim); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .masseure__grid { grid-template-columns: repeat(2, 1fr); }
  .galerie__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .ueber__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
    background: linear-gradient(180deg, var(--ink-1), var(--ink));
    border-left: 1px solid var(--line); padding: 2rem;
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: var(--z-nav);
  }
  .nav.is-open .nav__links { transform: none; }
  .nav__links > a:not(.btn) { font-size: 1.1rem; }
  .nav__cta { width: 100%; }

  .kontakt__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .booking__row { grid-template-columns: 1fr; }
  .booking__options { grid-template-columns: 1fr; }
  .booking__options--people { grid-template-columns: repeat(2,1fr); }
  .booking__steps li { font-size: 0; gap: 0; }      /* show only numbers on mobile */
  .booking__steps li span { font-size: 1rem; }
  .setcard__body { grid-template-columns: 1fr; }
  .setcard__portfolio { grid-template-columns: 1fr; }
  .setcard__gallery { order: -1; }
  .setcard__main { aspect-ratio: 4/5; }
  .setcard__thumbs { grid-template-columns: repeat(4,1fr); }
  .setcard__thumb { aspect-ratio: 1; }
  .hero__trust li:not(:first-child)::before { display: none; }
  .hero__trust { gap: .5rem 1.2rem; }
}
@media (max-width: 460px) {
  .masseure__grid, .galerie__grid { grid-template-columns: 1fr; }
  .galerie__grid { grid-auto-rows: 220px; }
  .gtile--wide { grid-column: auto; }
  .booking__options--people { grid-template-columns: 1fr; }
  .setcard__stats { grid-template-columns: 1fr; }
}

/* ===================== GUTSCHEINE ===================== */
.voucher__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
.voucher__amounts { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .5rem; }
.voucher__amount { display: flex; }
.voucher__amount input { display: none; }
.voucher__amount input + span, .voucher__amount { cursor: pointer; }
.voucher__amount input { display: none; }
.voucher__amount {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .55rem 1.2rem; border: 1px solid var(--line); border-radius: 999px;
  font-size: .9rem; color: var(--cream-dim); cursor: pointer;
  transition: border-color .2s var(--ease), color .2s, background .2s;
}
.voucher__amount:has(input:checked) { border-color: var(--gold); color: var(--gold); background: rgba(201,162,75,.1); }
.voucher__amount:hover { border-color: var(--gold-soft); color: var(--cream); }

.voucher__preview {
  background: linear-gradient(135deg, var(--ink-3), var(--espresso));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.voucher__preview::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,75,.15) 0%, transparent 70%);
}
.voucher__preview-title { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); margin: .5rem 0; }
.voucher__preview-amount { font-family: var(--serif); font-size: 3rem; color: var(--gold); line-height: 1; margin: .5rem 0; }
.voucher__preview-sub { font-size: .75rem; color: var(--cream-faint); letter-spacing: .08em; text-transform: uppercase; }

.voucher__how-title { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: .9rem; }
.voucher__steps { padding-left: 1.2rem; display: flex; flex-direction: column; gap: .6rem; list-style: decimal; }
.voucher__steps li { color: var(--cream-dim); font-size: .88rem; line-height: 1.5; }

.voucher__success { margin-top: 3rem; text-align: center; }
.voucher__success-inner { max-width: 600px; margin: 0 auto; }
.voucher__success-icon { font-size: 3rem; margin-bottom: 1rem; }

.voucher__bank { margin-top: 2rem; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.voucher__bank-grid { display: grid; }
.voucher__bank-row { display: flex; justify-content: space-between; align-items: center; padding: .85rem 1.4rem; border-bottom: 1px solid var(--line-soft); gap: 1rem; font-size: .88rem; }
.voucher__bank-row:last-child { border-bottom: none; }
.voucher__bank-row span { color: var(--cream-faint); flex-shrink: 0; }
.voucher__bank-row strong { color: var(--cream); text-align: right; }
.voucher__bank-row--ref { background: rgba(201,162,75,.07); }
.voucher__bank-row--ref strong.ref { color: var(--gold); font-size: 1.1rem; letter-spacing: .08em; }
.voucher__bank-row--amount strong { color: var(--gold-soft); font-size: 1.1rem; }

/* Zahlungsart */
.voucher__payment { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.voucher__payment-opt {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1rem 1.1rem; border: 1.5px solid var(--line);
  border-radius: var(--radius); cursor: pointer;
  transition: border-color .2s, background .2s;
}
.voucher__payment-opt input { display: none; }
.voucher__payment-opt span { color: var(--cream); font-size: .9rem; font-weight: bold; }
.voucher__payment-opt small { color: var(--cream-faint); font-size: .75rem; }
.voucher__payment-opt:has(input:checked) { border-color: var(--gold); background: rgba(201,162,75,.08); }
.voucher__payment-opt:has(input:checked) span { color: var(--gold); }

@media (max-width: 700px) {
  .voucher__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .voucher__payment { grid-template-columns: 1fr; }
  .voucher__info-side { order: -1; }
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: var(--z-float);
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 1.1rem clamp(1.5rem, 5vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; flex-wrap: wrap;
  box-shadow: 0 -8px 40px rgba(0,0,0,.55);
  animation: slideUp .4s var(--ease);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text { font-size: .82rem; color: var(--cream-dim); max-width: 700px; line-height: 1.65; }
.cookie-banner__text strong { color: var(--cream); }
.cookie-banner__link { color: var(--gold); background: none; border: none; cursor: pointer; font: inherit; font-size: .82rem; padding: 0; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__link:hover { color: var(--gold-soft); }
.cookie-banner__actions { display: flex; gap: .7rem; flex-shrink: 0; }
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: none; opacity: 1; } }

/* ===================== KUNDENSTIMMEN / REVIEWS ===================== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.review-card:hover { border-color: rgba(201,162,75,.45); box-shadow: var(--shadow-gold); }
.review-card__stars { display: flex; gap: .2rem; }
.review-card__text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  flex: 1;
}
.review-card__footer {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-soft);
  padding-top: .9rem;
  font-size: .8rem;
}
.review-card__author { color: var(--cream); font-weight: 500; }
.review-card__tag {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .1em;
  padding: .2rem .6rem; border: 1px solid var(--line); border-radius: 999px;
  color: var(--gold);
}
.review-card__date { color: var(--cream-faint); margin-left: auto; }

/* Star display */
.star { color: var(--line); font-size: 1.2rem; transition: color .15s; }
.star--on, .star--hover { color: var(--gold); }

/* Sterne auf Masseurinnen-Karte */
.mcard__rating { display: flex; align-items: center; gap: .35rem; margin-top: .6rem; }
.mcard__rating .star { font-size: .85rem; }
.mcard__rating-count { font-size: .72rem; color: var(--cream-dim); }

/* Verwöhn-Extras in der Setcard */
.setcard__extras { margin-top: 1.5rem; border-top: 1px solid var(--line-soft); padding-top: 1.5rem; }
.setcard__extras-title { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: .9rem; }
.setcard__extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.setcard__extra { background: var(--ink-1); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: .7rem .9rem; }
.setcard__extra-name { display: block; font-size: .82rem; color: var(--cream); font-weight: 500; margin-bottom: .15rem; }
.setcard__extra-desc { display: block; font-size: .73rem; color: var(--cream-faint); line-height: 1.45; }

/* Hinweis in der Setcard */
.setcard__hinweis { margin-top: 1.5rem; border-top: 1px solid var(--line-soft); padding-top: 1.2rem; }
.setcard__hinweis-label { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: .5rem; }
.setcard__hinweis-text { font-size: .78rem; color: var(--cream-faint); line-height: 1.6; }

/* Bewertungen in der Setcard */
.setcard__reviews { margin-top: 1.5rem; border-top: 1px solid var(--line-soft); padding-top: 1.5rem; }
.setcard__reviews-header { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.setcard__reviews-stars .star { font-size: 1rem; }
.setcard__reviews-avg { font-size: .82rem; color: var(--cream-dim); }
.setcard__review { background: var(--ink-1); border-radius: var(--radius-sm); padding: .85rem 1rem; margin-bottom: .6rem; border: 1px solid var(--line-soft); }
.setcard__review:last-child { margin-bottom: 0; }
.setcard__review-stars { margin-bottom: .3rem; }
.setcard__review-stars .star { font-size: .8rem; }
.setcard__review-text { font-size: .88rem; font-style: italic; color: var(--cream); margin-bottom: .35rem; line-height: 1.55; }
.setcard__review-author { font-size: .72rem; color: var(--cream-faint); }

/* Star picker (interactive) */
.star-picker { display: flex; gap: .3rem; cursor: pointer; }
.star-picker .star { font-size: 1.8rem; transition: color .15s, transform .15s; }
.star-picker .star:hover, .star-picker .star--hover { transform: scale(1.15); }

/* Review modal */
.reviews__action { margin-top: 3rem; }

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll-line::after { display: none; }
}


/* =====================================================================
   QUICK-WHATSAPP — Express-Buchung (Mini-Picker auf Setcards & Floating)
   ===================================================================== */

/* --- Setcard-Karten: kleiner WhatsApp-Express-Button oben rechts --- */
.mcard { position: relative; }

/* Aktions-Leiste: Anrufen + WhatsApp dezent nebeneinander, in der Topbar rechts */
.mcard__actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(14, 11, 9, .65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.06);
}
.mcard__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  height: 32px;
  width: 32px;
  padding: 0;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  user-select: none;
  transition: background .18s ease, color .18s ease, transform .15s ease;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  color: rgba(244, 236, 221, .85);
}
.mcard__action:hover,
.mcard__action:focus-visible {
  outline: none;
  transform: translateY(-1px);
}
.mcard__action--tel:hover,
.mcard__action--tel:focus-visible {
  background: rgba(201, 162, 75, .18);
  color: #E6C77E;
}
.mcard__action--wa:hover,
.mcard__action--wa:focus-visible {
  background: rgba(37, 211, 102, .18);
  color: #25D366;
}
.mcard__action-icon { display: inline-flex; line-height: 0; }
/* Kompakte Icon-Buttons: Text nur für Screenreader (aria-label), visuell ausgeblendet,
   damit Status-Badge + Aktionen immer in die obere Zeile passen */
.mcard__action-label { display: none; }

/* --- Quick-WA Modal: zentral Desktop, Bottom-Sheet Mobile --- */
.qwa {
  max-width: 520px;
  width: min(520px, calc(100vw - 2rem));
  background: linear-gradient(180deg, #1a1410 0%, #110d0a 100%);
  border: 1px solid rgba(201, 162, 75, .22);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.02) inset;
  padding: 0;
  overflow: hidden;
  /* Wenn der Inhalt zu hoch wird (viele Zeit-Slots), darf das Modal scrollen */
  max-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
}
.qwa__body {
  padding: clamp(1.4rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
  flex: 1;
}
.qwa__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 600;
  text-align: center;
  color: #F4ECDD;
  letter-spacing: .01em;
}
.qwa__lead {
  margin: 0;
  text-align: center;
  font-size: .92rem;
  color: rgba(244, 236, 221, .68);
  line-height: 1.5;
}
.qwa__group { display: flex; flex-direction: column; gap: .55rem; }
.qwa__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(201, 162, 75, .85);
  font-weight: 500;
}
.qwa__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.qwa__chips--times .qwa-chip { min-width: 4.2rem; }

.qwa-chip {
  appearance: none;
  border: 1px solid rgba(201, 162, 75, .28);
  background: rgba(255, 255, 255, .03);
  color: #F4ECDD;
  padding: .65rem 1rem;
  min-height: 44px;
  border-radius: 12px;
  font: inherit;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  line-height: 1.15;
  transition: all .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.qwa-chip:hover { border-color: rgba(201, 162, 75, .55); background: rgba(255,255,255,.06); }
.qwa-chip:focus-visible { outline: 2px solid #C9A24B; outline-offset: 2px; }
.qwa-chip.is-active {
  background: linear-gradient(180deg, #C9A24B 0%, #b08a35 100%);
  border-color: #C9A24B;
  color: #1a1410;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(201, 162, 75, .35);
}
.qwa-chip__main { font-weight: 600; }
.qwa-chip__sub {
  font-size: .7rem;
  opacity: .75;
  font-weight: 400;
  letter-spacing: .02em;
}
.qwa-chip.is-active .qwa-chip__sub { opacity: .85; }

/* Belegter Zeit-Slot: ausgegraut, durchgestrichen, nicht klickbar */
.qwa-chip.is-booked,
.qwa-chip.is-booked:hover {
  background: rgba(255, 255, 255, .015);
  border-color: rgba(244, 236, 221, .08);
  color: rgba(244, 236, 221, .28);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgba(201, 162, 75, .35);
  transform: none;
  box-shadow: none;
}
.qwa-chip.is-booked:focus-visible { outline: none; }

/* Person-Chips (mit Avatar) */
.qwa__chips--people { gap: .65rem; }
.qwa-chip--person {
  flex-direction: row;
  gap: .55rem;
  padding: .4rem .9rem .4rem .4rem;
  border-radius: 999px;
  position: relative;
}
.qwa-chip__person-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,75,.18);
  color: #C9A24B;
  font-weight: 600;
  flex-shrink: 0;
}
.qwa-chip__person-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.qwa-chip__person-name { font-size: .88rem; }
.qwa-chip--person.is-online::after {
  content: "";
  position: absolute;
  top: 4px; left: 28px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid #1a1410;
}

/* Datums-Input dezent */
.qwa__date-input {
  margin-top: .3rem;
  background: transparent;
  border: 1px dashed rgba(201,162,75,.3);
  color: rgba(244,236,221,.75);
  padding: .55rem .75rem;
  border-radius: 10px;
  font: inherit;
  font-size: .85rem;
  align-self: flex-start;
  cursor: pointer;
}
.qwa__date-input::-webkit-calendar-picker-indicator { filter: invert(.85) sepia(.4) hue-rotate(0deg) saturate(2); cursor: pointer; }

.qwa__empty {
  color: rgba(244,236,221,.6);
  font-size: .88rem;
  font-style: italic;
  padding: .5rem 0;
}

.qwa__send {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: center;
  margin-top: .4rem;
}
.qwa__cta {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: .95rem 1.2rem;
}
.qwa__shortcut {
  color: rgba(201, 162, 75, .9);
  font-size: .85rem;
  text-decoration: none;
  border-bottom: 1px dashed rgba(201,162,75,.4);
  padding-bottom: 1px;
  transition: color .15s ease, border-color .15s ease;
}
.qwa__shortcut:hover { color: #E6C77E; border-color: #E6C77E; }
.qwa__hint {
  text-align: center;
  font-size: .75rem;
  color: rgba(244,236,221,.5);
  margin: .2rem 0 0;
  line-height: 1.5;
}

/* Bottom-Sheet auf Mobile */
@media (max-width: 560px) {
  #quickWaModal .modal__dialog.qwa {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 22px 22px 0 0;
    max-height: 92vh;
    overflow-y: auto;
    animation: qwa-slideup .28s cubic-bezier(.2,.8,.2,1);
  }
  @keyframes qwa-slideup {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
}

/* =====================================================================
   NEU 08/2026 — Sprachumschalter, FAQ, Anruf-/Gutschein-Overlay,
   sichtbare Telefonnummern, Jobs-Aktionen
   ===================================================================== */

/* ---------- Navigation: Gutschein-Button + Sprachumschalter ---------- */
/* Der Gutschein-Punkt ist ein <button> (öffnet ein Overlay), soll aber
   aussehen wie die übrigen Navigationslinks. */
.nav__linkbtn {
  font-family: var(--sans); font-size: .82rem; letter-spacing: .08em;
  color: var(--cream-dim); background: none; border: 0; cursor: pointer;
  position: relative; padding: .3rem 0; transition: color .25s var(--ease);
}
.nav__linkbtn::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__linkbtn:hover { color: var(--cream); }
.nav__linkbtn:hover::after { transform: scaleX(1); }

.nav__lang { display: inline-flex; align-items: center; gap: .3rem; }
.nav__lang-btn {
  font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .1em;
  color: var(--cream-faint); background: none; border: 0; cursor: pointer;
  padding: .25rem .1rem; transition: color .2s var(--ease);
}
.nav__lang-btn:hover { color: var(--cream); }
.nav__lang-btn.is-active { color: var(--gold); }
.nav__lang-sep { color: var(--cream-faint); font-size: .7rem; opacity: .5; }

/* Menüpunkte nie umbrechen — sonst steht „Über uns" zweizeilig, sobald der
   Flex-Container eng wird. Die Punkte dürfen dafür auch nicht schrumpfen. */
.nav__links > a:not(.btn), .nav__linkbtn, .nav__cta { white-space: nowrap; }
.nav__links > a:not(.btn), .nav__linkbtn { flex: 0 0 auto; }

/* .container ist bei --container: 1200px gedeckelt — die Navigationszeile wird
   also nie breiter als 1200px, egal wie groß der Bildschirm ist. Neun Punkte
   plus Anrufen-Button plus DE/EN passen dort nur mit engeren Abständen und
   etwas kleinerer Schrift hinein. */
@media (min-width: 1201px) {
  .nav__links { gap: 1.35rem; }
  .nav__links > a:not(.btn), .nav__linkbtn { font-size: .78rem; letter-spacing: .05em; }
}

/* Darunter reicht die Breite nicht mehr. Deshalb greift das Burger-Menü jetzt
   schon ab 1200 px statt erst ab 760 px (die Regeln entsprechen dem bestehenden
   Mobil-Menü weiter oben). */
@media (max-width: 1200px) {
  .nav__toggle { display: flex; }
  /* Die Schublade fasst 12 Einträge. Mit zentrierter Ausrichtung und ohne
     Scrollmöglichkeit wurde der Überschuss auf kleineren Displays oben UND
     unten abgeschnitten — die Einträge waren dann nicht mehr erreichbar
     (benötigt ~673px, ein iPhone SE bietet ~547px). Deshalb: oben ausrichten,
     engere Abstände und notfalls scrollbar. */
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start;
    justify-content: flex-start; gap: 1rem;
    background: linear-gradient(180deg, var(--ink-1), var(--ink));
    border-left: 1px solid var(--line);
    padding: 5.5rem 2rem 2.5rem;          /* oben Platz für Logo und Burger */
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: var(--z-nav);
  }
  .nav.is-open .nav__links { transform: none; }
  .nav__links > a:not(.btn), .nav__linkbtn { font-size: 1.05rem; letter-spacing: .06em; }
  .nav__linkbtn { text-align: left; }
  .nav__cta { width: 100%; }
  .nav__lang { margin-top: .4rem; }
  .nav__lang-btn { font-size: .95rem; }
}

/* ---------- Hero: Nummer direkt sichtbar ---------- */
/* Unten deutlich mehr Luft als zuvor (.4rem): Die Nummer hat eine Unterlinie
   und klebte sonst an den Buttons. Oben kollabiert der Abstand mit den 2.3rem
   von .hero__sub, deshalb wirkt dort der größere der beiden Werte. */
.hero__call { margin: 2rem auto clamp(1.8rem, 4vw, 2.6rem); max-width: 42rem; }
.hero__call-lead {
  font-size: .8rem; letter-spacing: .06em; color: var(--cream-dim);
  text-transform: uppercase; margin-bottom: .5rem;
}
.hero__call-number {
  display: inline-block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem); color: var(--gold);
  letter-spacing: .02em; text-decoration: none; line-height: 1.1;
  border-bottom: 1px solid rgba(201,162,75,.35); padding-bottom: .1rem;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.hero__call-number:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

/* ---------- Buchung: WhatsApp-Variante + Nummer ---------- */
.buchung__kontakt-btn--wa { border-color: rgba(37,211,102,.45); }
.buchung__kontakt-btn--wa:hover { border-color: #25D366; background: rgba(37,211,102,.1); }
/* Nummer und Hinweiszeile stehen unter den zentrierten Kontakt-Buttons und
   werden ebenfalls zentriert. Für .buchung__note gab es bisher keine Regel —
   sie erbte dadurch die linksbündige Ausrichtung der Sektion. */
.buchung__number { text-align: center; margin: -1.4rem 0 1.4rem; }
.buchung__number a {
  font-family: var(--serif); font-size: 1.5rem; color: var(--gold);
  text-decoration: none; letter-spacing: .02em;
}
.buchung__number a:hover { color: var(--gold-soft); }

.buchung__note {
  text-align: center; margin-inline: auto; max-width: 46rem;
  font-size: .85rem; color: var(--cream-faint); line-height: 1.7;
}

/* ---------- FAQ (ersetzt „Preise & Dauer") ---------- */
.faq__list { max-width: 54rem; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.014), transparent);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem .4rem; font-family: var(--serif); font-size: 1.08rem;
  color: var(--cream); transition: color .2s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+"; flex-shrink: 0; font-family: var(--sans); font-size: 1.35rem;
  line-height: 1; color: var(--gold); transition: transform .25s var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__q:hover { color: var(--gold-soft); }
.faq__a {
  padding: 0 .4rem 1.3rem; color: var(--cream-dim); font-size: .94rem; line-height: 1.75;
  max-width: 48rem;
}
.faq__a a { color: var(--gold); }
.faq__a strong { color: var(--gold-soft); }
.faq__a p { margin: 0; }
/* Geldautomat-Skizze in den Antworten „Wie bezahle ich?" und „Wo ist der nächste Geldautomat?" */
.faq__img {
  display: block; width: 100%; max-width: 26rem; height: auto;
  margin: 1rem 0 .2rem; border: 1px solid var(--line); border-radius: 6px;
}

/* ---------- Anruf- & Gutschein-Overlay ---------- */
.callcard { max-width: 460px; text-align: center; }
.callcard__inner { padding: clamp(1.8rem, 5vw, 2.6rem); }
.callcard__title {
  font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--cream); margin: .3rem 0 .9rem;
}
.callcard__lead { color: var(--cream-dim); font-size: .92rem; line-height: 1.7; margin-bottom: 1.5rem; }
.callcard__lead strong { color: var(--gold-soft); }
.callcard__number {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.8rem, 6vw, 2.5rem); color: var(--gold);
  text-decoration: none; letter-spacing: .02em; margin-bottom: 1.5rem;
  word-break: break-word;
}
.callcard__number:hover { color: var(--gold-soft); }
.callcard__number--mail { font-size: clamp(1.05rem, 3.6vw, 1.35rem); }
.callcard__actions { display: flex; flex-direction: column; gap: .7rem; }
.callcard__btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; }
.callcard__copy {
  margin-top: 1rem; font-size: .82rem; color: var(--cream-faint);
  text-decoration: underline; text-underline-offset: 3px;
}
.callcard__copy:disabled { color: var(--gold); text-decoration: none; cursor: default; }
.callcard__hours { margin-top: 1.2rem; font-size: .78rem; color: var(--cream-faint); line-height: 1.6; }

/* ---------- Jobs ---------- */
.job-banner__lead { color: var(--cream-dim); font-size: .95rem; margin: .3rem 0 1rem; max-width: 44ch; }
.job-banner__actions {
  display: flex; flex-direction: column; align-items: stretch;
  gap: .7rem; flex-shrink: 0; min-width: 15rem;
}
.job-banner__actions .job-banner__cta { text-align: center; }
.job-banner__number {
  font-family: var(--serif); font-size: 1.35rem; color: var(--gold);
  text-decoration: none; text-align: center; letter-spacing: .02em;
}
.job-banner__number:hover { color: var(--gold-soft); }
.job-banner__form {
  font-size: .8rem; color: var(--cream-faint);
  text-decoration: underline; text-underline-offset: 3px;
}
.job-banner__form:hover { color: var(--cream); }

/* ---------- Footer: Nummer ---------- */
.footer__call { margin-top: .8rem; }
.footer__call a {
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold);
  text-decoration: none; letter-spacing: .02em;
}
.footer__call a:hover { color: var(--gold-soft); }

/* ---------- Hinweis „nur auf Deutsch rechtsverbindlich" ---------- */
.legal__lang-note {
  border-left: 2px solid var(--gold); padding: .6rem 0 .6rem .9rem;
  margin-bottom: 1.4rem; color: var(--cream-dim); font-size: .87rem; line-height: 1.6;
}

/* ---------- Google-Maps-Einwilligung ----------
   Platzhalter statt sofort geladenem iframe: ohne Zustimmung geht keine
   IP-Adresse an Google. Wird per JS durch das echte iframe ersetzt. */
.map-consent {
  flex: 1; min-height: 400px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem; padding: 2rem 1.5rem; text-align: center;
  background:
    linear-gradient(180deg, rgba(201,162,75,.04), transparent),
    var(--ink-2);
  border: 1px dashed rgba(201,162,75,.28);
  border-radius: 6px;
}
.map-consent__icon { color: var(--gold); opacity: .65; }
.map-consent__title { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); }
.map-consent__text {
  font-size: .85rem; line-height: 1.6; color: var(--cream-dim);
  max-width: 34rem; margin-bottom: .4rem;
}
.map-consent__legal {
  font-size: .78rem; color: var(--cream-faint);
  text-decoration: underline; text-underline-offset: 3px;
}
.map-consent__legal:hover { color: var(--cream); }

/* ---------- Aufzählungen in Impressum / Datenschutz ---------- */
.legal__list {
  margin: 0 0 1rem 1.15rem; padding: 0;
  font-size: .95rem; line-height: 1.7; color: var(--cream-dim);
}
.legal__list li { margin-bottom: .35rem; padding-left: .25rem; }
.legal__list li::marker { color: var(--gold); }
.legal__list strong { color: var(--cream); }

/* =====================================================================
   TOUCH-GERÄTE: klebende Hover-Zustände zurücknehmen
   Ein Tap löst auf dem Handy :hover aus — und der Zustand bleibt bis zum
   nächsten Tap woanders hängen. Karten blieben so angehoben, Bilder
   herangezoomt. Die 49 Hover-Regeln einzeln zu kapseln wäre invasiv;
   dieser Block überschreibt gezielt die 15 bewegungsbezogenen davon
   (gleiche Selektoren, weiter unten in der Datei = gewinnt).

   Farbwechsel bleiben absichtlich erhalten — sie sind auf Touch eine
   brauchbare Tap-Rückmeldung. Und Elemente, die per Hover erst EINGEBLENDET
   werden, zeigen wir dauerhaft: Sie wären auf Touch sonst unerreichbar.
   ===================================================================== */
@media (hover: none) {
  /* --- Bewegung zurücknehmen --- */
  .btn--gold:hover,
  .btn--ghost:hover,
  .g-badge__toggle:hover,
  .wa-float:hover,
  .ueber__features li:hover,
  .preis-card:hover,
  .buchung__kontakt-btn:hover,
  .modal__close:hover,
  .setcard__thumb:hover:not(.is-active),
  .star-picker .star:hover { transform: none; }

  /* .mcard und .gtile brauchen eigene Regeln: ihre Hover-Regeln decken
     auch :focus-visible ab, das auf Touch-Geräten weiterhin gelten muss
     (Tastaturbedienung an einem Tablet). Deshalb nur der :hover-Teil. */
  .mcard:hover { transform: none; box-shadow: none; }
  .mcard:hover .mcard__media img { transform: none; }
  .gtile:hover img { transform: none; }

  /* --- Eingeblendetes dauerhaft zeigen --- */
  .mcard__cue,
  .gtile__cap { opacity: 1; transform: none; }
}

/* ---------- Anfahrt: Weg in Worten unter der Skizze ---------- */
.anfahrt__hinweise {
  list-style: none; margin: 0; padding: .9rem 1.1rem 0;
  display: grid; gap: .5rem;
  font-size: .86rem; line-height: 1.55; color: var(--cream-dim);
}
.anfahrt__hinweise li { position: relative; padding-left: 1.1rem; }
.anfahrt__hinweise li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.anfahrt__hinweise strong { color: var(--cream); }

/* Der schwebende Google-Badge (z-index 70) würde sonst auf dem geöffneten
   Menü liegen. */
.nav.is-open ~ .g-badge,
body:has(.nav.is-open) .g-badge { opacity: 0; pointer-events: none; }
