/* ==========================================================================
   Casona Bello Feo — Stylesheet
   Design-Tokens und Sektionsstile der Vorlage, als wiederverwendbare Klassen.
   ========================================================================== */

:root {
  --ink: #221e17;
  --bone: #f4efe4;
  --bone2: #ece3d3;
  --sand: #e3d8c4;
  --stone: #8b8069;
  --muted: #6d6453;
  --teak: #a9683e;
  --gold: #9c8455;
  --line: rgba(34, 30, 23, .14);
  --line-light: rgba(244, 239, 228, .14);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;

  --wrap: 1280px;
  --wrap-wide: 1440px;
  --sec-y: 130px;
  --pad-x: 40px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--teak); text-decoration: none; }
a:hover { color: var(--ink); }

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

::selection { background: var(--teak); color: #fff; }

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad-x); }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding-inline: var(--pad-x); }

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

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--bone);
  padding: 12px 20px; border-radius: 2px;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; color: var(--bone); }

/* ---------- Typografie-Bausteine ---------- */
.eyebrow {
  font-size: 12px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--teak); margin: 0 0 22px;
}
.eyebrow-light { color: var(--sand); }

.eyebrow-rule { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.eyebrow-rule::before { content: ""; width: 44px; height: 1px; background: var(--teak); flex: none; }
.eyebrow-rule span { font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: var(--teak); }

.h-display {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 4.4vw, 60px); line-height: 1.06;
  letter-spacing: .01em; margin: 0 0 34px;
}
.h-section {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.1; margin: 0;
}
.h-panel {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 3.6vw, 50px); line-height: 1.08; margin: 0 0 28px;
}

