/* =========================================================================
   ella.beauty.extension
   Grammatik: Rhythmic cutlist. Aesthetik: maximalistisch.
   Regler: VARIANCE 9, MOTION 7, DENSITY 5.
   Alle Tokens in :root. Kein Build, keine Abhaengigkeit, kein externer Request.
   ========================================================================= */

/* ---------- Schriften, selbst gehostet (assets/fonts/) -------------------
   latin-ext Subset, damit Umlaute in jedem Schnitt vollstaendig sind.
   Kein Google-Fonts-Link: der wuerde die IP der Besucherin in die USA senden.
   ------------------------------------------------------------------------ */
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/geist-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/geist-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/geist-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  /* Palette der Kundin */
  --coffee: #251101;
  --wine:   #470024;
  --plum:   #5B1865;
  --dusk:   #2C5784;
  --denim:  #5688C7;

  /* Gruende */
  --bg:      #0B0604;
  --bg-2:    #120A09;
  --surface: #1A0F14;
  --line:    rgba(255,255,255,.12);
  --line-2:  rgba(255,255,255,.24);

  /* Text. Kontrast auf --bg: ink 16.8:1, mid 7.6:1, dim 4.9:1 */
  --ink:  #F8F2EE;
  --mid:  #B9ACA5;
  --dim:  #90837C;

  /* Ein Akzent, als ein Objekt: der Markenverlauf aus dem Logo. */
  --blue:   #6FA8DC;
  --pink:   #F06AA8;
  --orange: #F5A11E;
  --grad:      linear-gradient(100deg, var(--blue) 0%, var(--pink) 52%, var(--orange) 100%);
  --grad-deep: linear-gradient(140deg, var(--wine) 0%, var(--plum) 46%, var(--dusk) 100%);
  --on-accent: #12070C;

  --ok:  #58C79A;
  --err: #FF8B8B;

  /* Typo */
  --display: 'Archivo', 'Arial Black', 'Segoe UI', system-ui, sans-serif;
  --text:    'Geist', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Schriftgroesse und Bild zusammen geplant: bei 5.5rem passt "Nur mehr davon."
     auf eine Zeile und der CTA bleibt auf 900px Hoehe ueber der Falte. */
  --fs-hero:  clamp(2.4rem, .9rem + 5.2vw, 5.5rem);
  --fs-h2:    clamp(1.9rem, 1.2rem + 3vw, 3.6rem);
  --fs-h3:    clamp(1.25rem, 1.05rem + .8vw, 1.6rem);
  --fs-lead:  clamp(1.05rem, 1rem + .45vw, 1.35rem);
  --fs-body:  clamp(1rem, .96rem + .2vw, 1.1rem);

  /* Raum. DENSITY 5. */
  --cut:    clamp(3.5rem, 1.5rem + 7vw, 7.5rem);
  --gutter: clamp(1.15rem, .5rem + 2.5vw, 3.5rem);
  --wrap:   1320px;
  --narrow: 780px;

  /* Form. Alles kantig, ausser klickbaren Elementen: die bekommen einen kleinen
     Radius. Ein einziger Wert fuer Buttons, Burger und Social-Icons. */
  --r-btn: 8px;
  --bar-h: 74px;   /* Hoehe der Kopfleiste, vom Hero abgezogen */ 

  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--text); font-size: var(--fs-body); font-weight: 300; line-height: 1.7;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 {
  font-family: var(--display); font-weight: 800; line-height: .94;
  letter-spacing: -.035em; margin: 0 0 .4em; text-wrap: balance;
}
h2 { font-size: var(--fs-h2); letter-spacing: -.028em; }
h3 { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }
p { margin: 0 0 1em; max-width: 65ch; }
a { color: var(--pink); text-underline-offset: 4px; text-decoration-thickness: 1px; }
a:hover { color: var(--orange); }
ul { margin: 0 0 1em; padding-left: 1.1em; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--pink); outline-offset: 3px;
}
::selection { background: var(--pink); color: var(--on-accent); }

.wrap   { width: min(100% - var(--gutter) * 2, var(--wrap));   margin-inline: auto; }
.narrow { width: min(100% - var(--gutter) * 2, var(--narrow)); margin-inline: auto; }

