/* ==========================================================================
   PALOMA Reiseberatung: Design-System
   Warme, hochwertige Optik: Petrol + Sand + Terrakotta, Playfair Display + Inter
   ========================================================================== */

:root {
  --ink: #1c2b2f;
  --ink-2: #4a5b60;
  --ink-3: #6d7d82;
  --paper: #fffdf9;
  --sand: #f6f1e7;
  --sand-2: #ede5d3;
  --line: #e4dccb;
  --petrol: #135e66;
  --petrol-deep: #0b3f45;
  --petrol-dark: #072e33;
  --petrol-tint: #e4efed;
  --coral: #c2542e;
  --coral-hover: #a84523;
  --coral-soft: #f7e6dd;
  --gold: #dfa32f;
  --ok: #2e7d4f;
  --font-head: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-1: 0 2px 10px rgba(28, 43, 47, 0.07);
  --shadow-2: 0 12px 34px rgba(28, 43, 47, 0.13);
  --container: 1200px;
  --section-pad: clamp(3.5rem, 8vw, 6.5rem);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Basis ------------------------------------------------------------------ */

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

[hidden] { display: none !important; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  /* Kein horizontales Wackeln auf dem Handy: 'clip' kappt versehentlichen
     Ueberlauf, ohne (anders als 'hidden') den sticky Header zu brechen. */
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 1.4rem + 3.2vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 1.25rem + 1.6vw, 2.35rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

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

a { color: var(--petrol); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--petrol-deep); }

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

ul, ol { padding-left: 1.3em; margin: 0 0 1em; }

address { font-style: normal; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.section { padding-block: var(--section-pad); }
.section--sand { background: var(--sand); }
.section--tint { background: var(--petrol-tint); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--petrol-deep); color: #fff; padding: 0.6em 1.2em;
}
.skip-link:focus { left: 0; }

.icon { width: 24px; height: 24px; flex: none; }
.icon--sm { width: 18px; height: 18px; }
.icon--xs { width: 14px; height: 14px; }
.icon--lg { width: 34px; height: 34px; }

/* Eyebrow + Sektionsköpfe -------------------------------------------------- */

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.9rem;
}

.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lede { font-size: 1.15rem; color: var(--ink-2); margin-inline: auto; }

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.8em 1.7em;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.14s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn--accent:hover, .btn--primary:hover { box-shadow: 0 8px 20px rgba(28, 43, 47, 0.18); }

