/* Guest site – warm neutral (Graubeige) */
:root {
    --guest-primary: #5c5752;
    --guest-accent: #d4cfc4;
    --guest-contrast: #c9c3b8;
    --guest-page-bg: #f5f2ec;
    --guest-panel-bg: #faf8f4;
    --guest-text: #3a3632;
    --guest-muted: #6f6a63;
    --guest-border: #d4cfc4;
    --guest-nav-bg: rgba(250, 248, 244, 0.94);
    --guest-stone: #9a948c;
    --guest-surface: #fffcf8;
    --guest-danger: #a33b3b;
    --guest-ok: #5a6b52;
    --guest-radius: 0;
    --guest-max: 1120px;
    --guest-prose: 46rem;
    --guest-font: "Manrope", "Segoe UI", sans-serif;
    --guest-display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.guest-site {
    margin: 0;
    font-family: var(--guest-font);
    color: var(--guest-text);
    background: var(--guest-page-bg);
    line-height: 1.55;
}

body.guest-site.guest-landing {
    background: var(--guest-page-bg);
}

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

a { color: var(--guest-primary); }

/* —— Header / Hamburger —— */
.guest-header {
    position: fixed;
    top: 0.85rem;
    right: max(0.85rem, 4vw);
    z-index: 60;
    display: block;
    width: auto;
    padding: 0;
    background: transparent;
    color: #111;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.guest-header--menu {
    display: block;
}

.guest-header__tools {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
}

.guest-header .brand {
    display: none !important;
}

/* Language switcher – neben dem Menü, gut lesbar */
.guest-lang {
    position: relative;
    z-index: 130;
    flex-shrink: 0;
}
.guest-lang__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    margin: 0;
    min-width: 2.65rem;
    height: 2.65rem;
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(36, 48, 40, 0.12);
    border-radius: 8px;
    background: #fbf8f1;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #2f2b27;
    cursor: pointer;
    line-height: 1.2;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}
.guest-lang__toggle::after {
    content: BE;
    font-size: 0.62rem;
    opacity: 0.65;
    transform: translateY(-0.02rem);
}
.guest-lang__toggle:hover,
.guest-lang.is-open .guest-lang__toggle {
    color: #1a1714;
    background: #fffdf8;
    border-color: rgba(36, 48, 40, 0.2);
}
.guest-lang__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    left: auto;
    min-width: 3.4rem;
    margin: 0;
    padding: 0.28rem;
    list-style: none;
    border-radius: 10px;
    background: #fbf8f1;
    border: 1px solid rgba(36, 48, 40, 0.14);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.guest-lang__menu[hidden] {
    display: none;
}
.guest-lang__option {
    display: block;
    padding: 0.42rem 0.62rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #2f2b27;
    text-decoration: none;
    background: transparent;
}
.guest-lang__option:hover,
.guest-lang__option[aria-selected="true"] {
    background: #e8e2d6;
    color: #1a1714;
    text-decoration: none;
}


.guest-menu-toggle {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.65rem;
    height: 2.65rem;
    padding: 0.55rem;
    border: 0;
    border-radius: 8px;
    background: rgba(247, 242, 232, 0.92);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    cursor: pointer;
}

.guest-menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    border-radius: 2px;
    background: #111;
}

