/* =============================================================
   COSY FLATS — "GABEL"-SCHEMA (Editorial-Premium, Hybrid)
   Übernimmt das Layout-System der GABEL-Beratungsseite:
   abwechselnd helle/dunkle Vollflächen-Sektionen, Eyebrows,
   Zahlen-Stats, Bild-Text-Splits, dunkle Final-CTA, viel Weißraum.
   Palette: Cosy-Cream/Paper (hell) · Navy (dunkel) · Cognac (CTA).
   Lädt NACH theme-warm.css. Zum Abschalten: <link> entfernen.
   ============================================================= */

:root {
  --g-cream:    #FAF5EB;   /* helle Hauptfläche */
  --g-paper:    #F3EDE2;   /* zweite helle Fläche (Wechsel) */
  --g-white:    #FFFFFF;   /* Cards */
  --g-ink:      #0F2A44;   /* dunkle Sektion (Navy) */
  --g-ink-deep: #0A1F33;   /* tiefere dunkle Fläche / Final-CTA / Footer */
  --g-cognac:   #B5663F;   /* Akzent + Buchungs-CTAs */
  --g-cognac-dk:#8E4F30;
  --g-anthra:   #163049;   /* Body-Text auf hell (warmes Navy) */
  --g-muted:    #5A6B7A;   /* sekundärer Text hell */
  --g-muted-dk: #Aebcc9;   /* sekundärer Text dunkel */
  --g-border:   #E6DFD2;   /* warme Haarlinie hell */
  --g-border-dk:rgba(255,255,255,.14);
  --g-maxw: 1220px;
  --g-narrow: 760px;
  --g-gutter: clamp(22px, 5vw, 56px);
  --g-section-y: clamp(72px, 10vw, 150px);
  --g-r-sm: 8px; --g-r: 14px; --g-r-lg: 22px;
  --g-shadow: 0 18px 50px -18px rgba(15,42,68,.22);
  --g-shadow-lg: 0 34px 80px -28px rgba(10,20,35,.34);
  --g-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Grund-Layout ---------- */
.g-section { padding-block: var(--g-section-y); position: relative; }
.g-wrap { max-width: var(--g-maxw); margin-inline: auto; padding-inline: var(--g-gutter); }
.g-bg-cream  { background: var(--g-cream)  !important; }
.g-bg-paper  { background: var(--g-paper)  !important; }
.g-bg-ink    { background: var(--g-ink)    !important; }
.g-bg-ink-deep { background: var(--g-ink-deep) !important; }

/* ---------- Eyebrow ---------- */
.g-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: .76rem !important; font-weight: 700 !important;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--g-cognac) !important;
  margin: 0 0 20px !important;
  display: inline-flex; align-items: center; gap: 12px;
}
.g-eyebrow::before {
  content: ''; width: 30px; height: 2px; background: var(--g-cognac); border-radius: 2px;
}
.g-section-head { max-width: var(--g-narrow); margin-inline: auto; margin-bottom: clamp(44px,5vw,68px); text-align: center; }
.g-section-head .g-eyebrow { justify-content: center; }
.g-section-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(30px, 4vw, 48px) !important;
  font-weight: 800 !important; line-height: 1.08 !important;
  letter-spacing: -.02em !important; color: var(--g-ink) !important;
  margin: 0 0 16px !important;
}
.g-section-head h2 em { font-style: normal; color: var(--g-cognac) !important; }
.g-section-head p { font-size: 1.06rem !important; line-height: 1.6 !important; color: var(--g-muted) !important; margin: 0 auto !important; max-width: 56ch; }

