@charset "UTF-8";
/* =====================================================================
   Kolibri Oasis Escape – Hauptstylesheet
   Aufbau: 1) Tokens  2) Reset/Basis  3) Layout  4) Buttons
           5) Header/Nav  6) Sprachumschalter  7) Footer
           8) Startseite (Hero, About, Amenities, Escape, Galerie, Kontakt)
           9) Responsive
   ===================================================================== */

/* ── 1) Design-Tokens ────────────────────────────────────────────── */
:root {
    --gold:      #ffb701;
    --gold-dark: #e9a600;
    --ink:       #0f172a; /* dunkles Navy: Texte, dunkle Flächen */
    --teal-top:  #1c6f7e;
    --teal-bot:  #cbe6ea;
    --cream:     #fbf3da;
    --taupe:     #837a6b;
    --slate:     #5b6770;
    --text:      #2b2b2b;
    --muted:     #6b7280;
    --line:      #e5e7eb;
    --white:     #ffffff;

    --font-head: 'Quicksand', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --container: 1200px;
    --radius:    6px;
    --shadow:    0 10px 30px rgba(0, 0, 0, .12);
    --header-h:  150px;
}

/* ── 2) Reset / Basis ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 .5em;
    color: var(--ink);
}

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--ink); color: #fff; padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Für Screenreader/SEO sichtbar, optisch verborgen (z. B. zusätzliche h1) */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ── 3) Layout ───────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section { padding-block: clamp(3rem, 7vw, 6rem); }

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
}

main { display: block; }

/* ── 4) Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .85em 1.6em;
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
}
.btn--primary { background: var(--gold); color: var(--ink); }
.btn--primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn--teal { background: var(--teal-top); color: #fff; }
.btn--teal:hover { background: #16606d; transform: translateY(-2px); }

/* ── 5) Header / Navigation ──────────────────────────────────────── */
.header { width: 100%; z-index: 100; }

.header__bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding-block: 1rem;
}

.header__logo { grid-column: 2; justify-self: center; }
.header__logo img { width: 110px; height: auto; }

.header__right { grid-column: 3; justify-self: end; }

/* Navigation (Desktop) */
.nav { display: flex; justify-content: center; padding-bottom: 1rem; }
.nav__list { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem, 3vw, 2.2rem); }
.nav__link {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: .95rem;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color .2s ease, color .2s ease;
}
.nav__link:hover { border-color: currentColor; }
.nav__link.is-active { border-color: currentColor; }
.nav__mobile-extra { display: none; }