.guest-header.is-open .guest-menu-toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.guest-header.is-open .guest-menu-toggle span:nth-child(2) {
    opacity: 0;
}
.guest-header.is-open .guest-menu-toggle span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}
.guest-menu-toggle span {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.guest-menu,
.guest-header nav.guest-menu,
.guest-header nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    left: auto;
    transform: none;
    min-width: 12.5rem;
    width: auto;
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.55rem;
    margin: 0;
    background: rgba(251, 248, 241, 0.98);
    border: 1px solid color-mix(in srgb, var(--guest-contrast) 85%, #fff);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    text-align: left;
}

/* is-open muss [hidden] schlagen, falls Attribut kurz stehen bleibt */
.guest-header.is-open .guest-menu,
.guest-header.is-open nav.guest-menu,
.guest-header.is-open nav,
.guest-header.is-open .guest-menu[hidden],
.guest-header.is-open nav[hidden] {
    display: flex !important;
}

.guest-header:not(.is-open) nav[hidden],
.guest-header:not(.is-open) .guest-menu[hidden] {
    display: none !important;
}

.guest-header a,
.guest-menu a {
    color: #243028;
    text-decoration: none;
    font-weight: 650;
    font-size: 0.98rem;
    opacity: 1;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
}

.guest-header a:hover,
.guest-menu a:hover {
    background: rgba(201, 195, 184, 0.35);
    color: var(--guest-text);
    text-decoration: none;
}


/* —— Layout —— */
.guest-wrap {
    max-width: var(--guest-max);
    margin: 0 auto;
    padding: 1.4rem 1.2rem 2.5rem;
}

.guest-section {
    max-width: var(--guest-max);
    margin: 0 auto;
    padding: 3.2rem 1.2rem;
    color: var(--guest-text);
}

.guest-section--tint {
    background: transparent;
}

.guest-section h2 {
    font-family: var(--guest-display);
    font-size: clamp(1.55rem, 2.6vw, 2.05rem);
    font-weight: 600;
    margin: 0 0 0.45rem;
    color: var(--guest-text);
}

.guest-section .section-lead {
    margin: 0 0 1.6rem;
    color: var(--guest-muted);
    max-width: 48ch;
}

.guest-panel {
    background: var(--guest-surface);
    border: 1px solid var(--guest-border);
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
    margin-bottom: 1rem;
}

.guest-backlink {
    display: inline-block;
    margin-bottom: 0.85rem;
    text-decoration: none;
    color: var(--guest-primary);
    font-weight: 650;
}

.guest-muted { color: var(--guest-muted); }

.guest-footer {
    border-top: 1px solid var(--guest-contrast);
    background: linear-gradient(180deg, #f3f0ea 0%, #ebe6de 100%);
    color: var(--guest-text);
    padding: 2.4rem 1.2rem 2.8rem;
    font-size: 0.92rem;
}

.guest-footer__inner {
    max-width: var(--guest-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem 2rem;
}

.guest-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 12rem;
}

.guest-footer__logo {
    display: block;
    width: min(14rem, 80%);
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 10px;
}

.guest-footer__name {
    font-family: var(--guest-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.guest-footer__loc {
    color: var(--guest-muted);
    font-size: 0.88rem;
}

.guest-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.65rem;
    justify-content: flex-end;
    flex: 1 1 16rem;
}

.guest-footer a,
.guest-footer__nav a {
    color: var(--guest-text);
    margin: 0;
    padding: 0.42rem 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--guest-contrast);
    border-radius: 999px;
    background: transparent;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.guest-footer a:hover,
.guest-footer__nav a:hover {
    background: rgba(255, 255, 255, 0.55);
    border-color: color-mix(in srgb, var(--guest-contrast) 70%, var(--guest-text));
    text-decoration: none;
    transform: translateY(-1px);
}

.lp-book-sticky {
    position: fixed;
    right: max(1rem, 3vw);
    bottom: var(--lp-book-sticky-inset, max(1rem, 3vw));
    z-index: 55;
    box-shadow: 0 8px 28px rgba(58, 54, 50, 0.12);
}

.guest-toplink {
    position: fixed;
    right: max(1rem, 3vw);
    bottom: calc(max(1rem, 3vw) + 3.4rem);
    z-index: 54;
    width: 2.625rem;
    height: 2.625rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: 1px solid var(--guest-primary);
    background: var(--guest-primary);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 0 0 0 var(--guest-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: opacity 0.45s cubic-bezier(0.3, 0, 0.15, 1),
                transform 0.45s cubic-bezier(0.3, 0, 0.15, 1),
                visibility 0.45s,
                background 0.18s ease,
                box-shadow 0.18s ease;
}

.guest-toplink.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.guest-toplink:hover,
.guest-toplink.is-visible:hover {
    transform: translateY(-2px);
    background: var(--guest-text);
    border-color: var(--guest-text);
    box-shadow: 0 0 0 0.2rem rgba(58, 54, 50, 0.25);
}

.guest-toplink__icon {
    display: block;
    line-height: 0;
}

.cms-prose {
    max-width: var(--guest-prose);
    margin-left: auto;
    margin-right: auto;
}

.cms-prose img {
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 0 10px 32px rgba(58, 54, 50, 0.08);
}

.booking-hero__title {
    font-family: var(--guest-display);
    margin: 0 0 0.35rem;
}

.booking-hero__lead {
    margin-top: 0;
}

.booking-datebar {
    margin-top: 1rem;
    box-shadow: none;
    background: var(--guest-surface);
}

/* —— Buttons / forms —— */
.guest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1.5px solid var(--guest-contrast);
    border-radius: 12px;
    padding: 0.72rem 1.25rem;
    background: transparent;
    color: var(--guest-text);
    text-decoration: none;
    font-weight: 600;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: none;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.guest-btn:hover {
    transform: translateY(-1px);
    background: rgba(201, 195, 184, 0.22);
    border-color: color-mix(in srgb, var(--guest-contrast) 65%, var(--guest-text));
    color: var(--guest-text);
    filter: none;
}

.guest-btn.secondary {
    background: transparent;
    border-color: var(--guest-contrast);
    color: var(--guest-text);
    filter: none;
}

.guest-btn.primary-fill {
    background: var(--guest-text);
    border-color: var(--guest-text);
    color: #faf8f4;
}

.guest-btn.primary-fill:hover {
    background: color-mix(in srgb, var(--guest-text) 88%, #000);
    border-color: color-mix(in srgb, var(--guest-text) 88%, #000);
    color: #faf8f4;
}

.guest-btn.ghost-light {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
    filter: none;
}

.lp-datebar .guest-btn,
#g-pruefen.guest-btn {
    align-self: end;
    width: auto;
    min-width: 0;
    min-height: 2.55rem;
    height: auto;
    margin: 0;
    padding: 0.55rem 1.1rem;
    box-shadow: none;
    white-space: nowrap;
}

.guest-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.75rem;
}

.guest-form-grid label,
.guest-datebar label {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    font-size: 0.82rem;
    font-weight: 650;
    color: var(--guest-muted);
}

.guest-input,
.guest-select,
.guest-textarea {
    width: 100%;
    border: 1px solid var(--guest-border);
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    background: var(--guest-surface);
    color: var(--guest-text);
    font: inherit;
}

.guest-form-dates-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.booking-pay-note { margin-top: 0.45rem; font-size: 0.92rem; }

.guest-booking-total {
    margin: 0.9rem 0 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: color-mix(in srgb, var(--guest-accent, #b8c99a) 28%, #fff);
    border: 1px solid var(--guest-border, #d5ddcf);
    font-weight: 700;
    font-size: 1.05rem;
}
.guest-booking-total:empty { display: none; }

.guest-pay-obligation {
    margin: 0.85rem 0 1rem;
    padding: 0.95rem 1.05rem;
    border-radius: 10px;
    border: 2px solid color-mix(in srgb, var(--guest-primary, #4a5c3a) 55%, #000);
    background: #fffdf6;
}
.guest-pay-obligation strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--guest-display, Georgia, serif);
    font-size: 1.05rem;
    color: var(--guest-primary, #4a5c3a);
}
.guest-pay-obligation p {
    margin: 0;
    color: var(--guest-muted, #4d5648);
    line-height: 1.45;
    font-size: 0.95rem;
}

.guest-legal-consents {
    margin: 1rem 0 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: var(--guest-surface, #f7f8f5);
    border: 1px solid var(--guest-border, #d5ddcf);
    display: grid;
    gap: 0.7rem;
}
.guest-legal-consents label {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    font-weight: 500;
    color: var(--guest-muted, #4d5648);
    line-height: 1.4;
}
.guest-legal-consents input[type="checkbox"] {
    margin-top: 0.2rem;
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
}

.guest-btn--pay { font-weight: 700; letter-spacing: 0.01em; }
.guest-booking-actions-hint { margin-top: 0.45rem; font-size: 0.86rem; }

.guest-pay-confirm {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(20, 28, 18, 0.55);
}
.guest-pay-confirm[hidden] { display: none !important; }
.guest-pay-confirm__dialog {
    width: min(520px, 100%);
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.35rem 1.1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.guest-pay-confirm__dialog h3 {
    margin: 0 0 0.75rem;
    font-family: var(--guest-display, Georgia, serif);
}
.guest-pay-confirm__body { margin: 0 0 0.85rem; line-height: 1.45; }
.guest-pay-confirm__body ul { margin: 0.4rem 0 0; padding-left: 1.1rem; }
.guest-pay-confirm__warn {
    margin: 0 0 1rem;
    padding: 0.7rem 0.8rem;
    border-radius: 8px;
    background: #fff7e8;
    border: 1px solid #efd2a0;
    color: #5a450f;
    font-size: 0.95rem;
}

.booking-status-ok { color: var(--guest-ok); font-weight: 700; }
.booking-status-bad { color: var(--guest-danger); font-weight: 700; }
.booking-status-hint {
    margin: 0.55rem 0 0;
    padding: 0.7rem 0.85rem;
    background: #f3f5ef;
    border: 1px solid var(--guest-border);
    border-radius: var(--guest-radius);
    color: var(--guest-text);
    font-size: 0.95rem;
    line-height: 1.45;
}
.lp-avail-room__hint {
    display: block;
    margin-top: 0.25rem;
    color: var(--guest-muted);
    font-size: 0.88rem;
}
.booking-inline-list { list-style: none; margin: 0.6rem 0 0; padding: 0; display: grid; gap: 0.65rem; }
.booking-inline-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: var(--guest-surface);
    border: 1px solid var(--guest-border);
    border-radius: var(--guest-radius);
}
.guest-error, .error { color: var(--guest-danger); font-weight: 600; }
.guest-loading, .loading { color: var(--guest-muted); }

/* —— Landing hero —— */
.lp-hero {
    position: relative;
    min-height: min(100vh, 820px);
    min-height: 100svh;
    display: grid;
    align-items: end;
    color: #f7f9f4;
    overflow: hidden;
}

.lp-hero__media {
    position: absolute;
    inset: 0;
    background: #1a221c center/cover no-repeat;
    transform: scale(1.04);
    animation: lp-hero-zoom 8s ease-out forwards;
}

.lp-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Leichteres Overlay – Bild bleibt sichtbar, Text weiter lesbar */
    background:
        linear-gradient(180deg, rgba(12, 18, 14, 0.08) 0%, rgba(12, 18, 14, 0.22) 42%, rgba(12, 18, 14, 0.48) 100%);
}

.lp-hero__inner {
    position: relative;
    z-index: 1;
    width: min(var(--guest-max), 100%);
    margin: 0 auto;
    padding: 5.5rem 1.2rem 9.5rem;
    animation: lp-fade-up 0.9s ease both;
    text-align: center;
}

.lp-hero__brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 1.35rem;
    width: 100%;
}
.lp-hero__brand-home {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.lp-hero__brand-logo {
    display: block;
    width: min(620px, 92vw);
    max-height: min(42vh, 340px);
    height: auto;
    margin: 0 auto 0.75rem;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.28));
}

.lp-hero__brand {
    font-family: var(--guest-display);
    font-size: clamp(1.35rem, 3.2vw, 2.1rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 auto;
    letter-spacing: 0.02em;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 6px 18px rgba(0, 0, 0, 0.25);
}

.lp-hero__title {
    font-family: var(--guest-font);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
    margin: 0 auto 0.45rem;
    max-width: 36ch;
    opacity: 0.98;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 14px rgba(0, 0, 0, 0.28);
}

.lp-hero__lead {
    margin: 0 auto 1.35rem;
    max-width: 46ch;
    opacity: 0.95;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 14px rgba(0, 0, 0, 0.28);
}

.lp-datebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 0.65rem;
    align-items: end;
    padding: 0.85rem;
    margin-top: -0.35rem;
    background: rgba(247, 249, 244, 0.96);
    color: var(--guest-text);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    animation: lp-fade-up 1s 0.15s ease both;
}

.lp-datebar label {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.28rem;
    font-size: 0.82rem;
    font-weight: 650;
    color: var(--guest-muted);
    text-align: left;
}

.lp-datebar .guest-input {
    min-height: 2.55rem;
    box-sizing: border-box;
}

.lp-datebar .guest-btn.secondary {
    min-height: 2.55rem;
    box-sizing: border-box;
}

.lp-datebar__hint {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.8rem;
    color: var(--guest-muted);
}

@media (max-width: 820px) {
    .lp-datebar {
        grid-template-columns: 1fr 1fr;
    }
    .lp-datebar .guest-btn,
    #g-pruefen.guest-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 520px) {
    .lp-datebar { grid-template-columns: 1fr; }
    .guest-form-dates-row { grid-template-columns: 1fr; }
}

/* Startseite: Logo etwas Richtung Mitte */
.lp-hero:not(.zp-portal-hero) .lp-hero__brand-block {
    margin-top: clamp(3.5rem, 16vh, 10rem);
    margin-bottom: 0.35rem;
}

/* Startseite: Verfügbarkeit + Text nach unten; Unterkante = „Jetzt buchen“ */
.lp-hero:not(.zp-portal-hero) {
    align-items: stretch;
}
.lp-hero:not(.zp-portal-hero) .lp-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100svh;
    box-sizing: border-box;
    /* gleiche Unterkante wie fixed .lp-book-sticky */
    padding-bottom: var(--lp-book-sticky-inset, max(1rem, 3vw));
}
.lp-hero:not(.zp-portal-hero) .lp-hero__title {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.65rem;
}
.lp-hero:not(.zp-portal-hero) .lp-hero__lead {
    margin: 0 auto 1rem;
}
.lp-hero:not(.zp-portal-hero) .lp-datebar {
    margin-top: 0.75rem;
    margin-bottom: 0;
    width: min(100%, var(--guest-max));
    flex-shrink: 0;
}

/* Buchen-Anker: native Hash-Sprünge nicht an die Oberkante kleben */
#buchen.lp-datebar,
.lp-hero #buchen {
    scroll-margin-bottom: max(1.25rem, 4vh);
}

/* —— Availability / booking blocks —— */

#verfuegbar[hidden],
.lp-avail[hidden] {
    display: none !important;
}

.lp-avail {
    background: var(--guest-page-bg);
    color: var(--guest-text);
}

.lp-avail.is-revealed .lp-avail__panel {
    animation: lp-fade-up 0.45s ease both;
}

.lp-avail__panel {
    background: var(--guest-surface);
    border: 1px solid var(--guest-border);
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
}

.lp-room-pick {
    display: grid;
    gap: 0.85rem;
}

.lp-avail-room {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    align-items: stretch;
    padding: 0.85rem !important;
}

.lp-avail-room__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.45rem;
}

.lp-avail-room__media {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 9.5rem;
    border-radius: 10px;
    overflow: hidden;
    background: #d5ddd0;
    text-decoration: none;
}

.lp-avail-room__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.lp-avail-room__media:hover img {
    transform: scale(1.03);
}

.lp-avail-room__media--empty {
    background: linear-gradient(135deg, #d5ddd0, #e8ede4);
}

.lp-avail-room__body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-width: 0;
}

.lp-avail-room__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.lp-avail-room__art {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--guest-primary);
    background: color-mix(in srgb, var(--guest-primary) 12%, #fff);
    border: 1px solid color-mix(in srgb, var(--guest-primary) 22%, var(--guest-border));
    border-radius: 999px;
    padding: 0.18rem 0.55rem;
}

.lp-avail-room__text strong {
    font-size: 1.12rem;
}

@media (min-width: 720px) {
    .lp-avail-room__gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .lp-avail-room__media {
        min-height: 11rem;
    }
}

/* —— Rooms —— */
/* Zimmer-Container: Hover wie Bio-Planète-Gerichte/Rezeptkarten */
.lp-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.lp-room {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    transition: transform 500ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
    .lp-room:hover,
    .lp-room:focus-within {
        transform: translateY(-5px);
        box-shadow:
            0 20px 30px rgba(0, 0, 0, 0.2),
            0 5px 8px -5px rgba(0, 0, 0, 0.2),
            0 15px 16px -15px rgba(0, 0, 0, 0.2),
            0 25px 32px -25px rgba(0, 0, 0, 0.2);
    }
}
.lp-room__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #d5ddd0;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.lp-room__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .lp-room:hover .lp-room__media img,
    .lp-room:focus-within .lp-room__media img {
        transform: scale(1.1);
    }
}
.lp-room__body {
    padding: 1rem 1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}
@media (prefers-reduced-motion: reduce) {
    .lp-room,
    .lp-room__media img {
        transition: none !important;
    }
    .lp-room:hover,
    .lp-room:focus-within {
        transform: none;
    }
    .lp-room:hover .lp-room__media img,
    .lp-room:focus-within .lp-room__media img {
        transform: none;
    }
}
.lp-room__meta {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.86rem;
    color: var(--guest-muted);
    font-weight: 650;
}
.lp-room__body h3 {
    margin: 0;
    font-family: var(--guest-display);
    font-size: 1.25rem;
    font-weight: 600;
}
.lp-room__body p {
    margin: 0;
    color: var(--guest-muted);
    font-size: 0.95rem;
    flex: 1;
}
.lp-room__cta {
    margin-top: 0.35rem;
    align-self: flex-start;
}
a.lp-room__media:focus-visible {
    outline: 2px solid var(--guest-primary);
    outline-offset: 2px;
}
.lp-room__title-link {
    color: inherit;
    text-decoration: none;
}
.lp-room__title-link:hover {
    color: var(--guest-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* —— Gallery —— */
.lp-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.65rem;
    background: var(--guest-surface);
    border: 1px solid var(--guest-border);
    border-radius: 14px;
    padding: 0.85rem;
}

.lp-gallery img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
}

/* —— Contact / Textblöcke (gleiche Umrandung wie Zimmer) —— */
.lp-contact {
    display: grid;
    gap: 1rem;
    max-width: none;
    width: 100%;
    background: var(--guest-surface);
    border: 1px solid var(--guest-border);
    border-radius: 14px;
    padding: 1rem 1.1rem 1.2rem;
    box-sizing: border-box;
}

.lp-contact a { font-weight: 650; }

.lp-contact--unified {
    gap: 0.85rem;
}
.lp-contact--unified p {
    margin: 0;
    line-height: 1.55;
}
.guest-landing--mm .lp-contact--unified,
.guest-landing .lp-contact--unified {
    border-radius: 0;
}

/* —— Detail page —— */
.room-cover {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 14px;
    margin: 1rem 0;
}

.room-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.65rem;
    margin: 0.25rem 0 1.25rem;
}

.room-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.price {
    color: var(--guest-primary);
    font-weight: 750;
    font-size: 1.15rem;
}

/* —— Tables (preise etc.) —— */
.guest-table-wrap {
    overflow: auto;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--guest-border);
}

.guest-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.guest-table th,
.guest-table td {
    border-bottom: 1px solid var(--guest-border);
    padding: 0.56rem 0.35rem 0.56rem 0;
    text-align: left;
}

.guest-table th {
    background: transparent;
    color: var(--guest-text);
}

.guest-table .num {
    text-align: right;
    white-space: nowrap;
}

/* —— Motions —— */
@keyframes lp-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes lp-hero-zoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .lp-hero__media,
    .lp-hero__inner,
    .lp-datebar,
    .lp-avail.is-revealed .lp-avail__panel {
        animation: none;
    }
}

/* —— Gästeportal auth (keep) —— */
body.gp-auth { font-family: var(--guest-font); }
.gp-auth-hero {
    position: relative;
    min-height: 240px;
    background: var(--gp-auth-bg, #4a5c3a) center/cover no-repeat;
    color: #f7f8f3;
}
.gp-auth-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(28, 42, 24, .28), rgba(48, 72, 40, .12));
}
.gp-auth-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.2rem 1.2rem 1.8rem;
}
.gp-auth-kicker {
    margin: 0 0 .35rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 700;
    opacity: .9;
}
.gp-auth-hero h1 {
    margin: 0 0 .45rem;
    font-family: var(--guest-display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}
.gp-auth-hero p {
    margin: 0;
    max-width: 42ch;
    opacity: .95;
}
.gp-auth-panel h1,
.gp-auth-panel h2 {
    font-family: var(--guest-display);
}
.gp-auth-sideimg {
    margin: .85rem 0 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--guest-border);
}
.gp-auth-sideimg img {
    display: block;
    width: 100%;
    max-height: 220px;
    object-fit: cover;
}

