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

        :root {
            --sh-green:      #4C808E;
            --sh-green-dark: #3a6470;
        }

        body {
            font-family: "boreal", sans-serif;
            font-weight: 300;
            background: #f7f5f2;
            color: #1a1e20;
        }

        /* ── HEADER ── */
        .booking-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #fff;
            box-shadow: 0 1px 12px rgba(0,0,0,0.09);
            padding: 15px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .booking-header img { height: 48px; width: auto; }
        .booking-header a.back {
            font-size: 14px;
            color: var(--sh-green);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: opacity .2s;
        }
        .booking-header a.back:hover { opacity: 0.75; }
        .booking-header-right { display: flex; align-items: center; gap: 20px; }
        /* Properties dropdown */
        .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; letter-spacing: 0.5px; color: #5a6168; padding: 0; transition: color .2s; }
        .nav-props-btn:hover { color: var(--sh-green); }
        .nav-props-btn svg { transition: transform .2s; flex-shrink: 0; }
        .nav-props-icon { display: none; }
        .nav-props.open .nav-props-btn svg { transform: rotate(180deg); }
        .nav-props-dropdown { position: absolute; top: calc(100% + 12px); right: 0; background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.13); min-width: 210px; padding: 6px 0; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity .2s, transform .2s; z-index: 1000; }
        .nav-props:hover .nav-props-dropdown, .nav-props.open .nav-props-dropdown { opacity: 1; pointer-events: auto; transform: none; }
        .nav-props-dropdown a { display: block; padding: 11px 20px; font-size: 14px; color: #2d3438; letter-spacing: 0.3px; font-weight: 300; transition: background .15s, color .15s; text-decoration: none; }
        .nav-props-dropdown a:hover { background: #f7f5f2; color: var(--sh-green); }
        .nav-props-dropdown a.current { color: var(--sh-green); font-weight: 700; }

        /* ── HERO BAND ── */
        .booking-hero {
            background: var(--sh-green);
            color: #fff;
            text-align: center;
            padding: 52px 24px 44px;
        }
        .booking-hero h1 {
            font-family: "boreal", sans-serif;
            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;
            font-weight: 300;
            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 ── */
        .ibe-wrapper {
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 32px 64px;
        }

        ibe-up {
            display: block;
            min-height: 600px;
        }

        /* ── FOOTER ── */
        .booking-footer {
            background: #2d3438;
            color: rgba(255,255,255,0.5);
            text-align: center;
            padding: 26px 24px;
            font-size: 13px;
            line-height: 1.8;
        }
        .booking-footer a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            margin: 0 12px;
            transition: color .2s;
        }
        .booking-footer a:hover { color: #fff; }

        /* ── RESPONSIVE ── */
        @media (max-width: 640px) {
            .booking-header { padding: 14px 20px; }
            .booking-header-right { gap: 8px; }
            .nav-props { display: flex !important; }
            .nav-props-label { display: none; }
            .nav-props-chevron { display: none; }
            .nav-props-icon { display: block !important; }
            .nav-props-btn { padding: 4px 6px; }
            .nav-props-dropdown { min-width: 190px; right: 0; top: calc(100% + 10px); }
            .nav-props-dropdown a { display: block !important; }
            .booking-hero { padding: 38px 16px 32px; }
            .ibe-wrapper { padding: 28px 16px 48px; }
            .booking-trust { flex-direction: column; gap: 6px; align-items: center; }
        }

        /* ── IBE STEPS CUSTOMISATION ── */
        .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"; }

        .nav-back {
            font-size: 13px; letter-spacing: 0.3px;
            color: var(--text-mid); opacity: 0.65;
            transition: opacity .2s; white-space: nowrap;
        }
        .nav-back:hover { opacity: 1; color: var(--sh-green); }