/* Schnitt: jeder Abschnitt landet ganz und ist vorbei. Kein Pinning, kein Halten. */
.cut { padding-block: var(--cut); position: relative; }
.cut--tight { padding-block: clamp(2rem, 1rem + 3vw, 3.5rem); }
.cut--wine { background: var(--bg-2); box-shadow: inset 0 1px 0 var(--line); }

.eyebrow {
  font-family: var(--text); font-size: .7rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--dim);
  margin: 0 0 1.4rem; display: block;
}
.lead { font-size: var(--fs-lead); color: var(--mid); }

.sr {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 1rem; top: 1rem; z-index: 200;
  background: var(--ink); color: var(--bg); padding: .8rem 1.3rem; text-decoration: none;
  transform: translateY(-250%); transition: transform 200ms var(--ease-out);
}
.skip:focus { transform: translateY(0); color: var(--bg); }

.icon { width: 1em; height: 1em; flex: none; fill: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 52px; padding: .85em 1.9em; border: 1px solid transparent;
  border-radius: var(--r-btn);
  font-family: var(--text); font-size: .95rem; font-weight: 500; letter-spacing: .02em;
  text-decoration: none; text-align: center; cursor: pointer; white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 160ms ease,
              border-color 160ms ease, color 160ms ease, filter 160ms ease;
}
.btn:active { transform: scale(.97); transition-duration: 120ms; }
/* background-origin: border-box, sonst setzt der Verlauf erst hinter dem 1px-Rand an
   und wiederholt sich darin. Ergebnis waere ein blauer Streifen am orangen Ende
   und umgekehrt. */
.btn--go { background: var(--grad); background-origin: border-box; color: var(--on-accent); }
.btn--ghost { background: rgba(255,255,255,.04); color: var(--ink); border-color: var(--line-2); }
.btn--wide { width: 100%; }
.btn--sm { min-height: 44px; padding: .55em 1.2em; font-size: .875rem; }
@media (hover: hover) and (pointer: fine) {
  .btn--go:hover { transform: translateY(-2px); filter: brightness(1.08); color: var(--on-accent); }
  .btn--ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); border-color: var(--ink); color: var(--ink); }
}
.btn[disabled] { opacity: .55; cursor: wait; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* =========================================================================
   KOPFZEILE. Laut, nicht minimal. Die Grammatik verlangt das.
   ========================================================================= */
.bar {
  position: sticky; top: 0; z-index: 90;
  background: rgba(11,6,4,.72);
  backdrop-filter: saturate(150%) blur(18px); -webkit-backdrop-filter: saturate(150%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background-color 200ms ease, border-color 200ms ease;
}
.bar.is-stuck { background: rgba(11,6,4,.95); border-bottom-color: var(--line); }
.bar__in { display: flex; align-items: center; gap: 1rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand img { width: 40px; height: 40px; }
.brand b { font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em; line-height: 1; }
.brand span { display: block; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); margin-top: .25rem; }
.bar nav { display: none; }
@media (min-width: 1120px) { .bar nav { display: flex; align-items: center; gap: clamp(.8rem, 1.2vw, 1.6rem); } }
.bar nav a { color: var(--mid); text-decoration: none; font-size: .9rem; padding: .4rem 0; position: relative; }
/* scaleX statt right: laeuft auf der GPU und loest kein Layout aus. */
.bar nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform 300ms var(--ease-out);
}
.bar nav a[aria-current="true"] { color: var(--ink); }
.bar nav a[aria-current="true"]::after { transform: scaleX(1); }
@media (hover: hover) and (pointer: fine) {
  .bar nav a:hover { color: var(--ink); }
  .bar nav a:hover::after { transform: scaleX(1); }
}
.bar .btn { display: none; }
@media (min-width: 640px) { .bar .btn { display: inline-flex; } }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: none; border: 1px solid var(--line-2);
  border-radius: var(--r-btn); cursor: pointer;
}
@media (min-width: 1120px) { .burger { display: none; } }
.burger:active { transform: scale(.97); }
.burger i { position: relative; width: 18px; height: 1.5px; background: var(--ink); display: block; }
/* Nur transform animiert, kein top: sonst rechnet der Browser bei jedem Frame Layout. */
.burger i::before, .burger i::after {
  content: ""; position: absolute; left: 0; top: 0; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform 260ms var(--ease-out);
}
.burger i::before { transform: translateY(-6px); }
.burger i::after  { transform: translateY(6px); }
.burger[aria-expanded="true"] i { background: transparent; }
.burger[aria-expanded="true"] i::before { transform: rotate(45deg); }
.burger[aria-expanded="true"] i::after  { transform: rotate(-45deg); }

