/* ===========================================================================
   Barber Italienische Schere
   Weiß und Rot. Zwei Register: Intro und Hero stehen dunkel auf den Fotos,
   alles darunter hell — weißer Grund, schwarze Schrift, Rot als einziger
   Farbton. Das Rot ist das der italienischen Flagge (#CE2B37).

   Umgesetzt über Token-Überschreibung: Die hellen Abschnitte setzen dieselben
   Variablen auf ihre hellen Werte um (siehe „Heller Teil" weiter unten).
   Jede Regel im Dokument liest also einfach --papier, --linie, --akzent … und
   bekommt je nach Umgebung den passenden Wert. Dasselbe Verfahren macht aus
   dem Komplettpaket einen roten Block (siehe dort).
   Mobile first.
   =========================================================================== */

:root {
  /* Dunkles Register — Intro und Hero. Das Schwarz hat einen roten Unterton,
     damit es zum Rot darunter gehört statt neutral daneben zu stehen. */
  --schwarz: #140c0d;
  --anthrazit: #1c1214;
  --anthrazit-hell: #24181a;
  --papier: #f7f3f2;
  --papier-leise: rgba(247, 243, 242, 0.68);
  --papier-still: rgba(247, 243, 242, 0.44);
  /* Auf dem dunklen Grund ein helleres Rot derselben Familie — das tiefe Rot
     käme hier nur auf 3,3:1, dieses auf 5,7:1. */
  --akzent: #ec5a62;
  --akzent-leise: rgba(236, 90, 98, 0.42);
  --linie: rgba(247, 243, 242, 0.14);
  --schleier: rgba(14, 8, 9, 0.97);

  /* Helles Register — alles unter dem Hero */
  --weiss: #ffffff;
  --weiss-warm: #fdf7f7;
  --tinte: #161011;
  --tinte-leise: rgba(22, 16, 17, 0.74);
  --tinte-still: rgba(22, 16, 17, 0.54);
  --linie-hell: rgba(22, 16, 17, 0.13);
  /* Das Rot der italienischen Flagge. Als Text auf Weiß 5,2:1, Weiß darauf
     ebenfalls 5,2:1 — es trägt also in beide Richtungen. */
  --akzent-text: #ce2b37;
  --akzent-rand: rgba(206, 43, 55, 0.34);

  /* Signalfarben der Status-Anzeige. Grün für „offen" bleibt Grün: das liest
     jeder sofort, und ein roter Punkt hieße das Gegenteil. */
  --signal-zu: #ce2b37;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --grotesk: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --rand: clamp(1.25rem, 5vw, 4.5rem);
  --weich: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background: var(--weiss);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--weiss);
  color: var(--tinte);
  font-family: var(--grotesk);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--akzent); color: var(--schwarz); }

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

.wrap {
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: var(--rand);
}

