/* ==========================================================================
   Gawlixmedia — Design-System & Layout
   Handgecodet. Mobile-first. Barrierearm. prefers-reduced-motion beachtet.

   Markenpalette:
     Carbon Black  #191919   (Text, dunkle Flaechen)
     Parchment     #f0efed   (warmes Hell, Wechselflaechen, Text auf Dunkel)
     Rosewood      #c00146   (Primaer-Akzent, CTA, Akzentlinien)
     Dark Amaranth #8c0235   (Links, Hover, tiefer Akzent)
   Geprueft (WCAG): Carbon/Parchment 16:1 · Rosewood/Parchment 5.5:1 ·
   Amaranth/Parchment 8.4:1 · Parchment/Rosewood 5.5:1 · Rosewood/Carbon 2.8:1
   (=> Rot nie als Textfarbe auf Carbon; dort --rose-bright verwenden).
   ========================================================================== */

/* ------------------------------------------------------------------ Tokens */
:root {
  /* Marke */
  --carbon: #191919;
  --parchment: #f0efed;
  --rosewood: #c00146;
  --amaranth: #8c0235;

  /* Abgeleitete Flaechen & Tinten */
  --paper: #faf9f7;           /* Haupthintergrund (warmes Fast-Weiss) */
  --carbon-70: #4b4843;       /* gedaempfter Fliesstext (≈8:1 auf Paper) */
  --carbon-55: #5f5b54;       /* Meta/Hilfstext — geprueft ≥5.7:1 auf Parchment */
  --rose-bright: #ec6a89;     /* Akzent NUR auf Carbon (geprueft ≥5.8:1) */
  --rose-tint: #f7e8ec;       /* zarte Rose-Flaeche (Auswahl, Sektion) */
  --parch-dim: #d8d6d2;       /* gedaempfter Text auf Dunkel */
  --parch-dimmer: #a8a6a2;    /* feiner Text auf Dunkel */
  --line: #e6e3dd;            /* feine Linie auf Hell */
  --line-strong: #d6d2ca;     /* Eingaberahmen / kraeftigere Linie */
  --on-dark-line: rgba(240, 239, 237, 0.14);
  --on-dark-line-strong: rgba(240, 239, 237, 0.30);
  --error: #9a2c33;

  /* Typografie */
  --ff-display: 'Space Grotesk', 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-body: 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --fs-eyebrow: 0.78rem;
  --fs-small: 0.875rem;
  --fs-body: 1.0625rem;
  --fs-lead: clamp(1.125rem, 0.95rem + 0.7vw, 1.3rem);
  --fs-h3: clamp(1.2rem, 1.05rem + 0.5vw, 1.4rem);
  --fs-h2: clamp(1.85rem, 1.4rem + 1.9vw, 2.7rem);
  --fs-h1: clamp(2.4rem, 1.6rem + 3.4vw, 4rem);
  --fs-display: clamp(2rem, 1.45rem + 2.3vw, 3.25rem);

  --lh-tight: 1.08;
  --lh-snug: 1.25;
  --lh-body: 1.65;

  /* Raster & Raum */
  --container: 1160px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 0.8rem + 2.2vw, 2.5rem);
  --section-y: clamp(3.5rem, 2.2rem + 5vw, 6.5rem);

  /* Radien & Schatten */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;
  --shadow-sm: 0 1px 2px rgba(25, 25, 25, 0.05), 0 2px 8px rgba(25, 25, 25, 0.04);
  --shadow-md: 0 4px 14px rgba(25, 25, 25, 0.08), 0 12px 32px rgba(25, 25, 25, 0.06);
  --shadow-lg: 0 10px 30px rgba(25, 25, 25, 0.11), 0 30px 60px rgba(25, 25, 25, 0.08);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 76px;
}

/* -------------------------------------------------------------- Reset/Base */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--carbon);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  overflow-x: hidden;
}
img, svg, picture { max-width: 100%; display: block; }
a { color: var(--amaranth); text-underline-offset: 0.18em; text-decoration-thickness: from-font; }
a:hover { color: var(--carbon); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }
:where(h1, h2, h3, h4) {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--carbon);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
:target { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ----------------------------------------------------------- Fokus / a11y */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--rosewood);
  outline-offset: 2px;
  border-radius: 3px;
}
.btn:focus-visible,
.nav a:focus-visible { outline-offset: 3px; }
/* Auf dunklen Flaechen: heller Fokusring */
.section--ink :focus-visible,
.calc :focus-visible,
.kontakt__card :focus-visible,
.site-footer :focus-visible { outline-color: var(--paper); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--carbon);
  color: var(--paper);
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--paper); }
.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;
}

/* ----------------------------------------------------------- Layout-Helfer */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--sand { background: var(--parchment); }
.section--ink { background: var(--carbon); color: var(--parch-dim); }
.section--tint { background: linear-gradient(180deg, var(--paper), var(--rose-tint)); }
.section--hairline { border-top: 1px solid var(--line); }

.section-head { max-width: 56ch; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* Eyebrow = Milchglas-Pille (Liquid Glass) mit blinkendem Punkt */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.42em 0.95em 0.42em 0.8em;
  border-radius: 999px;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--carbon);
  margin: 0 0 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.2));
  -webkit-backdrop-filter: blur(14px) saturate(180%); backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -4px 8px rgba(255, 255, 255, 0.12), 0 6px 16px rgba(25, 24, 22, 0.1);
}
.eyebrow::before {
  content: ""; flex: none;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rosewood);
  animation: eyebrowPulse 1.8s ease-in-out infinite;
}
@keyframes eyebrowPulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(192, 1, 70, 0.5); }
  50%      { opacity: 0.4; box-shadow: 0 0 0 6px rgba(192, 1, 70, 0); }
}
@media (prefers-reduced-motion: reduce) { .eyebrow::before { animation: none; } }
/* Eyebrow-Text: weiß auf dunklen/roten Sektionen, schwarz auf hellen (Punkt bleibt rosa) */
.hero .eyebrow,
.section--ink .eyebrow,
.section--haken .eyebrow,
.hero__land .eyebrow,
.kontakt__card .eyebrow { color: var(--paper); }
.section-head--center .eyebrow { justify-content: center; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--carbon-70);
  max-width: 60ch;
}
.section--ink .lead { color: var(--parch-dim); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--parchment); }
.muted { color: var(--carbon-55); }
.section--ink .muted { color: var(--parch-dimmer); }

/* ----------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
              border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}
.btn .btn__arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--rosewood);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--amaranth); color: var(--paper); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--carbon);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--carbon); color: var(--carbon); background: rgba(25,25,25,0.03); }

/* Helle Flaeche fuer farbige/dunkle Untergruende (invertiert) */
.btn--paper {
  background: var(--parchment);
  color: var(--carbon);
}
.btn--paper:hover { background: #e3e0db; color: var(--carbon); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.section--ink .btn--ghost,
.kontakt__card .btn--ghost { color: var(--paper); border-color: var(--on-dark-line-strong); }
.section--ink .btn--ghost:hover,
.kontakt__card .btn--ghost:hover { border-color: var(--paper); background: rgba(240,239,237,0.08); color: var(--paper); }

.btn--block { width: 100%; }
.btn--lg { min-height: 54px; padding: 1rem 1.8rem; font-size: 1.05rem; }

/* ------------------------------------------------------------------ Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* Apple Liquid Glass / Milchglas */
  background: rgba(250, 249, 247, 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(22px); backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header[data-scrolled="true"] {
  border-bottom-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 28px rgba(25,25,25,0.08);
}
/* Ganz oben über dem Hero: völlig transparent für sauberen Übergang (kein Streifen) */
.site-header[data-overlay="true"]:not([data-scrolled="true"]) {
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

/* Logo-Flip: weißes Favicon (über Hero) ↔ Wortmarke (gescrollt), vertikale Rotation */
.brand__flip {
  position: relative; display: inline-block;
  width: 142px; height: 48px;
  transform-style: preserve-3d;
  transform: rotateX(180deg);                 /* Standard: Wortmarke */
  transition: transform 0.6s var(--ease);
}
.brand__face {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
.brand__face--icon { transform: rotateX(0deg); }
.brand__face--word { transform: rotateX(180deg); }
.brand__face--icon img { height: 46px; width: auto; }
.brand__face--word img { height: 36px; width: auto; }
/* Über dem Hero (ganz oben): weißes Favicon zeigen */
.site-header[data-overlay="true"]:not([data-scrolled="true"]) .brand__flip { transform: rotateX(0deg); }

/* Helle Navigation über dem Hero */
.site-header[data-overlay="true"]:not([data-scrolled="true"]) .nav a { color: var(--parchment); }
.site-header[data-overlay="true"]:not([data-scrolled="true"]) .nav a:hover { color: var(--paper); background: rgba(240,239,237,0.14); }
.site-header[data-overlay="true"]:not([data-scrolled="true"]) .header-cta { background: var(--rosewood); color: var(--paper); }
.site-header[data-overlay="true"]:not([data-scrolled="true"]) .header-cta:hover { background: var(--amaranth); }
.site-header[data-overlay="true"]:not([data-scrolled="true"]) .nav-toggle { border-color: rgba(240,239,237,0.45); }
.site-header[data-overlay="true"]:not([data-scrolled="true"]) .nav-toggle__bars span { background: var(--paper); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--carbon);
}
.brand__logo { height: 26px; width: auto; }
.site-footer .brand__logo { height: 44px; }

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--carbon-70);
  text-decoration: none;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav a:hover { color: var(--carbon); background: rgba(25,25,25,0.04); }
.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: transparent;
}
.nav-toggle__bars { position: relative; width: 20px; height: 14px; }
.nav-toggle__bars span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: var(--carbon); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease), top 0.25s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Mobiles Off-Canvas-Menue */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 95;
  background: var(--paper);
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  overflow-y: auto;
}
.mobile-nav[data-open="true"] { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
.mobile-nav a {
  padding: 1rem 0.5rem;
  font-size: 1.25rem;
  font-family: var(--ff-display);
  color: var(--carbon);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 1.25rem; }

/* -------------------------------------------------------------------- Hero */
.hero-wrap { min-height: 100svh; display: flex; flex-direction: column; }

/* Roter Flash-Übergang am Ende der Hero-Bühne (in die rote Sektion) */
.hero__flash {
  position: absolute; inset: 0; z-index: 30; pointer-events: none; opacity: 0;
  background: linear-gradient(165deg, var(--rosewood), var(--amaranth) 68%, #650026);
}
/* Rote Sektion "Der übliche Weg" (Landung nach dem Zoom) */
.section--haken { background: linear-gradient(165deg, var(--rosewood), var(--amaranth) 68%, #650026); color: var(--paper); }
/* Eyebrow-Pille bleibt überall die helle Milchglas-Pille (rosewood Text + Punkt) */
.section--haken h2 { color: var(--paper); }
.section--haken .prose { color: rgba(240,239,237,0.94); }
.section--haken .prose em { color: var(--paper); font-weight: 700; }

/* Scroll-Bühne (Desktop): Hero gepinnt, Pillen vereinigen sich zum Bild, das auf den User zufliegt */
@media (min-width: 880px) {
  .hero-wrap.is-scene { height: 175vh; display: block; }
  .hero-wrap.is-scene .hero { position: sticky; top: 0; height: 100vh; min-height: 100vh; flex: none; }
  .hero-wrap.is-scene .hero__berufe li { animation: none; }
  .hero-wrap.is-scene .hero__orbit .browser { transform-origin: center center; will-change: transform, opacity; }
}

/* Hero-Landing: Sektion 2 ("Der Haken") erscheint im Hero, genau sobald der Mock verblasst.
   Die echte #haken-Karte wird in der Szene ausgeblendet (siehe unten) — so gibt es keinen
   Positions-Sprung und keinen Doppeltext; "Angebot" wird zur ersten gerundeten Stapelkarte. */
.hero__land { display: none; }
@media (min-width: 880px) and (prefers-reduced-motion: no-preference) {
  .hero-wrap.is-scene .hero__land {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    inset: 0;
    z-index: 31;                 /* über dem roten Flash (30) */
    padding-block: var(--section-y);
    background: linear-gradient(165deg, var(--rosewood), var(--amaranth) 68%, #650026);
    color: var(--paper);
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
  }
  .hero-wrap.is-scene .hero__land h2 { color: var(--paper); }
  .hero-wrap.is-scene .hero__land .prose { color: rgba(240, 239, 237, 0.94); }
  .hero-wrap.is-scene .hero__land .prose em { color: var(--paper); font-weight: 700; font-style: normal; }
  /* Echte „Der Haken"-Karte in der Szene ausblenden — die Landing zeigt sie bereits. */
  .hero-wrap.is-scene ~ #haken { display: none; }
}

/* Sorgen-Sprechblasen: schweben im Zentrum der Berufe (nur Desktop-Szene), Text rotiert,
   lösen sich beim Scrollen auf, während die Pillen zur Website zusammenfließen. */
.hero__sorgen { display: none; }
@media (min-width: 880px) and (prefers-reduced-motion: no-preference) {
  .hero-wrap.is-scene .hero__sorgen {
    display: block;
    position: absolute; left: 50%; top: 50%;
    width: 0; height: 0;
    z-index: 22;                 /* zwischen Mock (5) und Pillen */
    will-change: transform, opacity;
  }
  .hero__sorge { position: absolute; left: 50%; top: 50%; }
  .hero__sorge--a { transform: translate(calc(-50% + 4px),  calc(-50% - 96px)); }
  .hero__sorge--b { transform: translate(calc(-50% + 52px), calc(-50% + 4px));  }
  .hero__sorge--c { transform: translate(calc(-50% - 40px), calc(-50% + 102px)); }
  .hero__sorge-b {
    display: inline-block; white-space: nowrap;
    padding: 0.56rem 0.95rem;
    border-radius: 15px 15px 15px 4px;     /* Sprechblasen-Ecke unten links */
    font-size: 0.94rem; font-weight: 500; letter-spacing: -0.01em; line-height: 1.1;
    color: rgba(255, 241, 244, 0.97);
    background: linear-gradient(180deg, rgba(48, 22, 32, 0.60), rgba(28, 13, 19, 0.68));
    -webkit-backdrop-filter: blur(11px) saturate(150%);
            backdrop-filter: blur(11px) saturate(150%);
    border: 1px solid rgba(236, 106, 137, 0.42);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: sorgeBob 7s ease-in-out infinite;
  }
  .hero__sorge--a .hero__sorge-b { animation-delay: 0s; }
  .hero__sorge--b .hero__sorge-b { animation-delay: -2.3s; }
  .hero__sorge--c .hero__sorge-b { animation-delay: -4.6s; }
  .hero__sorge-txt { display: inline-block; transition: opacity 0.42s ease; }
}
@keyframes sorgeBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ===== MOBILE: Sorgen-Blasen + Berufe ruhig im Orbit (wo der Mock war) — keine gepinnte Szene =====
   Die Konvergenz-/Zoom-/Landing-Szene bleibt Desktop (passt nicht über dem Falz, ohne die Buttons
   zu überlappen). Auf Mobile schweben die Blasen + Berufe ruhig unter den Buttons; Text rotiert. */
@media (max-width: 879px) {
  .hero__orbit { width: 100%; min-height: 360px; }
  .hero__orbit .browser { display: none; }   /* Mock raus — die Sorgen-Blasen sind hier der Fokus */
  .hero__sorgen {
    display: block; position: absolute; left: 50%; top: 50%;
    width: 0; height: 0; z-index: 22;
  }
  /* Slot mit echter Breite (sonst bricht der Text auf 1 Wort/Zeile um), Blase darin zentriert */
  .hero__sorge {
    position: absolute; left: 50%; top: 50%;
    width: 56vw; max-width: 230px; text-align: center;
  }
  .hero__sorge--a { transform: translate(-50%, -50%) translateY(-106px); }
  .hero__sorge--b { transform: translate(-50%, -50%); }
  .hero__sorge--c { transform: translate(-50%, -50%) translateY(106px); }
  .hero__sorge-b {
    display: inline-block; max-width: 100%; white-space: normal;
    font-size: 0.72rem; padding: 0.42rem 0.74rem;
    border-radius: 13px 13px 13px 4px; line-height: 1.28;
    color: rgba(255, 241, 244, 0.97);
    background: linear-gradient(180deg, rgba(48, 22, 32, 0.72), rgba(28, 13, 19, 0.78));
    -webkit-backdrop-filter: blur(12px) saturate(150%); backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(236, 106, 137, 0.48);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.44);
  }
  .hero__sorge-txt { display: inline-block; transition: opacity 0.42s ease; }
}
@media (max-width: 879px) and (prefers-reduced-motion: no-preference) {
  .hero__sorge-b { animation: sorgeBob 7s ease-in-out infinite; }
  .hero__sorge--a .hero__sorge-b { animation-delay: 0s; }
  .hero__sorge--b .hero__sorge-b { animation-delay: -2.3s; }
  .hero__sorge--c .hero__sorge-b { animation-delay: -4.6s; }
}

/* (Card-Stack entfernt — Sektionen fließen normal; überzeugt wird über ruhige Reveal-Animationen.
   Sektionsfarben kommen aus den Basis-Regeln .section--sand/--ink/--haken.) */
.section--cta .benefits { width: 100%; }
.hero {
  position: relative;
  color: var(--paper);
  background:
    radial-gradient(120% 95% at 82% -12%, rgba(192,1,70,0.20), transparent 48%),
    radial-gradient(85% 70% at 6% 112%, rgba(192,1,70,0.10), transparent 55%),
    linear-gradient(165deg, #242424 0%, #181818 55%, #0d0d0d 100%);
  flex: 1 0 auto;   /* füllt zusammen mit der Benefit-Leiste exakt 100 % der Höhe */
  display: flex; flex-direction: column; justify-content: center;
  padding-block: calc(var(--header-h) + 1.5rem) 2rem;
  overflow: hidden;
}
/* Schimmer-Sheen über dem Carbon-Verlauf */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.045) 47%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.04) 53%, transparent 62%);
  background-size: 250% 100%;
  background-position: 130% 0;
  animation: heroShimmer 8.5s linear infinite;
}
@keyframes heroShimmer { to { background-position: -30% 0; } }
.hero > .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 1.5rem + 4vw, 4rem);
  align-items: center;
}
.hero__h1 {
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0.25rem 0 0.85rem;
}
.hero__h1 em { font-style: normal; color: var(--rose-bright); }
.hero__lead { font-size: var(--fs-lead); color: rgba(240,239,237,0.92); max-width: 48ch; }
/* Berufe in horizontaler Ellipse (Karussell): Pillen umlaufen im Uhrzeigersinn,
   vorn (unten) groß & klar, hinten (oben) klein & verblasst. Hover pausiert. */
.hero__orbit { position: relative; }
.hero__orbit .browser { position: relative; z-index: 5; }
/* Berufe-Karussell umkreist den zentrierten Mock (0-Punkt = Bildmitte) */
.hero__berufe {
  position: absolute; left: 50%; top: 50%;
  width: 0; height: 0; margin: 0; padding: 0; max-width: none;
  list-style: none;
}
.hero__berufe li {
  position: absolute; left: 50%; top: 50%;
  font-size: 1.02rem; font-weight: 600; color: var(--paper);
  padding: 0.62rem 1.35rem; border-radius: 999px; white-space: nowrap;
  /* Liquid Glass: durchscheinend & glänzend, kein Milchglas-Rauschen */
  background: linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.08) 55%, rgba(255,255,255,0.14));
  -webkit-backdrop-filter: blur(16px) saturate(190%) brightness(1.12);
          backdrop-filter: blur(16px) saturate(190%) brightness(1.12);
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -7px 12px rgba(255,255,255,0.06),
    0 12px 30px rgba(0,0,0,0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.28);
  will-change: transform, opacity;
  animation: ellipseOrbit 19s linear infinite;
}
.hero__berufe li:nth-child(1) { animation-delay: 0s; }
.hero__berufe li:nth-child(2) { animation-delay: -2.714s; }
.hero__berufe li:nth-child(3) { animation-delay: -5.428s; }
.hero__berufe li:nth-child(4) { animation-delay: -8.142s; }
.hero__berufe li:nth-child(5) { animation-delay: -10.857s; }
.hero__berufe li:nth-child(6) { animation-delay: -13.571s; }
.hero__berufe li:nth-child(7) { animation-delay: -16.285s; }
.hero__berufe:hover li,
.hero__berufe:focus-within li { animation-play-state: paused; }

/* Flache, breite Ellipse (fast eine Linie): Pillen laufen horizontal im Kreis,
   "nach hinten" = kleiner + verblasst (Tiefe), nicht nach oben. Immer vor dem Bild.
   Rechts einblenden, vorn (Mitte) groß, links ausblenden, hinten unsichtbar. */
@keyframes ellipseOrbit {
  0%    { transform: translate(-50%,-50%) translate(245px, 0)     scale(0.66); opacity: 0.12; z-index: 22; }  /* rechts: erscheint, klein/hinten */
  12.5% { transform: translate(-50%,-50%) translate(173px, 16px)  scale(1.0);  opacity: 0.7;  z-index: 24; }
  25%   { transform: translate(-50%,-50%) translate(0, 24px)      scale(1.32); opacity: 1;    z-index: 26; }  /* vorn (nah, groß) */
  37.5% { transform: translate(-50%,-50%) translate(-173px, 16px) scale(1.0);  opacity: 0.9;  z-index: 24; }
  50%   { transform: translate(-50%,-50%) translate(-245px, 0)    scale(0.66); opacity: 0.4;  z-index: 22; }  /* links: verblasst */
  62.5% { transform: translate(-50%,-50%) translate(-173px,-16px) scale(0.46); opacity: 0.05; z-index: 21; }
  75%   { transform: translate(-50%,-50%) translate(0, -24px)     scale(0.4);  opacity: 0;    z-index: 20; }  /* hinten: klein, unsichtbar */
  87.5% { transform: translate(-50%,-50%) translate(173px, -16px) scale(0.46); opacity: 0;    z-index: 20; }
  100%  { transform: translate(-50%,-50%) translate(245px, 0)     scale(0.66); opacity: 0.12; z-index: 22; }
}
/* Reduced-Motion: kein Karussell, sondern ein statischer, lesbarer Stack */
@media (prefers-reduced-motion: reduce) {
  .hero__berufe { position: relative; left: auto; top: auto; width: 100%; height: auto; max-width: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.2rem; }
  .hero__berufe li { position: relative; left: auto; top: auto; animation: none; opacity: 1 !important; transform: none !important; }
}
.hero__actions { margin-top: 1.7rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__actions .btn { min-height: 52px; padding: 0.85rem 1.45rem; font-size: 1rem; }
.hero__actions .btn--primary { background: var(--rosewood); color: var(--paper); }
.hero__actions .btn--primary:hover { background: var(--amaranth); color: var(--paper); }
.hero__actions .btn--ghost { color: var(--paper); border-color: rgba(240,239,237,0.45); }
.hero__actions .btn--ghost:hover { color: var(--paper); border-color: var(--paper); background: rgba(240,239,237,0.10); }
.hero__note { margin-top: 1.1rem; font-size: var(--fs-small); color: rgba(240,239,237,0.78); }
.hero :focus-visible { outline-color: var(--paper); }

/* Trust-Punkte unter den Buttons */
.hero__trust { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; list-style: none; padding: 0; }
.hero__trust li { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; font-weight: 500; color: rgba(240,239,237,0.9); }
.hero__trust-ic {
  flex: none; display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(192,1,70,0.16); color: var(--rose-bright);
  border: 1px solid rgba(192,1,70,0.3);
}
.hero__trust-ic svg { width: 15px; height: 15px; }
/* Mobile: Erste Ansicht (Eyebrow → Buttons) füllt den Screen bis ~100svh;
   die Trust-Badges folgen direkt darunter und erscheinen beim Scrollen. */
@media (max-width: 879px) {
  .hero { justify-content: flex-start; }
  .hero__intro-top {
    min-height: calc(100svh - var(--header-h) - 3.5rem);
    display: flex; flex-direction: column; justify-content: center; gap: 0.2rem;
  }
}
/* Mobile: die 3 Vertrauens-Punkte als gleich breite Glas-Pillen untereinander */
@media (max-width: 620px) {
  .hero__trust { flex-direction: column; flex-wrap: nowrap; align-items: stretch; gap: 0.55rem; margin-top: 1.4rem; width: 100%; max-width: 22rem; }
  .hero__trust li {
    font-size: 0.95rem; font-weight: 600; gap: 0.7rem;
    padding: 0.72rem 0.95rem; border-radius: 13px;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.12);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  }
  .hero__trust-ic { width: 30px; height: 30px; }
}

