:root {
            --sh-green:      #4C808E;
            --sh-green-dark: #3a6470;
            --sh-green-15:   rgba(76,128,142,0.12);
            --off-white:     #f7f5f2;
            --cream:         #faf8f5;
            --text-dark:     #2d3438;
            --text-mid:      #5a6168;
            --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: #fff; 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: #fff; font-family: "boreal", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; padding: 14px 28px; border: 2px solid var(--sh-green); transition: all .2s; cursor: pointer; }
        .btn-primary:hover { background: var(--sh-green-dark); border-color: var(--sh-green-dark); transform: translateY(-1px); }
        .btn-white { display: inline-block; background: #fff; color: var(--sh-green); font-family: "boreal", sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; padding: 16px 36px; transition: all .2s; }
        .btn-white:hover { background: var(--off-white); }
        .btn-outline-white { display: inline-block; background: transparent; color: #fff; font-family: "boreal", sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; padding: 16px 36px; border: 2px solid rgba(255,255,255,0.6); transition: all .2s; }
        .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }

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

        /* ── HEADER ── */
        .site-header { position: sticky; top: 0; z-index: 900; background: #fff; box-shadow: 0 1px 12px rgba(0,0,0,0.09); padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 72px; transition: box-shadow .3s; }
        .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: 13px; font-weight: 300; letter-spacing: 0.3px; color: var(--text-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: #fff; box-shadow: 0 8px 28px rgba(0,0,0,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(0,0,0,0.06); 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(0,0,0,0.15); 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(0,0,0,0.2); }
        .header-cta { display: inline-block; background: var(--sh-green); color: #fff; font-family: "boreal", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; padding: 11px 22px; 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: #fff; z-index: 850; overflow-y: auto; }
        .mobile-menu.open { display: block; }
        .mm-section { padding: 12px 24px 6px; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-mid); background: var(--off-white); border-top: 1px solid rgba(0,0,0,0.06); }
        .mobile-menu a { display: block; padding: 14px 24px; font-size: 15px; font-weight: 300; border-bottom: 1px solid rgba(0,0,0,0.06); 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: #fff !important; margin: 16px; padding: 15px !important; text-align: center; font-family: "boreal", sans-serif; font-weight: 700 !important; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; border-bottom: none !important; }
        .mm-cta:hover { background: var(--sh-green-dark) !important; }

        /* ── HERO ── */
        .hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; overflow: hidden; color: #fff; text-align: center; }
        .hero-bg { position: absolute; inset: 0; background: url('../img/stralsund-daecher.jpg') center/cover no-repeat; }
        .hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(45,52,56,0.5) 0%, rgba(58,100,112,0.65) 100%); }
        .hero-inner { position: relative; z-index: 1; max-width: 820px; padding: 80px 28px 64px; margin: 0 auto; }
        .hero-badge { display: inline-flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,0.3); padding: 7px 20px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 300; opacity: 0.85; margin-bottom: 36px; }
        .hero-badge span { display: block; width: 20px; height: 1px; background: var(--gold); }
        .hero h1 { font-size: clamp(36px, 6.5vw, 76px); font-weight: 100; line-height: 1.04; letter-spacing: -0.5px; margin-bottom: 24px; }
        .hero h1 strong { font-weight: 700; display: block; }
        .hero-sub { font-size: clamp(15px, 1.9vw, 19px); font-weight: 300; opacity: 0.88; margin-bottom: 44px; line-height: 1.65; }
        .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
        .hero-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 32px; font-size: 12px; font-weight: 300; opacity: 0.78; letter-spacing: 0.3px; }
        .hero-trust span::before { content: "✓  "; font-weight: 700; }

        /* ── USP STRIP ── */
        .usp-strip { background: var(--off-white); padding: 44px 48px; border-bottom: 1px solid rgba(0,0,0,0.06); }
        .usp-strip-inner { max-width: 1060px; margin: 0 auto; display: flex; align-items: stretch; justify-content: center; }
        .usp-item { flex: 1; padding: 0 32px; text-align: center; border-right: 1px solid rgba(0,0,0,0.08); }
        .usp-item:last-child { border-right: none; }
        .usp-icon { margin-bottom: 10px; } .usp-icon svg { width: 26px; height: 26px; }
        .usp-title { font-size: 14px; font-weight: 700; margin-bottom: 5px; color: var(--text-dark); }
        .usp-text { font-size: 12px; color: var(--text-mid); line-height: 1.55; }

        /* ── SECTION ── */
        .section-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; font-weight: 300; color: var(--sh-green); margin-bottom: 12px; }
        .section-title { font-size: clamp(26px, 4vw, 44px); font-weight: 100; letter-spacing: -0.3px; line-height: 1.15; }
        .section-title strong { font-weight: 700; }
        .section-header { text-align: center; margin-bottom: 52px; }

        /* ── PROPERTIES ── */
        .properties { padding: 88px 48px; }
        .props-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1160px; margin: 0 auto; }
        .prop-card { display: flex; flex-direction: column; background: #fff; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); transition: transform .25s, box-shadow .25s; }
        .prop-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.13); border-color: transparent; }
        .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(0,0,0,0.52) 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; right: 16px; z-index: 2; background: rgba(255,255,255,0.92); color: var(--sh-green); font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 5px 12px; text-transform: uppercase; }
        .prop-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
        .prop-card-tag { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sh-green); font-weight: 300; margin-bottom: 8px; }
        .prop-card-title { font-size: 22px; font-weight: 100; margin-bottom: 12px; line-height: 1.2; }
        .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: 14px; color: var(--text-mid); line-height: 1.68; margin-bottom: 22px; flex: 1; }
        .chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
        .chip { font-size: 11px; padding: 5px 12px; border: 1px solid rgba(0,0,0,0.12); color: var(--text-mid); letter-spacing: 0.2px; }
        .prop-card-actions { display: flex; gap: 10px; }
        .btn-card-p { flex: 1; display: block; background: var(--sh-green); color: #fff; font-family: "boreal", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; padding: 13px; text-align: center; border: 2px solid var(--sh-green); transition: all .2s; white-space: nowrap; }
        .btn-card-p:hover { background: var(--sh-green-dark); border-color: var(--sh-green-dark); }
        .btn-card-o { display: block; background: transparent; color: var(--sh-green); font-family: "boreal", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; padding: 13px 18px; text-align: center; border: 2px solid var(--sh-green); transition: all .2s; white-space: nowrap; }
        .btn-card-o:hover { background: var(--sh-green); color: #fff; }

        /* ── DIRECT BOOKING ── */
        .direct-section { padding: 88px 48px; background: var(--cream); }
        .direct-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 960px; margin: 0 auto 32px; }
        .direct-tile { background: #fff; padding: 36px 28px; border-top: 3px solid var(--sh-green); }
        .tile-icon { margin-bottom: 14px; } .tile-icon svg { width: 30px; height: 30px; }
        .direct-tile h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
        .direct-tile p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
        .bestpreis-banner { max-width: 960px; margin: 0 auto; background: var(--sh-green); color: #fff; 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: #fff; color: var(--sh-green); font-family: "boreal", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; padding: 13px 26px; white-space: nowrap; flex-shrink: 0; transition: background .2s; }
        .bestpreis-banner a:hover { background: var(--off-white); }

        /* ── 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-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_mit_St._Nikolai-Kirche.jpg') center/cover no-repeat; }
        .sh-teaser-content { background: var(--sh-green); color: #fff; padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
        .sh-teaser-content .section-label { color: rgba(255,255,255,0.65); }
        .sh-teaser-content .section-title { color: #fff; margin-bottom: 20px; }
        .sh-teaser-content p { font-size: 15px; opacity: 0.88; line-height: 1.72; margin-bottom: 32px; }

        /* ── FOOTER ── */
        .site-footer { background: var(--text-dark); color: rgba(255,255,255,0.48); padding: 60px 48px 36px; }
        .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; max-width: 1160px; margin: 0 auto 52px; }
        .footer-logo img { height: 36px; filter: brightness(0) invert(1); opacity: 0.8; margin-bottom: 16px; }
        .footer-tagline { font-size: 13px; line-height: 1.7; opacity: 0.55; }
        .footer-col-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; font-weight: 300; }
        .footer-links { display: flex; flex-direction: column; gap: 10px; }
        .footer-links a { font-size: 13px; color: rgba(255,255,255,0.48); transition: color .2s; }
        .footer-links a:hover { color: #fff; }
        .footer-contact { font-size: 13px; line-height: 1.9; }
        .footer-contact a { color: rgba(255,255,255,0.48); text-decoration: underline; }
        .footer-contact a:hover { color: #fff; }
        .footer-bottom { max-width: 1160px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; }
        .footer-bottom a { color: rgba(255,255,255,0.38); margin-left: 16px; transition: color .2s; }
        .footer-bottom a:hover { color: #fff; }

        /* ── LANGUAGE TOGGLE (deaktiviert bis EN-Inhalt verfügbar) ── */
        .lang-toggle { display: none !important; }

        /* ── PROP PRICE ── */
        .prop-price { font-size: 19px; font-weight: 700; color: var(--sh-green); margin: -4px 0 16px; }
        .prop-price span { font-size: 12px; font-weight: 300; color: var(--text-mid); }

        /* ── 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(0,0,0,0.08); }
        .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); color: #fff; 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: rgba(255,255,255,0.65); }
        .nl-text h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 100; color: #fff; margin-bottom: 12px; line-height: 1.2; }
        .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.12); color: #fff; font-family: "boreal", sans-serif; font-size: 14px; outline: none; }
        .nl-form input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }
        .nl-form input[type="email"]:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.18); }
        .nl-form button[type="submit"] { padding: 15px 24px; background: #fff; color: var(--sh-green); font-family: "boreal", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; border: none; cursor: pointer; transition: background .2s; }
        .nl-form button[type="submit"]:hover { background: var(--off-white); }
        .nl-success { display: none; font-size: 15px; font-weight: 700; color: #fff; 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: #fff; 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: #fff; color: var(--sh-green); font-family: "boreal", sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 10px 18px; white-space: nowrap; }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
        }
        @media (max-width: 860px) {
            .props-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
            .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: 500px; 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 { min-height: 88vh; }
            .hero-inner { padding: 56px 20px 48px; }
            .usp-strip { padding: 32px 20px; }
            .usp-strip-inner { flex-direction: column; gap: 24px; }
            .usp-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); 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; }
        }
        @media (max-width: 480px) {
            .hero-ctas { flex-direction: column; align-items: center; }
            .hero-trust { flex-direction: column; align-items: center; gap: 8px; }
        }        @media (max-width: 640px) { .cky-btn-revisit-wrapper { display: none !important; } }