/* Hamburger */
.nav-toggle {
    grid-column: 1;
    justify-self: start;
    display: none;
    width: 44px; height: 44px;
    background: none; border: 0; cursor: pointer;
    padding: 10px;
    color: inherit; /* <button> erbt color nicht automatisch → Farbe vom Header übernehmen */
}
.nav-toggle__box { position: relative; display: block; width: 24px; height: 2px; }
.nav-toggle__inner,
.nav-toggle__inner::before,
.nav-toggle__inner::after {
    position: absolute; left: 0; width: 24px; height: 2px;
    background: currentColor; transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle__inner { top: 50%; }
.nav-toggle__inner::before { content: ''; top: -8px; }
.nav-toggle__inner::after  { content: ''; top: 8px; }
body.nav-open .nav-toggle__inner { background: transparent; }
body.nav-open .nav-toggle__inner::before { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle__inner::after  { transform: translateY(-8px) rotate(-45deg); }

/* Header-Typ 1: Startseite – transparent über Hero, helle Schrift */
.header--main {
    position: absolute; inset: 0 0 auto 0;
    color: var(--white);
}

/* Header-Typ 2: Unterseiten – Türkis-Verlauf, dunkle Schrift */
.header--sub {
    position: relative; /* Stacking-Context nötig damit z-index bei nav-open greift */
    background: linear-gradient(180deg, var(--teal-top) 0%, var(--teal-bot) 100%);
    color: var(--ink);
}
.header--sub .nav__link.is-active { border-color: var(--ink); }

/* ── 6) Sprachumschalter (fixe Lasche rechts, knapp über dem Fuss) ─ */
.lang {
    position: fixed;
    bottom: 5rem; right: 0;
    z-index: 90;
    font-family: var(--font-body);
}
.lang__current {
    display: flex; align-items: center; gap: .5rem;
    background: var(--white); color: var(--ink);
    border: 1px solid var(--line); border-right: 0;
    border-radius: 8px 0 0 8px;
    box-shadow: var(--shadow);
    padding: .55rem .8rem; cursor: pointer;
    font-size: .85rem;
}
.lang__caret { width: 14px; height: 14px; transition: transform .2s ease; }
.lang[aria-open="true"] .lang__caret { transform: rotate(180deg); }
.lang__menu {
    position: absolute; right: 0; bottom: calc(100% + 6px);
    background: var(--white); border: 1px solid var(--line);
    border-radius: 8px; box-shadow: var(--shadow);
    padding: .35rem; min-width: 160px;
    display: none;
}
.lang[aria-open="true"] .lang__menu { display: block; }
.lang__option {
    display: flex; align-items: center; gap: .5rem;
    padding: .5rem .6rem; border-radius: 6px; font-size: .85rem;
}
.lang__option:hover { background: #f3f4f6; }
.lang__flag { font-size: 1.05rem; line-height: 1; }
/* Flaggen als Unicode-Escapes (encoding-unabhängig, kein Mojibake auf dem Server) */
.lang__flag--de::before { content: '\01F1E9\01F1EA'; } /* 🇩🇪 */
.lang__flag--en::before { content: '\01F1EC\01F1E7'; } /* 🇬🇧 */
.lang__flag--es::before { content: '\01F1EA\01F1F8'; } /* 🇪🇸 */
.lang__flag--nl::before { content: '\01F1F3\01F1F1'; } /* 🇳🇱 */
.lang__flag--fr::before { content: '\01F1EB\01F1F7'; } /* 🇫🇷 */
.lang__flag--pt::before { content: '\01F1F5\01F1F9'; } /* 🇵🇹 */

/* ── 7) Social-Icons + Footer ────────────────────────────────────── */
.social { display: flex; gap: .6rem; }
.social__link {
    display: grid; place-items: center;
    width: 38px; height: 38px; border-radius: 9px;
    color: #fff; transition: transform .2s ease, filter .2s ease;
}
.social__link svg { width: 20px; height: 20px; }
.social__link:hover { transform: translateY(-2px); filter: brightness(1.08); }
.social__link--fb { background: #1877f2; }
.social__link--ig { background: #111; }
.social__link--wa { background: #25d366; }

.footer { border-top: 1px solid var(--line); padding-block: 1.6rem; }
.footer__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
}
.footer__copy { margin: 0; color: var(--muted); font-size: .9rem; text-align: center; }
.footer__agb { color: var(--muted); font-size: .9rem; }
.footer__agb:hover { color: var(--ink); text-decoration: underline; }

/* Scroll-to-Top-Button */
.scroll-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 95;
    width: 46px; height: 46px; border: 0; border-radius: 50%;
    background: var(--gold); color: var(--ink); cursor: pointer;
    display: grid; place-items: center; box-shadow: var(--shadow);
    opacity: 0; transform: translateY(12px); pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, background-color .2s ease;
}
.scroll-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--gold-dark); }
.scroll-top svg { width: 24px; height: 24px; }

/* ── 8) Startseite ───────────────────────────────────────────────── */

/* Hero */
.hero {
    position: relative;
    min-height: 88vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    padding: calc(var(--header-h) + 2rem) 1rem 4rem;
    background: url('../img/hero-section-banner.jpg') center/cover no-repeat;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(0, 0, 0, .35);
}
.hero__inner { position: relative; max-width: 760px; }
.hero__title { color: #fff; font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: .3em; }
.hero__subtitle { font-family: var(--font-head); font-size: clamp(1rem, 2.2vw, 1.3rem); margin-bottom: 1.6em; }

/* About */
.about { text-align: center; }
.about__intro { max-width: 720px; margin: 0 auto 3rem; color: var(--muted); }
.about__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem); align-items: center;
    text-align: left;
}
.about__img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.about__heading { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.about__lead { font-weight: 600; color: var(--ink); }
.about__text { color: var(--muted); }

/* Amenities (cream) */
.amenities { background: var(--cream); padding-block-start: clamp(1.5rem, 3.5vw, 3rem); }
.amenities__icons {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem; margin-bottom: 3rem;
}
.amenity { text-align: center; display: flex; flex-direction: column; align-items: center; }
.amenity__icon { height: 46px; margin-top: auto; margin-bottom: .6rem; }
.amenity__icon[src*="jetski"],
.amenity__icon[src*="boat"]  { height: 60px; }
.amenity__label { font-size: .82rem; color: var(--ink); margin: 0; }

/* Platzhalter-Karten (Theme-Reste) – Hintergrundbild mit Schattierung */
.feature-cards {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.feature-card {
    position: relative;
    min-height: 190px; border-radius: 4px; overflow: hidden;
    background-size: cover; background-position: center;
    display: grid; place-items: center; text-align: center;
}
.feature-card::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(20, 16, 6, .55);
    transition: background-color .3s ease;
}
.feature-card:hover::before { background: rgba(20, 16, 6, .35); }
.feature-card h3 { position: relative; color: #fff; font-size: 1.3rem; margin: 0; }

/* Escape (Parallax-Hintergrund) */
.escape {
    position: relative;
    background: url('../img/hero-section-banner.jpg') center/cover no-repeat fixed;
    color: #fff;
}
.escape::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(28, 35, 30, .6);
}
.escape__grid {
    position: relative;
    display: grid; grid-template-columns: 2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.escape__title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.escape__text { color: rgba(255, 255, 255, .9); }
.escape__cta { justify-self: start; }

/* Galerie / Slider */
.gallery { padding-block: clamp(2rem, 5vw, 4rem); }
.slider { position: relative; max-width: 1100px; margin-inline: auto; }
.slider__track {
    display: grid; grid-auto-flow: column;
    grid-auto-columns: calc((100% - 3rem) / 4);
    gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; padding-bottom: .5rem;
    scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__slide { scroll-snap-align: start; }
.slider__slide img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); }
.slider__btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255, 255, 255, .9); border: 0; cursor: pointer;
    display: grid; place-items: center; box-shadow: var(--shadow);
    font-size: 1.2rem; color: var(--ink);
}
.slider__btn--prev { left: -8px; }
.slider__btn--next { right: -8px; }

