/* ════════════════════════════════════════════════════════════════════
   MASSAGEPRAXIS ONE · Bülach — Stylesheet
   Aufbau: 1 Tokens · 2 Fonts · 3 Basis · 4 Komponenten · 5 Header
           6 Sektionen · 7 Footer · 8 WhatsApp-FAB · 9 Motion/A11y
   Mobile-first: Basis gilt fürs Smartphone, @media erweitert nach oben.
   ════════════════════════════════════════════════════════════════════ */

/* ── 1 · DESIGN-TOKENS ──────────────────────────────────────────────── */
:root {
  /* Marke (abgeleitet vom Logo #243B70) */
  --brand-900: #1A2C54;
  --brand-700: #243B70;   /* Logo / Primärfarbe */
  --brand-500: #3D5697;
  --brand-300: #8FA0C6;
  --brand-100: #E8ECF5;

  /* Warme Akzente – sparsam einsetzen */
  --sand-500: #B08D6A;
  --sand-200: #EAE0D4;

  /* Text & Fläche */
  --ink:   #1C2333;
  --muted: #6B7280;
  --bg:    #FFFFFF;

  /* Typografie */
  --font-head: "Jost", "Avenir Next", "Century Gothic", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid-Grössen */
  --fs-h1:   clamp(2rem, 5.5vw + .5rem, 3.4rem);
  --fs-h2:   clamp(1.5rem, 3vw + .5rem, 2.2rem);
  --fs-h3:   clamp(1.12rem, 1.5vw + .5rem, 1.3rem);
  --fs-lead: clamp(1.06rem, 1vw + .8rem, 1.25rem);

  /* Raster & Form */
  --space-1: .5rem;  --space-2: .75rem; --space-3: 1rem;   --space-4: 1.5rem;
  --space-5: 2rem;   --space-6: 3rem;   --space-8: 4rem;   --space-10: 6rem;
  --section-pad: clamp(4rem, 10vw, 7.5rem);
  --container: 68rem;
  --radius: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 6px 24px rgba(26, 44, 84, .08);
  --shadow-lift: 0 12px 32px rgba(26, 44, 84, .14);

  --header-h: 4.25rem;
}

/* ── 2 · FONTS (selbst gehostet, kein externes CDN) ─────────────────── */
@font-face {
  font-family: "Jost"; font-weight: 300; font-style: normal; font-display: swap;
  src: url("../assets/fonts/jost-300.woff2") format("woff2");
}
@font-face {
  font-family: "Jost"; font-weight: 400; font-style: normal; font-display: swap;
  src: url("../assets/fonts/jost-400.woff2") format("woff2");
}
@font-face {
  font-family: "Jost"; font-weight: 500; font-style: normal; font-display: swap;
  src: url("../assets/fonts/jost-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-weight: 400; font-style: normal; font-display: swap;
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-weight: 600; font-style: normal; font-display: swap;
  src: url("../assets/fonts/inter-600.woff2") format("woff2");
}

/* ── 3 · BASIS ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  position: relative;        /* Bezugsrahmen für die Journey-Linie */
  font-family: var(--font-body);
  font-size: 1.0625rem;               /* 17 px Basis – gut lesbar auf Mobile */
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-wrap: break-word;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--brand-700);
  line-height: 1.15;
  text-wrap: balance;
  margin: 0 0 var(--space-3);
}
h1 { font-size: var(--fs-h1); font-weight: 300; letter-spacing: .06em; }
h2 { font-size: var(--fs-h2); font-weight: 400; letter-spacing: .1em; text-transform: uppercase; }
h3 { font-size: var(--fs-h3); font-weight: 500; letter-spacing: .04em; }

p { margin: 0 0 var(--space-3); max-width: 65ch; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-500); }

ul[role="list"] { list-style: none; margin: 0; padding: 0; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 2;              /* Inhalt liegt über der Scroll-Figur (z-index: 1) */
}

.section { padding-block: var(--section-pad); }