/* Fliegende Icons links & rechts (dekorativ) */
.hero__floaters { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__floaters .hf { position: absolute; color: var(--rose-bright); opacity: 0.16; will-change: transform; }
.hero__floaters .hf svg { width: 100%; height: 100%; display: block; }
.hf--l1 { width: 50px; height: 50px; left: 2.5%; top: 18%;   animation: bfloat1 19s ease-in-out infinite; }
.hf--l2 { width: 36px; height: 36px; left: 7%;   top: 54%;   animation: bfloat3 24s ease-in-out infinite; }
.hf--l3 { width: 44px; height: 44px; left: 1.5%; bottom: 12%; animation: bfloat2 22s ease-in-out infinite; }
.hf--r1 { width: 46px; height: 46px; right: 3.5%; top: 14%;  animation: bfloat2 21s ease-in-out infinite; }
.hf--r2 { width: 38px; height: 38px; right: 8%;  bottom: 34%; animation: bfloat1 25s ease-in-out infinite reverse; }
.hf--r3 { width: 52px; height: 52px; right: 2%;  bottom: 9%;  animation: bfloat3 18s ease-in-out infinite; }

/* Körniger Glas-Shimmer in der oberen rechten Ecke */
.hero__corner {
  position: absolute; top: 0; right: 0; z-index: 0; pointer-events: none;
  width: clamp(220px, 32vw, 440px); height: clamp(200px, 28vw, 380px);
  background: radial-gradient(120% 120% at 100% 0%, rgba(255,255,255,0.16), rgba(255,255,255,0.05) 38%, transparent 64%);
  -webkit-backdrop-filter: blur(7px) saturate(1.1); backdrop-filter: blur(7px) saturate(1.1);
  -webkit-mask-image: radial-gradient(125% 125% at 100% 0%, #000 0%, rgba(0,0,0,0.6) 45%, transparent 72%);
  mask-image: radial-gradient(125% 125% at 100% 0%, #000 0%, rgba(0,0,0,0.6) 45%, transparent 72%);
  animation: cornerShimmer 6.5s ease-in-out infinite;
}
.hero__corner::after {
  content: ""; position: absolute; inset: 0; mix-blend-mode: overlay; opacity: 0.2;
  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");
}
@keyframes cornerShimmer { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }

/* CTA mit Shine-Sweep + pulsierendem Hintergrund */
.btn--shine {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--rose-bright) -8%, var(--rosewood) 48%, var(--amaranth) 112%);
  background-size: 160% 160%;
  animation: ctaPulse 2.8s ease-in-out infinite, ctaSheen 6s ease-in-out infinite;
}
.btn--shine:hover { background: linear-gradient(135deg, var(--rose-bright), var(--rosewood) 52%, var(--amaranth)); transform: translateY(-2px); filter: brightness(1.05); }
.btn--shine > * { position: relative; z-index: 2; }
.btn--shine::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -75%; width: 60%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-22deg);
  animation: ctaShine 3.6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%   { box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 12px 30px -8px rgba(192,1,70,0.6), 0 0 0 0 rgba(192,1,70,0.5); }
  65%  { box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 12px 30px -8px rgba(192,1,70,0.6), 0 0 0 14px rgba(192,1,70,0); }
  100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 12px 30px -8px rgba(192,1,70,0.6), 0 0 0 0 rgba(192,1,70,0); }
}
@keyframes ctaShine { 0% { left: -75%; } 42%, 100% { left: 140%; } }
@keyframes ctaSheen { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@media (prefers-reduced-motion: reduce) {
  .btn--shine { animation: none; box-shadow: 0 12px 30px -8px rgba(192,1,70,0.5); }
  .btn--shine::after { display: none; }
}

/* Browser-Frame als Signatur (CSS-Mock, dekorativ) */
.browser {
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateZ(0);
}
.browser__bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
}
.browser__dots { display: flex; gap: 0.4rem; }
.browser__dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong); }
.browser__ic { width: 14px; height: 14px; border-radius: 5px; flex: none; background: linear-gradient(135deg, var(--rose-bright), var(--rosewood)); }
.browser__url {
  flex: 1;
  font-size: 0.78rem;
  color: var(--carbon-55);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.browser__viewport { padding: 1.4rem; display: grid; gap: 1rem; }
.mock-hero {
  background: linear-gradient(135deg, var(--rosewood), var(--amaranth));
  color: var(--paper);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem;
}
.mock-eyebrow { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--parchment); opacity: 0.85; }
.mock-title { font-family: var(--ff-display); font-size: 1.5rem; line-height: 1.15; margin-top: 0.4rem; }
.mock-row { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.mock-pill { height: 34px; border-radius: 999px; padding: 0 0.9rem; display: flex; align-items: center; font-size: 0.75rem; }
.mock-pill--solid { background: var(--parchment); color: var(--carbon); }
.mock-pill--ghost { border: 1px solid rgba(240,239,237,0.5); color: var(--paper); }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.mock-card { background: var(--parchment); border-radius: var(--r-md); padding: 0.9rem; }
.mock-bar { height: 8px; border-radius: 99px; background: var(--line-strong); display: block; }
.mock-bar.is-short { width: 55%; margin-top: 0.5rem; background: var(--line); }
.mock-ico { width: 26px; height: 26px; border-radius: 8px; background: var(--rose-tint); border: 1px solid var(--line); margin-bottom: 0.6rem; display: block; }

/* --------------------------------------------------------- Benefits-Marquee */
.benefits { background: var(--carbon); border-top: 1px solid var(--on-dark-line); overflow: hidden; }
.benefits__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.benefits__track { display: flex; width: max-content; animation: benefitsScroll 38s linear infinite; }
.benefits:hover .benefits__track,
.benefits:focus-within .benefits__track { animation-play-state: paused; }
.benefit {
  flex: none; width: clamp(230px, 24vw, 320px);
  padding: 1.7rem clamp(1.25rem, 1rem + 1vw, 2rem);
  display: flex; flex-direction: column; gap: 0.5rem;
  border-right: 1px solid var(--on-dark-line);
}
.benefit__ic {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 0.2rem;
  display: grid; place-items: center;
  background: rgba(192,1,70,0.16); color: var(--rose-bright);
  border: 1px solid rgba(192,1,70,0.3);
}
.benefit__ic svg { width: 22px; height: 22px; }
.benefit__title { color: var(--paper); font-size: 1.08rem; font-weight: 600; }
.benefit__sub { color: var(--parch-dim); font-size: 0.9rem; line-height: 1.4; }
@keyframes benefitsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .benefits__track { animation: none; flex-wrap: wrap; width: 100%; } }

/* --------------------------------------------------------------- Referenzen */
.ref-grid { display: grid; gap: clamp(1.25rem, 0.8rem + 2vw, 2rem); }
.ref-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ref-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); color: inherit; }
.ref-card__shot {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(120% 80% at 100% 0%, var(--rose-tint), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--parchment));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.ref-card__shot-title {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  color: var(--carbon);
  text-align: center;
  padding: 1rem;
}
.ref-card__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.ref-card__role { font-size: var(--fs-eyebrow); letter-spacing: 0.12em; text-transform: uppercase; color: var(--rosewood); font-weight: 600; }
.ref-card__name { font-size: var(--fs-h3); }
.ref-card__blurb { color: var(--carbon-70); font-size: 1rem; }
.ref-card__link {
  margin-top: auto; padding-top: 0.6rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; color: var(--amaranth);
}
.ref-card__link .btn__arrow { transition: transform 0.25s var(--ease); }
.ref-card:hover .ref-card__link .btn__arrow { transform: translateX(3px); }

/* --------------------------------------------------------------- Leistungen */
.feature-grid { display: grid; gap: clamp(1rem, 0.6rem + 2vw, 1.75rem); }
.feature {
  position: relative; overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 1.1rem + 1.2vw, 2.2rem);
  display: flex; flex-direction: column; gap: 0.7rem;
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature:hover { box-shadow: 0 26px 52px -28px rgba(25, 24, 22, 0.32); border-color: rgba(192, 1, 70, 0.22); }
/* große, dezente Hintergrund-Nummer */
.feature__num {
  position: absolute; top: -0.7rem; right: 0.6rem; z-index: 0; pointer-events: none;
  font-family: var(--ff-display); font-weight: 700; font-size: 6.4rem; line-height: 1;
  color: rgba(192, 1, 70, 0.07);
  transition: color 0.35s var(--ease);
}
.feature:hover .feature__num { color: rgba(192, 1, 70, 0.13); }
.feature__icon, .feature__title, .feature__body { position: relative; z-index: 1; }
.feature__icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(150deg, var(--rose-tint), #ffffff);
  border: 1px solid rgba(192, 1, 70, 0.18);
  display: grid; place-items: center; color: var(--rosewood);
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 18px -10px rgba(192, 1, 70, 0.4);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature:hover .feature__icon { transform: scale(1.08) rotate(-4deg); box-shadow: 0 12px 26px -10px rgba(192, 1, 70, 0.5); }
.feature__icon svg { width: 26px; height: 26px; }
.feature__title { font-size: var(--fs-h3); }
.feature__body { color: var(--carbon-70); }
@media (prefers-reduced-motion: reduce) { .feature, .feature__icon, .feature__num { transition: none; } }

/* ---- Ihr Risiko: Gegenüberstellung (Sorgen durchgestrichen → 0) vs (meine Arbeit) ---- */
.risk-scale {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: clamp(1.4rem, 1rem + 3vw, 3.4rem);
  margin-top: clamp(2rem, 1.5rem + 2vw, 3.2rem);
}
.risk-col__head { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--parch-dimmer); margin-bottom: 1.1rem; }
.risk-worries { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.risk-worry { position: relative; width: fit-content; font-size: var(--fs-lead); color: var(--parch-dim); padding-left: 1.8rem; }
.risk-worry::before { content: "✕"; position: absolute; left: 0; top: 0.05em; color: var(--rose-bright); font-weight: 700; font-size: 0.92em; }
.risk-worry::after {
  content: ""; position: absolute; left: 1.6rem; right: -3px; top: 56%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--rose-bright), var(--rosewood));
  transform: scaleX(0); transform-origin: left; transition: transform 0.55s var(--ease);
}
.risk-col--you.is-visible .risk-worry::after { transform: scaleX(1); }
.risk-col--you.is-visible .risk-worry:nth-child(2)::after { transition-delay: 0.1s; }
.risk-col--you.is-visible .risk-worry:nth-child(3)::after { transition-delay: 0.2s; }
.risk-col--you.is-visible .risk-worry:nth-child(4)::after { transition-delay: 0.3s; }
.risk-col--you.is-visible .risk-worry:nth-child(5)::after { transition-delay: 0.4s; }
.risk-col__sum { margin-top: 1.7rem; font-size: var(--fs-lead); color: var(--parch-dim); }
.risk-col__sum strong { color: var(--paper); font-family: var(--ff-display); font-size: 2.1em; vertical-align: -0.12em; margin-left: 0.25rem; }
.risk-mid { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; align-self: stretch; }
.risk-mid__line { flex: 1; width: 1px; background: linear-gradient(var(--on-dark-line), transparent); }
.risk-mid__line:last-child { background: linear-gradient(transparent, var(--on-dark-line)); }
.risk-mid__badge { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose-bright); border: 1px solid rgba(236, 106, 137, 0.4); border-radius: 999px; padding: 0.35rem 0.85rem; background: rgba(236, 106, 137, 0.08); }
.risk-col__big { font-family: var(--ff-display); font-weight: 700; line-height: 1.05; font-size: clamp(1.8rem, 1.2rem + 2.6vw, 2.9rem); color: var(--paper); text-shadow: 0 0 44px rgba(192, 1, 70, 0.45); }
.risk-col__big em { font-style: normal; color: var(--rose-bright); }
.risk-col__note { margin-top: 1rem; color: var(--parch-dim); font-size: 1rem; line-height: 1.55; max-width: 36ch; }
.risk-punch { margin-top: clamp(2.2rem, 1.5rem + 2vw, 3.6rem); text-align: center; font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.3rem, 1rem + 1.6vw, 2rem); color: var(--paper); }
.risk-punch em { font-style: normal; color: var(--rose-bright); }
@media (max-width: 760px) {
  .risk-scale { grid-template-columns: 1fr; }
  .risk-mid { flex-direction: row; }
  .risk-mid__line { width: auto; height: 1px; }
}
@media (prefers-reduced-motion: reduce) { .risk-worry::after { transition: none; } }

/* ---- Nicht für jeden: Ja/Nein-Gegenüberstellung ---- */
.forwhom { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 0.6rem + 1.5vw, 1.8rem); margin-top: clamp(2rem, 1.5rem + 2vw, 3rem); align-items: start; }
.forwhom-col { border-radius: var(--r-lg); padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.forwhom-col--no { background: rgba(25, 24, 22, 0.015); border: 1px solid var(--line); }
.forwhom-col--yes { background: var(--paper); border: 1.5px solid rgba(192, 1, 70, 0.32); box-shadow: 0 28px 56px -32px rgba(192, 1, 70, 0.42); }
.forwhom-col--yes:hover { transform: translateY(-4px); box-shadow: 0 34px 66px -32px rgba(192, 1, 70, 0.5); }
.forwhom-col__head { display: flex; align-items: center; gap: 0.65rem; font-size: 1.12rem; font-weight: 700; margin-bottom: 1.3rem; }
.forwhom-col__ic { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 0.92rem; font-weight: 700; }
.forwhom-col--no .forwhom-col__head { color: var(--carbon-55); }
.forwhom-col--no .forwhom-col__ic { background: rgba(25, 24, 22, 0.08); color: var(--carbon-55); }
.forwhom-col--yes .forwhom-col__head { color: var(--carbon); }
.forwhom-col--yes .forwhom-col__ic { background: var(--rosewood); color: var(--paper); }
.forwhom-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.forwhom-list li { position: relative; padding-left: 1.7rem; line-height: 1.5; }
.forwhom-list li::before { position: absolute; left: 0; top: 0.02em; font-weight: 700; }
.forwhom-col--no .forwhom-list li { color: var(--carbon-55); }
.forwhom-col--no .forwhom-list li::before { content: "✕"; color: var(--carbon-55); opacity: 0.65; }
.forwhom-col--yes .forwhom-list li { color: var(--carbon-70); }
.forwhom-col--yes .forwhom-list li::before { content: "✓"; color: var(--rosewood); }
@media (max-width: 760px) { .forwhom { grid-template-columns: 1fr; } }

/* ---- Wie geht's weiter: horizontaler 4-Schritte-Ablauf ---- */
.flow { position: relative; list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 0.6rem + 1.5vw, 2rem); margin-top: clamp(2.5rem, 2rem + 2vw, 3.5rem); }
.flow::before, .flow::after { content: ""; position: absolute; top: 23px; left: 12.5%; right: 12.5%; height: 2px; border-radius: 2px; z-index: 0; }
.flow::before { background: rgba(192, 1, 70, 0.16); }
.flow::after { background: linear-gradient(90deg, var(--rose-bright), var(--rosewood)); transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease); }
.flow.is-drawn::after { transform: scaleX(1); }
.flow-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.4rem; }
.flow-step__num {
  position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; color: var(--paper);
  background: linear-gradient(150deg, var(--rose-bright), var(--rosewood));
  /* „unsichtbarer" Ring in Section-Farbe maskiert die Linie → Kreis schwebt darüber */
  box-shadow: 0 0 0 7px var(--parchment), 0 14px 26px -8px rgba(192, 1, 70, 0.55);
  margin-bottom: 0.5rem; transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.flow-step:hover .flow-step__num { transform: translateY(-6px) scale(1.07); box-shadow: 0 0 0 7px var(--parchment), 0 24px 36px -10px rgba(192, 1, 70, 0.6); }
.flow-step__title { font-size: 1.12rem; font-weight: 600; color: var(--carbon); }
.flow-step__body { color: var(--carbon-70); font-size: 0.95rem; line-height: 1.5; max-width: 26ch; }
@media (max-width: 760px) {
  .flow { grid-template-columns: 1fr; gap: 1.8rem; }
  .flow::before, .flow::after { display: none; }
}
@media (prefers-reduced-motion: reduce) { .flow::after { transition: none; transform: scaleX(1); } }

/* ---- 7 Benefits (nehmen die Sorgen) — im Wie-geht's-weiter ---- */
.bens { margin-top: clamp(3rem, 2.4rem + 2.5vw, 4.5rem); padding-top: clamp(2.2rem, 1.6rem + 2vw, 3.2rem); border-top: 1px solid var(--line); text-align: center; }
.bens__eyebrow { color: var(--rosewood); margin-bottom: 0.5rem; }
.bens__cta { margin-top: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem); font-size: var(--fs-lead); font-weight: 600; line-height: 1.45; color: var(--carbon); }
.bens__cta-soft { display: inline-block; margin-top: 0.5rem; font-size: var(--fs-body); font-weight: 400; color: var(--carbon-70); }
.bens__head { text-align: center; font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem); color: var(--carbon); margin-bottom: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem); }
/* max-width passt genau für 4 Karten je Reihe → sauberes 4 + 3 (zentriert) */
.bens__grid { list-style: none; padding: 0; margin: 0 auto; max-width: 1000px; display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: clamp(0.85rem, 0.55rem + 1vw, 1.2rem); }
/* feste Breite → alle Karten exakt gleich groß; Icon mittig oben in der Box */
.ben { flex: 0 0 clamp(200px, 22vw, 232px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.45rem; padding: 1.7rem 1.35rem 1.55rem; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 30px -22px rgba(25, 24, 22, 0.5); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.ben:hover { transform: translateY(-5px); box-shadow: 0 26px 46px -24px rgba(192, 1, 70, 0.4); border-color: rgba(192, 1, 70, 0.25); }
.ben__ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; color: var(--rosewood); background: linear-gradient(150deg, rgba(192, 1, 70, 0.14), rgba(140, 2, 53, 0.06)); margin-bottom: 0.5rem; transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.ben:hover .ben__ic { background: linear-gradient(150deg, var(--rose-bright), var(--rosewood)); color: #fff; transform: scale(1.09) translateY(-2px); box-shadow: 0 12px 22px -8px rgba(192, 1, 70, 0.5); }
.ben__ic svg { display: block; width: 25px; height: 25px; }
.ben strong { display: block; font-size: 1.06rem; color: var(--carbon); }
.ben span { display: block; font-size: 0.9rem; line-height: 1.5; color: var(--carbon-70); }
@media (max-width: 560px) { .ben { flex-basis: 100%; } }
@media (prefers-reduced-motion: reduce) { .ben, .ben__ic { transition: none; } }

/* ---- Immer noch nicht überzeugt? (Einwände als Zitate, Ink-Sektion) ---- */
.convince { max-width: 820px; margin-inline: auto; }
.convince__head { margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem); }
.convince__list { list-style: none; padding: 0; margin: 0; display: grid; gap: clamp(0.8rem, 0.6rem + 0.8vw, 1.2rem); }
.convince__item { position: relative; padding: clamp(1.2rem, 1rem + 1vw, 1.65rem) clamp(1.3rem, 1.05rem + 1.2vw, 1.85rem); border-radius: 16px; background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.1); transition: background 0.3s var(--ease), border-color 0.3s var(--ease); }
.convince__item:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(236, 106, 137, 0.35); }
.convince__q { display: block; position: relative; padding-left: 1.7rem; margin-bottom: 0.45rem; font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem); color: var(--parchment); }
.convince__q::before { content: "\201E"; position: absolute; left: -0.05rem; top: 0.34em; line-height: 0; font-size: 2.1em; color: var(--rose-bright); font-family: var(--ff-display); }
.convince__a { display: block; padding-left: 1.7rem; color: var(--parch-dim); line-height: 1.6; }
.convince__close { text-align: center; margin-top: clamp(2.2rem, 1.6rem + 2vw, 3.2rem); }
.convince__close p { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.2rem, 1.05rem + 0.8vw, 1.65rem); color: var(--parchment); margin: 0 auto 1.5rem; max-width: 24ch; }

/* ---- FAQ (natives <details>-Accordion) ---- */
.faq { max-width: 760px; margin: clamp(2.4rem, 1.9rem + 2vw, 3.4rem) auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: clamp(1.05rem, 0.85rem + 0.6vw, 1.4rem) 0.15rem; font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.02rem, 0.97rem + 0.35vw, 1.2rem); color: var(--carbon); transition: color 0.25s var(--ease); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--rosewood); }
.faq-ic { position: relative; flex: none; width: 22px; height: 22px; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--rosewood); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.faq-ic::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-ic::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-ic::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a p { margin: 0; padding: 0 2.6rem clamp(1.1rem, 0.9rem + 0.6vw, 1.45rem) 0.15rem; color: var(--carbon-70); line-height: 1.65; }
.faq-item[open] .faq-a { animation: faqSlide 0.35s var(--ease); }
@keyframes faqSlide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .faq-item[open] .faq-a { animation: none; } }

/* ---- Fliegende Häkchen ("Der Haken? Es gibt keinen") ---- */
#warum-kostenlos { position: relative; overflow: hidden; }
#warum-kostenlos > .container { position: relative; z-index: 1; }
.warum__floaters { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.warum__floaters .wf { position: absolute; color: var(--rosewood); opacity: 0.16; will-change: transform; }
.warum__floaters .wf svg { width: 100%; height: 100%; display: block; }
.wf--2 svg { transform: rotate(20deg); }
.wf--4 svg { transform: rotate(-24deg); }
.wf--5 svg { transform: rotate(13deg); }
.wf--6 svg { transform: rotate(-12deg); }
.wf--7 svg { transform: rotate(-18deg); }
.wf--1 { width: 46px; height: 46px; left: 3%;   top: 17%;    animation: bfloat1 20s ease-in-out infinite; }
.wf--2 { width: 30px; height: 30px; left: 8.5%; top: 64%;    animation: bfloat3 26s ease-in-out infinite; }
.wf--3 { width: 40px; height: 40px; left: 1.5%; bottom: 9%;  animation: bfloat2 23s ease-in-out infinite; }
.wf--4 { width: 50px; height: 50px; right: 3.5%; top: 13%;   animation: bfloat2 22s ease-in-out infinite reverse; }
.wf--5 { width: 28px; height: 28px; right: 9%;  top: 52%;    animation: bfloat1 27s ease-in-out infinite; }
.wf--6 { width: 44px; height: 44px; right: 2%;  bottom: 11%; animation: bfloat3 19s ease-in-out infinite; }
.wf--7 { width: 26px; height: 26px; left: 47%;  top: 5%;     animation: bfloat1 24s ease-in-out infinite reverse; }
@media (prefers-reduced-motion: reduce) { .warum__floaters .wf { animation: none; } }
@media (max-width: 760px) { .wf--2, .wf--5, .wf--7 { display: none; } .warum__floaters .wf { opacity: 0.1; } }

/* ---- Porträt-Platzhalter (austauschbar gegen <img class="portrait__img">) ---- */
.portrait { margin: 0; width: 100%; max-width: 420px; }
.portrait__img { display: block; width: 100%; aspect-ratio: 4 / 5; border-radius: 18px; object-fit: cover; }
.portrait__ph { display: grid; place-items: center; background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)); border: 1px solid rgba(255, 255, 255, 0.18); }
.portrait__ph svg { width: 30%; max-width: 84px; color: rgba(255, 255, 255, 0.55); }
.portrait__cap { margin-top: 0.95rem; }
.portrait__cap strong { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; }
.portrait__cap span { display: block; font-size: 0.88rem; opacity: 0.78; margin-top: 0.1rem; }
.portrait--onlight .portrait__ph { background: linear-gradient(160deg, rgba(192, 1, 70, 0.1), rgba(192, 1, 70, 0.035)); border-color: var(--line); }
.portrait--onlight .portrait__ph svg { color: rgba(192, 1, 70, 0.38); }