/* Kontakt */
.contact__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.contact-form {
    background: var(--ink); color: #fff;
    padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius);
}
.contact-form h2 { color: #fff; }
.contact-form .field { margin-bottom: 1rem; }
.contact-form input,
.contact-form textarea {
    width: 100%; padding: .8rem 1rem;
    background: transparent; color: #fff;
    border: 1px solid rgba(255, 255, 255, .3); border-radius: var(--radius);
    font-family: inherit; font-size: 1rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 255, 255, .6); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact__text { text-align: center; }
.contact__text-inner { max-width: 460px; margin-inline: auto; color: var(--muted); }
.contact__or { display: block; margin: 1.2rem 0; font-weight: 600; color: var(--ink); }
.form-status { font-size: .9rem; margin-top: .5rem; min-height: 1.2em; }
.form-status--error { color: #fca5a5; }
.form-status--ok { color: #86efac; }

/* Honeypot-Feld: für echte Nutzer komplett unsichtbar */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px; overflow: hidden;
}
.form-recaptcha-note { font-size: .72rem; color: rgba(255, 255, 255, .55); margin: .8rem 0 0; }
.form-recaptcha-note a { color: rgba(255, 255, 255, .8); text-decoration: underline; }

/* Aktions-Zeile: Senden-Button + reCAPTCHA-Badge nebeneinander */
.form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.recaptcha-slot { display: inline-flex; align-items: center; min-height: 60px; }

/* reCAPTCHA-Badge standardmässig versteckt; im Slot inline sichtbar machen */
.grecaptcha-badge { visibility: hidden; }
.recaptcha-slot .grecaptcha-badge {
    position: static !important;
    visibility: visible !important;
    box-shadow: none !important;
    margin: 0 !important;
}

/* ── 8a) Seiten-Lead (zentrierte Überschrift für schlanke Seiten) ── */
.page-lead { min-height: 50vh; display: grid; place-items: center; }
.page-lead__title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
}

/* ── 8b) Seite: Zimmer ───────────────────────────────────────────── */
/* Info-Boxen (Ausstattung / Küche) */
.info-boxes__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.info-box {
    background: #eef4f5;
    border-radius: var(--radius);
    padding: clamp(1.5rem, 3vw, 2.5rem);
}
.info-box__title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 1.2rem; }
.info-box__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }
.info-list { display: flex; flex-direction: column; gap: .7rem; }
.info-list li { color: var(--ink); font-size: .98rem; word-spacing: .15em; }

/* Zimmer-Karten */
.rooms { background: var(--cream); }
.rooms__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
.room-card {
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden;
}
.room-card__media { position: relative; }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.room-card__price {
    position: absolute; left: 0; bottom: 0;
    background: var(--ink); color: #fff;
    font-family: var(--font-head); font-size: .9rem;
    padding: .55rem 1rem;
}
.room-card__body {
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
    display: flex; flex-direction: column; align-items: flex-start; gap: .8rem;
}
.room-card__title { font-size: 1.5rem; margin: 0; }
.room-card__desc { color: var(--muted); margin: 0; flex: 1; font-style: italic; }

/* Zimmer-Übersicht (Kachel-Raster, oben auf der Zimmer-Seite) */
.rooms-teaser__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.room-teaser {
    position: relative;
    min-height: 190px; border-radius: 4px; overflow: hidden;
    background-size: cover; background-position: center;
    display: grid; place-items: center; text-align: center;
    text-decoration: none;
}
.room-teaser::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(20, 16, 6, .45);
    transition: background-color .3s ease;
}
.room-teaser:hover::before { background: rgba(20, 16, 6, .25); }
.room-teaser__label {
    position: relative; color: #fff;
    font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
}

/* Zimmer-Detailseite */
.room-detail__back {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--teal-top); font-weight: 600; text-decoration: none;
}
.room-detail__back:hover { color: var(--gold-dark); }

.room-detail__head {
    display: flex; flex-wrap: wrap; align-items: flex-start;
    justify-content: space-between; gap: 1rem;
    margin-top: 1rem;
}
.room-detail__title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 .3em; }
.room-detail__lead { color: var(--muted); font-style: italic; margin: 0; max-width: 46ch; }
.room-detail__price {
    background: var(--ink); color: #fff;
    font-family: var(--font-head); font-size: 1.05rem;
    padding: .6rem 1.1rem; border-radius: var(--radius); white-space: nowrap;
}

.room-detail__desc { max-width: 70ch; color: var(--text); font-size: 1.05rem; line-height: 1.7; }

.room-detail__footer {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 1.5rem;
}
.room-detail__switch { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.room-detail__switch a {
    color: var(--teal-top); font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: .4rem;
}
.room-detail__switch a:hover { color: var(--gold-dark); }

/* Zimmer-Detail: Foto-Galerie */
.room-gallery__stage {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); background: var(--ink);
    aspect-ratio: 16 / 9;
}
.room-gallery__slide {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; pointer-events: none;
}
.room-gallery__slide.is-active {
    opacity: 1; pointer-events: auto;
    animation-duration: .6s; animation-timing-function: ease;
}
.room-gallery__slide.enter-fade   { animation-name: gallery-fade; }
.room-gallery__slide.enter-left   { animation-name: gallery-from-right; }
.room-gallery__slide.enter-right  { animation-name: gallery-from-left; }
.room-gallery__slide.enter-up     { animation-name: gallery-from-bottom; }
.room-gallery__slide.enter-zoom   { animation-name: gallery-zoom; }

@keyframes gallery-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes gallery-from-right { from { opacity: 0; transform: translateX(4%); } to { opacity: 1; transform: translateX(0); } }
@keyframes gallery-from-left  { from { opacity: 0; transform: translateX(-4%); } to { opacity: 1; transform: translateX(0); } }
@keyframes gallery-from-bottom{ from { opacity: 0; transform: translateY(3%); } to { opacity: 1; transform: translateY(0); } }
@keyframes gallery-zoom       { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1); } }

.room-gallery__nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255, 255, 255, .9); border: 0; cursor: pointer;
    display: grid; place-items: center; box-shadow: var(--shadow);
    font-size: 1.4rem; color: var(--ink); line-height: 1;
}
.room-gallery__nav--prev { left: 12px; }
.room-gallery__nav--next { right: 12px; }

