:root {
    --bg-light: #fdfcfb;
    --text-dark: #1a1a1a;
    --gold: #bd9b60;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 300;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.narrow {
    max-width: 700px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: white;
    letter-spacing: 1px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600607687644-c7171b42498f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: -1;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 2rem;
}

.detail {
    display: flex;
    flex-direction: column;
}

.detail span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.detail strong {
    font-size: 1.5rem;
    font-family: var(--font-serif);
}

/* Intro */
.intro-section {
    padding: 8rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intro-text p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-text {
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 0.25rem;
}

.img-box {
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1628148887413-5b822d3d3ef4?ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 800px;
}

.g-item {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.wide {
    grid-column: span 2;
}

.g-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    opacity: 0;
    transition: 0.5s;
    transform: translateY(20px);
}

.g-item:hover .g-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Features */
.features-section {
    padding: 6rem 0;
    background: #111;
    color: white;
}

.features-list {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 2rem;
}

.feature i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.feature h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature p {
    color: #888;
    max-width: 300px;
    margin: 0 auto;
}

/* Inquire */
.inquire-section {
    padding: 8rem 0;
    text-align: center;
}

.inquire-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.agent-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.agent-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.agent-info {
    text-align: left;
}

.agent-info h3 {
    font-size: 1.5rem;
}

.agent-info span {
    display: block;
    color: #777;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-links a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input {
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: var(--font-sans);
}

.contact-form input:focus {
    outline: none;
    border-color: var(--text-dark);
}

.btn-submit {
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--gold);
}

.footer {
    border-top: 1px solid #eee;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer p {
    font-size: 0.8rem;
    color: #999;
}

.footer a {
    color: #555;
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .g-item {
        height: 300px;
    }

    .wide {
        grid-column: auto;
    }
}