/* =========================================================
   BEAUTYSTAS — Onepager
   Design tokens from official Moodboard
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face { font-family: "Figtree"; src: url("fonts/Figtree-Regular.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Figtree"; src: url("fonts/Figtree-Italic.ttf") format("truetype"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Figtree"; src: url("fonts/Figtree-Medium.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Figtree"; src: url("fonts/Figtree-SemiBold.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Figtree"; src: url("fonts/Figtree-Bold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Figtree"; src: url("fonts/Figtree-ExtraBold.ttf") format("truetype"); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Figtree"; src: url("fonts/Figtree-Black.ttf") format("truetype"); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Roca"; src: url("fonts/roca.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }

:root {
  /* Brand */
  --platin: #9b9287;       /* primary */
  --fudge: #726d68;        /* secondary */
  --ink: #3a3938;          /* additional 1, text */
  --powder: #c7b299;       /* additional 2 */

  /* Surfaces */
  --cream: #f4ede4;        /* warm tinted */
  --paper: #faf6f1;        /* page background */
  --bone: #efe7dc;
  --line: rgba(58,57,56,0.14);
  --line-soft: rgba(58,57,56,0.08);

  /* Typo scale (fluid) */
  --fs-mega: clamp(72px, 13vw, 240px);
  --fs-display: clamp(40px, 6vw, 112px); /* einheitliche Größe aller großen Section-Headlines (= Section 2) */
  --fs-hl1: clamp(44px, 6.2vw, 116px);
  --fs-hl2: clamp(32px, 4.4vw, 80px);
  --fs-hl3: clamp(24px, 2.6vw, 44px);
  --fs-subline: clamp(20px, 1.7vw, 28px);
  --fs-body: clamp(16px, 1.05vw, 18px);
  --fs-small: 13px;
  --fs-micro: 11px;

  --tracking-headline: -0.06em;
  --tracking-claim: 0.16em;      /* approx +80 */

  /* Container */
  --max: 1480px;
  --gut: clamp(20px, 4vw, 64px);

  /* Höhe der fixierten Navigation (für Sticky-Offsets) — fester, solider Wert.
     Nav ist ~97px hoch; 100px lässt etwas Luft. KEIN JS mehr, das das überschreibt. */
  --nav-h: 100px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Figtree", system-ui, sans-serif;
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--ink); color: var(--paper); }

/* ---------- Type helpers ---------- */
.f-bold { font-weight: 700; }
.f-med  { font-weight: 500; }
.f-sb   { font-weight: 600; }

.hl-1, .hl-2, .hl-mega, .hl-display {
  font-family: "Figtree";
  font-weight: 700;
  letter-spacing: var(--tracking-headline);
  line-height: 0.94;
  text-wrap: balance;
}
.hl-mega    { font-size: var(--fs-mega); line-height: 0.86; }
.hl-display { font-size: var(--fs-display); line-height: 0.9; }
.hl-1       { font-size: var(--fs-hl1); }
.hl-2       { font-size: var(--fs-hl2); line-height: 0.96; }
.hl-3       { font-size: var(--fs-hl3); line-height: 1.06; font-weight: 700; letter-spacing: -0.025em; }

.subline {
  font-family: "Figtree";
  font-weight: 500;
  font-size: var(--fs-subline);
  line-height: 1.42;
  color: var(--fudge);
  max-width: 60ch;
  text-wrap: pretty;
}

.claim {
  font-family: "Figtree";
  font-weight: 600;
  font-size: 12px;
  letter-spacing: var(--tracking-claim);
  text-transform: uppercase;
  color: var(--fudge);
}
.claim--ink { color: var(--ink); }
.claim--paper { color: var(--paper); }

.buzz {
  font-family: "Roca", "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.005em;
}

.micro {
  font-family: "Figtree";
  font-weight: 500;
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fudge);
}

.tiny {
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--fudge);
}

.body p { max-width: 60ch; }
.body p + p { margin-top: 1em; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gut);
}

section { position: relative; }

.section-pad   { padding-block: clamp(96px, 12vw, 200px); }
.section-pad-s { padding-block: clamp(72px, 8vw, 120px); }

/* ---------- Buttons (fully rounded) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px 18px 32px;
  border-radius: 999px;
  font-family: "Figtree";
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  background: var(--ink);
  color: var(--paper);
}
.btn:hover { transform: translateY(-2px); background: var(--fudge); }
.btn .arr { transition: transform .25s ease; display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.btn--paper {
  background: var(--paper);
  color: var(--ink);
}
.btn--paper:hover { background: var(--powder); color: var(--ink); }

.btn--ghost-paper {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244,237,228,0.55);
}
.btn--ghost-paper:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn--lg {
  padding: 26px 44px;
  font-size: 17px;
}
@media (max-width: 560px) {
  /* 26/44 + 17px ergaben 366px — der Button lief 31px über den Seitenrand und
     11px aus dem Viewport (von .final { overflow: hidden } nur abgeschnitten).
     .btn hat bewusst `white-space: nowrap`, der Pill darf also nicht umbrechen
     → Padding/Font reduzieren. 307px passt auf 375 und 360. Bleibt höher und
     größer als ein Standard-.btn, behält also die CTA-Betonung. */
  .btn--lg { padding: 22px 26px; font-size: 15.5px; }
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Figtree";
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  background: none; border: 0; padding: 0;
  transition: color .25s ease;
}
.btn-arrow .arr { transition: transform .25s ease; }
.btn-arrow:hover { color: var(--fudge); }
.btn-arrow:hover .arr { transform: translateX(6px); }