/* Anker landen unterhalb des Sticky-Headers */
section[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* Tastatur-Fokus deutlich sichtbar */
:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100%; left: var(--space-3);
  z-index: 100;
  padding: var(--space-2) var(--space-4);
  background: var(--brand-700); color: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
}
.skip-link:focus { top: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.icon { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ── 4 · KOMPONENTEN ────────────────────────────────────────────────── */

/* Kicker: kleine Overline über Headlines, greift die Logo-Sperrung auf */
.kicker {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sand-500);
  margin-bottom: var(--space-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 44px;                    /* Touch-Ziel */
  padding: .7em 1.6em;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .08em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease,
              border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: .85em 2em; font-size: 1.05rem; }

.btn-primary { background: var(--brand-700); color: #fff; }
.btn-primary:hover { background: var(--brand-900); color: #fff; box-shadow: var(--shadow-soft); }

.btn-ghost { background: transparent; color: var(--brand-700); border-color: var(--brand-300); }
.btn-ghost:hover { border-color: var(--sand-500); color: var(--brand-900); background: #fff; }

.btn-light { background: #fff; color: var(--brand-700); }
.btn-light:hover { background: var(--brand-100); color: var(--brand-900); box-shadow: var(--shadow-lift); }

/* Variante für dunkle Flächen (Buchungs-Sektion) */
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

.section-head { margin-bottom: var(--space-6); }
.section-intro { color: var(--muted); font-size: var(--fs-lead); }

/* Zitat unter einer Section-Headline (Sand-Linie als warmer Akzent) */
.section-quote {
  margin: var(--space-3) 0 0;
  padding-left: var(--space-4);
  border-left: 2px solid var(--sand-500);
  max-width: 46ch;
}
.section-quote p {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 300;
  font-style: italic;
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--brand-700);
}

/* ── 5 · HEADER / NAVIGATION ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--brand-100), var(--shadow-soft); }

.header-inner {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.brand { margin-right: auto; display: flex; }
.brand img { height: 3rem; width: auto; }

.header-cta { font-size: .92rem; padding: .55em 1.2em; }

/* Burger-Button (nur Mobile sichtbar) */
.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 0; padding: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--brand-700);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  position: relative;
}
.nav-toggle-bar::before { position: absolute; top: -7px; }
.nav-toggle-bar::after  { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile: Nav als aufklappbares Panel unter dem Header */
.site-nav {
  position: absolute;
  inset: 100% 0 auto 0;
  background: #fff;
  border-top: 1px solid var(--brand-100);
  box-shadow: var(--shadow-lift);
  display: none;
}
.site-nav.is-open { display: block; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: var(--space-4) var(--space-4) var(--space-5);
  display: grid;
  gap: var(--space-2);
}
.site-nav a:not(.btn) {
  display: block;
  padding: var(--space-2) var(--space-2);
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brand-700);
  border-bottom: 1px solid var(--brand-100);
  transition: color .2s ease, border-color .2s ease;
}
.site-nav a:not(.btn):hover { color: var(--brand-500); border-color: var(--sand-500); }
.nav-cta-item { margin-top: var(--space-2); }

@media (min-width: 56.25em) {  /* ≥900px: Desktop-Navigation */
  .nav-toggle, .header-cta { display: none; }
  .site-nav {
    position: static;
    display: block;
    background: transparent;
    border: 0; box-shadow: none;
  }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: 0;
  }
  .site-nav a:not(.btn) {
    font-size: .92rem;
    padding: .35em 0;
    border-bottom: 2px solid transparent;
  }
  .site-nav a:not(.btn):hover { border-bottom-color: var(--sand-500); }
  .nav-cta-item { margin: 0 0 0 var(--space-2); }
}

/* ── 6 · SEKTIONEN ──────────────────────────────────────────────────── */

/* — Hero — */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--brand-100) 0%, #fff 78%);
  /* oben knapp: die Bildbühne eröffnet die Sektion und braucht keinen
     grossen Vorlauf — so passt die Komposition auch auf flache Laptops */
  padding-block: clamp(1.5rem, 3.5vw, 3.5rem) clamp(3rem, 8vw, 5rem);
}

/* — Bildbühne: Raumaufnahme gross, Detailaufnahme rechts unten
     überlappend. Bewusst BREITER als der Text-Container (82rem gegen
     68rem) — der Versatz erzeugt die Grösse. Das padding-bottom hält
     den Platz frei, in den das kleine Bild hineinragt. — */