/* Kleine Versalien-Texte — das zweite Stimmregister der Seite. */
.eyebrow,
.info-block dt,
.status,
.hero-slogan,
.hero-legal,
.hero-scroll-text,
.btn-outline,
.footer-nav,
.footer-copy,
.gallery-ph,
.info-social {
  font-family: var(--grotesk);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Steht im Vorlesefluss, ist aber nicht zu sehen. */
.nur-vorlesen {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Platzhalter, die noch gefüllt werden müssen. */
.todo {
  border-bottom: 1px dashed var(--akzent-leise);
  color: var(--akzent);
}

/* ===========================================================================
   Heller Teil
   Alles unterhalb des Heros. Dieselben Variablennamen, helle Werte — dadurch
   kippen Karten, Linien, Knöpfe und Hover-Zustände geschlossen mit.
   =========================================================================== */
.prices,
.gallery,
.extra,
.reviews,
.visit,
.site-footer,
.legal-page,
.lightbox {
  --schwarz: var(--weiss);
  --anthrazit: var(--weiss-warm);
  --anthrazit-hell: var(--weiss);
  --papier: var(--tinte);
  --papier-leise: var(--tinte-leise);
  --papier-still: var(--tinte-still);
  --linie: var(--linie-hell);
  --akzent: var(--akzent-text);
  --akzent-leise: var(--akzent-rand);
  --schleier: rgba(255, 255, 255, 0.97);
}

/* ===========================================================================
   INTRO
   =========================================================================== */
#intro {
  display: none;            /* wird nur mit der Klasse .intro-an gezeigt */
  position: fixed;
  inset: 0;
  z-index: 100;
  place-items: center;
  padding: var(--rand);
  background: var(--schwarz);
  cursor: pointer;
  transition: opacity 0.9s var(--weich);
}
.intro-an #intro { display: grid; }
#intro.is-going { opacity: 0; pointer-events: none; }

.intro-slogan {
  margin: 0;
  max-width: 24ch;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--grotesk);
  font-size: clamp(0.75rem, 2.8vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  line-height: 2;
  color: #4a4a50;
  transition: color 1.5s ease-out;
}
#intro.is-lit .intro-slogan { color: #ffffff; }

.intro-skip {
  position: absolute;
  right: var(--rand);
  bottom: var(--rand);
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--linie);
  border-radius: 999px;
  background: none;
  color: var(--papier-still);
  font-family: var(--grotesk);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.intro-skip:hover { color: var(--papier); border-color: var(--papier-still); }

/* ===========================================================================
   HERO
   =========================================================================== */
.hero {
  position: relative;
  background: var(--schwarz);   /* trägt, solange das erste Foto lädt */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 100svh;
  padding: calc(var(--rand) * 0.9) var(--rand) calc(var(--rand) * 0.8);
  overflow: hidden;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.slide.is-active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Sehr langsamer Zoom, solange das Bild steht. */
  transform: scale(1.06);
  transition: transform 9s linear;
}
.slide.is-active img { transform: scale(1); }

/* ---------------------------------------------------------------------------
   Bildausschnitte
   Die Fotos sind überwiegend Hochformat, der Hero ist quer: Was im Bild
   bleibt, entscheidet object-position. Auf breiten Schirmen wird oben und
   unten beschnitten (senkrechter Wert zählt), auf dem Telefon links und
   rechts (waagerechter Wert zählt). Neues Foto? Hier den Wert nachziehen.
   --------------------------------------------------------------------------- */
.slide-fassade img   { object-position: 50% 40%; }  /* Rundbogen im Bild halten */
.slide-innenraum img { object-position: 50% 60%; }  /* Stühle statt Gewölbe */
.slide-salon img     { object-position: 50% 42%; }  /* Barockspiegel mit im Bild */
.slide-kunde img     { object-position: 50% 36%; }  /* Barbier und Kunde im Bild */

@media (max-width: 767px) {
  .slide-fassade img   { object-position: 50% 34%; }
  .slide-innenraum img { object-position: 50% 55%; }
  .slide-salon img     { object-position: 42% 50%; }
  .slide-kunde img     { object-position: 50% 42%; }
}

.hero-scrim {
  background:
    /* Dunkler Keil in der oberen linken Ecke: Dort steht der Infoblock, und das
       Schaufensterfoto ist genau da sehr hell. */
    linear-gradient(to bottom right, rgba(20, 12, 13, 0.72) 0%, rgba(20, 12, 13, 0) 45%),
    linear-gradient(180deg, rgba(20, 12, 13, 0.7) 0%, rgba(20, 12, 13, 0.34) 30%,
                    rgba(20, 12, 13, 0.42) 60%, rgba(20, 12, 13, 0.88) 100%),
    /* Weicher dunkler Teich hinter dem Logo, damit die Wortmarke auf jedem
       der vier Bilder trägt — und eine leichte Vignette außen herum. */
    radial-gradient(48% 38% at 50% 52%, rgba(20, 12, 13, 0.62) 0%, rgba(20, 12, 13, 0) 75%),
    radial-gradient(85% 70% at 50% 50%, rgba(20, 12, 13, 0) 40%, rgba(20, 12, 13, 0.5) 100%);
}

.hero > *:not(.hero-media):not(.hero-scrim) { position: relative; z-index: 1; }

/* --- Infoblock ----------------------------------------------------------- */
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 17rem;
}

.info-block { margin: 0; }
.info-block dt {
  color: var(--akzent);
  margin-bottom: 0.3rem;
}
.info-block dd {
  margin: 0;
  font-family: var(--grotesk);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--papier-leise);
}
.info-block dd a { text-decoration: none; transition: color 0.3s ease; }
.info-block dd a:hover { color: var(--papier); }

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--papier-still);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--papier-still);
  flex: none;
}
.status[data-state="offen"] { color: var(--papier); }
.status[data-state="offen"] .status-dot {
  background: #3ea06a;
  box-shadow: 0 0 0 0 rgba(62, 160, 106, 0.55);
  animation: puls 2.6s ease-out infinite;
}
.status[data-state="zu"] .status-dot { background: var(--signal-zu); }
@keyframes puls {
  70% { box-shadow: 0 0 0 7px rgba(62, 160, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 160, 106, 0); }
}

/* Facebook steht als einziger Eintrag ohne Beschriftung da — deshalb in
   Rot wie die Beschriftungen darüber, damit man den Link auch sieht. */