/* —— Zimmerportal (an öffentliche Website angelehnt) —— */
body.guest-portal-home {
    padding-top: 0;
    background: var(--guest-page-bg);
}
body.guest-portal-home .guest-wrap.zp-wrap {
    max-width: var(--guest-max);
}
/* Startseite: eine gemeinsame Textspalte (Historie, Über uns, Teaser, Login) */
body.guest-landing .guest-wrap.zp-wrap {
    max-width: var(--guest-prose);
    width: 100%;
}
.zp-wrap {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
body.guest-portal-home.guest-landing .zp-wrap {
    padding-top: 0.85rem;
}

.zp-portal-hero.lp-hero {
    min-height: min(78vh, 640px);
}
.zp-portal-hero .lp-hero__media::after {
    background:
        linear-gradient(180deg, rgba(12, 18, 14, 0.08) 0%, rgba(12, 18, 14, 0.22) 42%, rgba(12, 18, 14, 0.48) 100%);
}
.zp-portal-hero .lp-hero__inner {
    padding-bottom: 3.5rem;
}
.zp-portal-hero--compact {
    min-height: min(48vh, 420px);
}
.zp-portal-hero--compact .lp-hero__inner {
    padding: 4.8rem 1.2rem 2.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.zp-portal-hero--compact .lp-hero__brand-block {
    margin-bottom: 1rem;
}
.zp-portal-hero--compact .lp-hero__brand-logo {
    width: min(460px, 82vw);
    max-height: min(26vh, 210px);
    margin-bottom: 0.55rem;
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
}
.zp-portal-hero--compact .lp-hero__brand {
    font-size: clamp(1.15rem, 2.6vw, 1.55rem);
    opacity: 0.96;
}
.zp-portal-hero--compact .lp-hero__title {
    font-family: var(--guest-display);
    font-size: clamp(1.55rem, 3.4vw, 2.15rem);
    font-weight: 700;
    max-width: 22ch;
    margin-bottom: 0.55rem;
}
.zp-portal-hero--compact .lp-hero__lead {
    margin-bottom: 0;
    max-width: 42ch;
    font-size: 0.98rem;
}

/* Legacy-Leiste (falls noch irgendwo genutzt) */
.zp-brand-strip {
    background:
        linear-gradient(180deg, rgba(247, 249, 244, 0.96) 0%, rgba(238, 241, 235, 0.9) 100%);
    border-bottom: 1px solid rgba(74, 92, 58, 0.12);
}
.zp-brand-strip__inner {
    width: min(var(--guest-max), 100%);
    margin: 0 auto;
    padding: 4.2rem 1.2rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.55rem;
}
.zp-brand-strip__logo {
    display: block;
    height: auto;
    width: min(320px, 70vw);
    max-height: 7rem;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.12));
}
.zp-brand-strip__logo-link,
.zp-brand-strip__name {
    text-decoration: none;
    color: var(--guest-text);
    font-family: var(--guest-display);
    font-weight: 700;
    font-size: 1.2rem;
}
.zp-brand-strip__page {
    margin: 0;
    color: var(--guest-muted);
    font-weight: 600;
    font-size: 0.95rem;
}
.zp-brand-strip__page::before {
    content: none;
}

.zp-hero-actions--on-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.35rem;
}
/* Wie „Verfügbarkeit prüfen“ auf der Internetseite */
body.guest-portal-home .guest-btn,
body.guest-portal-home .guest-btn.secondary,
.zp-hero-actions--on-hero .guest-btn,
.zp-hero-actions--on-hero .guest-btn.secondary {
    background: transparent;
    border: 1.5px solid var(--guest-contrast);
    color: var(--guest-text);
    box-shadow: none;
    border-radius: 12px;
    padding: 0.55rem 1.1rem;
    min-height: 2.55rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}
body.guest-portal-home .guest-btn:hover,
body.guest-portal-home .guest-btn.secondary:hover,
.zp-hero-actions--on-hero .guest-btn:hover,
.zp-hero-actions--on-hero .guest-btn.secondary:hover {
    transform: translateY(-1px);
    background: rgba(201, 195, 184, 0.22);
    border-color: color-mix(in srgb, var(--guest-contrast) 65%, var(--guest-text));
    color: var(--guest-text);
    box-shadow: none;
    filter: none;
}

