*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root { --sh-green:#4a7886; --sh-green-dark:#2A4651; --teal-deep:#1e3640; --off-white:#EEF2F3; --cream:#FAF8F4; --text-dark:#1A2A30; --text-mid:#4a6470; }
        body { font-family: "boreal", sans-serif; font-weight: 300; background: var(--off-white); color: var(--text-dark); }
        a { text-decoration: none; color: var(--sh-green); }

        .booking-header { position: sticky; top: 0; z-index: 100; background: var(--cream); border-bottom: 1px solid rgba(74,120,134,0.14); transition: box-shadow .3s, border-color .3s; padding: 15px 48px; display: flex; align-items: center; justify-content: space-between; }
        .booking-header.scrolled { box-shadow: 0 2px 16px rgba(30,54,64,0.10); border-bottom-color: rgba(74,120,134,0.22); }
        .booking-header img { height: 48px; width: auto; }
        .booking-header-right { display: flex; align-items: center; gap: 20px; }
        .back-link { font-size: 14px; color: var(--sh-green); display: flex; align-items: center; gap: 6px; transition: opacity .2s; }
        .back-link:hover { opacity: 0.75; }
        .back-link svg { width: 14px; height: 14px; }

        .nav-props { position: relative; }
        .nav-props-btn { display: flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; font-family: "boreal", sans-serif; font-size: 14px; font-weight: 300; color: var(--text-mid); padding: 0; transition: color .2s; }
        .nav-props-btn:hover { color: var(--sh-green); }
        .nav-props-btn svg { transition: transform .2s; }
        .nav-props:hover .nav-props-btn svg { transform: rotate(180deg); }
        .nav-props-dropdown { display: none; position: absolute; top: calc(100% + 12px); right: 0; background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.13); min-width: 220px; padding: 6px 0; z-index: 200; border-radius: 8px; }
        .nav-props:hover .nav-props-dropdown { display: block; }
        .nav-props-dropdown a { display: block; padding: 11px 20px; font-size: 14px; color: var(--text-dark); transition: background .15s; }
        .nav-props-dropdown a:hover { background: var(--off-white); color: var(--sh-green); }
        .nav-props-dropdown a.current { color: var(--sh-green); font-weight: 600; }

        .booking-hero { background: var(--sh-green); color: #fff; text-align: center; padding: 52px 24px 44px; }
        .booking-hero h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 100; letter-spacing: 1px; line-height: 1.15; margin-bottom: 10px; }
        .booking-hero h1 strong { font-weight: 700; }
        .booking-hero p { font-size: 16px; opacity: 0.85; margin-bottom: 24px; }
        .booking-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 36px; font-size: 13px; opacity: 0.85; }
        .booking-trust span::before { content: "✓  "; font-weight: 700; }

        .ibe-wrapper { max-width: 1280px; margin: 0 auto; padding: 48px 32px 64px; }
        ibe-up { display: block; min-height: 600px; }

        .ibe-steps { display: flex; }
        .ibe-step { font-size: 0; position: relative; width: auto !important; background-color: transparent !important; font-weight: normal !important; border-radius: 0 !important; padding: 0 .5rem; }
        .ibe-step::after { font-size: 14px; }
        .ibe-step-title { display: none; }
        .ibe-step:nth-of-type(1)::after { content: "Datum wählen"; }
        .ibe-step:nth-of-type(2)::after { content: "Zimmer auswählen"; }
        .ibe-step:nth-of-type(3)::after { content: "Bezahlen"; }

        .booking-footer { background: var(--cream); color: var(--text-mid); text-align: center; padding: 26px 24px; font-size: 13px; line-height: 1.8; border-top: 1px solid rgba(74,120,134,0.15); }
        .booking-footer a { color: var(--text-mid); margin: 0 12px; transition: color .2s; }
        .booking-footer a:hover { color: var(--sh-green); }

        @media (max-width: 640px) {
            .booking-header { padding: 14px 20px; }
            .booking-hero { padding: 38px 16px 32px; }
            .ibe-wrapper { padding: 28px 16px 48px; }
            .booking-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; justify-items: start; width: fit-content; margin: 0 auto; }
        }