/* Haken: Text links, Porträt rechts */
.haken-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(1.6rem, 1rem + 3vw, 3.6rem); align-items: center; }
.haken-grid .portrait { justify-self: center; }
@media (max-width: 820px) { .haken-grid { grid-template-columns: 1fr; gap: 2rem; } .haken-grid .portrait { max-width: 320px; } }

/* Kurz zu mir: zentrierter Text + 5-Karten-Fächer auf Schach/Karten-Hintergrund */
#ueber-mich { position: relative; overflow: hidden; }
.about-head { max-width: 640px; margin-inline: auto; text-align: center; }
.about-head .eyebrow { justify-content: center; margin-bottom: 0.9rem; }
.about-head h2 { margin-bottom: 0.6rem; }
.about-head .lead { margin-bottom: 0.8rem; margin-inline: auto; }
.about-head > p:not(.lead):not(.eyebrow) { color: var(--carbon-70); margin-inline: auto; }

/* Schwebende Schach- & Kartensymbole (Strategie) */
.about-floaters { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.af { position: absolute; color: var(--rosewood); opacity: 0.1; line-height: 1; font-size: 3rem; will-change: transform; }
.af--1 { left: 4%;   top: 14%;    font-size: 3.6rem; animation: bfloat1 21s ease-in-out infinite; }
.af--2 { left: 9%;   top: 60%;    font-size: 2.6rem; animation: bfloat3 26s ease-in-out infinite; }
.af--3 { left: 2.5%; bottom: 12%; font-size: 3rem;   animation: bfloat2 24s ease-in-out infinite; }
.af--4 { right: 5%;  top: 16%;    font-size: 2.8rem; animation: bfloat2 22s ease-in-out infinite reverse; }
.af--5 { right: 10%; top: 54%;    font-size: 2.4rem; animation: bfloat1 27s ease-in-out infinite; }
.af--6 { right: 3%;  bottom: 14%; font-size: 3.2rem; animation: bfloat3 19s ease-in-out infinite; }
.af--7 { left: 44%;  top: 4%;     font-size: 2.6rem; animation: bfloat1 25s ease-in-out infinite reverse; }
.af--8 { right: 40%; bottom: 6%;  font-size: 2.4rem; animation: bfloat2 23s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .af { animation: none; } }
@media (max-width: 760px) { .af--2, .af--5, .af--7, .af--8 { display: none; } .af { opacity: 0.08; } }

/* Pokerhand-Fächer */
.fan { position: relative; z-index: 1; display: flex; justify-content: center; align-items: flex-end; margin-top: clamp(2.4rem, 1.6rem + 2.5vw, 3.6rem); padding-top: 1.6rem; }
.fan-card { position: relative; flex: none; width: clamp(118px, 6vw + 86px, 170px); aspect-ratio: 3 / 4; margin-left: clamp(-2.8rem, -1.6rem - 1.6vw, -1.7rem); padding: 5px; border-radius: 13px; background: #fff; box-shadow: 0 16px 34px -14px rgba(25, 24, 22, 0.45); transform-origin: bottom center; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.fan-card:first-child { margin-left: 0; }
.fan-card:nth-child(1) { transform: rotate(-12deg) translateY(20px); z-index: 1; }
.fan-card:nth-child(2) { transform: rotate(-6deg) translateY(6px); z-index: 2; }
.fan-card:nth-child(3) { transform: rotate(0deg) translateY(0); z-index: 3; }
.fan-card:nth-child(4) { transform: rotate(6deg) translateY(6px); z-index: 4; }
.fan-card:nth-child(5) { transform: rotate(12deg) translateY(20px); z-index: 5; }
.fan-card:hover { transform: rotate(0deg) translateY(-24px) scale(1.05); z-index: 10; box-shadow: 0 32px 52px -18px rgba(192, 1, 70, 0.42); }
.fan-card__img, .fan-card__ph { display: block; width: 100%; height: 100%; border-radius: 9px; object-fit: cover; }

/* Fotos von Oscar: standardmäßig Graustufen, beim Hover farbig */
.portrait__img, .fan-card__img, .cal-avatar img { filter: grayscale(1); transition: filter 0.5s var(--ease); }
.portrait:hover .portrait__img,
.fan-card:hover .fan-card__img,
.cal-avatar:hover img { filter: grayscale(0); }
/* Touch-Geräte ohne Hover: Fotos farbig zeigen */
@media (hover: none) {
  .portrait__img, .fan-card__img, .cal-avatar img { filter: none; }
}
.fan-card__ph { display: grid; place-items: center; background: linear-gradient(160deg, rgba(192, 1, 70, 0.12), rgba(140, 2, 53, 0.05)); }
.fan-card__ph svg { width: 40%; max-width: 56px; color: rgba(192, 1, 70, 0.42); }
@media (max-width: 560px) {
  .fan-card { width: clamp(82px, 23vw, 116px); margin-left: -1.5rem; padding: 4px; }
  .fan-card:nth-child(1) { transform: rotate(-10deg) translateY(14px); }
  .fan-card:nth-child(2) { transform: rotate(-5deg) translateY(4px); }
  .fan-card:nth-child(4) { transform: rotate(5deg) translateY(4px); }
  .fan-card:nth-child(5) { transform: rotate(10deg) translateY(14px); }
}

/* ---- Mobile: Foto-Fächer als drehbare Drehscheibe (Drag/Swipe) ---- */
.fan.is-turntable {
  display: block; position: relative;
  height: clamp(300px, 90vw, 384px);
  margin-inline: auto; padding-top: 0;
  touch-action: pan-y; cursor: grab;
  -webkit-user-select: none; user-select: none;
}
.fan.is-turntable.is-grabbing { cursor: grabbing; }
.fan.is-turntable .fan-card {
  position: absolute; left: 0; right: 0; bottom: 11%;
  margin: 0 auto;
  width: clamp(120px, 39vw, 160px);
  transform-origin: center bottom;
  transform: rotate(var(--angle, 0deg)) scale(var(--scale, 1));
  z-index: var(--z, 1);
  will-change: transform;
}
.fan.is-turntable.is-settling .fan-card { transition: transform 0.5s var(--ease), box-shadow 0.45s var(--ease); }
.fan.is-turntable .fan-card.is-front { box-shadow: 0 30px 56px -18px rgba(192, 1, 70, 0.46); }
.fan.is-turntable .fan-card__img { filter: grayscale(0.55); transition: filter 0.45s var(--ease); }
.fan.is-turntable .fan-card.is-front .fan-card__img { filter: grayscale(0); }
.fan-hint { display: none; margin: 1.1rem auto 0; text-align: center; font-size: 0.82rem; letter-spacing: 0.02em; color: var(--carbon-55); }
.fan-hint__ic { display: inline-block; margin-right: 0.3rem; color: var(--rosewood); font-weight: 700; }
.fan.is-turntable + .fan-hint { display: block; }

/* ---- Mobile: Prozess-Nummer zoomt auf, wenn sie in die Bildmitte scrollt ---- */
@media (max-width: 760px) {
  .flow-step__num { transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
  .flow-step__num.is-centered {
    transform: translateY(-4px) scale(1.22);
    box-shadow: 0 0 0 7px var(--parchment), 0 26px 42px -10px rgba(192, 1, 70, 0.6);
  }
}

/* ---- Buchungs-Widget (#anfordern) — helles Panel auf der roten Karte ---- */
.booking { position: relative; margin-top: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem); background: var(--paper); color: var(--carbon); border-radius: 20px; padding: clamp(1.2rem, 0.9rem + 1.4vw, 1.9rem); text-align: left; box-shadow: 0 30px 60px -38px rgba(25, 24, 22, 0.6); }
.booking__steplabel { display: flex; align-items: center; gap: 0.5rem; font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem; color: var(--carbon); margin-bottom: 0.85rem; }
.booking__steplabel span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(150deg, var(--rose-bright), var(--rosewood)); color: #fff; font-size: 0.75rem; flex: none; }

/* Zustände: nur Kalender → Schublade fährt hinter dem Kalender hervor → Kontakt */
.booking__contact, .booking__done { display: none; }
.booking--form .booking__contact { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: clamp(1rem, 0.6rem + 1.4vw, 1.8rem); align-items: start; animation: bkFade 0.32s var(--ease); }
.booking--form .booking__deck, .booking--done .booking__deck { display: none; }
.booking--done .booking__done { display: block; }

/* Deck = Kalender (im Fluss) + Schublade (absolut dahinter, gleiche Höhe wie der Kalender) */
.booking__deck { position: relative; width: 300px; max-width: 100%; margin: 0 auto; --bk-dw: 240px; --bk-ov: 22px; transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1); }
.booking--times .booking__deck { transform: translateX(calc(var(--bk-dw) / -2)); }
.booking__drawer { position: absolute; top: 0; bottom: 0; left: calc(100% - var(--bk-ov)); width: calc(var(--bk-dw) + var(--bk-ov)); z-index: 1; display: flex; flex-direction: column; color: #fff; background: linear-gradient(160deg, var(--rose-bright) -12%, var(--rosewood) 46%, var(--amaranth) 116%); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 0 14px 14px 0; padding: 0.85rem 0.85rem 0.85rem calc(0.85rem + var(--bk-ov)); box-shadow: 0 24px 50px -22px rgba(192, 1, 70, 0.55); transform: translateX(calc(-100% + var(--bk-ov))); opacity: 0; pointer-events: none; transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.22s ease; }
.booking--times .booking__drawer { transform: translateX(0); opacity: 1; pointer-events: auto; }
.booking__drawer .booking__steplabel { color: #fff; }
.booking__drawer .booking__steplabel span { background: #fff; color: var(--rosewood); }
/* Mobile: Schublade fährt nach UNTEN hinter dem Kalender hervor */
@media (max-width: 760px) {
  .booking__deck { width: 100%; transform: none !important; }
  .booking__drawer { position: relative; z-index: 1; top: auto; bottom: auto; left: auto; width: auto; transform: none; opacity: 1; pointer-events: auto; margin-top: calc(-1 * var(--bk-ov)); border-radius: 0 0 14px 14px; padding: calc(0.85rem + var(--bk-ov)) 0.85rem 0.85rem; }
  .booking:not(.booking--times) .booking__drawer { display: none; }
  .booking--times .booking__drawer { display: flex; animation: bkDown 0.38s cubic-bezier(0.22, 0.61, 0.36, 1); }
  .booking--form .booking__contact { grid-template-columns: 1fr; }
}
@keyframes bkDown { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: none; } }

/* Kompakter Kalender */
.booking__cal { position: relative; z-index: 2; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0.85rem; box-shadow: 0 10px 26px -20px rgba(25, 24, 22, 0.35); }
.booking__cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.booking__cal-month { font-family: var(--ff-display); font-weight: 600; font-size: 0.98rem; color: var(--carbon); }
.booking__cal-nav { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 1.1rem; line-height: 1; color: var(--carbon); transition: border-color 0.15s var(--ease), color 0.15s var(--ease); }
.booking__cal-nav:hover:not(:disabled) { border-color: var(--rosewood); color: var(--rosewood); }
.booking__cal-nav:disabled { opacity: 0.3; cursor: default; }
.booking__cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 0.15rem; }
.booking__cal-wd { text-align: center; font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--carbon-55); padding-bottom: 0.25rem; }
.booking__cal-cell { aspect-ratio: 1 / 1; display: grid; place-items: center; border: none; background: transparent; border-radius: 8px; font-size: 0.85rem; font-weight: 500; color: rgba(25, 24, 22, 0.28); cursor: default; padding: 0; }
.booking__cal-cell.is-empty { visibility: hidden; }
.booking__cal-cell.is-avail { cursor: pointer; font-weight: 700; color: var(--rosewood); background: rgba(192, 1, 70, 0.08); }
.booking__cal-cell.is-avail:hover { background: rgba(192, 1, 70, 0.16); }
.booking__cal-cell.is-active { background: linear-gradient(160deg, var(--rosewood), var(--amaranth)); color: #fff; }
.booking__hint, .booking__loading { margin-top: 0.75rem; font-size: 0.8rem; color: var(--carbon-55); }

/* Zusammenfassung (links, nach Zeitwahl) */
.booking__summary .booking__steplabel .is-check { background: linear-gradient(150deg, var(--rose-bright), var(--rosewood)); }
.booking__sum-card { border: 1px solid var(--rosewood); border-radius: 14px; padding: 1.1rem 1.2rem; background: rgba(192, 1, 70, 0.04); }
.booking__sum-when { display: block; font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; color: var(--carbon); margin-bottom: 0.3rem; }
.booking__sum-meta { display: block; font-size: 0.85rem; color: var(--carbon-70); margin-bottom: 0.9rem; }
.booking__change { border: none; background: none; padding: 0; color: var(--rosewood); font: inherit; font-weight: 600; cursor: pointer; text-decoration: underline; }

@keyframes bkFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .booking__deck, .booking__drawer { transition: none; } .booking--form .booking__contact, .booking--form .booking__sum-card { animation: none; } }
/* Uhrzeiten in der Schublade (3 Spalten, füllt die Höhe, scrollt bei Bedarf) */
.booking__slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 0.6rem; flex: 1; overflow-y: auto; align-content: start; perspective: 900px; }
/* Slot = Karte mit Flip: Vorderseite Uhrzeit → bei Auswahl dreht sie zu „Weiter" */
.booking__slot { position: relative; min-height: 46px; border: none; background: none; padding: 0; cursor: pointer; transform-style: preserve-3d; transition: transform 0.5s cubic-bezier(0.4, 0.15, 0.2, 1); }
.booking__slot-face { position: absolute; inset: 0; display: grid; place-items: center; border-radius: 9px; font-weight: 600; font-size: 0.9rem; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.booking__slot-front { border: 1px solid rgba(255, 255, 255, 0.32); background: rgba(255, 255, 255, 0.14); color: #fff; transition: background 0.15s var(--ease), border-color 0.15s var(--ease); }
.booking__slot:hover .booking__slot-front { background: rgba(255, 255, 255, 0.28); border-color: #fff; }
.booking__slot-back { background: #fff; color: var(--rosewood); font-weight: 700; transform: rotateY(180deg); box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.35); }
.booking__slot-back span { margin-left: 0.3rem; }
.booking__slot.is-active { transform: rotateY(180deg); }
@media (prefers-reduced-motion: reduce) { .booking__slot { transition: none; } }

/* Formular (rechts, nach Zeitwahl) */
.booking__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.booking__field { display: block; margin-bottom: 0.75rem; }
.booking__field > span { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.28rem; color: var(--carbon); }
.booking__field em { font-style: normal; font-weight: 400; color: var(--carbon-55); }
.booking__field input, .booking__field select, .booking__field textarea { width: 100%; padding: 0.62rem 0.8rem; border-radius: 9px; border: 1px solid var(--line-strong); background: #fff; font: inherit; font-size: 0.92rem; color: var(--carbon); }
.booking__field textarea { resize: vertical; }
.booking__field input:focus, .booking__field select:focus, .booking__field textarea:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.12); }
.tel-group { display: flex; gap: 0.45rem; align-items: stretch; }
.tel-group .tel-cc { width: auto; flex: none; max-width: 8rem; padding-inline: 0.5rem; }
.tel-group input { flex: 1; min-width: 0; }
.booking__consent { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.82rem; color: var(--carbon-70); margin: 0.2rem 0 1rem; }
.booking__consent input { margin-top: 0.2rem; flex: none; }
.booking__consent a { color: var(--rosewood); text-decoration: underline; }
.booking__submit { width: 100%; justify-content: center; }
.btn.is-loading { pointer-events: none; }
.btn-spin { display: inline-block; width: 1em; height: 1em; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; margin-right: 0.55em; vertical-align: -0.15em; animation: btnSpin 0.7s linear infinite; }
@keyframes btnSpin { to { transform: rotate(360deg); } }
.booking__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Checkout-Akkordeon (Buchungsformular in Schritten) */
.booking__form--checkout { display: flex; flex-direction: column; gap: 0.55rem; border: 0; padding: 0; margin: 0; }
.cf-step { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 0; margin: 0; min-width: 0; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.cf-step.is-active { border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.08); }
.cf-step.is-locked { opacity: 0.55; }
.cf-head { width: 100%; display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 0.95rem; background: none; border: 0; font: inherit; text-align: left; color: var(--carbon); cursor: default; }
.cf-step.is-done .cf-head { cursor: pointer; }
.cf-head__n { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 0.82rem; font-weight: 700; background: var(--parchment); color: var(--carbon-55); }
.cf-step.is-active .cf-head__n { background: linear-gradient(150deg, var(--rose-bright), var(--rosewood)); color: #fff; }
.cf-step.is-done .cf-head__n { background: #3f9d6c; color: #fff; font-size: 0; }
.cf-step.is-done .cf-head__n::after { content: "✓"; font-size: 0.95rem; }
.cf-head__t { font-weight: 600; white-space: nowrap; }
.cf-step.is-done .cf-head__t { color: var(--carbon-55); font-weight: 500; }
.cf-head__sum { margin-left: auto; font-size: 0.84rem; color: var(--carbon-70); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; display: none; }
.cf-step.is-done .cf-head__sum { display: block; }
.cf-head__edit { margin-left: 0.7rem; font-size: 0.8rem; color: var(--rosewood); font-weight: 600; flex: none; display: none; }
.cf-step.is-done .cf-head__edit { display: inline; }
.cf-body { display: none; padding: 0 0.95rem 0.95rem; }
.cf-step.is-active .cf-body { display: block; }
.cf-next { margin-top: 0.3rem; }
.booking__field input.cf-invalid, .booking__field textarea.cf-invalid { border-color: var(--error); box-shadow: 0 0 0 3px rgba(154, 44, 51, 0.12); }
.booking__status { margin-top: 0.7rem; font-size: 0.86rem; min-height: 1.2em; }
.booking__status.is-error { color: var(--rosewood); font-weight: 600; }

/* Erfolg */
.booking__done { text-align: center; padding: 1.4rem 0.5rem; }
.booking__done-ic { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(150deg, var(--rose-bright), var(--rosewood)); color: #fff; font-size: 1.55rem; margin-bottom: 0.8rem; }
.booking__done h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.booking__done p { color: var(--carbon-70); }
@media (max-width: 560px) { .booking__grid { grid-template-columns: 1fr; } }

/* ===== /termin — eigene Buchungsseite (Hebentanz-Stil: schwebende Icons) ===== */
.termin-page { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--parchment), #fbfaf8 55%); }
.termin-hero { position: relative; padding: clamp(1.6rem, 1.2rem + 2vw, 3rem) 0 clamp(3rem, 2rem + 4vw, 6rem); }
.termin-wrap { position: relative; z-index: 1; max-width: 1080px; }
.termin-page .back-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--carbon-70); font-weight: 600; margin-bottom: clamp(1.4rem, 1rem + 2vw, 2.4rem); }
.termin-page .back-link:hover { color: var(--rosewood); }
.termin-intro { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 1.4rem + 2.5vw, 3.2rem); }
.termin-intro .eyebrow { justify-content: center; }
.termin-intro h1 { font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.1rem); margin: 0.6rem 0 0.7rem; }
/* Umbuchen: Zusammenfassung + Bestätigen untereinander statt nebeneinander */
.termin-page .booking--form .booking__contact { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
.termin-intro .lead { color: var(--carbon-70); margin-inline: auto; }

.termin-floaters { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.tf-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.42; will-change: transform; }
.tf-blob--1 { width: 420px; height: 420px; left: -150px; top: 4%; background: radial-gradient(circle, rgba(236, 106, 137, 0.5), transparent 70%); animation: bfloat1 22s ease-in-out infinite; }
.tf-blob--2 { width: 460px; height: 460px; right: -170px; bottom: -80px; background: radial-gradient(circle, rgba(140, 2, 53, 0.4), transparent 70%); animation: bfloat2 26s ease-in-out infinite; }
.tf { position: absolute; color: var(--rosewood); opacity: 0.12; will-change: transform; }
.tf svg { width: 100%; height: 100%; display: block; }
.tf--1 { width: 56px; height: 56px; left: 4%;   top: 16%;   animation: bfloat1 19s ease-in-out infinite; }
.tf--2 { width: 44px; height: 44px; left: 9%;   bottom: 14%; animation: bfloat3 24s ease-in-out infinite; }
.tf--3 { width: 50px; height: 50px; left: 2.5%; top: 52%;   animation: bfloat2 27s ease-in-out infinite; }
.tf--4 { width: 40px; height: 40px; right: 5%;  top: 14%;   animation: bfloat2 21s ease-in-out infinite reverse; }
.tf--5 { width: 34px; height: 34px; right: 9%;  top: 46%;   animation: bfloat1 25s ease-in-out infinite; }
.tf--6 { width: 52px; height: 52px; right: 3%;  bottom: 12%; animation: bfloat3 18s ease-in-out infinite; }
.tf--7 { width: 38px; height: 38px; left: 46%;  top: 5%;    animation: bfloat1 23s ease-in-out infinite reverse; }
@media (prefers-reduced-motion: reduce) { .tf, .tf-blob { animation: none; } }
@media (max-width: 760px) { .tf--3, .tf--5, .tf--7 { display: none; } .tf { opacity: 0.1; } }

/* Booking-Panel auf der Seite (weiß, schwebt über dem Icon-Hintergrund) + größerer Kalender */
/* /termin: großer Kalender (~20×18cm), kein Panel-Hintergrund, mit Schatten abgehoben */
.termin-booking { width: fit-content; max-width: 100%; margin: 0 auto; background: transparent; box-shadow: none; padding: 0; }
.termin-booking .booking__deck { width: min(20cm, 92vw); --bk-dw: clamp(230px, 22vw, 300px); --bk-ov: 26px; }
.termin-booking .booking__cal { box-shadow: 0 46px 90px -34px rgba(25, 24, 22, 0.55); padding: clamp(1rem, 0.6rem + 1vw, 1.6rem); }
.termin-booking .booking__cal-grid { gap: clamp(0.15rem, 0.4vw, 0.4rem); }
.termin-booking .booking__cal-cell { font-size: clamp(0.92rem, 0.7rem + 0.5vw, 1.1rem); border-radius: 10px; }
.termin-booking .booking__cal-month { font-size: 1.15rem; }
.termin-booking .booking__steplabel { font-size: 1rem; }
.termin-booking .booking__slot { min-height: 54px; }
.termin-booking .booking__slot-face { font-size: 0.98rem; }

.termin-trust { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.6rem; margin: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem) 0 0; padding: 0; }
.termin-trust li { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.9rem; font-weight: 600; color: var(--carbon-70); }
.termin-trust li span { color: var(--rosewood); }
.termin-direct { text-align: center; margin-top: 1.1rem; font-size: 0.9rem; color: var(--carbon-55); }
.termin-direct a { color: var(--rosewood); text-decoration: underline; }

/* ---- Danke-Seite ---- */
.danke-card { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; background: #fff; border-radius: 22px; padding: clamp(1.7rem, 1.3rem + 2vw, 2.8rem) clamp(2rem, 1.5rem + 3vw, 3.4rem); text-align: center; box-shadow: 0 44px 90px -50px rgba(25, 24, 22, 0.5); }
.danke-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin: 1.4rem 0 0; text-align: left; }
.danke-grid .danke-remind, .danke-grid .danke-video { margin: 0; }
.danke-check { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; color: #fff; background: linear-gradient(150deg, var(--rose-bright), var(--rosewood)); box-shadow: 0 16px 32px -12px rgba(192, 1, 70, 0.5); margin: 0 auto 1rem; }
.danke-check svg { width: 32px; height: 32px; }
.danke-card .eyebrow { justify-content: center; }
.danke-card h1 { font-size: clamp(1.7rem, 1.3rem + 2vw, 2.4rem); margin: 0.6rem 0 1.2rem; }
.danke-when { background: linear-gradient(160deg, rgba(192, 1, 70, 0.06), rgba(140, 2, 53, 0.03)); border: 1px solid rgba(192, 1, 70, 0.18); border-radius: 14px; padding: 1.1rem 1.2rem; margin-bottom: 1.1rem; }
.danke-when__label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rosewood); margin-bottom: 0.35rem; }
.danke-when__date { display: block; font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.15rem, 1rem + 0.8vw, 1.5rem); color: var(--carbon); }
.danke-lead { color: var(--carbon-70); margin-bottom: 1.2rem; }
.danke-greet { color: var(--carbon-70); font-size: var(--fs-lead); margin: 0.2rem 0 1.1rem; }
.danke-greet strong { color: var(--carbon); }
.danke-remind { display: flex; align-items: center; gap: 0.7rem; text-align: left; background: var(--parchment); border-radius: 12px; padding: 0.9rem 1.1rem; margin-bottom: 1.5rem; font-size: 0.92rem; color: var(--carbon-70); }
.danke-remind__ic { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; color: var(--rosewood); background: rgba(192, 1, 70, 0.1); }
.danke-remind__ic svg { width: 19px; height: 19px; }
.danke-remind strong { color: var(--carbon); }
.danke-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
.danke-actions .btn { flex: 1 1 auto; min-width: 200px; justify-content: center; }
/* Danke-Seite: horizontalen Überlauf hart verhindern */
.termin-page, .danke-page { overflow-x: clip; }
/* Mobil: Karte luftiger statt gequetscht, Buttons untereinander volle Breite */
@media (max-width: 560px) {
  .termin-hero { padding: 1.4rem 0 2.4rem; }
  .danke-card { padding: 1.6rem 1.25rem; border-radius: 18px; }
  .danke-card h1 { font-size: 1.55rem; margin: 0.5rem 0 0.9rem; }
  .danke-greet { font-size: 1.02rem; margin-bottom: 0.9rem; }
  .danke-when { padding: 0.95rem 1rem; }
  .danke-actions { flex-direction: column; gap: 0.6rem; }
  .danke-actions .btn { flex: none; width: 100%; min-width: 0; }
  .danke-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .danke-card, .danke-greet, .danke-lead, .danke-when, .danke-when__date { min-width: 0; overflow-wrap: anywhere; }
}
.danke-hint { margin-top: 0.9rem; font-size: 0.85rem; color: var(--carbon-55); }
.danke-back { display: inline-flex; margin: 1.6rem auto 0; }
.umbuchen-confirm { font-size: 0.9rem; color: var(--carbon-70); margin-bottom: 1rem; }