.buehne {
  position: relative;
  z-index: 2;                        /* über der Journey-Linie */
  /* Drei Grenzen, die kleinste gewinnt:
     · 100% - 2.5rem  → Rand zum Fenster (Mobile)
     · 62rem          → Maximalgrösse; gegenüber der 44rem breiten Textspalte
                        darunter wirkt die Bühne damit deutlich breiter
     · 108vh          → koppelt die BREITE an die FENSTERHÖHE. Ohne das war
                        die Bühne auf flachen Laptops (1280×720) höher als der
                        Viewport und die überlappende Detailaufnahme wurde
                        unten abgeschnitten. So skaliert die ganze Komposition
                        mit, statt beschnitten zu werden. */
  width: min(100% - 2.5rem, 62rem, 105vh);
  margin-inline: auto;
  padding-bottom: 3rem;
}
.buehne-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}
.buehne-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;                        /* auf Mobile bewusst zurückhaltend,
                                        sonst erschlägt es die Raumaufnahme */
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid #fff;            /* trennt die beiden Bilder sauber */
  box-shadow: var(--shadow-lift);
}

/* Begrüssung unter der Bühne, mittig gesetzt */
.gruss {
  text-align: center;
  max-width: 44rem;
  margin-top: var(--space-6);
}
.gruss .cta-row,
.gruss .hero-trust { justify-content: center; }
.gruss .lead { margin-inline: auto; }

.hero .kicker { color: var(--brand-500); }
.hero .brand-word { font-weight: 500; letter-spacing: .18em; }
.hero .lead { font-size: var(--fs-lead); color: var(--muted); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-block: var(--space-4);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: .5em;
  font-size: .95rem;
  color: var(--muted);
  margin: 0;
}
.hero-trust .icon { color: var(--sand-500); }

/* — Intro-Bühne: erster Viewport, in dem sich die Figur langsam zeichnet —
   Verlauf endet auf brand-100 und geht nahtlos in den Hero über. */
.intro {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff 0%, var(--brand-100) 100%);
}
.intro-figure {
  pointer-events: none;
  position: relative;
  z-index: 1;              /* über dem Hintergrundvideo */
}
/* Das Original-Logo «kommt aus der Ferne»: es startet winzig und unsichtbar
   und wächst weich auf seine volle Grösse. Bewegt werden ausschliesslich
   transform + opacity — das läuft auch auf älteren Handys flüssig.
   Ohne JS (html.js fehlt) steht das Logo sofort fertig da. */
.intro-logo {
  width: min(84vw, 720px);
  height: auto;
  display: block;
}
/* Dauer muss zu DURATION in js/main.js → initIntro() passen.
   Die Kurve startet bewusst langsam (das Logo ist «weit weg» und wirkt
   dadurch träge) und kommt am Ende sanft zum Stehen. */
html.js .intro-logo {
  animation: logo-approach 3.4s cubic-bezier(.45, .05, .25, 1) both;
  will-change: transform, opacity;
}
@keyframes logo-approach {
  0%   { opacity: 0;  transform: scale(.12); }
  25%  { opacity: .35; }
  70%  { opacity: 1; }
  100% { opacity: 1;  transform: scale(1); }
}

/* Scroll-Hinweis: erscheint nach dem Intro, sanft wippender Pfeil */
.intro-hint {
  position: absolute;
  z-index: 2;                /* über der Journey-Linie */
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: .5rem 1rem;
  text-decoration: none;
  color: var(--brand-500);
  transition: opacity .8s ease, color .2s ease;
}
.intro-hint:hover { color: var(--brand-700); }
.intro-hint-text {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.intro-hint-chevron {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  animation: hint-bob 2.4s ease-in-out infinite;
}
html.js .intro-hint { opacity: 0; pointer-events: none; }
html.js .intro-hint.is-visible { opacity: 1; pointer-events: auto; }
@keyframes hint-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
/* — Journey-Linie: führt vom Intro-Logo bis zum Seitenende —
   Pfad wird per JS erzeugt und zeichnet sich mit dem Scrollen.
   brand-300 ist auf hellen UND dunklen Sektionen gut sichtbar;
   die Linie läuft hinter dem Inhalt (z-index 1 vs. .container 2). */
.journey-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.journey-path {
  fill: none;
  stroke: var(--brand-300);
  stroke-width: 4;
  stroke-linecap: round;
  opacity: .6;
}
.journey-tip {
  fill: var(--sand-500);
  opacity: .9;
}

/* bei reduzierter Bewegung: Logo sofort statisch (Linie zeichnet JS voll) */
@media (prefers-reduced-motion: reduce) {
  html.js .intro-logo { animation: none; }
}

@media (min-width: 56.25em) {
  .buehne { padding-bottom: 5rem; }
  .buehne-main { aspect-ratio: 16 / 10; }
  .buehne-sub { width: 34%; border-width: 8px; }
  .gruss { margin-top: var(--space-8); }
}

/* — Leistungen & Preise — */
.service-grid {
  display: grid;
  gap: var(--space-4);
}
.service-card {
  background: #fff;
  border: 1px solid var(--brand-100);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4) var(--space-4);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brand-300);
}
.service-card h3 { margin-bottom: var(--space-2); }
.service-variant { font-weight: 300; color: var(--muted); font-size: .85em; }
.service-desc { color: var(--muted); font-size: .97rem; }
/* Zusatzzeile unter dem Titel, z. B. die effektive Behandlungszeit */
.service-note { margin: 0; color: var(--muted); font-size: .9rem; }

