/* =================================================================
   Pension Sonntag – Stylesheet
   Stil: "Warm & einladend" (Beige, Holzbraun, Salbeigrün)
   Aufbau: Design-Variablen → Grundlagen → Layout → Komponenten → Responsive
   Hinweis: Schriften sind systemeigen (DSGVO-freundlich, kein externes CDN).
   ================================================================= */

/* ---------- Design-Variablen (hier zentral anpassbar) ---------- */
:root {
  /* Farben – Palette „Sonntagsfrühstück" (warm, behaglich, einladend) */
  --farbe-bg:        #fdfbf7;   /* sehr helles, warmes Milchweiß (Seitenhintergrund) */
  --farbe-bg-alt:    #f4ebe1;   /* sanftes Cappuccino-Beige (abgesetzte Abschnitte) */
  --farbe-text:      #32271e;   /* tiefes Kaffeebraun (Fließtext) */
  --farbe-text-hell: #6b5d4e;   /* gedämpftes Warmbraun (Sekundärtext) */
  --farbe-primaer:   #c67d2f;   /* warmes Terrakotta (Buttons, Links – lesbar) */
  --farbe-primaer-d: #a9631f;   /* Terrakotta dunkler (Hover) */
  --farbe-gruen:     #7e8c6a;   /* Salbeigrün (zweiter Akzent) */
  --farbe-gold:      #b3791a;   /* warmer Bernstein – lesbar als großer Seitentitel */
  --farbe-weiss:     #ffffff;
  --farbe-rand:      #ecdfce;   /* dezente, warme Trennlinien */

  /* Schrift */
  --font-titel: Georgia, "Times New Roman", "Iowan Old Style", serif;
  --font-text:  system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --breite-max: 1140px;
  --radius:     10px;
  --schatten:   0 4px 18px rgba(58, 47, 36, 0.10);
  --uebergang:  0.2s ease;
}

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

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.7;
  color: var(--farbe-text);
  background: var(--farbe-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-titel);
  line-height: 1.2;
  color: var(--farbe-text);
  font-weight: 600;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; }

a { color: var(--farbe-primaer); text-decoration: none; transition: color var(--uebergang); }
a:hover { color: var(--farbe-primaer-d); text-decoration: underline; }

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

/* ---------- Layout-Hilfen ---------- */
.container {
  width: 100%;
  max-width: var(--breite-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--farbe-bg-alt); }
.section__titel { text-align: center; margin-bottom: 2.5rem; }
.section__titel h2::after {
  content: ""; display: block;
  width: 56px; height: 3px; margin: 0.85rem auto 0;
  background: var(--farbe-primaer); border-radius: 2px;
}
.section__titel p { color: var(--farbe-text-hell); max-width: 620px; margin-inline: auto; }

/* Platzhalter-Bildfläche (bis echte Fotos vorhanden sind) */
.platzhalter-bild {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, #e8dcc8, #e8dcc8 14px, #e2d3bc 14px, #e2d3bc 28px);
  color: var(--farbe-text-hell);
  font-family: var(--font-text);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  min-height: 220px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-text);
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid var(--farbe-primaer);
  transition: background var(--uebergang), color var(--uebergang), transform var(--uebergang);
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primaer { background: var(--farbe-primaer); color: var(--farbe-weiss); }
.btn--primaer:hover { background: var(--farbe-primaer-d); border-color: var(--farbe-primaer-d); color: #fff; }
.btn--outline { background: transparent; color: var(--farbe-primaer); }
.btn--outline:hover { background: var(--farbe-primaer); color: #fff; }
.btn--gross { padding: 1rem 2.4rem; font-size: 1.1rem; }

/* Button-Gruppe generisch (Hero hat eine eigene, spezifischere Regel) */
.btn-gruppe { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }

/* Premium-Glanz: Glanzlicht wandert periodisch über den Button (kurz, dann Pause) */
.btn--shine { position: relative; overflow: hidden; }
.btn--shine::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-20deg); pointer-events: none;
  animation: btn-shine 5s ease-in-out infinite;
}
@keyframes btn-shine { 0% { left: -60%; } 12% { left: 130%; } 100% { left: 130%; } }

