:root {
  --braun: #4a2418;
  --braun-hell: #7a5c4a;
  --magenta: #d6216f;
  --magenta-dunkel: #a81555;
  --creme: #fbf6f0;
  --creme-dunkel: #f3e9de;
  --pfirsich: #f5c4b3;
  --amber: #ef9f27;
  --weiss: #fff;
  --linie: #e8ddd2;

  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --breite: 1080px;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--braun-hell);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--braun);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: var(--magenta); }

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

.wrap {
  max-width: var(--breite);
  margin: 0 auto;
  padding: 0 24px;
}

.abschnitt { padding: 72px 0; }
.abschnitt--weiss { background: var(--weiss); }

.augbraue {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #993c1d;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.augbraue::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--amber));
  flex-shrink: 0;
}

/* Farbtupfer unter den Abschnitts-Überschriften — greift den Logo-Klecks auf */
.abschnitt h2 { position: relative; display: inline-block; }
.abschnitt h2::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 0.42em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--magenta);
  color: var(--weiss);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 999px;
  transition: background 0.15s;
}
.btn:hover, .btn:focus-visible { background: var(--magenta-dunkel); }

:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Sprunglink: für die Maus unsichtbar, für die Tastatur da.
   Ohne :focus wäre er nutzlos — 1px hoch und nie erreichbar. */
.sr-only:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 20px;
  clip: auto;
  background: var(--magenta);
  color: var(--weiss);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.95rem;
}

/* --- Kopf --- */

.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 240, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linie);
}

.kopf__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.marke {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.marke img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--weiss);
  box-shadow: 0 2px 8px rgba(74, 36, 24, 0.14);
}
.marke__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--braun);
  white-space: nowrap;
}
.marke__text span { color: var(--magenta); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--braun-hell);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--magenta); }

.kopf__tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--magenta);
  color: var(--weiss);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.kopf__tel:hover { background: var(--magenta-dunkel); }

@media (max-width: 860px) {
  .nav { display: none; }
  .kopf__tel span { display: none; }
}

/* Ab hier wird es eng: Logo + Wortmarke + Telefonknopf brauchen mehr Platz,
   als ein Handy hergibt. Zuerst schrumpft die Wortmarke, dann fliegt sie raus —
   der Telefonknopf hat Vorrang, er ist der Zweck der Seite. */
@media (max-width: 620px) {
  .wrap { padding: 0 18px; }
  .marke img { width: 38px; height: 38px; }
  .marke__text { font-size: 1rem; }
  .kopf__tel { padding: 11px 16px; font-size: 0.92rem; }
}

@media (max-width: 400px) {
  .marke__text { display: none; }
}

/* --- Hero --- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 78px;
}

.hero__klecks {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__klecks--1 {
  width: 380px; height: 380px;
  background: var(--pfirsich);
  opacity: 0.45;
  right: -90px; top: -70px;
}
.hero__klecks--2 {
  width: 180px; height: 180px;
  background: var(--amber);
  opacity: 0.28;
  right: 170px; top: 190px;
}
.hero__klecks--3 {
  width: 110px; height: 110px;
  background: var(--magenta);
  opacity: 0.12;
  right: 40px; bottom: -30px;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.hero__inner { position: relative; max-width: 560px; }

.hero h1 { margin-bottom: 0.3em; }
.hero h1 em { font-style: italic; color: var(--magenta); }

/* Ortsangabe ist Teil der H1 — sichtbar wie eine Augbraue, aber im Dokument
   dort, wo Google das wichtigste Suchwort erwartet */
.h1__ort {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #993c1d;
  margin-bottom: 12px;
}
.h1__ort::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--amber));
  flex-shrink: 0;
}

.hero__lead {
  font-size: 1.15rem;
  max-width: 440px;
  margin-bottom: 30px;
}

.hero__aktionen { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero__zeiten {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  font-size: 0.95rem;
  color: var(--braun-hell);
}
.hero__punkt {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--magenta);
  flex-shrink: 0;
}

.hero__logo {
  position: relative;
  flex-shrink: 0;
}
.hero__logo img {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  box-shadow: 0 14px 40px rgba(74, 36, 24, 0.16);
  border: 7px solid var(--weiss);
}

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__logo { order: -1; justify-self: center; }
  .hero__logo img { width: 210px; height: 210px; border-width: 5px; }
  .hero__inner { max-width: none; }
}