/* ---------- Dunkle Sektionen ---------- */
.g-on-dark { color: #E8EDF2 !important; }
.g-on-dark h1, .g-on-dark h2, .g-on-dark h3, .g-on-dark h4 { color: #fff !important; }
.g-on-dark .g-section-head h2 { color: #fff !important; }
.g-on-dark .g-section-head p { color: var(--g-muted-dk) !important; }
.g-on-dark .g-eyebrow { color: #E6B98F !important; }
.g-on-dark .g-eyebrow::before { background: #E6B98F; }

/* ---------- Buttons ---------- */
.g-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important; font-size: .98rem !important; line-height: 1;
  padding: 16px 28px !important; border-radius: var(--g-r-sm) !important;
  cursor: pointer; border: 1.5px solid transparent !important; min-height: 54px;
  transition: transform .2s var(--g-ease), background-color .2s, box-shadow .2s, border-color .2s, color .2s;
  text-decoration: none;
}
.g-btn svg { width: 17px; height: 17px; }
.g-btn:hover { transform: translateY(-2px); }
.g-btn-primary { background: var(--g-cognac) !important; color: #fff !important; box-shadow: 0 10px 26px -8px rgba(181,102,63,.5) !important; }
.g-btn-primary:hover { background: var(--g-cognac-dk) !important; box-shadow: 0 16px 38px -10px rgba(181,102,63,.6) !important; }
.g-btn-outline { background: transparent !important; color: var(--g-ink) !important; border-color: rgba(15,42,68,.22) !important; }
.g-btn-outline:hover { border-color: var(--g-cognac) !important; color: var(--g-cognac) !important; }
.g-on-dark .g-btn-outline { color: #fff !important; border-color: rgba(255,255,255,.32) !important; }
.g-on-dark .g-btn-outline:hover { background: #fff !important; color: var(--g-ink) !important; border-color: #fff !important; }

/* ---------- Stats-Leiste (Signature) ---------- */
.g-stats { background: var(--g-ink) !important; }
.g-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--g-maxw); margin-inline: auto; }
.g-stat { padding: clamp(38px,4vw,64px) clamp(20px,2.4vw,40px); border-left: 1px solid var(--g-border-dk); text-align: center; }
.g-stat:first-child { border-left: none; }
.g-stat__num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.4rem,3.6vw,3.4rem);
  font-weight: 800; color: #fff; line-height: 1; display: inline-flex; align-items: flex-start;
  padding-bottom: 12px; border-bottom: 2px solid rgba(255,255,255,.22); letter-spacing: -.02em;
}
.g-stat__num small {
  color: #E6B98F; font-size: .42em; font-weight: 700; line-height: 1;
  margin-top: .18em; margin-left: .08em; letter-spacing: 0;
}
.g-stat__lbl { font-size: .95rem; color: var(--g-muted-dk); margin-top: 16px; line-height: 1.45; max-width: 22ch; margin-inline: auto; }

/* ---------- Feature-Split (Bild + Text) ---------- */
.g-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,80px); align-items: center; }
.g-feature + .g-feature { margin-top: clamp(56px,7vw,110px); }
.g-feature--rev .g-feature__media { order: -1; }
.g-feature__media img { width: 100%; height: 100%; min-height: clamp(320px,40vw,460px); object-fit: cover; border-radius: var(--g-r-lg); box-shadow: var(--g-shadow); display: block; }
.g-feature__copy h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: clamp(26px,3.2vw,40px) !important;
  font-weight: 800 !important; line-height: 1.1 !important; letter-spacing: -.02em !important;
  color: var(--g-ink) !important; margin: 0 0 18px !important;
}
.g-on-dark .g-feature__copy h2 { color: #fff !important; }
.g-feature__copy h2 em { font-style: normal; color: var(--g-cognac) !important; }
.g-feature__copy > p { font-size: 1.05rem !important; line-height: 1.7 !important; color: var(--g-muted) !important; margin: 0 0 22px !important; }
.g-on-dark .g-feature__copy > p { color: var(--g-muted-dk) !important; }

/* Checkliste in Features */
.g-checklist { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 13px; }
.g-checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; line-height: 1.5; color: var(--g-anthra); }
.g-on-dark .g-checklist li { color: #E4E4E4; }
.g-checklist svg { width: 21px; height: 21px; color: var(--g-cognac); flex: none; margin-top: 1px; }
.g-on-dark .g-checklist svg { color: #E6B98F; }

/* ---------- Cards (3er-Reihe) ---------- */
.g-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2vw,26px); }
.g-card {
  background: var(--g-white); border: 1px solid var(--g-border); border-radius: var(--g-r);
  padding: 34px 30px; transition: transform .35s var(--g-ease), box-shadow .35s var(--g-ease), border-color .35s;
}
.g-card:hover { transform: translateY(-4px); box-shadow: var(--g-shadow); border-color: rgba(181,102,63,.35); }
.g-card__icon {
  width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: rgba(181,102,63,.10); border: 1px solid rgba(181,102,63,.22); color: var(--g-cognac); margin-bottom: 20px;
}
.g-card__icon svg { width: 24px; height: 24px; }
.g-card h3 { font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 1.32rem !important; font-weight: 700 !important; color: var(--g-ink) !important; margin: 0 0 10px !important; line-height: 1.2 !important; }
.g-card p { font-size: .98rem !important; line-height: 1.6 !important; color: var(--g-muted) !important; margin: 0 !important; }

