/* ============================================================
   LUMEA Kosmetik & Wellness — styles.css
   Demo-Website von Vor Ort Online (fiktiver Musterbetrieb)
   ============================================================ */

/* ============================================================
   1. DESIGN-TOKENS (Custom Properties)
   ============================================================ */

:root {
  /* Farbpalette */
  --farbe-hintergrund:      #f7f4f0;
  --farbe-weiss:            #ffffff;
  --farbe-text:             #2a2028;
  --farbe-text-leicht:      #6b6068;
  --farbe-aubergine:        #4a2040;
  --farbe-aubergine-dunkel: #321629;
  --farbe-rosegold:         #b08070;
  --farbe-rosegold-hell:    #e8d5cd;
  --farbe-linie:            #e2dbd7;
  --farbe-fehler:           #b0362a;
  --farbe-erfolg:           #2d6b45;

  /* Typografie */
  --font-display: "Palatino Linotype", "Palatino", "Book Antiqua", "Georgia", "Iowan Old Style", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Größen-Skala (fluid via clamp) */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.85rem + 0.25vw, 1rem);
  --text-base: clamp(1rem,     1rem    + 0.2vw,  1.0625rem);
  --text-md:   clamp(1.125rem, 1.1rem  + 0.3vw,  1.25rem);
  --text-lg:   clamp(1.25rem,  1.2rem  + 0.5vw,  1.5rem);
  --text-xl:   clamp(1.5rem,   1.4rem  + 0.8vw,  2rem);
  --text-2xl:  clamp(2rem,     1.8rem  + 1.2vw,  2.75rem);
  --text-3xl:  clamp(2.5rem,   2.2rem  + 1.8vw,  3.75rem);

  /* Zeilenhöhen */
  --leading-tight:  1.15;
  --leading-normal: 1.65;
  --leading-loose:  1.8;

  /* Letter-Spacing */
  --tracking-tight:  -0.02em;
  --tracking-wide:   0.08em;
  --tracking-wider:  0.15em;

  /* Spacing (4px-Basis) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-7:  2.5rem;
  --space-8:  3rem;
  --space-9:  4rem;
  --space-10: 6rem;
  --space-11: 8rem;

  /* Border-Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm:   0 2px  8px  rgba(42, 32, 40, 0.06);
  --shadow-md:   0 6px  20px rgba(42, 32, 40, 0.10);
  --shadow-lg:   0 16px 48px rgba(42, 32, 40, 0.14);
  --shadow-glow: 0 0   20px  rgba(176, 128, 112, 0.25);

  /* Transitions */
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1.0);
  --dur-fast:    160ms;
  --dur-mid:     280ms;
  --dur-slow:    450ms;

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
  --demo-banner-height: 36px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--farbe-text);
  background-color: var(--farbe-hintergrund);
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4 {
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

/* ============================================================
   3. SKIP-LINK (Accessibility)
   ============================================================ */

.skip-link {
  position: fixed;
  top: -100%;
  left: var(--space-4);
  z-index: 9999;
  background: var(--farbe-aubergine);
  color: var(--farbe-weiss);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: top var(--dur-fast) var(--ease-out);
}

.skip-link:focus {
  top: calc(var(--demo-banner-height) + var(--space-3));
}

/* ============================================================
   4. DEMO-BALKEN
   ============================================================ */

.demo-balken {
  background: var(--farbe-aubergine-dunkel);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-align: center;
  padding: 8px var(--space-4);
  position: relative;
  z-index: 200;
  height: var(--demo-banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.demo-balken a {
  color: var(--farbe-rosegold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.demo-balken a:hover {
  color: var(--farbe-rosegold-hell);
}

/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(247, 244, 240, 0.95);
  border-bottom: 1px solid transparent;
  transition:
    background var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(247, 244, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--farbe-linie);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--farbe-aubergine);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.logo-claim {
  font-size: var(--text-xs);
  color: var(--farbe-rosegold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-top: 2px;
}

.logo .lumea-strich {
  margin-top: 3px;
}

/* Haupt-Navigation */
.haupt-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-links a {
  font-size: var(--text-sm);
  color: var(--farbe-text);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--farbe-rosegold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
}

.nav-links a:hover,
.nav-links a.aktiv {
  color: var(--farbe-aubergine);
}

.nav-links a:hover::after,
.nav-links a.aktiv::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) var(--ease-out);
}

.hamburger:hover {
  background: var(--farbe-rosegold-hell);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--farbe-aubergine);
  border-radius: 2px;
  transition:
    transform var(--dur-mid) var(--ease-spring),
    opacity var(--dur-fast) var(--ease-out);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--demo-banner-height) + var(--header-height));
  left: 0;
  right: 0;
  background: var(--farbe-weiss);
  border-bottom: 2px solid var(--farbe-linie);
  z-index: 90;
  padding: var(--space-6) var(--space-6) var(--space-8);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  opacity: 0;
  transition:
    transform var(--dur-mid) var(--ease-out),
    opacity var(--dur-mid) var(--ease-out);
}