.btn--accent { background: var(--coral); color: #fff; }
.btn--accent:hover { background: var(--coral-hover); color: #fff; }

.btn--primary { background: var(--petrol); color: #fff; }
.btn--primary:hover { background: var(--petrol-deep); color: #fff; }

.btn--ghost { border-color: var(--petrol); color: var(--petrol); background: transparent; }
.btn--ghost:hover { background: var(--petrol); color: #fff; }

.btn--light { background: var(--paper); color: var(--petrol-deep); }
.btn--light:hover { background: var(--sand); color: var(--petrol-dark); }

.btn--ghost-light { border-color: rgba(255, 255, 255, 0.65); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

.btn--sm { padding: 0.55em 1.2em; font-size: 0.92rem; }
.btn--lg { padding: 1em 2.2em; font-size: 1.08rem; }

/* Topbar ------------------------------------------------------------------- */

.topbar {
  background: var(--petrol-dark);
  color: #cfe0dd;
  font-size: 0.9rem;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 0.5rem 1.2rem; min-height: 40px; flex-wrap: wrap;
}
/* Live-Oeffnungsstatus links */
.topbar__status { margin: 0; display: inline-flex; align-items: center; gap: 0.5em; min-width: 0; }
.topbar__status [data-hours-text] { display: inline; }
.topbar__status strong { color: #fff; font-weight: 600; }
.topbar__dot {
  flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--gold);
}
.topbar__status.is-open .topbar__dot { background: #43d17a; }
.topbar__status.is-closed .topbar__dot { background: #e08a4a; }
@media (prefers-reduced-motion: no-preference) {
  .topbar__status.is-open .topbar__dot { animation: cw-pulse 2.6s ease-in-out infinite; }
}
/* Schnellkontakt rechts */
.topbar__links { display: flex; align-items: center; gap: 0.35rem; }
.topbar__link {
  color: #eaf2f0; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.3em 0.6em; border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}
.topbar__link:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.topbar__link .icon { flex: none; }

@media (max-width: 760px) {
  /* Mobil kompakt und aufgeraeumt: Status bleibt sichtbar, der Kontakt wird zu
     reinen Icon-Buttons mit guter Tap-Groesse. Kein Umbruch, kein Gequetsche. */
  .topbar { font-size: 0.84rem; }
  .topbar__inner { flex-wrap: nowrap; gap: 0.4rem; min-height: 46px; }
  .topbar__status { flex: 1 1 auto; }
  .topbar__status [data-hours-text] { display: block; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topbar__links { flex: none; gap: 0.1rem; }
  .topbar__link { width: 38px; height: 38px; padding: 0; justify-content: center; }
  .topbar__link-label {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
}

/* Header ------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Kein backdrop-filter: das wuerde den Header zum Containing Block fuer das
     position:fixed Mobile-Menue machen (inset:0 fuellt dann nur den Header
     statt des Viewports). Hintergrund fast deckend, damit es dennoch sauber wirkt. */
  background: rgba(255, 253, 249, 0.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-1); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  min-height: 62px;
}

.brand {
  display: flex; align-items: center; gap: 0.55rem;
  text-decoration: none; color: var(--petrol-deep);
  flex: none;
}
@media (min-width: 1181px) {
  .brand { margin-left: clamp(-2rem, -1.2vw, -0.4rem); }
}
.brand-emblem { height: 50px; width: auto; display: block; flex: none; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1.05; }
.brand-lockup__name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--coral);
  white-space: nowrap;
}
.brand-lockup__pre { color: var(--petrol); font-weight: 600; font-size: 0.82em; }
.brand-lockup__claim {
  font-size: 0.92rem;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--petrol);
  margin-top: 0.2em;
}
.brand-logo { width: 46px; height: auto; flex: none; vertical-align: middle; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-text small {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}

.main-nav { margin-left: auto; }
.main-nav > ul {
  display: flex; gap: 0.2rem;
  list-style: none; margin: 0; padding: 0;
}
/* Optische Mitte: Kleinbuchstaben-Nav sitzt geometrisch zentriert, wirkt aber
   leicht zu hoch. Ein 2px-Versatz nach unten laesst Nav und CTA wirklich
   mittig in der Header-Leiste sitzen. */
@media (min-width: 1181px) {
  .main-nav > ul, .header-actions { transform: translateY(2px); }
}
.main-nav a, .nav-sub-toggle {
  display: inline-flex; align-items: center; gap: 0.3em;
  padding: 0.55em 0.68em;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body);
  border-radius: 8px;
}
.main-nav a:hover, .nav-sub-toggle:hover { background: var(--sand); color: var(--petrol-deep); }
.main-nav .is-active > a, .main-nav .is-active > .nav-sub-toggle { color: var(--petrol); font-weight: 600; }

/* Caret dezenter halten, damit die Dropdown-Parents nicht schreien; beim
   Oeffnen rotieren. Der caret-lose Magazin-Link ist bewusst ein Solo-Link. */
.nav-sub-toggle svg { opacity: 0.5; transition: transform 0.22s ease, opacity 0.22s ease; }
.main-nav li.has-sub:hover > .nav-sub-toggle svg,
.main-nav li.has-sub:focus-within > .nav-sub-toggle svg,
.main-nav li.is-open > .nav-sub-toggle svg { transform: rotate(180deg); opacity: 0.8; }
@media (min-width: 1181px) {
  .main-nav li[data-nav="magazin"] {
    margin-left: 0.25rem; padding-left: 0.6rem;
    border-left: 1px solid rgba(19, 94, 102, 0.2);
  }
}

.main-nav li { position: relative; }
.sub-nav {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-2);
  list-style: none; margin: 0; padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 60;
}
.main-nav li.is-open > .sub-nav,
.main-nav li:hover > .sub-nav,
.main-nav li:focus-within > .sub-nav {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub-nav a { display: block; padding: 0.5em 0.8em; border-radius: 7px; font-size: 0.98rem; }

.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.header-cta { padding: 0.52em 1.25em; font-size: 0.94rem; }
/* Nur im ausgeklappten Mobile-Menue sichtbar. Hohe Spezifitaet (a.main-nav__cta),
   damit die Regel .main-nav a (display:inline-flex) den Button auf Desktop nicht
   doch einblendet. Im Mobile-Media-Query wird er wieder auf inline-flex gesetzt. */
.main-nav a.main-nav__cta { display: none; }
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  color: var(--ink); padding: 0.4rem;
}

@media (max-width: 1180px) {
  .header-cta { display: none; }
  /* Nav ist mobil out-of-flow (fixed), daher Toggle selbst nach rechts schieben */
  .header-actions { margin-left: auto; }
  /* Toggle ueber dem Panel halten, damit er zum Schliessen klickbar bleibt */
  .nav-toggle { display: block; position: relative; z-index: 60; }
  .main-nav {
    position: fixed; inset: 0;
    background: var(--paper);
    padding: 5.5rem 1.5rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 40;
    margin: 0;
  }
  body.nav-open .main-nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  /* Hamburger wird beim Oeffnen zum X */
  body.nav-open .nav-toggle svg { opacity: 0; }
  body.nav-open .nav-toggle::before,
  body.nav-open .nav-toggle::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  }
  body.nav-open .nav-toggle::before { transform: translate(-50%, -50%) rotate(45deg); }
  body.nav-open .nav-toggle::after { transform: translate(-50%, -50%) rotate(-45deg); }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav a, .nav-sub-toggle { width: 100%; font-size: 1.15rem; padding: 0.8em 0.4em; justify-content: space-between; }
  .sub-nav {
    position: static; opacity: 1; visibility: hidden; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin-left: 0.8rem; display: none;
  }
  .main-nav li.is-open > .sub-nav { display: block; visibility: visible; }
  /* Schneller Weg zur Buchung direkt im ausgeklappten Mobile-Menue.
     Hoehere Spezifitaet (a.main-nav__cta) als .main-nav a, damit der
     Button-Look (Coral-Flaeche, Pille, zentriert) erhalten bleibt. */
  .main-nav a.main-nav__cta {
    display: inline-flex; justify-content: center; text-align: center;
    width: 100%; margin-top: 1.6rem; font-size: 1.1rem; font-weight: 600;
    padding: 0.95em 1.4em;
    background: var(--coral); color: #fff;
    border: 2px solid transparent; border-radius: 999px;
  }
  .main-nav a.main-nav__cta:hover { background: var(--coral-hover); color: #fff; }
}

/* Hero --------------------------------------------------------------------- */

.hero {
  position: relative;
  /* Cinematic: Bild fuellt den ganzen Screen, Inhalt unten links verankert,
     Trust-Leiste ganz unten. Fuellt die Resthoehe unter Topbar+Header. */
  /* svh statt dvh: die kleine Viewport-Hoehe aendert sich beim Ein- und
     Ausblenden der mobilen Adressleiste NICHT. Mit dvh wuchs der Hero beim
     Scrollen, wodurch das Hintergrundbild sichtbar "reinzoomte" und ruckelte. */
  min-height: clamp(600px, calc(100svh - var(--hero-chrome, 118px)), 940px);
  display: flex;
  flex-direction: column;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
/* Media-Box leicht groesser als der Hero, damit der Parallax-Versatz oben
   und unten nie eine Kante freilegt */
.hero__media {
  position: absolute; top: -8%; left: 0;
  width: 100%; height: 116%;
  z-index: -2;
  will-change: transform;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.0) contrast(1.02);
}
@media (max-width: 760px) {
  /* Auf dem Handy laeuft kein Parallax (siehe main.js), also keinen Ueberscan:
     Bild formatfuellend und stabil, damit beim Scrollen nichts kippt. */
  .hero__media { top: 0; height: 100%; }
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  /* Gleichmaessige Grundabdunklung + weicher dunkler Fokus hinter der mittigen
     Headline (hebt die Schrift klar vom Bild ab) + Boden-Fade fuer die Leiste. */
  background:
    radial-gradient(115% 85% at 50% 44%, rgba(6, 30, 34, 0.5) 0%, rgba(6, 30, 34, 0.32) 55%, rgba(6, 30, 34, 0.22) 100%),
    linear-gradient(rgba(6, 30, 34, 0.28), rgba(6, 30, 34, 0.28)),
    linear-gradient(to top, rgba(7, 34, 39, 0.82) 0%, rgba(9, 45, 50, 0.3) 26%, transparent 55%);
}
.hero__inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: clamp(1.5rem, 4vh, 3rem);
}
.hero__content { max-width: 1040px; margin-inline: auto; text-align: center; }
.hero h1 {
  color: #fff; font-weight: 600;
  font-size: clamp(2.6rem, 1rem + 5.4vw, 5.4rem);
  line-height: 1.04; letter-spacing: -0.02em;
  margin: 0 auto 1.1rem;
  text-shadow: 0 2px 30px rgba(6, 30, 34, 0.5);
}
.hero h1 em { font-style: italic; font-weight: 500; }
.hero__lede {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  line-height: 1.5;
  max-width: 56ch;
  margin: 0 auto 1.8rem;
  color: #fff;
  text-shadow: 0 1px 12px rgba(6, 30, 34, 0.6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.hero__actions .btn { padding: 0.95em 1.9em; font-size: 1.02rem; }

/* Trust-Leiste am unteren Bildrand: volle Breite, edel-schmal, Rating
   prominent + zwei Kernfakten. Nutzt den Platz statt einer schwebenden Karte. */
.hero__bar {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(to top, rgba(7, 34, 39, 0.5), rgba(7, 34, 39, 0.08));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__bar-inner {
  display: flex; align-items: center; flex-wrap: wrap; justify-content: center;
  gap: 0.7rem 1.7rem;
  padding-block: clamp(0.85rem, 1.6vh, 1.25rem);
}
.hero__rating {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #fff; text-decoration: none;
}
.hero__rating:hover { color: #fff; }
.hero__rating:hover .hero__rating-meta { color: rgba(255, 255, 255, 0.95); text-decoration: underline; text-underline-offset: 3px; }
.hero__rating-logo {
  display: grid; place-items: center; flex: none;
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 8px rgba(7, 34, 39, 0.3);
}
.hero__rating-score { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__rating-score strong {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 600;
  line-height: 1; color: #fff;
}
.hero__rating-score .star { width: 16px; height: 16px; }
.hero__rating-score .star--on { color: var(--gold); }
.hero__rating-meta { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); transition: color 0.2s ease; }
.hero__bar-sep { width: 1px; height: 26px; background: rgba(255, 255, 255, 0.22); flex: none; }
.hero__fact {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.9rem; color: rgba(255, 255, 255, 0.9);
}
.hero__fact .icon { color: var(--gold); flex: none; }

@media (max-width: 720px) {
  .hero__bar-sep { display: none; }
  .hero__bar-inner { gap: 0.5rem 1.3rem; }
  .hero__fact { font-size: 0.9rem; }
  .hero__rating-score strong { font-size: 1.25rem; }
}

/* Seiten-Hero (Unterseiten): mittig, hochwertig */
.page-hero {
  position: relative;
  min-height: clamp(300px, 46vh, 460px);
  display: flex; align-items: center;
  color: #fff; isolation: isolate; overflow: hidden;
  text-align: center;
}
.page-hero__media, .page-hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(rgba(7, 34, 39, 0.4), rgba(7, 34, 39, 0.4)),
    linear-gradient(to top, rgba(7, 34, 39, 0.7), rgba(7, 34, 39, 0.2) 70%);
}
.page-hero__inner { padding-block: clamp(2rem, 5vw, 3.5rem); width: 100%; }
.page-hero h1 { color: #fff; max-width: 20ch; margin-inline: auto; }
.page-hero .eyebrow { color: #ffd9a8; }
.page-hero__lede { max-width: 58ch; margin-inline: auto; color: rgba(255, 255, 255, 0.94); font-size: 1.1rem; }
.page-hero .breadcrumbs ol { justify-content: center; }
.page-hero .hero__actions { justify-content: center; }

/* Schlichter Seitenkopf ohne Bild */
.page-plain { background: var(--sand); padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 4vw, 3rem); text-align: center; }
.page-plain h1 { max-width: 20ch; margin-inline: auto; }
.page-plain .lede { max-width: 62ch; margin-inline: auto; color: var(--ink-2); font-size: 1.12rem; }
.page-plain .breadcrumbs ol { justify-content: center; }

/* Breadcrumbs -------------------------------------------------------------- */

.breadcrumbs { font-size: 0.9rem; padding-top: 1.1rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.2rem; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: '›'; margin: 0 0.45em; color: var(--ink-3); }
.breadcrumbs a { color: var(--ink-3); text-decoration: none; }
.breadcrumbs a:hover { color: var(--petrol); text-decoration: underline; }
.breadcrumbs span { color: var(--ink-2); }
/* Breadcrumb ueber dem Hero-Foto klar lesbar: helles Weiss plus Textschatten,
   aktuelle Seite zusaetzlich fett. Vorher wusch das 0.85-Grau ueber hellen
   Bildbereichen (weisse Haeuser, Himmel) fast unsichtbar aus. */
.page-hero .breadcrumbs { text-shadow: 0 1px 4px rgba(6, 28, 32, 0.65); }
.page-hero .breadcrumbs a { color: rgba(255, 255, 255, 0.92); }
.page-hero .breadcrumbs a:hover { color: #fff; }
.page-hero .breadcrumbs span { color: #fff; font-weight: 600; }
.page-hero .breadcrumbs li + li::before { color: rgba(255, 255, 255, 0.72); }

/* Trust-Leiste ------------------------------------------------------------- */

.trustbar { background: var(--petrol-dark); color: #fff; }
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding-block: 1.1rem;
  align-items: center;
}
.trustbar__item {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.92rem; justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}
.trustbar__item .icon { color: var(--gold); }
.trustbar__item strong { color: #fff; }

/* Sterne ------------------------------------------------------------------- */

.stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.star { width: 17px; height: 17px; fill: rgba(125, 125, 125, 0.35); stroke: none; }
.star--on { fill: var(--gold); }

/* USP-Karten ---------------------------------------------------------------- */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.usp {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-1);
}
.usp__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--petrol-tint);
  color: var(--petrol);
  border-radius: 14px;
  margin-bottom: 1.1rem;
}
/* Zwei Zeilen reservieren, damit der Fliesstext in allen Karten der Reihe
   auf gleicher Hoehe beginnt, egal ob der Titel ein- oder zweizeilig ist */
.usp h3 { font-size: 1.15rem; margin-bottom: 0.4em; min-height: 2.3em; min-height: 2lh; }
.usp p { color: var(--ink-2); font-size: 0.98rem; margin: 0; }

/* Vergleich Portal vs. Paloma ------------------------------------------------ */

.compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.compare__col {
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.compare__col--paloma {
  background: var(--petrol-deep);
  color: #eaf2f0;
  border-color: var(--petrol-deep);
  box-shadow: var(--shadow-2);
}
.compare__col h3 { display: flex; align-items: center; gap: 0.5em; }
.compare__col--paloma h3 { color: #fff; }
.compare__col--paloma .brand-logo { color: #fff; }
.compare__list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 0.75rem; }
.compare__list li { display: flex; gap: 0.6em; align-items: flex-start; font-size: 0.98rem; }
.compare__list .icon { margin-top: 0.2em; width: 19px; height: 19px; }
.compare__col--portal .icon { color: var(--ink-3); }
.compare__col--paloma .icon { color: var(--gold); }

/* Karten (Reiseziele, Reisearten, Blog) -------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.6rem;
}
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.card__kicker { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); }
.card h3 { font-size: 1.28rem; margin: 0; min-height: 2.3em; min-height: 2lh; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a::after { content: ''; position: absolute; inset: 0; }
.card p { color: var(--ink-2); font-size: 0.98rem; margin: 0; flex: 1; }
.card__link {
  display: inline-flex; align-items: center; gap: 0.4em;
  color: var(--petrol); font-weight: 600; font-size: 0.98rem;
  margin-top: 0.4rem;
}
.card__link .icon { width: 17px; height: 17px; transition: transform 0.18s ease; }
.card:hover .card__link .icon { transform: translateX(4px); }

/* Grosse Bildkachel (Reiseziele-Uebersicht) */
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  box-shadow: var(--shadow-1);
}
.tile--wide { aspect-ratio: 16 / 10; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.4s ease; }
.tile::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(7, 34, 39, 0.75), transparent 65%); }
.tile:hover img { transform: scale(1.05); }
.tile__body { padding: 1.3rem 1.4rem; }
.tile__body h3 { color: #fff; margin: 0; font-size: 1.35rem; }
.tile__body p { color: rgba(255, 255, 255, 0.88); font-size: 0.9rem; margin: 0.2rem 0 0; }
.tile a { color: inherit; text-decoration: none; }
.tile a::after { content: ''; position: absolute; inset: 0; }

/* Team ---------------------------------------------------------------------- */

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem 1.8rem;
}
.team-grid .person { flex: 1 1 240px; max-width: 280px; }
.person { text-align: center; display: flex; flex-direction: column; }
.person__photo {
  width: min(200px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.1rem;
  border: 5px solid var(--paper);
  box-shadow: var(--shadow-2);
}
.person h3 { margin-bottom: 0.15em; font-size: 1.25rem; }
.person__role { color: var(--coral); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; }
/* Bio fuellt den Raum -> Tags + E-Mail sitzen in jeder Karte unten auf gleicher Hoehe */
/* Feste Beschreibungshoehe (~3 Zeilen) -> alle Karten symmetrisch, Chips und
   E-Mail starten ueberall auf gleicher Hoehe, ohne grosse Fuell-Luecke */
.person__bio { color: var(--ink-2); font-size: 0.98rem; margin-top: 0.6rem; line-height: 1.6; min-height: 4.8em; }
.person__tags + .small, .person__bio + .small { margin-top: 0.9rem; }
.person__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; margin-top: 0.8rem; padding: 0; list-style: none; }

.chip {
  display: inline-block;
  padding: 0.25em 0.85em;
  border-radius: 999px;
  background: var(--petrol-tint);
  color: var(--petrol-deep);
  font-size: 0.9rem;
  font-weight: 600;
}
.chip--sand { background: var(--sand-2); color: var(--ink-2); }
.chip--filter {
  border: 1.5px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45em 1.2em;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.chip--filter:hover { border-color: var(--petrol); }
.chip--filter.is-active { background: var(--petrol); border-color: var(--petrol); color: #fff; }

/* Bewertungen ---------------------------------------------------------------- */

/* Zentrierte Sektion mit EINER Rezension, die automatisch durchwechselt. */
.reviews { text-align: center; }
.reviews__head { display: flex; flex-direction: column; align-items: center; }
.reviews__head .eyebrow { justify-content: center; }
.reviews__head h2 { margin: 0.35rem 0 1rem; }
.reviews__badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.5rem 1.15rem;
  box-shadow: var(--shadow-1); font-size: 0.9rem;
  color: var(--ink); text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.reviews__badge:hover { color: var(--ink); box-shadow: var(--shadow-2); transform: translateY(-1px); }
.reviews__badge-logo { display: grid; place-items: center; flex: none; }
.reviews__badge strong { font-family: var(--font-head); font-size: 1.2rem; line-height: 1; }
.reviews__badge .star { width: 16px; height: 16px; }
.reviews__badge .star--on { color: var(--gold); }
.reviews__badge-meta { color: var(--ink-3); }

.reviews__stage {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: clamp(1.5rem, 3vw, 2.3rem);
}
.reviews__viewport { position: relative; flex: 1; min-height: 300px; }
.reviews__slide {
  position: absolute; inset: 0; margin: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 1.1rem;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  /* Ausgehende Folie blendet sofort aus ... */
  transition: opacity 0.4s var(--ease-out-soft), transform 0.4s var(--ease-out-soft);
}
/* ... eingehende erst nach kurzer Verzoegerung ein -> kein Text-Ueberlappen */
.reviews__slide.is-active {
  opacity: 1; transform: none; pointer-events: auto;
  transition: opacity 0.5s var(--ease-out-soft) 0.34s, transform 0.5s var(--ease-out-soft) 0.34s;
}
.reviews__slide .stars { display: inline-flex; gap: 0.15rem; }
.reviews__slide .star { width: 20px; height: 20px; }
.reviews__slide .star--on { color: var(--gold); }
.reviews__quote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 1rem + 0.75vw, 1.55rem);
  line-height: 1.42; color: var(--ink); max-width: 720px; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.reviews__author { display: flex; align-items: center; gap: 0.85rem; margin-top: 0.3rem; }
.reviews__author img, .reviews__avatar-initial {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none;
}
.reviews__avatar-initial {
  display: grid; place-items: center;
  background: var(--petrol); color: #fff; font-weight: 600; font-family: var(--font-head);
}
.reviews__author > span { display: flex; flex-direction: column; text-align: left; }
.reviews__author strong { font-size: 1rem; line-height: 1.3; }
.reviews__author small { color: var(--ink-3); font-size: 0.9rem; }

.reviews__nav {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper); color: var(--petrol);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.reviews__nav:hover { background: var(--petrol); color: #fff; transform: translateY(-1px); }
.reviews__nav .icon { width: 20px; height: 20px; }
.reviews__nav--prev .icon { transform: scaleX(-1); }

.reviews__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.7rem; }
.reviews__dot {
  position: relative;
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--line);
  transition: background 0.25s ease, width 0.25s ease;
}
/* Groessere unsichtbare Tap-Flaeche: die 8px-Punkte waren auf dem Handy kaum
   zu treffen. */
.reviews__dot::before { content: ''; position: absolute; inset: -12px; }
.reviews__dot.is-active { background: var(--coral); width: 24px; }

.reviews__all { margin-top: 1.6rem; }
.reviews__all a { display: inline-flex; align-items: center; gap: 0.4em; font-weight: 500; }
.reviews__all .icon { width: 16px; height: 16px; }

@media (max-width: 620px) {
  /* Pfeile nicht mehr als Overlay ueber dem Text, sondern als eigene Reihe
     UNTER der Bewertung (Wischen bleibt zusaetzlich moeglich). Per Flex-Wrap:
     Viewport nimmt die erste Zeile voll ein, beide Pfeile rutschen darunter. */
  .reviews__stage {
    position: relative; gap: 0.9rem;
    flex-wrap: wrap; justify-content: center; align-items: flex-start;
  }
  .reviews__viewport {
    order: 0; flex: 1 1 100%; min-height: 320px; padding-inline: 0;
  }
  .reviews__nav {
    order: 1; position: static; transform: none; margin: 0;
    display: grid; width: 44px; height: 44px;
    background: var(--paper); color: var(--petrol); box-shadow: var(--shadow-2);
  }
  .reviews__nav--next { order: 2; }
  .reviews__nav:hover, .reviews__nav:active { transform: none; background: var(--paper); color: var(--petrol); }
  .reviews__dots { gap: 0.75rem; margin-top: 1.2rem; }
}

/* Ablauf / Schritte ----------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem 2rem;
  counter-reset: schritt;
  list-style: none;
  padding: 0;
  margin-inline: auto;
  max-width: 1080px;
}
.steps li { counter-increment: schritt; position: relative; padding-top: 0.4rem; text-align: center; }
.steps li::before {
  content: counter(schritt, decimal-leading-zero);
  display: block;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--coral);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.steps h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.steps p { color: var(--ink-2); font-size: 0.98rem; margin: 0 auto; line-height: 1.6; min-height: 4.8em; max-width: 22ch; }

/* FAQ ------------------------------------------------------------------------ */

.faq-list { display: grid; gap: 0.9rem; max-width: 820px; margin-inline: auto; }
.faq {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--coral);
  line-height: 1;
  transition: transform 0.2s ease;
  flex: none;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 1.4rem 1.3rem; color: var(--ink-2); font-size: 0.98rem; }

/* CTA-Band --------------------------------------------------------------------- */

.cta-band {
  background: linear-gradient(135deg, var(--petrol-deep), var(--petrol));
  color: #fff;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.cta-band__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.cta-band__title { color: #fff; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); margin-bottom: 0.3em; }
.cta-band__text { color: rgba(255, 255, 255, 0.88); max-width: 55ch; margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Prose (Artikel, Rechtstexte) --------------------------------------------------- */

.prose { max-width: 760px; }
.prose h2 { margin-top: 2em; font-size: 1.7rem; }
.prose h3 { margin-top: 1.6em; }
.prose img { border-radius: var(--radius); margin-block: 1.8rem; }
.prose figure { margin: 1.8rem 0; }
.prose figcaption { font-size: 0.9rem; color: var(--ink-3); margin-top: 0.5rem; }
.prose blockquote {
  margin: 1.8rem 0;
  padding: 1.2rem 1.6rem;
  border-left: 4px solid var(--coral);
  background: var(--sand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head);
  font-size: 1.15rem;
}
.prose table { width: 100%; border-collapse: collapse; margin-block: 1.5rem; font-size: 0.98rem; }
.prose th, .prose td { text-align: left; padding: 0.7em 0.9em; border-bottom: 1px solid var(--line); }
.prose th { background: var(--sand); font-weight: 600; }
.prose ul li, .prose ol li { margin-bottom: 0.4em; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin-block: 2.5rem; }

.article-meta {
  display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center;
  color: var(--ink-3); font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Zweispalter -------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-2); width: 100%; object-fit: cover; }
.split__media--stack { position: relative; }
.split ul.checks { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.split ul.checks li { display: flex; gap: 0.7em; align-items: flex-start; }
.split ul.checks .icon { color: var(--ok); margin-top: 0.2em; width: 20px; height: 20px; }

/* Info-Boxen ----------------------------------------------------------------------- */

.notice {
  display: flex; gap: 0.9rem;
  background: var(--petrol-tint);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  font-size: 0.98rem;
  margin-block: 1.4rem;
}
.notice .icon { color: var(--petrol); flex: none; margin-top: 0.15em; }
.notice--warn { background: var(--coral-soft); }
.notice--warn .icon { color: var(--coral); }

/* Fakten-Kacheln (Destination) */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-block: 1.5rem;
}
.fact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}
.fact small { display: block; color: var(--ink-3); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.fact strong { font-size: 1.05rem; }

/* Formulare ---------------------------------------------------------------------- */

.form-grid { display: grid; gap: 1.1rem; }
.form-grid--2 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.75em 1em;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--petrol);
  outline-offset: 1px;
  border-color: var(--petrol);
}
.field--check { display: flex; gap: 0.6em; align-items: flex-start; font-size: 0.9rem; color: var(--ink-2); }
.field--check input { width: auto; margin-top: 0.3em; }

/* Embed-Gate (DSGVO-freundliches Nachladen von Dritt-Widgets) ----------------------- */

.embed-gate {
  background: var(--sand);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
}
.embed-gate .icon--lg { color: var(--petrol); margin-inline: auto; }
.embed-gate h3 { margin-top: 0.8rem; }
.embed-gate p { color: var(--ink-2); max-width: 55ch; margin-inline: auto; }
.embed-gate small { display: block; color: var(--ink-3); margin-top: 0.8rem; font-size: 0.9rem; }
.embed-frame { width: 100%; min-height: 720px; border: 0; border-radius: var(--radius); background: #fff; }
.embed-frame--compact { min-height: 560px; }

/* Karte / Kontakt ---------------------------------------------------------------- */

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); }
.map-embed iframe, .map-embed img { width: 100%; min-height: 380px; object-fit: cover; border: 0; display: block; }

.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.contact-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-1);
}
.contact-card .icon { color: var(--petrol); width: 28px; height: 28px; margin-bottom: 0.8rem; }
.contact-card h3 { font-size: 1.1rem; }
.contact-card p { color: var(--ink-2); font-size: 0.98rem; }

/* Öffnungszeiten-Tabelle */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.hours-table td { padding: 0.5em 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 600; }

/* Newsletter ----------------------------------------------------------------------- */

.newsletter-strip { background: var(--sand-2); }
.newsletter-strip__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 2.4rem;
}
.newsletter-strip h2 { font-size: 1.5rem; margin: 0 0 0.2em; }
.newsletter-strip p { margin: 0; color: var(--ink-2); }
.newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  min-width: min(300px, 70vw);
  padding: 0.75em 1.1em;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font: inherit;
}

/* Footer ----------------------------------------------------------------------------- */

.site-footer {
  background: var(--petrol-dark);
  color: #b9cdca;
  font-size: 0.98rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 0.5rem; color: #fff; font-family: var(--font-head); font-size: 1.3rem; }
.footer-claim { font-family: var(--font-head); color: var(--gold); margin-top: -0.4rem; }
.brand-logo--footer { width: 42px; height: auto; }
.footer-col address p { display: flex; align-items: center; gap: 0.5em; margin-bottom: 0.4em; }
.footer-heading { color: #fff; font-weight: 600; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.site-footer a { color: #d5e3e0; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-hours { font-size: 0.9rem; }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; margin: 0; padding: 0; }

/* Kontakt-Widget + Cookie-Hinweis ------------------------------------------- */

.contact-widget {
  position: fixed; z-index: 46;
  --cw-bottom: 1.2rem; --cw-right: 1.2rem;
  right: var(--cw-right); bottom: var(--cw-bottom);
}
/* Steht der Cookie-Balken, hebt sich das Widget darueber (Balkenhoehe per JS) */
body.cookie-open .contact-widget { bottom: calc(var(--cw-bottom) + var(--cookie-h, 120px)); }
/* Nie ueber dem geoeffneten Mobil-Menue schweben */
body.nav-open .contact-widget, body.nav-open .cookie { display: none; }

/* Launcher */
.contact-widget__launcher {
  position: relative; z-index: 2;
  width: 60px; height: 60px; border-radius: 50%;
  border: 0; padding: 0; cursor: pointer;
  background: var(--petrol); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(7, 34, 39, 0.32);
  transition: transform 0.18s var(--ease-out-soft), background 0.2s ease;
}
.contact-widget__launcher:hover { transform: translateY(-2px) scale(1.03); background: var(--petrol-deep); color: #fff; }
.contact-widget__launcher:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.contact-widget__launcher-icon {
  grid-area: 1 / 1; display: grid; place-items: center;
  transition: opacity 0.18s ease, transform 0.25s var(--ease-out-soft);
}
.contact-widget__launcher-icon--close { opacity: 0; transform: rotate(-45deg) scale(0.7); }
.contact-widget.is-open .contact-widget__launcher-icon--chat { opacity: 0; transform: rotate(45deg) scale(0.7); }
.contact-widget.is-open .contact-widget__launcher-icon--close { opacity: 1; transform: none; }
.contact-widget__dot {
  position: absolute; top: 3px; right: 3px;
  width: 13px; height: 13px; border-radius: 50%;
  background: #34c759; border: 2.5px solid var(--petrol);
}
.contact-widget.is-open .contact-widget__dot { opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
  .contact-widget:not(.is-open) .contact-widget__dot { animation: cw-pulse 2.6s ease-in-out infinite; }
}
@keyframes cw-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(52, 199, 89, 0); }
}

/* Begruessungsblase (nur erster Besuch) */
.contact-widget__greeting {
  position: absolute; right: 0; bottom: calc(100% + 0.9rem);
  width: min(19rem, calc(100vw - 2.4rem));
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-2); padding: 1rem 1.1rem;
  font-size: 0.96rem; line-height: 1.5; cursor: pointer;
  animation: cw-pop 0.35s var(--ease-out-soft);
}
.contact-widget__greeting p { margin: 0; padding-right: 0.8rem; }
.contact-widget__greeting::after {
  content: ''; position: absolute; right: 22px; bottom: -7px;
  width: 14px; height: 14px; background: var(--paper);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}
.contact-widget__greeting-close {
  position: absolute; top: 0.4rem; right: 0.4rem;
  width: 26px; height: 26px; border: 0; background: transparent;
  color: var(--ink-3); cursor: pointer; display: grid; place-items: center; border-radius: 50%;
}
.contact-widget__greeting-close:hover { background: var(--sand); color: var(--ink); }

/* Panel */
.contact-widget__panel {
  position: absolute; right: 0; bottom: calc(100% + 0.9rem);
  width: min(22rem, calc(100vw - 2.4rem));
  max-height: min(78vh, 640px); overflow-y: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 24px 60px rgba(7, 34, 39, 0.28);
  transform-origin: bottom right;
  animation: cw-pop 0.3s var(--ease-out-soft);
}
.contact-widget__header {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 1.25rem 1.25rem 0.95rem;
  background: linear-gradient(135deg, var(--petrol), var(--petrol-deep)); color: #fff;
}
.contact-widget__title { margin: 0 0 0.25rem; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: #fff; }
.contact-widget__sub { margin: 0; font-size: 0.88rem; line-height: 1.45; color: rgba(255, 255, 255, 0.85); }
.contact-widget__close {
  flex: none; width: 32px; height: 32px; margin: 0;
  border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.14); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: background 0.2s ease;
}
.contact-widget__close .icon { width: 18px; height: 18px; display: block; }
.contact-widget__close:hover { background: rgba(255, 255, 255, 0.28); color: #fff; }

.cw-channels { padding: 0.7rem; display: flex; flex-direction: column; gap: 0.25rem; }
.cw-channel {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.6rem 0.65rem; border-radius: 14px; text-decoration: none; color: var(--ink);
  transition: background 0.16s ease;
}
.cw-channel:hover { background: var(--sand); color: var(--ink); }
.cw-channel__icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: #fff; background: var(--petrol);
}
.cw-channel__icon .icon { width: 22px; height: 22px; }
.cw-channel__icon--whatsapp { background: #25d366; }
.cw-channel__icon--petrol { background: var(--petrol); }
.cw-channel__icon--coral { background: var(--coral); }
.cw-channel__text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.cw-channel__label { font-weight: 600; }
.cw-channel__meta { font-size: 0.85rem; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cw-channel__go { flex: none; margin-left: auto; color: var(--ink-3); opacity: 0; transform: translateX(-4px); transition: opacity 0.16s ease, transform 0.16s ease; }
.cw-channel:hover .cw-channel__go { opacity: 1; transform: none; }

.cw-social {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.85rem 1.25rem; border-top: 1px solid var(--line);
}
.cw-social__label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-3); text-transform: uppercase; }
.cw-social__links { display: flex; gap: 0.5rem; margin-left: auto; }
.cw-social__link {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-2); background: var(--paper);
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.cw-social__link .icon { width: 19px; height: 19px; }
.cw-social__link:hover { transform: translateY(-2px); }
.cw-social__link--ig:hover { color: #e1306c; border-color: #e1306c; }
.cw-social__link--fb:hover { color: #1877f2; border-color: #1877f2; }
.cw-social__link--msg:hover { color: #0084ff; border-color: #0084ff; }

.cw-hours {
  display: flex; align-items: flex-start; gap: 0.5rem; margin: 0;
  padding: 0.7rem 1.25rem 1rem; font-size: 0.82rem; line-height: 1.45; color: var(--ink-3);
}
.cw-hours .icon { flex: none; margin-top: 0.15rem; }
/* Zeit-Text auf zwei ausgewogene Zeilen umbrechen, damit nie ein einzelnes
   "Uhr" allein in der zweiten Zeile steht. */
.cw-hours span { text-wrap: balance; }

@keyframes cw-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

/* Cookie-Hinweis */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--petrol-dark); color: #eaf1ef;
  box-shadow: 0 -8px 30px rgba(7, 34, 39, 0.25);
  transform: translateY(100%); transition: transform 0.32s var(--ease-out-soft);
}
.cookie.is-in { transform: none; }
.cookie__inner {
  display: flex; align-items: center; gap: 1rem 2rem; flex-wrap: wrap;
  padding-block: 0.9rem;
}
.cookie__text { margin: 0; font-size: 0.9rem; line-height: 1.5; flex: 1 1 320px; }
.cookie__text a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cookie__text a:hover { color: var(--gold); }
.cookie__actions { flex: none; display: flex; gap: 0.6rem; margin-left: auto; }
.cookie .btn { padding: 0.6em 1.6em; font-size: 0.95rem; }

@media (max-width: 760px) {
  .contact-widget { --cw-bottom: 0.9rem; --cw-right: 0.9rem; }
  .contact-widget__launcher { width: 54px; height: 54px; }
  .cookie__inner { gap: 0.7rem; padding-block: 0.85rem; }
  .cookie__actions { width: 100%; }
  .cookie .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-widget__panel, .contact-widget__greeting { animation: none; }
  .cookie { transition: none; }
}

/* Traumurlaub-Finder --------------------------------------------------------------------- */

.finder {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  max-width: 860px;
  margin-inline: auto;
}
.finder__progress {
  height: 6px; background: var(--sand-2); border-radius: 3px; overflow: hidden;
  margin-bottom: 1.8rem;
}
.finder__progress span { display: block; height: 100%; background: var(--coral); border-radius: 3px; transition: width 0.3s ease; width: 0; }
.finder__question h2 { font-size: 1.5rem; }
.finder__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.finder__option {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
/* Hover nur auf Geraeten mit echtem Zeiger. Auf Touch bleibt der Hover-Zustand
   sonst am zuletzt getippten Punkt "kleben": Die naechste Frage rendert eine
   neue Option an derselben Bildschirmposition, die dann faelschlich
   hervorgehoben aussieht. */
@media (hover: hover) and (pointer: fine) {
  .finder__option:hover { border-color: var(--petrol); background: var(--petrol-tint); }
}
.finder__option.is-selected { border-color: var(--petrol); background: var(--petrol-tint); box-shadow: inset 0 0 0 1px var(--petrol); }
.finder__option .icon { color: var(--petrol); }
.finder__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.finder__result-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); }
.finder__result-card img { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; }
.finder__result-body { padding: 1.4rem; }
.finder__match {
  display: inline-block; background: var(--ok); color: #fff;
  font-size: 0.82rem; font-weight: 700; padding: 0.2em 0.8em; border-radius: 999px;
  margin-bottom: 0.6rem;
}
.finder__results { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; margin-top: 1.6rem; }

/* Kundenportal (Demo) ---------------------------------------------------------------------- */

.portal-shell { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; }
@media (max-width: 860px) { .portal-shell { grid-template-columns: 1fr; } }
.portal-nav {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.8rem; position: sticky; top: 100px;
  display: grid; gap: 0.2rem;
}
.portal-nav button {
  display: flex; align-items: center; gap: 0.7rem;
  width: 100%; text-align: left;
  padding: 0.7em 0.9em;
  background: none; border: 0; border-radius: var(--radius-sm);
  font: inherit; font-weight: 500; color: var(--ink);
  cursor: pointer;
}
.portal-nav button:hover { background: var(--sand); }
.portal-nav button.is-active { background: var(--petrol); color: #fff; }
.portal-nav button.is-active .icon { color: var(--gold); }
.portal-panel { display: none; }
.portal-panel.is-active { display: block; }
.portal-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-1); margin-bottom: 1.2rem;
}
.portal-card h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1.15rem; }
.portal-card h3 .icon { color: var(--petrol); }

