/* Beautytime München-Bogenhausen — ein Stylesheet für die ganze Seite.
   Zuerst fürs Handy entworfen, größere Bildschirme kommen über Media Queries
   dazu. Die Seite bleibt immer hell: kein prefers-color-scheme-Dunkelmodus.

   Kontrast (WCAG 2.1, gerechnet, nicht geschätzt):
     Rosé #8E5357 auf Elfenbein #F6F1EB .......... 5,30 : 1   (AA für Fließtext)
     Elfenbein #F6F1EB auf Rosé #8E5357 .......... 5,30 : 1   (Knopfbeschriftung)
     Anthrazit #2A2522 auf Elfenbein #F6F1EB .... 13,49 : 1
     Gedämpft #5C524C auf Elfenbein #F6F1EB ...... 6,76 : 1
   Rosé reicht damit auch für Fließtext. Der Fließtext bleibt trotzdem
   anthrazit; Rosé trägt Flächen, Linien, Knöpfe und Akzente. */

:root {
  color-scheme: light;

  --elfenbein: #F6F1EB;
  --anthrazit: #2A2522;
  --rose: #8E5357;
  --rose-hell: #EAD9D6;
  --sand: #EFE6DD;
  --gedaempft: #5C524C;
  --rose-dunkel: #744347;   /* nur für Hover-Flächen */

  --schrift-text: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --schrift-titel: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --mitte: 64rem;
  --lesespalte: 40rem;
  --luft: 1rem;
  --tippziel: 2.75rem;      /* 44 px */
  --rand-unten: 5.5rem;     /* Platz für den fest stehenden Buchungsknopf */
}

/* ------------------------------------------------------------- Schriften
   Lokal eingebunden, nichts wird von Google nachgeladen. Beide Dateien sind
   variable Schriften (wght-Achse), deshalb genügt je eine Datei pro Zeichensatz.
   Lizenz: SIL Open Font License 1.1, Text liegt in /schriften/. */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/schriften/cormorant-garamond-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/schriften/cormorant-garamond-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/schriften/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/schriften/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ----------------------------------------------------------------- Grund */

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

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

body {
  margin: 0;
  padding-bottom: var(--rand-unten);
  background: var(--elfenbein);
  color: var(--anthrazit);
  font-family: var(--schrift-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--schrift-titel);
  font-weight: 600;
  line-height: 1.15;
  margin: 2.5rem 0 1rem;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 7vw, 3.4rem); margin-top: 0; }
h2 { font-size: clamp(1.6rem, 4.4vw, 2.2rem); }
h3 { font-size: 1.2rem; font-family: var(--schrift-text); font-weight: 600; margin-bottom: .35rem; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--rose); text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--rose-dunkel); }
a:focus-visible, summary:focus-visible, .knopf:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 2px;
}

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

strong { font-weight: 600; }

address { font-style: normal; }

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

.sprungmarke {
  position: absolute; left: -100vw; top: 0; z-index: 100;
  background: var(--rose); color: var(--elfenbein);
  padding: .75rem 1.25rem; text-decoration: none;
}
.sprungmarke:focus { left: 0; color: var(--elfenbein); }

/* ------------------------------------------------------------- Bausteine */

.mitte {
  width: 100%;
  max-width: var(--mitte);
  margin-inline: auto;
  padding-inline: var(--luft);
}

.lesespalte { max-width: calc(var(--lesespalte) + 2 * var(--luft)); }
.lesespalte--eng { max-width: none; padding-inline: 0; }

.band { padding-block: 3rem; }
.band--sand { background: var(--sand); }
.band--hell { background: var(--rose-hell); }

/* Auf hellem Rosé reicht das normale Rosé nicht (4,37:1). Links stehen dort
   deshalb im dunkleren Ton: 5,84:1. Gerechnet, nicht geschätzt. */
.band--hell a:not(.knopf) { color: var(--rose-dunkel); }
.knopf--leise:hover { color: var(--rose-dunkel); }

.vorspann {
  font-size: 1.12rem;
  line-height: 1.6;
}

.zitat {
  font-family: var(--schrift-titel);
  font-size: 1.4rem;
  line-height: 1.4;
  border-left: 3px solid var(--rose);
  padding-left: 1.1rem;
  margin: 1.5rem 0;
}