.mobile-nav.offen {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: block;
  font-size: var(--text-md);
  color: var(--farbe-text);
  font-weight: 500;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--farbe-linie);
  transition: color var(--dur-fast) var(--ease-out);
}

.mobile-nav a:hover,
.mobile-nav a.aktiv {
  color: var(--farbe-aubergine);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .btn-primaer {
  margin-top: var(--space-4);
  text-align: center;
  display: block;
}

/* Mobile Sticky Bottom Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--farbe-weiss);
  border-top: 1px solid var(--farbe-linie);
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 -4px 16px rgba(42, 32, 40, 0.10);
  gap: var(--space-3);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn-primaer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--farbe-aubergine);
  color: var(--farbe-weiss);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px var(--space-7);
  border-radius: var(--radius-pill);
  min-height: 48px;
  min-width: 44px;
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-mid) var(--ease-spring),
    box-shadow var(--dur-mid) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}

.btn-primaer:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--farbe-aubergine-dunkel);
}

.btn-primaer:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  transition-duration: var(--dur-fast);
}

.btn-primaer:disabled,
.btn-primaer[disabled] {
  background: #c4b0c0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: transparent;
  color: var(--farbe-weiss);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 13px var(--space-7);
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.6);
  min-height: 48px;
  transition:
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-ghost-dunkel {
  color: var(--farbe-aubergine);
  border-color: var(--farbe-aubergine);
}

.btn-ghost-dunkel:hover {
  background: var(--farbe-rosegold-hell);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--farbe-aubergine);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: var(--space-2) 0;
  min-height: 44px;
  transition: color var(--dur-fast) var(--ease-out);
}

.btn-text:hover {
  color: var(--farbe-rosegold);
}

/* ============================================================
   7. LUMEA SIGNATURE-STRICH
   ============================================================ */

.lumea-strich {
  overflow: visible;
  display: block;
  transition: opacity var(--dur-mid) var(--ease-out);
}

.logo .lumea-strich {
  margin-top: var(--space-1);
}

.abschnitt-strich {
  display: block;
  width: 48px;
  height: 12px;
  margin-bottom: var(--space-3);
  color: var(--farbe-rosegold);
}

/* ============================================================
   8. SEITEN-CONTAINER & LAYOUT-HELFER
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-10) 0;
}

.section-sm {
  padding: var(--space-8) 0;
}

.section-kicker {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--farbe-rosegold);
  margin-bottom: var(--space-3);
}

.section-titel {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--farbe-aubergine);
  margin-bottom: var(--space-5);
}

.section-lead {
  font-size: var(--text-md);
  color: var(--farbe-text-leicht);
  line-height: var(--leading-loose);
  max-width: 60ch;
}

.text-zentriert {
  text-align: center;
}

.text-zentriert .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Grid-Hilfsmittel */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }

/* ============================================================
   9. SEITENHEADER (Unterseiten — schlank)
   ============================================================ */

.seiten-hero {
  background: linear-gradient(135deg, var(--farbe-aubergine-dunkel) 0%, var(--farbe-aubergine) 60%, #6b3558 100%);
  padding: var(--space-10) 0 var(--space-9);
  color: var(--farbe-weiss);
}

.seiten-hero .breadcrumb {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-5);
}

.seiten-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--dur-fast) var(--ease-out);
}

.seiten-hero .breadcrumb a:hover {
  color: var(--farbe-rosegold-hell);
}

.seiten-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.seiten-hero .lead {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.8);
  max-width: 50ch;
  line-height: var(--leading-loose);
}

/* ============================================================
   10. HERO (Startseite)
   ============================================================ */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(50, 22, 41, 0.82) 0%, rgba(74, 32, 64, 0.75) 50%, rgba(107, 53, 88, 0.80) 100%),
    url('img/hero.jpg') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(176, 128, 112, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-11) var(--space-6);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-10);
  align-items: center;
}

.hero-content { max-width: 56ch; }

.hero-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--farbe-rosegold);
  margin-bottom: var(--space-5);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--farbe-weiss);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}

.hero-lead {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-7);
}

.hero-bewertung {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--farbe-weiss);
}