@media (max-width: 700px) {
  .hero { padding: 34px 0 46px; }
  .hero__klecks--1 { width: 300px; height: 300px; right: -120px; top: -80px; }
  .hero__klecks--2 { width: 130px; height: 130px; right: -30px; top: 250px; opacity: 0.22; }
  .hero__klecks--3 { display: none; }
  .hero__lead { font-size: 1.05rem; }
}

/* Auf kleinen Handys schiebt ein großes Logo den Telefonknopf aus dem Bild.
   Der Knopf ist der Zweck der Seite — er hat Vorrang. */
@media (max-width: 400px) {
  .hero__grid { gap: 24px; }
  .hero__logo img { width: 165px; height: 165px; border-width: 4px; }
  .hero h1 { font-size: 2rem; }
  .hero__lead { margin-bottom: 22px; }
}

/* --- Großer Telefon-Knopf --- */

.btn--gross {
  padding: 12px 24px 12px 18px;
  font-size: 1.22rem;
  font-family: var(--serif);
  line-height: 1.15;
  border-radius: 14px;
  align-items: center;
}
.btn--gross small {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-bottom: 1px;
}
.btn__icon {
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.9;
}

/* --- Leistungen --- */

.leistungen__lead { max-width: 620px; }

.leistungen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

/* Farbe ist das Kerngeschäft und der häufigste Suchbegriff — bekommt doppelte Breite */
.leistung--breit {
  grid-column: span 2;
  background: var(--weiss);
  border-color: var(--pfirsich);
}
.abschnitt .leistung--breit { background: var(--weiss); }
.leistung--breit h3 { font-size: 1.4rem; }
.leistung--breit p { font-size: 1rem; }
.leistung--breit::before { width: 110px; height: 110px; top: -34px; right: -34px; }

.leistung__mehr { margin-top: 12px !important; }
.leistung__mehr a {
  font-size: 0.92rem;
  text-decoration: none;
  font-weight: 500;
}
.leistung__mehr a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .leistung--breit { grid-column: span 1; }
}

.leistung {
  position: relative;
  background: var(--creme);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.leistung::before {
  content: "";
  position: absolute;
  top: -26px;
  right: -26px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--pfirsich);
  opacity: 0.4;
  transition: transform 0.3s ease;
}
.leistung:hover {
  transform: translateY(-3px);
  border-color: var(--pfirsich);
  box-shadow: 0 10px 26px rgba(74, 36, 24, 0.09);
}
.leistung:hover::before { transform: scale(1.25); }

.leistung h3 { margin-bottom: 6px; position: relative; }
.leistung p { margin: 0; font-size: 0.95rem; position: relative; }

.leistung--akzent {
  background: var(--braun);
  border-color: var(--braun);
}
.leistung--akzent::before { background: var(--magenta); opacity: 0.5; }
.leistung--akzent h3 { color: var(--creme); }
.leistung--akzent p { color: #d8bfae; }
.leistung--akzent:hover { border-color: var(--magenta); }

/* --- Vorher / Nachher --- */

.arbeiten__lead {
  max-width: 560px;
  font-size: 1.08rem;
}
.arbeiten__lead strong { color: var(--braun); font-weight: 500; }

.arbeiten__fuss {
  text-align: center;
  font-size: 0.92rem;
  margin: 30px 0 0;
}

.vergleich {
  position: relative;
  max-width: 720px;
  margin: 30px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  aspect-ratio: 1 / 1;
  background: var(--creme-dunkel);
}

.vergleich img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.vergleich__oben {
  clip-path: inset(0 0 0 50%);
}

.vergleich__griff {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--weiss);
  transform: translateX(-50%);
  pointer-events: none;
}
.vergleich__griff::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border-radius: 50%;
  background: var(--weiss);
  box-shadow: 0 2px 10px rgba(74, 36, 24, 0.3);
}

.vergleich__pfeile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  color: var(--braun);
  letter-spacing: 2px;
  pointer-events: none;
  z-index: 2;
}