/* „Glas"-Button für dunkle Bänder: weiß/transparent mit Blur, füllt sich beim Hover */
.btn--glas {
  background: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btn--glas:hover { background: #fff; color: var(--farbe-text); border-color: #fff; }

/* Pfeil gleitet beim Hover nach rechts */
.btn__pfeil { display: inline-block; margin-left: 0.4rem; transition: transform 0.3s ease; }
.btn--glas:hover .btn__pfeil { transform: translateX(5px); }

/* Sonnen-Glow auf allen Buttons (Hover/Fokus) – passend zu „Pension Sonntag".
   Nur box-shadow-Ring → wirkt einheitlich auch auf transparenten Buttons. */
.btn:hover, .btn:focus-visible {
  box-shadow: 0 0 0 2px rgba(255,212,94,0.30),
              0 0 6px 1px rgba(255,196,64,0.30);           /* statischer Fallback (dezent) */
  animation: sonne-glow 3.2s ease-in-out infinite;
}
@keyframes sonne-glow {
  0%, 100% { box-shadow: 0 0 0 2px rgba(255,212,94,0.26), 0 0 5px 0 rgba(255,196,64,0.22); }
  50%      { box-shadow: 0 0 0 3px rgba(255,212,94,0.40), 0 0 9px 2px rgba(255,196,64,0.38); }
}

/* ================================================================
   Header / Navigation
   ================================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--farbe-rand);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.logo {
  font-family: var(--font-titel);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--farbe-text);
  white-space: nowrap;
}
.logo:hover { text-decoration: none; color: var(--farbe-primaer); }
.logo span { color: var(--farbe-primaer); }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav__liste {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__liste a {
  color: var(--farbe-text);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.nav__liste a:hover,
.nav__liste a[aria-current="page"] {
  color: var(--farbe-primaer);
  border-bottom-color: var(--farbe-primaer);
  text-decoration: none;
}

/* Sprachumschalter */
.sprache { display: flex; gap: 0.4rem; font-size: 0.9rem; align-items: center; }
.sprache a { color: var(--farbe-text-hell); font-weight: 600; padding: 0.2rem 0.45rem; border-radius: 6px; }
.sprache a[aria-current="true"] { background: var(--farbe-primaer); color: #fff; }
.sprache a:hover { text-decoration: none; background: var(--farbe-bg-alt); }
.sprache a[aria-current="true"]:hover { background: var(--farbe-primaer-d); }

/* Mobiles Menü (Hamburger) */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--farbe-text);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ================================================================
   Hero
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh; /* volle Bildschirmhöhe (maximal) */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  /* Titelbild der Startseite. Der dunkle Verlauf darüber sorgt
     dafür, dass Überschrift und Buttons gut lesbar bleiben.
     Hinweis: url() ist relativ zu dieser CSS-Datei → gilt für DE- und EN-Startseite. */
  background-image: linear-gradient(rgba(58, 47, 36, 0.45), rgba(58, 47, 36, 0.55)),
                    url("../Fotos/titelbild.jpg");
  background-size: cover;
  background-position: center;
  background-color: #7e8c6a; /* Fallback, falls das Bild einmal fehlt */
}
.hero__inhalt { max-width: 720px; padding: 2rem 1.25rem; }
/* Logo über dem Titel im Startbild – transparent, ohne Kasten.
   Der Schatten hebt es vom Foto ab. */
.hero__logo {
  display: block;
  width: min(520px, 90%);
  height: auto;
  margin: 0 auto clamp(2.5rem, 6vh, 4.5rem); /* größerer Abstand zum Titel */
  /* dezenter Schatten, damit das helle Logo sauber vom Foto abhebt */
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}
@media (max-width: 600px) { .hero__logo { width: min(340px, 88%); margin-bottom: 2rem; } }
.hero h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero p { color: #f5efe6; font-size: 1.2rem; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.hero .btn-gruppe { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.hero .btn--outline { color: #fff; border-color: #fff; }
.hero .btn--outline:hover { background: #fff; color: var(--farbe-text); }

/* ================================================================
   Karten-Raster (Highlights, Zimmer, Galerie)
   ================================================================ */
.raster {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.karte {
  background: var(--farbe-weiss);
  border: 1px solid var(--farbe-rand);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schatten);
  display: flex;
  flex-direction: column;
  transition: transform var(--uebergang), box-shadow var(--uebergang);
}
.karte:hover { transform: translateY(-4px); box-shadow: 0 8px 26px rgba(58,47,36,0.16); }
.karte__bild { min-height: 200px; }
/* Echtes Bild in Karten (statt Platzhalter) – einheitlicher Zuschnitt */
img.karte__bild { width: 100%; height: 220px; object-fit: cover; display: block; }
/* Bildpaar im Split-Bereich (Zimmer-Detailseite) */
.bild-paar { display: grid; gap: 1rem; }
.bild-paar img { width: 100%; border-radius: var(--radius); display: block;
                 aspect-ratio: 3/2; object-fit: cover; }

/* ================================================================
   Slideshow (Crossfade) – wiederverwendbar für Zimmer-Fotos
   ================================================================ */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--farbe-bg-alt);
  box-shadow: var(--schatten);
  outline: none;
}
.slideshow__bilder { position: absolute; inset: 0; }
.slideshow__bild {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.slideshow__bild--aktiv { opacity: 1; }

.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--farbe-text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: background var(--uebergang), transform var(--uebergang);
}
.slideshow__btn:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.slideshow__btn:focus-visible { outline: 2px solid var(--farbe-primaer); outline-offset: 2px; }
.slideshow__btn--prev { left: 12px; }
.slideshow__btn--next { right: 12px; }

.slideshow__punkte {
  position: absolute;
  bottom: 12px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slideshow__punkt {
  width: 10px; height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background var(--uebergang), transform var(--uebergang);
}
.slideshow__punkt:hover { background: rgba(255, 255, 255, 0.85); }
.slideshow__punkt--aktiv { background: #fff; transform: scale(1.15); }
.slideshow__punkt:focus-visible { outline: 2px solid var(--farbe-primaer); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .slideshow__bild { transition: none; }
}
.karte__body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.karte__body h3 { color: var(--farbe-primaer); }
.karte__preis { margin-top: auto; font-weight: 600; color: var(--farbe-text); font-size: 1.1rem; }

/* ================================================================
   Foto-Karten (Startseite: „Unsere Zimmer") – Bild füllt die ganze
   Karte, Caption mit Name + Preis liegt unten als Overlay.
   ================================================================ */
.raster--zimmer {
  grid-template-columns: repeat(auto-fit, minmax(280px, 460px));
  justify-content: center;
  gap: 2rem;
}
.karte--foto {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--schatten);
  background: var(--farbe-bg-alt);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.karte--foto:hover {
  transform: translateY(-4px);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(58, 47, 36, 0.22);
}
.karte--foto__bild {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.karte--foto:hover .karte--foto__bild { transform: scale(1.05); }

/* Verlauf-Platzhalter, solange noch kein Foto vorhanden ist */
.karte--foto__platzhalter {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #a9743f 0%, #7e8c6a 100%);
}

/* Dunkler Lese-Gradient unten */
.karte--foto::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
  z-index: 1;
}
.karte--foto__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.4rem 1.2rem;
  z-index: 2;
  color: #fff;
}
.karte--foto__name {
  margin: 0 0 0.2rem;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.15;
}
.karte--foto__preis {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 500;
}

/* ================================================================
   Foto-Karte mit Label-Overlay (Gut zu wissen: Parkplätze, Waschraum)
   – Bild füllt die Karte, Beschriftung unten als Overlay, Hover-Zoom.
   Dient zugleich als Lightbox-Auslöser (data-lightbox auf dem Wrapper).
   ================================================================ */
.foto-label {
  position: relative; display: block;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--schatten); cursor: pointer;
  aspect-ratio: 3 / 2; background: var(--farbe-bg-alt);
}
.foto-label img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; transition: transform 0.5s ease;
}
.foto-label:hover img { transform: scale(1.05); }
.foto-label::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none; z-index: 1;
}
.foto-label__text {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem; z-index: 2;
  color: #fff; font-weight: 600; font-size: 1.05rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
/* Parkplätze: beide Fotos gestapelt in der rechten Split-Spalte */
.foto-stapel { display: grid; gap: 0.9rem; }
/* Waschraum: zwei Fotos nebeneinander */
.foto-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.foto-duo .foto-label { aspect-ratio: 4 / 3; }   /* zeigt vom Hochformat-Bild mehr */
@media (max-width: 600px) { .foto-duo { grid-template-columns: 1fr; } }

/* Anker-Sprünge zu Zimmer-Detailblöcken hinter Sticky-Header zentrieren */
#einzelzimmer, #doppelzimmer, #single-room, #double-room {
  scroll-margin-top: 90px;
}