.hero-bewertung .sterne {
  color: var(--farbe-rosegold);
  letter-spacing: 2px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Hero Deko-Block */
.hero-deko {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-deko-block {
  width: 280px;
  height: 360px;
  background: linear-gradient(135deg, rgba(176, 128, 112, 0.2) 0%, rgba(176, 128, 112, 0.08) 100%);
  border: 1px solid rgba(176, 128, 112, 0.3);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
}

.hero-deko-block .lumea-strich {
  width: 64px;
  height: 16px;
}

.hero-deko-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.04em;
  padding: 0 var(--space-6);
}

/* ============================================================
   11. HIGHLIGHTS-BAND (3 Karten)
   ============================================================ */

.highlights {
  background: var(--farbe-weiss);
}

.highlight-karte {
  background: var(--farbe-weiss);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-mid) var(--ease-spring),
    box-shadow var(--dur-mid) var(--ease-out);
}

.highlight-karte:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.highlight-bild {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.highlight-bild::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
}

.highlight-bild:hover::after {
  animation: shimmer 600ms var(--ease-out) forwards;
}

.highlight-bild-1 { background: linear-gradient(to bottom, rgba(232,213,205,0.22) 0%, rgba(176,128,112,0.32) 100%), url('img/wellness.jpg') center / cover no-repeat; }
.highlight-bild-2 { background: linear-gradient(to bottom, rgba(213,196,232,0.22) 0%, rgba(107, 53, 88,0.32) 100%), url('img/gesicht2.jpg') center / cover no-repeat; }
.highlight-bild-3 { background: linear-gradient(to bottom, rgba(196,213,200,0.22) 0%, rgba(74, 32, 64,0.32) 100%), url('img/salon.jpg') center / cover no-repeat; }

.highlight-bild-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-bild-inner svg {
  width: 48px;
  height: 48px;
  opacity: 0.6;
}

.highlight-body {
  padding: var(--space-6);
}

.highlight-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--farbe-aubergine);
  margin-bottom: var(--space-3);
}

.highlight-body p {
  font-size: var(--text-sm);
  color: var(--farbe-text-leicht);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-4);
}

/* ============================================================
   12. BEHANDLUNGS-VORSCHAU (Startseite)
   ============================================================ */

.behandlungs-vorschau {
  background: var(--farbe-hintergrund);
}

.behandlungs-scroll {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

/* ============================================================
   13. BEHANDLUNGS-KARTE (universal)
   ============================================================ */

.behandlungs-karte {
  background: var(--farbe-weiss);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-mid) var(--ease-spring),
    box-shadow var(--dur-mid) var(--ease-out),
    outline-color var(--dur-fast) var(--ease-out);
  outline: 2.5px solid transparent;
  position: relative;
}

.behandlungs-karte:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Auswahlmarkierung in Terminformular */
.behandlungs-karte:has(input:checked) {
  outline-color: var(--farbe-aubergine);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.auswahl-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 28px;
  height: 28px;
  background: var(--farbe-aubergine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity var(--dur-mid) var(--ease-out),
    transform var(--dur-mid) var(--ease-spring);
}

.behandlungs-karte:has(input:checked) .auswahl-badge {
  opacity: 1;
  transform: scale(1);
}

.auswahl-badge svg {
  width: 16px;
  height: 16px;
}

.behandlungs-karte input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.karte-bild {
  height: 100px;
  position: relative;
  overflow: hidden;
}

.karte-bild::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
}

.karte-bild:hover::after,
.behandlungs-karte:hover .karte-bild::after {
  animation: shimmer 600ms var(--ease-out) forwards;
}

/* Kategorie-Hintergründe */
.grad-gesicht { background: linear-gradient(to bottom, rgba(232,213,205,0.12) 0%, rgba(196,160,144,0.22) 100%), url('img/facial.jpg') center / cover no-repeat; }
.grad-haende  { background: linear-gradient(to bottom, rgba(213,196,232,0.12) 0%, rgba(144,128,176,0.22) 100%), url('img/manikuere.jpg') center / cover no-repeat; }
.grad-massage { background: linear-gradient(to bottom, rgba(196,213,200,0.12) 0%, rgba(107,144,112,0.22) 100%), url('img/massage.jpg') center / cover no-repeat; }
.grad-wimpern { background: linear-gradient(to bottom, rgba(232,224,213,0.12) 0%, rgba(160,144,128,0.22) 100%), url('img/wimpern.jpg') center / cover no-repeat; }

.karte-body {
  padding: var(--space-5);
}

.karte-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--farbe-aubergine);
  background: var(--farbe-rosegold-hell);
  padding: 3px var(--space-3);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
}

.karte-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--farbe-aubergine);
  margin-bottom: var(--space-3);
  line-height: var(--leading-tight);
}