.info-social { margin: 0; }
.info-social a { color: var(--akzent); text-decoration: none; transition: color 0.3s ease; }
.info-social a:hover { color: var(--papier); }
.info-social span { margin-inline: 0.4rem; }

/* --- Logo + Knopf -------------------------------------------------------- */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.hero-logo {
  width: min(100%, 34rem);
}
.hero-logo svg { width: 100%; height: auto; display: block; }

.btn-outline {
  display: inline-block;
  padding: 1rem 2.6rem;
  background: none;
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--papier-still);
  border-radius: 999px;
  color: var(--papier);
  text-decoration: none;
  transition: border-color 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}
.btn-outline:hover {
  border-color: var(--akzent);
  background: var(--akzent);
  color: var(--schwarz);
}
.btn-small { padding: 0.75rem 1.5rem; }

/* --- Fußzeile des Heros --------------------------------------------------- */
.hero-slogan,
.hero-legal,
.hero-scroll {
  color: var(--papier-still);
}
.hero-slogan { margin: 0; }
.hero-legal a,
.hero-scroll { text-decoration: none; }
.hero-legal a:hover { color: var(--papier); }
.hero-legal span { margin-inline: 0.45rem; }

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, transparent, var(--papier-still));
  animation: sinken 2.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes sinken {
  0%, 100% { transform: scaleY(0.55); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Telefon: alles in einer Spalte, nichts überlappt. Der Infoblock steht
   oben in zwei Spalten, damit er wenig Höhe braucht. */
@media (max-width: 767px) {
  .hero { gap: 1.25rem; }
  .hero-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1rem;
    max-width: none;
  }
  .hero-info .status { grid-column: 1 / -1; order: -1; }
  .hero-info .info-social { grid-column: 1 / -1; }
  .info-block dd { font-size: 0.6875rem; line-height: 1.45; }
  .info-block dt { margin-bottom: 0.2rem; }
  .hero-scroll { order: 2; }
  .hero-slogan { order: 3; text-align: center; }
  .hero-legal { order: 4; text-align: center; font-size: 0.5625rem; }
}

/* Ab Tablet: Slogan links, Hinweis mittig, Recht rechts — in einer Zeile. */
@media (min-width: 768px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto 1fr auto;
    column-gap: 1.5rem;
  }
  .hero-info { grid-area: 1 / 1 / 2 / 4; }
  .hero-center { grid-area: 2 / 1 / 3 / 4; align-self: center; }
  .hero-slogan { grid-area: 3 / 1 / 4 / 2; justify-self: start; align-self: end; }
  .hero-scroll { grid-area: 3 / 2 / 4 / 3; justify-self: center; align-self: end; }
  .hero-legal { grid-area: 3 / 3 / 4 / 4; justify-self: end; align-self: end; }
}

/* ===========================================================================
   Abschnitte allgemein
   =========================================================================== */
section { padding-block: clamp(4rem, 11vw, 8.5rem); }

.section-head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--akzent);
  position: relative;
  padding-bottom: 0.9rem;
}
/* Kurzer roter Strich unter jeder Rubrik — die wiederkehrende Marke. */
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.75rem;
  height: 3px;
  background: var(--akzent);
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 6.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
}
.section-head h2 em {
  font-style: italic;
  color: var(--akzent);
}

.section-sub {
  margin: 1.1rem 0 0;
  max-width: 46ch;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--papier-leise);
}

/* Einblenden beim Scrollen */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--weich), transform 0.9s var(--weich);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ===========================================================================
   PREISE
   =========================================================================== */
.prices { background: var(--schwarz); }

.prices-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}
@media (min-width: 900px) {
  .prices-grid { grid-template-columns: 1.35fr 1fr; align-items: start; }
}

.price-list { margin: 0; padding: 0; list-style: none; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--linie);
}
.price-row:last-child { border-bottom: 0; }