body.guest-portal-home .guest-panel,
body.guest-portal-home .gp-box {
    background: var(--guest-surface);
    border: 1px solid var(--guest-border);
    border-radius: var(--guest-radius);
    padding: 1.15rem 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(36, 48, 40, 0.05);
}
body.guest-portal-home .guest-section {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    width: 100%;
}
body.guest-landing .guest-section.zp-section {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
}
body.guest-landing .zp-section,
body.guest-landing .zp-section .zp-body,
body.guest-landing .zp-section .section-lead,
body.guest-landing .zp-login {
    max-width: none;
    width: 100%;
}
body.guest-landing .zp-body > *,
body.guest-landing .zp-body p,
body.guest-landing .zp-body div {
    max-width: 100%;
}
.zp-hero {
    padding-top: 0.5rem !important;
    padding-bottom: 0.75rem !important;
}
.zp-hero h1 {
    font-family: var(--guest-display);
    font-size: clamp(1.55rem, 3.6vw, 2.1rem);
    font-weight: 600;
    margin: 0.1rem 0 0.4rem;
    letter-spacing: -0.01em;
}
.zp-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--guest-muted);
}
.zp-lead {
    max-width: 36rem;
    margin: 0 0 0.85rem;
    font-size: 0.98rem;
    color: var(--guest-muted);
    font-weight: 400;
}
.zp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.zp-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    padding: 0.85rem 0.15rem 1rem;
    border-bottom: 1px solid rgba(74, 92, 58, 0.12);
    margin-bottom: 0.55rem;
}
.zp-toc a {
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    color: var(--guest-muted);
}
.zp-toc a:hover {
    color: var(--guest-primary);
}
.zp-section h1,
.zp-section h2 {
    font-family: var(--guest-display);
    margin: 0 0 0.45rem;
    font-weight: 600;
    color: var(--guest-text);
}
.zp-section h1 {
    font-size: clamp(1.45rem, 2.8vw, 1.9rem);
}
.zp-section h2 {
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}
.zp-body {
    font-size: 0.98rem;
    color: var(--guest-muted);
    line-height: 1.65;
    max-width: var(--guest-prose);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.zp-body > :first-child { margin-top: 0; }
.zp-body > :last-child { margin-bottom: 0; }
.zp-body em {
    color: var(--guest-stone);
    font-style: normal;
    font-size: 0.9em;
}
.zp-login {
    margin-top: 0.5rem;
    max-width: 36rem;
}
.zp-login-ok {
    color: var(--guest-ok);
    font-weight: 600;
}
.zp-login-form {
    max-width: 24rem;
}
.zp-back {
    margin: 0 0 0.35rem;
}
.zp-pdf-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin: 0 0 1.1rem;
}
.zp-pdf-btn {
    text-decoration: none;
}
.zp-pdf-hint {
    font-size: 0.85rem;
    color: var(--guest-muted, #5c6b5e);
}
.gp-temp-controls {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.gp-temp-controls button {
    min-width: 2.4rem;
    padding: 0.45rem 0.55rem;
}
.gp-breakfast-table td,
.gp-breakfast-table th {
    vertical-align: middle;
}
.gp-breakfast-locked {
    opacity: 0.7;
}

@media (max-width: 640px) {
    .zp-brand-strip__inner {
        padding-top: 3.8rem;
    }
    .zp-portal-hero.lp-hero {
        min-height: min(70vh, 560px);
    }
    .zp-hero-actions--on-hero .guest-btn {
        flex: 1 1 calc(50% - 0.55rem);
    }
}

.zp-back {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
}
.zp-back a {
    color: var(--guest-accent, #4a5c3a);
    text-decoration: none;
}
.zp-back a:hover {
    text-decoration: underline;
}

/* Tipps: Aktivitäten / Restaurants / Lieferungen (wie „Verfügbare Zimmer“) */
.zp-resto-intro {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
}
.zp-tip-list,
.zp-resto-list {
    margin-bottom: 1.75rem;
}
.zp-resto-list-title {
    font-family: var(--guest-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.85rem;
    color: var(--guest-text);
}
.zp-tips-pick {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}
.zp-tip-card.lp-avail-room {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    align-items: stretch;
    justify-content: stretch;
    background: var(--guest-surface);
    border: 1px solid var(--guest-border);
    border-radius: 14px;
    padding: 0.85rem;
}
.zp-tip-card .lp-avail-room__body {
    align-items: flex-start;
}
.zp-tip-card .lp-avail-room__text {
    width: 100%;
    gap: 0.35rem;
}
.zp-tip-card .zp-tip__desc,
.zp-tip-card .zp-tip__rec,
.zp-tip-card .zp-tip__note,
.zp-tip-card .zp-tip__links {
    display: block;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--guest-muted);
}
.zp-tip-card .zp-tip__rec strong {
    color: var(--guest-text);
    font-weight: 600;
}
.zp-tip-card .zp-tip__note {
    font-size: 0.82rem;
    opacity: 0.88;
}
.zp-tip-card .zp-tip__links a {
    font-weight: 550;
}
/* Tipps-Bilder: feste Kachelgröße (ein Bild = gleiche Größe wie Mehrfachanzeige) */
.zp-tip-gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding-bottom: 0.2rem;
}
.zp-tip-gallery--multi {
    cursor: grab;
}
.zp-tip-gallery__item,
.zp-tip-gallery .lp-avail-room__media {
    flex: 0 0 16rem;
    box-sizing: border-box;
    width: 16rem;
    max-width: 16rem;
    min-width: 16rem;
    min-height: 12rem;
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
}
@media (max-width: 520px) {
    .zp-tip-gallery__item,
    .zp-tip-gallery .lp-avail-room__media {
        flex-basis: min(78vw, 16rem);
        width: min(78vw, 16rem);
        max-width: min(78vw, 16rem);
        min-width: min(78vw, 16rem);
        min-height: 10rem;
    }
}
.zp-tip-gallery::-webkit-scrollbar {
    height: 6px;
}
.zp-tip-gallery::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--guest-primary) 45%, #ccc);
    border-radius: 999px;
}
.zp-resto-now {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 650;
    font-family: var(--guest-font);
    vertical-align: middle;
    color: var(--guest-ok);
    background: rgba(47, 107, 58, 0.12);
}

/* —— Gästebuch-Seite —— */
.zp-gb-page {
    max-width: none;
    width: 100%;
}
.zp-gb-intro {
    padding-bottom: 0.5rem;
}
.zp-gb-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--guest-primary);
}
.zp-gb-intro h1 {
    margin: 0 0 0.75rem;
    font-family: var(--guest-display);
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--guest-text);
}
.zp-gb-thanks {
    margin: 0 0 0.85rem;
    font-size: 1.12rem;
    line-height: 1.55;
    color: var(--guest-text);
    font-weight: 500;
}
.zp-gb-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.15rem 0 0.35rem;
}
.zp-gb-section-head {
    margin-bottom: 1rem;
}
.zp-gb-section-head h2 {
    margin-bottom: 0.35rem;
}
.zp-gb-read,
.zp-gb-write {
    scroll-margin-top: 4.5rem;
}
.zp-guestbook-form {
    margin: 0;
    position: relative;
    padding: 1.15rem 1.2rem 1.25rem;
}
.zp-guestbook-form .guest-textarea {
    min-height: 8rem;
    line-height: 1.55;
}
.zp-guestbook-consent {
    border: 1px solid var(--guest-border);
    border-radius: var(--guest-radius);
    padding: 0.85rem 1rem;
    margin: 0.85rem 0;
    background: color-mix(in srgb, var(--guest-panel-bg) 70%, #fff);
}
.zp-guestbook-consent legend {
    font-weight: 650;
    padding: 0 0.35rem;
    color: var(--guest-text);
}
.zp-gb-consent-hint {
    margin: 0.35rem 0 0.65rem;
    font-size: 0.92rem;
    line-height: 1.45;
}
.zp-guestbook-choice {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0.45rem 0 0;
    font-weight: 500;
    color: var(--guest-text);
    line-height: 1.4;
}
.zp-guestbook-choice input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.zp-gb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}
.zp-hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}
.zp-gb-status {
    margin: 0.65rem 0 0;
    min-height: 1.25rem;
}
.zp-gb-status--ok {
    color: var(--guest-ok);
    font-weight: 600;
}
.zp-gb-status--err {
    color: var(--guest-danger);
    font-weight: 600;
}
.zp-guestbook-list {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    margin-top: 0.25rem;
}
.zp-guestbook-entry {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem 1rem;
    padding: 1.05rem 0 1.25rem;
    border: 0;
    border-bottom: 1px solid var(--guest-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
}
.zp-guestbook-entry:nth-child(2),
.zp-guestbook-entry:nth-child(3),
.zp-guestbook-entry:nth-child(4) {
    animation-delay: 0s;
}
.zp-guestbook-entry:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.zp-gb-avatar {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--guest-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #f4f7f2;
    background: linear-gradient(145deg, color-mix(in srgb, var(--guest-primary) 75%, #7a8f5c), var(--guest-primary));
    flex-shrink: 0;
}
.zp-gb-entry-body {
    min-width: 0;
}
.zp-guestbook-entry header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    align-items: baseline;
    margin-bottom: 0.45rem;
}
.zp-guestbook-entry header strong {
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--guest-text);
}
.zp-guestbook-entry time {
    color: var(--guest-muted);
    font-size: 0.88rem;
}
.zp-guestbook-entry p {
    margin: 0;
    color: var(--guest-text);
    font-size: 1.02rem;
    line-height: 1.65;
}
.zp-gb-empty {
    padding: 1.25rem 0;
    text-align: left;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.zp-gb-empty p {
    margin: 0 0 0.85rem;
    color: var(--guest-muted);
}
.lp-guestbook {
    max-width: 48rem;
}

/* —— Öffentliche Website: Gästebewertungen —— */
.lp-reviews {
    background: transparent;
}
.lp-reviews-list,
.lp-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.35rem;
    max-width: 42rem;
}
.lp-review {
    margin: 0;
    padding: 1rem 1.1rem 1.2rem;
    background: var(--guest-surface);
    border: 1px solid var(--guest-border);
    border-radius: 14px;
    animation: lp-fade-up 0.5s ease both;
}
.lp-review.is-collapsed {
    display: none;
}
.lp-review:nth-child(2) { animation-delay: 0.06s; }
.lp-review:nth-child(3) { animation-delay: 0.12s; }
.lp-reviews-more-wrap {
    margin: 1rem 0 0;
}
.lp-reviews-more {
    cursor: pointer;
}
.lp-review__quote {
    margin: 0 0 0.85rem;
    font-family: var(--guest-font);
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--guest-text);
}
.lp-review__quote::before {
    content: "„";
    color: var(--guest-primary);
    font-weight: 700;
}
.lp-review__quote::after {
    content: "“";
    color: var(--guest-primary);
    font-weight: 700;
}
.lp-review__meta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.lp-review__avatar {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--guest-font);
    font-weight: 700;
    font-size: 0.95rem;
    color: #f4f7f2;
    background: linear-gradient(145deg, color-mix(in srgb, var(--guest-primary) 75%, #7a8f5c), var(--guest-primary));
}
.lp-review__who {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}
.lp-review__who strong {
    font-size: 0.95rem;
    font-weight: 650;
    color: var(--guest-text);
}
.lp-review__who time {
    font-size: 0.82rem;
    color: var(--guest-muted);
}
.lp-reviews-note {
    margin: 1.15rem 0 0;
    font-size: 0.88rem;
}
.lp-reviews-empty {
    margin: 0.5rem 0 0;
    max-width: none;
    width: 100%;
    color: var(--guest-muted);
    line-height: 1.55;
    background: var(--guest-surface);
    border: 1px solid var(--guest-border);
    border-radius: 14px;
    padding: 1rem 1.1rem 1.2rem;
    box-sizing: border-box;
}
#bewertungen {
    scroll-margin-top: 4.5rem;
}