.karte-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--farbe-text-leicht);
  margin-bottom: var(--space-4);
}

.karte-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.karte-meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.karte-preis {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--farbe-aubergine);
}

.karte-beschreibung {
  font-size: var(--text-sm);
  color: var(--farbe-text-leicht);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-4);
}

/* ============================================================
   14. INHABERIN SPLIT-SEKTION
   ============================================================ */

.inhaberin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.inhaberin-bild {
  height: 480px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--farbe-aubergine) 0%, var(--farbe-rosegold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.inhaberin-bild::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(74, 32, 64, 0.42) 0%, rgba(176, 128, 112, 0.22) 100%);
  z-index: 1;
}

.inhaberin-bild img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.inhaberin-bild-deko {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  position: relative;
  z-index: 2;
}

.inhaberin-bild-zitat {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 0 var(--space-6);
  line-height: var(--leading-loose);
}

.inhaberin-text .kicker {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--farbe-rosegold);
  margin-bottom: var(--space-3);
}

.inhaberin-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--farbe-aubergine);
  margin-bottom: var(--space-2);
}

.inhaberin-text .titel {
  font-size: var(--text-sm);
  color: var(--farbe-text-leicht);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.inhaberin-text p {
  font-size: var(--text-md);
  color: var(--farbe-text);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-5);
}

.badge-liste {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--farbe-aubergine);
  background: var(--farbe-rosegold-hell);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

/* ============================================================
   15. BEWERTUNGS-SEKTION
   ============================================================ */

.bewertungen {
  background: var(--farbe-weiss);
}

.bewertungs-kopf {
  text-align: center;
  margin-bottom: var(--space-8);
}

.bewertungs-gesamt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.bewertungs-zahl {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--farbe-aubergine);
}

.sterne-gross {
  font-size: var(--text-xl);
  color: var(--farbe-rosegold);
  letter-spacing: 3px;
}

.bewertungs-anzahl {
  font-size: var(--text-sm);
  color: var(--farbe-text-leicht);
}

.bewertungs-karte {
  background: var(--farbe-hintergrund);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.bewertungs-sterne {
  color: var(--farbe-rosegold);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.bewertungs-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-md);
  color: var(--farbe-text);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-4);
}

.bewertungs-autor {
  font-size: var(--text-sm);
  color: var(--farbe-text-leicht);
  font-weight: 600;
}

.bewertungs-hinweis {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--farbe-text-leicht);
  font-style: italic;
  margin-top: var(--space-6);
}

/* ============================================================
   16. CTA-BAND
   ============================================================ */

.cta-band {
  background: linear-gradient(135deg, var(--farbe-aubergine-dunkel) 0%, var(--farbe-aubergine) 100%);
  padding: var(--space-10) 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--farbe-weiss);
  margin-bottom: var(--space-5);
}

.cta-band .lead {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-7);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
}

/* ============================================================
   17. FOOTER
   ============================================================ */

.site-footer {
  background: var(--farbe-aubergine-dunkel);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-10) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--farbe-weiss);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-logo-claim {
  font-size: var(--text-sm);
  color: var(--farbe-rosegold);
  font-style: italic;
  margin-top: var(--space-2);
  margin-bottom: var(--space-4);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-out);
}

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.footer-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--farbe-rosegold);
  margin-bottom: var(--space-5);
}

.footer-kontakt p {
  font-size: var(--text-sm);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

.footer-kontakt a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-kontakt a:hover {
  color: var(--farbe-rosegold);
}

.footer-oeffnungszeiten {
  font-size: var(--text-sm);
}

.footer-oeffnungszeiten table {
  width: 100%;
  border-collapse: collapse;
}

.footer-oeffnungszeiten td {
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.75);
  vertical-align: top;
}

.footer-oeffnungszeiten td:first-child {
  color: rgba(255, 255, 255, 0.5);
  width: 64px;
  flex-shrink: 0;
}

.footer-trennlinie {
  height: 1px;
  background: var(--farbe-rosegold);
  opacity: 0.3;
  margin: 0;
}

.footer-unten {
  padding: var(--space-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-fiktiv {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  max-width: 60ch;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: var(--space-4);
}

.footer-links a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-links a:hover {
  color: var(--farbe-rosegold);
}

/* ============================================================
   18. BEHANDLUNGEN-SEITE — Kategorie-Navigation
   ============================================================ */

.kategorie-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  background: var(--farbe-weiss);
  border-bottom: 1px solid var(--farbe-linie);
  padding: var(--space-4) 0;
  box-shadow: var(--shadow-sm);
}

.kategorie-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.kategorie-nav-inner::-webkit-scrollbar { display: none; }

.kategorie-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 8px var(--space-5);
  border-radius: var(--radius-pill);
  border: 2px solid var(--farbe-rosegold-hell);
  color: var(--farbe-aubergine);
  background: var(--farbe-rosegold-hell);
  cursor: pointer;
  min-height: 44px;
  transition:
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}