.price-name {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.price-dots {
  flex: 1 1 auto;
  min-width: 1.5rem;
  height: 0;
  border-bottom: 1px dotted var(--tinte-still);
  transform: translateY(-0.3em);
}
.price-value {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--akzent);
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

/* Komplettpaket — der eine volle Farbblock der Seite.

   Dasselbe Verfahren wie beim hellen Register: Die Karte setzt die Token auf
   Weiß um, dadurch kippen Preis, Haken, Linien und Text darin geschlossen mit,
   ohne dass eine einzige Regel darunter angefasst werden muss. */
.package {
  --papier: #ffffff;
  --papier-leise: rgba(255, 255, 255, 0.92);
  --akzent: #ffffff;
  --akzent-leise: rgba(255, 255, 255, 0.45);

  position: relative;
  padding: clamp(1.9rem, 4vw, 2.6rem);
  border: 0;
  border-radius: 4px;
  background: var(--akzent-text);
  color: var(--papier);
  box-shadow: 0 18px 40px -18px rgba(206, 43, 55, 0.55);
}
.package::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border: 1px solid var(--akzent-leise);
  border-radius: 2px;
  pointer-events: none;
}
.package-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 4.5vw, 2rem);
}
.package-price {
  display: block;
  font-weight: 400;              /* <strong> würde sonst einen 600er-Schnitt laden */
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  margin: 0.2rem 0 1.4rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 11vw, 4.25rem);
  line-height: 1;
  color: var(--akzent);
}
.package-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  border-top: 1px solid var(--akzent-leise);
  padding-top: 1.4rem;
}
.package-list li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-size: 0.9rem;
  color: var(--papier-leise);
}
.package-list li::before {
  content: "✓";
  color: var(--akzent);
  flex: none;
  font-size: 0.8rem;
}

.package-hint {
  margin: 1.6rem 0 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--akzent-leise);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--papier);
}

.prices-note {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  font-size: 0.8rem;
  color: var(--papier-still);
}

/* ===========================================================================
   GALERIE
   =========================================================================== */
.gallery { background: var(--anthrazit); }

.gallery-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--anthrazit-hell);
}
.gallery-knopf {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  outline-offset: -3px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--weich), opacity 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); opacity: 0.9; }

/* ---------------------------------------------------------------------------
   Lightbox
   --------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  padding: clamp(1rem, 4vw, 3rem);
  background: var(--schleier);
}
.lightbox[hidden] { display: none; }

.lightbox-figur {
  margin: 0;
  display: grid;
  place-items: center;
  min-width: 0;
}
.lightbox-figur img {
  max-width: 100%;
  max-height: 82svh;
  width: auto;
  object-fit: contain;
  border: 1px solid var(--linie);
}

.lightbox-nav,
.lightbox-close {
  /* Auf dem hellen Schleier trägt die feine Linie nicht — hier etwas kräftiger. */
  border: 1px solid var(--tinte-still);
  background: none;
  color: var(--papier);
  cursor: pointer;
  border-radius: 999px;
  line-height: 1;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.lightbox-nav {
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  padding-bottom: 0.25rem;
}
.lightbox-nav:hover,
.lightbox-close:hover { border-color: var(--akzent); color: var(--akzent); }
.lightbox-close {
  position: absolute;
  top: clamp(1rem, 4vw, 2rem);
  right: clamp(1rem, 4vw, 2rem);
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.6rem;
}

@media (max-width: 599px) {
  .lightbox { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .lightbox-figur { grid-row: 1; }
  .lightbox-prev { grid-column: 1; grid-row: 2; justify-self: start; }
  .lightbox-next { grid-column: 1; grid-row: 2; justify-self: end; }
}

/* ---------------------------------------------------------------------------
   Massagesessel
   --------------------------------------------------------------------------- */
.extra { background: var(--schwarz); }
.extra-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) {
  .extra-grid { grid-template-columns: 1fr 1fr; }
}
.extra-text {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  line-height: 1.6;
  color: var(--papier-leise);
  max-width: 40ch;
}
.extra-bild { margin: 0; overflow: hidden; border: 1px solid var(--linie); }
.extra-bild img { width: 100%; height: auto; display: block; }

/* ===========================================================================
   BEWERTUNGEN
   =========================================================================== */
.reviews { background: var(--schwarz); }

.rating { margin-bottom: clamp(2.5rem, 6vw, 3.5rem); }

.rating-wert {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 11vw, 5rem);
  line-height: 1;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
.rating-max {
  font-size: 0.32em;
  letter-spacing: 0.02em;
  color: var(--papier-still);
}

/* Sternenband: fünf Sterne à 24 Einheiten. Der gefüllte Satz liegt über dem
   leeren und wird anteilig geklippt — so lässt sich jede Note darstellen. */
.sterne {
  display: block;
  width: auto;
  height: clamp(1.15rem, 4vw, 1.4rem);
  margin: 0.9rem 0 0.8rem;
}
.sterne-leer { fill: var(--papier); opacity: 0.18; }
.sterne-voll { fill: var(--akzent); }

.rating-quelle {
  margin: 0;
  font-family: var(--grotesk);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--papier-still);
}