.doc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.doc-list li {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--sand); border-radius: var(--radius-sm);
  font-size: 0.98rem;
}
.doc-list .icon { color: var(--petrol); }
.doc-list a { margin-left: auto; font-weight: 600; text-decoration: none; font-size: 0.9rem; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.checklist label {
  display: flex; gap: 0.8rem; align-items: center;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  cursor: pointer; font-size: 0.98rem;
  transition: background 0.15s ease;
}
.checklist label:hover { background: var(--sand); }
.checklist input:checked ~ span { text-decoration: line-through; color: var(--ink-3); }

.flight-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.flight-row:last-child { border-bottom: 0; }
.flight-row strong { font-size: 1.2rem; font-family: var(--font-head); }
.flight-row small { color: var(--ink-3); display: block; }
.flight-row .icon { color: var(--petrol); }

.weather-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 0.8rem; }
.weather-day {
  text-align: center; background: var(--sand); border-radius: var(--radius-sm);
  padding: 0.9rem 0.5rem; font-size: 0.9rem;
}
.weather-day .icon { margin-inline: auto; color: var(--gold); width: 28px; height: 28px; }
.weather-day strong { display: block; font-size: 1.1rem; }
.weather-day small { color: var(--ink-3); }

.login-card {
  max-width: 440px; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-2); padding: clamp(1.8rem, 4vw, 2.6rem);
}

