@import url('../../designsystem/design-tokens.css');
/* ===== RESET & BASE ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --sh-green:      #4C808E;
            --sh-green-dark: #3a6470;
            --sh-green-50:   rgba(76, 128, 142, 0.5);
            --sh-green-15:   rgba(76, 128, 142, 0.12);
            --white:         #ffffff;
            --off-white:     #f7f5f2;
            --text-dark:     #2d3438;
            --text-mid:      #5a6168;
            --teal-deep:     #1e3640;
            --sand:          #F4E9D8;
            --sand-warm:     #e8d5b8;
            --star-gold:     #d4a017;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: "boreal", sans-serif;
            font-weight: 300;
            color: var(--text-dark);
            line-height: 1.65;
            background: #fff;
        }

        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: 14px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 14px 32px;
            border: 2px solid var(--sh-green);
            cursor: pointer;
            transition: background .2s, color .2s, transform .1s;
        }
        .btn-primary:hover {
            background: var(--sh-green-dark);
            border-color: var(--sh-green-dark);
            transform: translateY(-1px);
        }
        .btn-outline-white {
            display: inline-block;
            background: transparent;
            color: #fff;
            font-family: "boreal", sans-serif;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 14px 32px;
            border: 2px solid #fff;
            cursor: pointer;
            transition: background .2s, color .2s;
        }
        .btn-outline-white:hover {
            background: #fff;
            color: var(--sh-green);
        }
        .btn-outline-dark {
            display: inline-block;
            background: transparent;
            color: var(--sh-green);
            font-family: "boreal", sans-serif;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 14px 32px;
            border: 2px solid var(--sh-green);
            cursor: pointer;
            transition: background .2s, color .2s;
        }
        .btn-outline-dark:hover {
            background: var(--sh-green);
            color: #fff;
        }

        /* ===== ANNOUNCEMENT BAR ===== */
        .announcement-bar {
            background: var(--sh-green);
            color: #fff;
            text-align: center;
            padding: 10px 24px;
            font-size: 13px;
            font-weight: 300;
            letter-spacing: 0.5px;
        }
        .announcement-bar strong { font-weight: 700; }
        .announcement-bar a {
            color: #fff;
            text-decoration: underline;
            margin-left: 10px;
            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: 16px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .site-header .logo img { height: 44px; width: auto; }
        .site-header nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .site-header nav a {
            color: var(--text-dark);
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.5px;
            transition: color .2s;
        }
        .site-header nav a:hover { color: var(--sh-green); }
        .site-header nav a.btn-primary {
            color: #fff !important;
            background: var(--sh-green);
        }
        .site-header nav a.btn-primary:hover {
            color: #fff !important;
            background: var(--sh-green-dark);
        }

        /* ===== 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: var(--text-dark);
            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% + 14px); 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: var(--text-dark); letter-spacing: 0.3px; font-weight: 300;
            transition: background .15s, color .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: 700; }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            height: 92vh;
            min-height: 560px;
            overflow: hidden;
        }
        .hero-slider { position: absolute; inset: 0; }
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.4s ease-in-out;
        }
        .hero-slide.active { opacity: 1; }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                rgba(0,0,0,0.10) 0%,
                rgba(0,0,0,0.20) 40%,
                rgba(0,0,0,0.60) 100%
            );
        }
        .hero-content {
            position: absolute;
            bottom: 9%;
            left: 0; right: 0;
            text-align: center;
            color: #fff;
            padding: 0 24px;
        }
        .hero-eyebrow {
            font-size: 12px;
            letter-spacing: 5px;
            text-transform: uppercase;
            font-weight: 300;
            opacity: 0.85;
            margin-bottom: 18px;
        }
        .hero-title {
            font-size: clamp(42px, 7vw, 88px);
            font-weight: 100;
            line-height: 1.05;
            letter-spacing: 2px;
            margin-bottom: 18px;
        }
        .hero-title strong { font-weight: 700; }
        .hero-title em { font-style: italic; font-weight: 700; color: var(--sand); }
        .hero-subtitle {
            font-size: clamp(15px, 2vw, 19px);
            font-weight: 300;
            opacity: 0.9;
            margin-bottom: 40px;
            letter-spacing: 0.5px;
        }
        .hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .hero-dots {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        .hero-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: rgba(255,255,255,0.45);
            cursor: pointer;
            transition: background .3s;
        }
        .hero-dot.active { background: #fff; }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            background: var(--teal-deep);
            color: #fff;
        }
        .trust-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            padding: 0;
        }
        .trust-item {
            padding: 28px 24px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,0.15);
        }
        .trust-item:last-child { border-right: none; }
        .trust-icon {
            display: flex;
            justify-content: center;
            margin-bottom: 12px;
        }
        .trust-icon svg {
            width: 28px; height: 28px;
            stroke: #fff;
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .trust-label {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-bottom: 5px;
        }
        .trust-desc { font-size: 13px; opacity: 0.8; font-weight: 300; }

        /* ===== GENERIC SECTION ===== */
        section { padding: 90px 48px; }
        .container { max-width: 1200px; margin: 0 auto; }

        .label-tag {
            display: inline-block;
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--sh-green);
            font-weight: 400;
            margin-bottom: 14px;
        }
        h2.section-title {
            font-size: clamp(30px, 4.5vw, 54px);
            font-weight: 100;
            line-height: 1.12;
            letter-spacing: 1px;
            margin-bottom: 22px;
        }
        h2.section-title strong { font-weight: 700; }
        h2.section-title em { font-style: italic; font-weight: 700; color: var(--sh-green); }
            font-size: 17px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-mid);
        }

        /* ===== INTRO SPLIT ===== */
        .intro-section { background: #fff; }
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }
        .intro-img-wrap {
            overflow: hidden;
            aspect-ratio: 4 / 3;
        }
        .intro-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform .7s ease;
        }
        .intro-img-wrap:hover img { transform: scale(1.04); }
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 20px;
            margin-top: 30px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 14px;
            color: var(--text-mid);
        }
        .feature-dot {
            width: 5px; height: 5px;
            border-radius: 50%;
            background: var(--sh-green);
            flex-shrink: 0;
        }

        /* ===== APARTMENTS ===== */
        .apartments-section { background: var(--off-white); }
        .apt-tabs {
            display: flex;
            border-bottom: 2px solid #ddd;
            margin-bottom: 48px;
            gap: 4px;
        }
        .apt-tab {
            padding: 14px 36px;
            font-family: "boreal", sans-serif;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
            cursor: pointer;
            color: var(--text-mid);
            transition: all .2s;
        }
        .apt-tab.active {
            color: var(--sh-green);
            border-bottom-color: var(--sh-green);
            font-weight: 700;
        }
        .apt-tab:hover { color: var(--sh-green); }

        .apt-panel { display: none; }
        .apt-panel.active {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .apt-img-wrap {
            position: relative;
            overflow: hidden;
        }

        /* ── Apartment Slider ── */
        .apt-slider {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #eee;
        }
        .apt-slide {
            position: absolute;
            inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity .5s ease;
        }
        .apt-slide.active { opacity: 1; }
        .apt-slider-btn {
            position: absolute;
            top: 50%; transform: translateY(-50%);
            z-index: 10;
            background: rgba(255,255,255,0.88);
            border: none;
            width: 40px; height: 40px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            transition: background .2s, opacity .2s;
        }
        .apt-slider-btn:hover { background: #fff; }
        .apt-slider-btn svg {
            width: 18px; height: 18px;
            stroke: var(--sh-green);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .apt-slider-prev { left: 12px; }
        .apt-slider-next { right: 12px; }
        .apt-slider-dots {
            position: absolute;
            bottom: 12px; left: 50%;
            transform: translateX(-50%);
            display: flex; gap: 7px;
            z-index: 10;
        }
        .apt-slider-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            border: none;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            padding: 0;
            transition: background .25s;
        }
        .apt-slider-dot.active { background: #fff; }
        .apt-counter {
            position: absolute;
            top: 12px; right: 12px;
            background: rgba(0,0,0,0.38);
            color: #fff;
            font-size: 12px;
            font-family: "boreal", sans-serif;
            font-weight: 300;
            letter-spacing: 1px;
            padding: 4px 10px;
            z-index: 10;
        }

        .apt-badge {
            position: absolute;
            top: 20px; left: 20px;
            background: var(--sh-green);
            color: #fff;
            padding: 6px 16px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .apt-info { display: flex; flex-direction: column; gap: 28px; }
        .apt-title {
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 100;
            letter-spacing: 1px;
        }
        .apt-title strong { font-weight: 700; }
        .apt-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .apt-meta-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-mid);
            background: #fff;
            padding: 7px 14px;
        }
        .apt-meta-chip svg {
            width: 16px; height: 16px;
            stroke: var(--sh-green);
            fill: none;
            stroke-width: 1.75;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex-shrink: 0;
        }
        .apt-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 16px;
        }
        .apt-feature {
            font-size: 14px;
            color: var(--text-mid);
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .apt-feature::before {
            content: "✓";
            color: var(--sh-green);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .apt-variants {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .apt-variant {
            border: 1px solid #ddd;
            background: #fff;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.5;
        }
        .apt-variant strong {
            display: block;
            font-size: 14px;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 2px;
        }

        /* ===== DIGITAL CHECK-IN ===== */
        .checkin-section {
            background: var(--sh-green);
            color: #fff;
        }
        .checkin-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }
        .checkin-label { color: rgba(255,255,255,0.65); }
        .checkin-title {
            font-size: clamp(28px, 4vw, 50px);
            font-weight: 100;
            line-height: 1.12;
            letter-spacing: 1px;
            margin-bottom: 18px;
            color: #fff;
        }
        .checkin-title strong { font-weight: 700; }
        .checkin-lead {
            font-size: 16px;
            font-weight: 300;
            line-height: 1.75;
            color: rgba(255,255,255,0.85);
            margin-bottom: 36px;
        }
        .checkin-steps { display: flex; flex-direction: column; gap: 26px; }
        .step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .step-num {
            width: 38px; height: 38px;
            border: 1.5px solid rgba(255,255,255,0.35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
            color: #fff;
        }
        .step-body { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 300; line-height: 1.6; }
        .step-body strong { display: block; color: #fff; font-weight: 700; margin-bottom: 3px; }
        .checkin-img-wrap {
            overflow: hidden;
            aspect-ratio: 3 / 4;
        }
        .checkin-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

        /* ===== REVIEWS ===== */
        .reviews-section { background: #fff; }
        .reviews-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 48px;
            flex-wrap: wrap;
            gap: 20px;
        }
        .google-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--off-white);
            padding: 14px 20px;
        }
        .stars { color: var(--star-gold); font-size: 20px; letter-spacing: 2px; }
        .rating-num { font-size: 26px; font-weight: 700; line-height: 1; }
        .rating-sub { font-size: 12px; color: var(--text-mid); letter-spacing: 0.5px; margin-top: 2px; }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .review-card {
            background: var(--off-white);
            padding: 28px;
        }
        .review-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .avatar {
            width: 42px; height: 42px;
            border-radius: 50%;
            background: var(--sh-green-15);
            color: var(--sh-green);
            font-size: 16px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .author-name { font-size: 15px; font-weight: 700; }
        .author-when { font-size: 12px; color: var(--text-mid); margin-top: 2px; }
        .review-stars { color: var(--star-gold); font-size: 13px; margin-bottom: 12px; letter-spacing: 1px; }
        .review-text {
            font-size: 14px;
            line-height: 1.75;
            color: var(--text-mid);
            font-weight: 300;
        }

        /* ===== LOCATION ===== */
        .location-section { background: var(--off-white); }
        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }
        .location-points { margin-top: 28px; }
        .location-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid #ddd;
            font-size: 15px;
        }
        .location-dist {
            font-size: 13px;
            font-weight: 700;
            color: var(--sh-green);
        }
        .map-wrap {
            aspect-ratio: 4 / 3;
            overflow: hidden;
        }
        .map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

        /* ===== IBE BUCHUNG ===== */
        .ibe-section { background: #f2f0ec; padding: 80px 32px 96px; }
        .ibe-section .container { max-width: 1280px; margin: 0 auto; }
        ibe-up { display: block; min-height: 600px; }

        /* ===== FINAL CTA ===== */
        .final-cta {
            position: relative;
            text-align: center;
            padding: 110px 48px;
            background: #2d3438;
            overflow: hidden;
        }
        .final-cta-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.22;
        }
        .final-cta-content { position: relative; z-index: 1; }
        .final-cta .label-tag { color: rgba(255,255,255,0.6); }
        .final-cta h2 { color: #fff; max-width: 700px; margin: 0 auto 22px; }
        .final-cta p { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 44px; font-size: 17px; font-weight: 300; line-height: 1.7; }
        .trust-footnote {
            margin-top: 22px;
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.5px;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #2d3438;
            color: rgba(255,255,255,0.55);
            padding: 36px 48px;
            font-size: 13px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-logo img { height: 22px; opacity: 0.45; }
        .footer-sub { margin-top: 6px; font-size: 12px; }
        .footer-links { display: flex; gap: 24px; }
        .footer-links a { color: rgba(255,255,255,0.55); transition: color .2s; }
        .footer-links a:hover { color: #fff; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 960px) {
            section { padding: 70px 32px; }
            .site-header { padding: 14px 32px; }
            .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
            .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
            .intro-grid,
            .checkin-grid,
            .location-grid { grid-template-columns: 1fr; gap: 40px; }
            .apt-panel.active { grid-template-columns: 1fr; gap: 32px; }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            section { padding: 56px 20px; }
            .site-header { padding: 14px 20px; }
            .site-header nav a:not(.btn-primary) { display: none; }
            .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; }
            .site-header nav a.btn-primary { font-size: 11px !important; padding: 9px 14px !important; letter-spacing: 0.8px !important; }
            .trust-bar-inner { grid-template-columns: 1fr 1fr; }
            .reviews-grid { grid-template-columns: 1fr; }
            .apt-tabs { overflow-x: auto; white-space: nowrap; }
            .apt-tab { padding: 12px 20px; font-size: 13px; }
            .apt-features { grid-template-columns: 1fr; }
            .feature-grid { grid-template-columns: 1fr; }
            .footer-inner { flex-direction: column; text-align: center; align-items: center; }
            .footer-links { flex-wrap: wrap; justify-content: center; }
            .final-cta { padding: 72px 20px; }
            .hero-cta { flex-direction: column; align-items: center; }
        }

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