@charset "utf-8";
/* Restaurant Lido Steckborn - Entwurf
 *
 * Aufbau: 1 Grundlagen  2 Kopf  3 Knoepfe  4 Hero  5 Baender und Raster
 *         6 Karten (Speisen)  7 Galerie  8 Fuss  9 Bewegung
 *
 * Keine style-Attribute im HTML: die Content-Security-Policy verbietet
 * inline-Stile. Alles laeuft ueber Klassen.
 */

/* ============================== 1 Grundlagen ============================= */
@font-face {
  font-family: 'Lido Serif';
  src: url('/assets/fonts/serif.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lido Sans';
  src: url('/assets/fonts/sans.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Das Schild vor dem Haus gibt die Farben vor: dunkles Seeblau fuer die
   * Schrift, ein helleres Blau fuer das Segel. Dazu ein warmer Ton fuer
   * alles, was angeklickt werden soll - er hebt sich vom Blau ab. */
  --navy: #17365f;
  --navy-tief: #102744;
  --segel: #5c9fd6;
  /* Fuer kleine Schrift auf dem dunklen Blau: --segel kommt bei 12.5px
   * nur auf 4.27:1. Diese Fassung liegt bei 6.0:1. */
  --segel-hell: #9ec8ea;
  --akzent: #b0522c;
  --akzent-dunkel: #8c3f20;
  --grund: #fbf9f5;
  --grund-warm: #f4efe6;
  --flaeche: #ffffff;
  --text: #2a2a2a;
  --text-leise: #59554f;
  --linie: #e3dcd0;
  --linie-stark: #cdc3b3;
  --schatten: 0 1px 2px rgba(16, 39, 68, .06), 0 8px 24px rgba(16, 39, 68, .07);
  --schatten-tief: 0 2px 4px rgba(16, 39, 68, .08), 0 18px 40px rgba(16, 39, 68, .12);
  --radius: 10px;
  --radius-klein: 6px;
  --breite: 1180px;
  --eng: 760px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--grund);
  color: var(--text);
  font-family: 'Lido Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Lido Serif', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.005em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.35rem + 3.1vw, 3.25rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.6vw, 2.25rem); }
h3 { font-size: clamp(1.18rem, 1.05rem + .55vw, 1.4rem); }
h4 { font-size: 1.0625rem; }

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

a { color: var(--akzent-dunkel); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--akzent); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .35em; }

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