.hinweis { color: var(--gedaempft); font-size: .95rem; }

/* ---------------------------------------------------------------- Knöpfe */

.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tippziel);
  min-width: var(--tippziel);
  padding: .7rem 1.6rem;
  background: var(--rose);
  color: var(--elfenbein);
  font-family: var(--schrift-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--rose);
  border-radius: 999px;
  cursor: pointer;
}
.knopf:hover {
  background: var(--rose-dunkel);
  border-color: var(--rose-dunkel);
  color: var(--elfenbein);
}
.knopf--leise {
  background: transparent;
  color: var(--rose);
}
.knopf--leise:hover { background: var(--rose-hell); color: var(--rose-dunkel); }
.knopf--klein { padding: .5rem 1.1rem; font-size: .92rem; }

.knopfreihe {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-block: 1.75rem;
}

.weiterlink {
  display: inline-flex;
  align-items: center;
  min-height: var(--tippziel);
  font-weight: 600;
}
.weiterlink::after { content: ' →'; white-space: pre; }

/* -------------------------------------------------------------- Kopfzeile */

.kopf {
  background: var(--elfenbein);
  border-bottom: 1px solid var(--rose-hell);
}
.kopf__innen {
  max-width: var(--mitte);
  margin-inline: auto;
  padding: .9rem var(--luft);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .75rem 1rem;
}
.kopf__marke { display: block; line-height: 0; }
.kopf__marke img { width: 150px; height: auto; }

.kopf__nav { grid-column: 1 / -1; order: 3; }
.kopf__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: .15rem .95rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.kopf__nav a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tippziel);
  color: var(--anthrazit);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.kopf__nav a:hover { color: var(--rose); border-bottom-color: var(--rose); }
.kopf__nav a[aria-current='page'] { color: var(--rose); border-bottom-color: var(--rose); }

.kopf__buchen { justify-self: end; white-space: nowrap; }

@media (min-width: 60rem) {
  /* Kopfzeile darf etwas breiter laufen als der Inhalt, damit die sechs
     Menüpunkte neben Marke und Buchungsknopf in eine Zeile passen. */
  .kopf__innen { max-width: 74rem; grid-template-columns: auto 1fr auto; }
  .kopf__marke img { width: 180px; }
  .kopf__nav { grid-column: auto; order: 0; justify-self: end; }
  .kopf__nav ul { flex-wrap: nowrap; gap: 1.1rem; }
  .kopf__nav a { white-space: nowrap; }
}

/* ------------------------------------------------------------- Startseite */

.held {
  display: grid;
  gap: 1.5rem;
  max-width: var(--mitte);
  margin-inline: auto;
  padding: 2.5rem var(--luft) 3rem;
}
.held__oben {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .9rem;
}
.held__bild img { border-radius: 4px; }

@media (min-width: 60rem) {
  .held {
    grid-template-columns: 1fr 22rem;
    align-items: center;
    gap: 3rem;
    padding-block: 4.5rem 5rem;
  }
}

.einstieg h2 { font-size: clamp(1.5rem, 4vw, 2rem); }

.gruppe { margin-top: 2.25rem; }
.gruppe h3 {
  font-family: var(--schrift-titel);
  font-size: 1.45rem;
  font-weight: 600;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--rose-hell);
}

.kacheln {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}
@media (min-width: 34rem) { .kacheln { grid-template-columns: 1fr 1fr; } }
@media (min-width: 52rem) { .kacheln { grid-template-columns: repeat(3, 1fr); } }

.kachel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .25rem;
  min-height: 5.25rem;
  height: 100%;
  padding: 1rem 1.15rem;
  background: var(--sand);
  color: var(--anthrazit);
  text-decoration: none;
  border-left: 3px solid var(--rose-hell);
  border-radius: 3px;
}
.kachel:hover { background: var(--rose-hell); border-left-color: var(--rose); color: var(--anthrazit); }
.kachel__name { font-family: var(--schrift-titel); font-size: 1.28rem; font-weight: 600; line-height: 1.2; }
.kachel__meta { font-size: .9rem; color: var(--gedaempft); }
.band--sand .kachel { background: var(--elfenbein); }