.room-gallery__play {
    position: absolute; right: 12px; bottom: 12px; z-index: 2;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255, 255, 255, .9); border: 0; cursor: pointer;
    display: grid; place-items: center; box-shadow: var(--shadow);
    color: var(--ink);
}
.room-gallery__play-icon,
.room-gallery__pause-icon { width: 18px; height: 18px; grid-area: 1 / 1; }
.room-gallery__play-icon  { margin-left: 2px; }
.room-gallery__pause-icon { display: none; }
.room-gallery__play[aria-pressed="true"] .room-gallery__play-icon  { display: none; }
.room-gallery__play[aria-pressed="true"] .room-gallery__pause-icon { display: block; }
.room-gallery__play { display: grid; }

.room-gallery__dots {
    display: flex; justify-content: center; gap: .5rem; margin-top: 1rem;
}
.room-gallery__dot {
    width: 10px; height: 10px; border-radius: 50%;
    border: 0; padding: 0; cursor: pointer;
    background: var(--line);
}
.room-gallery__dot.is-active { background: var(--teal-top); }

/* Frühstücks-Kachel */
.topic-card--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.topic-card--gold .curacao__h,
.topic-card--gold .info-list li,
.topic-card--gold .breakfast__lead,
.topic-card--gold .breakfast__sunday { color: var(--ink); }
.breakfast__lead { font-size: 1.05rem; margin-bottom: 1.2rem; }
.breakfast__sunday {
    display: flex; align-items: center; gap: .6rem;
    font-weight: 600; margin-top: .8rem; font-size: 1.02rem;
}
.breakfast__sunday img { height: 3rem; flex-shrink: 0; }

/* Frühstücks-Icon-Raster */
.bfst-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .6rem 1rem;
    margin: 1rem 0 1.4rem;
}
.bfst-item { text-align: center; }
.bfst-item__icon { height: 46px; margin: 0 auto .4rem; display: block; }
.bfst-item__label { font-size: .8rem; color: var(--ink); margin: 0; font-weight: 500; }

/* Ausstattungs-Icon-Raster (Zimmer + Küche) */
.equip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem .5rem;
    margin-top: .8rem;
}
.equip-item { text-align: center; }
.equip-item__icon { height: 42px; margin: 0 auto .3rem; display: block; }
.equip-item__label { font-size: .72rem; color: var(--ink); margin: 0; line-height: 1.3; }

/* ── 8c) Seite: Kontakt ──────────────────────────────────────────── */
.contact-page__intro {
    max-width: 640px; margin: 0 auto 3rem;
    text-align: center; color: var(--muted);
}

/* Web-App-Karte (hervorgehoben) */
.app-card {
    display: grid; grid-template-columns: auto 1fr; gap: 1.5rem;
    align-items: start;
    max-width: 720px; margin: 0 auto 3rem;
    background: #eef4f0; border: 1px solid var(--gold);
    border-radius: 14px; padding: clamp(1.5rem, 3vw, 2.5rem);
}
.app-card__icon { color: var(--gold-dark); }
.app-card__icon svg { width: 42px; height: 42px; }
.app-card__title { font-size: 1.4rem; margin-bottom: .5rem; }
.app-card__body p { color: var(--muted); }
.app-card__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }

