:root {
            --sh-green:      #4a7886;
            --sh-green-dark: #2A4651;
            --teal-deep:     #1e3640;
            --teal-light:    #A8C5CE;
            --teal-tint:     #EEF2F3;
            --off-white:     #EEF2F3;
            --cream:         #FAF8F4;
            --sand:          #F4E9D8;
            --text-dark:     #1A2A30;
            --text-mid:      #4a6470;
            --gold:          #c9a84c;
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: "boreal", sans-serif; font-weight: 300; color: var(--text-dark); background: var(--cream); line-height: 1.65; }
        a { text-decoration: none; color: inherit; }
        img { display: block; max-width: 100%; }

        /* ── BUTTONS ── */
        .btn-primary { display: inline-block; background: var(--sh-green); color: var(--cream); font-family: "boreal", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 28px; border: none; transition: all .2s; cursor: pointer; }
        .btn-primary:hover { background: var(--sh-green-dark); transform: translateY(-1px); }
        .btn-white { display: inline-block; background: var(--sand); color: var(--teal-deep); font-family: "boreal", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; padding: 15px 32px; transition: all .2s; }
        .btn-white:hover { background: var(--cream); }
        .btn-outline-white { display: inline-block; background: transparent; color: var(--cream); font-family: "boreal", sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 28px; border: 1px solid rgba(250,248,244,0.4); transition: all .2s; }
        .btn-outline-white:hover { border-color: var(--cream); }

        /* ── ANNOUNCEMENT BAR ── */
        .ann-bar { background: var(--sh-green-dark); color: var(--cream); font-size: 13px; font-weight: 300; letter-spacing: 0.01em; text-align: center; padding: 11px 20px; }
        .ann-bar strong { font-weight: 700; letter-spacing: 0.02em; }

        /* ── HEADER ── */
        .site-header { position: sticky; top: 0; z-index: 900; background: var(--cream); border-bottom: 1px solid rgba(74,120,134,0.14); padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 72px; transition: box-shadow .3s, border-color .3s; }
        .site-header.scrolled { box-shadow: 0 2px 16px rgba(30,54,64,0.10); border-bottom-color: rgba(74,120,134,0.22); }
        .header-logo img { height: 44px; width: auto; }
        .header-nav { display: flex; align-items: center; }
        .nav-item { position: relative; }
        .nav-link { display: flex; align-items: center; gap: 5px; padding: 26px 16px; font-size: 14px; font-weight: 400; letter-spacing: 0.01em; color: var(--sh-green-dark); transition: color .2s; white-space: nowrap; }
        .nav-link:hover, .nav-item:hover > .nav-link { color: var(--sh-green); }
        .caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; transition: transform .2s; margin-left: 2px; }
        .nav-item:hover .caret { transform: rotate(180deg); }
        .nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--cream); box-shadow: 0 8px 28px rgba(30,54,64,0.12); min-width: 220px; padding: 8px 0; z-index: 100; border-top: 2px solid var(--sh-green); }
        .nav-item:hover .nav-dropdown { display: block; }
        .nav-dropdown a { display: block; padding: 10px 20px; font-size: 13px; font-weight: 300; color: var(--text-dark); transition: background .15s, color .15s; }
        .nav-dropdown a:hover { background: var(--off-white); color: var(--sh-green); padding-left: 24px; }
        .dd-divider { height: 1px; background: rgba(74,120,134,0.1); margin: 6px 0; }
        .header-right { display: flex; align-items: center; gap: 12px; }
        .lang-toggle { display: flex; align-items: center; gap: 2px; font-size: 12px; letter-spacing: 1px; border: 1px solid rgba(74,120,134,0.2); padding: 5px 10px; }
        .lang { cursor: pointer; padding: 2px 5px; color: var(--text-mid); transition: color .2s; }
        .lang.active { color: var(--sh-green); font-weight: 700; }
        .lang-sep { color: rgba(74,120,134,0.3); }
        .header-cta { display: inline-block; background: var(--sh-green); color: var(--cream); font-family: "boreal", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 26px; transition: background .2s; }
        .header-cta:hover { background: var(--sh-green-dark); }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
        .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: all .3s; }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ── MOBILE MENU ── */
        .mobile-menu { display: none; position: fixed; top: 116px; left: 0; right: 0; bottom: 0; background: var(--cream); z-index: 850; overflow-y: auto; }
        .mobile-menu.open { display: block; }
        .mm-section { padding: 12px 24px 6px; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-mid); background: var(--off-white); border-top: 1px solid rgba(74,120,134,0.1); }
        .mobile-menu a { display: block; padding: 14px 24px; font-size: 15px; font-weight: 300; border-bottom: 1px solid rgba(74,120,134,0.08); color: var(--text-dark); }
        .mobile-menu a:hover { color: var(--sh-green); background: var(--off-white); }
        .mm-cta { display: block; background: var(--sh-green); color: var(--cream) !important; margin: 16px; padding: 15px !important; text-align: center; font-family: "boreal", sans-serif; font-weight: 700 !important; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: none !important; }
        .mm-cta:hover { background: var(--sh-green-dark) !important; }

        /* ── HERO ── */
        .hero { background: var(--sh-green); color: var(--cream); padding: 64px 48px 80px; position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 700'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.07'%3E%3Cpath d='M0 150 Q 125 115 250 150 T 500 150'/%3E%3Cpath d='M0 250 Q 125 215 250 250 T 500 250'/%3E%3Cpath d='M0 350 Q 125 315 250 350 T 500 350'/%3E%3Cpath d='M0 450 Q 125 415 250 450 T 500 450'/%3E%3Cpath d='M0 550 Q 125 515 250 550 T 500 550'/%3E%3C/g%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: cover; pointer-events: none; }
        .hero-label-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 40px; padding-bottom: 18px; border-bottom: 1px solid rgba(250,248,244,0.2); position: relative; z-index: 2; }
        .hero-label-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(250,248,244,0.8); }
        .hero-label-count { font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,248,244,0.65); }
        .hero-label-count strong { color: var(--cream); font-weight: 700; }
        .hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
        .hero h1 { font-size: clamp(38px, 5.5vw, 76px); font-weight: 300; line-height: 1.0; letter-spacing: -0.035em; color: var(--cream); margin: 0 0 28px; }
        .hero h1 strong { font-weight: 700; letter-spacing: -0.035em; }
        .hero h1 em { font-style: italic; font-weight: 300; color: var(--sand); }
        .hero-sub { font-size: 17px; line-height: 1.6; color: rgba(250,248,244,0.88); max-width: 440px; margin: 0 0 36px; font-weight: 300; }
        .hero-ctas { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
        .hero-trust { display: flex; flex-wrap: wrap; gap: 6px 28px; font-size: 12px; font-weight: 300; opacity: 0.78; letter-spacing: 0.3px; }
        .hero-trust span::before { content: "✓  "; font-weight: 700; }
        .hero-image-wrap { position: relative; padding-bottom: 20px; }
        .hero-image { aspect-ratio: 5/6; background-image: url('../img/stralsund-daecher.webp'); background-size: cover; background-position: center; }
        .hero-plaque { position: absolute; bottom: 0; left: -24px; background: var(--cream); padding: 18px 24px; max-width: 260px; border-left: 3px solid var(--sh-green); box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
        .hero-plaque-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sh-green); margin-bottom: 8px; }
        .hero-plaque-title { font-family: "boreal", sans-serif; font-size: 18px; font-weight: 300; color: var(--teal-deep); line-height: 1.2; letter-spacing: -0.01em; }
        .hero-plaque-title strong { font-weight: 700; }

        /* ── USP STRIP ── */
        .usp-strip { background: var(--sand); padding: 44px 48px; border-bottom: 1px solid rgba(74,120,134,0.15); }
        .usp-strip-inner { max-width: 1060px; margin: 0 auto; display: flex; align-items: stretch; justify-content: center; }
        .usp-item { flex: 1; padding: 0 28px; text-align: left; border-right: 1px solid rgba(74,120,134,0.2); }
        .usp-item:last-child { border-right: none; }
        .usp-icon { margin-bottom: 14px; color: var(--sh-green); }
        .usp-icon svg { width: 28px; height: 28px; }
        .usp-title { font-size: 14px; font-weight: 300; margin-bottom: 6px; color: var(--teal-deep); letter-spacing: 0; line-height: 1.2; }
        .usp-title strong { font-weight: 700; }
        .usp-text { font-size: 12px; color: var(--sh-green-dark); line-height: 1.55; opacity: 0.85; }

        /* ── SECTION ── */
        .section-label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; color: var(--sh-green-dark); margin-bottom: 18px; opacity: 0.9; }
        .section-title { font-size: clamp(28px, 4vw, 52px); font-weight: 300; letter-spacing: -0.03em; line-height: 1.05; color: var(--teal-deep); }
        .section-title strong { font-weight: 700; }
        .section-title em { font-style: italic; font-weight: 300; color: var(--sh-green); }
        .section-header { text-align: center; margin-bottom: 56px; }
        .props-section-header { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 48px; text-align: left; max-width: 1160px; margin: 0 auto 56px; }
        .props-section-desc { font-size: 15px; color: var(--text-mid); line-height: 1.7; padding-bottom: 6px; }
        .direct-section .section-header { max-width: 960px; margin: 0 auto 56px; }

        /* ── PROPERTIES ── */
        .properties { padding: 72px 48px 80px; background: var(--cream); }
        .props-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1160px; margin: 0 auto; }
        .prop-card { display: flex; flex-direction: column; background: #fff; overflow: hidden; border: 1px solid rgba(74,120,134,0.15); transition: transform .25s, box-shadow .25s; }
        .prop-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(30,54,64,0.1); }
        .prop-card-img { height: 260px; background-size: cover; background-position: center; position: relative; flex-shrink: 0; overflow: hidden; transition: transform .5s ease; display: block; }
        .prop-card:hover .prop-card-img { transform: scale(1.03); }
        .prop-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(30,54,64,0.62) 100%); }
        .prop-card-logo { position: absolute; bottom: 18px; left: 20px; z-index: 2; }
        .prop-card-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }
        .prop-badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(250,248,244,0.93); color: var(--sh-green); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; padding: 6px 13px; text-transform: uppercase; }
        .prop-card-body { padding: 24px 28px 26px; flex: 1; display: flex; flex-direction: column; }
        .prop-card-meta { display: flex; justify-content: space-between; align-items: baseline; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sh-green); padding-bottom: 14px; border-bottom: 1px solid rgba(74,120,134,0.15); margin-bottom: 16px; }
        .prop-card-title { font-size: 26px; font-weight: 300; margin-bottom: 10px; line-height: 1.05; letter-spacing: -0.025em; color: var(--teal-deep); }
        .prop-card-title strong { font-weight: 700; }
        .prop-card-title a { color: inherit; }
        .prop-card-title a:hover { color: var(--sh-green); }
        .prop-card-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; flex: 1; }
        .chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
        .chip { font-size: 11px; padding: 4px 11px; border: 1px solid rgba(74,120,134,0.25); color: var(--text-mid); letter-spacing: 0.05em; }
        .prop-card-actions { display: flex; gap: 10px; padding-top: 18px; border-top: 1px solid rgba(74,120,134,0.12); }
        .btn-card-p { flex: 1; display: block; background: var(--sh-green); color: var(--cream); font-family: "boreal", sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 13px; text-align: center; border: none; transition: all .2s; white-space: nowrap; }
        .btn-card-p:hover { background: var(--sh-green-dark); }
        .btn-card-o { flex: 1; display: block; background: transparent; color: var(--sh-green); font-family: "boreal", sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 12px 16px; text-align: center; border: 1px solid var(--sh-green); transition: all .2s; white-space: nowrap; }
        .btn-card-o:hover { background: var(--sh-green); color: var(--cream); }

        /* ── DIRECT BOOKING ── */
        .direct-section { padding: 88px 48px; background: var(--teal-deep); color: var(--cream); }
        .direct-section .section-label { color: var(--teal-light); }
        .direct-section .section-title { color: var(--cream); }
        .direct-section .section-title em { color: var(--sand); }
        .direct-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 960px; margin: 0 auto 40px; }
        .direct-tile { background: rgba(255,255,255,0.06); padding: 36px 28px; border-top: 3px solid var(--sh-green); }
        .direct-tile .tile-icon { color: var(--teal-light); margin-bottom: 14px; }
        .tile-icon svg { width: 30px; height: 30px; }
        .direct-tile h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--cream); }
        .direct-tile p { font-size: 13px; color: rgba(250,248,244,0.72); line-height: 1.65; }
        .bestpreis-banner { max-width: 960px; margin: 0 auto; background: var(--sh-green); color: var(--cream); padding: 28px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
        .bestpreis-banner p { font-size: 16px; font-weight: 300; line-height: 1.55; }
        .bestpreis-banner p strong { font-weight: 700; font-size: 19px; display: block; margin-bottom: 4px; }
        .bestpreis-banner a { display: inline-block; background: var(--sand); color: var(--teal-deep); font-family: "boreal", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 13px 26px; white-space: nowrap; flex-shrink: 0; transition: background .2s; }
        .bestpreis-banner a:hover { background: var(--cream); }

        /* ── REVIEWS ── */
        .reviews-section { padding: 88px 48px; background: var(--off-white); }
        .reviews-section .container { max-width: 1060px; margin: 0 auto; }
        .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
        .review-card { background: #fff; padding: 30px 26px; border: 1px solid rgba(74,120,134,0.12); border-bottom: 3px solid var(--sh-green); }
        .review-stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
        .review-text { font-size: 14px; color: var(--text-mid); line-height: 1.68; font-style: italic; margin-bottom: 18px; }
        .review-author { font-size: 13px; font-weight: 700; color: var(--text-dark); }
        .review-source { font-size: 12px; color: var(--text-mid); }

        /* ── STRALSUND TEASER ── */
        .sh-teaser { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
        .sh-teaser-img { background: url('../img/stralsund-hafen-nikolai.webp') center/cover no-repeat; }
        .sh-teaser-content { background: var(--sh-green); color: var(--cream); padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
        .sh-teaser-content .section-label { color: var(--cream); }
        .sh-teaser-content .section-title { color: var(--cream); margin-bottom: 20px; }
        .sh-teaser-content p { font-size: 15px; opacity: 1; line-height: 1.72; margin-bottom: 32px; }

        /* ── FOOTER ── */
        .site-footer { background: var(--cream); color: var(--text-mid); padding: 56px 48px 28px; border-top: 1px solid rgba(74,120,134,0.15); }
        .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; max-width: 1160px; margin: 0 auto 36px; }
        .footer-logo img { height: 36px; margin-bottom: 16px; }
        .footer-tagline { font-size: 13px; line-height: 1.7; color: var(--text-mid); }
        .footer-col-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sh-green); margin-bottom: 16px; font-weight: 700; }
        .footer-links { display: flex; flex-direction: column; gap: 10px; }
        .footer-links a { font-size: 14px; font-weight: 400; color: var(--text-mid); transition: color .2s; }
        .footer-links a:hover { color: var(--sh-green); }
        .footer-contact { font-size: 13px; line-height: 1.9; color: var(--text-mid); }
        .footer-contact a { color: var(--text-mid); text-decoration: underline; }
        .footer-contact a:hover { color: var(--sh-green); }
        .footer-bottom { max-width: 1160px; margin: 0 auto; border-top: 1px solid rgba(74,120,134,0.15); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--text-mid); opacity: 0.65; letter-spacing: 0.02em; }
        .footer-bottom a { color: var(--text-mid); margin-left: 16px; transition: color .2s; }
        .footer-bottom a:hover { color: var(--sh-green); opacity: 1; }



        /* ── PROP PRICE ── */
        .prop-price { font-size: 12px; font-weight: 500; color: var(--sh-green); margin: 0 0 16px; display: flex; align-items: baseline; gap: 5px; letter-spacing: 0.05em; text-transform: uppercase; }
        .prop-price strong { font-size: 20px; font-weight: 700; color: var(--teal-deep); letter-spacing: -0.02em; text-transform: none; }
        .prop-price span { font-size: 11px; font-weight: 300; color: var(--text-mid); text-transform: none; letter-spacing: 0; }

        /* ── FAQ SECTION ── */
        .faq-section { padding: 88px 48px; background: #fff; }
        .faq-inner { max-width: 800px; margin: 0 auto; }
        .faq-list { margin-top: 0; }
        .faq-item { border-bottom: 1px solid rgba(74,120,134,0.15); }
        .faq-item summary { padding: 22px 0; font-size: 16px; font-weight: 700; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--text-dark); }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--sh-green); flex-shrink: 0; transition: transform .2s; line-height: 1; }
        .faq-item[open] summary::after { transform: rotate(45deg); }
        .faq-answer { padding: 0 0 22px; font-size: 14px; color: var(--text-mid); line-height: 1.75; max-width: 640px; }

        /* ── NEWSLETTER ── */
        .newsletter-section { background: var(--sh-green-dark); color: var(--cream); padding: 72px 48px; }
        .newsletter-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
        .nl-text .section-label { color: var(--teal-light); }
        .nl-text h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 300; color: var(--cream); margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.02em; }
        .nl-text h2 strong { font-weight: 700; }
        .nl-text p { font-size: 14px; opacity: 0.82; line-height: 1.72; }
        .nl-form { display: flex; flex-direction: column; gap: 10px; }
        .nl-form input[type="email"] { padding: 15px 18px; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: var(--cream); font-family: "boreal", sans-serif; font-size: 14px; outline: none; }
        .nl-form input[type="email"]::placeholder { color: rgba(250,248,244,0.55); }
        .nl-form input[type="email"]:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.16); }
        .nl-form button[type="submit"] { padding: 15px 24px; background: var(--sand); color: var(--teal-deep); font-family: "boreal", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: background .2s; }
        .nl-form button[type="submit"]:hover { background: var(--cream); }
        .nl-success { display: none; font-size: 15px; font-weight: 700; color: var(--cream); padding: 18px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); text-align: center; }
        .nl-disclaimer { font-size: 11px; opacity: 0.5; line-height: 1.55; }

        /* ── STICKY BAR (mobile) ── */
        .sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: var(--sh-green); color: var(--cream); padding: 12px 20px; align-items: center; justify-content: space-between; box-shadow: 0 -4px 20px rgba(0,0,0,0.18); }
        .sticky-bar-text { font-size: 12px; font-weight: 300; }
        .sticky-bar-text strong { font-weight: 700; display: block; font-size: 14px; }
        .sticky-bar-btn { background: var(--sand); color: var(--teal-deep); font-family: "boreal", sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 18px; white-space: nowrap; }

        /* ── RESPONSIVE ── */
        @media (max-width: 1100px) {
            .hero { padding: 52px 40px 64px; }
            .hero-grid { gap: 40px; }
        }
        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
        }
        @media (max-width: 900px) {
            .hero { background-image: url('../img/stralsund-daecher.webp'); background-size: cover; background-position: center top; }
            .hero::after { content: ''; position: absolute; inset: 0; background: rgba(30,54,64,0.72); z-index: 1; }
            .hero-label-row, .hero-grid { position: relative; z-index: 2; }
            .hero-grid { grid-template-columns: 1fr; gap: 0; }
            .hero-image-wrap { display: none; }
            .hero-label-row { flex-direction: column; gap: 4px; align-items: flex-start; }
            .hero h1 { font-size: clamp(36px, 8vw, 58px); }
            .hero-sub { max-width: 100%; font-size: 16px; }
        }
        @media (max-width: 860px) {
            .props-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
            .props-section-header { grid-template-columns: 1fr; max-width: 580px; }
            .direct-section .section-header { max-width: 580px; }
            .direct-tiles { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 32px; }
            .bestpreis-banner { flex-direction: column; text-align: center; }
            .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
            .sh-teaser { grid-template-columns: 1fr; }
            .sh-teaser-img { min-height: 280px; }
            .sh-teaser-content { padding: 52px 40px; }
        }
        @media (max-width: 768px) {
            .header-nav, .lang-toggle, .header-cta { display: none; }
            .hamburger { display: flex; }
            .site-header { padding: 0 20px; }
            .hero { padding: 40px 20px 52px; }
            .usp-strip { padding: 32px 20px; }
            .usp-strip-inner { flex-direction: column; gap: 24px; }
            .usp-item { border-right: none; border-bottom: 1px solid rgba(74,120,134,0.15); padding: 0 0 24px; }
            .usp-item:last-child { border-bottom: none; padding-bottom: 0; }
            .properties, .direct-section, .reviews-section { padding: 60px 20px; }
            .site-footer { padding: 44px 20px 28px; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
            .footer-bottom a { margin-left: 8px; }
            .sticky-bar { display: flex; }
            body { padding-bottom: 60px; }
            .faq-section { padding: 60px 28px; }
            .newsletter-section { padding: 52px 20px; }
            .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
        }
        @media (max-width: 480px) {
            .hero-ctas { flex-direction: column; align-items: flex-start; }
            .hero-trust { flex-direction: column; gap: 8px; }
            .prop-card-actions { flex-direction: column; }
        }
        @media (max-width: 640px) { .cky-btn-revisit-wrapper { display: none !important; } }