.body-text {
  font-size: 18px; line-height: 1.75; color: var(--muted);
  font-weight: 300; margin: 0 0 22px; max-width: 560px;
}
.body-text:last-child { margin-bottom: 0; }
.body-text-light { color: rgba(244, 239, 228, .72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; border: 1px solid transparent;
  padding: 17px 40px; border-radius: 2px;
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn-solid { background: var(--teak); color: #fff; }
.btn-solid:hover { background: var(--ink); color: #fff; }
.btn-outline { color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-outline-light { color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

.link-arrow {
  align-self: flex-start; color: var(--ink);
  border-bottom: 1px solid var(--teak); padding-bottom: 5px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  transition: color .3s var(--ease);
}
.link-arrow:hover { color: var(--teak); }
.link-arrow-light { color: var(--bone); }
.link-arrow-light:hover { color: var(--teak); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding: 22px var(--pad-x);
  color: #fff; transition: background .4s var(--ease), color .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  background: rgba(244, 239, 228, .96);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding-block: 14px;
  box-shadow: 0 1px 0 var(--line);
}
.nav.solid {
  background: var(--bone);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.nav-brand {
  font-family: var(--serif); font-size: 21px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: inherit; line-height: 1; white-space: nowrap;
}
.nav-brand span { color: var(--teak); }
.nav-brand:hover { color: inherit; }

/* Wie in der Vorlage: die Seitenlinks schliessen direkt an den Schriftzug an,
   Sprachwahl und Buchungsknopf werden ans rechte Ende geschoben. */
.nav-links { display: flex; align-items: center; gap: 26px; flex-wrap: nowrap; flex: 1 1 auto; }
.nav-link {
  color: inherit; font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 400; white-space: nowrap;
  transition: color .3s var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--teak); }
/* Solange die Navigation transparent ueber dem Titelbild liegt, waere das
   Teak-Braun auf hellen Motiven kaum lesbar — die aktive Seite wird dort
   stattdessen weiss mit Unterstrich markiert. */
.nav:not(.scrolled):not(.solid) .nav-link[aria-current="page"] {
  color: #fff; border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.nav:not(.scrolled):not(.solid) .nav-link:hover { color: #fff; opacity: .72; }

.nav-sep { width: 1px; height: 16px; background: currentColor; opacity: .28; margin-left: auto; }

.lang-switch { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: inherit; font-family: var(--sans); font-size: 12px;
  letter-spacing: .1em; opacity: .5; font-weight: 400;
  border-bottom: 1px solid transparent; transition: opacity .3s var(--ease);
}
.lang-btn:hover { opacity: .85; }
.lang-btn.active { opacity: 1; font-weight: 500; border-bottom-color: currentColor; }

/* Der Slot selbst nimmt keinen Platz ein — nur sein Inhalt (Link oder
   Aufklapp-Knopf), von site.js aus CBF_BOOKING befuellt. */
.nav-book { display: contents; }

.nav-reserve {
  display: inline-block; border: 1px solid currentColor; color: inherit;
  padding: 11px 26px; border-radius: 2px;
  font-family: inherit; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  white-space: nowrap; background: none; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-reserve:hover { background: var(--ink); color: var(--bone); }
.nav.scrolled .nav-reserve:hover, .nav.solid .nav-reserve:hover { background: var(--ink); color: var(--bone); }

/* Aufklapp-Auswahl, sobald mehr als eine Buchungsplattform hinterlegt ist */
.nav-reserve-drop { position: relative; display: inline-flex; }
.nav-reserve-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 70;
  min-width: 190px; background: var(--bone); border: 1px solid var(--line);
  border-radius: 3px; box-shadow: 0 16px 32px -12px rgba(20, 17, 12, .35);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
}
.nav-reserve-menu a {
  display: block; padding: 11px 14px; border-radius: 2px;
  color: var(--ink); font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-reserve-menu a:hover { background: var(--teak); color: #fff; }

.burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: 0; padding: 6px; cursor: pointer; color: inherit;
}
.burger span { display: block; width: 22px; height: 1.5px; background: currentColor; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(24, 20, 14, .97); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { color: var(--bone); font-family: var(--serif); font-size: 34px; }
.mobile-menu a:hover { color: var(--teak); }
.mobile-close {
  position: absolute; top: 26px; right: 26px;
  background: none; border: 0; color: var(--bone);
  font-size: 30px; font-family: var(--serif); cursor: pointer; line-height: 1;
}
.mobile-langs { display: flex; gap: 18px; margin-top: 20px; }
.mobile-langs .lang-btn { color: var(--bone); font-size: 15px; letter-spacing: .14em; }
.mobile-langs .lang-btn.active { border-bottom-color: var(--teak); }

.mobile-book { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-top: 4px; }
.mobile-book-link {
  background: var(--teak); color: #fff; padding: 15px 38px; border-radius: 2px;
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  transition: background .3s var(--ease);
}
.mobile-book-link:hover { background: var(--gold); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: 100vh; height: 100svh; min-height: 640px;
  overflow: hidden; display: flex; align-items: flex-end;
  perspective: 1400px;
}

/* Pseudo-3D: zwei ineinander geschachtelte Ebenen ueber dem flachen Bild.
   Aeussere Ebene (.hero-tilt) driftet von selbst leicht im Raum, die
   innere (.hero-tilt-mouse) folgt zusaetzlich dem Mauszeiger auf
   Desktop-Geraeten. Beide bleiben knapp ueber 100% Groesse, damit beim
   Kippen nirgends ein Rand des Containers durchscheint. */
.hero-tilt {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  animation: hero-drift 16s ease-in-out infinite;
}
.hero-tilt-mouse {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: scale(1.05);
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
@keyframes hero-drift {
  0%, 100% { transform: scale(1.05) rotateX(.6deg) rotateY(-1deg); }
  50%      { transform: scale(1.05) rotateX(-.6deg) rotateY(1deg); }
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: kenburns 26s ease-out forwards; will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 12, .5) 0%, rgba(20, 17, 12, .12) 32%, rgba(20, 17, 12, .28) 62%, rgba(20, 17, 12, .82) 100%);
}
.hero-inner {
  position: relative; width: 100%; max-width: var(--wrap);
  margin: 0 auto; padding: 0 var(--pad-x) 124px; color: #fff;
}
.hero-place {
  font-size: 13px; letter-spacing: .42em; text-transform: uppercase;
  color: rgba(255, 255, 255, .86); margin-bottom: 26px;
}
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 7.6vw, 116px); line-height: .98;
  margin: 0; letter-spacing: .01em; white-space: nowrap;
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-tagline {
  max-width: 560px; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6;
  font-weight: 300; color: rgba(255, 255, 255, .9); margin: 30px 0 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* Steht wie in der Vorlage in einer Reihe mit den beiden Knoepfen. Die Schrift
   bekommt dieselbe Innenhoehe wie ein Knopf, damit beide Beschriftungen ohne
   feste Pixelwerte auf einer Linie liegen; der Strich haengt aus dem Fluss
   heraus darunter und beeinflusst die Reihe daher nicht. */
.scroll-cue {
  position: relative; display: inline-flex; align-items: center;
  padding: 17px 0; margin-left: 20px;
  color: rgba(255, 255, 255, .72); transition: color .3s var(--ease);
}
.scroll-cue:hover { color: #fff; }
.scroll-cue span:first-child { font-size: 11px; letter-spacing: .34em; text-transform: uppercase; }
.scroll-cue .cue-line {
  position: absolute; top: calc(100% + 6px); left: 50%;
  width: 1px; height: 46px; background: rgba(255, 255, 255, .5);
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes kenburns {
  0% { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.22) translate(-1.5%, -2%); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}

/* Seitenkopf der Unterseiten — bewusst identisch zur Startseite: das Bild
   fuellt das ganze Fenster, die Navigation liegt transparent darueber.
   svh vor vh, damit mobile Browserleisten die Hoehe nicht verfaelschen. */
.page-hero {
  position: relative; height: 100vh; height: 100svh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden; perspective: 1400px;
}
.page-hero .hero-bg { animation: kenburns 34s ease-out forwards; }
.page-hero-inner {
  position: relative; width: 100%; max-width: var(--wrap);
  margin: 0 auto; padding: 120px var(--pad-x) 124px; color: #fff;
}
.page-hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 5.6vw, 76px); line-height: 1.02; margin: 0 0 20px;
}
.page-hero p {
  max-width: 560px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65;
  color: rgba(255, 255, 255, .86); margin: 0;
}

/* ---------- Sektionen & Raster ---------- */
.section { max-width: var(--wrap); margin: 0 auto; padding: var(--sec-y) var(--pad-x); }
.section-tight { padding-block: calc(var(--sec-y) * .62); }
.section-band { background: var(--bone2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--ink); color: var(--bone); }
.section-dark .h-section, .section-dark .h-panel { color: var(--bone); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 70px; }

.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.grid-2-even { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.grid-split {
  max-width: var(--wrap-wide); margin: 0 auto; padding: var(--sec-y) var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.grid-split-tight { padding-top: 0; }

.split-img { min-height: 560px; background-size: cover; background-position: center; }
.split-img.left { border-radius: 3px 0 0 3px; }
.split-img.right { border-radius: 0 3px 3px 0; }

.panel {
  padding: clamp(48px, 6vw, 90px);
  display: flex; flex-direction: column; justify-content: center;
}
.panel-light { background: var(--bone2); border-radius: 0 3px 3px 0; }
.panel-dark { background: var(--ink); color: var(--bone); border-radius: 3px 0 0 3px; }
.panel .body-text { max-width: 440px; margin-bottom: 34px; }

/* Intro-Bild mit Jahreszahl-Badge */
.intro-media { position: relative; }
.intro-media-img { aspect-ratio: 4/5; background-size: cover; background-position: center; border-radius: 3px; }
.intro-badge {
  position: absolute; bottom: -30px; left: -40px;
  background: var(--bone); padding: 26px 30px;
  border: 1px solid var(--line); border-radius: 3px;
}
.intro-badge strong {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: 34px; line-height: 1; color: var(--teak); font-weight: 400;
}
.intro-badge span {
  display: block; font-size: 11px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--stone); margin-top: 8px;
}

/* ---------- Kennzahlen ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 76px; }
.stats-5 { grid-template-columns: repeat(5, 1fr); }
.stats-6 { grid-template-columns: repeat(6, 1fr); }
.stat { text-align: center; padding: 0 20px; border-right: 1px solid var(--line-light); }
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--serif); font-size: clamp(48px, 6vw, 74px);
  font-weight: 500; line-height: 1;
}
.stat-label {
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--sand); margin-top: 12px; opacity: .75;
}

/* ---------- Ausstattung ---------- */
.amenities {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.amenity {
  background: var(--bone2); padding: 40px 30px; min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.amenity-no { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--teak); }
.amenity-label { font-size: 16px; line-height: 1.35; color: var(--ink); font-weight: 400; }

/* ---------- Lage-Karten ---------- */
.places {
  display: grid; gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.place {
  position: relative; height: 380px; border-radius: 3px; overflow: hidden;
  display: block; color: #fff;
}
.place-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease);
}
.place:hover .place-img { transform: scale(1.06); }
.place-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 12, 0) 40%, rgba(20, 17, 12, .82) 100%);
}
.place-text { position: absolute; left: 0; bottom: 0; padding: 30px; }
.place-text h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 0 0 8px; }
.place-text p { font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, .85); font-weight: 300; margin: 0; }

/* ---------- Ausflugsziele ---------- */
.poi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.poi { background: var(--bone); padding: 38px 34px; }
/* Bei ungerader Anzahl laeuft der letzte Punkt ueber beide Spalten */
.poi:last-child:nth-child(odd) { grid-column: 1 / -1; }
.poi h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin: 0 0 10px; }
.poi p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0; font-weight: 300; }

/* ---------- Zitat / Bewertung ---------- */
.quote-section { position: relative; overflow: hidden; }
.quote-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.quote-scrim { position: absolute; inset: 0; background: rgba(20, 17, 12, .72); }
.quote-inner {
  position: relative; max-width: 900px; margin: 0 auto;
  padding: var(--sec-y) var(--pad-x); text-align: center; color: #fff;
}
.quote-inner blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.28; margin: 0 0 40px;
}
.stars { color: var(--gold); letter-spacing: .3em; font-size: 18px; margin-bottom: 12px; }
.quote-by { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .82); }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 6vw, 86px); line-height: 1; margin: 0 0 30px;
}
.cta p {
  font-size: 19px; line-height: 1.7; color: var(--muted);
  font-weight: 300; max-width: 520px; margin: 0 auto 44px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--bone); }
