        :root {
            --bg: #f5f3ee;
            --surface: #ffffff;
            --surface-soft: #faf8f4;
            --text: #1f2937;
            --muted: #6b7280;
            --line: #e5e7eb;
            --accent: #111827;
            --accent-2: #16a34a;
            --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
            --radius: 18px;
            --radius-sm: 12px;
            --max: 1200px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
        }

        .property-container {
            max-width: var(--max);
            margin: 0 auto;
            padding: 24px 18px 56px;
        }

        .breadcrumbs {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 18px;
        }

        .breadcrumbs a {
            text-decoration: none;
            color: var(--muted);
        }

        .page-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
            gap: 28px;
            align-items: start;
        }

        .card,
        .sidebar-card {
            background: var(--surface);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .card {
            padding: 24px;
        }

        .gallery-card {
            overflow: hidden;
            padding: 0;
        }

        .gallery-main {
            position: relative;
            background: #ddd;
            aspect-ratio: 4 / 3;
            overflow: hidden;
        }

        .gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-badge {
            position: absolute;
            left: 18px;
            bottom: 18px;
            background: rgba(17, 24, 39, 0.82);
            color: #fff;
            font-size: 13px;
            padding: 8px 12px;
            border-radius: 999px;
        }

        .gallery-thumbs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 14px;
            background: var(--surface);
        }

        .gallery-thumbs img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid var(--line);
        }

        .sidebar {
            position: sticky;
            top: 20px;
        }

        .sidebar-card {
            padding: 24px;
        }

        h1 {
            font-size: 34px;
            line-height: 1.15;
            margin: 0 0 12px;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 24px;
            margin: 0 0 14px;
        }

        h3 {
            font-size: 20px;
            margin: 0 0 10px;
        }

        .eyebrow {
            display: inline-block;
            margin-bottom: 14px;
            font-size: 13px;
            font-weight: bold;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .summary {
            color: var(--muted);
            margin: 0 0 22px;
            font-size: 16px;
        }

        .price {
            font-size: 38px;
            font-weight: bold;
            line-height: 1;
            margin-bottom: 10px;
        }

        .price-note {
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 18px;
        }

        .location {
            display: flex;
            gap: 8px;
            align-items: center;
            color: var(--muted);
            margin-bottom: 18px;
            font-size: 15px;
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 18px;
        }

        .data-item {
            background: var(--surface-soft);
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 14px;
        }

        .data-label {
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--muted);
            margin-bottom: 4px;
        }

        .data-value {
            font-size: 16px;
            font-weight: bold;
        }

        .cta-group {
            margin-top: 20px;
        }

        .cta {
            display: block;
            width: 100%;
            text-align: center;
            text-decoration: none;
            padding: 14px 18px;
            border-radius: 12px;
            font-weight: bold;
            transition: transform 0.15s ease, opacity 0.15s ease;
        }

        .cta:hover {
            transform: translateY(-1px);
            opacity: 0.96;
        }

        .cta + .cta {
            margin-top: 12px;
        }

        .cta-whatsapp {
            background: var(--accent-2);
            color: #fff;
        }

        .cta-call {
            background: var(--accent);
            color: #fff;
        }

        .trust-note {
            margin-top: 16px;
            font-size: 14px;
            color: var(--muted);
        }

        .content-section + .content-section {
            margin-top: 22px;
        }

        .content-section p {
            margin: 0;
            white-space: normal;
        }

        .content-text {
            font-size: 16px;
            color: #374151;
        }

        .feature-list {
            margin: 0;
            padding-left: 18px;
            color: #374151;
        }

        .feature-list li + li {
            margin-top: 8px;
        }

        .highlight-box {
            background: #fcfaf6;
            border: 1px solid #ece7dc;
            border-radius: 16px;
            padding: 18px;
        }

        .bottom-cta {
            text-align: center;
        }

        .bottom-cta p {
            color: var(--muted);
            margin: 0 0 16px;
        }

        .soft-note {
            font-size: 14px;
            color: var(--muted);
            margin-top: 10px;
        }

        @media (max-width: 980px) {
            .page-grid {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
            }

            .gallery-main img {
                height: 380px;
            }
        }

        @media (max-width: 640px) {
            .property-container {
                padding: 18px 14px 40px;
            }

            .card,
            .sidebar-card {
                padding: 18px;
                border-radius: 16px;
            }

            .gallery-card {
                padding: 0;
            }

            .gallery-main img {
                height: 260px;
            }

            .gallery-thumbs {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                padding: 10px;
            }

            .gallery-thumbs img {
                height: 78px;
                border-radius: 10px;
            }

            h1 {
                font-size: 28px;
            }

            .price {
                font-size: 32px;
            }

            .data-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