.zweispaltig { display: grid; gap: 1.75rem; }
.zweispaltig__bild img { border-radius: 4px; }
@media (min-width: 48rem) {
  .zweispaltig { grid-template-columns: 20rem 1fr; gap: 2.5rem; align-items: center; }
  /* Variante mit dem Text links und der schmalen Spalte rechts. */
  .zweispaltig--umgekehrt { grid-template-columns: 1fr 21rem; }
  .zweispaltig--oben { align-items: start; }
  .zweispaltig--oben > * { padding-top: .5rem; }
}

.zeiten { margin: 1rem 0 1.5rem; }
.zeiten > div {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .75rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--rose-hell);
}
.zeiten dt { font-weight: 500; flex: 1 1 11rem; }
.zeiten dd { margin: 0; color: var(--gedaempft); }

.gross { font-size: 1.1rem; line-height: 1.6; }

/* Statischer Kartenausschnitt: ein Bild, keine eingebettete Karte. */
.karte { margin: 0; }
.karte img { border-radius: 4px; border: 1px solid var(--rose-hell); }
.karte figcaption {
  margin-top: .5rem;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--gedaempft);
}
.karte figcaption a { color: var(--gedaempft); }
.karte figcaption a:hover { color: var(--rose); }

/* Ruhige Farbfläche — bleibt als Baustein erhalten, wird zurzeit nicht genutzt. */
.anfahrtsflaeche {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .3rem;
  min-height: 11rem;
  padding: 1.5rem;
  background: var(--rose-hell);
  background-image:
    repeating-linear-gradient(90deg, rgba(142,83,87,.14) 0 1px, transparent 1px 3.5rem),
    repeating-linear-gradient(0deg, rgba(142,83,87,.14) 0 1px, transparent 1px 3.5rem);
  border-radius: 4px;
  font-family: var(--schrift-titel);
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--anthrazit);
}
.anfahrtsflaeche--gross { min-height: 15rem; }
.anfahrtsflaeche__linien {
  font-family: var(--schrift-text);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rose);
}
.anfahrtskarte { margin-top: 1.5rem; }

/* ------------------------------------------------------- Behandlungsseiten */

.brotkrumen {
  max-width: var(--mitte);
  margin-inline: auto;
  padding: .9rem var(--luft) 0;
  font-size: .9rem;
  color: var(--gedaempft);
}
.brotkrumen a { color: var(--gedaempft); }
.brotkrumen a:hover { color: var(--rose); }

/* Behandlungsseiten tragen kein Aufmacherbild, sondern eine ruhige
   Farbfläche mit großer Typografie — so entschieden am 23.09.2026. */
.behandlung__kopf {
  background: var(--sand);
  border-top: 1px solid var(--rose-hell);
  border-bottom: 1px solid var(--rose-hell);
  padding-block: 2.75rem 2.5rem;
  margin-top: .9rem;
}
.behandlung__gruppe {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .9rem;
}
.behandlung__eckdaten {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin: 1.25rem 0 0;
}
.behandlung__eckdaten span {
  padding: .3rem .9rem;
  background: var(--elfenbein);
  border: 1px solid var(--rose-hell);
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 500;
}

.seitenkopf {
  background: var(--sand);
  border-bottom: 1px solid var(--rose-hell);
  padding-block: 2.75rem 2.5rem;
  margin-bottom: 2.5rem;
}

.lesespalte > h2:first-child { margin-top: 0; }
.behandlung__kopf + .lesespalte,
.seitenkopf + .mitte { padding-top: 2.5rem; }

.behandlung__bild { margin: 2rem 0; }
.behandlung__bild img,
.figur img { border-radius: 4px; }
/* Die Fotos sind hoch (2:3). In der Lesespalte bleiben sie deshalb schmal,
   sonst nehmen sie zwei Bildschirmhöhen ein. */
.behandlung__bild img,
.figur img { max-width: 20rem; }
.figur { margin: 2rem 0; }

.ablauf { padding-left: 1.3rem; }
.ablauf li { margin-bottom: .55rem; }

.frage { margin-bottom: 1.4rem; }
.frage h3 { color: var(--anthrazit); }
.frage p { margin-bottom: 0; }