/* Kontaktmethoden-Karten */
.contact-methods {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    max-width: 860px; margin: 0 auto;
}
.method-card {
    background: #eef4f0; border-radius: 12px;
    padding: 2rem 1.5rem; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.method-card__icon { color: var(--teal-top); }
.method-card__icon svg { width: 46px; height: 46px; }
.method-card__title { font-size: 1.4rem; margin: 0; }
.method-card__text { color: var(--muted); margin: 0; flex: 1; }
.method-card .btn { margin-top: .6rem; }

/* Adresse */
.contact-find { padding-top: 0; }
.contact-find__row {
    display: flex; gap: 2rem; align-items: stretch;
}
.address-card {
    background: #eef4f0; border-radius: 12px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    flex: 0 0 auto; width: min(360px, 100%);
}
.address-map {
    flex: 1 1 0; min-height: 280px; border-radius: 12px; overflow: hidden;
}
.address-map iframe { display: block; width: 100%; height: 100%; min-height: 280px; }
.address-card__line { margin: 0 0 1rem; color: var(--ink); }
.address-card__line a:hover { color: var(--gold-dark); }
.address-card .btn { margin-top: .5rem; }
@media (max-width: 680px) {
    .contact-find__row { flex-direction: column; }
    .address-map { min-height: 240px; }
}

/* ── 8d) Seite: Wo liegt Curaçao? ────────────────────────────────── */
.curacao__h { font-size: clamp(1.4rem, 3vw, 1.9rem); }

.curacao-lage {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center; margin-top: 2rem;
}
.curacao-lage__map img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

.bullet-list { list-style: disc; padding-left: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.bullet-list li { color: var(--muted); }

.curacao-music__intro { color: var(--muted); max-width: 820px; margin-bottom: 2rem; }
.music-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* Themen-Karten (cream) */
.topic-card { background: var(--cream); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); }
.topic-card .bullet-list { margin: 0 0 1rem; }
.topic-card__label { font-weight: 600; color: var(--ink); margin: 1rem 0 .6rem; }

.curacao-topics { display: block; }
.topic-card--wide { margin-bottom: 1.5rem; }
.topic-card--media-left,
.topic-card--media-right {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}
.topic-card--media-right .topic-card__media { order: 2; }
.topic-card__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.topic-card__content p { color: var(--muted); }

/* Pride-Variante: weicher Regenbogen-Verlauf (LGBTQ-Offenheit), Text auf weissem Panel */
.topic-card--pride {
    background: linear-gradient(120deg,
        #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787);
    padding: clamp(.6rem, 1.5vw, 1rem);
}
.topic-card--pride .topic-card__content {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 3vw, 2.2rem);
}

/* ── 8e) Seite: Jetzt buchen ─────────────────────────────────────── */
.booking__frame {
    margin-top: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}
/* Kein padding/border am iFrame selbst – siehe _pages/buchen.php.
   min-height ist nur die Starthöhe, bis die erste «bw:height»-Meldung
   eintrifft; main.js setzt sie danach auf 0 und schreibt die echte
   Inhaltshöhe direkt in style.height. */
.booking__frame iframe {
    display: block;
    width: 100%;
    min-height: 900px;
    border: 0;
    padding: 0;
}

/* ── 8f) Seite: AGB ──────────────────────────────────────────────── */
.agb__inner { max-width: 820px; text-align: center; }
.agb__company { color: var(--teal-top); font-family: var(--font-head); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; }
.agb__title { font-size: clamp(2rem, 5vw, 3rem); margin: .3em 0; }
.agb__valid { color: var(--muted); margin-bottom: 1.5rem; }
.agb__print { margin-bottom: 2.5rem; }

.accordion { text-align: left; }
.accordion__item { margin-bottom: 1rem; }
.accordion__head {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; cursor: pointer; border: 0;
    background: var(--teal-top); color: #fff;
    font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
    padding: 1.1rem 1.5rem; border-radius: 10px;
}
.accordion__chevron { width: 18px; height: 18px; transition: transform .25s ease; flex: none; }
.accordion__head[aria-expanded="true"] .accordion__chevron { transform: rotate(180deg); }
.accordion__panel { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .3s ease; }
.accordion__head[aria-expanded="true"] + .accordion__panel { grid-template-rows: 1fr; }
.accordion__body { min-height: 0; overflow: hidden; padding: 1.5rem .5rem 0; }

.agb__lead { color: var(--muted); margin-bottom: 1.5rem; }
.agb__group-title { font-size: 1.15rem; margin: 1.5rem 0 .6rem; color: var(--ink); }

.agb-table { width: 100%; border-collapse: collapse; margin-bottom: .5rem; }
.agb-table td { padding: .7rem .9rem; border: 1px solid var(--border, #d4e8e4); vertical-align: top; }
.agb-table__label { width: 34%; font-weight: 600; color: var(--ink); background: #f3f9f8; }
.agb-table__value { color: var(--text); }

/* ── 8g) Seite: Extras (JetSki) ─────────────────────────────────── */

/* Hero mit Video-Hintergrund */
.jetski-hero {
    position: relative;
    min-height: 88vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.jetski-hero__video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    /* Fallback: Posterframe wird angezeigt, solange kein Video vorhanden */
}
.jetski-hero__overlay {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, .45);
    display: grid; place-items: center;
    padding: calc(var(--header-h) + 2rem) 1rem 4rem;
}
.jetski-hero__inner { max-width: 760px; }
.jetski-hero__title {
    color: #fff;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    margin-bottom: .3em;
}
.jetski-hero__subtitle {
    font-family: var(--font-head);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    margin-bottom: 1.8em;
    color: rgba(255, 255, 255, .9);
}

/* Schnellfakten-Streifen */
.jetski-facts {
    background: var(--ink);
    color: #fff;
    padding-block: 1.8rem;
}
.jetski-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.jetski-fact { padding: .5rem; }
.jetski-fact__label {
    display: block;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .3em;
}
.jetski-fact__val {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
}

/* Einleitung */
.jetski-intro { background: var(--cream); }
.jetski-intro__inner { text-align: center; max-width: 820px; margin-inline: auto; }
.jetski-intro__text {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 760px;
    margin-inline: auto;
}

/* Feature-Karten */
.jetski-features { background: var(--white); }
.jetski-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.jetski-card {
    background: #eef4f5;
    border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2.2rem);
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.jetski-card__icon img {
    width: 52px; height: 52px;
    object-fit: contain;
}
.jetski-card__title { font-size: 1.1rem; margin: 0; }
.jetski-card__text { color: var(--muted); margin: 0; font-size: .95rem; }

/* Erleben-Sektion */
.jetski-exp { background: var(--cream); }
.jetski-exp__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.jetski-exp__media img {
    width: 100%; border-radius: var(--radius);
    box-shadow: var(--shadow); object-fit: cover;
    max-height: 460px;
}
.jetski-exp__title { font-size: clamp(1.5rem, 3vw, 2rem); }
.jetski-exp__copy p { color: var(--muted); margin-bottom: 1.5rem; }

/* FAQ */
.jetski-faq { background: var(--white); }
.jetski-faq__accordion { max-width: 820px; margin-inline: auto; margin-top: 2rem; }

/* CTA */
.jetski-cta {
    position: relative;
    background: url('../img/escape-bg.jpg') center/cover no-repeat fixed;
    color: #fff;
    text-align: center;
}
.jetski-cta::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(15, 25, 30, .65);
}
.jetski-cta__inner {
    position: relative;
    max-width: 720px; margin-inline: auto;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.jetski-cta__title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.jetski-cta__text { color: rgba(255, 255, 255, .85); margin: 0; font-size: 1.05rem; }

/* ── 8h) Seite: Umgebung ─────────────────────────────────────────── */

/* Hero mit Bild-Hintergrund */
.umg-hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.umg-hero__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
}
.umg-hero:hover .umg-hero__bg { transform: scale(1); }
.umg-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(15,25,30,.6) 0%, rgba(28,111,126,.45) 100%);
    display: grid; place-items: center;
    padding: calc(var(--header-h) + 2rem) 1rem 4rem;
}
.umg-hero__inner { max-width: 760px; }
.umg-hero__title {
    color: #fff;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    margin-bottom: .3em;
}
.umg-hero__subtitle {
    font-family: var(--font-head);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255,255,255,.88);
    margin: 0;
}