.footer-grid {
  max-width: var(--wrap); margin: 0 auto;
  padding: 90px var(--pad-x) 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px;
}
.footer-brand {
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-brand span { color: var(--teak); }
.footer h2 {
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--sand); margin: 0 0 20px; font-weight: 400; font-family: var(--sans);
}
.footer p { font-size: 15px; line-height: 1.7; color: rgba(244, 239, 228, .72); font-weight: 300; margin: 0; }
.footer-tagline { color: rgba(244, 239, 228, .6); max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(244, 239, 228, .72); font-size: 15px; font-weight: 300; }
.footer a:hover { color: var(--teak); }
.footer-bottom {
  max-width: var(--wrap); margin: 0 auto;
  padding: 26px var(--pad-x); border-top: 1px solid var(--line-light);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { font-size: 12px; letter-spacing: .14em; color: rgba(244, 239, 228, .42); }

/* ---------- Galerie ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 48px; }
.filter {
  background: none; border: 1px solid var(--line); border-radius: 2px;
  padding: 11px 26px; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: var(--bone); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 15.5vw; grid-auto-flow: dense; gap: 14px;
}
.gallery-cell {
  position: relative; padding: 0; border: 0; background: none;
  grid-row: span 2; overflow: hidden; border-radius: 3px; cursor: zoom-in;
}
/* Hochformate erhalten mehr Höhe, damit nichts beschnitten wird */
.gallery-cell.tall { grid-row: span 3; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery-cell:hover img { transform: scale(1.06); }
.gallery-cell[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(20, 17, 12, .95);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 82vh; width: auto; border-radius: 3px; }
.lb-btn {
  position: absolute; background: rgba(244, 239, 228, .1);
  border: 1px solid rgba(244, 239, 228, .25); color: var(--bone);
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 24px; line-height: 1; cursor: pointer;
  transition: background .3s var(--ease);
}
.lb-btn:hover { background: rgba(244, 239, 228, .22); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(244, 239, 228, .72); font-size: 13px; letter-spacing: .18em;
}

/* ---------- Video ---------- */
.video-frame {
  position: relative; aspect-ratio: 16/9; background: var(--ink);
  border-radius: 3px; overflow: hidden;
}
.video-frame video, .video-frame iframe { width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-missing {
  position: absolute; inset: auto 0 26px; text-align: center; margin: 0;
  color: rgba(244, 239, 228, .82); font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
}
.video-missing[hidden] { display: none; }
.video-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.video-note { text-align: center; font-size: 14px; color: var(--stone); margin-top: 18px; }

/* ---------- Räume / Etagen ---------- */
.floor-list { list-style: none; margin: 0; padding: 0; }
.floor-list li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.floor-list li:last-child { border-bottom: 0; }
.floor-no { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--teak); flex: none; }
.floor-list span:last-child { font-size: 16px; color: var(--ink); font-weight: 400; }

/* ---------- Bewertungen ---------- */
.rating-head {
  display: grid; grid-template-columns: auto 1fr; gap: 50px;
  align-items: center; padding: 44px 0; border-block: 1px solid var(--line);
  margin-bottom: 60px;
}
.rating-score { text-align: center; }
.rating-score strong { display: block; font-family: var(--serif); font-size: 68px; font-weight: 500; line-height: 1; }
.rating-score span { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); }
.rating-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 40px; }
.rating-cat { font-size: 13px; letter-spacing: .1em; color: var(--muted); }
.rating-bar { height: 3px; background: var(--line); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.rating-bar i { display: block; height: 100%; background: var(--teak); border-radius: 2px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review {
  background: var(--bone2); border: 1px solid var(--line); border-radius: 3px;
  padding: 34px 30px; display: flex; flex-direction: column; gap: 14px;
}
.review-stars { color: var(--gold); letter-spacing: .2em; font-size: 14px; }
.review p { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0; font-weight: 300; }
.review-by { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-top: auto; }
.review-by small { display: block; text-transform: none; letter-spacing: 0; color: var(--stone); margin-top: 4px; font-size: 13px; }
.badge {
  display: inline-block; align-self: flex-start;
  border: 1px solid var(--teak); color: var(--teak);
  padding: 5px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}

/* ---------- Kontakt & Formular ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-list { list-style: none; margin: 34px 0 0; padding: 0; }
.contact-list li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-list h2 {
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--teak); margin: 0 0 6px; font-weight: 400; font-family: var(--sans);
}
.contact-list p, .contact-list a { font-size: 16px; line-height: 1.7; color: var(--ink); margin: 0; font-weight: 300; }
.contact-list a:hover { color: var(--teak); }
.contact-list-center {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  max-width: var(--wrap); margin: 34px auto 0; text-align: center;
}
.contact-list-center li { padding: 0; border-bottom: 0; }

.form { background: var(--bone2); border: 1px solid var(--line); border-radius: 3px; padding: clamp(28px, 4vw, 46px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 2px;
  background: var(--bone); color: var(--ink);
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  transition: border-color .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teak); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #a33; }
.field-error { margin: 6px 0 0; font-size: 13px; color: #a33; }
.form-status { margin: 18px 0 0; font-size: 15px; min-height: 1.5em; }
.form-status.ok { color: #4a7a52; }
.form-status.err { color: #a33; }

/* ---------- Belegungskalender ---------- */
.cal-legend { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.cal-legend span { display: flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: .12em; color: var(--muted); }
.cal-dot { width: 12px; height: 12px; border-radius: 2px; border: 1px solid var(--line); }
.cal-dot.free { background: var(--bone); }
.cal-dot.busy { background: var(--teak); border-color: var(--teak); }

.cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.cal-month { border: 1px solid var(--line); border-radius: 3px; padding: 22px; background: var(--bone2); }
.cal-month h3 {
  font-family: var(--serif); font-size: 21px; font-weight: 500;
  margin: 0 0 16px; text-align: center;
}
.cal-week, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-week span {
  text-align: center; font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--stone); padding-bottom: 6px;
}
.cal-days span {
  aspect-ratio: 1; display: grid; place-items: center;
  font-size: 13px; border-radius: 2px; color: var(--ink);
}
.cal-days span.busy { background: var(--teak); color: #fff; }
.cal-days span.empty { visibility: hidden; }

/* ---------- Reveal-Animation ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].shown { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
/* Die volle Navigationszeile braucht je nach Sprache bis zu ~1345px (Deutsch
   und Niederlaendisch sind am laengsten). Damit sie auf schmaleren Bildschirmen
   nicht aus dem Fenster laeuft, ruecken Abstaende und Schriftgroessen hier
   zusammen — darunter uebernimmt das Kompaktmenue. */
@media (max-width: 1400px) {
  .nav { gap: 20px; padding-inline: 24px; }
  .nav-brand { font-size: 18px; letter-spacing: .08em; }
  .nav-links { gap: 18px; }
  .nav-link { font-size: 12px; letter-spacing: .11em; }
  .lang-switch { gap: 8px; }
  .lang-btn { font-size: 11px; letter-spacing: .06em; }
  .nav-reserve { padding: 10px 16px; font-size: 11px; letter-spacing: .12em; }
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

/* Fuenf bzw. sechs Kennzahlen nebeneinander werden unterhalb dieser Breite
   zu eng fuer die laengeren Beschriftungen; dann dreispaltig umbrechen. */
@media (max-width: 1240px) {
  .stats-5, .stats-6 { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
  .stats-5 .stat:nth-child(3n), .stats-6 .stat:nth-child(3n) { border-right: 0; }
}

@media (max-width: 980px) {
  :root { --sec-y: 86px; --pad-x: 24px; }
  .grid-2, .grid-2-even, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .grid-split { grid-template-columns: 1fr; }
  .split-img { min-height: 380px; border-radius: 3px 3px 0 0; }
  .panel-light { border-radius: 0 0 3px 3px; }
  .panel-dark { border-radius: 3px 3px 0 0; }
  .grid-split .panel-dark { order: 2; border-radius: 0 0 3px 3px; }
  .grid-split .split-img.right { order: 1; border-radius: 3px 3px 0 0; }
  .intro-badge { left: 0; bottom: -20px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat:nth-child(2n) { border-right: 0; }
  .amenities, .gallery-grid, .places, .review-grid, .cal-grid, .rating-cats, .contact-list-center { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { white-space: normal; }
}

@media (max-width: 600px) {
  /* Volle-Breite-Knoepfe verdeckten auf dem Handy einen Grossteil des
     Titelbilds. Jetzt bleiben sie so schmal wie ihr Text (wie am Desktop)
     und brechen bei Bedarf einfach in eine zweite Zeile um. */
  .hero-actions { row-gap: 12px; column-gap: 10px; }
  .hero-actions .btn { padding: 13px 20px; font-size: 11.5px; }
  .hero-actions .scroll-cue { margin-left: 0; padding-block: 13px; }

  .amenities, .gallery-grid, .places, .review-grid, .cal-grid,
  .poi-grid, .footer-grid, .form-row, .rating-cats, .contact-list-center { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
  .rating-head { grid-template-columns: 1fr; gap: 28px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
}

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