/* ---------- Final-CTA (dunkel) ---------- */
.g-finalcta { background: var(--g-ink-deep) !important; text-align: center; }
.g-finalcta h2 { font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: clamp(30px,4.4vw,52px) !important; font-weight: 800 !important; letter-spacing: -.02em !important; color: #fff !important; margin: 0 auto 18px !important; max-width: 18ch; line-height: 1.08 !important; }
.g-finalcta h2 em { font-style: normal; color: #E6B98F !important; }
.g-finalcta p { font-size: 1.1rem !important; color: var(--g-muted-dk) !important; max-width: 52ch; margin: 0 auto 32px !important; line-height: 1.6 !important; }
.g-finalcta__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Reveal (progressive enhancement — ohne JS sichtbar) ---------- */
.g-js .g-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--g-ease), transform .6s var(--g-ease); }
.g-js .g-reveal.g-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .g-js .g-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .g-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .g-stat { border-left: none; border-top: 1px solid var(--g-border-dk); }
  .g-stat:first-child, .g-stat:nth-child(2) { border-top: none; }
  .g-feature { grid-template-columns: 1fr; gap: 32px; }
  .g-feature--rev .g-feature__media { order: 0; }
  .g-feature__media img { min-height: 280px; }
  .g-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .g-stats__grid { grid-template-columns: 1fr; }
  .g-stat { border-top: 1px solid var(--g-border-dk); }
  .g-stat:nth-child(2) { border-top: 1px solid var(--g-border-dk); }
}

/* ---------- Hero-Panorama: randlos über volle Breite ---------- */
.hero-panorama {
  max-width: none !important;
  padding: 0 !important;
  margin-top: 48px !important;
}
.hero-panorama figure {
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 760px) {
  .hero-panorama { margin-top: 32px !important; padding: 0 !important; }
  .hero-panorama figure { border-radius: 0 !important; }
  .hero-panorama img { border-radius: 0 !important; }
}

/* =============================================================
   GLOBAL: Alle Sektions-Titel zentriert + straffer Zeilenabstand
   (UI/UX-Konsistenz — gilt für ALLE Seiten)
   ============================================================= */

/* 1) Straffer, gleichmäßiger Zeilenabstand für große Headlines (behebt zu große Lücke) */
h1, h2,
.hero-v2-title, .g-section-head h2, .section-head h2,
.g-finalcta h2, .hero-ed h1, .page-hero h1 {
  line-height: 1.06 !important;
}
h3, h4 { line-height: 1.12 !important; }

/* 2) Sektions-Köpfe zentriert (Body-Sektionen) */
.section-head,
.testimonials-head,
.experiences-strip,
.g-section-head,
.page-hero {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.section-head h2, .section-head p,
.testimonials-head h2,
.experiences-strip h2, .experiences-strip > p,
.page-hero h1, .page-hero p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 3) Newsletter-Kopf zentriert */
.newsletter-inner { text-align: center !important; }
.newsletter-inner .newsletter-perks { justify-content: center; display: inline-flex; flex-direction: column; text-align: left; }
.newsletter-inner h2, .newsletter-inner > div > p { text-align: center !important; }

/* 4) Unterseiten-Hero (hero-ed): einspaltig, Titel zentriert, Bild darunter */
.hero-ed-inner { grid-template-columns: 1fr !important; text-align: center; }
.hero-ed-text { max-width: 780px; margin-inline: auto; }
.hero-ed .eyebrow { justify-content: center; }
.hero-ed h1, .hero-ed .pitch { margin-left: auto !important; margin-right: auto !important; }
.hero-ed .pitch { max-width: 600px; }
.hero-ed .hero-ed-ctas { justify-content: center; }
.hero-ed-img { max-width: 980px; margin: 8px auto 0; width: 100%; }
.hero-ed-img img { aspect-ratio: 16 / 8; }

/* ---------- Navigation: garantierter Mindestabstand Logo ↔ Links ↔ CTA ---------- */
.nav-inner { gap: clamp(18px, 2.4vw, 40px) !important; }
.nav-logo { flex: none; white-space: nowrap; }