.drawer {
  position: fixed; inset: 74px 0 0; z-index: 89; background: var(--bg);
  padding: 2rem var(--gutter) 7rem; overflow-y: auto; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity 190ms var(--ease-out), transform 190ms var(--ease-out);
}
.drawer[data-open="true"] { opacity: 1; transform: translateY(0); pointer-events: auto;
  transition-duration: 260ms; }
.drawer a {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 7vw, 2.2rem);
  letter-spacing: -.03em; color: var(--ink); text-decoration: none;
  padding: .5rem 0; border-bottom: 1px solid var(--line);
}
.drawer .btn { margin-top: 1.75rem; }
body.locked { overflow: hidden; }

/* =========================================================================
   1  HERO. Full-bleed Media, Typo im linken Drittel. Nicht zentriert.
   ========================================================================= */
.hero { position: relative; min-height: calc(100dvh - var(--bar-h)); display: grid; align-items: end; overflow: hidden; padding-top: 4rem; }
.hero__img { position: absolute; inset: 0; z-index: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
/* Scrim nur dort, wo Text sitzt, nicht ueber dem ganzen Bild. */
.hero__img::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(93deg, rgba(11,6,4,.94) 0%, rgba(11,6,4,.86) 34%, rgba(11,6,4,.30) 62%, rgba(11,6,4,.1) 100%),
    linear-gradient(0deg, rgba(11,6,4,.85) 0%, transparent 40%);
}
.hero__in { position: relative; z-index: 1; padding-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.hero h1 { font-size: var(--fs-hero); max-width: 17ch; margin-bottom: .25em; }
.hero h1 em {
  font-style: normal; display: block;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) { .hero h1 em { color: var(--pink); -webkit-text-fill-color: var(--pink); } }
.hero p { font-size: var(--fs-lead); color: var(--mid); max-width: 34ch; margin-bottom: 2rem; }
@media (min-width: 900px) { .hero__in { max-width: 60%; } }

/* =========================================================================
   2  CLAIM-BAND. Die einzige Laufschrift der Seite.
   ========================================================================= */
.band {
  overflow: hidden; padding-block: clamp(.9rem, 2vw, 1.5rem);
  background: var(--grad); color: var(--on-accent);
  border-block: 1px solid rgba(0,0,0,.25);
}
.band__track { display: flex; width: max-content; animation: slide 32s linear infinite; }
.band__track > span {
  font-family: var(--display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(1.1rem, 3.6vw, 2.4rem); text-transform: uppercase;
  padding-right: 2.5rem; white-space: nowrap;
}
.band__track b { font-weight: 800; opacity: .45; padding-right: 2.5rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================================
   4  DIE NAHTSTELLE. Signature Move.
   ========================================================================= */
.seam { position: relative; padding-block: clamp(2rem, 5vw, 4rem) var(--cut); }
.seam__stage { position: relative; width: min(100%, 640px); margin-inline: auto; }
.seam svg { width: 100%; height: auto; display: block; background: var(--surface); }
.seam__tags {
  display: flex; justify-content: space-between; margin-top: .9rem;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--dim);
}
.seam__copy { text-align: center; margin: clamp(2rem, 5vw, 3.5rem) auto 0; max-width: 34ch; }
.seam__copy h2 { margin-bottom: .5rem; }
.seam__copy p { margin-inline: auto; color: var(--mid); }
/* Der Regler traegt Tastatur und Reduced Motion. Sichtbar nur, wenn er gebraucht wird. */
.seam__range { width: min(100%, 420px); margin: 1.5rem auto 0; display: block; accent-color: var(--pink); }

/* =========================================================================
   6  LEISTUNGEN. Asymmetrisches Vier-Kachel-Raster.
   ========================================================================= */
.svc { display: grid; gap: clamp(1rem, 2vw, 1.75rem); align-items: stretch; }
/* Vier gleich grosse Karten, oben buendig. Alle Fotos sind 4:5 hoch; jeder andere
   Zuschnitt (frueher 16:11 bei zwei Karten) schneidet bei Hochformat fast die Haelfte
   des Motivs ab, bei der Haarverlaengerung also gerade die Laenge. */
@media (min-width: 620px)  { .svc { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .svc { grid-template-columns: repeat(4, 1fr); } }
.svc__card {
  position: relative; display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); text-decoration: none; color: inherit; overflow: hidden;
}
.svc__card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--grad); opacity: 0; transition: opacity 260ms var(--ease-out); z-index: 2; }
.svc__media { flex: none; overflow: hidden; aspect-ratio: 4 / 5; background: var(--bg-2); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 260ms var(--ease-out); }
/* Textblock fuellt den Rest der Karte, damit Preis und "Anfragen" bei allen vier auf einer Linie sitzen. */
.svc__body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.1rem, 1.6vw, 1.5rem); }
.svc__body h3 { font-size: clamp(1.15rem, 1rem + .45vw, 1.4rem); }
.svc__body p { color: var(--mid); font-size: .93rem; margin-bottom: 1.2rem; }
.svc__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: auto; border-top: 1px solid var(--line); padding-top: 1rem; }
.svc__price { font-family: var(--display); font-weight: 600; font-size: 1.1rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.svc__go { font-size: .85rem; color: var(--mid); display: inline-flex; align-items: center; gap: .35em; }
@media (hover: hover) and (pointer: fine) {
  .svc__card:hover::before { opacity: 1; }
  .svc__card:hover .svc__media img { transform: scale(1.04); }
  .svc__card:hover .svc__go { color: var(--ink); }
}

/* =========================================================================
   7  ECHTHAAR. Parallax-Split.
   ========================================================================= */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: .9fr 1.1fr; } }