/* Utilities -------------------------------------------------------------------------------- */

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)); gap: 2rem; }
.muted { color: var(--ink-3); }
.small { font-size: 0.9rem; }
.center-cta { text-align: center; margin-top: 2.5rem; }

.badge-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }

/* Animationen ------------------------------------------------------------------------------ */

@media (prefers-reduced-motion: no-preference) {
  /* Reveal-on-Scroll: nur opacity + transform (compositor-sicher, 60fps).
     Lang und weich fuer ein ruhiges, immersives Gleiten statt Pop; spielt
     bei jedem Scroll neu. */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.66s var(--ease-out-soft),
      transform 0.72s var(--ease-out-soft);
    transition-delay: calc(var(--reveal-i, 0) * 60ms);
    will-change: opacity, transform;
  }
  .reveal.is-visible { opacity: 1; transform: none; }

  /* Hero-Inhalte sequenziell einblenden beim Laden (einmalig) */
  .hero__content > * { animation: heroIn 1s var(--ease-out-soft) both; }
  .hero__content > h1 { animation-delay: 0.12s; }
  .hero__content > .hero__lede { animation-delay: 0.32s; }
  .hero__content > .hero__actions { animation-delay: 0.48s; }
  .hero__bar { animation: heroIn 1.1s var(--ease-out-soft) both; animation-delay: 0.6s; }

  /* Serifen-Headline mit einmaligem Blur-in als edler Akzent (nur hier) */
  .hero h1 { animation: heroInBlur 1.1s var(--ease-out-soft) both; animation-delay: 0.12s; }
}

/* Reduced Motion: alles sofort sichtbar, keine Bewegung */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroInBlur {
  from { opacity: 0; filter: blur(8px); transform: translateY(20px); }
  to { opacity: 1; filter: blur(0); transform: none; }
}

@media print {
  .topbar, .site-header, .contact-widget, .cookie, .site-footer, .cta-band { display: none; }
}