.verwandt, .strichliste { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.verwandt li, .strichliste li {
  padding: .55rem 0 .55rem 1.1rem;
  border-bottom: 1px solid var(--rose-hell);
  position: relative;
}
.verwandt li::before, .strichliste li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.35em;
  width: .55rem; height: 1px;
  background: var(--rose);
}
.verwandt a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tippziel);
  font-weight: 500;
}

.hinweissatz {
  margin: 2.5rem 0 1.75rem;
  padding: 1.1rem 1.25rem;
  background: var(--sand);
  border-left: 3px solid var(--rose);
  border-radius: 3px;
  font-size: .98rem;
  color: var(--anthrazit);
}

/* --------------------------------------------- Pflege für zu Hause (Marini) */

.shopknopf { margin: 2rem 0; }
/* Die Kennzeichnung steht direkt unter dem Knopf und ist nicht kleiner als
   der übrige Text (Auftrag Punkt 7). */
.kennzeichnung {
  max-width: 44rem;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------------------------------------------------------------- Widgets */

.widget { margin: 1.75rem 0; min-height: 4rem; }

.buchungsklappe {
  margin: 2rem 0;
  border: 0;
}
.buchungsklappe > summary {
  display: inline-flex;
  list-style: none;
  width: auto;
}
.buchungsklappe > summary::-webkit-details-marker { display: none; }
.buchungsklappe > summary::after {
  content: ' ▾';
  white-space: pre;
}
.buchungsklappe[open] > summary::after { content: ' ▴'; }
.buchungsklappe__inhalt { margin-top: 1.25rem; }

/* ------------------------------------------------------------- Datenschutz */

.lesespalte--recht { font-size: .97rem; }
.ds-abschnitt { margin-bottom: 2rem; }
.ds-abschnitt h2 { font-size: 1.45rem; }
.ds-abschnitt h3 { margin-top: 1.5rem; }
.code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .92em;
  background: var(--sand);
  padding: .05em .35em;
  border-radius: 3px;
  word-break: break-word;
}

/* --------------------------------------------------------------- Fußzeile */

.fuss {
  margin-top: 4rem;
  background: var(--sand);
  border-top: 1px solid var(--rose-hell);
}
.fuss__innen {
  max-width: var(--mitte);
  margin-inline: auto;
  padding: 2.75rem var(--luft) 2rem;
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 52rem) {
  .fuss__innen { grid-template-columns: 17rem 1fr; gap: 3rem; }
}
.fuss__marke img { width: 200px; height: auto; margin-bottom: 1.25rem; }
.fuss__marke address { margin-bottom: 1rem; line-height: 1.8; }

.fuss__gruppen { display: grid; gap: 1.75rem; }
@media (min-width: 34rem) { .fuss__gruppen { grid-template-columns: 1fr 1fr; } }
@media (min-width: 70rem) { .fuss__gruppen { grid-template-columns: repeat(4, 1fr); } }

.fuss__spalte h2 {
  font-family: var(--schrift-text);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 .5rem;
}
.fuss__spalte ul { list-style: none; margin: 0; padding: 0; }
.fuss__spalte a {
  display: flex;
  align-items: center;
  min-height: var(--tippziel);
  color: var(--anthrazit);
  font-size: .93rem;
  text-decoration: none;
}
.fuss__spalte a:hover { color: var(--rose); text-decoration: underline; }

.fuss__recht {
  border-top: 1px solid var(--rose-hell);
}
.fuss__recht > * { max-width: var(--mitte); margin-inline: auto; }
.fuss__recht {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding: .75rem var(--luft) 1.25rem;
  font-size: .9rem;
  color: var(--gedaempft);
}
.fuss__recht nav { display: flex; gap: 1.25rem; }
.fuss__recht a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tippziel);
  color: var(--gedaempft);
}
.fuss__recht a:hover { color: var(--rose); }

/* --------------------------------------------------------------- Bewegung */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ----------------------------------------------------------------- Drucken */

@media print {
  body { padding-bottom: 0; background: #fff; }
  .kopf__nav, .kopf__buchen, .buchungsklappe, .widget, .sprungmarke { display: none; }
  a { color: inherit; }
}