.hilfe-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: .7rem 1.1rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-klein) 0;
}
.hilfe-link:focus { left: 0; color: #fff; }

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

.huelle {
  width: 100%;
  max-width: var(--breite);
  margin: 0 auto;
  padding: 0 1.15rem;
}
.huelle--eng { max-width: var(--eng); }

.band { padding: clamp(2.75rem, 1.6rem + 5vw, 5rem) 0; }
.band--knapp { padding: clamp(2rem, 1.4rem + 2.4vw, 3rem) 0; }
.band--flaeche { background: var(--flaeche); }
.band--warm { background: var(--grund-warm); }
.band--navy { background: var(--navy); }
.band--navy h2, .band--navy h3 { color: #fff; }
.band--navy p, .band--navy li { color: #e4ecf5; }

.band-kopf { max-width: 44rem; margin-bottom: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); }
.band-kopf--mitte { margin-left: auto; margin-right: auto; text-align: center; }
.band-kopf p { color: var(--text-leise); font-size: 1.1rem; }
.band--navy .band-kopf p { color: #ccdaea; }

.ueber {
  display: block;
  font-family: 'Lido Sans', system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  /* Der helle Akzent kommt bei 12.5px nur auf 4.27:1 - zu wenig. Die
   * dunklere Fassung liegt bei 5.6:1 auf Papier und auf der warmen
   * Flaeche. */
  color: var(--akzent-dunkel);
  margin-bottom: .7rem;
}
.band--navy .ueber { color: var(--segel-hell); }

.leise { color: var(--text-leise); }
.klein { font-size: .95rem; }

/* ================================ 2 Kopf ================================= */
.entwurf-streifen {
  background: var(--navy-tief);
  color: #dce7f3;
  font-size: .82rem;
  line-height: 1.45;
  padding: .5rem 0;
  text-align: center;
}
.entwurf-streifen strong { color: #fff; }

.kopf {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--linie);
  backdrop-filter: blur(8px);
}
.kopf-zeile {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.marke {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--navy);
  flex: 0 0 auto;
}
.marke:hover { color: var(--navy); }
.marke-segel { width: 34px; height: 34px; flex: 0 0 auto; }
.marke-text { display: flex; flex-direction: column; line-height: 1; }
.marke-name {
  font-family: 'Lido Serif', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.marke-ort {
  /* Nicht unter 12px: darunter wird die Zeile auf dem Telefon unlesbar.
   * rem rechnet gegen html (16px), .75rem sind genau 12px. */
  font-size: .75rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--text-leise);
  margin-top: .2rem;
}

.kopf-navi { margin-left: auto; }
.navi-liste {
  display: flex;
  align-items: center;
  gap: .15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navi-liste a {
  display: block;
  padding: .55rem .62rem;
  border-radius: var(--radius-klein);
  color: var(--navy);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
.navi-liste a:hover { background: var(--grund-warm); color: var(--navy); }
.navi-liste a[aria-current='page'] {
  color: var(--akzent-dunkel);
  box-shadow: inset 0 -2px 0 var(--akzent);
}

.kopf-tel { flex: 0 0 auto; }

.navi-schalter {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: .45rem;
  background: none;
  border: 1px solid var(--linie-stark);
  border-radius: var(--radius-klein);
  padding: .55rem .7rem;
  color: var(--navy);
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
}
.navi-schalter:hover { background: var(--grund-warm); }
.navi-balken { display: block; width: 20px; height: 2px; background: currentColor; position: relative; }
.navi-balken::before, .navi-balken::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
}
.navi-balken::before { top: -6px; }
.navi-balken::after { top: 6px; }

/* Mobiler Auszug. Die Sichtbarkeit haengt am hidden-Attribut; es gibt
 * bewusst KEINE eigene display-Regel fuer .navi-auszug, die das Attribut
 * aushebeln koennte. */
.navi-auszug {
  position: fixed;
  inset: 0;
  z-index: 150;
}
.navi-schleier {
  position: absolute;
  inset: 0;
  background: rgba(16, 39, 68, .5);
  border: 0;
  padding: 0;
  cursor: pointer;
  animation: einblenden .2s ease;
}
.navi-tafel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(21rem, 88vw);
  background: var(--flaeche);
  box-shadow: var(--schatten-tief);
  padding: 1.15rem;
  overflow-y: auto;
  animation: einschieben .24s ease;
}
@keyframes einblenden { from { opacity: 0; } to { opacity: 1; } }
@keyframes einschieben { from { transform: translateX(100%); } to { transform: translateX(0); } }

.navi-tafel-kopf { display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem; }
.navi-tafel-titel { font-family: 'Lido Serif', Georgia, serif; font-size: 1.15rem; color: var(--navy); }
.navi-zu {
  background: none;
  border: 1px solid var(--linie-stark);
  border-radius: var(--radius-klein);
  width: 38px; height: 38px;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
}
.navi-zu:hover { background: var(--grund-warm); }
.navi-tafel ul { list-style: none; margin: 0 0 1rem; padding: 0; }
.navi-tafel li { margin: 0; border-bottom: 1px solid var(--linie); }
.navi-tafel a {
  display: block;
  padding: .8rem .2rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.navi-tafel a[aria-current='page'] { color: var(--akzent-dunkel); }

/* =============================== 3 Knoepfe =============================== */
.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.3rem;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius-klein);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease, color .18s ease;
}
.knopf:hover { transform: translateY(-1px); }
.knopf:active { transform: translateY(0); }

.knopf--haupt { background: var(--akzent); color: #fff; box-shadow: 0 2px 10px rgba(176, 82, 44, .28); }
.knopf--haupt:hover { background: var(--akzent-dunkel); color: #fff; box-shadow: 0 4px 16px rgba(176, 82, 44, .34); }

.knopf--zweit { background: var(--navy); color: #fff; }
.knopf--zweit:hover { background: var(--navy-tief); color: #fff; }

.knopf--rand { background: transparent; border-color: var(--linie-stark); color: var(--navy); }
.knopf--rand:hover { background: var(--grund-warm); color: var(--navy); }

.knopf--hell { background: #fff; color: var(--navy); }
.knopf--hell:hover { background: #eef3f9; color: var(--navy-tief); }

.knopf--glas { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .55); color: #fff; }
.knopf--glas:hover { background: rgba(255, 255, 255, .24); color: #fff; }

.knopf--klein { padding: .55rem .9rem; min-height: 40px; font-size: .92rem; }
.knopf-reihe { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ================================ 4 Hero ================================= */
.hero { position: relative; background: var(--navy-tief); overflow: hidden; }
.hero-bild {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}
/* Der Verlauf sitzt zwischen Bild und Text. Alle Textfarben darauf sind
 * gegen die dunkelste Stelle geprueft, nicht gegen den Mittelwert. */
.hero-schleier {
  position: absolute;
  inset: 0;
  /* Zwei Verlaeufe: der senkrechte nimmt dem Bild die Spitzlichter, der
   * waagrechte sichert die linke Haelfte, wo der Text steht. Geprueft
   * gegen die hellste Stelle unter dem Text, nicht gegen den Mittelwert. */
  background:
    linear-gradient(to right, rgba(11, 28, 50, .82) 0%, rgba(11, 28, 50, .66) 42%,
                    rgba(11, 28, 50, .34) 78%, rgba(11, 28, 50, .28) 100%),
    linear-gradient(to top, rgba(11, 28, 50, .72) 0%, rgba(11, 28, 50, .42) 40%,
                    rgba(11, 28, 50, .24) 75%, rgba(11, 28, 50, .3) 100%);
}
.hero-inhalt {
  position: relative;
  padding: clamp(3.4rem, 2rem + 9vw, 7.5rem) 0 clamp(2.6rem, 1.6rem + 5vw, 5rem);
}
.hero-text { max-width: 37rem; }
.hero h1 { color: #fff; margin-bottom: .55rem; }
.hero-unter {
  color: #e8eff7;
  font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}
.hero-marke {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9fc6ea;
  margin-bottom: .9rem;
}
.hero .knopf-reihe { margin-bottom: 1.6rem; }

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 100px;
  padding: .42rem .95rem;
  color: #fff;
  font-size: .92rem;
  font-weight: 500;
}
.hero-status-punkt {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #7fd39a;
  box-shadow: 0 0 0 3px rgba(127, 211, 154, .28);
  flex: 0 0 auto;
}
.hero-status[data-zustand='zu'] .hero-status-punkt { background: #e8b46a; box-shadow: 0 0 0 3px rgba(232, 180, 106, .26); }

/* ========================= 5 Baender und Raster ========================== */
.vertrauen { background: var(--flaeche); border-bottom: 1px solid var(--linie); }
.vertrauen-raster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--linie);
}
.vertrauen-zelle {
  background: var(--flaeche);
  padding: 1.3rem 1rem;
  text-align: center;
}
.vertrauen-wert {
  font-family: 'Lido Serif', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}
.vertrauen-wort { font-size: .88rem; color: var(--text-leise); display: block; margin-top: .25rem; }
.vertrauen-sterne { color: var(--akzent); letter-spacing: .05em; }

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
.duo--gedreht .duo-bild { order: 2; }
.duo-bild img { border-radius: var(--radius); box-shadow: var(--schatten); width: 100%; }
.duo-text h2 { margin-bottom: .6rem; }

.dreier {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, .6rem + 1.6vw, 1.8rem);
}
.zweier {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, .6rem + 1.6vw, 1.8rem);
}
.vierer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.9rem, .6rem + 1.2vw, 1.5rem);
}

.tafel {
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 1rem + .8vw, 1.8rem);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tafel h3 { margin-bottom: .45rem; }
.tafel p { color: var(--text-leise); }
.tafel-fuss { margin-top: auto; padding-top: 1rem; }

.bildkarte {
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .22s ease, transform .22s ease;
}
.bildkarte:hover { box-shadow: var(--schatten); transform: translateY(-2px); }
.bildkarte-bild { position: relative; aspect-ratio: 4 / 3; background: var(--grund-warm); }
.bildkarte-bild img { width: 100%; height: 100%; object-fit: cover; }
.bildkarte-text { padding: 1.05rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.bildkarte-text h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.bildkarte-text p { font-size: .97rem; color: var(--text-leise); }
.bildkarte-preis {
  font-family: 'Lido Serif', Georgia, serif;
  font-size: 1.1rem;
  color: var(--akzent-dunkel);
  font-weight: 600;
  margin-top: auto;
  padding-top: .7rem;
}

.zeiten-tafel {
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
}
.zeiten-liste { list-style: none; margin: 0; padding: 0; }
.zeiten-liste li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .72rem 1.15rem;
  border-bottom: 1px solid var(--linie);
  margin: 0;
  font-size: 1rem;
}
.zeiten-liste li:last-child { border-bottom: 0; }
.zeiten-tag { color: var(--text); }
.zeiten-wert { color: var(--navy); font-weight: 600; text-align: right; }
.zeiten-liste li[data-ruhetag='ja'] .zeiten-tag,
.zeiten-liste li[data-ruhetag='ja'] .zeiten-wert { color: var(--text-leise); font-weight: 500; }
.zeiten-liste li[data-heute='ja'] { background: #f6f1e8; }
.zeiten-liste li[data-heute='ja'] .zeiten-tag { font-weight: 600; }

.hinweis-liste { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.hinweis-liste li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .7rem;
  color: var(--text-leise);
  font-size: .98rem;
}
.hinweis-liste li::before {
  content: '';
  position: absolute;
  left: .3rem; top: .62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--segel);
}

.termin-raster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.termin-monat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 1.1rem;
}
.termin-monat h3 { font-size: 1.05rem; margin-bottom: .6rem; color: #fff; }
.termin-tage { display: flex; flex-wrap: wrap; gap: .4rem; }
.termin-tag {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  border-radius: var(--radius-klein);
  padding: .3rem .6rem;
  font-weight: 600;
  font-size: .95rem;
}

.stimme {
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-left: 3px solid var(--segel);
  border-radius: var(--radius-klein);
  padding: 1.3rem 1.4rem;
  height: 100%;
}
.stimme blockquote { margin: 0 0 .8rem; font-size: 1.04rem; color: var(--text); }
.stimme figcaption { font-size: .9rem; color: var(--text-leise); }
.stimme-name { font-weight: 600; color: var(--navy); }

.jahr-liste { list-style: none; margin: 0; padding: 0; }
.jahr-eintrag {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--linie);
  margin: 0;
}
.jahr-eintrag:last-child { border-bottom: 0; }
.jahr-monat {
  font-family: 'Lido Serif', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}
.jahr-eintrag ul { margin: 0; padding-left: 1.1em; }
.jahr-eintrag li { color: var(--text-leise); }

.tabelle-huelle { overflow-x: auto; }
.feiertage {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 22rem;
}
.feiertage th, .feiertage td {
  text-align: left;
  padding: .7rem .9rem;
  border-bottom: 1px solid var(--linie);
  vertical-align: top;
}
.feiertage th { color: var(--navy); font-weight: 600; white-space: nowrap; }

/* ============================ 6 Speisekarte ============================== */
.karte-sprung {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 0;
  margin: 0 0 clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
  list-style: none;
}
.karte-sprung li { margin: 0; }
.karte-sprung a {
  display: inline-block;
  background: var(--flaeche);
  border: 1px solid var(--linie-stark);
  border-radius: 100px;
  padding: .42rem .95rem;
  font-size: .93rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease;
}
.karte-sprung a:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.karte-gruppe { margin-bottom: clamp(2.2rem, 1.6rem + 2.4vw, 3.4rem); }
.karte-gruppe:last-child { margin-bottom: 0; }
.karte-gruppe > h2 {
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: .35rem;
}
.karte-notiz { color: var(--text-leise); font-size: .97rem; margin: .5rem 0 1.1rem; }

.speisen { list-style: none; margin: 0; padding: 0; }
.speise {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .4rem 1.2rem;
  align-items: baseline;
  padding: .75rem 0;
  border-bottom: 1px dotted var(--linie-stark);
  margin: 0;
}
.speise:last-child { border-bottom: 0; }
.speise-name { color: var(--text); }
.speise-preis {
  font-family: 'Lido Serif', Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.speise-zusatz {
  display: block;
  font-size: .88rem;
  color: var(--text-leise);
  margin-top: .12rem;
}
.marke-vegi {
  display: inline-block;
  margin-left: .45rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3d6b3f;
  background: #eaf3ea;
  border-radius: 3px;
  padding: .1rem .35rem;
  vertical-align: .1em;
}
.marke-pikant { color: #9a3b24; background: #f8eae5; }

.preise-mehr { display: flex; flex-direction: column; gap: .2rem; align-items: flex-end; }
/* Kein nowrap auf der ganzen Zeile: "vegetarisch, mit oder ohne Ei"
 * sprengte damit bei 320px die Seite. Nur der Preis bleibt zusammen. */
.preis-zeile { display: flex; gap: .6rem; font-size: .96rem; }
.preis-menge { color: var(--text-leise); }
.preis-wert { font-family: 'Lido Serif', Georgia, serif; font-weight: 600; color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* =============================== 7 Galerie =============================== */
.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: .9rem;
}
.galerie figure {
  margin: 0;
  border-radius: var(--radius-klein);
  overflow: hidden;
  background: var(--grund-warm);
  border: 1px solid var(--linie);
}
.galerie-bild { aspect-ratio: 4 / 3; }
.galerie-bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.galerie figure:hover .galerie-bild img { transform: scale(1.03); }
.galerie figcaption { padding: .6rem .8rem .75rem; font-size: .88rem; color: var(--text-leise); background: var(--flaeche); }

.bildquelle {
  margin-top: 1.6rem;
  padding: 1rem 1.2rem;
  background: var(--grund-warm);
  border-radius: var(--radius-klein);
  font-size: .92rem;
  color: var(--text-leise);
}

/* Freistehende Bilder */
.breitbild { border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten); }
.breitbild img { width: 100%; }
.bildpaar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bildpaar img { border-radius: var(--radius); box-shadow: var(--schatten); width: 100%; }

/* =============================== 8 Fuss ================================== */
.fuss { background: var(--navy-tief); color: #cfdced; padding: clamp(2.5rem, 2rem + 2vw, 3.5rem) 0 1.5rem; }
.fuss a { color: #fff; }
.fuss a:hover { color: var(--segel); }
.fuss-raster {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(1.6rem, 1rem + 2.4vw, 3rem);
  margin-bottom: 2rem;
}
.fuss h2, .fuss h3 { color: #fff; font-size: 1.05rem; margin-bottom: .7rem; }
.fuss-marke { display: flex; align-items: center; gap: .6rem; margin-bottom: .9rem; }
.fuss-marke .marke-name { color: #fff; }
.fuss-marke .marke-ort { color: #9fb7d2; }
.fuss-liste { list-style: none; margin: 0; padding: 0; }
.fuss-liste li { margin-bottom: .45rem; }
.fuss-liste a { text-decoration: none; }
.fuss-liste a:hover { text-decoration: underline; }
.fuss-adresse { font-style: normal; line-height: 1.75; }
.fuss-zeiten { list-style: none; margin: 0; padding: 0; font-size: .96rem; }
.fuss-zeiten li { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .3rem; }
.fuss-unten {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  justify-content: space-between;
  font-size: .88rem;
  color: #9fb7d2;
}
.fuss-unten ul { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.fuss-unten a { text-decoration: none; }

/* Fester Balken auf dem Telefon */
.tel-balken {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: .6rem;
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--linie);
  box-shadow: 0 -4px 16px rgba(16, 39, 68, .08);
}
.tel-balken .knopf { flex: 1; }

/* =============================== 9 Bewegung ============================== */
/* Wichtig: der Ausgangszustand wird per Klasse gesetzt, die site.js beim
 * Start vergibt. Ohne JavaScript bleibt alles sichtbar - ein Block darf
 * nicht dauerhaft verschwinden, nur weil der Beobachter nie feuert. */
.js .auftritt { opacity: 0; transform: translateY(14px); }
.js .auftritt.sichtbar {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .5s ease;
}

/* ============================== Umbruchpunkte ============================ */
@media (max-width: 1280px) {
  .navi-liste a { padding: .55rem .48rem; font-size: .9rem; }
  .marke-name { font-size: 1.45rem; }
}

/* Die Zeile im Kopf tragen sieben Eintraege plus Telefonknopf erst ab
 * 1150px. Darunter uebernimmt die Schublade - sonst laeuft der Kopf bei
 * 992 und 1024px waagrecht ueber, und genau dort schaut niemand hin. */
@media (max-width: 1150px) {
  .kopf-navi, .kopf-tel { display: none; }
  .navi-schalter { display: inline-flex; }
}

@media (max-width: 960px) {
  .vertrauen-raster { grid-template-columns: repeat(2, 1fr); }
  .duo { grid-template-columns: 1fr; gap: 1.6rem; }
  .duo--gedreht .duo-bild { order: 0; }
  .dreier { grid-template-columns: repeat(2, 1fr); }
  .vierer { grid-template-columns: repeat(2, 1fr); }
  .fuss-raster { grid-template-columns: 1fr 1fr; }
  .termin-raster { grid-template-columns: repeat(2, 1fr); }
  html { scroll-padding-top: 80px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 4.6rem; }
  .tel-balken { display: flex; }
  .jahr-eintrag { grid-template-columns: 1fr; gap: .4rem; }
  .dreier, .vierer, .zweier { grid-template-columns: 1fr; }
  .termin-raster { grid-template-columns: 1fr; }
  .fuss-raster { grid-template-columns: 1fr; }
  .bildpaar { grid-template-columns: 1fr; }
  .galerie { grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr)); }
  .hero .knopf-reihe .knopf { flex: 1 1 13rem; }
}

@media (max-width: 420px) {
  .marke-name { font-size: 1.3rem; }
  .marke-segel { width: 28px; height: 28px; }
  /* Auf 320px passten Wortmarke samt Unterzeile und die Beschriftung
   * "Menü" nicht in eine Zeile - die Seite lief 20px ueber. Der Knopf
   * behaelt seine Balken und traegt die Beschriftung im aria-label. */
  .navi-schalter .navi-wort { display: none; }
  .navi-schalter { padding: .55rem .6rem; }
  .marke-ort { letter-spacing: .12em; }
  .galerie { grid-template-columns: 1fr; }
  .vertrauen-raster { grid-template-columns: 1fr; }
}

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

@media print {
  .kopf, .tel-balken, .entwurf-streifen, .karte-sprung, .hero-schleier { display: none !important; }
  body { background: #fff; padding-bottom: 0; }
  .band { padding: 1rem 0; }
}

/* Wird von site.js gesetzt, solange der mobile Auszug offen ist. Als Klasse,
 * weil die Content-Security-Policy style-Attribute verbietet. */
.kein-scroll { overflow: hidden; }

/* Dieselbe Anzeige auf hellem Grund - die Fassung im Hero ist fuer weissen
 * Text auf dunklem Bild gebaut und waere hier unsichtbar. */
.hero-status--hell {
  background: var(--grund-warm);
  border-color: var(--linie-stark);
  color: var(--navy);
  margin-top: 1rem;
}