.service-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2) var(--space-3);
  margin: var(--space-3) 0 0;
  margin-top: auto;                  /* hält die Preiszeile aller Karten auf einer Höhe */
  padding-top: var(--space-3);
  border-top: 1px dashed var(--sand-200);   /* warmer Akzent, bewusst dezent */
}
.service-duration { color: var(--muted); font-size: .95rem; }
.service-price {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--brand-700);
  white-space: nowrap;
}

/* genau EINE hervorgehobene Karte (warmer Sand-Grund) */
.service-card.is-featured { background: var(--sand-200); border-color: var(--sand-200); }
.service-card.is-featured .service-meta { border-top-color: var(--sand-500); }
.service-badge {
  align-self: flex-start;
  margin: 0 0 var(--space-2);
  padding: .2em .9em;
  border-radius: var(--radius-pill);
  background: var(--sand-500);
  color: #fff;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* — Körperzonen-Wähler (Teilmassage) —
     Die Figur ist bewusst geometrisch-abstrakt gehalten, passend zur
     Strichgrafik des Logos. Gewählte Zonen färben sich sand-500. — */
.zones {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.zones-figure { display: flex; justify-content: center; }
.zones-figure svg {
  width: min(52vw, 210px);
  height: auto;
  overflow: visible;                 /* Platz für den Schein gewählter Zonen */
}

.zone {
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  transition: filter .3s ease;
}
.zone > :is(circle, rect, path) {
  fill: var(--brand-100);
  stroke: var(--brand-300);
  stroke-width: 1.5;
  transition: fill .3s ease, stroke .3s ease;
}
.zone:hover > :is(circle, rect, path) { fill: var(--sand-200); stroke: var(--sand-500); }
.zone:focus-visible { outline: none; }
.zone:focus-visible > :is(circle, rect, path) { stroke: var(--brand-700); stroke-width: 3; }
.zone.is-selected > :is(circle, rect, path) { fill: var(--sand-500); stroke: var(--sand-500); }
.zone.is-selected {
  filter: drop-shadow(0 3px 9px rgba(176, 141, 106, .55));
  animation: zone-pop .45s ease;
}
@keyframes zone-pop {
  0%, 100% { transform: scale(1); }
  45%      { transform: scale(1.07); }
}

.zones-panel h3 { margin-bottom: var(--space-2); }
.zones-lead { color: var(--muted); font-size: .97rem; max-width: 46ch; }

.zones-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: var(--space-4);
  min-height: 2.4rem;                /* verhindert Springen beim ersten Klick */
}
.zones-empty { color: var(--muted); font-size: .95rem; }
.zone-chip {
  padding: .3em .95em;
  border-radius: var(--radius-pill);
  background: var(--sand-200);
  color: var(--brand-900);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  animation: chip-in .3s ease both;
}
@keyframes chip-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.zones-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

@media (prefers-reduced-motion: reduce) {
  .zone.is-selected { animation: none; }
  .zone-chip { animation: none; }
}
@media (min-width: 48em) {
  .zones {
    grid-template-columns: minmax(0, .8fr) 1fr;
    gap: var(--space-8);
    align-items: center;
  }
}

/* — Mobile Massage: kein Standard-Angebot, deshalb ein eigener Block
     unter dem Karten-Raster (Sand-Rahmen statt Karte). — */
.service-extra {
  margin-top: var(--space-5);
  padding: var(--space-5) var(--space-4);
  border: 1px dashed var(--sand-500);
  border-radius: var(--radius);
  background: #fff;
  display: grid;
  gap: var(--space-4);
}
.service-extra h3 { margin-bottom: var(--space-2); }
.service-extra-lead { margin: 0; color: var(--muted); font-size: .97rem; max-width: 44ch; }

/* Versicherungs-Hinweis: ruhiger Info-Kasten, kein Alarmton */
.services-hint {
  display: flex;
  align-items: flex-start;
  gap: .65em;
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  background: var(--brand-100);
  color: var(--brand-900);
  font-size: .95rem;
}
.services-hint .icon { color: var(--brand-500); margin-top: .3em; }

.services-note { color: var(--muted); margin-top: var(--space-4); font-size: .97rem; }

@media (min-width: 40em) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-extra {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-5);
  }
}
/* vier Behandlungen → ab hier eine Reihe, ohne einzelne Karte am Zeilenende */
@media (min-width: 64em)    { .service-grid { grid-template-columns: repeat(4, 1fr); } }