/* ---------- Image slot styling override ---------- */
image-slot {
  --is-bg: var(--bone);
  --is-fg: var(--fudge);
  --is-border: rgba(58,57,56,0.10);
}

.img-frame {
  position: relative;
  overflow: hidden;
  background: var(--bone);
}
.img-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fudge);
  background: rgba(244,237,228,0.85);
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px var(--gut);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
  border-bottom-color: var(--line-soft);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.nav__brand-img {
  height: 38px;
  width: auto;
  display: block;
  filter: saturate(0.5);
}
.nav__links {
  display: flex; gap: 38px; align-items: center;
  font-size: 14px; letter-spacing: 0.02em;
  color: var(--ink);
}
.nav__links a { transition: color .2s ease; }
.nav__links a:hover { color: var(--fudge); }
.nav__cta { display: flex; align-items: center; gap: 10px; }

/* --- Burger (nur ≤880px) --- */
.nav__burger {
  display: none;
  width: 44px; height: 44px;          /* 44px = Mindest-Touchziel */
  padding: 0; border: 0; background: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s ease;
}
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* --- Mobile-Panel --- */
.nav__mobile {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 49;
  display: flex; flex-direction: column;
  padding: clamp(16px, 5vw, 32px) var(--gut) calc(env(safe-area-inset-bottom) + 32px);
  background: rgba(250, 246, 241, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a:not(.btn) {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: clamp(22px, 5.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__mobile-cta { margin-top: 28px; align-self: flex-start; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  /* Logo + CTA + Burger passen sonst nicht nebeneinander (≈465px auf 375px Screen).
     Logo kleiner, CTA wandert ins Mobile-Panel. */
  .nav__brand-img { height: 28px; }
  .nav__cta > .btn { display: none; }
}
/* Panel existiert nur mobil — nie im Desktop-DOM sichtbar */
@media (min-width: 881px) { .nav__mobile { display: none !important; } }

/* =========================================================
   SECTION 1 — HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  background: var(--paper);
  padding-top: 96px;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  /* Gestapelt kommt das Bild nach oben — vor „we care about your beauty".
     Per order statt DOM-Umbau: im Zweispalter bleibt es rechts. */
  .hero__image { order: -1; }
}
.hero__text {
  padding: clamp(72px, 8vw, 140px) clamp(20px, 4vw, 64px) clamp(56px, 6vw, 96px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 56px;
}
/* Oberer Block (Eyebrow + Headline + Subline + CTAs) zusätzlich horizontal eingerückt,
   damit er nicht so knapp an den Rändern sitzt. Meta-Zeile unten bleibt unberührt. */
.hero__lead {
  padding-inline: clamp(0px, 2.4vw, 52px);
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px;   /* weiter runter rücken */
  margin-bottom: 2px; /* sehr knapp an der Headline */
}
/* "we care about your beauty" — in Roca, ohne Letter-Spacing */
.hero__eyebrow .claim {
  font-family: "Roca", serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  font-size: 20px;
  line-height: 1; /* entfernt die zusätzliche Zeilenbox-Luft unter dem Text */
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--powder);
}
.hero__h1 {
  font-family: "Figtree";
  font-weight: 700;
  font-size: clamp(36px, 5vw, 98px);
  line-height: 0.92;
  letter-spacing: var(--tracking-headline);
  color: var(--ink);
  text-wrap: balance;
}
.hero__h1 .accent { color: var(--platin); }
.hero__h1 em {
  font-family: "Roca", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--platin);
}
.hero__sub {
  margin-top: 28px;
  max-width: 50ch;
  font-size: clamp(16px, 1.35vw, 22px);
}
.hero__ctas {
  margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
@media (max-width: 560px) {
  /* Drei Spalten ergaben auf 375px 121/103/63px — die dritte war unlesbar. */
  .hero__meta { grid-template-columns: 1fr; gap: 18px; }
}
.hero__meta-item .num {
  font-family: "Figtree"; font-weight: 700;
  font-size: clamp(15px, 1.6vw, 28px); letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.hero__meta-item .lbl {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--fudge);
  line-height: 1.4;
}

.hero__image {
  position: relative;
  background: var(--bone);
  overflow: hidden;
}
.hero__image image-slot { width: 100%; height: 100%; min-height: 480px; }
.hero__image-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__badge {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  top: clamp(120px, 16vw, 220px);
  background: rgba(244,237,228,0.95);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  z-index: 3;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 99px; background: #6a8c5e; }

.hero__softly {
  position: absolute;
  z-index: 3;
  right: 0; bottom: clamp(20px, 4vw, 60px);
  padding-right: clamp(28px, 4vw, 64px);
  text-align: right;
  pointer-events: none;
}
.hero__softly-img {
  width: clamp(74px, 9.1vw, 130px);
  height: auto;
  display: block;
  margin-left: auto;
}

/* =========================================================
   SECTION 2 — USP-Balken (scroll-scrubbed Video-Stage)
   ========================================================= */
/* Hoher Wrapper liefert die Scroll-Distanz:
   100vh "Entry" (Video 0→20%) + 300vh "Sticky" (Video 20→100%).
   --stage2-h steuert die Gesamthöhe; Sticky-Anteil = --stage2-h - 100vh. */
.usp-stage {
  --stage2-h: 400vh;          /* Scroll-Distanz der Stage */
  --stage2-vid-h: clamp(360px, 64vh, 720px); /* Höhe des Video-Panels (nicht volle Höhe) */
  --stage2-vid-left: 44%;     /* linke Kante des Video-Panels (rechts andocken) */
  position: relative;
  height: var(--stage2-h);
  background: var(--cream);
}
.usp-stage__sticky {
  position: sticky;
  top: 100px;                            /* fest = Nav-Höhe, unter der Nav andocken */
  height: calc(100vh - 100px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.usp-stage__video {
  position: absolute;
  /* Panel oben-rechts: linke Kante per Variable, explizite Breite bis zum
     echten rechten Viewport-Rand (width:auto stretcht <video> als Replaced
     Element NICHT — daher explizit rechnen). */
  top: 0;
  left: var(--stage2-vid-left);
  width: calc(100% - var(--stage2-vid-left));
  height: var(--stage2-vid-h);
  object-fit: cover;
  object-position: top right; /* Frame rechts ausrichten, Crop-Fokus oben */
  z-index: 0;
  pointer-events: none;
  /* Weiches Auslaufen nach links, rechts UND unten — Mitte bleibt voll
     sichtbar (nicht abgeschwächt), nur die Kanten lösen sich auf.
     Oben bleibt bündig (Andockpunkt unter der Nav). */
  -webkit-mask-image: linear-gradient(to left,   #000 78%, transparent 100%),
                      linear-gradient(to right,  #000 90%, transparent 100%),
                      linear-gradient(to bottom, #000 72%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image: linear-gradient(to left,   #000 78%, transparent 100%),
                      linear-gradient(to right,  #000 90%, transparent 100%),
                      linear-gradient(to bottom, #000 72%, transparent 100%);
          mask-composite: intersect;
}
.usp-stage__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
/* Innerhalb der Stage: cremefarbenen .usp-Hintergrund entfernen + große
   Section-Paddings neutralisieren, damit der Block in 100vh zentriert sitzt. */
.usp-stage__content.usp { background: transparent; }
.usp-stage__content .usp__head { padding-top: 0; padding-bottom: clamp(28px, 4vw, 56px); }
.usp-stage__content .usp__grid { padding-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  /* Kein Scrubbing-Pin bei reduzierter Bewegung: Stage als normale Section. */
  .usp-stage { height: auto; }
  .usp-stage__sticky { position: static; height: auto; min-height: 60vh; }
}

@media (max-width: 880px) {
  /* Der gepinnte Scrub geht auf Mobile nicht auf: Inhalt ~1000px, Sticky-Fenster
     nur ~712px → der untere Teil wurde von overflow:hidden abgeschnitten. Und das
     Video blieb bei left:44% ein ~210px-Streifen. Deshalb hier: Pin auflösen,
     Video als ruhiger, voller Auftakt über dem Textblock. Der Scrub in app.js
     schaltet sich unter 880px selbst ab. */
  .usp-stage { height: auto; }
  .usp-stage__sticky {
    position: static;
    height: auto;
    display: block;
    overflow: visible;
  }
  .usp-stage__video {
    position: relative;
    left: 0;
    width: 100%;
    height: clamp(200px, 34vh, 300px);
    display: block;
    object-position: center;
    /* nur noch unten weich auslaufen — seitliche Fades ergeben bei voller
       Breite keinen Sinn mehr */
    -webkit-mask-image: linear-gradient(to bottom, #000 74%, transparent 100%);
    -webkit-mask-composite: source-over;
            mask-image: linear-gradient(to bottom, #000 74%, transparent 100%);
            mask-composite: add;
  }
}

.usp {
  background: var(--cream);
}
.usp__head {
  padding-top: clamp(80px, 9vw, 140px);
  padding-bottom: clamp(40px, 5vw, 70px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end;
}
@media (max-width: 880px) { .usp__head { grid-template-columns: 1fr; } }
.usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-bottom: clamp(80px, 9vw, 140px);
  border-top: 1px solid var(--line);
}
@media (max-width: 980px) { .usp__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .usp__grid { grid-template-columns: 1fr; } }
.usp__cell {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.usp__cell .micro { color: var(--platin); }   /* Eyebrow einheitlich Platin (wie Section 6) */
.usp__cell p { margin: 6px 0 0; color: var(--fudge); font-size: 15px; line-height: 1.55; } /* gemeinsamer Card-Standard */
.usp__cell:last-child { border-right: 0; }
.usp__cell:not(:first-child) { padding-left: 28px; }
/* Erste Card: gleiches linkes Padding wie die anderen, damit die
   Beige-Hinterlegung sauber eingerückt ist (nicht am Inhalt kleben). */
.usp__cell:first-child { padding-left: 28px; }
/* Die senkrechte Trennlinie trennt nur NEBENeinander liegende Karten. Beim
   Umbruch auf 2 Spalten stünde sie sonst als Strich am rechten Grid-Rand. */
@media (max-width: 980px) {
  .usp__cell:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  /* Einspaltig: Linie wandert nach unten, Einrückung raus (das linke Padding
     diente nur der Beige-Hinterlegung, die hier ohnehin nicht mehr läuft) —
     so fluchtet der Karten-Text mit der Headline. */
  .usp__cell,
  .usp__cell:first-child,
  .usp__cell:not(:first-child) { padding: 28px 0; }
  .usp__cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .usp__cell:last-child { border-bottom: 0; }
}
.usp__num {
  font-family: "Roca", serif; font-style: italic;
  color: var(--platin);
  font-size: 22px;
  margin-bottom: 8px;
}
/* Sticky-Highlight: jeweilige Karte ganz dezent mit Beige hinterlegen,
   smooth von Punkt zu Punkt. Am Schluss ist keine Karte mehr hinterlegt. */
.usp__cell {
  transition: background-color .55s ease;
}
.usp__cell.is-active {
  background-color: rgba(199, 178, 153, 0.22);
}
.usp__title {
  font-family: "Figtree"; font-weight: 700;
  font-size: clamp(22px, 2vw, 34px); letter-spacing: -0.02em; line-height: 1.1; /* gemeinsamer Card-Standard */
  color: var(--ink);
}

/* =========================================================
   SECTION 3 — Fünf Prinzipien (sticky left + scroll right)
   ========================================================= */
.principles {
  background: var(--ink);
  color: var(--paper);
}
.principles .claim { color: var(--powder); }
.principles__layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
@media (max-width: 980px) { .principles__layout { grid-template-columns: 1fr; } }
.principles__sticky {
  position: sticky;
  top: 100px;            /* fest = Nav-Höhe (wie Section 2), unter der Nav andocken */
  align-self: start;
}
.principles__sticky .hl-display { color: var(--paper); margin: 22px 0 28px; }
.principles__sticky .subline { color: rgba(244,237,228,0.65); }
/* Muss NACH der Basis-Regel stehen — gleiche Spezifität, sonst gewinnt sticky.
   Einspaltig gibt es keine zweite Spalte zum Mitlaufen, der Block klebte sonst
   über seiner eigenen Liste. Analog zu .analysis__sticky. */
@media (max-width: 980px) { .principles__sticky { position: static; } }

.principles__signet {
  margin-top: 40px;
  width: 110px; height: auto;
  opacity: 0.55;
}

.principles__list {
  display: flex; flex-direction: column;
  gap: 0;
}
.principle {
  padding: 44px 0;
  border-top: 1px solid rgba(244,237,228,0.14);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  align-items: start;
}
.principle:last-child { border-bottom: 1px solid rgba(244,237,228,0.14); }
.principle__num {
  font-family: "Roca", serif; font-style: italic;
  color: var(--powder);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.principle__title {
  font-family: "Figtree"; font-weight: 700;
  font-size: clamp(26px, 2.6vw, 42px); letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--paper);
}
.principle__body {
  font-family: "Figtree";
  font-size: clamp(15px, 1.05vw, 17px);
  color: rgba(244,237,228,0.72);
  max-width: 56ch;
  line-height: 1.55;
}

/* =========================================================
   SECTION 4 — Wo stehen Sie (Karten)
   ========================================================= */
.paths { background: var(--paper); }
/* Headline über volle Breite, Text darunter */
.paths__head { margin-bottom: 70px; }
.paths__head .subline { margin-top: 22px; max-width: 68ch; }

.paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .paths__grid { grid-template-columns: 1fr; } }
.path-card {
  display: flex; flex-direction: column;
  background: var(--cream);
  border-radius: 28px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.path-card:hover { transform: translateY(-6px); }
.path-card__image {
  aspect-ratio: 4 / 5;
  position: relative;
  background: var(--bone);
}
.path-card__image image-slot { width: 100%; height: 100%; --is-radius: 0; }
.path-card__image-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.path-card__tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(244,237,228,0.95); border-radius: 999px;
  padding: 7px 14px; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); z-index: 2; font-weight: 600;
}
.path-card__body {
  padding: 30px 30px 34px;
  display: flex; flex-direction: column;
  flex: 1;
  gap: 14px;
}
.path-card__title {
  font-family: "Figtree"; font-weight: 700;
  font-size: clamp(26px, 2.1vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.path-card__body p {
  color: var(--fudge);
  font-size: 15.5px;
  line-height: 1.55;
  flex: 1;
}
.path-card__link {
  margin-top: 8px;
}

.paths__cta {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
  display: flex; gap: 40px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.paths__cta p {
  font-family: "Figtree"; font-weight: 500;
  font-size: clamp(22px, 2.2vw, 36px); letter-spacing: -0.02em;
  line-height: 1.15; max-width: 22ch;
  color: var(--ink);
}
/* Avatar-Block der Gründerin */
.paths__author {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center; flex-shrink: 0;
}
.paths__avatar {
  width: 104px; height: 104px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.paths__author-name {
  font-family: "Roca", serif; font-style: italic;
  font-size: 18px; color: var(--ink); margin-top: 4px;
}
.paths__author-role {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fudge);
}

/* =========================================================
   SECTION 5 — Hautanalyse (Editorial split)
   ========================================================= */
.analysis { background: var(--bone); position: relative; }
.analysis__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .analysis__layout { grid-template-columns: 1fr; } }
/* Linke Spalte: Eyebrow + Bild-Card — sticky, läuft bis Section-Ende mit */
.analysis__sticky {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 880px) { .analysis__sticky { position: static; } }
.analysis__sticky .claim { display: block; margin-bottom: clamp(20px, 2.5vw, 32px); }
/* Headline rechts, oben auf Höhe des Eyebrows links */
.analysis__h2 { color: var(--ink); margin-bottom: clamp(32px, 4vw, 56px); }
.analysis__h2 em {
  font-family: "Roca", serif; font-style: italic; font-weight: 400;
  color: var(--platin);
}
.analysis__image {
  aspect-ratio: 4 / 5;
  position: relative;
  border-radius: 28px;          /* abgerundet wie die anderen Bild-Cards */
  overflow: hidden;
  background: var(--platin);
}
.analysis__image image-slot { width: 100%; height: 100%; --is-radius: 0; }
.analysis__image-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.analysis__sticker {
  position: absolute; top: 28px; left: 28px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px; padding: 18px 22px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  z-index: 2; font-weight: 600;
}

.analysis__text > p:first-child {
  font-family: "Figtree"; font-weight: 500;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.45; color: var(--ink); max-width: 38ch;
}
.analysis__text > p {
  margin-top: 26px;
  color: var(--fudge);
}

.analysis__list {
  margin-top: 40px;
  list-style: none; padding: 0;
  border-top: 1px solid var(--line);
}
.analysis__list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  font-family: "Figtree"; font-weight: 500;
  font-size: 16.5px;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.4;
}
.analysis__list li .n {
  font-family: "Roca", serif; font-style: italic;
  font-size: 18px; color: var(--platin);
  line-height: 1.5;
}
.analysis__footer {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  margin-top: 36px;
}
.analysis__footer .tiny { max-width: 32ch; }

/* =========================================================
   SECTION 6 — Klassische Behandlungen
   ========================================================= */
.classic { background: var(--paper); }
.classic__head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
@media (max-width: 880px) { .classic__head { grid-template-columns: 1fr; } }

.classic__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.classic__cell {
  padding: 36px 28px 36px 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
/* etwas mehr Luft nur vor dem Beschreibungstext */
.classic__cell p { margin-top: 6px; }
.classic__cell .micro { color: var(--platin); }
.classic__cell .hl-3 {
  color: var(--ink);
  margin: 0;                    /* h3-Default-Margin raus (war Ursache der großen Lücken) */
  font-size: clamp(22px, 2vw, 34px); line-height: 1.1; /* gemeinsamer Card-Standard (wie Section 2) */
}
.classic__cell p { margin-bottom: 0; }  /* p-Default-Bottom-Margin raus */
.classic__cell p {
  color: var(--fudge);
  font-size: 15px;
  line-height: 1.55;
}
/* 4 Karten nebeneinander (12er-Grid → je span 3) */
.classic__cell--a,
.classic__cell--b,
.classic__cell--c,
.classic__cell--d { grid-column: span 3; }
@media (max-width: 980px) {
  .classic__cell--a, .classic__cell--b,
  .classic__cell--c, .classic__cell--d { grid-column: span 6; }
}
@media (max-width: 560px) {
  .classic__cell--a, .classic__cell--b,
  .classic__cell--c, .classic__cell--d { grid-column: span 12; }
}

.classic__featured {
  margin-top: 60px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}
@media (max-width: 980px) { .classic__featured { grid-template-columns: 1fr; } }
.classic__featured-image {
  position: relative;
  background: var(--platin);
  min-height: 460px;
}
.classic__featured-image image-slot { width: 100%; height: 100%; --is-radius: 0; }
.classic__featured-image-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.classic__featured-body {
  padding: clamp(36px, 4vw, 64px);
  display: flex; flex-direction: column; gap: 22px;
}
.classic__featured-body .claim { color: var(--powder); }
.classic__featured-body .hl-2 { color: var(--paper); }
.classic__featured-body p { color: rgba(244,237,228,0.72); max-width: 52ch; }
.classic__featured-body ul {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.classic__featured-body ul li {
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  color: var(--paper);
  line-height: 1.5;
}
.classic__featured-body ul li::before {
  content: ""; position: absolute; left: 0; top: 0.7em;
  width: 16px; height: 1px; background: var(--powder);
}
.classic__bridge {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,237,228,0.18);
  display: flex; justify-content: space-between; gap: 28px; align-items: center; flex-wrap: wrap;
}
.classic__bridge p {
  max-width: 36ch;
  font-family: "Figtree"; font-weight: 500;
  font-size: 16px; color: var(--paper);
}

/* =========================================================
   SECTION 7 — Spezialbehandlungen
   ========================================================= */
.special { background: var(--cream); }
.special__head { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
@media (max-width: 880px) { .special__head { grid-template-columns: 1fr; } }

.special__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}
@media (max-width: 980px) { .special__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .special__grid { grid-template-columns: 1fr; } }
.sp-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 30px 28px 32px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 240px;
  transition: transform .25s ease, background .25s ease;
}
.sp-card:hover { transform: translateY(-4px); background: var(--bone); }
.sp-card__num {
  font-family: "Roca", serif; font-style: italic;
  color: var(--platin);
  font-size: 18px;
}
.sp-card__title {
  font-family: "Figtree"; font-weight: 700;
  font-size: clamp(22px, 1.7vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.sp-card__title sup { font-size: 0.55em; vertical-align: super; font-weight: 600; letter-spacing: 0; }
.sp-card__soon {
  display: inline-block;
  margin-top: -6px;    /* den 12px-Flex-Gap zum Titel fast aufheben → sitzt direkt darunter */
  font-family: "Roca", serif; font-style: italic;
  font-size: 22px; line-height: 1.1; color: var(--platin);
}
.sp-card p { color: var(--fudge); font-size: 15px; line-height: 1.5; flex: 1; }

.spotlight {
  background: var(--paper);
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
}
@media (max-width: 980px) { .spotlight { grid-template-columns: 1fr; } }
.spotlight__image {
  position: relative;
  background: var(--platin);
  min-height: 540px;
}
.spotlight__image image-slot { width: 100%; height: 100%; --is-radius: 0; }
.spotlight__image-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight__body {
  padding: clamp(40px, 4vw, 72px);
  display: flex; flex-direction: column; gap: 24px;
}
.spotlight__body .hl-2 em {
  font-family: "Roca", serif; font-style: italic; font-weight: 400; color: var(--platin);
}
.spotlight__rows { margin-top: 12px; display: flex; flex-direction: column; gap: 28px; }
.spotlight__row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.spotlight__row:first-child { border-top: 0; padding-top: 0; }
.spotlight__row .lbl { font-family: "Figtree"; font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--platin); padding-top: 4px; }
.spotlight__row .val { color: var(--ink); font-size: 16px; line-height: 1.55; }
.spotlight__row .val ul { padding: 0; margin: 6px 0 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.spotlight__row .val ul li { padding-left: 18px; position: relative; }
.spotlight__row .val ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 8px; height: 1px; background: var(--platin); }

/* =========================================================
   SECTION 8 — Mobile Kosmetik
   ========================================================= */
.mobile {
  background: var(--paper);
  position: relative;
}
.mobile__hero {
  position: relative;
  min-height: 620px;
  background: var(--bone);
  overflow: hidden;
}
.mobile__hero image-slot { width: 100%; height: 100%; position: absolute; inset: 0; --is-radius: 0; }
.mobile__hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.mobile__hero::after {
  content: ""; position: absolute; inset: 0;
  /* links abgedunkelt, nach rechts auslaufend + dezenter Verlauf nach unten */
  background:
    linear-gradient(90deg, rgba(58,57,56,0.60) 0%, rgba(58,57,56,0.30) 38%, rgba(58,57,56,0) 65%),
    linear-gradient(180deg, rgba(58,57,56,0) 40%, rgba(58,57,56,0.45) 100%);
  z-index: 1; pointer-events: none;
}
.mobile__overlay {
  position: relative;
  z-index: 2;
  padding: clamp(70px, 8vw, 130px) clamp(20px, 4vw, 64px) clamp(50px, 5vw, 80px);
  max-width: 880px;
}
.mobile__overlay .hl-display {
  color: var(--paper);
  /* AUSNAHME: Section 08 bleibt bewusst größer als die einheitlichen Headlines */
  font-size: clamp(48px, 7.2vw, 132px);
}
.mobile__overlay .hl-display em {
  font-family: "Roca", serif; font-style: italic; font-weight: 400;
  color: var(--powder);
}
.mobile__overlay .subline { color: rgba(244,237,228,0.85); }
.mobile__note {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(244,237,228,0.6);
  max-width: 56ch;
}
.mobile__body {
  padding: clamp(60px, 7vw, 100px) 0 clamp(80px, 9vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 880px) { .mobile__body { grid-template-columns: 1fr; } }
.mobile__body p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
}
.mobile__body p + p { margin-top: 1em; }
.mobile__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-self: end; }

/* =========================================================
   SECTION 9 — Preise
   ========================================================= */
.prices {
  background: var(--ink);
  color: var(--paper);
}
.prices .claim { color: var(--powder); }
.prices .hl-display { color: var(--paper); }
.prices__head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; margin-bottom: 70px; }
@media (max-width: 880px) { .prices__head { grid-template-columns: 1fr; } }
.prices__head .subline { color: rgba(244,237,228,0.7); }

.price-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(244,237,228,0.2);
}
.price-table tr { border-bottom: 1px solid rgba(244,237,228,0.14); transition: background .2s ease; }
.price-table tr:hover { background: rgba(244,237,228,0.04); }
.price-table td {
  padding: 26px 8px;
  font-family: "Figtree"; font-weight: 500;
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: -0.015em;
  color: var(--paper);
  vertical-align: middle;
}
.price-table td:first-child { width: 70%; }
.price-table td:last-child { text-align: right; font-weight: 600; }
.price-table td .ab {
  font-family: "Roca", serif; font-style: italic;
  font-weight: 400; font-size: 14px; color: var(--powder);
  margin-right: 8px;
}
.price-table td .uv {
  font-family: "Figtree"; font-weight: 500;
  font-size: 12px; letter-spacing: 0;
  color: rgba(244,237,228,0.5);
  margin-right: 14px; white-space: nowrap;
}
@media (max-width: 560px) {
  /* nowrap-Notiz + 70/30-Split sprengten die Tabelle (→ 40px Seiten-Scroll).
     Notiz stapelt jetzt über den Preis, Spalten teilen sich frei auf. */
  .price-table td { padding: 18px 0; font-size: 16px; }
  .price-table td:first-child { width: auto; }
  /* Rechtsbündiger Preis endete exakt auf dem Seitenrand (20px) und wirkte
     dadurch klebend — der linksbündige Name daneben hat optisch Luft durch den
     Flattersatz. Nur rechts einrücken, damit der Name bündig zur Linie bleibt. */
  .price-table td:last-child { padding-right: 8px; }
  .price-table td .uv { display: block; margin: 0 0 4px; }
  .price-table td .ab { margin-right: 5px; }
}

.prices__footer {
  margin-top: 50px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start;
  padding-top: 40px; border-top: 1px solid rgba(244,237,228,0.2);
}
@media (max-width: 880px) { .prices__footer { grid-template-columns: 1fr; } }
.prices__footer .trust .micro { color: var(--powder); }
.prices__footer .trust p { margin-top: 14px; color: rgba(244,237,228,0.75); font-size: 15.5px; line-height: 1.55; max-width: 50ch; }
.prices__footer .trust em { font-family: "Roca", serif; font-style: italic; color: var(--powder); }

.prices__cta { display: flex; gap: 14px; justify-self: end; flex-wrap: wrap; }
@media (max-width: 880px) { .prices__cta { justify-self: start; } }

/* =========================================================
   SECTION 10 — Über Beautystas (Editorial)
   ========================================================= */
.about { background: var(--cream); position: relative; overflow: hidden; }
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 880px) { .about__layout { grid-template-columns: 1fr; } }
.about__image {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border-radius: 28px;          /* abgerundet wie die anderen Bild-Cards */
  background: var(--platin);
}
.about__image image-slot { width: 100%; height: 100%; --is-radius: 0; }
.about__image-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__quote {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  font-family: "Roca", serif; font-style: italic;
  font-size: clamp(22px, 1.8vw, 28px);
  color: var(--paper);
  z-index: 2;
  line-height: 1.2;
  max-width: 22ch;
}
.about__h2 {
  font-family: "Figtree"; font-weight: 700;
  font-size: var(--fs-display); /* einheitlich mit den übrigen großen Headlines */
  letter-spacing: var(--tracking-headline);
  line-height: 0.95;
  color: var(--ink);
}
.about__h2 em {
  font-family: "Roca", serif; font-style: italic; font-weight: 400;
  color: var(--platin);
}
.about__sub {
  font-family: "Figtree"; font-weight: 500;
  margin-top: 22px;
  font-size: clamp(20px, 1.4vw, 24px); color: var(--fudge);
  line-height: 1.4;
}
.about__body {
  margin-top: 36px;
  color: var(--ink); font-size: 16.5px; line-height: 1.6; max-width: 52ch;
}
.about__body p + p { margin-top: 1em; }

.about__values {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.about__values li {
  list-style: none;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: baseline;
}
.about__values li .lbl {
  font-family: "Figtree"; font-weight: 700;
  font-size: 16px; letter-spacing: -0.02em;
  color: var(--ink);
}
.about__values li .val {
  color: var(--fudge);
  font-size: 15.5px;
  line-height: 1.55;
}
@media (max-width: 560px) {
  /* Die feste 220px-Spalte + 24px Gap liess dem Wert nur ~91px — sein
     min-content blies die Zeile auf 380px auf. Da `1fr` = `minmax(auto, 1fr)`
     nicht unter min-content schrumpft, wuchs das ganze .about__layout-Grid mit
     und schob das Bild rechts aus der Section. Deshalb hier: Label stapeln. */
  .about__values li { grid-template-columns: 1fr; gap: 4px; }
}

/* =========================================================
   SECTION 11 — FINAL CTA
   ========================================================= */
.final {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: -20% -20% auto auto;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(199,178,153,0.18), rgba(199,178,153,0) 70%);
  z-index: 0;
  pointer-events: none;
}
.final__wrap { position: relative; z-index: 1; }
.final .claim { color: var(--powder); }
.final__h {
  font-family: "Figtree"; font-weight: 700;
  font-size: var(--fs-display); /* einheitlich mit den übrigen großen Headlines */
  letter-spacing: var(--tracking-headline);
  line-height: 0.93;
  color: var(--paper);
  margin: 28px auto 0;
  max-width: 18ch;
  text-wrap: balance;
}
.final__h em {
  font-family: "Roca", serif; font-style: italic; font-weight: 400;
  color: var(--powder);
}
.final__sub {
  margin: 36px auto 0;
  max-width: 56ch;
  color: rgba(244,237,228,0.78);
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.5;
}
.final__cta { margin-top: 48px; display: inline-flex; flex-direction: column; align-items: center; gap: 18px; }
.final__secondary {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(244,237,228,0.7);
}
.final__secondary a {
  color: var(--powder);
  border-bottom: 1px solid var(--powder);
  padding-bottom: 1px;
}
.final__footnote {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(244,237,228,0.16);
  font-size: 12.5px;
  color: rgba(244,237,228,0.55);
  letter-spacing: 0.02em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(244,237,228,0.6);
  padding: 50px 0 38px;
  border-top: 1px solid rgba(244,237,228,0.1);
}
.footer__row {
  display: flex; flex-wrap: wrap; gap: 30px;
  align-items: center; justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; }
.footer__brand img { height: 44px; width: auto; display: block; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 14px 24px; font-size: 13px; letter-spacing: 0.04em; }
.footer__nav a:hover { color: var(--paper); }
.footer__legal { font-size: 12px; letter-spacing: 0.04em; }

/* =========================================================
   Utility / reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* Marquee on hero */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(244,237,228,0.12);
  border-bottom: 1px solid rgba(244,237,228,0.12);
  font-family: "Figtree"; font-weight: 600;
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
}
.marquee__track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  padding-right: 60px;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track .sep { width: 8px; height: 8px; border-radius: 99px; background: var(--powder); display: inline-block; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   TERMINBUCHUNG (Planity) — Modal
   Öffnet über [data-booking-open], schließt über [data-booking-close].
   z-index über Nav (50) und Mobile-Panel (49).
   ========================================================= */
.booking {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(0px, 4vw, 48px);
}
.booking[hidden] { display: none; }
.booking__backdrop {
  position: absolute; inset: 0;
  background: rgba(26, 25, 24, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: booking-fade .3s ease;
}
.booking__panel {
  position: relative; z-index: 1;
  width: min(960px, 100%);
  max-height: min(880px, 92vh);
  background: var(--paper);
  border-radius: 28px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(26, 25, 24, 0.35);
  animation: booking-rise .35s cubic-bezier(.2, .7, .2, 1);
}
.booking__close {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  width: 44px; height: 44px; border-radius: 999px;
  border: 0; padding: 0; cursor: pointer;
  background: rgba(58, 57, 56, 0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.booking__close:hover { background: rgba(58, 57, 56, 0.14); }
.booking__close span {
  position: absolute; width: 18px; height: 2px; border-radius: 2px;
  background: var(--ink);
}
.booking__close span:first-child { transform: rotate(45deg); }
.booking__close span:last-child  { transform: rotate(-45deg); }
.booking__widget {
  flex: 1; min-height: 420px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  /* Innenabstand zwischen Panel-Rand und Planity-Inhalt (top / seitlich / bottom).
     Oben mehr, damit der Inhalt nicht unter den Close-Button (18px + 44px) läuft.
     Seitlich ~82px auf Desktop (User-Wunsch +30 gegenüber vorher ~51px). */
  padding: clamp(64px, 6vw, 80px) clamp(32px, 6.4vw, 84px) clamp(32px, 4vw, 64px);
}
.booking__loading {
  display: flex; align-items: center; justify-content: center;
  height: 420px; color: var(--fudge); font-size: 15px;
}
@keyframes booking-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes booking-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (max-width: 560px) {
  .booking { padding: 0; }
  .booking__panel { width: 100%; height: 100%; max-height: 100%; border-radius: 0; }
  .booking__widget { padding: 20px; padding-top: 64px; }
}
@media (prefers-reduced-motion: reduce) {
  .booking__backdrop, .booking__panel { animation: none; }
}

/* =========================================================
   RECHTS-SEITEN — Impressum / Datenschutz
   Eigenständige Unterseiten mit Nav + Footer. Lesbare Prosa-Spalte.
   ========================================================= */
.legal {
  background: var(--paper);
  /* oben Nav-Höhe freihalten (Nav ist fixed) */
  padding-top: calc(var(--nav-h) + clamp(36px, 5vw, 80px));
  padding-bottom: clamp(64px, 9vw, 140px);
  min-height: 72vh;
}
.legal__wrap { max-width: 780px; }
.legal__title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: var(--tracking-headline);
  color: var(--ink);
  margin: 14px 0 10px;
}
.legal__lead { font-size: clamp(15px, 1.2vw, 18px); color: var(--fudge); margin: 0 0 8px; }
.legal h2 {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em; line-height: 1.15; color: var(--ink);
  margin: 44px 0 12px;
}
.legal h3 { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink); margin: 26px 0 6px; }
.legal p, .legal li { font-size: clamp(15px, 1.1vw, 17px); line-height: 1.72; color: var(--fudge); margin: 0 0 15px; }
.legal ul { margin: 0 0 15px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--fudge); }
.legal strong { color: var(--ink); font-weight: 600; }
/* Platzhalter für noch zu ergänzende Angaben (Impressum) */
.legal .todo { color: var(--platin); font-style: italic; border-bottom: 1px dotted var(--platin); }
.legal__updated { margin-top: 44px; font-size: 13px; letter-spacing: 0.02em; color: var(--platin); }

/* Footer: Rechtslinks klickbar */
.footer__legal a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.footer__legal a:hover { border-bottom-color: currentColor; }
