/* =========================================================
   Select Home – Design System
   Corporate Identity: BG #24353e · Orange #eb6423 · Weiß #fff
   Überschriften: Freehand575 BT · Fließtext: Abel Pro
   ========================================================= */

/* --- Schriften: komplett SELBST GEHOSTET (kein Google-Fonts-Aufruf → kein
   Datentransfer an Google, keine Consent-Pflicht für Schriften) --- */
@font-face {
  font-family: 'Abel Pro';
  src: url('../assets/fonts/AbelPro.woff') format('woff'),
       url('../assets/fonts/AbelPro.otf') format('opentype');
  font-weight: normal; font-display: swap;
}
/* Überschriften: Caveat (schlanker als Caveat Brush), Google Font lokal gehostet */
@font-face {
  font-family: 'Caveat';
  src: url('../assets/fonts/caveat-latin.woff2') format('woff2');
  font-weight: 500; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Caveat';
  src: url('../assets/fonts/caveat-latinext.woff2') format('woff2');
  font-weight: 500; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Colors – Corporate Identity Select Home */
  --navy:        #24353e;   /* dunkles Petrol (Markenhintergrund) */
  --navy-deep:   #1b282f;   /* noch dunkler (Footer) */
  --navy-soft:   #35505b;   /* Hover / Chips */
  --orange:      #eb6423;   /* Marken-Orange */
  --orange-dark: #c9521a;
  --cream:       #faf6f0;
  --cream-2:     #f2ece3;
  --cream-3:     #ece3d6;
  --text:        #2c2c2c;
  --muted:       #6c6c6c;
  --line:        #e3dccf;
  --white:       #ffffff;
  --star:        #eb6423;

  /* Type */
  --font-script: "Caveat", "Segoe Script", cursive;
  --font-body:   "Abel Pro", "Open Sans", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --maxw: 1140px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(18, 53, 79, 0.10);
  --shadow-sm: 0 4px 14px rgba(18, 53, 79, 0.08);
  --transition: 0.22s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.text-center { text-align: center; }

.script { font-family: var(--font-script); font-weight: 500; line-height: 1.1; }

/* Handschrift-Überschriften: einheitlich schlanke Stärke (Caveat 500),
   kein synthetisches Fett -> wirkt nicht klobig. Die einzelnen Regeln oben
   (.section-title, .hero h1 usw.) setzen bewusst KEIN eigenes font-weight
   mehr, damit diese eine Stelle hier die einzige Quelle der Wahrheit ist. */
.script, .section-title, .hero h1, .detail-hero h1, .split__text h2, .prose h2,
.cta-band h2, .page-hero h1, .cal__title, .app-claim, .legal h2,
.d-erleben-title, .footer-logo, .logo, .gm__title {
  font-weight: 500;
  font-synthesis: none;
}

.section-title {
  font-family: var(--font-script);
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 2.9rem);
  text-align: center;
  margin: 0 0 8px;
}
.section-title--left { text-align: left; }
.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}
.title-underline {
  width: 70px; height: 3px; background: var(--orange);
  border-radius: 3px; margin: 6px auto 34px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 8px;
  padding: 13px 26px;
  font-weight: 700; font-size: 0.98rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  color: #fff;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-script);
  font-size: 1.9rem; color: #fff; line-height: 1;
  display: flex; align-items: center;
}
.logo span { color: var(--orange); }
.logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-weight: 600; font-size: 0.98rem; color: #eaf1f6;
  padding: 6px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--orange); transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta-mobile { display: none; }

/* Dropdown */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item .caret { transition: transform var(--transition); }
.nav-item:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow);
  padding: 8px; display: none; flex-direction: column; z-index: 60;
}
.nav-item:hover .dropdown { display: flex; }
.dropdown a { color: var(--navy); padding: 10px 14px; border-radius: 8px; font-weight: 600; font-size: .94rem; white-space: nowrap; }
.dropdown a::after { content: none !important; }
.dropdown a:hover { background: var(--cream-2); color: var(--orange); }
.dropdown__all { border-top: 1px solid var(--line); margin-top: 6px; color: var(--orange); font-weight: 700; }

.nav-toggle {
  display: none; background: none; border: none; color: #fff; padding: 6px;
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  min-height: 460px;
  display: flex; align-items: center;
  background-color: var(--navy);
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,30,46,.72) 0%, rgba(10,30,46,.35) 55%, rgba(10,30,46,.15) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }
.hero h1 {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  margin: 0 0 18px; max-width: 640px; line-height: 1.08;
}
.hero p { font-size: 1.15rem; max-width: 520px; margin: 0 0 30px; color: #f2f6f9; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column;
}
.card__img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__body h3 { font-size: 1.5rem; margin: 0; color: var(--navy); }
.card__body p { margin: 0; color: var(--muted); }
.card__body .btn { align-self: flex-start; margin-top: 6px; }

