:root {
    --primary: #a0243b;
    --primary-dark: #82061d;
    --primary-light: #c84c63;
    --text: #0a0a0a;
    --bg: #fff;
    --muted: #f7f7f7;
}
* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
    background: var(--bg);
}
a {
    color: var(--primary);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #ffffffd9;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #eee;
}
.nav {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10%;
}
.brand img {
    height: 34px;
    vertical-align: middle;
}
.hero {
    background: url("assets/images/hero.jpg") center/cover no-repeat;
    height: 70vh;
    position: relative;
    display: grid;
    place-items: end center;
}
.hero .overlay {
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
    padding: 60px 10%;
    text-align: center;
}
.hero h1 {
    color: #fff;
    font-size: 42px;
    margin: 0;
}
.hero p {
    color: #f3dfe4;
    font-size: 18px;
    margin: 8px 0 16px;
}
.btn {
    display: inline-block;
    padding: 12px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
}
.btn:hover {
    background: var(--primary-dark);
}
.container {
    padding: 60px 10%;
}
.section-muted {
    background: var(--muted);
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.card h3 {
    margin-top: 0;
    color: var(--primary);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}
.map-section {
    padding: 60px 10%;
    background: var(--muted);
}
#map {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}
.map-legend {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #555;
    font-size: 0.95rem;
}
.map-legend .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}
.map-legend .property {
    background: var(--primary);
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 24px;
}
@media (max-width: 980px) {
    .service-cards,
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
    .hero {
        height: 56vh;
    }
}
@media (max-width: 640px) {
    .service-cards,
    .gallery {
        grid-template-columns: 1fr;
    }
    .nav {
        padding: 12px 6%;
    }
    .container,
    .map-section {
        padding: 40px 6%;
    }
    .hero h1 {
        font-size: 32px;
    }
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.95rem;
    color: #666;
    margin: 14px 0;
}
.breadcrumb a {
    color: var(--primary);
}
.breadcrumb .sep {
    margin: 0 6px;
    color: #999;
}

/* Property gallery */
.property-gallery {
    margin-top: 16px;
}
.property-gallery .thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.property-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}
.property-gallery video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}
@media (max-width: 800px) {
    .property-gallery .thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
    .property-gallery img {
        height: 150px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.lightbox.open {
    display: flex;
}
.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}
.lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 24px;
    color: #fff;
    font-size: 36px;
    user-select: none;
}
.lightbox .prev,
.lightbox .next {
    position: relaive;
    cursor: pointer;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 6px;
}