/* Icon-Highlight (ohne Bild) */
.highlight {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  background: var(--farbe-weiss);
  border: 1px solid var(--farbe-rand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Highlight als Link: Aussehen wie zuvor beibehalten */
a.highlight { display: block; color: inherit; text-decoration: none; }
.highlight:hover {
  transform: translateY(-6px);
  box-shadow: var(--schatten);
}
.highlight__icon {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--farbe-bg-alt); border-radius: 50%;
  color: var(--farbe-primaer);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.highlight__icon svg { width: 30px; height: 30px; }
.highlight:hover .highlight__icon {
  background-color: var(--farbe-primaer);
  color: var(--farbe-weiss);
  transform: scale(1.08) rotate(-3deg);
}
.highlight h3 { transition: color 0.3s ease; }
.highlight:hover h3 { color: var(--farbe-primaer); }

/* ================================================================
   Zwei-Spalten (Text + Bild)
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.split--umgekehrt .split__bild { order: -1; }
.split__bild .platzhalter-bild { min-height: 340px; height: 100%; }

/* DSGVO-Karte: erst nach Einwilligung laden (Klick-zum-Laden) */
.karte-consent {
  position: relative; min-height: 340px; height: 100%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 1.5rem; border-radius: var(--radius); overflow: hidden;
  background: repeating-linear-gradient(45deg, #e8dcc8, #e8dcc8 14px, #e2d3bc 14px, #e2d3bc 28px);
}
.karte-consent__box { max-width: 360px; }
.karte-consent__box p { color: var(--farbe-text); }
.karte-consent__hinweis { margin: 0.8rem 0 0; font-size: 0.85rem; }
.karte-consent--geladen { padding: 0; background: none; }
.karte-iframe { width: 100%; height: 100%; min-height: 340px; display: block; border: 0; }

/* ----------------------------------------------------------------
   Lage-Seite: vollbreite Karte mit schwebender Kontaktkarte
   ---------------------------------------------------------------- */
.lage-kontakt { position: relative; }
.lage-karte-wrap { position: relative; }
/* Karte liegt absolut hinter dem Inhalt und füllt das Band; die Höhe bestimmt
   die Kontaktkarte (im Fluss) – so kann nichts über-/unterlaufen. */
.lage-karte { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; }
.lage-karte .karte-iframe { height: 100%; }
/* Consent-Aufforderung in die rechte Hälfte schieben (über die Box, nicht über
   Padding – sonst bliebe das Padding nach dem Laden am iFrame und es entstünde
   rechts ein Balken). Die Box wird beim Laden entfernt, das iFrame bleibt voll breit. */
.lage-karte.karte-consent { justify-content: flex-end; }
.lage-karte .karte-consent__box { margin-right: 6%; }

.lage-karte-overlay {
  position: relative; pointer-events: none;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.lage-karte-overlay .container { width: 100%; }
.kontakt-card {
  pointer-events: auto; max-width: 380px;
  background: var(--farbe-bg); border: 1px solid var(--farbe-rand);
  border-radius: var(--radius); box-shadow: 0 10px 30px rgba(58, 47, 36, .18);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.kontakt-card h2 { margin-top: 0; }
.kontakt-card__cta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.3rem; }

@media (max-width: 800px) {
  /* Mobil: Karte oben (im Fluss), Kontaktkarte darunter, leicht überlappend */
  .lage-karte { position: relative; inset: auto; height: 300px; }
  .lage-karte.karte-consent { justify-content: center; }
  .lage-karte .karte-consent__box { margin-right: 0; }
  .lage-karte-overlay { position: static; padding: 0; pointer-events: auto; }
  .kontakt-card { position: relative; z-index: 1; max-width: none; margin: -2.5rem 1rem 1.5rem; }
}

/* Icon-Kopf für Umgebungs-Karten (statt Foto) */
.karte__icon-kopf {
  display: flex; align-items: center; justify-content: center;
  min-height: 120px; background: var(--farbe-bg-alt);
}
.karte__icon-kopf svg { width: 42px; height: 42px; color: var(--farbe-primaer); }

/* ================================================================
   Galerie + Lightbox
   ================================================================ */
.galerie { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.galerie__item { cursor: pointer; border-radius: var(--radius); overflow: hidden; }
.galerie__item .platzhalter-bild { min-height: 200px; transition: transform var(--uebergang); }
.galerie__item:hover .platzhalter-bild { transform: scale(1.04); }
.galerie__item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform var(--uebergang); }
.galerie__item:hover img { transform: scale(1.04); }

/* Foto-Collage: 1 großes Bild links (über 2 Reihen) + 2 kleinere rechts */
.foto-collage {
  display: grid; grid-template-columns: 1.7fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 0.7rem; aspect-ratio: 16 / 10;
}
.foto-collage .galerie__item { height: 100%; box-shadow: var(--schatten); }
.foto-collage .galerie__item:first-child { grid-row: 1 / 3; }   /* großes Hauptbild */
.foto-collage .galerie__item img { height: 100%; }              /* überschreibt die 220px */

@media (max-width: 600px) {
  /* Mobil: Hauptbild oben über volle Breite, zwei gleich große darunter */
  .foto-collage { aspect-ratio: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .foto-collage .galerie__item:first-child { grid-row: auto; grid-column: 1 / 3; }
  .foto-collage .galerie__item,
  .foto-collage .galerie__item img { height: auto; }
  .foto-collage .galerie__item img { aspect-ratio: 3 / 2; }
}

/* ================================================================
   Schlüsseltresor-Illustration + Animation (Check-in)
   ================================================================ */
.tresor-split { align-items: center; }
.tresor-foto img { width: 100%; border-radius: var(--radius); display: block; box-shadow: var(--schatten); }
/* Einzelnes, zentriertes Info-Foto (z. B. Parkplatz) */
.info-foto { display: block; width: 100%; max-width: 680px; margin: 2rem auto 0; border-radius: var(--radius); }

/* „Gut zu wissen": linksbündiger Abschnitts-Kopf (editorial) */
.abschnitt-kopf { max-width: 720px; margin-bottom: 2rem; }
.abschnitt-kopf .highlight__icon { margin: 0 0 1rem; }      /* Icon linksbündig */
.abschnitt-kopf h2::after {
  content: ""; display: block; width: 56px; height: 3px;
  margin: 0.7rem 0 0; background: var(--farbe-gold); border-radius: 2px;
}
.split__text .highlight__icon { margin: 0 0 1rem; }         /* Icon im Textspalten-Kopf */

/* Hervorgehobenes Callout (z. B. Langzeitgäste) */
.info-callout {
  max-width: 760px; margin-inline: auto; text-align: center;
  background: var(--farbe-bg-alt); border: 1px solid var(--farbe-rand);
  border-radius: var(--radius); box-shadow: var(--schatten);
  padding: clamp(2rem, 5vw, 3rem);
}
.info-callout .highlight__icon { margin: 0 auto 1rem; }
.info-callout h2::after {
  content: ""; display: block; width: 56px; height: 3px;
  margin: 0.7rem auto 0; background: var(--farbe-gold); border-radius: 2px;
}

/* Zwei Callouts nebeneinander (z. B. Langzeit + Küchen) */
.callout-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: stretch;          /* beide Boxen gleich hoch */
}
.callout-duo .info-callout {
  max-width: none;               /* Spalte füllen statt 760px-Limit */
  margin: 0;
  display: flex;
  flex-direction: column;
}
.info-callout__cta { margin-top: 1.5rem; }
.callout-duo .info-callout__cta { margin-top: auto; padding-top: 1.5rem; }  /* Button bündig unten */

@media (max-width: 768px) {
  .callout-duo { grid-template-columns: 1fr; }
}

/* Abschnitts-Icons („Gut zu wissen"): gefüllter Marken-Kreis, damit das Icon auf
   jedem Hintergrund (Creme, Beige, Callout) klar sichtbar ist */
.abschnitt-kopf .highlight__icon,
.split__text .highlight__icon,
.info-callout .highlight__icon {
  background: var(--farbe-primaer);
  color: #fff;
  box-shadow: 0 6px 16px rgba(198, 125, 47, 0.30);
}

/* sanftes, gestaffeltes „Aufploppen" der Galerie-Bilder */
.reveal-aktiv .galerie__item.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-aktiv .galerie__item.reveal:nth-child(3) { transition-delay: 0.16s; }
.tresor-foto figcaption {
  margin-top: 0.6rem; text-align: center;
  font-size: 0.9rem; color: var(--farbe-text-hell);
}
/* 3D-Szene: Tresor in 3/4-Seitenansicht */
.tresor {
  position: relative;                   /* Bezug für das Hand-Overlay */
  perspective: 850px; perspective-origin: 50% 35%;
  max-width: 240px; margin: 1.2rem auto 0;
  padding-bottom: 46px;                 /* Platz für den aufgeklappten Deckel */
}
.tresor__korpus {
  position: relative; width: 150px; height: 196px; margin: 0 auto;
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-27deg);
}
.tresor__innen {
  position: absolute; inset: 0; border-radius: 12px;
  background: #26262b;
  box-shadow: inset 0 0 0 7px #3a3a40, inset 0 8px 18px rgba(0, 0, 0, 0.55);
  transform: translateZ(-12px);          /* Innenraum liegt vertieft hinter dem Deckel */
  display: flex; align-items: center; justify-content: center;
}
.tresor__innen svg { width: 52px; height: auto; }
.tresor__schluessel {
  fill: var(--farbe-primaer); stroke: var(--farbe-primaer);
  transform-box: view-box;
  animation: tresor-key-raus 6.5s ease-in-out infinite;
}

/* Hand-Overlay: nimmt nach dem Öffnen den Schlüssel heraus (flach, immer obenauf) */
.tresor__hand {
  position: absolute; left: 50%; bottom: 0; width: 74px; z-index: 2;
  opacity: 0; transform: translate(-180px, -150px) scale(1.12);
  animation: tresor-hand 6.5s ease-in-out infinite;
}
.tresor__hand-form { fill: #e8c4a0; stroke: #cd9f74; stroke-width: 0.6; }
.tresor__hand-key {
  fill: var(--farbe-gold); stroke: var(--farbe-gold);
  opacity: 0; animation: tresor-hand-key 6.5s ease-in-out infinite;
}

.tresor__deckel {
  position: absolute; inset: 0; border-radius: 12px;
  background: linear-gradient(155deg, #55555e, #3f3f46);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.06), 0 0 0 1px #2c2c30;
  transform-origin: 50% 100%;            /* Scharnier an der unteren Kante */
  transform: rotateX(0deg);
  backface-visibility: hidden;
  animation: tresor-deckel 6.5s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
}
.tresor__deckel svg { width: 104px; height: auto; }

/* Deckel klappt auf und bleibt offen, bis die Hand den Schlüssel entnommen hat */
@keyframes tresor-deckel {
  0%, 8%    { transform: rotateX(0deg); }
  26%, 82%  { transform: rotateX(-74deg); }
  94%, 100% { transform: rotateX(0deg); }
}

/* Hand: von vorne/links herein, greifen, mit Schlüssel nach vorne herausziehen */
@keyframes tresor-hand {
  0%, 36%   { transform: translate(-180px, -150px) scale(1.12); opacity: 0; }
  44%       { transform: translate(-110px, -150px) scale(1.06); opacity: 1; }  /* greift heran (von links) */
  56%       { transform: translate(-60px,  -150px) scale(1.0);  opacity: 1; }  /* fasst den Schlüssel */
  64%       { transform: translate(-58px,  -150px) scale(1.0);  opacity: 1; }
  82%       { transform: translate(-130px, -120px) scale(1.18); opacity: 1; }  /* zieht nach vorne/links heraus */
  88%       { transform: translate(-165px, -112px) scale(1.22); opacity: 0; }
  89%, 100% { transform: translate(-180px, -150px) scale(1.12); opacity: 0; }  /* unsichtbar zurücksetzen */
}

/* Kleiner Schlüssel erscheint beim Greifen in der Hand */
@keyframes tresor-hand-key {
  0%, 56%   { opacity: 0; }
  60%, 84%  { opacity: 1; }
  88%, 100% { opacity: 0; }
}

/* Tresor-Schlüssel wird „übergeben" und blendet aus (Reset hinter geschlossenem Deckel) */
@keyframes tresor-key-raus {
  0%, 56%  { opacity: 1; transform: translateY(0); }
  64%, 90% { opacity: 0; transform: translateY(-6px); }
  100%     { opacity: 1; transform: translateY(0); }
}

/* Schritt-für-Schritt-Anleitung */
.tresor-schritte { margin: 1.3rem 0 0; padding-left: 1.2rem; }
.tresor-schritte li { margin-bottom: 0.4rem; }

/* ================================================================
   Zimmer & Preise – Ausstattung + Foto-Collagen
   ================================================================ */
/* Ausstattungs-Übersicht (für alle Zimmer gleich) */
.ausstattung {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}
.ausstattung__item {
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  text-align: center; font-weight: 600; color: var(--farbe-text);
}
.ausstattung__icon {
  width: 60px; height: 60px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--farbe-bg-alt); color: var(--farbe-primaer);
  border-radius: 50%;
}
.ausstattung__icon svg { width: 28px; height: 28px; }

/* ---- Interaktive Ausstattungs-Icons (Hover am PC + einmal beim Einscrollen) ---- */
.ausstattung__item { transition: transform 0.3s ease; }
.ausstattung__icon { transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease; }
.ausstattung__item:hover { transform: translateY(-4px); }
.ausstattung__item:hover .ausstattung__icon {
  background: var(--farbe-primaer); color: #fff; transform: scale(1.06);
}

/* WLAN – Signal funkt von innen nach außen auf */
@keyframes wifi-welle { 0%, 100% { opacity: 0.3; } 45% { opacity: 1; } }
.ausstattung.ist-sichtbar .js-wifi > * { animation: wifi-welle 1.3s ease-in-out 2; }
.ausstattung__item:hover .js-wifi > * { animation: wifi-welle 1.3s ease-in-out infinite; }
.js-wifi > *:nth-child(1) { animation-delay: 0s; }
.js-wifi > *:nth-child(2) { animation-delay: 0.15s; }
.js-wifi > *:nth-child(3) { animation-delay: 0.30s; }
.js-wifi > *:nth-child(4) { animation-delay: 0.45s; }

/* Dusche – Tropfen fallen */
@keyframes dusche-tropfen { 0% { transform: translateY(0); opacity: 1; } 70% { opacity: 1; } 100% { transform: translateY(5px); opacity: 0; } }
.ausstattung.ist-sichtbar .js-tropfen path { animation: dusche-tropfen 1s ease-in 2; }
.ausstattung__item:hover .js-tropfen path { animation: dusche-tropfen 1s ease-in infinite; }
.js-tropfen path:nth-child(2) { animation-delay: 0.2s; }
.js-tropfen path:nth-child(3) { animation-delay: 0.4s; }

/* Fön – Wind bläst nach links weg (geschwungene Gusts, nur während der Animation sichtbar) */
@keyframes foen-wind { 0% { transform: translateX(0); opacity: 0; } 30% { opacity: 0.9; } 100% { transform: translateX(-3px); opacity: 0; } }
.js-wind path { opacity: 0; }
.ausstattung.ist-sichtbar .js-wind path { animation: foen-wind 0.9s ease-out 2; }
.ausstattung__item:hover .js-wind path { animation: foen-wind 0.9s ease-out infinite; }
.js-wind path:nth-child(2) { animation-delay: 0.15s; }
.js-wind path:nth-child(3) { animation-delay: 0.30s; }

/* WC – Wasserstrudel dreht sich (Spülung) */
@keyframes wc-spuelung {
  0%   { opacity: .85; transform: scale(1) rotate(0); }
  12%  { opacity: .85; transform: scale(1) rotate(0); }
  100% { opacity: 0;   transform: scale(0) rotate(240deg); }
}
.js-wasser { opacity: 0; transform-box: view-box; transform-origin: 12px 11px; }
.ausstattung.ist-sichtbar .js-wasser { animation: wc-spuelung 1.3s ease-in 2; }
.ausstattung__item:hover .js-wasser { animation: wc-spuelung 1.3s ease-in infinite; }

/* TV – Bildrauschen (Static) */
@keyframes tv-rauschen { 0%, 100% { opacity: 0; } 50% { opacity: 0.9; } }
.js-rausch line { opacity: 0; stroke-width: 1.3; }
.ausstattung.ist-sichtbar .js-rausch line { animation: tv-rauschen 0.18s steps(2) 10; }
.ausstattung__item:hover .js-rausch line { animation: tv-rauschen 0.18s steps(2) infinite; }
.js-rausch line:nth-child(2) { animation-delay: 0.05s; }
.js-rausch line:nth-child(3) { animation-delay: 0.10s; }
.js-rausch line:nth-child(4) { animation-delay: 0.03s; }
.js-rausch line:nth-child(5) { animation-delay: 0.08s; }
.js-rausch line:nth-child(6) { animation-delay: 0.12s; }

/* Kleiderschrank – Türen öffnen sich kurz */
@keyframes tuer-auf { 0%, 100% { transform: scaleX(1); } 40%, 70% { transform: scaleX(0.74); } }
.js-tuer-l { transform-box: view-box; transform-origin: 4px 12px; }
.js-tuer-r { transform-box: view-box; transform-origin: 20px 12px; }
.ausstattung.ist-sichtbar .js-tuer-l,
.ausstattung.ist-sichtbar .js-tuer-r { animation: tuer-auf 1.6s ease-in-out 1; }
.ausstattung__item:hover .js-tuer-l,
.ausstattung__item:hover .js-tuer-r { animation: tuer-auf 1.8s ease-in-out infinite; }

/* Küche – Backofentür klappt auf + Duft steigt empor */
@keyframes ofen-tuer { 0%, 100% { transform: scaleY(1); } 45%, 75% { transform: scaleY(0.12); } }
.js-ofentuer { transform-box: view-box; transform-origin: 12px 17px; }
.ausstattung.ist-sichtbar .js-ofentuer { animation: ofen-tuer 1.8s ease-in-out 1; }
.ausstattung__item:hover .js-ofentuer { animation: ofen-tuer 2s ease-in-out infinite; }
@keyframes ofen-duft { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 0.85; } 100% { transform: translateY(-3px); opacity: 0; } }
.js-duft path { opacity: 0; }
.ausstattung.ist-sichtbar .js-duft path { animation: ofen-duft 1.6s ease-out 2; }
.ausstattung__item:hover .js-duft path { animation: ofen-duft 1.6s ease-out infinite; }
.js-duft path:nth-child(2) { animation-delay: 0.3s; }
.js-duft path:nth-child(3) { animation-delay: 0.6s; }

/* Zimmer-Karte: Kopf (Titel + Preis) → Galerie → Anfrage-Button */
.zimmer-block {
  max-width: 880px; margin: 0 auto 2.5rem;
  background: var(--farbe-bg);   /* warmes Creme statt kühlem Weiß */
  border: 1px solid var(--farbe-rand);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  padding: 1.5rem;
}
.zimmer-block:last-of-type { margin-bottom: 0; }

.zimmer-block__kopf {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.4rem 1.2rem; flex-wrap: wrap;
  margin-bottom: 1.2rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--farbe-rand);
}
.zimmer-block__kopf h2 { margin: 0; }
.zimmer-block__preis { color: var(--farbe-text-hell); font-size: 0.95rem; white-space: nowrap; }
.zimmer-block__preis strong { font-size: 1.5rem; color: var(--farbe-primaer); margin-right: 0.15rem; }

.zimmer-block__cta { margin-top: 1.3rem; text-align: right; }

/* Beide Zimmer einheitlich: großes Querformat-Bett oben + 3 hochformatige Thumbnails */
.zimmer-galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.zimmer-galerie img {
  width: 100%; height: auto; object-fit: cover; display: block;
  cursor: pointer; transition: transform 0.4s ease;
}
.zimmer-galerie img:hover { transform: scale(1.04); }
.zimmer-galerie__gross { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.zimmer-galerie img:not(.zimmer-galerie__gross) { aspect-ratio: 3 / 4; }
/* Hero + 3 Thumbnails zeigen; weitere Fotos nur in der Lightbox */
.zimmer-galerie img:nth-of-type(n+5) { display: none; }

@media (max-width: 600px) {
  /* Galerie bleibt 3-spaltig wie am PC (1 großes Bild + 3 Thumbnails nebeneinander) */
  .zimmer-block { padding: 1rem; }
  .zimmer-block__kopf h2 { width: 100%; }     /* Titel eigene Zeile, Preis darunter */
  .zimmer-block__cta { text-align: center; }
  .zimmer-block__cta .btn { width: 100%; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(30, 24, 18, 0.92);
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.lightbox.offen { display: flex; }
.lightbox img {
  width: auto; height: auto;
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: var(--radius);
}
.lightbox .platzhalter-bild {
  max-width: 90vw; max-height: 85vh; border-radius: var(--radius);
  min-width: min(80vw, 600px); min-height: 60vh;
}
.lightbox__schliessen {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: 0; color: #fff; font-size: 2.5rem; cursor: pointer;
  line-height: 1; padding: 0.25rem 0.5rem;
}
.lightbox__schliessen:focus-visible,
.lightbox__nav:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.lightbox__schliessen:focus-visible { border-radius: 6px; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.85); color: var(--farbe-text);
  font-size: 1.9rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background var(--uebergang), transform var(--uebergang);
}
.lightbox__nav:hover { background: #fff; }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }
@media (max-width: 600px) { .lightbox__nav { width: 40px; height: 40px; font-size: 1.6rem; } }

/* ================================================================
   Formular
   ================================================================ */
.formular { max-width: 680px; margin-inline: auto; }
.formular__gruppe { margin-bottom: 1.3rem; }
.formular__reihe { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.formular label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.95rem; }
.formular .pflicht { color: var(--farbe-primaer); }
.formular input,
.formular select,
.formular textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--farbe-rand);
  border-radius: var(--radius);
  font: inherit;
  background: var(--farbe-weiss);
  color: var(--farbe-text);
  transition: border-color var(--uebergang), box-shadow var(--uebergang);
}
.formular input:focus,
.formular select:focus,
.formular textarea:focus {
  outline: none;
  border-color: var(--farbe-primaer);
  box-shadow: 0 0 0 3px rgba(198, 125, 47, 0.18);
}
.formular textarea { resize: vertical; min-height: 130px; }

/* DSGVO-Checkbox */
.formular__dsgvo { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.92rem; color: var(--farbe-text-hell); }
.formular__dsgvo input { width: auto; margin-top: 0.35rem; flex-shrink: 0; }

/* Honeypot (Spam-Falle) – unsichtbar für Menschen */
.hp-feld { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

/* ----------------------------------------------------------------
   Anfrage-Seite: Info-Panel (links) + Formular-Karte (rechts)
   ---------------------------------------------------------------- */
.anfrage-layout {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start;
}
.anfrage-aside {
  position: sticky; top: 6rem;   /* unter dem ~72px hohen, fixen Header andocken */
  background: var(--farbe-bg-alt); border: 1px solid var(--farbe-rand);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem);
}
.anfrage-aside h2 { margin-top: 0; }
.anfrage-aside .kontakt-info { margin-top: 1.2rem; }
.anfrage-card {
  background: var(--farbe-weiss); border: 1px solid var(--farbe-rand);
  border-radius: var(--radius); box-shadow: var(--schatten);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
}
.anfrage-card .formular { max-width: none; margin: 0; }   /* 680px-Zentrierung aufheben */

/* Gruppierte Formular-Abschnitte mit Icon-Überschrift */
.formular__abschnitt { border: 0; padding: 0; margin: 0 0 1.6rem; min-inline-size: 0; }
.formular__abschnitt > legend {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-titel); font-size: 1.1rem; color: var(--farbe-text);
  width: 100%; margin-bottom: 1rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--farbe-rand);
}
.formular__abschnitt > legend svg { width: 20px; height: 20px; color: var(--farbe-primaer); }

/* „Mehrere Zimmer"-Umschalter */
.formular__toggle { display: flex; gap: .6rem; align-items: flex-start; margin: .2rem 0 1rem; }
.formular__toggle input { width: auto; margin-top: .25rem; flex-shrink: 0; }
.formular__toggle label { font-weight: 600; }
.mehrere-felder[hidden] { display: none; }

/* Kontaktdaten neben dem Formular */
.kontakt-info { display: grid; gap: 1rem; }
.kontakt-info__zeile { display: flex; gap: 0.8rem; align-items: flex-start; }
.kontakt-info__zeile svg { width: 22px; height: 22px; color: var(--farbe-primaer); flex-shrink: 0; margin-top: 2px; }

/* Öffnungszeiten als kleine, sortierte Tabelle */
.zeiten { margin-top: 0.45rem; border-collapse: collapse; font-size: 0.92rem; line-height: 1.4; }
.zeiten th, .zeiten td { text-align: left; vertical-align: top; padding: 0.12rem 0; font-weight: 400; }
.zeiten th { color: var(--farbe-text); font-weight: 600; padding-right: 0.9rem; white-space: nowrap; }
.zeiten td:first-of-type { padding-right: 0.7rem; white-space: nowrap; }
.zeiten td:last-of-type { color: var(--farbe-text-hell); }

/* Hinweis-/Erfolgsbox */
.hinweis {
  background: var(--farbe-bg-alt);
  border-left: 4px solid var(--farbe-gruen);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}

/* ================================================================
   Footer
   ================================================================ */
.footer {
  background: #2f261d;
  color: #d9cdba;
  padding: 3rem 0 1.5rem;
  font-size: 0.95rem;
}
.footer a { color: #e7d9c2; }
.footer a:hover { color: #fff; }
.footer__raster {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}
.footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 0.8rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.4rem; }
.footer__unten {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.3rem;
  text-align: center;
  color: #b6a991;
  font-size: 0.88rem;
}

/* ================================================================
   Inhalts-Texthilfen
   ================================================================ */
.text-zentriert { text-align: center; }
.lead { font-size: 1.2rem; color: var(--farbe-text-hell); }

/* Kleines „Eyebrow"-Label über Überschriften */
.kicker {
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.8rem; font-weight: 700; color: var(--farbe-primaer);
  margin: 0 0 0.4rem;
}
/* Echtes Foto im Split-Bildbereich */
.split__bild img {
  width: 100%; border-radius: var(--radius); display: block;
  aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--schatten);
}
/* Kurztext in den Highlight-Kacheln */
.highlight p { color: var(--farbe-text-hell); font-size: 0.95rem; margin: 0.35rem 0 0; }

/* Markantes Schluss-CTA-Band (Foto + warmes Overlay) */
.cta-band {
  position: relative; text-align: center; color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: linear-gradient(rgba(50, 39, 30, 0.62), rgba(50, 39, 30, 0.72)),
              url("../Fotos/startseite-2.jpg") center / cover no-repeat;
}
.cta-band h2 { color: #fff; }
.cta-band h2::after { background: var(--farbe-gold); }
.cta-band .lead { color: #f3ece2; max-width: 620px; margin-inline: auto; }

/* Sanfte Scroll-Animationen (nur aktiv, wenn JS läuft) */
.reveal-aktiv .reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-aktiv .reveal.sichtbar { opacity: 1; transform: none; }
.reveal-aktiv .highlight.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal-aktiv .highlight.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal-aktiv .highlight.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal-aktiv .highlight.reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal-aktiv .highlight.reveal:nth-child(6) { transition-delay: 0.30s; }

/* Richtungs-Slide (für die Zimmer-Kacheln auf „Zimmer & Preise") */
.reveal-aktiv .reveal--links  { transform: translateX(-44px); }
.reveal-aktiv .reveal--rechts { transform: translateX(44px); }

/* Gestaffeltes Einblenden der Ausstattungs-Icons */
.reveal-aktiv .ausstattung__item.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal-aktiv .ausstattung__item.reveal:nth-child(3) { transition-delay: 0.10s; }
.reveal-aktiv .ausstattung__item.reveal:nth-child(4) { transition-delay: 0.15s; }
.reveal-aktiv .ausstattung__item.reveal:nth-child(5) { transition-delay: 0.20s; }
.reveal-aktiv .ausstattung__item.reveal:nth-child(6) { transition-delay: 0.25s; }
.reveal-aktiv .ausstattung__item.reveal:nth-child(7) { transition-delay: 0.30s; }

/* Mobil: seitlichen Slide durch sanftes Hochschieben ersetzen (kein Seiten-Überlauf) */
@media (max-width: 600px) {
  .reveal-aktiv .reveal--links,
  .reveal-aktiv .reveal--rechts { transform: translateY(18px); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-aktiv .reveal { opacity: 1 !important; transform: none !important; }
}
.seiten-kopf {
  background: var(--farbe-bg-alt);
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  text-align: center;
}
/* Feinerer, eleganterer Seitentitel mit dezenter Akzentlinie */
.seiten-kopf h1 { font-weight: 400; letter-spacing: 0.01em; margin-bottom: 0.4rem; color: var(--farbe-gold); }
.seiten-kopf h1::after {
  content: ""; display: block; width: 64px; height: 3px;
  margin: 0.7rem auto 0; background: var(--farbe-primaer); border-radius: 2px;
}
.seiten-kopf p { color: var(--farbe-text-hell); max-width: 600px; margin-inline: auto; margin-bottom: 0; }

/* Preistabelle */
.preis-liste { list-style: none; margin: 0; padding: 0; }
.preis-liste li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 0; border-bottom: 1px dashed var(--farbe-rand);
}
.preis-liste li span:last-child { font-weight: 600; color: var(--farbe-primaer); white-space: nowrap; }

/* ================================================================
   Responsive – mobiles Menü ab 860px
   ================================================================ */
@media (max-width: 860px) {
  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--farbe-bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--farbe-rand);
    box-shadow: var(--schatten);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  .nav.offen { transform: translateY(0); }

  .nav__liste { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__liste li { border-bottom: 1px solid var(--farbe-rand); }
  .nav__liste a { display: block; padding: 0.85rem 0; }
  .nav__liste a[aria-current="page"] { border-bottom-color: var(--farbe-rand); }

  .sprache { margin-top: 1rem; justify-content: center; }
}

@media (max-width: 800px) {
  /* Anfrage: einspaltig, Formular zuerst, Info-Panel darunter */
  .anfrage-layout { grid-template-columns: 1fr; }
  .anfrage-aside { position: static; order: 2; }
  .anfrage-card { order: 1; }
}

@media (max-width: 600px) {
  .split { grid-template-columns: 1fr; }
  .split--umgekehrt .split__bild { order: 0; }
  .formular__reihe { grid-template-columns: 1fr; }
}

/* Barrierefreiheit: Bewegungsreduktion respektieren */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  /* Ohne Animation den Tresor statisch geöffnet zeigen, damit erkennbar bleibt,
     dass er sich öffnet und der Schlüssel im Inneren liegt. */
  .tresor__deckel { transform: rotateX(-74deg); }
}