/* ===== /termin — Calendly-artiges Layout (kein Header/Footer, Foto + Headline links) ===== */
.cal-page { position: relative; overflow: hidden; min-height: 100vh; display: grid; place-items: center; padding: clamp(2.6rem, 2rem + 3vw, 4rem) clamp(1rem, 0.5rem + 2vw, 2.5rem); background: linear-gradient(160deg, var(--parchment), #fbfaf8 60%); }
.cal-back { position: absolute; top: clamp(1rem, 0.6rem + 1vw, 1.7rem); left: clamp(1rem, 0.6rem + 1vw, 1.7rem); z-index: 3; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--carbon-70); }
.cal-back:hover { color: var(--rosewood); }
.cal-stage { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: center; gap: clamp(2rem, 1rem + 4vw, 5rem); width: 100%; max-width: 1140px; }
.cal-aside { flex: 0 0 clamp(290px, 27vw, 392px); }
.cal-id { display: flex; align-items: center; gap: 0.95rem; margin-bottom: 1.15rem; }
.cal-id-txt { display: grid; gap: 0.12rem; }
.cal-name { font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem; color: var(--carbon); line-height: 1.12; }
.cal-firma { font-style: italic; font-weight: 400; font-size: 1.02rem; color: var(--carbon-70); }
.cal-avatar { margin: 0; flex: none; width: 84px; height: 84px; border-radius: 50%; overflow: hidden; border: 4px solid #fff; box-shadow: 0 16px 34px -14px rgba(25, 24, 22, 0.4); }
.cal-avatar img, .cal-avatar__ph { display: block; width: 100%; height: 100%; object-fit: cover; }
.cal-avatar__ph { display: grid; place-items: center; background: linear-gradient(160deg, rgba(192, 1, 70, 0.14), rgba(140, 2, 53, 0.06)); color: rgba(192, 1, 70, 0.42); }
.cal-avatar__ph svg { width: 44%; }
.cal-host { font-family: var(--ff-display); font-weight: 600; font-size: 1rem; color: var(--carbon); margin-bottom: 0.9rem; }
.cal-aside .eyebrow { margin-bottom: 0.7rem; }
.cal-aside h1 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.05rem); margin-bottom: 1.3rem; text-wrap: balance; }
.cal-meta { list-style: none; padding: 0; margin: 0 0 1.3rem; display: grid; gap: 0.6rem; }
.cal-meta li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 500; color: var(--carbon-70); }
.cal-meta svg { width: 18px; height: 18px; color: var(--rosewood); flex: none; }
.cal-desc { color: var(--carbon-70); font-size: 0.95rem; max-width: 34ch; }
.cal-stage .termin-booking { margin: 0; }
.cal-stage .termin-booking .booking__deck { width: clamp(320px, 34vw, 470px); --bk-dw: clamp(220px, 20vw, 270px); --bk-ov: 24px; }
@media (max-width: 920px) {
  .cal-page { display: block; overflow-x: clip; }
  .cal-stage { flex-direction: column; align-items: stretch; gap: 1.4rem; max-width: 540px; margin: clamp(1.4rem, 1rem + 2vw, 2.4rem) auto 2rem; }
  .cal-aside { flex: none; width: 100%; max-width: 100%; min-width: 0; text-align: center; }
  .cal-aside h1 { overflow-wrap: anywhere; text-wrap: wrap; font-size: clamp(1.4rem, 1.1rem + 2.2vw, 1.85rem); margin-bottom: 0.9rem; }
  /* Kalender-Deck mobil fluid statt fester 320px-Mindestbreite; min-width:0 erlaubt Schrumpfen */
  .cal-stage .termin-booking, .cal-stage .termin-booking .booking__deck, .cal-stage .booking__cal { width: 100%; max-width: 100%; min-width: 0; }
  /* Bild + Name als kompakte, zentrierte Gruppe — kein Riesen-Abstand */
  .cal-id { justify-content: center; flex-wrap: nowrap; gap: 0.8rem; margin-bottom: 0.9rem; max-width: 100%; }
  .cal-avatar { margin-inline: 0; width: 66px; height: 66px; border-width: 3px; }
  .cal-id-txt { text-align: left; }
  .cal-name { font-size: 1.18rem; }
  .cal-firma { font-size: 0.95rem; }
  .cal-aside .eyebrow { justify-content: center; margin-bottom: 0.55rem; }
  .cal-meta { justify-items: center; margin-bottom: 0.95rem; gap: 0.45rem; }
  .cal-meta li { justify-content: center; }
  .cal-desc { margin-inline: auto; font-size: 0.92rem; }
  /* Beim Tag-Tippen scrollt die Zeit-Auswahl mit etwas Luft an den oberen Rand */
  .booking__drawer { scroll-margin-top: 1.1rem; }
  /* Buchungs-Formular: Flex-/Grid-Kinder dürfen schrumpfen (sonst horizontaler Überlauf, rechts abgeschnitten) */
  .cal-stage .booking, .cal-stage .booking__contact, .cal-stage .booking__apptbox,
  .cal-stage .booking__callout, .cal-stage .booking__callout-txt,
  .cal-stage .booking__summary, .cal-stage .booking__sum-card,
  .cal-stage .cf-step, .cal-stage .cf-head, .cal-stage .cf-body,
  .cal-stage .booking__field, .cal-stage .booking__format,
  .cal-stage .booking__form, .cal-stage form { min-width: 0; max-width: 100%; }
  .cal-stage .booking__callout-txt, .cal-stage .booking__callout-txt strong,
  .cal-stage .booking__callout-txt span { white-space: normal; overflow-wrap: anywhere; min-width: 0; }
  .cal-stage .booking__sum-card { flex-wrap: wrap; gap: 0.35rem 0.7rem; }
  .cal-stage .booking__sum-when { min-width: 0; overflow-wrap: anywhere; }
}

/* ------------------------------------------------------------------ Ablauf */
.steps { display: grid; gap: clamp(1rem, 0.6rem + 1.5vw, 1.5rem); counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
}
.step:first-child { border-top: none; }
.step__num {
  counter-increment: step;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--rosewood);
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step__title { font-size: var(--fs-h3); margin-bottom: 0.3rem; }
.step__body { color: var(--carbon-70); }

/* ====== „So läuft es" als Bildschirm-Szene: Mini-Seite baut sich auf, Screen wächst ====== */
.ablauf-scene { background: var(--parchment); }
@media (min-width: 880px) {
  /* gepinnte Bühne: Screen bleibt voll sichtbar & zentriert, während die Komponenten platziert werden */
  .ablauf-scene { height: 230vh; position: relative; }
  .ablauf-stage {
    position: sticky; top: 0; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 0 clamp(1rem, 4vw, 4rem);
  }
}
@media (max-width: 879px) {
  .ablauf-scene { padding-block: var(--section-y); overflow: hidden; }
  .ablauf-stage { display: flex; justify-content: center; }
}
.screen {
  width: min(100%, 1000px);
  background: var(--paper);
  border: 1px solid rgba(25, 24, 22, 0.08);
  border-radius: 20px;
  box-shadow: 0 44px 90px -42px rgba(25, 24, 22, 0.42);
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;
}
.screen__bar {
  position: relative; display: flex; align-items: center;
  padding: 0.7rem 1.1rem;
  background: linear-gradient(180deg, #ffffff, #f4f2ef);
  border-bottom: 1px solid rgba(25, 24, 22, 0.07);
}
/* roter Punkt links absolut, URL-Pille mittig wie im echten Browser */
.screen__bar-ic { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; border-radius: 5px; background: linear-gradient(135deg, var(--rose-bright), var(--rosewood)); }
.screen__url {
  margin-inline: auto; flex: 0 1 320px; text-align: center;
  font-size: 0.82rem; color: var(--carbon-55);
  background: var(--paper); border: 1px solid rgba(25, 24, 22, 0.08);
  border-radius: 999px; padding: 0.3rem 0.9rem;
}
.screen__page {
  padding: clamp(1.5rem, 1rem + 2.5vw, 2.9rem);
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas: "intro art" "steps steps";
  gap: clamp(1.3rem, 1rem + 2vw, 2.4rem) 2.2rem; align-items: center;
}
.screen__intro { grid-area: intro; }
.screen__art { grid-area: art; display: grid; place-items: center; }
.screen__art svg { width: 100%; max-width: 300px; height: auto; }
.screen__steps { grid-area: steps; position: relative; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
/* Ladebalken direkt unter der URL-Leiste — läuft mit, wenn die Schritte einfliegen (--thread per Scroll) */
.screen__thread {
  position: relative; height: 3px; overflow: hidden;
  background: rgba(192, 1, 70, 0.12);
}
.screen__thread::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--rose-bright), var(--rosewood));
  box-shadow: 0 0 10px 1px rgba(192, 1, 70, 0.5);
  transform: scaleX(var(--thread, 0)); transform-origin: left;
}
.screen__h { font-family: var(--ff-display); font-size: clamp(1.5rem, 1rem + 2.2vw, 2.4rem); line-height: 1.08; letter-spacing: -0.01em; color: var(--carbon); margin: 0.3rem 0 0.7rem; }
.screen__sub { color: var(--carbon-70); font-size: clamp(0.98rem, 0.9rem + 0.4vw, 1.1rem); line-height: 1.5; max-width: 40ch; }
.screen__cta { margin-top: 1.4rem; }
.screen__step {
  display: grid; grid-template-columns: auto 1fr; gap: 0.65rem; align-items: start;
  padding: 0.9rem 1rem; border-radius: 14px;
  background: #fff; border: 1px solid rgba(25, 24, 22, 0.07);
  box-shadow: 0 10px 26px -14px rgba(25, 24, 22, 0.3);
}
.screen__step-n { font-family: var(--ff-display); font-weight: 700; color: var(--rosewood); font-size: 1rem; line-height: 1.2; }
.screen__step strong { display: block; color: var(--carbon); font-size: 0.98rem; margin-bottom: 0.18rem; }
.screen__step span { color: var(--carbon-70); font-size: 0.85rem; line-height: 1.4; }
/* Komponenten fliegen ein */
/* Komponenten werden groß präsentiert und dann an ihren Platz gesetzt (JS-gesteuert, rAF) */
.ac { opacity: 0; transform-origin: center center; will-change: transform, opacity; }
.ac.is-in { opacity: 1; transform: none; }
@media (max-width: 820px) {
  .screen__page { grid-template-columns: 1fr; grid-template-areas: "intro" "art" "steps"; }
  .screen__art { max-width: 240px; margin-inline: auto; }
  .screen__steps { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ac { opacity: 1; transform: none; transition: none; }
  .screen { transform: none !important; }
}

/* ------------------------------------------------------- Offer-Sektionen */
.prose { max-width: 58ch; font-size: var(--fs-lead); line-height: 1.6; color: var(--carbon-70); }
.section-head--center + .prose { margin-inline: auto; }
.prose p + p { margin-top: 1rem; }
.prose em { font-style: normal; color: var(--rosewood); font-weight: 600; }
.prose--dark { color: var(--parch-dim); }
.prose--dark .prose__highlight { color: var(--paper); }
.prose__highlight { font-family: var(--ff-display); font-size: 1.15em; font-weight: 600; color: var(--carbon); margin-top: 1.2rem !important; }

/* ---------- Das Angebot: Zweispalter (Steps + „Der Deal"-Karte) ---------- */
.offer { display: grid; grid-template-columns: 1fr; gap: clamp(2.2rem, 1.5rem + 3vw, 3.6rem); align-items: start; }
@media (min-width: 880px) {
  .offer { grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 1rem + 5vw, 4.5rem); align-items: center; }
  .offer-step { min-height: 7.5rem; }   /* gleichmäßiger Abstand der Nummern */
}

.offer-steps { list-style: none; position: relative; margin: 2.3rem 0 0; padding: 0; }
.offer-step {
  position: relative;
  display: grid; grid-template-columns: 2.8rem 1fr; column-gap: 1.1rem; row-gap: 0.2rem;
  padding: 1.1rem 0 1.3rem;
  transition: transform 0.3s var(--ease);
}
/* Rail-Segment je Schritt (Track + Verlauf) — zeichnet sich beim Reveal, robust bei jeder Höhe */
.offer-step::before,
.offer-step::after {
  content: ""; position: absolute; left: calc(1.4rem - 1.5px); top: 2.5rem; width: 3px; border-radius: 3px;
}
.offer-step:last-child::before, .offer-step:last-child::after { display: none; }
.offer-step::before { height: 100%; background: rgba(25, 24, 22, 0.1); }
/* Rote Progressbar — läuft beim Reveal mit leuchtendem Kopf die Linie entlang */
.offer-step::after {
  height: 0;
  background: linear-gradient(var(--rosewood), var(--amaranth));
  box-shadow: 0 1px 10px 1px rgba(192, 1, 70, 0.6);
  transition: height 0.6s var(--ease);
}
.offer-step.is-visible::after { height: 100%; }
.offer-step[data-delay="1"]::after { transition-delay: 0.5s; }
.offer-step[data-delay="2"]::after { transition-delay: 1s; }
.offer-step__num {
  grid-row: 1 / span 2; align-self: start; justify-self: start;
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  display: grid; place-items: center; position: relative; z-index: 1;
  background: var(--parchment);              /* maskiert die Rail dahinter */
  border: 1.5px solid rgba(192, 1, 70, 0.34);
  font-family: var(--ff-display); font-weight: 700; font-size: 0.96rem;
  color: var(--rosewood); font-variant-numeric: tabular-nums;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
/* Zahl ploppt auf, sobald die Progressbar sie erreicht */
.offer-step.is-visible .offer-step__num { animation: numArrive 0.55s var(--ease) both; }
.offer-step[data-delay="1"].is-visible .offer-step__num { animation-delay: 0.5s; }
.offer-step[data-delay="2"].is-visible .offer-step__num { animation-delay: 1s; }
@keyframes numArrive {
  0%   { transform: scale(0.8); border-color: rgba(192, 1, 70, 0.34); background: var(--parchment); }
  55%  { transform: scale(1.14); border-color: var(--rosewood); background: var(--rose-tint); box-shadow: 0 0 0 5px rgba(192, 1, 70, 0.1); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(192, 1, 70, 0); }
}
.offer-step__title { font-size: 1.2rem; font-weight: 600; color: var(--carbon); line-height: 1.25; }
.offer-step__desc { color: var(--carbon-70); line-height: 1.55; }
.offer-step:hover { transform: translateX(5px); }
.offer-step:hover .offer-step__num { border-color: var(--rosewood); background: var(--rose-tint); transform: scale(1.06); }

/* „Der Deal"-Karte */
.offer-deal {
  background: var(--paper); border: 1px solid rgba(25, 24, 22, 0.06); border-radius: 22px;
  padding: clamp(1.7rem, 1.2rem + 2vw, 2.5rem);
  box-shadow: 0 26px 60px -30px rgba(25, 24, 22, 0.34);
  transition: transform 0.2s var(--ease), box-shadow 0.4s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.offer-deal:hover { transform: translateY(-5px); box-shadow: 0 34px 74px -30px rgba(25, 24, 22, 0.42); }
.offer-deal__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--carbon-55); }
.offer-deal__stat { display: flex; align-items: baseline; gap: 0.8rem; margin-top: 1.3rem; transform: translateZ(26px); }
.offer-deal__label { transform: translateZ(14px); }
.offer-deal__num {
  font-family: var(--ff-display); font-weight: 700; line-height: 0.82;
  font-size: clamp(3.2rem, 2.2rem + 4.5vw, 4.4rem);
  color: var(--carbon); font-variant-numeric: tabular-nums;
}
.offer-deal__num--accent { color: var(--rosewood); }
.offer-deal__unit { font-size: 1.02rem; color: var(--carbon-70); line-height: 1.18; }
.offer-deal__fine { margin-top: 1.5rem; color: var(--carbon-70); font-size: 0.95rem; line-height: 1.6; }
.offer-deal__cta { margin-top: 1.7rem; width: 100%; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  .offer-step::after { height: 100%; transition: none; }
  .offer-step.is-visible .offer-step__num { animation: none; }
  .offer-step, .offer-step__num, .offer-deal { transition: none; }
}

/* Summen-Stil (genutzt im einschiebenden Rechner .calc) */
.summary__eyebrow { font-size: var(--fs-eyebrow); letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-bright); font-weight: 600; }
.summary__price { font-family: var(--ff-display); font-size: clamp(2.5rem, 1.8rem + 3vw, 3.4rem); color: var(--paper); line-height: 1.05; margin: 0.5rem 0 0.1rem; }
.summary__price-sub { font-size: var(--fs-small); color: var(--parch-dimmer); }
.summary__retainer {
  margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--on-dark-line);
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
}
.summary__retainer-val { font-family: var(--ff-display); font-size: 1.5rem; color: var(--paper); white-space: nowrap; }
.summary__lines { margin-top: 1.2rem; display: grid; gap: 0.55rem; font-size: 0.92rem; }
.summary__line { display: flex; justify-content: space-between; gap: 1rem; color: var(--parch-dim); }
.summary__line span:last-child { color: var(--paper); white-space: nowrap; }
.summary__line--muted { color: var(--parch-dimmer); }
.summary__lines .summary__line:last-child { margin-top: 0.3rem; padding-top: 0.6rem; border-top: 1px solid var(--on-dark-line-strong); font-weight: 600; }
.summary__lines .summary__line:last-child span { color: var(--paper); }
.summary__disclaimer {
  margin-top: 1.3rem; padding: 0.9rem 1rem;
  background: rgba(240,239,237,0.06); border: 1px solid var(--on-dark-line);
  border-radius: var(--r-md); font-size: 0.82rem; color: var(--parch-dim); line-height: 1.5;
}
.summary__cta { margin-top: 1.3rem; }

/* Anfrage-Formular */
.konfig-form { margin-top: 1.5rem; display: grid; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field .req { color: var(--rosewood); }
.field input, .field textarea, .field select {
  font: inherit;
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--carbon);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--carbon-55); }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible {
  outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px var(--rose-tint);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; gap: 1rem; }
.consent {
  display: flex; gap: 0.7rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--carbon-70); line-height: 1.5;
}
.consent input { width: 20px; height: 20px; margin-top: 0.15rem; flex: none; accent-color: var(--rosewood); }
.form-hint { font-size: 0.82rem; color: var(--carbon-55); }
.form-status { font-size: 0.92rem; font-weight: 500; min-height: 1.2em; }
.form-status[data-state="error"] { color: var(--error); }
.form-status[data-state="success"] { color: var(--amaranth); }

/* honeypot */
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------------- Warum */
.warum__grid { display: grid; gap: clamp(1.25rem, 0.8rem + 2vw, 2rem); }
.warum-point { padding: 1.4rem 0; border-top: 1px solid var(--on-dark-line); }
.warum-point:first-child { border-top: none; }
.warum-point__title { color: var(--paper); font-size: var(--fs-h3); margin-bottom: 0.4rem; display: flex; align-items: baseline; gap: 0.7rem; }
.warum-point__idx { font-size: 0.85rem; color: var(--rose-bright); font-family: var(--ff-body); font-weight: 600; }
.warum-point__body { color: var(--parch-dim); }

/* --------------------------------------------------------------------- FAQ */
.faq { display: grid; gap: 0.75rem; max-width: var(--container-narrow); }
.faq__item { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); overflow: hidden; }
.faq__item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq__q {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-weight: 600; font-size: 1.05rem; color: var(--carbon);
  cursor: pointer;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--rosewood); border-radius: 2px; }