/* — Häufige Fragen (natives <details>, ohne JS) —
     Leicht getönter Grund, damit die Sektion sich von den weissen
     Leistungen und der dunklen Buchung absetzt. */
.faq { background: var(--brand-100); }
.faq-list {
  max-width: 52rem;
  margin-inline: auto;
  display: grid;
  gap: var(--space-2);
}
.faq-item {
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] { border-color: var(--sand-200); box-shadow: var(--shadow-lift); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  cursor: pointer;
  list-style: none;                  /* Standard-Dreieck ausblenden … */
  font-family: var(--font-head);
  font-size: 1.08rem;
  color: var(--brand-700);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }   /* … auch in Safari */
.faq-item summary:hover { color: var(--brand-900); }
/* eigener Chevron aus zwei Rahmenkanten, dreht sich beim Öffnen */
.faq-item summary::after {
  content: "";
  flex: none;
  width: .55em;
  height: .55em;
  border-right: 2px solid var(--sand-500);
  border-bottom: 2px solid var(--sand-500);
  transform: rotate(45deg);
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-answer { padding: 0 var(--space-4) var(--space-4); color: var(--muted); }
.faq-answer p { margin: 0; }
.faq-item[open] .faq-answer { animation: faq-open .3s ease both; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item[open] .faq-answer { animation: none; }
}

/* — Booking — */
.booking {
  background:
    radial-gradient(90rem 40rem at 80% -20%, var(--brand-500) 0%, transparent 55%),
    var(--brand-700);
  color: #fff;
  text-align: center;
}
.booking-inner { display: flex; flex-direction: column; align-items: center; }
.booking h2 { color: #fff; }
.booking-logo { height: 6rem; width: auto; margin-bottom: var(--space-4); opacity: .95; }
.booking-text { color: var(--brand-100); font-size: var(--fs-lead); max-width: 46ch; }

/* die drei Kontaktwege statt eines Buchungs-Buttons */
.booking-ways {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.booking-alt { margin-top: var(--space-4); color: var(--brand-300); font-size: .97rem; }
.booking-alt a { color: #fff; }
.booking-alt a:hover { color: var(--sand-200); }

.booking-widget { width: 100%; max-width: 46rem; }
.booking-widget:not(:empty) { margin-top: var(--space-5); }

/* — Über mich & Kontakt — */
.contact-grid {
  display: grid;
  gap: var(--space-8);
}
.about-media {
  margin: 0 0 var(--space-4);
  max-width: 22rem;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;               /* Slot-Ratio Portrait */
  object-fit: cover;
  width: 100%;
}
.about-name { margin-bottom: .25rem; }
.about-role {
  color: var(--sand-500);
  font-size: .95rem;
  font-family: var(--font-head);
  letter-spacing: .08em;
}
.about-text { color: var(--muted); }

.contact-info h3 { margin-top: var(--space-5); }
.contact-info h3:first-child { margin-top: 0; }

.contact-list { font-style: normal; }
.contact-list p {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  margin-bottom: var(--space-3);
}
.contact-list .icon { color: var(--sand-500); margin-top: .25em; }

/* Zweispaltige Liste «Bezeichnung ↔ Preis» (Anfahrt der mobilen Massage) */
.price-list {
  margin: 0;
  max-width: 26rem;
}
.price-list div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: .55rem 0;
  border-bottom: 1px dashed var(--sand-200);
}
.price-list dt { color: var(--ink); }
.price-list dd {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--brand-700);
  white-space: nowrap;
}
.hours-note { color: var(--muted); font-size: .92rem; margin-top: var(--space-2); }

.contact-info .btn { margin-top: var(--space-5); }

@media (min-width: 56.25em) {
  .contact-grid { grid-template-columns: 1.1fr 1fr; }
}

/* — Karte (Klick-zum-Laden) — */
.map-block { margin-top: var(--space-8); }
.map-placeholder,
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 20rem;
}
.map-placeholder {
  background: var(--brand-100);
  border: 1px solid var(--brand-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-4);
}
.map-pin { width: 2.5rem; height: 2.5rem; fill: var(--brand-700); }
.map-address { margin: 0; }
.map-consent-note { color: var(--muted); font-size: .85rem; max-width: 40ch; margin: 0; }
.map-route-link { font-size: .95rem; }
.map-frame { width: 100%; height: 24rem; border: 0; display: block; }

/* ── 7 · FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--brand-900);
  color: var(--brand-300);
  padding-block: var(--space-8) var(--space-6);
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  gap: var(--space-5);
}
.footer-brand img { height: 4rem; width: auto; margin-bottom: var(--space-3); }
.footer-brand p { margin: 0; }
.footer-nav {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: var(--space-1);
}
.footer-nav a {
  color: var(--brand-100);
  text-decoration: none;
}
.footer-nav a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--sand-500); }
.footer-copy { margin: var(--space-3) 0 0; }

@media (min-width: 56.25em) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ── 8 · WHATSAPP-FAB (schwebender Button) ──────────────────────────── */
.whatsapp-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
  opacity: 0;
  transform: translateY(8px) scale(.9);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
}
.whatsapp-fab.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.whatsapp-fab:hover { box-shadow: 0 12px 28px rgba(0, 0, 0, .3); transform: scale(1.06); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: currentColor; }