/* Schnellfakten-Streifen */
.umg-facts {
    background: var(--teal-top);
    color: #fff;
    padding-block: 1.8rem;
}
.umg-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.umg-fact { padding: .5rem; }
.umg-fact__label {
    display: block;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .3em;
}
.umg-fact__val {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
}

/* Einleitung */
.umg-intro { background: var(--cream); }
.umg-intro__inner { text-align: center; max-width: 820px; margin-inline: auto; }
.umg-intro__text {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 760px;
    margin-inline: auto;
}

/* Highlight-Karten */
.umg-highlights { background: var(--white); }
.umg-highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.umg-card {
    background: #eef4f5;
    border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2.2rem);
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: .7rem;
    border-top: 3px solid var(--teal-top);
}
.umg-card__icon img {
    width: 52px; height: 52px;
    object-fit: contain;
}
.umg-card__title { font-size: 1.1rem; margin: 0; color: var(--teal-top); }
.umg-card__text { color: var(--muted); margin: 0; font-size: .95rem; }

/* Auto / Mietwagen */
.umg-car { background: var(--cream); }
.umg-car__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.umg-car__media img {
    width: 100%; border-radius: var(--radius);
    box-shadow: var(--shadow); object-fit: cover;
    max-height: 460px;
}
.umg-car__icon-wrap img {
    width: 48px; height: 48px;
    object-fit: contain;
    margin-bottom: .5rem;
}
.umg-car__title { font-size: clamp(1.5rem, 3vw, 2rem); }
.umg-car__copy p { color: var(--muted); margin-bottom: 1.5rem; }

