:root {
    --text: #202522;
    --muted: #66706a;
    --light: #f5f7f4;
    --white: #ffffff;
    --accent: #315c4b;
    --accent-dark: #244637;
    --border: #e1e6e2;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

.hero {
    min-height: 650px;
    background:
        linear-gradient(135deg, #20352d, #5d7669);
    color: white;
    display: flex;
    align-items: center;
}

.hero-overlay {
    width: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,.35), transparent);
}

.hero-content {
    max-width: 1100px;
    margin: auto;
    padding: 100px 30px;
}

.badge,
.eyebrow {
    display: inline-block;
    letter-spacing: 2px;
    font-size: .78rem;
    font-weight: 700;
}

.badge {
    border: 1px solid rgba(255,255,255,.5);
    padding: 8px 14px;
    border-radius: 30px;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 500;
    margin: 25px 0 15px;
}

.location {
    font-size: 1.15rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 25px 0;
}

.button {
    display: inline-block;
    padding: 14px 25px;
    background: white;
    color: var(--accent-dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
}

.section-container {
    max-width: 1100px;
    margin: auto;
    padding: 90px 30px;
}

.intro {
    text-align: center;
}

.eyebrow {
    color: var(--accent);
}

h2 {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    font-weight: 500;
    margin: 12px 0 25px;
}

.lead {
    max-width: 800px;
    margin: auto;
    color: var(--muted);
    font-size: 1.1rem;
}

.features {
    background: var(--light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.feature {
    background: white;
    padding: 35px;
}

.icon {
    font-size: 2rem;
}

.feature h3,
.location-card h3,
.project-card h3 {
    margin-bottom: 8px;
}

.feature p,
.location-card p,
.project-card p {
    color: var(--muted);
    margin-top: 0;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.note {
    padding: 15px 20px;
    background: var(--light);
    color: var(--muted);
    font-size: .9rem;
}

.plan-placeholder {
    background: var(--light);
}

.placeholder-box {
    min-height: 260px;
    border: 2px dashed #cbd5ce;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muted);
    padding: 30px;
}

.placeholder-box span {
    font-size: 3rem;
}

.location-section {
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.location-card,
.project-card {
    border: 1px solid var(--border);
    padding: 30px;
}

.location-card > span,
.project-card > span {
    font-size: 2rem;
}

.project {
    background: var(--light);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-placeholder {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.photo-placeholder {
    aspect-ratio: 4 / 3;
    background: #e9eeea;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #718078;
    font-size: 2rem;
}

.photo-placeholder span {
    font-size: .9rem;
    margin-top: 10px;
}

.contact {
    background: var(--accent-dark);
    color: white;
    text-align: center;
}

.contact .eyebrow {
    color: #dce8e0;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.button-light {
    background: white;
}

footer {
    background: #18251f;
    color: #aebbb3;
    text-align: center;
    padding: 25px;
    font-size: .85rem;
}

@media (max-width: 800px) {
    .feature-grid,
    .location-grid,
    .project-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero {
        min-height: 580px;
    }

    .hero-content {
        padding: 80px 25px;
    }

    .section-container {
        padding: 65px 22px;
    }
}