.faq__icon::before { top: 10px; left: 2px; width: 18px; height: 2px; }
.faq__icon::after { left: 10px; top: 2px; width: 2px; height: 18px; transition: transform 0.25s var(--ease); }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); }
.faq__a { padding: 0 1.3rem 1.3rem; color: var(--carbon-70); }
.faq__a p + p { margin-top: 0.7rem; }

/* ------------------------------------------------------------------ Kontakt */
.kontakt__card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--rose-bright) -18%, var(--rosewood) 42%, var(--amaranth) 112%);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(2.6rem, 1.6rem + 4vw, 4.5rem);
  text-align: center;
  box-shadow: 0 40px 90px -42px rgba(192, 1, 70, 0.6);
}
.kontakt__card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 75% at 50% -14%, rgba(255, 255, 255, 0.22), transparent 56%);
}
.kontakt__glow { position: absolute; right: -70px; bottom: -90px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%); pointer-events: none; }
.kontakt__card > *:not(.kontakt__glow) { position: relative; z-index: 1; }
.kontakt__card .eyebrow { justify-content: center; }
.kontakt__h2 { color: var(--paper); margin-bottom: 0.8rem; }
.kontakt__body { color: var(--parchment); max-width: 52ch; margin: 0 auto 1.8rem; font-size: var(--fs-lead); }
.kontakt__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.kontakt__note { margin-top: 1.1rem; font-size: 0.86rem; letter-spacing: 0.01em; color: rgba(240, 239, 237, 0.7); }
.kontakt__direct { margin-top: 1.6rem; font-size: 0.95rem; color: var(--parchment); display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 0.9rem; justify-content: center; }
.kontakt__direct > span[aria-hidden] { color: rgba(240, 239, 237, 0.45); }
.kontakt__direct a { color: var(--paper); font-weight: 600; }
.kontakt__direct a:hover { color: var(--parchment); text-decoration: underline; }

/* ------------------------------------------------------------------ Footer */
.site-footer { background: var(--carbon); color: var(--parch-dim); padding-block: clamp(2.5rem, 2rem + 2vw, 4rem) 2rem; }
.footer-top { display: grid; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--on-dark-line); }
.footer-brand { display: flex; flex-direction: column; gap: 0.8rem; max-width: 38ch; }
.footer-tagline { color: var(--parch-dimmer); font-size: 0.96rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col h3 { color: var(--paper); font-family: var(--ff-body); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.9rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: var(--parch-dim); text-decoration: none; font-size: 0.96rem; }
.footer-col a:hover { color: var(--rose-bright); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  align-items: center; justify-content: space-between;
  padding-top: 1.8rem; font-size: 0.85rem; color: var(--parch-dimmer);
}
.footer-bottom a { color: var(--parch-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--rose-bright); }

/* ------------------------------------------------------------------ Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ------------------------------------------------------------- Breakpoints */
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 760px) {
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 880px) {
  .nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .footer-top { grid-template-columns: 1.2fr 1.6fr; }
  .warum__grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .warum-point { border-top: none; border-left: 1px solid var(--on-dark-line); padding: 0 1.6rem; }
  .warum-point:first-child { padding-left: 0; border-left: none; }
}
@media (min-width: 1024px) {
  .ref-grid--2 { grid-template-columns: 1fr 1fr; }
}

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

/* ------------------------------------------------------------------- Print */
@media print {
  .site-header, .nav-toggle, .mobile-nav, .hero__actions, .calc__cta, .floaters, .kontakt__actions { display: none !important; }
  body { background: #fff; color: #000; }
  .section--ink, .kontakt__card, .calc { background: #fff !important; color: #000 !important; }
}

/* -------------------------------------------------- Legal pages (Impressum/DS) */
.legal-page { padding-top: calc(var(--header-h) + clamp(2rem, 1.5rem + 3vw, 4rem)); padding-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.legal-page .container { max-width: var(--container-narrow); }
.legal-page h1 { font-size: var(--fs-h1); margin-bottom: 0.5rem; }
.legal-page h2 { font-size: var(--fs-h3); margin-top: 2.2rem; margin-bottom: 0.6rem; }
.legal-page h3 { font-size: 1.1rem; margin-top: 1.4rem; margin-bottom: 0.4rem; }
.legal-page p, .legal-page li { color: var(--carbon-70); }
.legal-page p + p { margin-top: 0.8rem; }
.legal-page ul { list-style: disc; padding-left: 1.3rem; margin: 0.6rem 0; display: grid; gap: 0.35rem; }
.legal-page .back-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.5rem; font-weight: 600; text-decoration: none; }
.legal-page .updated { margin-top: 2.5rem; font-size: 0.85rem; color: var(--carbon-55); }
.placeholder { background: var(--rose-tint); border-bottom: 1px dashed var(--rosewood); padding: 0 0.2em; border-radius: 2px; }

/* ==========================================================================
   Flow: Konfigurator (Icon-Auswahl) → Rechner → Termin (Calendly) → Kontakt
   ========================================================================== */
.flow { position: relative; isolation: isolate; }

/* --- Schwebende Hintergrund-Icons (dekorativ) --- */
.floaters { position: absolute; inset: -2rem 0; overflow: hidden; pointer-events: none; z-index: 0; }
.floaters .fl { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.30; will-change: transform; }
.floaters .b1 { width: 360px; height: 360px; left: -120px; top: 4%; background: radial-gradient(circle, var(--rosewood), transparent 70%); animation: bfloat1 22s ease-in-out infinite; }
.floaters .b2 { width: 400px; height: 400px; right: -150px; bottom: -60px; background: radial-gradient(circle, var(--amaranth), transparent 70%); animation: bfloat2 26s ease-in-out infinite; }
.floaters .fi { position: absolute; color: var(--rosewood); opacity: 0.10; will-change: transform; }
.floaters .fi svg { width: 100%; height: 100%; }
.floaters .i1 { width: 54px; height: 54px; left: 4%;  top: 12%;   animation: bfloat1 19s ease-in-out infinite; }
.floaters .i2 { width: 40px; height: 40px; left: 9%;  bottom: 14%; animation: bfloat3 23s ease-in-out infinite; }
.floaters .i3 { width: 58px; height: 58px; left: 2.5%; top: 50%;  animation: bfloat2 27s ease-in-out infinite; }
.floaters .i4 { width: 48px; height: 48px; right: 5%; top: 16%;   animation: bfloat2 21s ease-in-out infinite; }
.floaters .i5 { width: 44px; height: 44px; right: 9%; bottom: 20%; animation: bfloat1 25s ease-in-out infinite reverse; }
.floaters .i6 { width: 56px; height: 56px; right: 3%; top: 54%;   animation: bfloat3 18s ease-in-out infinite; }
@keyframes bfloat1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(38px,-32px); } }
@keyframes bfloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-32px,38px) scale(1.08); } }
@keyframes bfloat3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(28px,-42px); } }

.flow-form { position: relative; z-index: 1; }

