:root {
    --gold: #d4af37;
    --navy: #0d121c;
    --card-bg: #151c2a;
    --text-white: #ffffff;
    --text-muted: #a5b1c5;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--navy); color: var(--text-white); font-family: var(--font-body); line-height: 1.6; }

.nav { display: flex; justify-content: space-between; align-items: center; padding: 2rem 5%; position: absolute; width: 100%; z-index: 10; }
.logo { font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: 2px; }
.links a { color: var(--text-white); text-decoration: none; margin-left: 2.5rem; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; transition: color 0.3s; }
.links a:hover { color: var(--gold); }

.hero { height: 100vh; display: flex; align-items: center; position: relative; padding: 0 5%; }
.hero-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(13,18,28,0.7), rgba(13,18,28,0.9)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; z-index: -1; }

.hero-content h1 { font-family: var(--font-heading); font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 400; }
.hero-content h1 span { color: var(--gold); font-style: italic; }
.hero-content p { color: var(--text-muted); font-size: 1.25rem; max-width: 500px; font-weight: 300; margin-bottom: 3rem; }

.btn-luxury { display: inline-block; background: transparent; border: 1px solid var(--gold); color: var(--gold); text-decoration: none; padding: 1rem 2.5rem; text-transform: uppercase; font-family: var(--font-heading); font-size: 0.95rem; letter-spacing: 1.5px; transition: all 0.3s; }
.btn-luxury:hover { background: var(--gold); color: var(--navy); }

/* Listings */
.listings { padding: 8rem 5%; }
.section-title { margin-bottom: 4rem; }
.section-title h2 { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 400; margin-bottom: 0.5rem; }
.line { width: 50px; height: 1px; background: var(--gold); }

.listings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.listing-card { background: var(--card-bg); overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s; }
.listing-card:hover { transform: translateY(-5px); }
.listing-img { height: 350px; overflow: hidden; }
.listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.listing-card:hover .listing-img img { transform: scale(1.03); }
.listing-info { padding: 2rem; }
.listing-info h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 400; }
.location { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.2rem; }
.price { color: var(--gold); font-family: var(--font-heading); font-size: 1.6rem; }

/* About */
.about { padding: 8rem 5%; background-image: linear-gradient(rgba(13,18,28,0.85), rgba(13,18,28,0.85)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; display: flex; justify-content: flex-end; }
.about-container { max-width: 600px; background: rgba(21, 28, 42, 0.95); padding: 4rem; border: 1px solid rgba(212, 175, 55, 0.2); }
.about-text h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--gold); font-weight: 400; }
.about-text p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

/* Footer */
footer { padding: 8rem 5%; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.contact-box h2 { font-family: var(--font-heading); font-size: 2.8rem; margin-bottom: 1rem; font-weight: 400; }
.contact-box p { color: var(--text-muted); margin-bottom: 3rem; }

@media (max-width: 900px) {
    .listings-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3rem; }
    .about-container { max-width: 100%; padding: 2rem; }
    .nav { position: static; }
}