.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* ---------- Pill links ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.pill {
  border: 1.5px solid var(--line); background: #fff; color: var(--navy);
  border-radius: 8px; padding: 11px 18px; font-weight: 700; font-size: 0.92rem;
  transition: var(--transition);
}
.pill:hover { border-color: var(--orange); color: var(--orange); }
.pill--dark { background: var(--orange); color: #fff; border-color: var(--orange); }
.pill--dark:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }

/* ---------- Feature strip ---------- */
.features {
  display: grid; grid-template-columns: repeat(9, 1fr); gap: 0;
}
.feature {
  text-align: center; padding: 8px 10px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.feature:first-child { border-left: none; }
.feature svg { width: 34px; height: 34px; stroke: var(--navy); }
.feature span { font-size: 0.82rem; font-weight: 700; color: var(--navy); line-height: 1.25; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split__text { padding: 64px 56px; }
.split__text h2 { font-family: var(--font-script); color: var(--navy); font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin: 0 0 20px; }
.split__text p { color: #4a4a4a; margin: 0 0 18px; }
.split__img { min-height: 320px; background-size: cover; background-position: center; }

/* =========================================================
   Detail page (Unterkunft)
   ========================================================= */
.detail-hero {
  position: relative; color: #fff; min-height: 420px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.detail-hero::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,30,46,.15) 30%, rgba(10,30,46,.85)); }
.detail-hero .container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 104px; }
.detail-hero h1 { font-family: var(--font-script); font-size: clamp(2.6rem, 5.85vw, 4.15rem); margin: 0 0 12px; }
.detail-hero .lead { max-width: 660px; margin: 0; color: #eef3f7; font-size: 1.4rem; line-height: 1.4; }

/* Booking row: gallery + calendar */
.booking-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 30px; margin-top: -60px; position: relative; z-index: 5; }
.panel { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 18px; }

.gallery__main { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/11; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(18,53,79,.55); color: #fff; font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: var(--transition); z-index: 2; padding-bottom: 3px;
}
.gallery__nav:hover { background: var(--orange); }
.gallery__nav--prev { left: 10px; }
.gallery__nav--next { right: 10px; }
.gallery__count { position: absolute; right: 10px; bottom: 10px; z-index: 2;
  background: rgba(18,53,79,.6); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px; }
/* Vorschaubild-Karussell: feste Breite (100% des Panels), NIE breiter als der
   Rahmen -> kann die Seite nicht mehr verschieben, egal wie viele Fotos es gibt. */
.gallery__thumbs { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
/* JS setzt hier eine feste Pixelbreite für genau 4 sichtbare Vorschaubilder.
   flex: 0 0 auto -> Breite wächst NIE über diesen Wert hinaus, egal wie viele
   Fotos die Unterkunft hat (overflow:hidden allein reicht dafür nicht aus,
   da eine content-basierte Breite (flex-basis:auto) davon unbeeinflusst bleibt). */
.gallery__thumbs-viewport { overflow: hidden; flex: 0 0 auto; }
.gallery__thumbs-track { display: flex; gap: 10px; transition: transform .3s ease; }
.gallery__thumbs-track img { flex: 0 0 92px; width: 92px; height: 66px; border-radius: 8px; object-fit: cover; cursor: pointer; opacity: .8; transition: var(--transition); }
.gallery__thumbs-track img:hover, .gallery__thumbs-track img.active, .gallery__thumbs-track img:focus-visible { opacity: 1; outline: 2px solid var(--orange); }
.gallery__thumbs-nav {
  flex: 0 0 auto; width: 30px; height: 66px; border: none; border-radius: 8px;
  background: var(--cream-2); color: var(--navy); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.gallery__thumbs-nav:hover { background: var(--orange); color: #fff; }
.gallery__thumbs-nav:disabled { opacity: .35; cursor: default; }
.gallery__thumbs-nav:disabled:hover { background: var(--cream-2); color: var(--navy); }

/* Calendar */
.booking-panel { display: flex; flex-direction: column; }
.cal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; padding: 10px 8px; }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal__title { font-family: var(--font-script); font-size: 1.4rem; color: var(--navy); }
.cal__nav { background: none; border: none; color: var(--navy); font-size: 1.2rem; padding: 2px 8px; border-radius: 6px; }
.cal__nav:hover { background: var(--cream-2); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.cal__dow { font-size: .72rem; font-weight: 800; color: var(--muted); padding: 4px 0; }
.cal__day {
  font-family: inherit; font-size: .86rem; padding: 8px 0; border-radius: 8px;
  border: none; background: transparent; width: 100%; cursor: pointer; transition: background .15s;
}
.cal__day:hover:not(.is-empty):not(.is-disabled):not(.is-booked):not(.is-free) { background: var(--cream-2); }
.cal__day:focus-visible { outline: 2px solid var(--orange); outline-offset: 1px; }
.cal__day.is-empty { cursor: default; }
.cal__day.is-disabled, .cal__day:disabled { color: #c9c9c9; cursor: not-allowed; text-decoration: line-through; }
.cal__day.is-free { background: #e7f4ea; color: #2e7d46; font-weight: 700; }
.cal__day.is-free:hover { background: #d4ecda; }
.cal__day.is-range { background: var(--cream-3); color: var(--text); }
.cal__day.is-booked { background: #fbe5e5; color: #c0392b; cursor: not-allowed; }
.cal__day.is-selected { background: var(--orange); color: #fff; font-weight: 800; }
.cal__day.is-today { outline: 1.5px solid var(--orange); outline-offset: -2px; }

/* Legende */
.cal-legend { display: flex; gap: 20px; justify-content: center; margin: 4px 12px 2px; font-size: .82rem; color: var(--muted); }
.cal-legend span { display: inline-flex; align-items: center; gap: 7px; }
.cal-legend .dot { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.cal-legend .dot--free { background: #e7f4ea; border: 1px solid #7cc496; }
.cal-legend .dot--booked { background: #fbe5e5; border: 1px solid #e0a0a0; }
.booking-panel .btn { margin: 16px 12px 8px; }
.booking-hint { font-size: .8rem; color: var(--muted); text-align: center; margin: 0 12px 8px; }

/* Icon facts strip */
.facts {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 18px 10px; margin-top: 34px;
}
.fact { display: flex; align-items: center; gap: 10px; padding: 8px 16px; font-weight: 700; font-size: .92rem; color: var(--navy); }
.fact svg { width: 24px; height: 24px; stroke: var(--navy); flex: none; }
.fact + .fact { border-left: 1px solid var(--line); }

/* Text block */
.prose h2 { font-family: var(--font-script); font-weight: 700; color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.2rem); margin: 0 0 18px; }
.prose p { color: #4a4a4a; margin: 0 0 16px; max-width: 820px; }
.prose .d-rooms { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin: 24px 0 6px; }
.prose .d-room { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.prose .d-room h4 { margin: 0 0 10px; color: var(--navy); font-size: 1.05rem; }
.prose .d-room ul, .prose .d-cat ul { list-style: none; padding: 0; margin: 0; }
.prose .d-room li, .prose .d-cat li { padding: 4px 0 4px 18px; position: relative; color: #4a4a4a; font-size: .93rem; }
.prose .d-room li::before, .prose .d-cat li::before { content: "•"; color: var(--orange); position: absolute; left: 2px; }
.d-erleben-title { font-family: var(--font-script); color: var(--navy); font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin: 32px 0 14px; }
.prose .d-erleben { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.prose .d-cat { background: var(--cream-2); border-radius: var(--radius); padding: 16px 18px; }
.prose .d-cat h4 { margin: 0 0 8px; color: var(--orange); font-size: .98rem; }
.prose .d-cat p { margin: 0; color: #4a4a4a; font-size: .92rem; max-width: none; }

/* Floor plan */
.floorplan { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 20px; }
.floorplan img, .floorplan svg { width: 100%; height: auto; }

/* Location */
.location-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 34px; align-items: start; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #dbe6d8; min-height: 320px; }
.map-embed img, .map-embed svg { width: 100%; height: 100%; display: block; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-embed--full { min-height: 440px; }
.map-embed--full iframe { min-height: 440px; }
.maplink { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 700; }
.maplink:hover { gap: 9px; }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 28px 40px; text-align: center;
  box-shadow: var(--shadow);
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(235,100,35,.28), transparent 70%);
}
.cta-band h2 { font-family: var(--font-script); color: #fff; font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 0 0 8px; position: relative; z-index: 1; }
.cta-form { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-form .field {
  display: flex; align-items: center; gap: 10px; background: #fff;
  border: 1px solid var(--line); border-radius: 8px; padding: 12px 16px; min-width: 190px;
}
.cta-form .field svg { width: 18px; height: 18px; stroke: var(--muted); }
.cta-form input { border: none; outline: none; font-family: inherit; font-size: .95rem; width: 100%; background: transparent; }
.cta-sub { max-width: 560px; margin: 0 auto 20px; color: rgba(255,255,255,.85); position: relative; z-index: 1; line-height: 1.45; }

/* Kompakter CTA (z. B. Erlebnisse-Seite) */
.cta-band--sm { padding: 26px 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left; flex-wrap: wrap; }
.cta-band--sm::after { display: none; }
.cta-band--sm__text { position: relative; z-index: 1; }
.cta-band--sm h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin: 0 0 4px; }
.cta-band--sm .cta-sub { margin: 0; max-width: 640px; }
.cta-band--sm .btn { flex: none; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* WhatsApp-Button */
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1fb457; transform: translateY(-1px); }

/* Schnellkontakt: Floating Action Button (WhatsApp mobil / E-Mail Desktop) */
#site-fab { position: fixed; right: 20px; bottom: 20px; z-index: 70; }
.fab {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 20px 0 16px; border-radius: 999px;
  color: #fff; font-weight: 800; font-size: .98rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.22); transition: var(--transition);
}
.fab svg { width: 26px; height: 26px; flex: none; }
.fab:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.28); }
.fab--wa { background: #25d366; }
.fab--mail { background: var(--orange); }
.fab--wa { display: none; }               /* Desktop: E-Mail zeigen */
@media (max-width: 820px) {
  .fab--mail { display: none; }            /* Mobil/Tablet: WhatsApp zeigen */
  .fab--wa { display: inline-flex; }
  .fab span { display: none; }             /* auf klein: nur Icon (kompakt) */
  .fab { height: 56px; width: 56px; padding: 0; justify-content: center; border-radius: 50%; }
}

/* ---------- Generic page hero (subpages) ---------- */
.page-hero { background: var(--navy); color: #fff; padding: 56px 0; text-align: center; }
.page-hero h1 { font-family: var(--font-script); font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin: 0 0 10px; }
.page-hero p { color: #d7e2ea; max-width: 640px; margin: 0 auto; }

/* Grid of accommodation cards */
.acc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.acc-card .card__body { padding: 20px 22px 22px; gap: 8px; }
.acc-card h3 { font-size: 1.25rem; margin: 0; }
.acc-card h3 a { color: var(--navy); }
.acc-card h3 a:hover { color: var(--orange); }
.acc-card .card__meta { display: flex; gap: 18px; font-size: .86rem; color: var(--muted); flex-wrap: wrap; }
.acc-card .loc { display: flex; align-items: center; gap: 6px; font-size: .88rem; color: var(--muted); }
.acc-card .acc-short { color: var(--muted); font-size: .92rem; margin: 4px 0 10px; flex: 1; }
.acc-card .acc-foot { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: auto; }
.acc-card .more-link { color: var(--orange); font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.acc-card .more-link:hover { gap: 11px; }

/* Legal / prose pages */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-family: var(--font-script); color: var(--navy); font-size: 1.8rem; margin: 34px 0 12px; }
.legal h3 { color: var(--navy); margin: 24px 0 8px; }
.legal p, .legal li { color: #4a4a4a; }
.legal ul { list-style: disc; padding-left: 22px; }

/* Experiences */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.exp-widget { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 22px; min-height: 320px; }

/* App section */
.app-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.app-badges { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.app-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 10px; }
.app-badge svg { width: 24px; height: 24px; }
.app-feature-list li { display: flex; gap: 12px; padding: 10px 0; align-items: flex-start; }
.app-feature-list li svg { width: 22px; height: 22px; stroke: var(--orange); flex: none; margin-top: 2px; }
.app-claim { font-family: var(--font-script); color: var(--orange); font-size: 2rem; margin: 0; line-height: 1; }

/* Smartphone-Mockup mit Gästemappe-Startseite */
.app-phone-wrap { display: flex; justify-content: center; }
.phone { position: relative; width: 300px; max-width: 84vw; background: #10222e; border-radius: 42px; padding: 14px; box-shadow: 0 24px 50px rgba(18,53,79,.28); }
.phone__notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 120px; height: 20px; background: #10222e; border-radius: 0 0 14px 14px; z-index: 2; }
.phone__screen { border-radius: 30px; overflow: hidden; background: var(--navy); }
.gm { background: var(--navy); color: #fff; }
.gm__hero { text-align: center; padding: 42px 16px 16px; border-bottom: 3px solid var(--orange); }
.gm__logo-img { height: 26px; width: auto; margin: 0 auto; display: block; }
.gm__eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .52rem; color: var(--orange); margin-top: 10px; font-weight: 700; }
.gm__title { font-family: var(--font-script); font-size: 1.9rem; margin-top: 8px; }
.gm__sub { font-size: .66rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.gm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px; }
.gm__footer { border-top: 1px solid rgba(255,255,255,.12); padding: 14px 16px 20px; text-align: center; }
.gm__footer-label { font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 10px; }
.gm__footer-logos { display: flex; gap: 8px; justify-content: center; align-items: center; }
.gm__footer-logos img { height: 26px; width: auto; background: #fff; border-radius: 5px; padding: 4px 6px; }
.gm__legal { font-size: .54rem; color: rgba(255,255,255,.45); margin-top: 10px; }
.gm__tile { background: var(--navy-soft); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 12px 8px; display: flex; flex-direction: column; align-items: center; gap: 7px; text-align: center; }
.gm__tile svg { width: 22px; height: 22px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.gm__tile span { font-size: .6rem; color: #eaf1f6; line-height: 1.2; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #cdd8e0; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 40px; }
.footer-logo { font-family: var(--font-script); font-size: 1.8rem; color: #fff; margin-bottom: 14px; }
.footer-logo span { color: var(--orange); }
.footer-logo img { height: 46px; width: auto; display: block; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; }
.site-footer p { font-size: .92rem; line-height: 1.7; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .93rem; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .93rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; stroke: var(--orange); flex: none; margin-top: 2px; }
.social { display: flex; gap: 12px; margin-top: 18px; }
.social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid #33536e; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social a:hover { background: var(--orange); border-color: var(--orange); }
.social svg { width: 18px; height: 18px; stroke: #fff; fill: none; }
.footer-partners-stack { display: inline-flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-partners-stack a { background: #fff; border-radius: 8px; padding: 8px 12px; display: inline-flex; align-items: center; transition: var(--transition); }
.footer-partners-stack a:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.footer-partners-stack img { height: 30px; width: auto; display: block; }
.footer-bottom { border-top: 1px solid #22455f; margin-top: 40px; padding-top: 22px; font-size: .84rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Consent-Banner */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; background: var(--navy-deep); color: #eaf1f6; box-shadow: 0 -8px 30px rgba(0,0,0,.3); }
.consent__inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.consent__text { flex: 1; min-width: 260px; }
.consent__text strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.consent__text p { margin: 0; font-size: .88rem; color: #bcccd7; line-height: 1.5; }
.consent__text a { color: var(--orange); }
.consent__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.consent__actions .btn--ghost { color: #fff; border-color: #3a5a70; background: transparent; }
.consent__actions .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }

/* Platzhalter für externe Inhalte (Karte, Widget) vor Einwilligung */
.embed-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  text-align: center; padding: 30px; min-height: 300px; height: 100%;
  background: var(--cream-2); border-radius: var(--radius);
}
.embed-placeholder p { margin: 0; color: var(--muted); max-width: 420px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards-2 { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(3, 1fr); gap: 20px 0; }
  .feature { border-left: none; }
  .split, .booking-grid, .location-grid, .app-split { grid-template-columns: 1fr; }
  .split__img { min-height: 260px; }
  .booking-grid { margin-top: 24px; }
  .detail-hero .container { padding-bottom: 44px; }
  .acc-grid, .exp-grid, .amenities { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .gallery__thumbs-track img { flex-basis: 62px; width: 62px; height: 44px; }
  .gallery__thumbs-nav { width: 22px; height: 44px; font-size: 1.1rem; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; gap: 0; padding: 10px 0;
    display: none; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; }
  .nav-item { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-item .caret { display: none; }
  .dropdown {
    position: static; display: flex; min-width: 0; box-shadow: none;
    background: var(--navy-soft); border-radius: 0; padding: 4px 0;
  }
  .dropdown a { color: #d7e2ea; padding: 12px 40px; border-radius: 0; }
  .dropdown a:hover { background: var(--navy-deep); color: #fff; }
  .dropdown__all { border-top: none; }
  .nav-cta-mobile { display: inline-flex; margin: 10px 24px; width: auto; }
  .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-right .btn { padding: 10px 18px; font-size: .9rem; }
  .cal-wrap { grid-template-columns: 1fr; }
  .acc-grid, .exp-grid, .amenities { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .split__text { padding: 44px 28px; }
  .facts { justify-content: flex-start; }
  .fact + .fact { border-left: none; }
  .section { padding: 52px 0; }
}