/* CTA */
.umg-cta {
    position: relative;
    background: url('../img/curacao-knip.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding-block: clamp(4rem, 9vw, 7rem);
}
.umg-cta::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(15, 23, 42, .62);
}
.umg-cta__inner {
    position: relative;
    max-width: 720px; margin-inline: auto;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.umg-cta__title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.umg-cta__text { color: rgba(255,255,255,.85); margin: 0; font-size: 1.05rem; }

/* ── YouTube Ambient Player ──────────────────────────────────── */
.yt-bar {
    position: fixed;
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: var(--teal-top);
    color: #fff;
    border-radius: 40px;
    padding: .55rem 1rem .55rem .7rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .28);
    white-space: nowrap;
    max-width: calc(100vw - 2rem);
    overflow: hidden;
    /* Hidden state: opacity + pointer-events (zuverlässiger als bottom:-90px auf Mobile) */
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
    transform: translateX(-50%) translateY(1rem);
}
.yt-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .yt-bar {
        bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
        font-size: .8rem;
        gap: .55rem;
        padding: .5rem .8rem .5rem .6rem;
    }
}
.yt-bar__play,
.yt-bar__close {
    flex-shrink: 0;
    background: rgba(255, 255, 255, .2);
    border: 0;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    transition: background .2s;
}
.yt-bar__play:hover  { background: rgba(255, 255, 255, .35); }
.yt-bar__close       { background: transparent; font-size: 1rem; }
.yt-bar__close:hover { background: rgba(255, 255, 255, .15); }
.yt-bar__info {
    font-family: var(--font-head);
    font-size: .85rem;
    letter-spacing: .02em;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.yt-bar__note { margin-right: .3em; opacity: .75; }

/* ── 8i) Seite: Klimaanlage (Bedienungsanleitung) ────────────────── */
.ac-head__inner { max-width: 820px; margin-inline: auto; text-align: center; }
.ac-head__kicker {
    color: var(--teal-top); font-family: var(--font-head); font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; margin-bottom: .2rem;
}
.ac-head__title { font-size: clamp(2rem, 5vw, 3rem); margin: .2em 0 .45em; }
.ac-head__lead { color: var(--muted); font-size: 1.05rem; margin: 0; }
.ac-section__lead { text-align: center; color: var(--muted); max-width: 760px; margin: 0 auto; }

/* Wichtige Hinweise (gelb hinterlegt) */
.ac-note {
    max-width: 900px; margin-inline: auto;
    background: #fff7e3; border: 1px solid var(--gold); border-left-width: 6px;
    border-radius: 12px; padding: clamp(1.2rem, 3vw, 2rem);
}
.ac-note__title { display: flex; align-items: center; gap: .6rem; font-size: 1.35rem; margin-bottom: 1.1rem; }
.ac-note__icon { width: 22px; height: 22px; color: var(--gold-dark); flex: none; }
.ac-note__list { display: grid; gap: 1rem; }
.ac-note__list li { position: relative; padding-left: 1.4rem; }
.ac-note__list li::before {
    content: ''; position: absolute; left: .3rem; top: .62em;
    width: .45rem; height: .45rem; border-radius: 50%; background: var(--gold-dark);
}
.ac-note__list strong {
    display: block; color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
}
.ac-note__list span { color: #6a5c3a; font-size: .95rem; }

/* Empfehlung (goldene Karte) */
.ac-rec { max-width: 900px; margin-inline: auto; }
.ac-steps { display: grid; gap: 1.1rem; margin: 1.3rem 0 0; padding: 0; list-style: none; }
.ac-step { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.ac-step__num {
    display: flex; align-items: center; justify-content: center; flex: none;
    width: 2.2rem; height: 2.2rem; border-radius: 50%;
    background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 700;
}
.ac-step__title { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin: .15rem 0 .25rem; }
.ac-step__text { margin: 0; color: rgba(15, 23, 42, .78); }
.ac-rec__outro { margin: 1.4rem 0 0; color: rgba(15, 23, 42, .78); }

/* Fernbedienung: Schema + Erklärungen */
.ac-remote-layout {
    display: grid; grid-template-columns: minmax(250px, 330px) 1fr;
    gap: clamp(1.5rem, 4vw, 3rem); align-items: start; margin-top: 2.2rem;
}
.ac-remote-col { position: sticky; top: 1.5rem; }
.ac-remote {
    width: min(330px, 100%); margin-inline: auto;
    background: var(--white); border: 1px solid var(--line); border-radius: 26px;
    box-shadow: var(--shadow); padding: 1.1rem .9rem 1rem;
}
.ac-remote__screen {
    height: 84px; margin-bottom: 1rem;
    background: #d9e2d8; border: 1px solid #c1cdc0; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 700; font-size: .62rem;
    letter-spacing: .2em; text-transform: uppercase; color: #79887a;
}
.ac-remote__pad {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: .5rem; align-items: center; justify-items: center;
}
.ac-remote__setup {
    position: relative; margin-top: 1.2rem;
    border: 1px solid #dcdcd6; border-radius: 12px; padding: 1rem .55rem .6rem;
}
.ac-remote__setup-label {
    position: absolute; top: -.55rem; left: 50%; transform: translateX(-50%);
    background: var(--white); padding: 0 .45rem;
    font-family: var(--font-head); font-weight: 700; font-size: .58rem;
    letter-spacing: .18em; color: var(--muted);
}
.ac-remote__brand {
    margin: .7rem .2rem 0; text-align: right;
    font-family: var(--font-head); font-weight: 700; font-size: 1rem;
    letter-spacing: .06em; color: #c3c7c6;
}
.ac-remote__hint { margin: .9rem 0 0; text-align: center; font-size: .85rem; color: var(--muted); }

/* Einzelne Taste (Schema + Erklärungsliste) */
.ac-key {
    display: flex; align-items: center; justify-content: center; text-align: center;
    width: 100%; padding: .25rem;
    font-family: var(--font-head); font-weight: 700; font-size: .52rem; line-height: 1.15;
    letter-spacing: .02em; text-transform: uppercase; color: var(--slate);
    background: #f6f6f3; border: 1px solid #dcdcd6; border-radius: 9px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .07);
}
.ac-key--circle { aspect-ratio: 1; border-radius: 50%; }
.ac-key--rect { min-height: 2.2rem; }
.ac-key--power { aspect-ratio: 1; background: #f26a21; border-color: #d55a17; color: #fff; }
.ac-key__glyph { width: 46%; height: 46%; }
.ac-key--link { transition: transform .15s ease, border-color .15s ease, color .15s ease; }
.ac-key--link:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--ink); }
.ac-key--power.ac-key--link:hover { color: #fff; }

.ac-list { display: grid; gap: .9rem; margin: 0; padding: 0; list-style: none; }
.ac-item {
    display: grid; grid-template-columns: 78px 1fr; gap: 1.1rem; align-items: center;
    background: #eef4f5; border-radius: 12px; padding: 1rem 1.2rem;
    scroll-margin-top: 1.5rem; border: 2px solid transparent;
}
.ac-item:target { border-color: var(--gold); background: #fff7e3; }
.ac-item__key { width: 78px; }
.ac-item__title { font-size: 1.08rem; margin: 0 0 .25rem; }
.ac-item__text { margin: 0; color: var(--muted); font-size: .95rem; }

/* Gut zu wissen */
.ac-facts { background: var(--cream); }
.ac-facts__grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
    max-width: 960px; margin-inline: auto;
}
.ac-fact { background: var(--white); border-radius: 12px; padding: 1.4rem 1.5rem; }
.ac-fact__title { font-size: 1.1rem; margin: 0 0 .4rem; }
.ac-fact__text { margin: 0; color: var(--muted); font-size: .95rem; }

.ac-help { max-width: 960px; margin: 2.2rem auto 0; text-align: center; }
.ac-help__title { font-size: 1.3rem; margin-bottom: .3rem; }
.ac-help__text { color: var(--muted); margin: 0; }
.ac-help__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.2rem; }

/* Verlinktes Ausstattungs-Icon (Klimaanlage → diese Seite) */
.equip-item--link {
    display: block; border-radius: 10px; padding: .4rem .2rem;
    transition: background-color .2s ease, transform .2s ease;
}
.equip-item--link:hover, .equip-item--link:focus-visible { background: var(--white); transform: translateY(-2px); }
.equip-item--link .equip-item__label {
    text-decoration: underline; text-decoration-color: var(--gold);
    text-decoration-thickness: 1px; text-underline-offset: 2px;
}
.equip-item__more {
    display: block; margin-top: .2rem;
    font-family: var(--font-head); font-weight: 700; font-size: .58rem;
    letter-spacing: .08em; text-transform: uppercase; color: var(--teal-top);
}

@media (max-width: 900px) {
    .ac-remote-layout { grid-template-columns: 1fr; }
    .ac-remote-col { position: static; }
    .ac-facts__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .ac-item { grid-template-columns: 66px 1fr; gap: .85rem; padding: .9rem 1rem; }
    .ac-item__key { width: 66px; }
    .ac-item .ac-key { font-size: .46rem; }
    .ac-note__list li { padding-left: 1.2rem; }
    .ac-help__actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* ── 8j) Eingebettete Ansicht (?noheader, Aufruf aus der Guest App) ─ */
/* Ohne Kopfbereich beginnt der Inhalt direkt oben – Abstand entsprechend
   kleiner halten, damit in der App kein leerer Streifen entsteht. */
.is-embed main > .section:first-child { padding-top: clamp(1.5rem, 5vw, 2.5rem); }

/* ── 9) Responsive ───────────────────────────────────────────────── */
@media (max-width: 980px) {
    .amenities__icons { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .bfst-grid { grid-template-columns: repeat(5, 1fr); }
    .feature-cards { grid-template-columns: repeat(2, 1fr); }
    .slider__track { grid-auto-columns: calc((100% - 1rem) / 2); }
    .info-boxes__grid { grid-template-columns: 1fr; }
    .rooms__grid { grid-template-columns: 1fr; }
    .contact-methods { grid-template-columns: 1fr; max-width: 420px; }
    .jetski-facts__grid { grid-template-columns: repeat(2, 1fr); }
    .jetski-features__grid { grid-template-columns: repeat(2, 1fr); }
    .jetski-exp__grid { grid-template-columns: 1fr; }
    .umg-facts__grid { grid-template-columns: repeat(2, 1fr); }
    .umg-highlights__grid { grid-template-columns: repeat(2, 1fr); }
    .umg-car__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 70px; }

    /* Parallax (fixed) ist auf iOS unzuverlässig → normaler Hintergrund */
    .escape { background-attachment: scroll; }

    .nav-toggle { display: block; }
    .header__bar { padding-block: .8rem; }
    .header__logo img { width: 84px; }

    /* Mobile-Menü als Drawer */
    .nav {
        position: fixed; inset: 0 0 0 auto;
        width: min(82vw, 320px);
        background: var(--ink); color: #fff;
        flex-direction: column; justify-content: flex-start;
        gap: 1.5rem; padding: 5rem 2rem 2rem;
        transform: translateX(100%); transition: transform .3s ease;
        z-index: 110; overflow-y: auto;
    }
    body.nav-open .nav { transform: translateX(0); }
    body.nav-open { overflow: hidden; }
    /* Header (mit Schublade) bei offenem Menü über das Overlay heben,
       sonst deckelt der Header-Stacking-Context (z-index 100) die Schublade
       und das Overlay (105) fängt die Klicks ab. */
    body.nav-open .header { z-index: 120; }
    .nav__list { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .nav__link { font-size: 1.1rem; }
    .header--sub .nav__link.is-active { border-color: #fff; }
    .nav__mobile-extra {
        display: flex; flex-direction: column; gap: 1.2rem;
        margin-top: auto; padding-top: 2rem;
    }

    /* Abdunkler-Overlay hinter dem Drawer */
    body.nav-open::after {
        content: ''; position: fixed; inset: 0;
        background: rgba(0, 0, 0, .5); z-index: 105;
    }

    .about__grid,
    .escape__grid,
    .contact__grid { grid-template-columns: 1fr; }
    .escape__cta { justify-self: stretch; }
    .escape__cta .btn { width: 100%; justify-content: center; }

    .info-box__cols { grid-template-columns: 1fr; }
    .room-card { grid-template-columns: 1fr; }
    .room-card__media img { min-height: 220px; }
    .rooms-teaser__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .app-card { grid-template-columns: 1fr; text-align: center; }
    .app-card__icon { justify-self: center; }
    .app-card__actions { justify-content: center; }

    .curacao-lage { grid-template-columns: 1fr; }
    .music-grid { grid-template-columns: 1fr; }
    .topic-card--media-left,
    .topic-card--media-right { grid-template-columns: 1fr; }
    .topic-card--media-right .topic-card__media { order: 0; }

    .agb-table__label { width: 38%; }
    .accordion__head { font-size: 1.05rem; padding: 1rem 1.1rem; }

    .footer__inner { flex-direction: column; text-align: center; }

    /* JetSki-Extras */
    .jetski-facts__grid { grid-template-columns: repeat(2, 1fr); }
    .jetski-features__grid { grid-template-columns: 1fr; }
    .jetski-cta { background-attachment: scroll; }
}

@media (max-width: 520px) {
    .amenities__icons { grid-template-columns: repeat(2, 1fr); }
    .bfst-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-cards { grid-template-columns: 1fr; }
    .slider__track { grid-auto-columns: 100%; }
    .slider__slide img { height: 240px; }
}

/* ── 10) Druck / PDF ─────────────────────────────────────────────── */
@page {
    size: A4 portrait;
    margin: 18mm 16mm;
}

@media print {
    /* Navigations- und Interaktions-Elemente ausblenden */
    .header,
    .footer,
    .lang,
    .scroll-top,
    .agb__print,
    .grecaptcha-badge { display: none !important; }

    html, body { width: 210mm; background: #fff; color: #000; }
    body { font-size: 11pt; line-height: 1.45; -webkit-print-color-adjust: exact; print-color-adjust: exact; }

    .section { padding-block: 0; }
    .container,
    .agb__inner { max-width: none; width: 100%; padding: 0; margin: 0; }

    /* AGB-Kopf kompakt und linksbündig für A4 */
    .agb__inner { text-align: left; }
    .agb__title { font-size: 20pt; margin: .2em 0; }
    .agb__company { font-size: 9pt; }
    .agb__valid { margin-bottom: 1rem; }

    /* Accordion vollständig öffnen, alle Inhalte zeigen */
    .accordion__panel {
        display: block !important;
        grid-template-rows: none !important;
        overflow: visible !important;
    }
    .accordion__body { overflow: visible !important; }
    .accordion__chevron { display: none; }
    .accordion__head {
        color: #000;
        background: none;
        border: 0;
        padding: 0;
        margin-top: 1rem;
        font-size: 14pt;
    }
    .accordion__item { margin-bottom: 0; break-inside: avoid; }
    .accordion__body { padding: .4rem 0 0; }

    .agb__lead { font-size: 10.5pt; margin-bottom: .8rem; }
    .agb__group-title { font-size: 11.5pt; margin: 1rem 0 .4rem; }

    /* Tabellen sauber umbrechen */
    .agb-table { break-inside: auto; font-size: 10pt; }
    .agb-table td { padding: .35rem .5rem; }
    .agb-table tr { break-inside: avoid; }
    .agb__group-title { break-after: avoid; }
}