.vergleich__label {
  position: absolute;
  top: 14px;
  background: rgba(74, 36, 24, 0.82);
  color: var(--weiss);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
}
.vergleich__label--l { left: 14px; }
.vergleich__label--r { right: 14px; }

.vergleich__regler {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  cursor: ew-resize;
}

.vergleich__hinweis {
  text-align: center;
  font-size: 0.85rem;
  color: var(--braun-hell);
  margin: 12px 0 0;
}

.prozess__titel {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--braun);
  text-align: center;
  margin: 52px 0 22px;
}

.prozess {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 26px;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.schritt {
  position: relative;
  text-align: center;
}
.schritt img {
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  margin-bottom: 14px;
}
.schritt h3 { font-size: 1.1rem; margin-bottom: 4px; }
.schritt p {
  font-size: 0.9rem;
  margin: 0;
  max-width: 240px;
  margin-inline: auto;
}

.schritt__nr {
  position: absolute;
  top: -12px;
  left: -8px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--weiss);
  font-family: var(--serif);
  font-size: 1.1rem;
  border: 3px solid var(--weiss);
  box-shadow: 0 3px 10px rgba(74, 36, 24, 0.18);
}

/* Verbindungslinie zwischen den Schritten — nur wenn nebeneinander */
@media (min-width: 720px) {
  .schritt:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22%;
    right: -17px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--pfirsich);
    border-right: 2px solid var(--pfirsich);
    transform: rotate(45deg);
  }
}

/* --- Öffnungszeiten --- */

.zeiten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  align-items: start;
  margin-top: 30px;
}

.zeiten__tabelle {
  width: 100%;
  border-collapse: collapse;
}
.zeiten__tabelle th,
.zeiten__tabelle td {
  text-align: left;
  padding: 11px 0;
  border-bottom: 1px solid var(--linie);
  font-weight: 400;
}
.zeiten__tabelle th { color: var(--braun); width: 45%; }
.zeiten__tabelle td { color: var(--braun-hell); }
.zeiten__tabelle tr:last-child th,
.zeiten__tabelle tr:last-child td { border-bottom: 0; }
.zeiten__zu { color: #b09a8c; }

.hinweis {
  background: #fdf0e4;
  border-left: 4px solid var(--amber);
  padding: 18px 20px;
  border-radius: 0;
}
.hinweis h3 { font-size: 1.05rem; margin-bottom: 4px; }
.hinweis p { margin: 0; font-size: 0.95rem; }

/* --- Häufige Fragen --- */

.faq {
  max-width: 760px;
  margin-top: 30px;
  border-top: 1px solid var(--linie);
}

.frage {
  border-bottom: 1px solid var(--linie);
}
.frage summary {
  cursor: pointer;
  padding: 17px 34px 17px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--braun);
  list-style: none;
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--magenta);
  line-height: 1;
  transition: transform 0.2s;
}
.frage[open] summary::after { content: "–"; }
.frage summary:hover { color: var(--magenta); }
.frage p {
  margin: 0 0 18px;
  max-width: 620px;
  font-size: 0.97rem;
}

/* --- Salon --- */

.salon__text { max-width: 620px; }
.salon__text em { color: var(--magenta); font-style: italic; }

/* --- 360°-Rundgang --- */

.salon__lead { max-width: 520px; margin-top: 34px; }

.rundgang {
  max-width: 860px;
  margin: 26px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--linie);
  background: var(--creme-dunkel);
}

.rundgang__start {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  line-height: 0;
}
.rundgang__start img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.rundgang__start:hover img { transform: scale(1.03); filter: brightness(1.04); }

.rundgang__knopf {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(214, 33, 111, 0.94);
  color: var(--weiss);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(74, 36, 24, 0.3);
  transition: background 0.15s;
}
.rundgang__start:hover .rundgang__knopf { background: var(--magenta-dunkel); }

.rundgang__icon { font-size: 1.3rem; }

.rundgang__viewer {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 300px;
}

.rundgang__raeume {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px;
  background: var(--creme);
  border-top: 1px solid var(--linie);
}

.rundgang__raum {
  border: 1px solid var(--linie);
  background: var(--weiss);
  color: var(--braun);
  font-family: var(--sans);
  font-size: 0.88rem;
  padding: 8px 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.rundgang__raum:hover { border-color: var(--magenta); color: var(--magenta); }
.rundgang__raum.ist-aktiv {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--weiss);
}