.reviews-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3.5vw, 2rem);
  border: 1px solid var(--linie);
  background: var(--anthrazit);
}
.review-sterne {
  display: block;
  width: auto;
  height: 0.95rem;
  flex: none;
  align-self: flex-start;   /* bündig mit dem Zitat darunter */
}
.review-text {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.4vw, 1.15rem);
  line-height: 1.7;
  color: var(--papier);
  flex: 1 1 auto;
}
.review-name {
  margin: 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--linie);
  font-family: var(--grotesk);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--akzent);
}

/* Telefon: wischbarer Streifen statt Raster, dazu Punkte zur Orientierung. */
.reviews-punkte { display: none; }

@media (max-width: 767px) {
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* bis an den Bildschirmrand scrollen, Inhalt bleibt im Satzspiegel */
    margin-inline: calc(var(--rand) * -1);
    padding-inline: var(--rand);
    scroll-padding-inline: var(--rand);
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review {
    flex: 0 0 min(82%, 20rem);
    scroll-snap-align: start;
  }
  .reviews-punkte {
    display: flex;
    gap: 0.55rem;
    justify-content: center;
    margin-top: 1.5rem;
  }
}

.reviews-punkt {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--papier);
  opacity: 0.22;
  cursor: pointer;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.reviews-punkt[aria-current="true"] { background: var(--akzent); opacity: 1; }

.reviews-cta {
  margin: clamp(2.25rem, 5vw, 3rem) 0 0;
  text-align: center;
}

/* ===========================================================================
   ANFAHRT
   =========================================================================== */
.visit { background: var(--anthrazit); }

.visit-grid { display: grid; gap: clamp(2.5rem, 6vw, 4rem); }
@media (min-width: 900px) {
  .visit-grid { grid-template-columns: 1fr 1.1fr; align-items: stretch; }
}

.visit-block { margin: 0; }
.visit-block dt {
  font-family: var(--grotesk);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--akzent);
  margin-top: 1.8rem;
}
.visit-block dt:first-child { margin-top: 0; }
.visit-block dd {
  margin: 0.5rem 0 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--papier-leise);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
.visit-block dd a { text-decoration: none; }

.hours { border-collapse: collapse; width: 100%; max-width: 22rem; }
.hours th,
.hours td {
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  padding: 0.35rem 0;
  text-align: left;
  font-weight: 400;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--papier-leise);
}
.hours td { text-align: right; color: var(--papier); }

.visit-note {
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--akzent);
}

/* Karte */
.map {
  margin: 0;
  min-height: 20rem;
  border: 1px solid var(--linie);
  background: var(--anthrazit);
  display: grid;
}
.map iframe { width: 100%; height: 100%; min-height: 20rem; border: 0; display: block; }

.map-consent {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
.map-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
}
.map-text {
  margin: 0;
  max-width: 42ch;
  font-size: 0.85rem;
  color: var(--papier-leise);
}
.map-text a, .map-alt a { color: var(--akzent); }
.map-alt { margin: 0; font-size: 0.8rem; }

/* ===========================================================================
   FOOTER
   =========================================================================== */
.site-footer {
  border-top: 1px solid var(--linie);
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: var(--schwarz);
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1fr auto 1fr; }
  .footer-nav { justify-self: center; }
  .footer-copy { justify-self: end; }
}
.footer-name {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.footer-name span {
  display: block;
  font-family: var(--grotesk);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.625rem;
  color: var(--papier-still);
  margin-top: 0.4rem;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-nav a { text-decoration: none; color: var(--papier-still); transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--papier); }
.footer-copy { margin: 0; color: var(--papier-still); }

/* ===========================================================================
   Rechtsseiten
   =========================================================================== */
.legal-page { padding-block: clamp(5rem, 12vw, 8rem); }
.legal-page .wrap { max-width: 44rem; }
.legal-page h1 {
  margin: 0 0 3rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 7vw, 3.4rem);
}
.legal-page h2 {
  margin: 3rem 0 1rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--papier);
}
.legal-page p,
.legal-page li {
  color: var(--papier-leise);
  font-size: 0.95rem;
  line-height: 1.8;
}
.legal-page a { color: var(--akzent); }
.legal-back {
  display: inline-block;
  margin-bottom: 2.5rem;
  text-decoration: none;
  color: var(--papier-still);
  font-family: var(--grotesk);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.625rem;
}
.legal-back:hover { color: var(--papier); }

/* ===========================================================================
   Weniger Bewegung: nichts läuft von selbst.
   =========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slide img { transition: none; transform: none; }
  .slide { transition: opacity 0.4s linear; }
  .hero-scroll-line,
  .status[data-state="offen"] .status-dot { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