@media (max-width: 520px) {
    .zp-guestbook-entry {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }
    .zp-gb-avatar {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }
}





/* Öffentliche Preisseite (Landing-Design) */
.lp-price-table-wrap {
    overflow-x: auto;
    margin: 1rem 0 1.25rem;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--guest-border);
}
.lp-price-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--guest-sans, Manrope, sans-serif);
}
.lp-price-table th,
.lp-price-table td {
    padding: 0.85rem 0.35rem 0.85rem 0;
    text-align: left;
    border-bottom: 1px solid var(--guest-border);
    vertical-align: top;
}
.lp-price-table thead th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--guest-muted);
    background: transparent;
}
.lp-price-table .num {
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.lp-price-table tbody tr:last-child td {
    border-bottom: 0;
}
.lp-price-subhead {
    margin: 0 0 0.65rem;
    font-size: 1.15rem;
    font-weight: 650;
}
.lp-price-table-wrap + .lp-price-subhead,
.lp-price-subhead + .lp-price-table-wrap {
    margin-top: 1.1rem;
}
.lp-price-table--extras td:last-child {
    max-width: 16rem;
}
.lp-price-note {
    color: #5a6850;
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem;
}
.lp-included-list {
    margin: 0.5rem 0 0;
    padding-left: 1.15rem;
    columns: 1;
    gap: 1.5rem;
}
@media (min-width: 720px) {
    .lp-included-list {
        columns: 2;
    }
}
.lp-included-list li {
    margin: 0.35rem 0;
    break-inside: avoid;
}

/* Preise-Seite: eine gemeinsame Inhaltsspalte für Text + Tabellen */
.lp-prices {
    max-width: var(--guest-max);
}
.lp-prices .lp-prices__block {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 2.75rem 0;
}
.lp-prices .lp-prices__block + .lp-prices__block {
    border-top: 1px solid var(--guest-border);
}
.lp-prices .lp-prices__col {
    width: 100%;
    max-width: min(100%, 48rem);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}
.lp-prices .cms-prose,
.lp-prices .cms-system-block,
.lp-prices .lp-price-table-wrap,
.lp-prices .lp-price-subhead,
.lp-prices .lp-included-list {
    max-width: none;
    width: 100%;
}
.lp-prices .cms-prose > *:first-child {
    margin-top: 0;
}
.lp-prices .lp-price-table-wrap {
    margin: 0;
}
.lp-prices .lp-price-table {
    table-layout: fixed;
}
.lp-prices .lp-price-table th:first-child,
.lp-prices .lp-price-table td:first-child {
    width: 52%;
}
.lp-prices .lp-price-table th.num,
.lp-prices .lp-price-table td.num {
    width: 24%;
    padding-right: 0;
}
.lp-prices .lp-price-table--extras td:last-child {
    max-width: none;
}
.lp-prices .lp-price-subhead {
    margin: 0.35rem 0 0;
}
.lp-prices .lp-price-table-wrap + .lp-price-subhead,
.lp-prices .lp-price-subhead + .lp-price-table-wrap {
    margin-top: 0.35rem;
}
.lp-price-note {
    color: var(--guest-muted);
}

/* —— YR Wetter (Folbern) —— */
.yr-forecast { margin-top: 0.25rem; }
.yr-forecast__meta {
    margin: 0.65rem 0 0;
    font-size: 0.85rem;
}
.yr-forecast__meta a { color: var(--guest-primary); }
.yr-forecast__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(74, 92, 58, 0.12);
    border-radius: 12px;
    background: var(--guest-panel-bg, #f7f8f5);
}
.yr-forecast__table {
    width: 100%;
    min-width: 36rem;
    border-collapse: collapse;
    font-size: 0.95rem;
    font-family: var(--guest-font);
}
.yr-forecast__table th,
.yr-forecast__table td {
    padding: 0.7rem 0.65rem;
    border-bottom: 1px solid rgba(74, 92, 58, 0.1);
    vertical-align: middle;
    font-family: inherit;
}
.yr-forecast__table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5a6850;
    background: rgba(74, 92, 58, 0.07);
    text-align: center;
    white-space: nowrap;
    font-family: var(--guest-font);
    font-weight: 650;
}
.yr-forecast__table thead th:first-child,
.yr-forecast__table tbody th {
    text-align: left;
}
.yr-forecast__table tbody th {
    font-family: var(--guest-font);
    font-weight: 700;
    color: var(--guest-text, #243028);
    white-space: nowrap;
}
.yr-forecast__table tbody tr:last-child th,
.yr-forecast__table tbody tr:last-child td {
    border-bottom: 0;
}
.yr-forecast__symbol {
    text-align: center;
}
.yr-forecast__symbol img {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-block;
    vertical-align: middle;
}
.yr-forecast__temp,
.yr-forecast__precip {
    text-align: center;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.yr-forecast__temp {
    font-weight: 700;
    color: var(--guest-primary, #4a5c3a);
}
.yr-forecast__precip {
    color: #5a6850;
    font-size: 0.9rem;
}

.room-extras-title {
    margin: 1.75rem 0 0.35rem;
    font-family: var(--guest-display);
    font-size: 1.35rem;
}
.room-extras-lead {
    margin: 0 0 0.5rem;
}

/* Cookie-Einwilligung */
.pension-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
    background: rgba(36, 48, 40, 0.96);
    color: #f4f7f2;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
}
.pension-cookie-banner__inner {
    max-width: var(--guest-max, 1120px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    align-items: flex-start;
    justify-content: space-between;
}
.pension-cookie-banner__text {
    flex: 1 1 18rem;
    min-width: 0;
}
.pension-cookie-banner__text strong {
    display: block;
    font-size: 1.02rem;
    margin-bottom: 0.25rem;
}
.pension-cookie-banner__intro {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(244, 247, 242, 0.9);
}
.pension-cookie-banner__text a {
    color: #d5e4c4;
    text-decoration: underline;
}
.pension-cookie-panel {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.55rem;
}
/* display:flex/grid überschreibt sonst das HTML-Attribut hidden */
.pension-cookie-panel[hidden],
.pension-cookie-banner__actions[hidden] {
    display: none !important;
}
.pension-cookie-cat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(244, 247, 242, 0.14);
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
}
.pension-cookie-cat__label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.94rem;
    cursor: pointer;
}
.pension-cookie-cat__label input {
    width: 1.05rem;
    height: 1.05rem;
    accent-color: #b8c99a;
}
.pension-cookie-cat__desc {
    margin: 0.3rem 0 0 1.5rem;
    font-size: 0.84rem;
    line-height: 1.4;
    color: rgba(244, 247, 242, 0.78);
}
.pension-cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
}
.pension-cookie-btn {
    border: 0;
    border-radius: 6px;
    padding: 0.55rem 0.9rem;
    font: inherit;
    font-size: 0.92rem;
    cursor: pointer;
}
.pension-cookie-btn--primary {
    background: #b8c99a;
    color: #243028;
    font-weight: 600;
}
.pension-cookie-btn--primary:hover {
    background: #c9d8b0;
}
.pension-cookie-btn--ghost {
    background: transparent;
    color: #f4f7f2;
    border: 1px solid rgba(244, 247, 242, 0.35);
}
.pension-cookie-btn--ghost:hover {
    border-color: rgba(244, 247, 242, 0.7);
}
@media (max-width: 640px) {
    .pension-cookie-banner__actions {
        width: 100%;
    }
    .pension-cookie-btn {
        flex: 1 1 auto;
        text-align: center;
    }
}



.lp-map-credit {
    margin: 0.4rem 0 0;
    font-size: 0.78rem;
}
.lp-map-credit a {
    color: inherit;
    text-decoration: underline;
}


/* —— Guest lightbox (Galerie / Impressionen) —— */
html.guest-lightbox-open,
html.guest-lightbox-open body {
    overflow: hidden;
}