.rundgang__laedt {
  text-align: center;
  padding: 80px 20px;
  margin: 0;
  color: var(--braun-hell);
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .rundgang__viewer { aspect-ratio: 4 / 3; }
  .rundgang__knopf { font-size: 0.9rem; padding: 13px 20px; }

  /* Fünf Pillen umbrachen auf drei Zeilen (148px hoch) und fraßen den halben
     Bildschirm. Seitlich wischen statt umbrechen. */
  .rundgang__raeume {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .rundgang__raum { flex: 0 0 auto; }
}

/* --- Facebook (Zwei-Klick) --- */

.fb__lead { max-width: 560px; }

.fb {
  max-width: 560px;
  margin-top: 28px;
}

.fb__box {
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  background: var(--creme);
  padding: 34px 28px;
  text-align: center;
}

.fb__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--braun);
  color: var(--creme);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 14px;
}

.fb__box h3 { margin-bottom: 8px; }
.fb__box > p {
  font-size: 0.92rem;
  max-width: 400px;
  margin: 0 auto 20px;
}

.fb__alt {
  font-size: 0.88rem;
  margin: 16px 0 0;
}

.fb__rahmen {
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--weiss);
  line-height: 0;
}
.fb__rahmen iframe {
  width: 100%;
  height: 700px;
  border: 0;
  display: block;
}

.fb__fuss {
  font-size: 0.85rem;
  margin: 12px 0 0;
  color: var(--braun-hell);
}

/* --- Kontakt --- */

.kontakt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.kontakt__zeile {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.kontakt__zeile strong {
  color: var(--braun);
  font-weight: 500;
  min-width: 74px;
  flex-shrink: 0;
}
.kontakt__zeile a { text-decoration: none; }
.kontakt__zeile a:hover { text-decoration: underline; }

/* --- Karte (Zwei-Klick) + Routenplaner --- */

.karte {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--linie);
  background: var(--creme-dunkel);
}

.karte__box {
  padding: 40px 24px;
  text-align: center;
  background: var(--creme);
}
.karte__pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--braun);
  color: var(--creme);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 12px;
}
.karte__box h3 { margin-bottom: 6px; }
.karte__box p {
  font-size: 0.9rem;
  max-width: 340px;
  margin: 0 auto 18px;
}

.karte__rahmen { line-height: 0; }
.karte__rahmen iframe {
  width: 100%;
  height: 330px;
  border: 0;
  display: block;
}

.route__titel {
  font-family: var(--serif);
  color: var(--braun);
  font-size: 1.05rem;
  margin: 22px 0 10px;
}

.route {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.route__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--linie);
  background: var(--weiss);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.9rem;
  color: var(--braun);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, transform 0.15s;
}
.route__btn span { color: var(--magenta); }
.route__btn:hover {
  border-color: var(--magenta);
  color: var(--magenta);
  transform: translateY(-2px);
}

.route__hinweis {
  font-size: 0.82rem;
  color: #a68d7d;
  margin: 10px 0 0;
}

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

.fuss {
  background: var(--braun);
  color: #c9ab9a;
  padding: 44px 0 34px;
  font-size: 0.92rem;
}
.fuss__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.fuss a { color: var(--creme); text-decoration: none; }
.fuss a:hover { text-decoration: underline; }
.fuss__links { display: flex; gap: 20px; flex-wrap: wrap; }
.fuss__marke {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--creme);
}
.fuss__marke span { color: var(--pfirsich); }

/* --- Rechtsseiten --- */

.recht { padding: 56px 0 72px; max-width: 760px; }
.recht h1 { margin-bottom: 0.6em; }
.recht h2 { font-size: 1.35rem; margin-top: 1.8em; }
.recht h3 { font-size: 1.05rem; margin-top: 1.4em; }
.recht dl { margin: 0 0 1.6em; }
.recht dt { color: var(--braun); font-weight: 500; margin-top: 0.9em; }
.recht dd { margin: 0; }
.recht__zurueck {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.92rem;
  text-decoration: none;
}
.recht__zurueck:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