.split__media { position: relative; overflow: hidden; }
.split__media img { width: 100%; will-change: transform; }
.cmp { width: 100%; border-collapse: collapse; margin-top: 2rem; font-size: .93rem; }
.cmp caption { text-align: left; color: var(--mid); font-size: 1.05rem; font-weight: 500;
  padding-bottom: 1.1rem; letter-spacing: .01em; }
.cmp th, .cmp td { text-align: left; padding: .8rem .9rem .8rem 0; }
.cmp thead th { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); font-weight: 500; border-bottom: 1px solid var(--line-2); }
.cmp tbody th { font-weight: 300; color: var(--ink); }
.cmp tbody td { color: var(--mid); }
.cmp tbody td.y { color: var(--ok); }
.cmp tbody tr + tr th, .cmp tbody tr + tr td { border-top: 1px solid var(--line); }

/* =========================================================================
   9  ABLAUF. Nummerierte Schiene, keine Karten.
   ========================================================================= */
.rail { display: grid; gap: clamp(1.75rem, 3vw, 2.5rem); counter-reset: s; }
@media (min-width: 700px)  { .rail { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .rail { grid-template-columns: repeat(4, 1fr); } }
.rail > div { border-top: 1px solid var(--line-2); padding-top: 1.25rem; }
.rail > div::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  display: block; font-family: var(--display); font-weight: 800; font-size: 2.4rem; line-height: 1;
  letter-spacing: -.05em; margin-bottom: .9rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.rail h3 { margin-bottom: .4rem; }
.rail p { color: var(--mid); font-size: .93rem; margin: 0; }
.rail .icon { width: 20px; height: 20px; color: var(--pink); margin-bottom: .6rem; }

/* =========================================================================
   9b  SCHRITT FUER SCHRITT. Drei Fotos, links nach rechts.
   Quadratisch, weil die Vorlagen quadratisch sind: so wird nichts abgeschnitten.
   ========================================================================= */
.fotoschritte {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: clamp(1rem, 2.5vw, 2rem);
}
@media (min-width: 760px) { .fotoschritte { grid-template-columns: repeat(3, 1fr); } }
.fotoschritte > li { margin: 0; }
.fotoschritte__nr {
  display: block; margin-bottom: .9rem;
  font-family: var(--display); font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) {
  .fotoschritte__nr { color: var(--pink); -webkit-text-fill-color: var(--pink); }
}
.fotoschritte__media {
  aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
}
.fotoschritte__media img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================================
   10  DANNI. Portraet bricht aus dem Raster.
   ========================================================================= */
.about { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
/* Bild rechts, Text links. Auf dem Handy bleibt das Bild oben (DOM-Reihenfolge),
   erst ab 900px wandert es per order nach rechts. Der Anschnitt geht nur bis
   gutter weit, damit das Bild bei keiner Breite ueber den Bildschirmrand ragt. */
@media (min-width: 900px) { .about { grid-template-columns: 6fr 5fr; } }
.about__img { position: relative; }
@media (min-width: 900px) { .about__img { order: 2; margin-right: calc(var(--gutter) * -1); } }
.about__img img { width: 100%; }
.about blockquote {
  margin: 0 0 1.5rem; font-family: var(--display); font-weight: 600; letter-spacing: -.025em;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.6rem); line-height: 1.12; color: var(--ink);
}
.about p { color: var(--mid); }
.vals { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1rem; }
.vals li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.vals .icon { width: 19px; height: 19px; color: var(--pink); margin-top: .35em; }
.vals b { font-weight: 500; display: block; }
.vals span { color: var(--mid); font-size: .93rem; }

/* =========================================================================
   11  STIMMEN. Versetztes Raster, kein Karussell.
   ========================================================================= */
.says { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 760px) { .says { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.says figure { margin: 0; background: var(--surface); border: 1px solid var(--line); padding: clamp(1.3rem, 2.5vw, 2rem); }
@media (min-width: 760px) {
  .says figure:nth-child(2) { margin-top: 2.5rem; }
  .says figure:nth-child(3) { margin-top: 1.1rem; }
}
.says .stars { display: flex; gap: .15rem; color: var(--orange); margin-bottom: 1rem; }
.says .stars .icon { width: 15px; height: 15px; }
.says blockquote { margin: 0 0 1.2rem; font-family: var(--display); font-weight: 600; letter-spacing: -.02em;
  font-size: clamp(1.1rem, 1rem + .7vw, 1.4rem); line-height: 1.28; }
.says figcaption { font-size: .84rem; color: var(--dim); }

/* =========================================================================
   12  PREISE. Reine Tabelle, keine Kaesten.
   ========================================================================= */
.rates { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.rates th, .rates td { padding: 1.15rem 0; vertical-align: baseline; text-align: left; }
.rates thead th { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--dim);
  font-weight: 500; border-bottom: 1px solid var(--line-2); padding-bottom: .8rem; }
.rates tbody th { font-weight: 300; color: var(--ink); padding-right: 1.5rem; }
.rates tbody th small { display: block; color: var(--dim); font-size: .84rem; margin-top: .2rem; }
.rates tbody td { text-align: right; white-space: nowrap; font-family: var(--display); font-weight: 600; font-size: 1.15rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
/* Haarlinie nur zwischen Gruppen, nicht unter jeder Zeile. */
.rates tbody tr.grp th, .rates tbody tr.grp td { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.note { color: var(--dim); font-size: .9rem; margin-top: 1.75rem; }

/* =========================================================================
   13  PFLEGE. Scroll-Snap-Band.
   ========================================================================= */
.tips { display: grid; gap: clamp(1rem, 2vw, 1.5rem); margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 640px)  { .tips { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .tips { grid-template-columns: repeat(3, 1fr); } }
.tips > div { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.tips .icon { width: 22px; height: 22px; color: var(--pink); margin-bottom: .8rem; }
.tips h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.tips p { color: var(--mid); font-size: .92rem; margin: 0; }

/* Pflege-Grafiken (9:16). Raster statt Scroll-Band: die Bilder fuellen die Breite und
   passen sich der Ansicht an. Handy: eine Spalte, untereinander. Tablet: 3 Spalten.
   Desktop: alle 5 nebeneinander. Die Breite setzt das Raster, nicht das HTML-Attribut
   width="720"; height:auto haelt das Verhaeltnis. */
.strip { display: grid; grid-template-columns: 1fr; justify-items: center; gap: clamp(.9rem, 1.6vw, 1.4rem); }
@media (min-width: 600px)  { .strip { grid-template-columns: repeat(3, 1fr); justify-items: stretch; } }
@media (min-width: 1040px) { .strip { grid-template-columns: repeat(5, 1fr); } }
.strip img {
  width: min(100%, 420px); height: auto;
  border: 1px solid var(--line); background: var(--surface);
}
@media (min-width: 600px) { .strip img { width: 100%; } }
.strip__note { color: var(--dim); font-size: .8rem; margin-top: .5rem; }

/* =========================================================================
   14  FAQ.
   ========================================================================= */
.faq { max-width: 54rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font-family: var(--display); font-weight: 600; letter-spacing: -.02em;
  font-size: clamp(1.1rem, 1rem + .7vw, 1.45rem); line-height: 1.2; color: var(--ink);
  transition: color 160ms ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%; width: 11px; height: 11px;
  border-right: 1.5px solid var(--pink); border-bottom: 1.5px solid var(--pink);
  transform: translateY(-70%) rotate(45deg); transition: transform 240ms var(--ease-out);
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
@media (hover: hover) and (pointer: fine) { .faq summary:hover { color: var(--pink); } }
.faq__a { padding: 0 2.5rem 1.8rem 0; color: var(--mid); }
.faq__a p { margin: 0; }
/* Transition statt Keyframe: laesst sich beim schnellen Auf und Zu neu ausrichten,
   statt jedes Mal bei null neu zu starten. */
.faq details[open] .faq__a {
  opacity: 1; transform: translateY(0);
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
}
@starting-style { .faq details[open] .faq__a { opacity: 0; transform: translateY(6px); } }

/* =========================================================================
   15  TERMIN. Drei Wege: Anrufen, WhatsApp, Instagram.
   ========================================================================= */
.book { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 960px) { .book { grid-template-columns: 1fr 1fr; } }
.reach { display: grid; gap: .8rem; }
.reach .btn { min-height: 60px; font-size: 1.02rem; justify-content: flex-start; padding-inline: 1.6rem; }
.reach .btn .icon { width: 22px; height: 22px; }
.reach__main { min-height: 68px; font-size: 1.1rem; }
.reach .fine { margin: .6rem 0 0; }

.aside > * + * { margin-top: 1.25rem; }
.aside__box { border: 1px solid var(--line); padding: clamp(1.3rem, 2.5vw, 1.8rem); }
.aside__box h3 { margin-bottom: .6rem; }
.aside__box p { color: var(--mid); font-size: .93rem; }
.aside__box p:last-child { margin-bottom: 0; }
.aside__box address { font-style: normal; color: var(--mid); font-size: .95rem; }
.fine { font-size: .8rem; color: var(--dim); }

/* ---------- Fuss ---------- */
.foot { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4rem) 7rem; }
@media (min-width: 900px) { .foot { padding-bottom: clamp(2.5rem, 5vw, 4rem); } }
.foot a { color: var(--mid); text-decoration: none; }
.foot a:hover { color: var(--ink); text-decoration: underline; }
.foot__grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .foot__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.foot h3 { font-family: var(--text); font-weight: 500; font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 1.1rem; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.foot__soc { display: flex; gap: .6rem; margin-top: 1.3rem; }
.foot__soc a { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: var(--r-btn);
  display: grid; place-items: center; color: var(--ink); }
.foot__soc a:hover { background: rgba(255,255,255,.08); border-color: var(--line-2); text-decoration: none; }
.foot__soc .icon { width: 19px; height: 19px; }
.foot__end { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .83rem; color: var(--dim); }
.linkbtn { background: none; border: 0; padding: 0; cursor: pointer; color: var(--mid); font-size: inherit; }
.linkbtn:active { transform: scale(.97); }
.linkbtn { transition: transform 120ms var(--ease-out), color 160ms ease; display: inline-block; }
@media (hover: hover) and (pointer: fine) { .linkbtn:hover { color: var(--ink); text-decoration: underline; } }

/* ---------- Mobil-Leiste ---------- */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85; display: flex; gap: .6rem;
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(11,6,4,.95); backdrop-filter: blur(14px); border-top: 1px solid var(--line);
  /* Austritt schneller als Eintritt: das System antwortet schnell, es kuendigt langsam an. */
  transform: translateY(115%); transition: transform 220ms var(--ease-out);
}
.mbar.on { transform: translateY(0); transition-duration: 320ms; }
@media (min-width: 900px) { .mbar { display: none; } }
.mbar .btn { flex: 1; }
.mbar .btn--ico { flex: 0 0 56px; padding: 0; }
.mbar .btn--ico .icon { width: 22px; height: 22px; }

/* ---------- Cookie-Einwilligung ---------- */
.cc { position: fixed; inset: auto 0 0 0; z-index: 150; padding: var(--gutter); display: none; }
.cc[data-open="true"] { display: block; }
.cc__panel {
  width: min(100%, 660px); margin-inline: auto; background: var(--surface); border: 1px solid var(--line-2);
  padding: clamp(1.3rem, 3vw, 2rem); max-height: min(84vh, 720px); overflow-y: auto;
  animation: ccin 300ms var(--ease-out);
}
@keyframes ccin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.cc__panel h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.cc__panel p { font-size: .88rem; color: var(--mid); }
.cc__act { display: grid; gap: .6rem; margin-top: 1.3rem; }
@media (min-width: 560px) { .cc__act { grid-template-columns: 1fr 1fr; } }
.cc__act .btn { width: 100%; }
.cc__act .cc__more { grid-column: 1 / -1; }
.cc__cats { margin-top: 1.3rem; display: grid; gap: .7rem; }
.cc__cats[hidden] { display: none; }
.cc-cat { border: 1px solid var(--line); padding: 1rem; display: grid; grid-template-columns: auto 1fr; gap: .3rem .9rem; align-items: start; }
.cc-cat input { width: 22px; height: 22px; margin: .15rem 0 0; accent-color: var(--pink); cursor: pointer; }
.cc-cat input:disabled { cursor: not-allowed; opacity: .55; }
.cc-cat label { font-weight: 500; cursor: pointer; }
.cc-cat p { grid-column: 2; margin: 0; font-size: .83rem; color: var(--dim); }
.cc__legal { margin-top: 1.2rem; font-size: .79rem; color: var(--dim); }
.cc__back { position: fixed; inset: 0; background: rgba(4,3,6,.65); z-index: 149; display: none; }
.cc__back[data-open="true"] { display: block; }

/* ---------- Rechtstexte ---------- */
.legal { padding-block: clamp(2.5rem, 6vw, 4.5rem) var(--cut); }
.legal h1 { font-size: clamp(2.2rem, 1.2rem + 4vw, 4rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem); margin-top: 3rem; }
.legal h3 { font-size: 1.15rem; margin-top: 1.8rem; }
.legal p, .legal li { color: var(--mid); }
.legal .ph { background: rgba(245,161,30,.16); border-bottom: 1px dashed var(--orange); padding: .05em .4em; color: var(--ink); }
.legal__toc { background: var(--surface); border: 1px solid var(--line); padding: 1.6rem; margin-bottom: 2.5rem; }
.legal__toc h2 { margin-top: 0; font-family: var(--text); font-weight: 500; font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--dim); }
.legal__d { font-size: .84rem; color: var(--dim); }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(24px); }
.rv.on { opacity: 1; transform: none;
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); transition-delay: var(--d, 0ms); }
.no-js .rv { opacity: 1; transform: none; }

/* ---------- Reduced motion: weniger und sanfter, nicht null ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv, .no-js .rv { opacity: 1; transform: none; transition: none; }
  .band__track { animation: none; }
  .split__media img { transform: none !important; }
  .cc__panel, .faq details[open] .faq__a { transition: none; }
  .btn:hover, .svc__card:hover .svc__media img { transform: none; }
  .btn { transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, filter 120ms ease; }
  /* Weniger und sanfter, nicht null: der Druck bleibt spuerbar, nur ohne Bewegung. */
  .btn:active { transform: none; filter: brightness(.85); }
}

@media print {
  .bar, .mbar, .cc, .cc__back, .band, .foot__soc, .btn, .lb { display: none !important; }
  body { background: #fff; color: #000; }
}

/* Linkzeile am Fuss der Rechtstexte: Abstand statt Satzzeichen als Trenner. */
.legal__links { display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; margin-top: 3rem; }