/* ── 9 · MOTION & A11y ──────────────────────────────────────────────── */

/* Scroll-Reveals: unsichtbar nur, wenn JS aktiv ist (html.js) */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--reveal-delay, 0s);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* ── 10 · RECHTSSEITEN (Impressum, Datenschutz, AGB) ─────────────────
   Eigenständige Unterseiten ohne Journey-Linie und ohne Intro:
   ruhige Lesetypografie, schmale Spalte, gleicher Header/Footer. */
.header-back { margin-left: auto; }

.legal { padding-top: calc(var(--header-h) + var(--space-6)); }
.legal-inner { max-width: 44rem; }
.legal h1 { margin-bottom: var(--space-4); }
.legal h2 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: 1.15rem;
  color: var(--brand-700);
}
.legal p { color: var(--muted); }
.legal a { color: var(--brand-700); }
.legal-lead { font-size: var(--fs-lead); }

.legal-address {
  font-style: normal;
  color: var(--ink);
  padding: var(--space-4);
  border-left: 2px solid var(--sand-500);
  background: var(--brand-100);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.legal-address strong { font-family: var(--font-head); font-weight: 500; }

.legal-list { margin: var(--space-4) 0 0; max-width: 34rem; }
.legal-list div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2) var(--space-3);
  padding: .6rem 0;
  border-bottom: 1px dashed var(--sand-200);
}
.legal-list dt { color: var(--muted); }
.legal-list dd { margin: 0; color: var(--ink); }

.legal-updated { font-size: .9rem; margin-top: var(--space-6); }
.legal-back { margin-top: var(--space-8); }

/* Aktuelle Seite in der Fussnavigation markieren */
.footer-nav a[aria-current="page"] { color: #fff; }

/* Instagram-Link im Footer */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  margin-top: var(--space-2);
  color: var(--brand-300);
  text-decoration: none;
  font-size: .92rem;
}
.footer-social:hover { color: #fff; }

/* AGB-Hinweis unter den Kontaktwegen (dunkle Buchungs-Sektion) */
.booking-terms {
  margin-top: var(--space-3);
  color: var(--brand-300);
  font-size: .88rem;
  max-width: 46ch;
}
.booking-terms a { color: #fff; }
.booking-terms a:hover { color: var(--sand-200); }

/* Agentur-Credit ganz unten im Footer — bewusst zurückhaltend */
.footer-credit {
  margin: .35rem 0 0;
  font-size: .82rem;
  /* brand-500 wäre auf brand-900 zu kontrastarm — gedimmtes brand-300
     bleibt lesbar und ordnet sich der Copyright-Zeile trotzdem unter */
  color: rgba(143, 160, 198, .75);
}
.footer-credit a {
  color: var(--brand-300);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.footer-credit a:hover { color: #fff; border-bottom-color: var(--sand-500); }