/* ---------- Buchbare Angebots-Karten (z. B. Schilling Welcome-Angebote) ---------- */
.cf-offers { margin: 20px 0 16px; display: grid; gap: 12px; }
.cf-offers-head {
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--g-cognac); margin-bottom: 2px;
}
.cf-offer {
  display: flex; align-items: center; gap: 16px; justify-content: space-between;
  background: #fff; border: 1px solid var(--g-border); border-radius: 14px;
  padding: 15px 16px;
  transition: border-color .25s var(--g-ease), box-shadow .25s var(--g-ease), transform .25s var(--g-ease);
}
.cf-offer:hover { border-color: rgba(181,102,63,.45); box-shadow: var(--g-shadow); transform: translateY(-2px); }
.cf-offer__txt { flex: 1; min-width: 0; }
.cf-offer__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--g-ink); font-size: 1.02rem; margin-bottom: 4px; line-height: 1.2; }
.cf-offer__desc { font-size: .9rem; color: var(--g-muted); line-height: 1.5; }
.cf-offer__book {
  flex: none; display: inline-flex; flex-direction: column; align-items: center; gap: 5px;
  text-decoration: none; min-width: 64px;
}
.cf-offer__book .ico {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--g-cognac); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -6px rgba(181,102,63,.6);
  transition: background .25s var(--g-ease), transform .25s var(--g-ease);
}
.cf-offer__book .ico svg { width: 18px; height: 18px; }
.cf-offer__book:hover .ico { background: var(--g-cognac-dk); transform: translateX(2px); }
.cf-offer__book .lbl { font-size: .72rem; font-weight: 600; color: var(--g-ink); letter-spacing: .01em; white-space: nowrap; }
@media (max-width: 480px) {
  .cf-offer { padding: 13px 14px; gap: 12px; }
  .cf-offer__desc { font-size: .85rem; }
  .cf-offer__book .ico { width: 38px; height: 38px; }
}

/* ---------- Blog-Karten: gleiche Höhe, Text füllt den Kasten ----------
   Absätze wachsen nicht mehr (keine Lücke mitten im Text). Der Kasten bleibt
   gleich lang wie der Nachbar; gefüllt wird er durch echten Beschreibungstext. */
.post-card .post-card-info > p { flex-grow: 0 !important; }
.post-card .read-more { margin-top: 14px; }

/* ---------- Gutscheincode-Chip (z. B. Frauenbad DANKE10) ---------- */
.cf-code {
  display: inline-block;
  font-weight: 700; letter-spacing: .06em;
  color: var(--g-cognac);
  background: rgba(181,102,63,.10);
  border: 1px dashed rgba(181,102,63,.55);
  border-radius: 6px;
  padding: 1px 7px;
}