.kategorie-pill.aktiv,
.kategorie-pill:hover {
  background: var(--farbe-aubergine);
  border-color: var(--farbe-aubergine);
  color: var(--farbe-weiss);
}

.kategorie-sektion {
  scroll-margin-top: calc(var(--header-height) + 64px);
}

/* ============================================================
   19. GALERIE
   ============================================================ */

.galerie-container {
  columns: 3;
  column-gap: var(--space-5);
}

.galerie-kachel {
  break-inside: avoid;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    transform var(--dur-mid) var(--ease-spring),
    box-shadow var(--dur-mid) var(--ease-out);
}

.galerie-kachel:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.galerie-kachel-inhalt {
  position: relative;
  overflow: hidden;
}

.galerie-kachel-inhalt::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
}

.galerie-kachel:hover .galerie-kachel-inhalt::after {
  animation: shimmer 600ms var(--ease-out) forwards;
}

.galerie-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(74, 32, 64, 0.85) 0%, transparent 100%);
  padding: var(--space-4);
  transform: translateY(100%);
  transition: transform var(--dur-mid) var(--ease-out);
}

.galerie-kachel:hover .galerie-overlay {
  transform: translateY(0);
}

.galerie-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* Galerie Gradient-Klassen */
.gal-1 { background: linear-gradient(160deg, #4a2040, #b08070); }
.gal-2 { background: linear-gradient(90deg,  #f0e8e4, #c4a090); }
.gal-3 { background: linear-gradient(135deg, #321629, #4a2040); }
.gal-4 { background: linear-gradient(160deg, #e8d5cd, #f7f4f0); }
.gal-5 { background: linear-gradient(135deg, #6b3558, #9b6080); }
.gal-6 { background: linear-gradient(90deg,  #c4b0a8, #e8d5cd); }
.gal-7 { background: linear-gradient(160deg, #4a2040, #6b3558); }
.gal-8 { background: linear-gradient(135deg, #f7f4f0, #e2dbd7); }
.gal-9 { background: linear-gradient(160deg, #b08070, #c4a090); }
.gal-10 { background: linear-gradient(135deg, #321629, #6b3558); }
.gal-11 { background: linear-gradient(90deg,  #e8e0d5, #c4b0a8); }
.gal-12 { background: linear-gradient(160deg, #4a2040, #321629); }

.gal-hoch { height: 320px; }
.gal-mittel { height: 220px; }
.gal-klein { height: 180px; }

.galerie-deko {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galerie-kachel-inhalt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Galerie Filter */
.galerie-filter {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

/* ============================================================
   20. TERMINANFRAGE — STEPPER
   ============================================================ */

.termin-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-8);
  align-items: start;
}

.termin-container {
  background: var(--farbe-weiss);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.stepper {
  padding: var(--space-7) var(--space-8) var(--space-5);
  border-bottom: 1px solid var(--farbe-linie);
}

.stepper ol {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.stepper-schritt {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.stepper-kreis {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  border: 2px solid var(--farbe-linie);
  background: var(--farbe-hintergrund);
  color: var(--farbe-text-leicht);
  transition:
    background var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out),
    color var(--dur-mid) var(--ease-out);
  z-index: 1;
  position: relative;
}

.stepper-schritt.aktiv .stepper-kreis {
  background: var(--farbe-aubergine);
  border-color: var(--farbe-aubergine);
  color: var(--farbe-weiss);
}

.stepper-schritt.fertig .stepper-kreis {
  background: var(--farbe-rosegold);
  border-color: var(--farbe-rosegold);
  color: var(--farbe-weiss);
}

.stepper-label {
  font-size: var(--text-xs);
  color: var(--farbe-text-leicht);
  margin-top: var(--space-2);
  text-align: center;
  white-space: nowrap;
}

.stepper-schritt.aktiv .stepper-label {
  color: var(--farbe-aubergine);
  font-weight: 600;
}

.stepper-schritt.fertig .stepper-label {
  color: var(--farbe-rosegold);
}

.stepper-verbindung {
  flex: 1;
  height: 2px;
  background: var(--farbe-linie);
  margin-top: -20px;
  position: relative;
  overflow: hidden;
}

.stepper-verbindung::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--farbe-rosegold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}

.stepper-verbindung.fertig::after {
  transform: scaleX(1);
}

/* Stepper Inhalt */
.schritt-inhalt {
  padding: var(--space-7) var(--space-8);
  display: none;
}

.schritt-inhalt.aktiv {
  display: block;
}

.schritt-titel {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--farbe-aubergine);
  margin-bottom: var(--space-3);
}

/* Zusammenfassungs-Box (kompakt, oben in Schritt 2+3) */
.zusammenfassung-box {
  background: var(--farbe-rosegold-hell);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--farbe-aubergine);
}

.zusammenfassung-box strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

/* Auswahlinfo-Box Schritt 1 */
.auswahl-info {
  background: var(--farbe-rosegold-hell);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--farbe-aubergine);
  font-weight: 600;
  display: none;
}

.auswahl-info.sichtbar {
  display: block;
}

/* ============================================================
   21. KALENDER
   ============================================================ */

.kalender {
  margin-bottom: var(--space-6);
}

.kalender-kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.kalender-monat {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--farbe-aubergine);
  font-weight: 600;
}

.kalender-nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--farbe-aubergine);
  transition: background var(--dur-fast) var(--ease-out);
}

.kalender-nav-btn:hover {
  background: var(--farbe-rosegold-hell);
}

.kalender-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.kalender-wochentage {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.kalender-wochentag {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--farbe-text-leicht);
  padding: var(--space-2) 0;
}

.kalender-tage {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.kalender-tag {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--farbe-text);
  min-height: 44px;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}

.kalender-tag:not([aria-disabled="true"]):hover {
  background: var(--farbe-rosegold-hell);
}

.kalender-tag[aria-disabled="true"] {
  color: var(--farbe-linie);
  cursor: not-allowed;
}

.kalender-tag.ausgewaehlt {
  background: var(--farbe-aubergine);
  color: var(--farbe-weiss);
  animation: puls 400ms var(--ease-spring);
}

.kalender-tag.heute {
  border: 1.5px solid var(--farbe-rosegold);
}

.kalender-tag.leer {
  visibility: hidden;
}

/* Zeitfenster-Slots */
.slots-titel {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--farbe-text);
  margin-bottom: var(--space-4);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.slot-btn {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 1.5px solid var(--farbe-aubergine);
  color: var(--farbe-aubergine);
  background: transparent;
  min-height: 44px;
  cursor: pointer;
  transition:
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}

.slot-btn:hover,
.slot-btn.aktiv {
  background: var(--farbe-aubergine);
  color: var(--farbe-weiss);
}

/* ============================================================
   22. FORMULAR-ELEMENTE
   ============================================================ */

.form-gruppe {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--farbe-text);
  margin-bottom: var(--space-2);
}

.form-label .pflicht {
  color: var(--farbe-rosegold);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px var(--space-4);
  border: 1.5px solid var(--farbe-linie);
  border-radius: var(--radius-md);
  background: var(--farbe-weiss);
  color: var(--farbe-text);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  transition:
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 2px solid var(--farbe-aubergine);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(176, 128, 112, 0.2);
  border-color: var(--farbe-aubergine);
}

.form-input.fehler,
.form-select.fehler,
.form-textarea.fehler {
  border-color: var(--farbe-fehler);
}

.form-input.fehler:focus,
.form-select.fehler:focus,
.form-textarea.fehler:focus {
  outline-color: var(--farbe-fehler);
  box-shadow: 0 0 0 4px rgba(176, 54, 42, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a2040' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-hinweis {
  font-size: var(--text-xs);
  color: var(--farbe-text-leicht);
  margin-top: var(--space-2);
}

.fehler-text {
  display: none;
  font-size: var(--text-sm);
  color: var(--farbe-fehler);
  margin-top: var(--space-2);
  font-weight: 500;
}

.fehler-text.sichtbar {
  display: block;
}

/* DSGVO Checkbox */
.form-checkbox-gruppe {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--farbe-aubergine);
  border-radius: 4px;
}

.form-checkbox-label {
  font-size: var(--text-sm);
  color: var(--farbe-text);
  line-height: var(--leading-normal);
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--farbe-aubergine);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Honeypot versteckt */
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Zeichenzähler */
.zeichen-zaehler {
  text-align: right;
  font-size: var(--text-xs);
  color: var(--farbe-text-leicht);
  margin-top: var(--space-1);
}

/* Stepper-Navigation (Zurück / Weiter) */
.schritt-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--farbe-linie);
  margin-top: var(--space-6);
}

.btn-zurueck {
  color: var(--farbe-text-leicht);
  font-size: var(--text-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  min-height: 44px;
  transition: color var(--dur-fast) var(--ease-out);
}

.btn-zurueck:hover {
  color: var(--farbe-aubergine);
}

/* Bestätigungs-Schirm */
.bestaetigung {
  text-align: center;
  padding: var(--space-9) var(--space-8);
}

.bestaetigung-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-5);
}

.bestaetigung h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--farbe-aubergine);
  margin-bottom: var(--space-4);
}

.bestaetigung .lead {
  font-size: var(--text-md);
  color: var(--farbe-text-leicht);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-7);
}

.bestaetigung-box {
  background: var(--farbe-hintergrund);
  border-left: 4px solid var(--farbe-aubergine);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-5) var(--space-6);
  text-align: left;
  margin-bottom: var(--space-6);
}

.bestaetigung-box table {
  width: 100%;
  border-collapse: collapse;
}

.bestaetigung-box td {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  vertical-align: top;
}

.bestaetigung-box td:first-child {
  color: var(--farbe-text-leicht);
  width: 120px;
  font-weight: 600;
}

.bestaetigung-box td:last-child {
  color: var(--farbe-text);
  font-weight: 500;
}

.bestaetigung-hinweis {
  font-size: var(--text-sm);
  color: var(--farbe-text-leicht);
  font-style: italic;
  margin-bottom: var(--space-7);
  line-height: var(--leading-normal);
}

.bestaetigung-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

.bestaetigung-demo {
  font-size: var(--text-xs);
  color: var(--farbe-text-leicht);
  font-style: italic;
  margin-top: var(--space-5);
}

/* Vertrauens-Box rechts */
.vertrauen-box {
  background: var(--farbe-weiss);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
}

.vertrauen-bewertung {
  text-align: center;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--farbe-linie);
  margin-bottom: var(--space-5);
}

.vertrauen-bewertung .zahl {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--farbe-aubergine);
}

.vertrauen-liste {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.vertrauen-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--farbe-text-leicht);
}

.vertrauen-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--farbe-rosegold);
}

.vertrauen-telefon {
  border-top: 1px solid var(--farbe-linie);
  padding-top: var(--space-5);
  margin-top: var(--space-5);
  text-align: center;
}

.vertrauen-telefon p {
  font-size: var(--text-xs);
  color: var(--farbe-text-leicht);
  margin-bottom: var(--space-3);
}

/* ============================================================
   23. KONTAKT-SEITE
   ============================================================ */

.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.kontakt-info-titel {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--farbe-aubergine);
  margin-bottom: var(--space-6);
}

.kontakt-info-punkt {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-5);
}

.kontakt-info-punkt svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--farbe-rosegold);
  margin-top: 2px;
}

.kontakt-info-punkt p {
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.kontakt-info-punkt a {
  color: var(--farbe-aubergine);
  transition: color var(--dur-fast) var(--ease-out);
}

.kontakt-info-punkt a:hover {
  color: var(--farbe-rosegold);
}

.oeffnungszeiten-tabelle {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-6);
  margin-bottom: var(--space-8);
}

.oeffnungszeiten-tabelle tr {
  border-bottom: 1px solid var(--farbe-linie);
}

.oeffnungszeiten-tabelle td {
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-sm);
}

.oeffnungszeiten-tabelle td:first-child {
  color: var(--farbe-text-leicht);
  font-weight: 600;
  width: 120px;
}

.oeffnungszeiten-tabelle .ruhetag {
  color: var(--farbe-text-leicht);
  font-style: italic;
}

/* Karten-Platzhalter */
.karten-platzhalter {
  background: linear-gradient(135deg, var(--farbe-hintergrund) 0%, var(--farbe-rosegold-hell) 100%);
  border-radius: var(--radius-xl);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  border: 1px solid var(--farbe-linie);
}

.karten-platzhalter svg {
  color: var(--farbe-aubergine);
  opacity: 0.5;
}

.karten-platzhalter-text {
  text-align: center;
}

.karten-platzhalter-text strong {
  display: block;
  font-size: var(--text-base);
  color: var(--farbe-aubergine);
  margin-bottom: var(--space-2);
}

.karten-platzhalter-text small {
  font-size: var(--text-xs);
  color: var(--farbe-text-leicht);
  font-style: italic;
}

/* Kontakt-Formular Box */
.kontakt-formular-box {
  background: var(--farbe-weiss);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.kontakt-formular-box h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--farbe-aubergine);
  margin-bottom: var(--space-6);
}

