/* Guest site – redesign (Hof & Mühle) */
/* btn soft moss */
:root {
    --guest-primary: #4a5c3a;
    --guest-accent: #b8c99a;
    --guest-page-bg: #eef1eb;
    --guest-panel-bg: #f7f8f5;
    --guest-text: #243028;
    --guest-muted: #5c6b5e;
    --guest-border: #c9d2c4;
    --guest-nav-bg: rgba(245, 240, 230, 0.94);
    --guest-stone: #8a9184;
    --guest-surface: #fbfcf9;
    --guest-danger: #a33b3b;
    --guest-ok: #2f6b3a;
    --guest-radius: 10px;
    --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:
        radial-gradient(900px 420px at 8% -8%, rgba(74, 92, 58, 0.08), transparent 55%),
        radial-gradient(700px 380px at 100% 0%, rgba(138, 145, 132, 0.12), transparent 50%),
        var(--guest-page-bg);
    line-height: 1.55;
}

body.guest-site.guest-landing {
    background:
        radial-gradient(900px 420px at 8% -8%, rgba(74, 92, 58, 0.08), transparent 55%),
        radial-gradient(700px 380px at 100% 0%, rgba(138, 145, 132, 0.12), transparent 50%),
        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 .brand {
    display: none !important;
}

.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 rgba(74, 92, 58, 0.14);
    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(74, 92, 58, 0.1);
    color: var(--guest-primary);
    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: color-mix(in srgb, var(--guest-panel-bg) 88%, #fff);
}

.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 rgba(255,255,255,0.12);
    background: #182019;
    color: #d5dbd4;
    padding: 2rem 1.2rem;
    text-align: center;
    font-size: 0.92rem;
}

.guest-footer a {
    color: #e8ede4;
    margin: 0 0.55rem;
    font-weight: 600;
    text-decoration: none;
}

.guest-footer a:hover { text-decoration: underline; }

/* —— Buttons / forms —— */
.guest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1px solid rgba(36, 48, 40, 0.14);
    border-radius: 12px;
    padding: 0.72rem 1.25rem;
    background: #5a6f48;
    color: #f7f9f4;
    text-decoration: none;
    font-weight: 600;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(74, 92, 58, 0.16);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.guest-btn:hover {
    transform: translateY(-1px);
    background: #4a5c3a;
    box-shadow: 0 4px 14px rgba(74, 92, 58, 0.22);
    filter: none;
}

.guest-btn.secondary {
    background: var(--guest-surface);
    border-color: color-mix(in srgb, var(--guest-primary) 35%, var(--guest-border));
    color: var(--guest-primary);
    filter: none;
}

.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: 100%;
    min-height: 0;
    height: auto;
    margin: 0;
    padding: 0.55rem 1.1rem;
    box-shadow: none;
}

.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(4, minmax(0, 1fr));
    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 { grid-column: 1 / -1; }
}

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

/* —— Availability / booking blocks —— */
.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 —— */
.lp-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.lp-room {
    display: flex;
    flex-direction: column;
    background: var(--guest-surface);
    border: 1px solid var(--guest-border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.lp-room:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--guest-primary) 40%, var(--guest-border));
}

.lp-room__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #d5ddd0;
}

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

.lp-room:hover .lp-room__media img { transform: scale(1.04); }

.lp-room__body {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.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;
}

.lp-room__media {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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; }

/* —— 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: 1px solid var(--guest-border);
    border-radius: 10px;
}

.guest-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--guest-surface);
}

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

.guest-table th {
    background: color-mix(in srgb, var(--guest-accent) 35%, #fff);
    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:
        radial-gradient(900px 420px at 8% -8%, rgba(74, 92, 58, 0.08), transparent 55%),
        radial-gradient(700px 380px at 100% 0%, rgba(138, 145, 132, 0.12), transparent 50%),
        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: var(--guest-surface);
    border: 1px solid color-mix(in srgb, var(--guest-primary) 35%, var(--guest-border));
    color: var(--guest-primary);
    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: #f4f7f1;
    border-color: color-mix(in srgb, var(--guest-primary) 50%, var(--guest-border));
    color: var(--guest-primary);
    box-shadow: 0 2px 10px rgba(74, 92, 58, 0.12);
    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%;
}
.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: var(--guest-prose);
}
.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 1.15rem;
    border: 1px solid var(--guest-border);
    border-radius: 14px;
    background: var(--guest-surface);
    box-shadow: 0 1px 0 color-mix(in srgb, var(--guest-primary) 8%, transparent);
    animation: lp-fade-up 0.45s ease both;
}
.zp-guestbook-entry:nth-child(2) { animation-delay: 0.05s; }
.zp-guestbook-entry:nth-child(3) { animation-delay: 0.1s; }
.zp-guestbook-entry:nth-child(4) { animation-delay: 0.15s; }
.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.5rem 1.2rem;
    text-align: center;
    border: 1px dashed var(--guest-border);
    border-radius: 14px;
    background: color-mix(in srgb, var(--guest-panel-bg) 80%, #fff);
}
.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: color-mix(in srgb, var(--guest-panel-bg) 88%, #fff);
}
.lp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.35rem 1.5rem;
    margin-top: 0.35rem;
}
.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:nth-child(2) { animation-delay: 0.06s; }
.lp-review:nth-child(3) { animation-delay: 0.12s; }
.lp-review__quote {
    margin: 0 0 0.85rem;
    font-family: var(--guest-display);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.45;
    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-display);
    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: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(74, 92, 58, 0.12);
}
.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 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(74, 92, 58, 0.1);
    vertical-align: top;
}
.lp-price-table thead th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5a6850;
    background: rgba(74, 92, 58, 0.06);
}
.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-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;
}

/* —— 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;
}