/* ---------- WhatsApp-Variante des Buchen-Buttons (z. B. Ginsburg) ---------- */
.cf-offer__book--wa .ico {
  background: #25D366;
  box-shadow: 0 6px 16px -6px rgba(37,211,102,.6);
}
.cf-offer__book--wa:hover .ico { background: #1ebe5b; transform: translateY(-1px); }
.cf-offer__book--wa .ico svg { width: 20px; height: 20px; }

/* ---------- Erlebnis-Video + WhatsApp-CTA (experiences-strip) ---------- */
.exp-video {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  max-width: 760px;            /* Querformat-Rahmen */
  margin: clamp(24px,3vw,36px) auto clamp(28px,4vw,44px);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--g-shadow-lg);
  aspect-ratio: 16 / 9; background: #0b1622;
}
/* unscharfe, vergrößerte Füllung hinter dem mittigen Hochkant-Video */
.exp-video-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(34px) brightness(.5) saturate(1.1);
  transform: scale(1.18);
  pointer-events: none;
}
/* scharfes Hochkant-Video, volle Höhe, mittig */
.exp-video-fg {
  position: relative; z-index: 1;
  height: 100%; width: auto; max-width: 100%;
  object-fit: contain; display: block;
}
@media (max-width: 560px) { .exp-video { aspect-ratio: 4 / 3; } }
.exp-cta { margin-top: clamp(28px,4vw,40px); text-align: center; }
.exp-wa-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: #25D366; color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 16px 28px; border-radius: 12px; text-decoration: none;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.55);
  transition: background .2s var(--g-ease), transform .2s var(--g-ease);
}
.exp-wa-btn:hover { background: #1ebe5b; transform: translateY(-2px); }
.exp-wa-btn svg { width: 21px; height: 21px; }
.exp-cta-note { margin-top: 12px; font-size: .9rem; color: var(--g-muted); }

/* ---------- Schlüsselcode-Modal ---------- */
.code-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.code-modal.open { display: block; }
.code-modal__backdrop { position: absolute; inset: 0; background: rgba(10,20,35,.55); backdrop-filter: blur(4px); }
.code-modal__box {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(420px, 92vw);
  background: #fff; border-radius: 20px; padding: 36px 32px 28px;
  box-shadow: 0 40px 90px -30px rgba(10,20,35,.5);
  text-align: center; font-family: 'Plus Jakarta Sans', sans-serif;
  animation: codeIn .28s cubic-bezier(0.16,1,0.3,1);
}
@keyframes codeIn { from { opacity: 0; transform: translate(-50%,-46%); } to { opacity: 1; transform: translate(-50%,-50%); } }
.code-modal__x {
  position: absolute; top: 12px; right: 14px; width: 36px; height: 36px;
  border: none; background: transparent; font-size: 26px; line-height: 1;
  color: #5A6B7A; cursor: pointer; border-radius: 50%;
}
.code-modal__x:hover { background: rgba(15,42,68,.06); color: #0F2A44; }
.code-modal__icon {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px;
  background: rgba(181,102,63,.10); border: 1px solid rgba(181,102,63,.25);
  color: #B5663F; display: flex; align-items: center; justify-content: center;
}
.code-modal__icon svg { width: 26px; height: 26px; }
.code-modal__box h3 { font-size: 1.5rem; font-weight: 800; color: #0F2A44; margin: 0 0 10px; letter-spacing: -.01em; }
.code-modal__box p { font-size: .96rem; color: #5A6B7A; line-height: 1.55; margin: 0 0 22px; }
#codeForm { display: grid; gap: 12px; }
#codeInput {
  width: 100%; text-align: center; font-size: 1.5rem; font-weight: 700;
  letter-spacing: .4em; color: #0F2A44;
  padding: 14px 16px; border: 1.5px solid rgba(15,42,68,.18); border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
#codeInput::placeholder { letter-spacing: 0; font-weight: 500; color: #9aa7b3; font-size: 1rem; }
#codeInput:focus { outline: 2px solid #B5663F; outline-offset: 1px; border-color: #B5663F; }
.code-modal__err { color: #b3261e; font-size: .88rem; font-weight: 500; }
.code-modal__submit {
  background: #B5663F; color: #fff; border: none; border-radius: 12px;
  padding: 15px 22px; font-size: 1rem; font-weight: 600; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 10px 26px -8px rgba(181,102,63,.5);
  transition: background .2s, transform .2s;
}
.code-modal__submit:hover { background: #8E4F30; transform: translateY(-1px); }
.code-modal__hint { display: block; margin-top: 16px; font-size: .82rem; color: #8a97a3; }

/* ============================================================
   FIX: Booking-Kalender wird nicht mehr abgeschnitten/überdeckt
   Ursache: .hero-panorama figure hatte overflow:hidden (Desktop),
   das den nach unten aufklappenden Kalender clippte; zusätzlich
   malte die nachfolgende .content-wrapper-Section darüber.
   ============================================================ */
.hero-v2 { overflow: visible !important; }
.hero-panorama figure { overflow: visible !important; }
.hero-panorama img { border-radius: 20px; }
.hero-panorama video.hero-panorama-video { width: 100%; height: clamp(480px, 64vh, 680px); object-fit: cover; display: block; border-radius: 20px; }
@media (max-width: 760px) { .hero-panorama video.hero-panorama-video { height: clamp(420px, 70vh, 560px); border-radius: 14px; } }

/* ===== Kino-Hero: großes Video, Headline + Buchungs-Widget liegen darauf ===== */
.hero-cinema { overflow: visible !important; padding: 0 !important; min-height: 0 !important; background: #FAF5EB !important; display: block !important; }
.hero-cinema .hero-panorama { max-width: 1340px; margin: 86px auto 0 !important; padding: 0 24px !important; }
.hero-cinema .hero-panorama figure { position: relative; margin: 0; overflow: visible; }
.hero-cinema .hero-panorama-video { width: 100% !important; height: clamp(600px, 88vh, 880px) !important; object-fit: cover; display: block; border-radius: 24px; box-shadow: 0 38px 90px -38px rgba(15,42,68,.5); }
.hero-cinema .hero-scrim { position: absolute; inset: 0; border-radius: 24px; pointer-events: none;
  background: linear-gradient(180deg, rgba(15,42,68,.66) 0%, rgba(15,42,68,.20) 24%, rgba(15,42,68,.06) 46%, rgba(15,42,68,.30) 70%, rgba(15,42,68,.86) 100%); }
.hero-cinema .hero-panorama figure::after { display: none !important; }
.hero-cinema .hero-stage { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: space-between; text-align: center; padding: clamp(46px,7vh,92px) clamp(20px,4vw,56px) clamp(26px,4vh,50px); }
.hero-cinema .hero-stage-top { max-width: 1000px; width: 100%; }
.hero-cinema .hero-v2-eyebrow { color: #F1D9B8 !important; letter-spacing: .2em !important; margin-bottom: 12px !important; opacity: 1 !important; transform: none !important; }
.hero-cinema .hero-v2-title { color: #ffffff !important; text-shadow: 0 2px 26px rgba(0,0,0,.42); margin: 0 0 14px !important; opacity: 1 !important; transform: none !important; }
.hero-cinema .hero-v2-title .hero-rotor { color: #ffffff !important; }
.hero-cinema .hero-v2-title em { color: #F0A867 !important; text-shadow: 0 2px 22px rgba(0,0,0,.32) !important; }
.hero-cinema .hero-v2-subtitle { color: rgba(255,255,255,.92) !important; text-shadow: 0 1px 14px rgba(0,0,0,.42); max-width: 620px; margin: 0 auto !important; opacity: 1 !important; transform: none !important; }
.hero-cinema .hero-v2-booking { position: static !important; left: auto !important; right: auto !important; bottom: auto !important; transform: none !important; width: 100%; max-width: 880px; margin: 0 auto !important; z-index: 5; opacity: 1 !important; }
/* Bouncender Scroll-Hinweis — nur Mobile sichtbar */
.hero-scrollcue { display: none; }
@keyframes heroBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* Sprach-Dropdown per Tap/Klick öffnen (mobil-tauglich, ergänzt Hover/Fokus) */
.lang-switcher.open .lang-dropdown {
  opacity: 1 !important; visibility: visible !important;
  transform: translateY(0) scale(1) !important; pointer-events: auto !important;
}

/* ===== Startseite: Header über dem Hero-Video TRANSPARENT (alle Bildschirme),
   damit das Video überall durchscheint. Beim Scrollen (>60px) wird .solid gesetzt
   und der Header wieder dunkel/lesbar. ===== */
body.home .nav:not(.solid) {
  /* dezenter Verlauf nur ganz oben (kein farbiger Balken) -> Text lesbar, Video bleibt sichtbar */
  background: linear-gradient(180deg, rgba(8,18,30,0.60) 0%, rgba(8,18,30,0.28) 55%, rgba(8,18,30,0) 100%) !important;
  border-color: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important; backdrop-filter: none !important;
}
body.home .nav:not(.solid) .nav-logo span,
body.home .nav:not(.solid) .nav-logo .logo-accent,
body.home .nav:not(.solid) .nav-links a {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.65) !important;
}
body.home .nav:not(.solid) .nav-burger span { background: #ffffff !important; }
body.home .nav:not(.solid) .lang-current {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.7) !important;
  background: rgba(255,255,255,0.16) !important;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

@media (max-width: 760px) {
  /* ===== Vollbild-Video-Hero (nur Mobile): Video füllt den GANZEN Screen ===== */
  .hero-cinema { height: 100vh !important; height: 100dvh !important; min-height: 100vh !important; min-height: 100dvh !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; }
  .hero-cinema .hero-panorama { margin: 0 !important; padding: 0 !important; max-width: none !important; width: 100% !important; height: 100% !important; }
  .hero-cinema .hero-panorama figure { position: relative !important; margin: 0 !important; width: 100% !important; height: 100% !important; border-radius: 0 !important; overflow: hidden !important; }
  /* Video absolut über die komplette Fläche -> immer randlos & ohne Letterbox */
  .hero-cinema .hero-panorama-video { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: 0 !important; box-shadow: none !important; }
  .hero-cinema .hero-scrim { position: absolute !important; inset: 0 !important; border-radius: 0 !important;
    background: linear-gradient(180deg, rgba(15,42,68,.60) 0%, rgba(15,42,68,.22) 30%, rgba(15,42,68,.28) 58%, rgba(15,42,68,.86) 100%) !important; }
  .hero-cinema .hero-stage { position: absolute !important; inset: 0 !important; justify-content: center; gap: 22px; padding: 88px 18px 96px; }

  /* Nav transparent über dem Video; Logo-Schriftzug WEISS (Icon bleibt Cognac) */
  .hero-cinema ~ * .nav, .nav { transition: background .25s ease, border-color .25s ease; }
  .nav:not(.solid) { background: transparent !important; border-color: transparent !important; box-shadow: none !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
  .nav:not(.solid) .nav-logo span, .nav:not(.solid) .nav-logo .logo-accent { color: #ffffff !important; }
  .nav:not(.solid) .nav-burger span { background: #ffffff !important; }

  /* ===== Sprachauswahl auf dem Handy oben rechts DAUERHAFT sichtbar ===== */
  .nav-right .lang-switcher { display: inline-flex !important; }
  .nav-right { gap: 10px !important; }
  .lang-current { padding: 6px 10px !important; font-size: 13px !important; }
  .nav:not(.solid) .lang-current {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.7) !important;
    background: rgba(255,255,255,0.16) !important;
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  }
  .nav:not(.solid) .lang-current .lang-current-short { color: #ffffff !important; }
  /* Dropdown öffnet sich nach unten und bleibt im Bild (rechtsbündig) */
  .lang-dropdown { right: 0 !important; left: auto !important; z-index: 120; }
  html.rtl .lang-dropdown { right: auto !important; left: 0 !important; }

  /* Bouncender Pfeil unten */
  .hero-cinema .hero-scrollcue {
    display: inline-flex; align-items: center; justify-content: center;
    position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.6);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    color: #ffffff; z-index: 5;
    animation: heroBounce 1.5s ease-in-out infinite;
  }
  .hero-cinema .hero-scrollcue svg { width: 16px; height: 16px; }
}
@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .hero-cinema .hero-scrollcue { animation: none; }
}

/* ===== Bewertungs-Karussell (50 Airbnb-Reviews, links/rechts sliden) ===== */
.reviews-carousel { position: relative; }
.rev-track {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 20px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.rev-track::-webkit-scrollbar { display: none; }
.rev-track .rev-card { flex: 0 0 clamp(280px, 80vw, 360px); scroll-snap-align: start; }
.rev-track .rev-card .quote { overflow-wrap: break-word; }
.rev-track:focus-visible { outline: 2px solid #B5663F; outline-offset: 4px; border-radius: 18px; }
.star-dim { color: rgba(181,102,63,.28); }
.rev-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border-radius: 50%; background: #fff;
  border: 1px solid rgba(15,42,68,.14); color: #0F2A44; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -8px rgba(15,42,68,.35);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.rev-arrow:hover { background: #B5663F; color: #fff; border-color: #B5663F; }
.rev-prev { left: -8px; }
.rev-next { right: -8px; }
@media (max-width: 900px) { .rev-arrow { display: none; } }

/* ============================================================
   RTL — Arabisch (html.rtl / dir="rtl")
   ============================================================ */
html.rtl { direction: rtl; }
html.rtl body { text-align: right; }
html.rtl .container,
html.rtl .hero-ed-text,
html.rtl .article-wrap,
html.rtl .legal-wrap,
html.rtl .section-head,
html.rtl .platform-head,
html.rtl .form-card,
html.rtl .footer-inner { text-align: right; }
/* Listen-Einzug spiegeln */
html.rtl .article-wrap ul,
html.rtl .legal-wrap ul,
html.rtl .mobile-menu-links,
html.rtl .nav-links { padding-right: 0; }
html.rtl .article-wrap ul,
html.rtl .legal-wrap ul { margin-right: 22px; margin-left: 0; }
/* Fixierte / absolut positionierte Elemente spiegeln */
html.rtl .whatsapp-float { right: auto; left: 24px; }
html.rtl .hero-scrollcue { /* zentriert – bleibt */ }
html.rtl .rev-prev { left: auto; right: -8px; }
html.rtl .rev-next { right: auto; left: -8px; }
html.rtl .show-all-photos { right: auto; left: 20px; }
html.rtl .hero-cinema .hero-v2-booking,
html.rtl .hero-cinema .hero-stage-top { text-align: center; }
/* Buchungs-/Formularfelder: Labels rechtsbündig */
html.rtl .cf-field label,
html.rtl .field label { text-align: right; }
/* Zahlen/Datumsangaben bleiben LTR lesbar */
html.rtl .g-stat__num,
html.rtl .price-row,
html.rtl time,
html.rtl .article-meta { direction: ltr; unicode-bidi: isolate; }
html.rtl .article-meta { text-align: right; }
.hero-panorama figure::after { border-radius: 0 0 20px 20px; }
@media (max-width: 760px) {
  .hero-panorama img, .hero-panorama figure::after { border-radius: 14px; }
}
/* Widget + Kalender-Popups über alles darunter heben */
.hero-panorama .hero-v2-booking { z-index: 60 !important; }
.hsbw-calendar, .hsbw-dropdown, .hsbw-popup,
.hsbw [class*="calendar"], .hsbw [class*="dropdown"], .hsbw [class*="popup"],
#hostaway-booking-widget [class*="calendar"],
#hostaway-booking-widget [class*="dropdown"] { z-index: 9999 !important; }
/* nachfolgende Inhalte bekommen niedrigeren Stapelplatz */
.content-wrapper { position: relative; z-index: 1; }

/* ============================================================
   HOSTAWAY-KALENDER — sauberer & markenkonform
   (Schrift an Seite angleichen, Crimson -> Cognac, Clear-Button entschlacken)
   ============================================================ */
.hsbw, .hsbw *,
.hsbw-calendar, .hsbw-calendar *,
.hsbw-guests, .hsbw-guests *,
.hsbw-dropdown, .hsbw-dropdown *,
.hsbw-container, .hsbw-container * {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}
/* Kalender-Card etwas ruhiger */
.hsbw-calendar { border-radius: 18px !important; padding: 18px 18px 10px !important; }
.hsbw-calendar table thead th[colspan] { font-weight: 700 !important; letter-spacing: -.01em !important; }
/* Wochentags-Köpfe dezent */
.hsbw-calendar table th { color: #9aa3ac !important; font-weight: 600 !important; text-transform: none !important; }
/* Tage */
.hsbw-calendar table td .hsbw-calendar-day { border-radius: 50% !important; font-weight: 500 !important; }
.hsbw-calendar table td:hover:not(.disabled) .hsbw-calendar-day { background: rgba(181,102,63,.12) !important; }
.hsbw-calendar table td.selected .hsbw-calendar-day,
.hsbw-calendar table td.start .hsbw-calendar-day,
.hsbw-calendar table td.end .hsbw-calendar-day { background: #B5663F !important; color: #fff !important; font-weight: 600 !important; }
.hsbw-calendar table td.in-range:not(.selected):not(.start):not(.end) .hsbw-calendar-day { background: rgba(181,102,63,.16) !important; color: #1a1a1a !important; }
.hsbw-calendar table td.disabled .hsbw-calendar-day { color: #cfd4d9 !important; text-decoration: line-through !important; }
/* Monats-Pfeile: dezente runde Cognac-Buttons */
.hsbw-calendar-button { border: 1px solid rgba(181,102,63,.35) !important; }
.hsbw-calendar-button:hover:not(:disabled) { background: rgba(181,102,63,.1) !important; }
.hsbw-calendar-button svg { fill: #B5663F !important; }
/* "Clear dates" — entschlackter, dezenter Text-Link statt schwerem Rahmen */
.hsbw-calendar .hsbw-calendar-clear,
button.hsbw-button.hsbw-calendar-clear {
  background: transparent !important; border: 0 !important; box-shadow: none !important;
  color: #B5663F !important; font-weight: 600 !important; font-size: 12.5px !important;
  padding: 8px 6px !important; border-radius: 8px !important;
  text-decoration: none !important; opacity: .85 !important;
  transition: color .15s, opacity .15s !important;
}
.hsbw-calendar .hsbw-calendar-clear:hover,
button.hsbw-button.hsbw-calendar-clear:hover {
  color: #8E4F30 !important; opacity: 1 !important;
  text-decoration: underline !important; text-underline-offset: 3px !important;
}
/* Such-Button + Gäste-Stepper ebenfalls Cognac */
.hsbw-search-button, .hsbw-button[type="submit"], button.hsbw-button.hsbw-search { background: #B5663F !important; color: #fff !important; }
.hsbw-search-button:hover, .hsbw-button[type="submit"]:hover { background: #8E4F30 !important; }
.hsbw-guests-button { border: 1px solid rgba(181,102,63,.4) !important; color: #B5663F !important; }
.hsbw-guests-button:hover:not(:disabled) { background: rgba(181,102,63,.1) !important; }
.hsbw-field-icon { color: #B5663F !important; }