.guest-lightbox-thumb {
    cursor: zoom-in;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.lp-gallery .guest-lightbox-thumb:hover,
.lp-gallery .guest-lightbox-thumb:focus-visible,
.room-gallery .guest-lightbox-thumb:hover,
.room-gallery .guest-lightbox-thumb:focus-visible,
.lp-avail-room__gallery .guest-lightbox-thumb:hover,
.zp-tip-gallery .guest-lightbox-thumb:hover {
    transform: scale(1.025);
    box-shadow: 0 10px 28px rgba(40, 48, 34, 0.22);
    filter: brightness(1.03);
    outline: none;
}

.lp-gallery .guest-lightbox-thumb:focus-visible,
.room-gallery .guest-lightbox-thumb:focus-visible {
    outline: 2px solid var(--guest-primary, #4a5c3a);
    outline-offset: 3px;
}

.lp-gallery--page {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lp-gallery--page img {
    height: 210px;
}

@media (min-width: 900px) {
    .lp-gallery--page img {
        height: 240px;
    }
}

.guest-lightbox {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: grid;
    place-items: center;
    padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
    box-sizing: border-box;
}

.guest-lightbox[hidden] {
    display: none !important;
}

.guest-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(55, 68, 48, 0.35), transparent 55%),
        rgba(22, 26, 20, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.guest-lightbox__stage {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: min(92vh, 100%);
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr;
    align-items: center;
    gap: 0.35rem 0.55rem;
    animation: guestLightboxIn 0.28s ease;
}

@keyframes guestLightboxIn {
    from { opacity: 0; transform: translateY(10px) scale(0.985); }
    to { opacity: 1; transform: none; }
}

.guest-lightbox__figure {
    margin: 0;
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.guest-lightbox__img {
    display: block;
    max-width: min(100%, 1040px);
    max-height: min(78vh, 860px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.04);
    opacity: 0;
    transform: scale(0.985);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.guest-lightbox__img.is-ready {
    opacity: 1;
    transform: none;
}

.guest-lightbox__caption {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: rgba(245, 248, 240, 0.92);
    text-align: center;
}

.guest-lightbox__counter {
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    min-height: 1.2em;
}

.guest-lightbox__hint {
    font-size: 0.78rem;
    opacity: 0.72;
}

.guest-lightbox__close,
.guest-lightbox__nav {
    appearance: none;
    border: 0;
    cursor: pointer;
    color: #f4f7ef;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.guest-lightbox__close:hover,
.guest-lightbox__nav:hover,
.guest-lightbox__close:focus-visible,
.guest-lightbox__nav:focus-visible {
    background: rgba(184, 201, 154, 0.28);
    border-color: rgba(184, 201, 154, 0.55);
    outline: none;
}

.guest-lightbox__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    font-size: 1.55rem;
    line-height: 1;
}

.guest-lightbox__nav {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 999px;
    font-size: 1.85rem;
    line-height: 1;
    display: grid;
    place-items: center;
    align-self: center;
}

.guest-lightbox__nav--prev { grid-column: 1; grid-row: 1 / span 2; }
.guest-lightbox__nav--next { grid-column: 3; grid-row: 1 / span 2; }
.guest-lightbox__nav[hidden] { visibility: hidden; }

@media (max-width: 720px) {
    .guest-lightbox__stage {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        width: 100%;
    }
    .guest-lightbox__figure { grid-column: 1; grid-row: 1; }
    .guest-lightbox__img { max-height: min(68vh, 640px); border-radius: 0; }
    .guest-lightbox__nav--prev,
    .guest-lightbox__nav--next {
        grid-column: 1;
        grid-row: 2;
        position: absolute;
        top: 42%;
        transform: translateY(-50%);
    }
    .guest-lightbox__nav--prev { left: 0.15rem; }
    .guest-lightbox__nav--next { right: 0.15rem; left: auto; }
    .guest-lightbox__close { top: 0.15rem; right: 0.15rem; }
    .guest-lightbox__hint { display: none; }
}

.lp-lage {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 860px) {
    .lp-lage {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    }
}

.lp-lage__map iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(58, 54, 50, 0.08);
}

.lp-umgebung-list {
    display: grid;
    gap: 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 720px) {
    .lp-umgebung-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.lp-umgebung-card {
    background: var(--guest-surface);
    border: 1px solid var(--guest-border);
    border-radius: 12px;
    padding: 1rem 1.05rem;
}

@media (max-width: 640px) {
    .guest-footer__nav {
        justify-content: flex-start;
    }
}

/* —— restored dialog + booking-flow (missing from guest.css) —— */
.pension-ui-dialog-root {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.pension-ui-dialog-root[hidden] { display: none !important; }
.pension-ui-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 18, 0.55);
}
.pension-ui-dialog {
  position: relative;
  z-index: 1;
  width: min(28rem, 100%);
  max-height: min(80vh, 36rem);
  overflow: auto;
  padding: 1.25rem 1.35rem 1.15rem;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  background: #fff;
  color: #3a3632;
}
.pension-ui-dialog__title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}
.pension-ui-dialog__body {
  margin: 0 0 1.1rem;
  line-height: 1.5;
  font-size: 0.98rem;
  white-space: normal;
}
.pension-ui-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}
.pension-ui-dialog__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}
.pension-ui-dialog__btn--primary {
  background: #3a3632;
  border-color: #3a3632;
  color: #faf8f4;
}
.pension-ui-dialog__btn--primary:hover {
  filter: brightness(1.06);
}
.pension-ui-dialog__btn--secondary {
  background: transparent;
  border-color: #a8a29a;
  color: #3a3632;
}
.pension-ui-dialog__btn--secondary:hover {
  background: rgba(201, 195, 184, 0.22);
}

/* Guest theme – Website */
.pension-ui-dialog-root--guest .pension-ui-dialog {
  background: #fdfbf5;
  border: 1px solid #d4cfc4;
  color: var(--guest-text, #3a3632);
  font-family: inherit;
}
.pension-ui-dialog-root--guest .pension-ui-dialog__title {
  font-family: var(--guest-display, Georgia, "Times New Roman", serif);
  color: var(--guest-text, #3a3632);
}
.pension-ui-dialog-root--guest .pension-ui-dialog__btn--primary {
  background: var(--guest-text, #3a3632);
  border-color: var(--guest-text, #3a3632);
  color: #faf8f4;
  border-radius: 12px;
}
.pension-ui-dialog-root--guest .pension-ui-dialog__btn--secondary {
  border-color: var(--guest-contrast, #5c5752);
  color: var(--guest-text, #3a3632);
  border-radius: 12px;
}
.pension-ui-dialog-root--guest .pension-ui-dialog__backdrop {
  background: rgba(20, 28, 18, 0.55);
}

/* Admin theme – Verwaltung */
.pension-ui-dialog-root--admin .pension-ui-dialog {
  background: #fff;
  border: 1px solid #cfd6e0;
  border-radius: 6px;
  color: #222;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.pension-ui-dialog-root--admin .pension-ui-dialog__title {
  font-size: 1.1rem;
  color: #2c3e50;
}
.pension-ui-dialog-root--admin .pension-ui-dialog__backdrop {
  background: rgba(44, 62, 80, 0.45);
}
.pension-ui-dialog-root--admin .pension-ui-dialog__btn {
  border-radius: 4px;
  min-height: 2.25rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.95rem;
}
.pension-ui-dialog-root--admin .pension-ui-dialog__btn--primary {
  background: #2f3a45;
  border-color: #2f3a45;
  color: #fff;
}
.pension-ui-dialog-root--admin .pension-ui-dialog__btn--primary:hover {
  background: #24303b;
  filter: none;
}
.pension-ui-dialog-root--admin .pension-ui-dialog__btn--secondary {
  background: #95a5a6;
  border-color: #95a5a6;
  color: #fff;
}
.pension-ui-dialog-root--admin .pension-ui-dialog__btn--secondary:hover {
  background: #7f8c8d;
}


/* Pay-Confirm: Layout wie Website, kein Browser-Standardblau */
.guest-pay-confirm__dialog {
    background: #fdfbf5;
    border: 1px solid var(--guest-border, #d4cfc4);
    color: var(--guest-text, #3a3632);
}
.guest-pay-confirm__actions {
    justify-content: flex-end;
}
.guest-pay-confirm__dialog .guest-btn.primary-fill,
.guest-pay-confirm__dialog #g-pay-confirm-ok {
    background: var(--guest-text, #3a3632);
    border-color: var(--guest-text, #3a3632);
    color: #faf8f4;
}
.guest-pay-confirm__dialog .guest-btn.secondary,
.guest-pay-confirm__dialog #g-pay-confirm-cancel {
    background: transparent;
    border-color: var(--guest-contrast, #5c5752);
    color: var(--guest-text, #3a3632);
}


/* Buchungsvorgang als Popup */
.guest-booking-flow {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    overflow: auto;
    background: rgba(20, 28, 18, 0.55);
}
.guest-booking-flow[hidden] { display: none !important; }
.guest-booking-flow__dialog {
    position: relative;
    width: min(720px, 100%);
    margin: 1.25rem auto 2rem;
    background: #fff;
    border-radius: 14px;
    padding: 1.35rem 1.35rem 1.25rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    max-height: none;
}
.guest-booking-flow__close {
    position: absolute;
    top: 0.55rem;
    right: 0.65rem;
    width: 2.2rem;
    height: 2.2rem;
    border: 0;
    border-radius: 999px;
    background: #f0ebe3;
    color: #3a3834;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}
.guest-booking-flow__close:hover {
    background: #e4ddd2;
}
.guest-booking-flow__title {
    margin: 0 2rem 0.85rem 0;
    font-family: var(--guest-display, Georgia, serif);
    font-size: 1.45rem;
    color: var(--guest-primary, #4a5c3a);
}
.guest-booking-flow__form {
    margin-top: 1.15rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--guest-border, #d4cfc4);
}
.guest-booking-flow__form-title {
    margin: 0 0 0.35rem;
    font-family: var(--guest-display, Georgia, serif);
    font-size: 1.2rem;
    color: var(--guest-primary, #4a5c3a);
}
body.guest-booking-flow-open {
    overflow: hidden;
}

/* Buchungs-Warenkorb (Auswahl nach Popup-Schließen) */
.guest-booking-cart {
    position: fixed;
    right: 1rem;
    bottom: 1.1rem;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border: 0;
    border-radius: 999px;
    background: var(--guest-primary, #4a5c3a);
    color: #fff;
    font: inherit;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(20, 28, 18, 0.28);
    cursor: pointer;
}
.guest-booking-cart[hidden] { display: none !important; }
.guest-booking-cart:hover { filter: brightness(1.05); }
.guest-booking-cart__count {
    min-width: 1.55rem;
    height: 1.55rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
body.guest-booking-flow-open .guest-booking-cart { display: none !important; }
@media (max-width: 640px) {
    .guest-booking-cart {
        left: 1rem;
        right: 1rem;
        justify-content: center;
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }
}

/* —— Mobile: Formularfelder nicht über Maske hinaus —— */
.guest-form-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
}
.guest-form-grid label,
.guest-datebar label,
.lp-datebar label {
    min-width: 0;
    max-width: 100%;
}
.guest-input,
.guest-select,
.guest-textarea,
.lp-datebar .guest-input,
input.guest-input[type="date"],
input.guest-input[type="number"],
input.guest-input[type="email"],
input.guest-input[type="tel"],
input.guest-input[type="text"] {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}
.guest-booking-flow {
    padding: max(0.5rem, env(safe-area-inset-top, 0px)) max(0.5rem, env(safe-area-inset-right, 0px)) max(0.5rem, env(safe-area-inset-bottom, 0px)) max(0.5rem, env(safe-area-inset-left, 0px));
    align-items: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.guest-booking-flow__dialog {
    width: min(720px, 100%);
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}
.lp-datebar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.lp-umgebung-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.lp-umgebung-card__link:hover h3,
.lp-umgebung-card__link:hover h4 {
    color: var(--guest-primary, #4a5c3a);
    text-decoration: underline;
}
.lp-umgebung-card__img,
.lp-activity-detail__img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 0 0.75rem;
}
.lp-activity-detail__img {
    max-height: 420px;
}
@media (max-width: 640px) {
    .guest-form-grid {
        grid-template-columns: 1fr;
    }
    .guest-booking-flow__dialog {
        padding: 1.1rem 0.85rem 1rem;
        margin: 0.65rem auto 1.25rem;
        border-radius: 12px;
    }
    .guest-booking-flow__title {
        font-size: 1.25rem;
        margin-right: 2.2rem;
    }
    .pension-ui-dialog {
        width: min(28rem, 100%);
        max-width: 100%;
        box-sizing: border-box;
        padding: 1.1rem 0.95rem 1rem;
    }
}

/* Keine Rundungen – öffentliche Website */
.guest-site .guest-btn,
.guest-site button,
.guest-site .guest-input,
.guest-site .guest-select,
.guest-site input,
.guest-site select,
.guest-site textarea,
.guest-site .lp-room,
.guest-site .lp-gallery img,
.guest-site .guest-card,
.guest-site .guest-panel,
.guest-site .guest-header__tools,
.guest-site .guest-menu-toggle,
.guest-site .guest-lang__toggle,
.guest-site .guest-menu,
.guest-site .lp-datebar,
.guest-site .lp-avail-room,
.guest-site .ui-modal,
.guest-site .ui-modal-head,
.guest-site [class*="card"],
.guest-site [class*="panel"],
.guest-site .mm-btn,
.guest-site .mm-logo {
  border-radius: 0 !important;
}

/* —— Sitewide Bio-Planète chrome (mm-top) —— */
:root {
  --mm-ink: #1c1712;
  --mm-muted: #6f6a63;
  --mm-line: #d4cfc4;
  --mm-foam: #fffcf8;
  --mm-bg: #f5f2ec;
  --mm-soft: #f7f2eb;
  --mm-beige: #efe8dc;
  --mm-stone: #9a948c;
  --mm-accent: #c9c3b8;
  --mm-btn: #5c5752;
  --mm-btn-hover: #746e66;
  --mm-brand: #3a3632;
  --mm-radius: 0;
  --mm-max: 1200px;
  --mm-font: "Source Sans 3", "Segoe UI", sans-serif;
  --mm-display: "Cormorant Garamond", Georgia, serif;
  --mm-shadow: 0 2px 16px rgba(28, 23, 18, .06);
}

.mm-wrap { width: min(100% - 2.5rem, var(--mm-max)); margin-inline: auto; }

.mm-top {
  position: sticky; top: 0; z-index: 60;
  background: #fff; border-bottom: 1px solid var(--mm-line);
}
.mm-top__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; padding: .55rem 0; min-height: 4.5rem;
}
.mm-logo {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: var(--mm-soft);
  border: 1px solid var(--mm-line);
  padding: .55rem .75rem;
  text-decoration: none;
  min-width: 9.5rem;
  max-width: 13.5rem;
  border-radius: 0;
}
.mm-logo img {
  width: auto; height: clamp(2.4rem, 4.2vw, 3.1rem);
  object-fit: contain;
}
.mm-nav {
  display: flex; flex-wrap: wrap; gap: .15rem 1.25rem;
  align-items: center; justify-content: center; flex: 1;
  min-width: 0;
}
.mm-nav a {
  text-decoration: none; color: var(--mm-ink);
  font-weight: 600; font-size: .88rem; letter-spacing: .02em;
  text-transform: uppercase;
  font-family: var(--mm-font);
  white-space: nowrap;
}
.mm-nav a:hover,
.mm-nav a[aria-current="page"] { color: var(--mm-brand); }
.mm-top__actions {
  display: flex; align-items: center; gap: .55rem; flex-shrink: 0;
}
.mm-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem; padding: .7rem 1.15rem; border-radius: 0;
  background: var(--mm-btn); color: #fff !important;
  text-decoration: none; font-weight: 700; font-size: .88rem;
  letter-spacing: .03em; border: 1px solid transparent; cursor: pointer;
  text-transform: uppercase; font-family: var(--mm-font);
}
.mm-btn:hover { background: var(--mm-btn-hover); color: #fff !important; }
.mm-btn--top,
.mm-top .mm-btn.mm-btn--top {
  padding: .55rem .9rem;
  font-size: .78rem;
  white-space: nowrap;
}
.mm-btn--beige { background: var(--mm-accent); color: var(--mm-ink) !important; text-transform: none; letter-spacing: .02em; }
.mm-btn--beige:hover { background: var(--mm-beige); }
.mm-btn--outline-light {
  background: transparent; color: #fff !important;
  border-color: rgba(255,255,255,.75);
}
.mm-btn--outline-light:hover { background: rgba(255,255,255,.12); }

/* Desktop: horizontale Nav; Hamburger nur auf kleinen Geräten */
@media (min-width: 1024px) {
  .guest-site > .guest-header.guest-header--menu,
  .guest-site:has(.mm-top) > .guest-header.guest-header--menu {
    display: none !important;
  }
  .mm-top .mm-wrap {
    width: min(100% - 2rem, 1320px);
  }
  .mm-top__inner {
    flex-wrap: nowrap;
    gap: .75rem 1rem;
  }
  .mm-nav {
    display: flex !important;
    flex-wrap: nowrap;
    gap: .1rem clamp(.45rem, 1.1vw, .95rem);
    justify-content: center;
  }
  .mm-nav a {
    font-size: clamp(.72rem, .92vw, .84rem);
    letter-spacing: .015em;
  }
  .mm-logo {
    min-width: 8rem;
    max-width: 11.5rem;
    padding: .45rem .65rem;
  }
  .mm-logo img {
    height: clamp(2.1rem, 3.4vw, 2.85rem);
  }
  .mm-btn--top,
  .mm-top .mm-btn.mm-btn--top {
    padding: .5rem .8rem;
    font-size: .72rem;
    white-space: nowrap;
  }
}

/* Smartphone / kleines Tablet: Hamburger statt Linkleiste */
@media (max-width: 1023px) {
  .mm-nav {
    display: none !important;
  }
  .mm-logo {
    min-width: 7.5rem;
    max-width: 10rem;
    padding: .4rem .55rem;
  }
  .mm-logo img {
    height: 2.2rem;
  }
  .mm-top .mm-top__actions .guest-lang {
    display: none !important;
  }
  .mm-top .mm-wrap {
    padding-right: 5.75rem;
  }
  .mm-top__inner {
    gap: .65rem;
  }
  .guest-site > .guest-header.guest-header--menu,
  .guest-site:has(.mm-top) > .guest-header.guest-header--menu {
    display: block !important;
    z-index: 80;
  }
  .guest-header.guest-header--menu {
    top: 0.7rem;
    right: max(0.7rem, 3vw);
  }
}


/* Buchung als eigene Seite (kein Popup) */
.guest-booking-flow--page {
    position: static;
    inset: auto;
    z-index: auto;
    display: block;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    overflow: visible;
    background: transparent;
}
.guest-booking-flow--page[hidden] { display: none !important; }
.guest-booking-flow--page .guest-booking-flow__dialog {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    max-height: none;
}
.guest-booking-flow--page .guest-booking-flow__close { display: none !important; }
.guest-booking-flow--page .guest-booking-flow__title {
    margin: 0 0 1rem;
}
/* Buchungsseite: einheitliche Breite, ohne Kartenhintergründe */
.booking-page .booking-datebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: .65rem 1rem;
    align-items: end;
    margin: 1rem 0 0;
    flex-wrap: unset;
    width: 100%;
    max-width: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    animation: none;
}
.booking-page .booking-datebar .guest-btn,
.booking-page .booking-datebar #g-pruefen {
    width: auto;
    white-space: nowrap;
    justify-self: start;
}
.booking-page .booking-datebar .lp-datebar__hint {
    grid-column: 1 / -1;
}
@media (max-width: 820px) {
    .booking-page .booking-datebar {
        grid-template-columns: 1fr 1fr;
    }
    .booking-page .booking-datebar .guest-btn,
    .booking-page .booking-datebar #g-pruefen {
        grid-column: 1 / -1;
        width: 100%;
    }
}
@media (max-width: 520px) {
    .booking-page .booking-datebar {
        grid-template-columns: 1fr;
    }
}
.booking-page .lp-avail {
    margin-top: 1.25rem;
    background: transparent;
}
.booking-page .lp-avail[hidden] { display: none !important; }
.booking-page .guest-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.booking-page .booking-hero.guest-panel,
.booking-page .guest-panel.booking-hero {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: none;
}
.booking-page .booking-hero__intro.cms-prose,
.booking-page .cms-prose.booking-hero__intro {
    max-width: none;
    width: 100%;
    margin: 0;
}
.booking-page .cms-system-block,
.booking-page #verfuegbar,
.booking-page .guest-booking-flow--page,
.booking-page .guest-booking-flow--page .guest-booking-flow__dialog {
    width: 100%;
    max-width: none;
}
.booking-page .lp-avail__panel,
.booking-page .guest-booking-total,
.booking-page .guest-pay-obligation,
.booking-page .guest-legal-consents,
.booking-page .lp-avail-room {
    background: transparent !important;
    border-color: var(--guest-border);
    border-radius: 0;
    box-shadow: none;
}
.booking-page .lp-avail__panel {
    border: 0;
    padding: 0;
}
.booking-page .lp-avail-room {
    border: 0;
    border-bottom: 1px solid var(--guest-border);
    padding: 1rem 0 !important;
}
.booking-page .guest-booking-total,
.booking-page .guest-pay-obligation,
.booking-page .guest-legal-consents {
    border: 1px solid var(--guest-border);
    padding: 0.95rem 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

/* Footer – Layout wie Bio-Planète-Test */
.mm-footer {
  margin-top: 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--mm-line, #d4cfc4);
  background: var(--mm-bg, #f5f2ec);
  color: var(--mm-muted, #6f6a63);
  font-size: .9rem;
  font-family: var(--mm-font, "Source Sans 3", "Segoe UI", sans-serif);
}
.mm-footer .mm-wrap {
  width: min(100% - 2.5rem, var(--mm-max, 1200px));
  margin-inline: auto;
}
.mm-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.2rem;
  margin-bottom: .85rem;
}
.mm-footer a {
  color: var(--mm-brand, #3a3632);
  text-decoration: none;
  font-weight: 600;
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin: 0;
}
.mm-footer a:hover {
  text-decoration: underline;
  background: transparent;
  transform: none;
}
.mm-footer p {
  margin: 0;
  color: var(--mm-muted, #6f6a63);
  line-height: 1.45;
}
.mm-footer__lang-note {
  margin-top: .65rem !important;
  font-size: .82rem;
}

/* Gästebuch-Einträge: Handschrift + Hover wie Zimmer */
:root {
    --guest-hand: "Caveat", "Segoe Print", cursive;
}
.lp-reviews-list,
.lp-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-top: 0.35rem;
    max-width: none;
    width: 100%;
}
.lp-review {
    margin: 0;
    padding: 1.15rem 1.2rem 1.25rem;
    background: #fff;
    border: 0;
    border-radius: 0;
    border-bottom: 0;
    box-shadow: 0 0 0 0 transparent;
    animation: none;
    overflow: hidden;
    transition: transform 500ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
    .lp-review:hover,
    .lp-review:focus-within {
        transform: translateY(-5px);
        box-shadow:
            0 20px 30px rgba(0, 0, 0, 0.2),
            0 5px 8px -5px rgba(0, 0, 0, 0.2),
            0 15px 16px -15px rgba(0, 0, 0, 0.2),
            0 25px 32px -25px rgba(0, 0, 0, 0.2);
    }
}
.lp-review__quote {
    margin: 0 0 0.85rem;
    font-family: var(--guest-hand);
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 500;
    line-height: 1.4;
    color: #2f3236;
}
.lp-review__quote::before,
.lp-review__quote::after {
    font-family: var(--guest-hand);
    font-weight: 500;
    color: #2f3236;
}
.zp-gb-page,
.pub-gb-wrap {
    max-width: none;
    width: 100%;
}
.zp-guestbook-list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-top: 0.25rem;
    width: 100%;
    max-width: none;
}
.zp-guestbook-entry {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem 1rem;
    padding: 1.15rem 1.2rem 1.25rem;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 0 0 0 transparent;
    animation: none;
    overflow: hidden;
    transition: transform 500ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
    .zp-guestbook-entry:hover,
    .zp-guestbook-entry:focus-within {
        transform: translateY(-5px);
        box-shadow:
            0 20px 30px rgba(0, 0, 0, 0.2),
            0 5px 8px -5px rgba(0, 0, 0, 0.2),
            0 15px 16px -15px rgba(0, 0, 0, 0.2),
            0 25px 32px -25px rgba(0, 0, 0, 0.2);
    }
}
.zp-guestbook-entry:last-child {
    border-bottom: 0;
}
.zp-guestbook-entry p {
    margin: 0;
    font-family: var(--guest-hand);
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 500;
    line-height: 1.4;
    color: #2f3236;
}
@media (prefers-reduced-motion: reduce) {
    .lp-review,
    .zp-guestbook-entry {
        transition: none !important;
    }
    .lp-review:hover,
    .lp-review:focus-within,
    .zp-guestbook-entry:hover,
    .zp-guestbook-entry:focus-within {
        transform: none;
    }
}

/* Einheitlicher offener Seitenstil (alle öffentlichen Seiten) */
.guest-site .guest-section--tint,
.guest-site .lp-reviews {
  background: transparent !important;
}
.guest-site .guest-section + .guest-section {
  border-top: 1px solid var(--guest-border);
}
.guest-site .lp-contact,
.guest-site .lp-contact--unified,
.guest-site .lp-reviews-empty,
.guest-site .lp-gallery,
.guest-site .lp-umgebung-card,
.guest-site .zp-gb-empty,
.guest-site .lp-price-table-wrap,
.guest-site .guest-table-wrap,
.guest-site .guest-panel:not(.lp-avail__panel) {
  background: transparent;
  border-color: transparent;
  border-width: 0;
  box-shadow: none;
  border-radius: 0;
}
/* Gästebuch-Karten behalten Hover-/Kartenstil */
.guest-site .lp-price-table thead th,
.guest-site .guest-table th {
  background: transparent;
}
.guest-site .lp-price-table-wrap,
.guest-site .guest-table-wrap {
  border-bottom: 1px solid var(--guest-border);
}
.guest-site .lp-contact,
.guest-site .lp-contact--unified,
.guest-site .lp-reviews-empty {
  padding-left: 0;
  padding-right: 0;
}
.guest-site .lp-room {
  /* Hover-Effekt bewusst behalten (wie Bio-Planète-Gerichte) */
  overflow: hidden;
}
.guest-site .lp-room__media,
.guest-site .lp-gallery img,
.guest-site .lp-umgebung-card__img,
.guest-site .room-cover,
.guest-site .room-gallery img {
  border-radius: 0;
}
.guest-site .lp-room__body {
  padding: 1rem 1rem 1.15rem;
}
.guest-site .lp-gallery {
  padding: 0;
}
/* Bewertungskarten behalten Hover-/Kartenstil */
.guest-site .lp-umgebung-card {
  padding: 0;
}
.guest-site .lp-lage__map iframe {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--guest-border);
}
.guest-site .cms-prose img {
  border-radius: 0;
  box-shadow: none;
}
.guest-site details.lp-faq__item,
.guest-site .lp-faq__item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--guest-border);
  border-radius: 0;
  box-shadow: none;
  padding: 0.85rem 0;
}
/* Dialoge behalten Struktur; Buchungsseite bleibt offen (ohne Flächen) */
.guest-site .guest-booking-flow__dialog,
.guest-site .pension-ui-dialog {
  background: var(--guest-surface);
  border: 1px solid var(--guest-border);
}
.guest-site .guest-booking-flow--page .guest-booking-flow__dialog,
.guest-site.booking-page .guest-panel,
.guest-site.booking-page .lp-avail__panel,
.guest-site.booking-page .lp-datebar,
.guest-site.booking-page .guest-booking-flow--page .guest-booking-flow__dialog {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Fixiertes Hero-Bild: steht still, weißer Inhalt scrollt sofort darüber (alle Unterseiten) */
body.guest-site {
  --guest-hero-h: min(40vh, 360px);
}
body.guest-site > .lp-hero {
  position: relative;
  z-index: 0;
  height: var(--guest-hero-h);
  min-height: var(--guest-hero-h);
  max-height: var(--guest-hero-h);
  overflow: visible;
}
body.guest-site > .lp-hero.zp-portal-hero--compact {
  min-height: var(--guest-hero-h);
}
body.guest-site > .lp-hero .lp-hero__media {
  position: fixed;
  inset: auto 0 auto 0;
  top: 0;
  height: var(--guest-hero-h);
  z-index: 0;
  transform: none;
  animation: none;
}
body.guest-site > .lp-hero .lp-hero__inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--guest-hero-h);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 4.2rem 1.2rem 2rem;
  margin: 0 auto;
  pointer-events: none;
}
body.guest-site > .lp-hero .lp-hero__inner a,
body.guest-site > .lp-hero .lp-hero__inner button {
  pointer-events: auto;
}
body.guest-site > .lp-hero ~ main.guest-wrap,
body.guest-site > .lp-hero ~ .guest-wrap,
body.guest-site > .lp-hero ~ .mm-footer,
body.guest-site > .lp-hero ~ footer.mm-footer,
body.guest-site > .lp-hero ~ .guest-footer {
  position: relative;
  z-index: 2;
  background: #fff;
}
body.guest-site > .lp-hero ~ main.guest-wrap,
body.guest-site > .lp-hero ~ .guest-wrap {
  max-width: none;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  /* weißer Vollflächen-Hintergrund; Inhalt in der normalen Spaltenbreite */
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.guest-site > .lp-hero ~ main.guest-wrap > *,
body.guest-site > .lp-hero ~ .guest-wrap > * {
  width: min(100% - 2.4rem, var(--guest-max, 1120px));
  max-width: var(--guest-max, 1120px);
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
body.guest-site > .lp-hero ~ main.guest-wrap > .guest-section,
body.guest-site > .lp-hero ~ .guest-wrap > .guest-section,
body.guest-site > .lp-hero ~ main.guest-wrap > .guest-panel,
body.guest-site > .lp-hero ~ .guest-wrap > .guest-panel {
  background: transparent;
  max-width: var(--guest-max, 1120px);
}
body.guest-site > .lp-hero ~ .mm-footer,
body.guest-site > .lp-hero ~ footer.mm-footer,
body.guest-site > .lp-hero ~ .guest-footer {
  background: #fff !important;
}
@media (max-width: 720px) {
  body.guest-site {
    --guest-hero-h: min(36vh, 300px);
  }
  body.guest-site > .lp-hero .lp-hero__inner {
    padding: 3.6rem 1rem 1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.guest-site > .lp-hero {
    height: auto;
    max-height: none;
    min-height: min(42vh, 360px);
  }
  body.guest-site > .lp-hero .lp-hero__media,
  body.guest-site > .lp-hero .lp-hero__inner {
    position: absolute;
    inset: 0;
    height: auto;
  }
}