/* --- Fortschritt --- */
.wsteps { display: flex; align-items: center; gap: 0.5rem; max-width: 520px; margin: 0 auto 2.2rem; padding: 0; }
.wseg { display: flex; align-items: center; gap: 0.55rem; flex: 1; color: var(--carbon-55); font-size: 0.9rem; font-weight: 600; }
.wseg::after { content: ""; flex: 1; height: 2px; background: var(--line-strong); border-radius: 2px; }
.wseg:last-child { flex: 0 0 auto; }
.wseg:last-child::after { display: none; }
.wseg__dot {
  width: 28px; height: 28px; flex: none; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.85rem;
  background: var(--paper); border: 2px solid var(--line-strong); color: var(--carbon-55);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.wseg__label { white-space: nowrap; }
.wseg.is-active .wseg__dot, .wseg.is-done .wseg__dot { background: var(--rosewood); border-color: var(--rosewood); color: var(--paper); }
.wseg.is-active, .wseg.is-done { color: var(--carbon); }
.wseg.is-done::after { background: var(--rosewood); }
@media (max-width: 560px) { .wseg__label { display: none; } .wseg { flex: 1; } }

/* --- Schritte --- */
.flow-step { animation: rise 0.45s cubic-bezier(0.2,0.7,0.2,1) both; }
.flow-step[hidden] { display: none; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.flow-q { font-family: var(--ff-display); font-size: var(--fs-h3); font-weight: 500; }
.flow-hint { font-size: var(--fs-small); color: var(--carbon-55); margin: 0.3rem 0 1.2rem; max-width: 56ch; }
.fset { border: 0; padding: 0; margin: 0 0 2rem; min-width: 0; }
.fset .flow-q { margin-bottom: 0.2rem; }

.flow-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.8rem; }
.flow-nav--submit { flex-wrap: wrap; }

/* --- Konfigurator-Layout: Auswahl + einschiebender Rechner --- */
.config-layout { display: grid; gap: clamp(1.25rem, 0.8rem + 2vw, 2.25rem); align-items: start; }

/* --- Icon-Auswahlkacheln --- */
.choices-grid { display: grid; gap: 0.75rem; }
.choice-card {
  position: relative; display: flex; align-items: center; gap: 0.9rem;
  padding: 0.95rem 1.05rem;
  background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.choice-card:hover { border-color: var(--rosewood); transform: translateY(-1px); }
.cc-input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.cc-ic {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--rose-tint); color: var(--amaranth);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.cc-ic svg { width: 23px; height: 23px; }
.cc-body { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.cc-title { font-weight: 600; }
.cc-desc { font-size: var(--fs-small); color: var(--carbon-55); }
.cc-price { margin-left: auto; font-weight: 600; color: var(--amaranth); white-space: nowrap; font-size: 0.95rem; }
.cc-check {
  width: 22px; height: 22px; flex: none; margin-left: 0.2rem;
  border: 2px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center; color: var(--paper);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.choices-grid--multi .cc-check { border-radius: 7px; }
.cc-check svg { width: 13px; height: 13px; opacity: 0; transform: scale(0.5); transition: opacity 0.15s var(--ease), transform 0.15s var(--ease); }
.cc-input:checked ~ .cc-check { background: var(--rosewood); border-color: var(--rosewood); }
.cc-input:checked ~ .cc-check svg { opacity: 1; transform: scale(1); }
.choice-card:has(.cc-input:checked) { border-color: var(--rosewood); background: var(--rose-tint); box-shadow: inset 0 0 0 1px var(--rosewood); }
.choice-card:has(.cc-input:checked) .cc-ic { background: var(--rosewood); color: var(--paper); }
.cc-input:focus-visible ~ .cc-check { outline: 3px solid var(--rosewood); outline-offset: 3px; }
@media (min-width: 620px) { .choices-grid--multi { grid-template-columns: 1fr 1fr; } }

/* --- Einschiebender Rechner --- */
.calc {
  position: sticky; top: calc(var(--header-h) + 16px);
  background: var(--carbon); color: var(--parch-dim);
  border-radius: var(--r-xl); padding: clamp(1.4rem, 1rem + 1.5vw, 2rem);
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.calc[data-state="active"] { opacity: 1; transform: none; }
.calc__cta { margin-top: 1.3rem; }

@media (min-width: 880px) {
  .config-layout { grid-template-columns: 1.4fr 0.9fr; }
  .calc { transform: translateX(24px); }
  .calc[data-state="active"] { transform: none; }
}

/* --- Kalender (Calendly-Stil) --- */
.cal { display: grid; gap: clamp(1.25rem, 0.8rem + 2vw, 2rem); align-items: start; }
@media (min-width: 720px) { .cal.has-slots { grid-template-columns: 1.3fr 0.9fr; } }
.cal-calendar {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.1rem, 0.8rem + 1vw, 1.6rem);
  box-shadow: var(--shadow-sm); max-width: 460px;
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.cal-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500; color: var(--carbon); }
.cal-nav {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--paper); color: var(--carbon);
  display: grid; place-items: center;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.cal-nav svg { width: 18px; height: 18px; }
.cal-nav:hover:not(:disabled) { border-color: var(--rosewood); color: var(--rosewood); }
.cal-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.cal-weekdays, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekdays { margin-bottom: 0.5rem; }
.cal-weekdays span { text-align: center; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--carbon-55); }
.cal-day {
  aspect-ratio: 1; border: none; background: transparent; border-radius: 50%;
  font: inherit; font-size: 0.95rem; font-weight: 500; color: var(--carbon);
  display: grid; place-items: center; position: relative;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}
.cal-day.is-empty { visibility: hidden; }
.cal-day.is-disabled { color: var(--line-strong); cursor: not-allowed; }
.cal-day.is-available { background: var(--rose-tint); color: var(--amaranth); font-weight: 600; cursor: pointer; }
.cal-day.is-available:hover { background: #f3d6df; transform: scale(1.05); }
.cal-day.is-today::after { content: ""; position: absolute; bottom: 6px; width: 4px; height: 4px; border-radius: 50%; background: var(--rosewood); }
.cal-day.is-selected { background: var(--rosewood); color: var(--paper); }
.cal-day.is-selected.is-today::after { background: var(--paper); }
.cal-tz { margin-top: 1rem; display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: var(--carbon-55); }
.cal-tz svg { width: 16px; height: 16px; flex: none; }

.cal-slots { animation: rise 0.4s var(--ease) both; }
.cal-slots__day { font-weight: 600; margin-bottom: 0.8rem; color: var(--carbon); }
.cal-slots__list { display: grid; gap: 0.6rem; max-height: 320px; overflow-y: auto; padding-right: 2px; }
@media (min-width: 720px) { .cal-slots__list { grid-template-columns: 1fr 1fr; } }
.cal-slot {
  padding: 0.8rem 1rem; border: 1.5px solid var(--rosewood); border-radius: var(--r-sm);
  background: var(--paper); color: var(--rosewood); font-weight: 600; text-align: center;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}
.cal-slot:hover { background: var(--rose-tint); }
.cal-slot.is-selected { background: var(--rosewood); color: var(--paper); }

/* --- Buchungs-Zusammenfassung (Kontaktschritt) --- */
.booking-recap {
  display: grid; gap: 0.5rem; margin-bottom: 1.5rem;
  background: var(--rose-tint); border: 1px solid var(--line-strong);
  border-radius: var(--r-md); padding: 1rem 1.2rem;
}
.booking-recap__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; font-size: 0.95rem; }
.booking-recap__row span:first-child { color: var(--carbon-55); }
.booking-recap__row span:last-child { font-weight: 600; color: var(--carbon); text-align: right; }

/* --- Bestätigung --- */
.flow-done { text-align: center; max-width: 48ch; margin: 1rem auto; }
.flow-done__ic {
  display: inline-grid; place-items: center; width: 64px; height: 64px;
  border-radius: 50%; background: var(--rosewood); color: var(--paper); margin-bottom: 1.2rem;
}
.flow-done__ic svg { width: 30px; height: 30px; }
.flow-done .flow-q { margin-bottom: 0.5rem; }
.flow-done .btn { margin-top: 1.5rem; }

@media (prefers-reduced-motion: reduce) {
  .floaters .fl, .floaters .fi { animation: none; }
  .flow-step, .cal-slots { animation: none; }
  .calc { opacity: 1; transform: none; transition: none; }
  .brand__flip { transition: none; }
}

/* Mobil: kein Kartendeck — 6 gleich große Pillen im Raster */
@media (max-width: 620px) {
  .floaters .fi { display: none; }
  /* Mobil: kleine Pillen schweben VOR dem Bild (oben/unten/links/rechts) */
  .hero__berufe { position: absolute; inset: 0; left: 0; top: 0; width: 100%; height: 100%; max-width: none; margin: 0; padding: 0; z-index: 20; }
  .hero__berufe li {
    position: absolute; left: auto; top: auto; right: auto; bottom: auto;
    font-size: 0.66rem; font-weight: 600; padding: 0.28rem 0.65rem;
    opacity: 0.97; box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    animation: floatPill 6s ease-in-out infinite;
  }
  .hero__berufe li:nth-child(1) { top: 5%;     left: -3%;  animation-delay: 0s; }
  .hero__berufe li:nth-child(2) { top: 1%;     right: 1%;  animation-delay: -1.2s; }
  .hero__berufe li:nth-child(3) { top: 39%;    left: -8%;  animation-delay: -2.4s; }
  .hero__berufe li:nth-child(4) { top: 51%;    right: -7%; animation-delay: -3.6s; }
  .hero__berufe li:nth-child(5) { bottom: 22%; left: -2%;  animation-delay: -1.8s; }
  .hero__berufe li:nth-child(6) { bottom: 1%;  left: 26%;  animation-delay: -3s; }
  .hero__berufe li:nth-child(7) { bottom: 9%;  right: -4%; animation-delay: -0.6s; }
  @keyframes floatPill { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
}

/* ===== Cookie-Consent (Hebentanz-Stil: Tab-Modal, Wiederöffnen via Footer-Link) ===== */
.cookie-link { display: inline-flex; align-items: center; gap: 0.3rem; vertical-align: middle; }
.cookie-link svg { width: 15px; height: 15px; flex: none; }

.cookie-overlay { position: fixed; inset: 0; z-index: 1001; background: rgba(25, 24, 22, 0.5); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px); display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-overlay.show { display: flex; animation: ccFade 0.25s var(--ease) both; }
@keyframes ccFade { from { opacity: 0; } to { opacity: 1; } }

.cookie-box { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); max-width: 560px; width: 100%; max-height: 88vh; max-height: 88dvh; overflow: hidden; display: flex; flex-direction: column; animation: ccRise 0.3s var(--ease) both; }
@keyframes ccRise { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }

.cookie-head { padding: 24px 26px 0; flex: none; }
.cookie-head h3 { font-family: var(--ff-display); font-weight: 600; font-size: 1.25rem; color: var(--carbon); }
.cookie-tabs { display: flex; gap: 2px; margin-top: 16px; border-bottom: 1px solid var(--line); }
.ctab { appearance: none; background: none; border: none; font-family: var(--ff-body); font-weight: 600; font-size: 0.9rem; color: var(--carbon-55); padding: 10px 14px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.15s var(--ease), border-color 0.15s var(--ease); }
.ctab:hover { color: var(--carbon); }
.ctab.active { color: var(--rosewood); border-bottom-color: var(--rosewood); }

.cookie-body { flex: 1; overflow-y: auto; padding: 18px 26px; }
.cookie-body p { font-size: 0.9rem; line-height: 1.6; color: var(--carbon-70); margin: 0; }
.cookie-body p + p { margin-top: 12px; }
.cookie-body a { color: var(--rosewood); text-decoration: underline; }
.cpane[hidden] { display: none; }

.cookie-cats { display: grid; gap: 10px; }
.cookie-cat { border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.cookie-cat .meta { flex: 1; }
.cookie-cat b { font-size: 0.9rem; color: var(--carbon); }
.cookie-cat .meta > span { font-size: 0.8rem; color: var(--carbon-70); display: block; margin-top: 3px; }

.cookie-cat .switch { position: relative; display: inline-block; width: 48px; height: 28px; flex: none; margin-top: 2px; }
.cookie-cat .switch input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; margin: 0; cursor: pointer; z-index: 2; }
.cookie-cat .switch .sl { position: absolute; inset: 0; background: var(--line-strong); border-radius: 999px; transition: background 0.22s var(--ease); }
.cookie-cat .switch .sl::before { content: ""; position: absolute; top: 50%; left: 0; transform: translate(3px, -50%); width: 22px; height: 22px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(25, 24, 22, 0.3); transition: transform 0.22s var(--ease); }
.cookie-cat .switch input:checked + .sl { background: var(--rosewood); }
.cookie-cat .switch input:checked + .sl::before { transform: translate(23px, -50%); }
.cookie-cat .switch input:disabled { cursor: not-allowed; }
.cookie-cat .switch input:disabled + .sl { background: #3f9d6c; }

.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; padding: 16px 26px; border-top: 1px solid var(--line); flex: none; }
.cc-btn { flex: 1; justify-content: center; text-align: center; border-radius: 10px; padding: 12px 16px; font: inherit; font-weight: 600; font-size: 0.9rem; cursor: pointer; border: 1px solid transparent; transition: filter 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease), background 0.15s var(--ease); }
.cc-btn--ghost { background: #fff; border-color: var(--line-strong); color: var(--carbon); }
.cc-btn--ghost:hover { border-color: var(--rosewood); color: var(--rosewood); }
.cc-btn--primary { background: linear-gradient(135deg, var(--rose-bright), var(--rosewood)); color: #fff; }
.cc-btn--primary:hover { filter: brightness(1.05); }

@media (max-width: 520px) { .cookie-actions { flex-direction: column; } }

/* ===== Admin (Tracking-Zentrale) ===== */
.admin-body { background: var(--parchment); color: var(--carbon); }
.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 1.5rem; }
.admin-card { background: #fff; border-radius: 18px; box-shadow: var(--shadow-md); padding: clamp(1.6rem, 1.2rem + 2vw, 2.6rem); width: 100%; max-width: 380px; }
.admin-card h1 { font-size: 1.4rem; margin-bottom: 1.2rem; }
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem clamp(1rem, 0.5rem + 2vw, 2.5rem); background: var(--carbon); color: var(--paper); }
.admin-top strong { font-family: var(--ff-display); }
.admin-top nav a { color: var(--parch-dim); margin-left: 1.2rem; font-size: 0.9rem; }
.admin-top nav a:hover { color: var(--paper); }
.admin-page { max-width: 1000px; margin: 0 auto; padding: clamp(1.5rem, 1rem + 2vw, 3rem) clamp(1rem, 0.5rem + 2vw, 2.5rem); }
.admin-lead { color: var(--carbon-70); max-width: 70ch; margin-bottom: 1.5rem; }
.admin-h2 { font-size: 1.2rem; margin: 2.2rem 0 1rem; }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.admin-pixel, .admin-custom { border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.2rem; background: #fff; transition: border-color 0.2s var(--ease); }
.admin-pixel.is-on, .admin-custom.is-on { border-color: var(--rosewood); }
.admin-custom { margin-bottom: 1rem; }
.admin-pixel__head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem; }
.admin-pixel__head strong { font-size: 0.98rem; }
.admin-inline-cat { margin-left: auto; width: auto; padding: 0.35rem 0.5rem; border: 1px solid var(--line-strong); border-radius: 8px; font: inherit; font-size: 0.85rem; }
.admin-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--carbon); margin-bottom: 0.7rem; }
.admin-label input, .admin-label select, .admin-label textarea { display: block; width: 100%; margin-top: 0.3rem; padding: 0.55rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; font-weight: 400; font-size: 0.92rem; color: var(--carbon); background: #fff; }
.admin-label textarea { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 0.82rem; resize: vertical; }
.admin-label input:focus, .admin-label select:focus, .admin-label textarea:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.12); }
.admin-toggle { position: relative; flex: none; width: 42px; height: 24px; }
.admin-toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.admin-toggle span { position: absolute; inset: 0; border-radius: 999px; background: var(--line-strong); transition: background 0.2s var(--ease); }
.admin-toggle span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); transition: transform 0.2s var(--ease); }
.admin-toggle input:checked + span { background: var(--rosewood); }
.admin-toggle input:checked + span::after { transform: translateX(18px); }
.admin-actions { margin-top: 2rem; }
.admin-note { padding: 0.7rem 1rem; border-radius: 10px; font-size: 0.9rem; margin-bottom: 1rem; }
.admin-note--ok { background: rgba(46, 160, 67, 0.12); color: #2a7d3a; }
.admin-note--err { background: rgba(192, 1, 70, 0.1); color: var(--rosewood); }
.admin-note--warn { background: rgba(240, 180, 0, 0.14); color: #8a6d00; }
.admin-note code { font-family: ui-monospace, monospace; }

/* ===== Admin-Shell (Sidebar-Layout) ===== */
.adm { background: var(--parchment); }
.adm-side { position: fixed; top: 0; left: 0; bottom: 0; width: 248px; background: var(--carbon); color: var(--parch-dim); display: flex; flex-direction: column; z-index: 50; overflow: hidden; transition: width 0.26s var(--ease); }
.adm-brand { padding: 1.3rem 1.4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); display: flex; align-items: center; }
.adm-brand-full { filter: brightness(0) invert(1); height: 28px; width: auto; }
.adm-brand-mark { display: none; height: 26px; width: 26px; }
.adm-nav { flex: 1; overflow-y: auto; padding: 0.8rem 0.7rem; display: flex; flex-direction: column; gap: 0.15rem; }
.adm-group { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.4); padding: 1rem 0.7rem 0.4rem; }
.adm-nav a { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0.7rem; border-radius: 9px; color: var(--parch-dim); font-size: 0.92rem; font-weight: 500; transition: background 0.15s var(--ease), color 0.15s var(--ease); }
.adm-nav a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.adm-nav a.active { background: linear-gradient(135deg, var(--rose-bright), var(--rosewood)); color: #fff; }
.adm-nav .gx-ic { width: 18px; height: 18px; flex: none; }
.adm-side-foot { padding: 0.7rem; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; flex-direction: column; gap: 0.15rem; }
.adm-side-foot a { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0.7rem; border-radius: 9px; color: rgba(255, 255, 255, 0.55); font-size: 0.88rem; }
.adm-side-foot a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.adm-side-foot .gx-ic { width: 17px; height: 17px; }
.adm-main { margin-left: 248px; min-height: 100vh; transition: margin-left 0.26s var(--ease); }
.adm-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem clamp(1rem, 0.5rem + 1.5vw, 2rem); background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.adm-top h1 { font-size: 1.25rem; }
.adm-top-l { display: flex; align-items: center; gap: 0.8rem; }
.adm-collapse { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--carbon-70); transition: background 0.15s var(--ease), color 0.15s var(--ease); }
.adm-collapse:hover { background: var(--parchment); color: var(--carbon); }
.adm-collapse .gx-ic { width: 20px; height: 20px; }
.adm-burger { display: none; }
.adm-user { display: flex; align-items: center; gap: 0.6rem; }
.adm-avatar { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(150deg, var(--rose-bright), var(--rosewood)); color: #fff; font-weight: 700; font-family: var(--ff-display); }
.adm-user-meta b { display: block; font-size: 0.88rem; }
.adm-user-meta i { font-style: normal; font-size: 0.76rem; color: var(--carbon-55); }
.adm-content { padding: clamp(1.2rem, 0.8rem + 1.5vw, 2.2rem); max-width: 1280px; }
.adm-backdrop { display: none; }

/* Lead-Pipeline + Kunden + Tracking + SEO nutzen die volle Breite */
.adm-page-leads .adm-content,
.adm-page-customers .adm-content,
.adm-page-tracking .adm-content,
.adm-page-seo .adm-content { max-width: none; }

/* Sidebar eingeklappt (Desktop): nur Icons sichtbar, Inhalt rückt mit */
@media (min-width: 901px) {
  .adm-collapsed .adm-side { width: 76px; }
  .adm-collapsed .adm-main { margin-left: 76px; }
  .adm-collapsed .adm-brand { justify-content: center; padding-inline: 0; }
  .adm-collapsed .adm-brand-full { display: none; }
  .adm-collapsed .adm-brand-mark { display: block; }
  .adm-collapsed .adm-nav { padding-inline: 0.55rem; }
  .adm-collapsed .adm-nav a { justify-content: center; gap: 0; padding-inline: 0; }
  .adm-collapsed .adm-nav a span,
  .adm-collapsed .adm-side-foot a span,
  .adm-collapsed .adm-user-meta { display: none; }
  .adm-collapsed .adm-group { font-size: 0; letter-spacing: 0; padding: 0; height: 1px; margin: 0.45rem 0.5rem; background: rgba(255, 255, 255, 0.1); }
  .adm-collapsed .adm-side-foot { padding-inline: 0.55rem; }
  .adm-collapsed .adm-side-foot a { justify-content: center; gap: 0; padding-inline: 0; }
}

.stat-strip { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.4rem; }
.ss-item { flex: 1 1 130px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.2rem; }
.ss-n { display: block; font-family: var(--ff-display); font-weight: 700; font-size: 1.7rem; color: var(--carbon); line-height: 1; }
.ss-l { display: block; font-size: 0.82rem; color: var(--carbon-55); margin-top: 0.3rem; }
.board-hint { color: var(--carbon-70); font-size: 0.92rem; margin-bottom: 1.2rem; max-width: 80ch; }
.muted { color: var(--carbon-55); }

.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.dash-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.4rem; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.dash-card:hover { border-color: var(--rosewood); transform: translateY(-2px); }
.dash-card .gx-ic { width: 26px; height: 26px; color: var(--rosewood); }
.dash-card strong { display: block; font-size: 1.05rem; margin: 0.6rem 0 0.3rem; color: var(--carbon); }
.dash-card span { font-size: 0.88rem; color: var(--carbon-70); }

.tbl { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.tbl th, .tbl td { text-align: left; padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); font-size: 0.9rem; vertical-align: top; }
.tbl th { background: var(--parchment); font-weight: 600; font-size: 0.8rem; }
.tbl tr:last-child td { border-bottom: none; }

/* ===== Kanban ===== */
.kanban { display: flex; gap: 1rem; align-items: flex-start; overflow-x: auto; padding-bottom: 1rem; }
.kcol { flex: 0 0 320px; background: rgba(25, 24, 22, 0.03); border: 1px solid var(--line); border-radius: 14px; display: flex; flex-direction: column; height: calc(100vh - 210px); min-height: 440px; }
.kcol.tinted { box-shadow: inset 3px 0 0 var(--kc); }
.kcol-head { display: flex; align-items: center; gap: 0.5rem; padding: 0.8rem 0.9rem; border-bottom: 1px solid var(--line); }
.kh-ic { color: var(--kc, var(--rosewood)); display: inline-flex; }
.kh-ic .gx-ic { width: 17px; height: 17px; }
.kh-label { font-weight: 600; font-size: 0.92rem; }
.kcount { background: rgba(25, 24, 22, 0.08); border-radius: 999px; padding: 0.05rem 0.5rem; font-size: 0.76rem; font-weight: 600; color: var(--carbon-70); }
.kmenu { margin-left: auto; position: relative; }
.kmenu-btn { border: none; background: none; cursor: pointer; color: var(--carbon-55); padding: 0.2rem; border-radius: 6px; }
.kmenu-btn:hover { background: rgba(25, 24, 22, 0.06); color: var(--carbon); }
.kmenu-btn .gx-ic { width: 18px; height: 18px; }
.kmenu-pop { display: none; position: absolute; right: 0; top: 100%; z-index: 30; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md); padding: 0.35rem; min-width: 190px; }
.kmenu.open .kmenu-pop { display: block; }
.kmi { display: flex; align-items: center; gap: 0.6rem; width: 100%; border: none; background: none; cursor: pointer; padding: 0.55rem 0.6rem; border-radius: 8px; font: inherit; font-size: 0.88rem; color: var(--carbon); text-align: left; }
.kmi:hover { background: var(--parchment); }
.kmi .gx-ic { width: 16px; height: 16px; color: var(--carbon-55); }
.kmi-color input { margin-left: auto; width: 26px; height: 22px; border: none; background: none; padding: 0; cursor: pointer; }
.kmi-danger, .kmi-danger .gx-ic { color: var(--rosewood); }
.kcol-body { padding: 0.7rem; display: flex; flex-direction: column; gap: 0.6rem; overflow-y: auto; min-height: 60px; flex: 1; }
.kcol-body.over { background: rgba(192, 1, 70, 0.05); }
.kcard { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 0.8rem 0.9rem; cursor: grab; box-shadow: 0 2px 6px -3px rgba(25, 24, 22, 0.2); }
.kcard:hover { border-color: var(--line-strong); }
.kcard.dragging { opacity: 0.5; }
.kcard-src { display: inline-block; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.1rem 0.45rem; border-radius: 999px; background: rgba(25, 24, 22, 0.06); color: var(--carbon-55); margin-bottom: 0.4rem; }
.kcard-src--booking { background: rgba(192, 1, 70, 0.1); color: var(--rosewood); }
.kcard-name { font-weight: 600; font-size: 0.95rem; color: var(--carbon); }
.kcard-tag { display: inline-block; font-size: 0.78rem; color: var(--carbon-70); margin-top: 0.2rem; }
.kcard-mail { font-size: 0.78rem; color: var(--carbon-55); margin-top: 0.15rem; word-break: break-all; }
.kcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; font-size: 0.76rem; color: var(--carbon-55); }
.kcard-del { border: none; background: none; cursor: pointer; color: #b9b5ad; padding: 0.15rem; border-radius: 6px; opacity: 0; transition: opacity 0.15s var(--ease), color 0.15s var(--ease); }
.kcard:hover .kcard-del { opacity: 1; }
.kcard-del:hover { color: var(--rosewood); }
.kcard-del .gx-ic { width: 15px; height: 15px; }
.kcol-add { flex: 0 0 210px; align-self: stretch; border: 1.5px dashed var(--line-strong); border-radius: 14px; background: none; cursor: pointer; padding: 0.9rem; color: var(--carbon-55); font: inherit; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.kcol-add:hover { border-color: var(--rosewood); color: var(--rosewood); }
.kcol-add .gx-ic { width: 17px; height: 17px; }

.kmodal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.2rem; background: rgba(25, 24, 22, 0.5); }
.kmodal[hidden] { display: none; }
.kmodal-box { background: #fff; border-radius: 16px; box-shadow: 0 40px 90px -40px rgba(25, 24, 22, 0.6); padding: 1.6rem; max-width: 440px; width: 100%; }
.kmodal-box h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.kmodal-foot { display: flex; justify-content: flex-end; gap: 0.6rem; margin-top: 1rem; }
.kmodal .field { margin-bottom: 0.8rem; }
.kmodal .field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.3rem; }
.kmodal .field input, .kmodal .field textarea { width: 100%; padding: 0.55rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; font-size: 0.9rem; }
.kmodal .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.icongrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.4rem; }
.iconpick { border: 1px solid var(--line); border-radius: 9px; background: #fff; cursor: pointer; padding: 0.55rem; display: grid; place-items: center; color: var(--carbon-70); font-size: 0.7rem; }
.iconpick:hover { border-color: var(--rosewood); color: var(--rosewood); }
.iconpick .gx-ic { width: 20px; height: 20px; }
.iconpick-none { grid-column: span 2; }

@media (max-width: 900px) {
  .adm-side { transform: translateX(-100%); transition: transform 0.25s var(--ease); width: 248px; }
  .adm-side-open .adm-side { transform: none; }
  .adm-main { margin-left: 0; }
  .adm-collapse { display: none; }
  .adm-burger { display: inline-flex; position: fixed; top: 0.8rem; left: 0.8rem; z-index: 60; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: #fff; cursor: pointer; align-items: center; justify-content: center; }
  .adm-burger .gx-ic { width: 22px; height: 22px; }
  .adm-side-open .adm-backdrop { display: block; position: fixed; inset: 0; z-index: 49; background: rgba(0, 0, 0, 0.4); }
  .adm-top { padding-left: 4rem; }
}

/* ===== Lead-Detailseite ===== */
.crm-back { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--carbon-70); font-weight: 600; font-size: 0.9rem; margin-bottom: 1.2rem; }
.crm-back:hover { color: var(--rosewood); }
.lead-grid { display: grid; grid-template-columns: 300px 1fr; gap: 1.4rem; align-items: start; }
.lead-aside { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.4rem; position: sticky; top: 88px; }
.lead-aside .kcard-src { margin-bottom: 0; }
.lead-name { font-size: 1.35rem; margin: 0.5rem 0 1rem; }
.lead-meta { margin: 0 0 1rem; display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 0.8rem; font-size: 0.88rem; }
.lead-meta dt { color: var(--carbon-55); }
.lead-meta dd { margin: 0; color: var(--carbon); word-break: break-word; }
.lead-meta a { color: var(--rosewood); }
.lead-body { font-size: 0.88rem; color: var(--carbon-70); background: var(--parchment); border-radius: 10px; padding: 0.7rem 0.9rem; margin-bottom: 1rem; }
.lead-stagesel { display: block; font-size: 0.82rem; font-weight: 600; color: var(--carbon); margin-bottom: 1rem; }
.lead-stagesel select { display: block; width: 100%; margin-top: 0.3rem; padding: 0.5rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; font-size: 0.9rem; background: #fff; }
.lead-actions { border-top: 1px solid var(--line); padding-top: 1rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.lead-actions-hint { font-size: 0.78rem; color: var(--carbon-55); margin-top: 0.5rem; text-align: center; }
.lead-main { min-width: 0; }

.feed { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.4rem; }
.feed-empty { background: #fff; border: 1px dashed var(--line-strong); border-radius: 14px; padding: 1.6rem; text-align: center; }
.feed-note { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.2rem; }
.feed-note--answers { border-left: 3px solid var(--rosewood); }
.feed-note--system { background: var(--parchment); }
.feed-note-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; font-size: 0.76rem; }
.feed-note-type { font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--rosewood); }
.feed-note-head time { color: var(--carbon-55); }
.feed-note-del { margin-left: auto; border: none; background: none; cursor: pointer; color: #b9b5ad; font-size: 1.15rem; line-height: 1; padding: 0 0.2rem; }
.feed-note-del:hover { color: var(--rosewood); }
.feed-note-body { font-size: 0.92rem; line-height: 1.55; color: var(--carbon); }
.feed-note-body h1 { font-size: 1.3rem; margin: 0.5rem 0; }
.feed-note-body h2 { font-size: 1.1rem; margin: 0.5rem 0; }
.feed-note-body h3 { font-size: 1rem; margin: 0.5rem 0; }
.feed-note-body p { margin: 0 0 0.5rem; }
.feed-note-body ul, .feed-note-body ol { margin: 0 0 0.5rem; padding-left: 1.4rem; }
.feed-note-body blockquote { border-left: 3px solid var(--line-strong); padding-left: 0.8rem; color: var(--carbon-70); margin: 0 0 0.5rem; }
.feed-note-body code { background: rgba(25, 24, 22, 0.06); border-radius: 5px; padding: 0.05em 0.35em; font-family: ui-monospace, Menlo, monospace; font-size: 0.88em; }
.feed-note-body > :last-child { margin-bottom: 0; }

.composer { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.composer-tabs { display: flex; border-bottom: 1px solid var(--line); }
.comp-tab { border: none; background: none; cursor: pointer; padding: 0.85rem 1.2rem; font: inherit; font-weight: 600; font-size: 0.9rem; color: var(--carbon-55); border-bottom: 2px solid transparent; }
.comp-tab.is-active { color: var(--rosewood); border-bottom-color: var(--rosewood); }
.comp-pane { padding: 1.1rem 1.2rem; }
.comp-pane[hidden] { display: none; }
.editor { position: relative; min-height: 120px; outline: none; font-size: 0.95rem; line-height: 1.6; color: var(--carbon); }
.editor.is-empty::before { content: attr(data-placeholder); position: absolute; top: 0; left: 0; color: var(--carbon-55); pointer-events: none; }
.editor h1 { font-size: 1.4rem; margin: 0.3rem 0; }
.editor h2 { font-size: 1.15rem; margin: 0.3rem 0; }
.editor h3 { font-size: 1.02rem; margin: 0.3rem 0; }
.editor p { margin: 0 0 0.35rem; }
.editor ul, .editor ol { margin: 0 0 0.35rem; padding-left: 1.4rem; }
.editor blockquote { border-left: 3px solid var(--line-strong); padding-left: 0.8rem; color: var(--carbon-70); margin: 0 0 0.35rem; }
.editor code { background: rgba(25, 24, 22, 0.06); border-radius: 5px; padding: 0.05em 0.35em; font-family: ui-monospace, Menlo, monospace; font-size: 0.88em; }
.composer-foot { margin-top: 0.8rem; display: flex; justify-content: flex-end; }
.q-field { display: block; margin-bottom: 0.9rem; }
.q-field span { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--carbon); }
.q-field textarea { width: 100%; padding: 0.6rem 0.8rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; font-size: 0.9rem; resize: vertical; }
@media (max-width: 820px) { .lead-grid { grid-template-columns: 1fr; } .lead-aside { position: static; } }

/* ===== Angebots-Konfigurator (Lead-Detail) ===== */
.cfg { font-size: 0.92rem; }
.cfg[hidden] { display: none; }
.cfg-base { display: flex; justify-content: space-between; align-items: center; background: var(--parchment); border-radius: 10px; padding: 0.8rem 1rem; font-weight: 600; }
.cfg-h { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--carbon-55); margin: 1.2rem 0 0.6rem; }
.cfg-styles { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cfg-style { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.8rem; border: 1px solid var(--line-strong); border-radius: 999px; cursor: pointer; font-size: 0.88rem; }
.cfg-style:has(input:checked) { border-color: var(--rosewood); background: rgba(192, 1, 70, 0.06); color: var(--rosewood); }
.cfg-style input, .cfg-feat input { accent-color: var(--rosewood); }
.cfg-feats { display: grid; gap: 0.4rem; }
.cfg-feat { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0.8rem; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.cfg-feat:has(input:checked) { border-color: var(--rosewood); }
.cfg-feat input { flex: none; }
.cfg-feat-l { flex: 1; font-size: 0.9rem; }
.cfg-feat-p { font-weight: 600; color: var(--carbon-70); font-size: 0.85rem; }
.cfg-customs { display: grid; gap: 0.4rem; margin-bottom: 0.5rem; }
.cfg-custom { display: flex; gap: 0.5rem; align-items: center; }
.cfg-custom .cc-label { flex: 1; }
.cfg-custom .cc-price { width: 90px; }
.cfg-custom input { padding: 0.5rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; font-size: 0.88rem; }
.cc-del { border: none; background: none; cursor: pointer; color: #b9b5ad; font-size: 1.2rem; line-height: 1; }
.cc-del:hover { color: var(--rosewood); }
.cfg-addcustom { border: 1px dashed var(--line-strong); background: none; cursor: pointer; border-radius: 9px; padding: 0.5rem 0.9rem; font: inherit; font-weight: 600; font-size: 0.85rem; color: var(--carbon-55); }
.cfg-addcustom:hover { border-color: var(--rosewood); color: var(--rosewood); }
.cfg-row { margin: 1rem 0 0; }
.cfg-mini { display: inline-flex; flex-direction: column; font-size: 0.82rem; font-weight: 600; gap: 0.3rem; }
.cfg-mini input { width: 140px; padding: 0.5rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; }
.cfg-note { display: block; font-size: 0.82rem; font-weight: 600; margin: 1rem 0; }
.cfg-note textarea { display: block; width: 100%; margin-top: 0.3rem; padding: 0.6rem 0.8rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; font-weight: 400; font-size: 0.9rem; resize: vertical; }
.cfg-total { display: flex; gap: 1.5rem; padding: 1rem 1.2rem; background: var(--carbon); color: var(--paper); border-radius: 12px; margin-bottom: 1rem; }
.cfg-total div { display: flex; flex-direction: column; }
.cfg-total span { font-size: 0.78rem; color: var(--parch-dim); }
.cfg-total strong { font-family: var(--ff-display); font-size: 1.5rem; }

.offer-box[hidden] { display: none; }
.offer-status { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.2rem 0.6rem; border-radius: 999px; margin-bottom: 0.9rem; background: rgba(25, 24, 22, 0.08); color: var(--carbon-70); }
.offer-status--accepted { background: rgba(30, 169, 53, 0.14); color: #1c7a30; }
.offer-status--sent { background: rgba(192, 1, 70, 0.1); color: var(--rosewood); }
.offer-items { list-style: none; padding: 0; margin: 0 0 0.8rem; }
.offer-items li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.offer-discount { color: var(--rosewood); }
.offer-totals { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.offer-totals div { display: flex; flex-direction: column; }
.offer-totals span { font-size: 0.78rem; color: var(--carbon-55); }
.offer-totals strong { font-family: var(--ff-display); font-size: 1.3rem; }
.offer-link { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; }
.offer-link input { flex: 1; padding: 0.55rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; font-size: 0.82rem; background: var(--parchment); }
.offer-actions { gap: 0.5rem; flex-wrap: wrap; }

/* ===== Öffentliche Angebots-Seite ===== */
.angebot-page { background: linear-gradient(180deg, var(--parchment), #fbfaf8 55%); min-height: 80vh; padding: clamp(2rem, 1.5rem + 3vw, 4rem) 0 4rem; }
.angebot-wrap { max-width: 640px; margin: 0 auto; }
.angebot-intro { text-align: center; margin-bottom: clamp(1.6rem, 1.2rem + 2vw, 2.6rem); }
.angebot-intro h1 { font-size: clamp(1.8rem, 1.4rem + 2vw, 2.6rem); margin: 0.5rem 0 0.7rem; }
.angebot-intro .eyebrow { justify-content: center; }
.angebot-intro .lead { color: var(--carbon-70); margin-inline: auto; max-width: 50ch; }
.angebot-card { background: #fff; border-radius: 20px; box-shadow: 0 40px 90px -50px rgba(25, 24, 22, 0.5); padding: clamp(1.6rem, 1.2rem + 2vw, 2.6rem); }
.angebot-style { font-size: 0.88rem; color: var(--carbon-70); margin-bottom: 1rem; }
.angebot-items { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.angebot-items li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.angebot-disc { color: var(--rosewood); font-weight: 600; }
.angebot-totals { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.2rem; }
.at-box { flex: 1 1 200px; background: var(--parchment); border-radius: 14px; padding: 1rem 1.2rem; display: flex; flex-direction: column; }
.at-box span { font-size: 0.8rem; color: var(--carbon-55); }
.at-box strong { font-family: var(--ff-display); font-size: 1.5rem; color: var(--carbon); margin: 0.15rem 0; }
.at-box small { font-size: 0.76rem; color: var(--carbon-55); }
.angebot-note { background: var(--parchment); border-radius: 12px; padding: 0.9rem 1.1rem; font-size: 0.9rem; color: var(--carbon-70); margin-bottom: 1.4rem; }
.angebot-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.angebot-actions .btn { flex: 1 1 auto; justify-content: center; }
.angebot-accepted { display: flex; align-items: center; gap: 0.6rem; background: rgba(30, 169, 53, 0.12); color: #1c7a30; border-radius: 12px; padding: 1rem 1.2rem; font-weight: 600; }
.angebot-accepted span { font-size: 1.2rem; }
.angebot-trust { text-align: center; color: var(--carbon-55); font-size: 0.88rem; margin-top: 1.4rem; max-width: 50ch; margin-inline: auto; }

@media print {
  .site-header, .site-footer, .cc, .angebot-actions, .angebot-trust { display: none !important; }
  .angebot-page { background: #fff; padding: 0; }
  .angebot-card { box-shadow: none; border: 1px solid #ccc; }
}

.admin-sub { font-size: 0.85rem; color: var(--carbon-55); margin: 0 0 1rem; max-width: 75ch; }
.admin-sub code { font-family: ui-monospace, monospace; }

/* ============================================================ Formular-Modul */
/* --- Admin: Liste --- */
.forms-list { display: grid; gap: 0.7rem; }
.form-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.15rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.form-row__main { display: grid; gap: 0.2rem; }
.form-row__main strong { font-size: 1.05rem; }
.form-row__meta { font-size: var(--fs-small); color: var(--carbon-55); }
.form-on { color: #1ea935; font-weight: 600; }
.form-off { color: var(--carbon-55); }
.form-row__actions { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.form-del { color: var(--error); }
@media (max-width: 640px) { .form-row { flex-direction: column; align-items: flex-start; } }

/* --- Admin: Builder --- */
.fb { display: grid; grid-template-columns: 1fr 300px; gap: 1.5rem; align-items: start; margin-top: 0.6rem; }
.fb-main { display: grid; gap: 0.9rem; }
.fb-field label, .fb-side-card label { display: block; font-size: var(--fs-small); font-weight: 600; margin-bottom: 0.35rem; }
.fb-titlefield input { font-size: 1.25rem; font-weight: 600; }
.fb input[type=text], .fb input:not([type]), .fb textarea, .fb-side input { width: 100%; padding: 0.6rem 0.75rem; border: 1px solid var(--line-strong); border-radius: var(--r-sm); font: inherit; background: #fff; }
.fb textarea { resize: vertical; }
.fb input:focus, .fb textarea:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.12); }
.fb-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.1rem; box-shadow: var(--shadow-sm); position: relative; }
.fb-kind { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--carbon-55); background: var(--parchment); padding: 0.2rem 0.5rem; border-radius: 999px; margin-bottom: 0.6rem; }
.fb-kind--choice { background: var(--rose-tint); color: var(--amaranth); }
.fb-kind--text { background: #e8eef7; color: #2c5282; }
.fb-kind--info { background: #fff3e0; color: #9a6b00; }
.fb-intro { border-style: dashed; }
.fb-intro .fb-h { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.fb-step { display: grid; gap: 0.55rem; }
.fb-step-head { display: flex; align-items: center; justify-content: space-between; }
.fb-step-tools { display: flex; gap: 0.25rem; }
.fb-mv, .fb-del-step, .fb-opt-del { border: 1px solid var(--line); background: #fff; border-radius: var(--r-sm); width: 28px; height: 28px; cursor: pointer; color: var(--carbon-70); display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; line-height: 1; }
.fb-mv:hover, .fb-del-step:hover, .fb-opt-del:hover { background: var(--parchment); }
.fb-del-step:hover, .fb-opt-del:hover { color: var(--error); border-color: var(--error); }
.fb-q { font-weight: 600; }
.fb-opts { display: grid; gap: 0.4rem; }
.fb-opt { display: flex; align-items: center; gap: 0.5rem; }
.fb-opt-grip { color: var(--parch-dimmer); }
.fb-opt-in { flex: 1; }
.fb-add-opt { align-self: start; border: 1px dashed var(--line-strong); background: #fff; border-radius: var(--r-sm); padding: 0.4rem 0.7rem; cursor: pointer; font: inherit; font-size: var(--fs-small); color: var(--carbon-70); }
.fb-add-opt:hover { border-color: var(--rosewood); color: var(--rosewood); }
.fb-chks { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.fb-chk { display: inline-flex; align-items: center; gap: 0.4rem; font-size: var(--fs-small); cursor: pointer; }
.fb-add { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; padding: 0.3rem 0; }
.fb-add-label { font-size: var(--fs-small); color: var(--carbon-55); margin-right: 0.2rem; }
.fb-fixed { background: var(--parchment); border-style: dashed; }
.fb-fixed p { margin: 0; font-size: var(--fs-small); }
.fb-side { display: grid; gap: 0.9rem; position: sticky; top: 90px; }
.fb-side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1rem; box-shadow: var(--shadow-sm); }
.fb-side-card .small { margin: 0.4rem 0 0; font-size: 0.8rem; color: var(--carbon-55); }
.fb-link input { font-size: 0.8rem; color: var(--carbon-55); }
.fb-link-actions { display: flex; gap: 0.4rem; margin-top: 0.5rem; }
.fb-save { width: 100%; }
.fb-saved { display: block; text-align: center; font-size: var(--fs-small); min-height: 1.2em; }
.fb-saved.is-ok { color: #1ea935; }
.fb-saved.is-bad { color: var(--error); }
.fb-switch { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-weight: 600; position: relative; }
.fb-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.fb-switch__t { width: 40px; height: 22px; border-radius: 999px; background: var(--line-strong); position: relative; transition: background 0.2s; flex: none; }
.fb-switch__t::after { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }
.fb-switch input:checked + .fb-switch__t { background: #1ea935; }
.fb-switch input:checked + .fb-switch__t::after { transform: translateX(18px); }
@media (max-width: 860px) { .fb { grid-template-columns: 1fr; } .fb-side { position: static; } }

/* --- Öffentliches Formular (Typeform-Stil) --- */
.form-page { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(1.2rem, 4vw, 3rem); position: relative; overflow: hidden; }
.form-floaters { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.form-stage { width: 100%; max-width: 640px; position: relative; z-index: 1; }
.form-progress { height: 5px; background: var(--line); border-radius: 999px; overflow: hidden; margin-bottom: clamp(1.5rem, 4vw, 2.6rem); }
.form-progress__bar { display: block; height: 100%; width: 0; background: var(--rosewood); border-radius: 999px; transition: width 0.45s var(--ease); }
.form-screens { position: relative; }
.form-screen { opacity: 0; transform: translateY(14px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.form-screen.is-active { opacity: 1; transform: none; }
.form-card { display: grid; gap: 1rem; }
.form-eyebrow { font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: 0.12em; color: var(--rosewood); font-weight: 700; }
.form-card h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); margin: 0; }
.form-q { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); line-height: var(--lh-snug); margin: 0; }
.form-step-num { font-size: var(--fs-small); font-weight: 700; color: var(--rosewood); margin: 0; }
.form-step-num::after { content: ' →'; color: var(--parch-dimmer); }
.form-sub { font-size: var(--fs-lead); color: var(--carbon-70); margin: 0; line-height: var(--lh-body); }
.form-hint { font-size: var(--fs-small); color: var(--carbon-55); margin: -0.4rem 0 0; }
.form-req { color: var(--rosewood); }
.form-input { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-md); font: inherit; font-size: 1.1rem; background: #fff; }
.form-input:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 4px rgba(192, 1, 70, 0.12); }
.form-input.is-bad { border-color: var(--error); }
.form-opts { display: grid; gap: 0.6rem; }
.fopt { display: flex; align-items: center; gap: 0.8rem; text-align: left; padding: 0.95rem 1.1rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-md); background: #fff; font: inherit; font-size: 1.05rem; cursor: pointer; transition: border-color 0.15s, background 0.15s, transform 0.08s; }
.fopt:hover { border-color: var(--rosewood); background: var(--rose-tint); }
.fopt:active { transform: scale(0.99); }
.fopt.is-sel { border-color: var(--rosewood); background: var(--rose-tint); box-shadow: inset 0 0 0 1px var(--rosewood); }
.fopt-key { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--line-strong); font-size: 0.8rem; font-weight: 700; color: var(--carbon-55); flex: none; }
.fopt.is-sel .fopt-key { background: var(--rosewood); color: #fff; border-color: var(--rosewood); }
.form-field { display: grid; gap: 0.35rem; }
.form-field > span { font-size: var(--fs-small); font-weight: 600; }
.form-field em { color: var(--carbon-55); font-style: normal; font-weight: 400; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-small); color: var(--carbon-70); line-height: 1.5; }
.form-consent input { margin-top: 0.2rem; }
.form-hp { position: absolute; left: -9999px; }
.form-actions { display: flex; align-items: center; gap: 0.8rem; margin-top: 0.4rem; flex-wrap: wrap; }
.form-back { background: none; border: none; color: var(--carbon-55); font: inherit; cursor: pointer; padding: 0.4rem 0; }
.form-back:hover { color: var(--carbon); }
.form-err { color: var(--error); font-size: var(--fs-small); margin: 0; }
.form-status { font-size: var(--fs-small); color: var(--carbon-55); margin: 0; }
.form-intro, .form-done, .form-msg { text-align: center; justify-items: center; gap: 1.2rem; }
.form-done-ic { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--rosewood); color: #fff; font-size: 2rem; }
@media (max-width: 520px) { .form-actions .btn { width: 100%; } .form-actions { flex-direction: column-reverse; align-items: stretch; } }

/* ============================================================ Kundenverwaltung (CRM) */
.kcard-customer { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.7rem; font-weight: 600; color: #1ea935; background: rgba(30, 169, 53, 0.1); border-radius: 999px; padding: 0.12rem 0.5rem; margin-top: 0.35rem; }
.kcard-customer .gx-ic { width: 12px; height: 12px; }
.lead-promote, .lead-promote-link { margin-top: 0.7rem; }

/* Suchleiste + Vorschläge */
.cust-top { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1rem; flex-wrap: wrap; }
.cust-search { position: relative; flex: 1; min-width: 280px; }
.cust-search-ic { position: absolute; left: 0.95rem; top: 50%; transform: translateY(-50%); color: var(--carbon-55); pointer-events: none; }
.cust-search-ic .gx-ic { width: 19px; height: 19px; }
.cust-search input { width: 100%; padding: 0.85rem 2.6rem; border: 1px solid var(--line-strong); border-radius: 12px; font: inherit; font-size: 1rem; background: #fff; box-shadow: var(--shadow-sm); }
.cust-search input:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 4px rgba(192, 1, 70, 0.1); }
.cust-search-clear { position: absolute; right: 0.7rem; top: 50%; transform: translateY(-50%); border: none; background: rgba(25, 24, 22, 0.06); color: var(--carbon-70); width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; line-height: 1; }
.cust-search-clear:hover { background: rgba(25, 24, 22, 0.12); }
.cust-suggest { position: absolute; left: 0; right: 0; top: calc(100% + 0.4rem); background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 0.4rem; z-index: 40; max-height: 380px; overflow-y: auto; }
.cust-sug { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0.6rem; border-radius: 10px; color: var(--carbon); }
.cust-sug:hover, .cust-sug.is-sel { background: var(--rose-tint); }
.cust-sug-ava { width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center; background: linear-gradient(150deg, var(--rose-bright), var(--rosewood)); color: #fff; font-weight: 700; font-family: var(--ff-display); font-size: 0.9rem; }
.cust-sug-main { display: grid; line-height: 1.3; min-width: 0; }
.cust-sug-name { font-weight: 600; font-size: 0.92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cust-sug-sub { font-size: 0.8rem; color: var(--carbon-55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cust-sug mark, .cust-table mark { background: rgba(192, 1, 70, 0.18); color: inherit; border-radius: 3px; padding: 0 0.05em; }
.cust-sug-empty { padding: 0.8rem; color: var(--carbon-55); font-size: 0.9rem; text-align: center; }
.cust-stats { display: flex; align-items: center; gap: 0.5rem; color: var(--carbon-55); font-size: 0.92rem; white-space: nowrap; }
.cust-stats strong { color: var(--carbon); }
.cust-dot { opacity: 0.5; }

/* Tabelle (Salesforce-Stil) */
.cust-table-wrap { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.cust-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.cust-table thead th { text-align: left; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--carbon-55); font-weight: 700; padding: 0.75rem 1rem; background: rgba(25, 24, 22, 0.025); border-bottom: 1px solid var(--line); }
.cust-row { cursor: pointer; border-bottom: 1px solid var(--line); transition: background 0.12s var(--ease); }
.cust-row:last-child { border-bottom: none; }
.cust-row:hover { background: rgba(192, 1, 70, 0.035); }
.cust-row:focus-visible { outline: 2px solid var(--rosewood); outline-offset: -2px; }
.cust-table td { padding: 0.7rem 1rem; color: var(--carbon-70); vertical-align: middle; }
.cust-table td a { color: var(--amaranth); }
.cust-name { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; color: var(--carbon); }
.cust-ava { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; background: linear-gradient(150deg, var(--rose-bright), var(--rosewood)); color: #fff; font-weight: 700; font-family: var(--ff-display); font-size: 0.82rem; }
.cust-since { white-space: nowrap; color: var(--carbon-55); }
.cust-status { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 600; color: var(--cs); }
.cust-status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--cs); }
.cust-src { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; padding: 0.12rem 0.5rem; border-radius: 999px; background: rgba(25, 24, 22, 0.06); color: var(--carbon-55); }
.cust-src--booking { background: rgba(192, 1, 70, 0.1); color: var(--rosewood); }
.cust-src--form { background: rgba(58, 110, 165, 0.12); color: #3a6ea5; }
.cust-noresult { padding: 1.4rem; text-align: center; color: var(--carbon-55); }
.cust-empty { text-align: center; padding: 3rem 1rem; display: grid; gap: 1rem; justify-items: center; }

/* Kunden-Detail (Record-Layout) */
.cust-hero { display: flex; align-items: center; gap: 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.3rem 1.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1.2rem; flex-wrap: wrap; }
.cust-ava--lg { width: 60px; height: 60px; font-size: 1.5rem; }
.cust-hero-main { flex: 1; min-width: 200px; }
.cust-hero-main h2 { font-size: 1.5rem; margin: 0; }
.cust-hero-sub { color: var(--carbon-55); margin: 0.1rem 0 0; }
.cust-hero-tags { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.6rem; }
.cust-since-tag { font-size: 0.8rem; color: var(--carbon-55); }
.cust-hero-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cust-hero-actions .btn .gx-ic { width: 16px; height: 16px; }
.cust-saved { color: #1ea935; font-weight: 600; margin: -0.4rem 0 1rem; }
.cust-cols { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.2rem; align-items: start; }
.cust-panel, .cust-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm); }
.cust-side { display: grid; gap: 1.2rem; }
.cust-panel-h { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--carbon-55); margin: 0 0 0.9rem; }
.cust-fields { display: grid; gap: 0.7rem; margin: 0 0 1.3rem; }
.cust-fields > div { display: grid; grid-template-columns: 110px 1fr; gap: 0.6rem; align-items: baseline; }
.cust-fields dt { color: var(--carbon-55); font-size: 0.85rem; }
.cust-fields dd { margin: 0; color: var(--carbon); }
.cust-edit { display: grid; gap: 0.9rem; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.cust-field { display: grid; gap: 0.3rem; }
.cust-field > span { font-size: 0.8rem; font-weight: 600; color: var(--carbon-70); }
.cust-field input, .cust-field select, .cust-field textarea { padding: 0.6rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; background: #fff; }
.cust-field input:focus, .cust-field select:focus, .cust-field textarea:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.1); }
.cust-offer-row { display: flex; align-items: center; gap: 0.6rem; margin: 0 0 0.8rem; font-size: 1.15rem; }
.cust-offer-st { font-size: 0.78rem; font-weight: 600; color: var(--carbon-55); background: var(--parchment); padding: 0.12rem 0.5rem; border-radius: 999px; }
.cust-body { color: var(--carbon-70); line-height: 1.55; font-size: 0.92rem; }
.cust-feed { display: grid; gap: 0.7rem; max-height: 360px; overflow-y: auto; }
.cust-note { border-left: 2px solid var(--line-strong); padding-left: 0.8rem; }
.cust-note-head { display: flex; align-items: center; justify-content: space-between; font-size: 0.74rem; color: var(--carbon-55); margin-bottom: 0.2rem; }
.cust-note-body { font-size: 0.9rem; color: var(--carbon-70); }
.cust-note-body p { margin: 0 0 0.3rem; }
.cust-card--foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cust-leadlink { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; color: var(--carbon-70); }
.cust-leadlink .gx-ic { width: 15px; height: 15px; }
.cust-del { display: inline-flex; align-items: center; gap: 0.4rem; border: none; background: none; cursor: pointer; color: var(--error); font: inherit; font-size: 0.88rem; }
.cust-del .gx-ic { width: 15px; height: 15px; }
@media (max-width: 880px) { .cust-cols { grid-template-columns: 1fr; } }

/* Pipeline: Kopfzeile mit „Neuer Eintrag" */
.board-bar { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.board-bar .board-hint { margin: 0; }
.board-new { flex: none; }
.board-new .gx-ic { width: 16px; height: 16px; }

/* Lead-Detail: Kernfelder inline bearbeiten (Salesforce-Stil) */
.lead-edit { display: grid; gap: 0.45rem; margin: 0.5rem 0 1rem; }
.lead-edit-name { font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem; color: var(--carbon); border: none; border-bottom: 2px solid transparent; background: none; padding: 0.1rem 0; width: 100%; border-radius: 0; }
.lead-edit-name::placeholder { color: var(--parch-dimmer); }
.lead-edit-name:hover { border-bottom-color: var(--line-strong); }
.lead-edit-name:focus { outline: none; border-bottom-color: var(--rosewood); }
.lead-ef { display: grid; grid-template-columns: 72px 1fr; gap: 0.5rem; align-items: start; }
.lead-ef > span { font-size: 0.78rem; color: var(--carbon-55); padding-top: 0.45rem; }
.lead-ef input, .lead-ef textarea { border: 1px solid transparent; border-radius: 7px; background: none; font: inherit; font-size: 0.9rem; color: var(--carbon); padding: 0.35rem 0.45rem; width: 100%; resize: vertical; transition: border-color 0.15s var(--ease), background 0.15s var(--ease); }
.lead-ef input:hover, .lead-ef textarea:hover { border-color: var(--line); background: #fff; }
.lead-ef input:focus, .lead-ef textarea:focus { outline: none; border-color: var(--rosewood); background: #fff; box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.08); }
.lead-edit-status { font-size: 0.78rem; color: #1ea935; min-height: 1.1em; padding-left: 72px; }

/* ============================================================ Tracking-Zentrale */
.tc-list { display: grid; gap: 0.7rem; margin-bottom: 2rem; }
.tc-callout { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.tc-callout.is-active { border-color: rgba(192, 1, 70, 0.3); }
.tc-sum { display: flex; align-items: center; gap: 0.8rem; padding: 0.9rem 1.1rem; cursor: pointer; list-style: none; user-select: none; }
.tc-sum::-webkit-details-marker { display: none; }
.tc-ic { width: 36px; height: 36px; flex: none; border-radius: 9px; display: grid; place-items: center; background: var(--parchment); color: var(--carbon-70); font-weight: 700; font-size: 0.78rem; font-family: var(--ff-display); }
.tc-callout.is-active .tc-ic { background: linear-gradient(150deg, var(--rose-bright), var(--rosewood)); color: #fff; }
.tc-name { font-weight: 600; flex: 1; }
.tc-state { font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--carbon-55); }
.tc-callout.is-active .tc-state { color: #1ea935; }
.tc-toggle { margin: 0; }
.tc-chev { color: var(--carbon-55); display: flex; transition: transform 0.25s var(--ease); }
.tc-chev .gx-ic { width: 18px; height: 18px; }
.tc-callout[open] .tc-chev { transform: rotate(180deg); }
.tc-body { padding: 1rem 1.1rem 1.1rem; display: grid; gap: 0.8rem; border-top: 1px solid var(--line); }
.tc-meta-extra { display: grid; gap: 0.8rem; border-top: 1px dashed var(--line); padding-top: 0.9rem; margin-top: 0.2rem; }
.tc-customs-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.tc-customs-head .admin-h2 { margin: 0; }
.tc-customs-head .gx-ic { width: 16px; height: 16px; }
.tc-scripts { display: grid; gap: 0.8rem; margin: 0.8rem 0; }
.tc-script { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0.9rem 1rem; box-shadow: var(--shadow-sm); }
.tc-script--new { border-color: rgba(192, 1, 70, 0.35); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.06); }
.tc-script-head { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.tcs-name { flex: 1; min-width: 140px; border: 1px solid transparent; border-radius: 8px; padding: 0.4rem 0.5rem; font: inherit; font-weight: 600; background: none; }
.tcs-name:hover { border-color: var(--line); }
.tcs-name:focus { outline: none; border-color: var(--rosewood); background: #fff; box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.08); }
.tcs-place { font-family: ui-monospace, monospace; font-size: 0.78rem; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 6px; }
.tcs-place--head { color: #2c5282; background: #e8eef7; }
.tcs-place--body { color: #9a6b00; background: #fff3e0; }
.tcs-place-toggle { display: inline-flex; border: 1px solid var(--line-strong); border-radius: 8px; overflow: hidden; }
.tcs-place-toggle button { border: none; background: #fff; cursor: pointer; font-family: ui-monospace, monospace; font-size: 0.78rem; padding: 0.35rem 0.6rem; color: var(--carbon-55); }
.tcs-place-toggle button.is-active { background: var(--rosewood); color: #fff; }
.tcs-cat { border: 1px solid var(--line-strong); border-radius: 8px; padding: 0.35rem 0.5rem; font: inherit; font-size: 0.85rem; background: #fff; }
.tcs-del { border: 1px solid var(--line); background: #fff; border-radius: 8px; width: 32px; height: 32px; cursor: pointer; color: var(--carbon-55); display: inline-flex; align-items: center; justify-content: center; }
.tcs-del:hover { color: var(--error); border-color: var(--error); }
.tcs-del .gx-ic { width: 15px; height: 15px; }
.tcs-code { width: 100%; border: 1px solid var(--line-strong); border-radius: 8px; padding: 0.6rem 0.7rem; font-family: ui-monospace, monospace; font-size: 0.82rem; background: #fbfbfa; resize: vertical; }
.tcs-code:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.08); }
.tc-empty-scripts { color: var(--carbon-55); font-size: 0.9rem; padding: 0.5rem 0; }

/* ============================================================ Beweis — Kino-Sektion */
.section--cine { background: var(--carbon); color: var(--parch-dim); position: relative; overflow: hidden; }
.section--cine .section-head .eyebrow { color: #fff; }
.section--cine h2 { color: var(--parchment); }
.section--cine .lead { color: var(--parch-dim); }
.section--cine .container { position: relative; z-index: 1; }
.cine-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; pointer-events: none; z-index: 0; }
.cine-glow--1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(192, 1, 70, 0.55), transparent 70%); top: -160px; left: -120px; }
.cine-glow--2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(140, 2, 53, 0.45), transparent 70%); bottom: -220px; right: -160px; }

.eyebrow--live { display: inline-flex; align-items: center; gap: 0.5rem; }
.eyebrow--live::before { display: none; }  /* nur der grüne Live-Punkt, kein zweiter roter */
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #28c840; animation: livePulse 2s infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.55); } 70% { box-shadow: 0 0 0 9px rgba(40, 200, 64, 0); } 100% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0); } }

.cine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 1rem + 3vw, 3rem); margin-top: clamp(2rem, 1.4rem + 2vw, 3.2rem); perspective: 1500px; }
.cine-card { display: block; color: inherit; text-decoration: none; }
.cine-frame { position: relative; border-radius: 14px; overflow: hidden; background: #0d0d0d; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.85); transform-style: preserve-3d; transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease); }
.cine-card:hover .cine-frame { transform: rotateX(4deg) rotateY(-5deg) translateY(-6px) scale(1.012); box-shadow: 0 54px 96px -28px rgba(192, 1, 70, 0.5); }
.cine-frame::after { content: ""; position: absolute; inset: 0; z-index: 5; pointer-events: none; background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.16) 50%, transparent 62%); transform: translateX(-120%); transition: transform 0.9s var(--ease); }
.cine-card:hover .cine-frame::after { transform: translateX(120%); }
.cine-bar { display: flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0.7rem; background: #1b1b1b; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.cine-dots { display: flex; gap: 5px; flex: none; }
.cine-dots i { width: 9px; height: 9px; border-radius: 50%; background: #3a3a3a; }
.cine-dots i:nth-child(1) { background: #ff5f57; } .cine-dots i:nth-child(2) { background: #febc2e; } .cine-dots i:nth-child(3) { background: #28c840; }
.cine-url { flex: 1; display: flex; align-items: center; gap: 0.35rem; background: #0d0d0d; border-radius: 6px; padding: 0.28rem 0.6rem; font-family: ui-monospace, monospace; font-size: 0.72rem; color: #9a9a9a; overflow: hidden; white-space: nowrap; }
.cine-url svg { width: 12px; height: 12px; flex: none; color: #28c840; }
.cine-screen { position: relative; height: 290px; overflow: hidden; background: #fff; }
.cine-screen::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 -40px 50px -30px rgba(0, 0, 0, 0.18); }
.cine-site { position: absolute; top: 0; left: 0; right: 0; height: 600px; transition: transform 3.2s var(--ease); }
.cine-card:hover .cine-site { transform: translateY(-310px); }
/* Echte Website-Screenshots: im Mockup-Fenster scrollbar (Auto-Scroll via JS, manuell jederzeit) */
.cine-screen { overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.cine-screen::-webkit-scrollbar { width: 0; height: 0; display: none; }
.cine-shot { display: block; width: 100%; height: auto; }
.cs-nav { height: 46px; display: flex; align-items: center; gap: 10px; padding: 0 18px; border-bottom: 1px solid #eee; }
.cs-logo { width: 70px; height: 14px; border-radius: 4px; background: var(--acc); }
.cs-links { display: flex; gap: 10px; margin-left: auto; }
.cs-links i { width: 32px; height: 8px; border-radius: 4px; background: #dcdcdc; }
.cs-cta { width: 60px; height: 24px; border-radius: 6px; background: var(--acc); margin-left: 6px; }
.cs-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; padding: 28px 18px; align-items: center; background: linear-gradient(160deg, color-mix(in srgb, var(--acc) 12%, #fff), #fff); }
.cs-hcol { display: grid; gap: 9px; }
.cs-h1 { height: 18px; border-radius: 5px; background: #2a2a2a; width: 92%; }
.cs-h1--s { width: 58%; }
.cs-line { height: 8px; border-radius: 4px; background: #d2d2d2; }
.cs-line--s { width: 70%; }
.cs-btn { width: 96px; height: 30px; border-radius: 8px; background: var(--acc); margin-top: 8px; }
.cs-art { height: 130px; border-radius: 12px; background: linear-gradient(150deg, var(--acc), color-mix(in srgb, var(--acc) 45%, #000)); }
.cs-cards { display: flex; gap: 12px; padding: 16px 18px; }
.cs-cards span { flex: 1; height: 78px; border-radius: 10px; background: #f3f3f3; border: 1px solid #ececec; }
.cs-band { height: 64px; margin: 4px 18px 10px; border-radius: 12px; background: color-mix(in srgb, var(--acc) 16%, #fff); }
.cine-live { position: absolute; top: 10px; right: 10px; z-index: 6; display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(13, 13, 13, 0.78); color: #fff; font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.6rem 0.25rem 0.55rem; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.15); }
.cine-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #28c840; animation: livePulse 2s infinite; }
.cine-stat { position: absolute; bottom: 12px; left: 12px; z-index: 6; background: rgba(255, 255, 255, 0.96); color: var(--carbon); font-size: 0.72rem; font-weight: 700; padding: 0.32rem 0.62rem; border-radius: 8px; box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.55); opacity: 0; transform: translateY(10px); transition: opacity 0.4s var(--ease) 0.1s, transform 0.4s var(--ease) 0.1s; }
.cine-card:hover .cine-stat { opacity: 1; transform: none; }
.cine-body { padding: 1.3rem 0.2rem 0; }
.cine-role { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--rose-bright); margin-bottom: 0.4rem; }
.cine-name { font-size: clamp(1.2rem, 1rem + 0.8vw, 1.55rem); color: var(--parchment); margin: 0 0 0.5rem; }
.cine-blurb { color: var(--parch-dim); font-size: 0.96rem; line-height: 1.55; margin: 0 0 0.9rem; }
.cine-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--rose-bright); font-weight: 600; }
.cine-link .btn__arrow { transition: transform 0.25s var(--ease); }
.cine-card:hover .cine-link .btn__arrow { transform: translateX(5px); }
@media (max-width: 760px) { .cine-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .cine-frame, .cine-site, .cine-frame::after, .cine-stat { transition: none; }
  .cine-card:hover .cine-site { transform: none; }
  .cine-shot { animation: none; }
  .live-dot, .cine-live::before { animation: none; }
}

/* ============================================================ Booking: Kontakt-Schritt */
/* Beim Formular-Schritt: Aside einklappen → kompakte Callout-Box, Formular größer & mittig */
.cal-stage:has(.booking--form) { display: block; max-width: 560px; margin-inline: auto; }
.cal-stage:has(.booking--form) .cal-aside { display: none; }
.cal-stage:has(.booking--form) .termin-booking { width: 100%; margin: 0; }
.cal-stage:has(.booking--form) .booking__contact { grid-template-columns: 1fr; max-width: none; gap: 1.3rem; }
.cal-stage:has(.booking--form) .booking__field input,
.cal-stage:has(.booking--form) .booking__field select,
.cal-stage:has(.booking--form) .booking__field textarea { padding: 0.85rem 1rem; font-size: 1.02rem; }

/* Termin-Schublade: Callout = Front, Termin-Box fährt darunter heraus */
.booking__apptbox { position: relative; }
.booking__callout { display: none; align-items: center; gap: 0.85rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0.75rem 1rem; box-shadow: var(--shadow-sm); position: relative; z-index: 2; }
.booking--form .booking__callout { display: flex; border-radius: 14px 14px 0 0; }
.booking--form .booking__summary { display: block; overflow: hidden; margin: 0; }
.booking--form .booking__sum-card { margin: 0; border: 1px solid var(--line); border-top: none; border-radius: 0 0 14px 14px; background: linear-gradient(180deg, rgba(192, 1, 70, 0.08), rgba(192, 1, 70, 0.03)); padding: 0.8rem 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; box-shadow: inset 0 7px 9px -8px rgba(192, 1, 70, 0.4); animation: bkDrawer 0.5s var(--ease) 0.12s both; }
@keyframes bkDrawer { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.booking--form .booking__sum-when { font-size: 1.02rem; font-weight: 600; color: var(--carbon); }
.booking--form .booking__change { margin: 0; flex: none; border: 1px solid var(--rosewood); background: #fff; color: var(--rosewood); border-radius: 9px; padding: 0.45rem 0.85rem; font: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; white-space: nowrap; }
.booking--form .booking__change:hover { background: var(--rose-tint); }
.booking__callout img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; filter: grayscale(1); }
.booking__callout-txt { display: grid; line-height: 1.3; }
.booking__callout-txt strong { font-size: 1rem; color: var(--carbon); }
.booking__callout-txt span { font-size: 0.83rem; color: var(--carbon-55); }

/* Format-Auswahl Telefon / Video */
.booking__format { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.1rem; }
.bf-opt { position: relative; cursor: pointer; }
.bf-opt input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; cursor: pointer; margin: 0; }
.bf-opt__in { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem; border: 1.5px solid var(--line-strong); border-radius: 12px; font-weight: 600; font-size: 0.95rem; color: var(--carbon-70); transition: border-color 0.15s var(--ease), background 0.15s var(--ease), color 0.15s var(--ease); }
.bf-opt__in svg { width: 19px; height: 19px; }
.bf-opt input:checked + .bf-opt__in { border-color: var(--rosewood); background: var(--rose-tint); color: var(--rosewood); }
.bf-opt input:focus-visible + .bf-opt__in { box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.18); }

/* ============================================================ Weiterleitungen */
.rd-form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); display: grid; gap: 0.9rem; margin-bottom: 1.6rem; }
.rd-form-row { display: flex; align-items: flex-end; gap: 0.8rem; flex-wrap: wrap; }
.rd-form .admin-label { display: grid; gap: 0.3rem; font-size: var(--fs-small); font-weight: 600; }
.rd-form input, .rd-form select { padding: 0.6rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; background: #fff; }
.rd-form input:focus, .rd-form select:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.1); }
.rd-slug-in { display: flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 9px; overflow: hidden; }
.rd-slug-in i { font-style: normal; padding: 0 0.15rem 0 0.6rem; color: var(--carbon-55); font-size: 0.85rem; white-space: nowrap; }
.rd-slug-in input { border: none !important; box-shadow: none !important; min-width: 90px; }
.rd-target { flex: 1; min-width: 200px; }
.rd-target input { width: 100%; }
.rd-arrow { padding-bottom: 0.6rem; color: var(--carbon-55); font-size: 1.1rem; }
.rd-add { white-space: nowrap; }
.rd-note input { width: 100%; }
.rd-table-wrap { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.rd-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.rd-table th { text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--carbon-55); font-weight: 700; padding: 0.7rem 1rem; background: rgba(25, 24, 22, 0.025); border-bottom: 1px solid var(--line); }
.rd-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.rd-table tr:last-child td { border-bottom: none; }
.rd-from a { color: var(--amaranth); font-weight: 500; }
.rd-from .rd-note-txt { display: block; font-size: 0.78rem; color: var(--carbon-55); }
.rd-to { color: var(--carbon-70); word-break: break-all; max-width: 340px; }
.rd-type-pill { font-family: ui-monospace, monospace; font-size: 0.78rem; background: var(--parchment); padding: 0.12rem 0.5rem; border-radius: 6px; }
.rd-hits { color: var(--carbon-55); }
.rd-meeting { border: 1px solid var(--line-strong); background: #fff; border-radius: 999px; padding: 0.3rem 0.7rem; font: inherit; font-size: 0.8rem; font-weight: 600; cursor: pointer; color: var(--carbon-55); white-space: nowrap; }
.rd-meeting:hover { border-color: var(--rosewood); color: var(--rosewood); }
.rd-meeting.is-on { background: var(--rose-tint); border-color: var(--rosewood); color: var(--rosewood); }
.rd-del { border: 1px solid var(--line); background: #fff; border-radius: 8px; width: 32px; height: 32px; cursor: pointer; color: var(--carbon-55); display: inline-flex; align-items: center; justify-content: center; }
.rd-del:hover { color: var(--error); border-color: var(--error); }
.rd-del .gx-ic { width: 15px; height: 15px; }
.rd-empty { margin-top: 1.4rem; }
@media (max-width: 640px) { .rd-form-row { flex-direction: column; align-items: stretch; } .rd-target { min-width: 0; } }

/* ============================================================ SEO-Board */
.seo-global { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm); margin-bottom: 1.4rem; }
.seo-global .fb-switch { font-size: 1rem; }
.seo-global .small { margin: 0.4rem 0 1rem; font-size: 0.8rem; color: var(--carbon-55); }
.seo-global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.seo-global .admin-label { display: grid; gap: 0.3rem; font-size: var(--fs-small); font-weight: 600; }
.seo-global input { padding: 0.6rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; background: #fff; }
.seo-global input:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.1); }
.seo-pages { display: grid; grid-template-columns: repeat(auto-fill, minmax(440px, 1fr)); gap: 1rem; }
.seo-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.seo-card.is-funnel { background: #fcfbfa; }
.seo-card-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--line); }
.seo-card-id { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.seo-card-id strong { font-size: 1rem; }
.seo-card-id code { font-family: ui-monospace, monospace; font-size: 0.78rem; color: var(--carbon-55); }
.seo-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--carbon-55); background: var(--parchment); padding: 0.1rem 0.45rem; border-radius: 999px; }
.seo-robots { font-size: 0.74rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 999px; white-space: nowrap; }
.seo-robots--idx { color: #1ea935; background: rgba(30, 169, 53, 0.1); }
.seo-robots--no { color: var(--carbon-55); background: rgba(25, 24, 22, 0.06); }
.seo-card-body { display: grid; gap: 1rem; padding: 1.1rem; }
.seo-fields { display: grid; gap: 0.8rem; }
.seo-fields .admin-label { display: grid; gap: 0.3rem; font-size: var(--fs-small); font-weight: 600; position: relative; }
.seo-fields input, .seo-fields textarea, .seo-fields select { padding: 0.6rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; font-size: 0.92rem; background: #fff; resize: vertical; }
.seo-fields input:focus, .seo-fields textarea:focus, .seo-fields select:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.1); }
.seo-count { position: absolute; right: 0; top: 0; font-size: 0.72rem; color: var(--carbon-55); font-weight: 500; }
.seo-count.is-good { color: #1ea935; }
.seo-count.is-over { color: var(--error); }
.seo-preview { border-top: 1px dashed var(--line); padding-top: 0.9rem; }
.seo-preview-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--carbon-55); font-weight: 700; }
.seo-snippet { margin-top: 0.5rem; font-family: arial, sans-serif; }
.seo-snippet-url { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: #4d5156; }
.seo-snippet-fav { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-bright), var(--rosewood)); flex: none; }
.seo-snippet-title { color: #1a0dab; font-size: 1.15rem; line-height: 1.3; margin: 0.15rem 0 0.1rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.seo-snippet-desc { color: #4d5156; font-size: 0.85rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 560px) { .seo-global-grid { grid-template-columns: 1fr; } .seo-pages { grid-template-columns: 1fr; } }

/* Hinweis in den Aktions-Spalten (Gewonnen/Verloren) + Mülleimer */
.kcol-note { font-size: 0.78rem; line-height: 1.45; color: var(--carbon-55); padding: 0.6rem 0.7rem; margin: 0.2rem 0 0; border: 1px dashed var(--line-strong); border-radius: 10px; }
.kcol-note strong { color: var(--carbon-70); }
.trash-bar { margin-bottom: 1.2rem; }
.trash-left { font-weight: 600; }
.trash-left.is-soon { color: var(--error); }
.trash-empty { text-align: center; padding: 3rem 1rem; display: grid; gap: 0.6rem; justify-items: center; }
.trash-empty .gx-ic { width: 40px; height: 40px; color: var(--parch-dimmer); }

/* ============================================================ Terminkalender (Agenda) */
.ag-legend { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-bottom: 1.4rem; font-size: 0.88rem; color: var(--carbon-70); }
.ag-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.ag-dot { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.ag-dot--free { background: rgba(46, 160, 67, 0.18); border: 1px solid #3f9d6c; }
.ag-dot--booked { background: linear-gradient(135deg, var(--rose-bright), var(--rosewood)); }
.ag-dot--blocked { background: var(--line-strong); }
.ag-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.ag-day { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; box-shadow: var(--shadow-sm); }
.ag-day-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.7rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line); }
.ag-day-head strong { font-family: var(--ff-display); font-size: 0.98rem; color: var(--carbon); }
.ag-day-head span { font-size: 0.72rem; color: var(--carbon-55); }
.ag-slots { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ag-slot-form { margin: 0; }
.ag-slot { display: inline-flex; flex-direction: column; align-items: center; gap: 0.05rem; min-width: 60px; padding: 0.35rem 0.5rem; border-radius: 9px; border: 1px solid var(--line); background: #fff; font: inherit; cursor: pointer; transition: border-color 0.15s var(--ease), background 0.15s var(--ease), transform 0.1s var(--ease); }
.ag-slot b { font-size: 0.86rem; font-weight: 700; color: var(--carbon); }
.ag-slot small { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.04em; }
.ag-slot.is-free { background: rgba(46, 160, 67, 0.08); border-color: rgba(46, 160, 67, 0.4); }
.ag-slot.is-free small { color: #2a7d3a; }
.ag-slot.is-free:hover { border-color: var(--rosewood); background: var(--rose-tint); transform: translateY(-1px); }
.ag-slot.is-free:hover small { color: var(--rosewood); }
.ag-slot.is-booked { cursor: default; background: linear-gradient(135deg, var(--rose-bright), var(--rosewood)); border-color: transparent; }
.ag-slot.is-booked b { color: #fff; }
.ag-slot.is-booked small { color: rgba(255, 255, 255, 0.85); max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ag-slot.is-blocked { background: var(--parchment); border-style: dashed; }
.ag-slot.is-blocked b { color: var(--carbon-55); text-decoration: line-through; }
.ag-slot.is-blocked small { color: var(--carbon-55); }
.ag-slot.is-blocked:hover { border-color: var(--carbon-55); }

/* ============================================================ DSGVO (Auskunft & Löschung) */
.dsg-search { display: flex; gap: 0.6rem; margin-bottom: 1.4rem; max-width: 520px; }
.dsg-search input { flex: 1; padding: 0.7rem 0.9rem; border: 1px solid var(--line-strong); border-radius: 10px; font: inherit; font-size: 0.95rem; color: var(--carbon); background: #fff; }
.dsg-search input:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.12); }
.dsg-search .btn { white-space: nowrap; }
.dsg-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0.9rem 1.2rem; margin-bottom: 1.2rem; box-shadow: var(--shadow-sm); }
.dsg-bar__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.dsg-bar__actions form { margin: 0; }
.dsg-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.3rem; margin-bottom: 0.9rem; box-shadow: var(--shadow-sm); }
.dsg-card__head { margin-bottom: 0.8rem; }
.dsg-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.25rem 0.7rem; border-radius: 999px; background: var(--rose-tint); color: var(--rosewood); }
.dsg-tag--customers { background: rgba(46, 160, 67, 0.14); color: #2a7d3a; }
.dsg-tag--bookings { background: rgba(58, 110, 165, 0.14); color: #3a6ea5; }
.dsg-tag--trash { background: var(--parchment); color: var(--carbon-55); }
.dsg-dl { display: grid; grid-template-columns: 190px 1fr; gap: 0.35rem 1rem; margin: 0; font-size: 0.9rem; }
.dsg-dl dt { color: var(--carbon-55); }
.dsg-dl dd { margin: 0; color: var(--carbon); overflow-wrap: anywhere; }
.dsg-notes { margin-top: 0.9rem; padding-top: 0.8rem; border-top: 1px solid var(--line); font-size: 0.88rem; }
.dsg-notes ul { margin: 0.3rem 0 0; padding-left: 1.1rem; color: var(--carbon-70); }
.dsg-notes li { margin-bottom: 0.2rem; }
@media (max-width: 620px) { .dsg-dl { grid-template-columns: 1fr; gap: 0.1rem 0; } .dsg-dl dd { margin-bottom: 0.4rem; } }

/* ============================================================ Gamification (Dashboard) */
.game { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1rem; margin-bottom: 1.6rem; }
.game-me, .game-team { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.3rem 1.5rem; box-shadow: var(--shadow-sm); }
.game-me { background: linear-gradient(150deg, #fff, var(--rose-tint)); }
.game-me.is-done { background: linear-gradient(150deg, #fff, rgba(30, 169, 53, 0.12)); }
.game-eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--carbon-55); }
.game-me-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.game-me-head strong { font-size: 1.3rem; font-family: var(--ff-display); }
.game-bar { height: 14px; background: rgba(25, 24, 22, 0.07); border-radius: 999px; overflow: hidden; }
.game-bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--rose-bright), var(--rosewood)); transition: width 0.6s var(--ease); }
.game-me.is-done .game-bar span { background: linear-gradient(90deg, #34c759, #1ea935); }
.game-msg { margin: 0.7rem 0 0; font-size: 0.9rem; color: var(--carbon-70); font-weight: 500; }
.game-team .game-eyebrow { display: block; margin-bottom: 0.7rem; }
.game-team .small { font-size: 0.85rem; }
.game-lead { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.game-lead li { display: flex; align-items: center; gap: 0.7rem; }
.game-rank { width: 24px; height: 24px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 0.78rem; font-weight: 700; background: var(--parchment); color: var(--carbon-55); }
.game-rank--1 { background: linear-gradient(150deg, #ffd86b, #f0a500); color: #5a3d00; }
.game-rank--2 { background: linear-gradient(150deg, #e3e3e3, #b9b9b9); color: #3a3a3a; }
.game-rank--3 { background: linear-gradient(150deg, #f0c08a, #cf9b5b); color: #523200; }
.game-name { flex: 1; font-weight: 600; font-size: 0.95rem; }
.game-count { font-weight: 700; font-family: var(--ff-display); color: var(--rosewood); }
@media (max-width: 760px) { .game { grid-template-columns: 1fr; } }

/* ============================================================ Benutzer */
.usr-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1rem; }
.usr-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm); display: grid; gap: 0.9rem; align-content: start; }
.usr-card--new { border-style: dashed; border-color: rgba(192, 1, 70, 0.3); background: #fffdfc; }
.usr-head { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.usr-head strong { font-size: 1.05rem; }
.usr-role { font-size: 0.74rem; color: var(--carbon-55); }
.usr-grid { display: grid; gap: 0.7rem; }
.usr-card .admin-label { display: grid; gap: 0.3rem; font-size: var(--fs-small); font-weight: 600; }
.usr-card input, .usr-card select { padding: 0.55rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; background: #fff; }
.usr-card input:focus, .usr-card select:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.1); }
.usr-active { grid-template-columns: none; display: flex; align-items: center; gap: 0.6rem; }
.usr-active > span { font-weight: 600; font-size: var(--fs-small); }
.usr-actions { display: flex; gap: 0.5rem; }

/* ============================================================ Mehrere Kalender */
.calx { display: grid; grid-template-columns: 1fr 300px; gap: 1.5rem; align-items: start; }
.calx-main { display: grid; gap: 1rem; }
.calx-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm); display: grid; gap: 0.9rem; }
.calx .admin-label { display: grid; gap: 0.3rem; font-size: var(--fs-small); font-weight: 600; }
.calx input[type=text], .calx input[type=password], .calx input[type=number], .calx input[type=file], .calx select, .calx textarea { padding: 0.6rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 9px; font: inherit; background: #fff; width: 100%; resize: vertical; }
.calx input:focus, .calx select:focus, .calx textarea:focus { outline: none; border-color: var(--rosewood); box-shadow: 0 0 0 3px rgba(192, 1, 70, 0.1); }
.calx-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.calx-photo { display: flex; align-items: center; gap: 1rem; }
.calx-photo-prev { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; flex: none; background: var(--parchment); display: grid; place-items: center; border: 1px solid var(--line); }
.calx-photo-prev img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.calx-photo-prev .gx-ic { width: 26px; height: 26px; color: var(--carbon-55); }
.calx-photo label { flex: 1; }
.calx-side { display: grid; gap: 0.9rem; position: sticky; top: 90px; }
.calx-side .fb-save { width: 100%; }
@media (max-width: 860px) { .calx { grid-template-columns: 1fr; } .calx-side { position: static; } .calx-grid2 { grid-template-columns: 1fr; } }

/* Danke-Seite: Video-Link-Callout */
.danke-video { display: flex; align-items: flex-start; gap: 0.85rem; text-align: left; background: var(--rose-tint); border: 1px solid rgba(192, 1, 70, 0.2); border-radius: 14px; padding: 1rem 1.15rem; margin-bottom: 1.3rem; color: var(--carbon); }
.danke-video__ic { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(150deg, var(--rose-bright), var(--rosewood)); color: #fff; }
.danke-video__ic svg { display: block; width: 21px; height: 21px; }
.danke-video__txt { display: grid; gap: 0.3rem; line-height: 1.4; min-width: 0; }
.danke-video__txt strong { font-size: 1rem; }
.danke-video__txt span { font-size: 0.85rem; color: var(--carbon-70); }
.danke-video__join { display: inline-flex; align-items: center; align-self: start; gap: 0.3rem; margin-top: 0.15rem; font-weight: 600; color: var(--rosewood); }
.danke-video__join:hover { text-decoration: underline; }