/* ============================================================
   24. ÜBER UNS SEITE
   ============================================================ */

.philosophie-sektion {
  background: var(--farbe-hintergrund);
}

.philosophie-zitat {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--farbe-aubergine);
  line-height: var(--leading-loose);
  text-align: center;
  max-width: 60ch;
  margin: 0 auto var(--space-4);
}

.philosophie-autor {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--farbe-text-leicht);
  font-weight: 600;
}

.werte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.wert-karte {
  text-align: center;
  padding: var(--space-7) var(--space-5);
  background: var(--farbe-weiss);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.wert-icon {
  width: 48px;
  height: 48px;
  background: var(--farbe-rosegold-hell);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--farbe-rosegold);
}

.wert-karte h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--farbe-aubergine);
  margin-bottom: var(--space-3);
}

.wert-karte p {
  font-size: var(--text-sm);
  color: var(--farbe-text-leicht);
  line-height: var(--leading-normal);
}

/* Studio-Atmosphäre Scroll */
.studio-scroll {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  padding-bottom: var(--space-4);
  scrollbar-width: thin;
  scrollbar-color: var(--farbe-rosegold-hell) transparent;
}

.studio-bild {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.studio-bild-1,
.studio-bild-2,
.studio-bild-3,
.studio-bild-4,
.studio-bild-5 { background: var(--farbe-linie); }

.studio-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   25. KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes shimmer {
  to { transform: translateX(100%); }
}

@keyframes puls {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60%  { transform: translateX(-6px); }
  40%, 80%  { transform: translateX(6px); }
}

@keyframes einblenden {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.einblenden {
  animation: einblenden var(--dur-mid) var(--ease-out) both;
}

/* ============================================================
   26. PREFERS-REDUCED-MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
}

/* ============================================================
   27. RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */

@media (max-width: 900px) {
  .header-inner { padding: 0 var(--space-5); }

  .nav-links { display: none; }

  /* Redundanten "Termin anfragen"-Button aus dem Header nehmen –
     CTA ist unten in der mobilen Leiste + im Burger-Menü vorhanden.
     Verhindert zu breiten Header / Überlauf rechts. */
  .haupt-nav .btn-primaer { display: none; }

  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: var(--space-10) var(--space-5);
  }

  .hero-deko { display: none; }

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

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

  .inhaberin-split { grid-template-columns: 1fr; }

  .inhaberin-bild { height: 320px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid > :first-child { grid-column: 1 / -1; }

  .termin-layout { grid-template-columns: 1fr; }

  .vertrauen-box { position: static; }

  .kontakt-layout { grid-template-columns: 1fr; }

  .galerie-container { columns: 2; }

  .werte-grid { grid-template-columns: 1fr; }

  .behandlungs-scroll { grid-template-columns: 1fr; }
}

/* ============================================================
   28. RESPONSIVE — Mobile (≤ 600px)
   ============================================================ */

@media (max-width: 600px) {
  :root {
    --header-height: 64px;
    --demo-banner-height: 52px;
  }

  /* Demo-Balken darf umbrechen statt den Header zu überlappen */
  .demo-balken {
    display: block;
    height: auto;
    min-height: var(--demo-banner-height);
    padding: 7px var(--space-4);
    font-size: 11px;
    line-height: 1.45;
    white-space: normal;
  }

  .container { padding: 0 var(--space-4); }

  .section { padding: var(--space-8) 0; }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .behandlungs-scroll { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .hero-ctas .btn-primaer,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; }

  .stepper .stepper-label { display: none; }

  .schritt-inhalt { padding: var(--space-5) var(--space-4); }

  .stepper { padding: var(--space-5) var(--space-4) var(--space-4); }

  .galerie-container { columns: 1; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-unten { flex-direction: column; align-items: flex-start; }

  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
    padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
  }

  body {
    padding-bottom: 80px;
  }

  .bestaetigung { padding: var(--space-6) var(--space-4); }

  .kontakt-formular-box { padding: var(--space-6) var(--space-4); }
}

/* ============================================================
   29. IMPRESSUM / DATENSCHUTZ (auf kontakt.html)
   ============================================================ */

.rechtliches {
  background: var(--farbe-weiss);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-top: var(--space-8);
  box-shadow: var(--shadow-sm);
}

.rechtliches h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--farbe-aubergine);
  margin-bottom: var(--space-5);
  padding-top: var(--space-7);
}

.rechtliches h2:first-child { padding-top: 0; }

.rechtliches p,
.rechtliches li {
  font-size: var(--text-sm);
  color: var(--farbe-text-leicht);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-3);
}

/* ============================================================
   30. HILFS-KLASSEN
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.versteckt { display: none !important; }

.trennlinie {
  border: 0;
  height: 1px;
  background: var(--farbe-linie);
  margin: var(--space-6) 0;
}
