:root{
--cream:#f5f1e8;
--white:#ffffff;
--green:#244b35;
--dark:#172017;
--gold:#b98a2d;
--text:#202520;
--muted:#606860;
--line:rgba(23,32,23,.14);
--map-green:#62ae59;
--map-gray:#a9ada8;
}

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

html{
scroll-behavior:smooth;
}

body{
overflow-x:hidden;
background:var(--cream);
color:var(--text);
font-family:Arial, sans-serif;
line-height:1.55;
}

img{
display:block;
max-width:100%;
}

section{
scroll-margin-top:84px;
}

.topbar{
position:sticky;
top:0;
z-index:20;
display:flex;
align-items:center;
justify-content:space-between;
gap:18px;
min-height:76px;
padding:10px 6%;
background:var(--cream);
border-bottom:1px solid var(--line);
}

.topbar nav{
display:flex;
flex-wrap:wrap;
gap:4px;
}

.topbar nav a{
padding:9px 11px;
border-radius:999px;
color:var(--green);
font-size:11px;
font-weight:800;
letter-spacing:.4px;
text-decoration:none;
text-transform:uppercase;
}

.topbar nav a:hover

.topbar nav .nav-contact{
background:var(--green);
color:#fff;
}

.brand{
display:flex;
align-items:center;
gap:10px;
color:var(--green);
font-size:17px;
font-weight:900;
letter-spacing:.8px;
text-decoration:none;
text-transform:uppercase;
}

.brand img{
width:46px;
height:46px;
object-fit:contain;
}

.hero{
position:relative;
min-height:600px;
overflow:hidden;
background:#152616;
color:#fff;
}

.hero-image{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(10,28,16,.9),rgba(10,28,16,.58),rgba(10,28,16,.16));
}

.hero-content{
position:relative;
z-index:1;
max-width:720px;
padding:145px 8% 55px;
}

.eyebrow{
display:block;
color:#f0cc73;
font-size:12px;
font-weight:900;
letter-spacing:1.5px;
text-transform:uppercase;
}

.green-text{
color:var(--gold);
}

.hero h1{
margin:14px 0 20px;
font-size:76px;
letter-spacing:-3px;
line-height:.95;
}

.hero-content p{
max-width:620px;
color:#eef3ee;
font-size:20px;
}

.hero-buttons{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:30px;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:50px;
padding:13px 22px;
border:1px solid transparent;
border-radius:999px;
font-size:12px;
font-weight:900;
letter-spacing:.6px;
text-decoration:none;
text-transform:uppercase;
}

.btn-gold{
background:var(--gold);
color:#1b211b;
}

.btn-line{
border-color:rgba(255,255,255,.65);
color:#fff;
}

.facts{
display:grid;
grid-template-columns:repeat(4,1fr);
background:#fff;
}

.facts article{
min-height:190px;
padding:35px 12%;
border-right:1px solid var(--line);
}

.facts article:last-child{
border-right:0;
}

.facts span{
color:var(--gold);
font-size:12px;
font-weight:900;
}

.facts h2{
margin:13px 0 7px;
color:var(--dark);
font-size:23px;
line-height:1.15;
}

.facts p{
color:var(--muted);
font-size:14px;
}

.about,
.location,
.gallery,
.map-section,
.pricing,
.plots,
.contact{
padding:90px 8%;
}

.about{
display:grid;
grid-template-columns:.9fr 1.1fr;
gap:80px;
background:var(--cream);
}

.about h2,
.location h2,
.section-title h2,
.contact h2{
margin-top:14px;
color:var(--dark);
font-size:46px;
letter-spacing:-1.6px;
line-height:1.08;
}

.about-copy{
padding-top:23px;
}

.about-copy p,
.location p,
.section-title p{
color:var(--muted);
font-size:17px;
}

.about-copy p + p{
margin-top:17px;
}

.location{
display:grid;
grid-template-columns:.9fr 1.1fr;
gap:80px;
align-items:center;
background:#fff;
}

.location p{
max-width:560px;
margin-top:20px;
}

.location-extra{
color:var(--green)!important;
font-weight:800;
}

.travel-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:14px;
}

.travel-grid div{
min-height:125px;
padding:23px;
border-radius:18px;
background:#edf1eb;
}

.travel-grid strong,
.travel-grid span{
display:block;
}

.travel-grid strong{
color:var(--dark);
font-size:30px;
}

.travel-grid span{
color:var(--muted);
font-size:14px;
}

.gallery{
background:var(--cream);
}

.section-title{
max-width:760px;
margin-bottom:32px;
}

.section-title h2{
margin-bottom:15px;
}

.gallery-grid{
display:grid;
grid-template-columns:1.15fr .85fr .85fr;
grid-auto-rows:225px;
gap:18px;
}

.gallery-photo{
min-height:225px;
overflow:hidden;
border-radius:20px;
background:#dfe3dc;
}

.gallery-main{
grid-row:span 2;
}

.gallery-photo img{
width:100%;
height:100%;
object-fit:cover;
}

.map-section{
background:#fff;
}

.map-legend{
display:flex;
flex-wrap:wrap;
gap:18px;
margin:-10px 0 22px;
color:var(--muted);
font-size:14px;
}

.map-legend span{
display:flex;
align-items:center;
gap:8px;
}

.dot{
display:inline-block;
width:13px;
height:13px;
border-radius:50%;
}

.dot.green{
background:var(--map-green);
}

.dot.gray{
background:var(--map-gray);
}

.map-card{
max-width:1180px;
margin:auto;
padding:12px;
overflow:hidden;
border-radius:24px;
background:#f4f4f0;
box-shadow:0 16px 45px rgba(23,32,23,.12);
}

.map-card img{
width:100%;
max-height:690px;
object-fit:contain;
border-radius:14px;
}

.map-note{
max-width:850px;
margin:18px auto 0;
color:var(--muted);
font-size:14px;
text-align:center;
}

.pricing{
background:#fff;
}

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

.price-grid article{
min-height:215px;
padding:28px;
border:1px solid var(--line);
border-radius:20px;
background:var(--cream);
}

.price-grid span{
color:var(--gold);
font-size:12px;
font-weight:900;
letter-spacing:.8px;
text-transform:uppercase;
}

.price-grid strong{
display:block;
margin:18px 0 10px;
color:var(--dark);
font-size:29px;
}

.price-grid small{
font-size:14px;
}

.price-grid p{
color:var(--muted);
font-size:14px;
}

.price-highlight{
transform:translateY(-7px);
background:var(--dark)!important;
border-color:var(--dark)!important;
}

.price-highlight strong{
color:#fff!important;
}

.price-highlight p{
color:#d9e2d7!important;
}

.plots{
background:var(--cream);
}

.table-wrap{
overflow-x:auto;
border:1px solid var(--line);
border-radius:20px;
background:#fff;
}

table{
width:100%;
min-width:660px;
border-collapse:collapse;
}

th{
padding:18px;
background:var(--dark);
color:#fff;
font-size:12px;
letter-spacing:.5px;
text-align:left;
text-transform:uppercase;
}

td{
padding:16px 18px;
border-bottom:1px solid #edf0ea;
font-size:15px;
}

tbody tr:last-child td{
border-bottom:0;
}

tbody tr:hover td{
background:#faf8f2;
}

.status{
display:inline-block;
padding:5px 10px;
border-radius:999px;
background:#dff1e4;
color:#1d6d35;
font-size:12px;
font-weight:900;
}

.contact{
display:grid;
grid-template-columns:.9fr 1.1fr;
gap:80px;
background:var(--dark);
}

.contact h2{
color:#fff;
}

.contact p{
max-width:520px;
margin-top:20px;
color:#d8e1d6;
font-size:17px;
}

.contact-card{
overflow:hidden;
border-radius:20px;
background:#fff;
}

.contact-card > a{
display:block;
padding:23px 26px;
border-bottom:1px solid #e7ece5;
color:var(--dark);
text-decoration:none;
}

.contact-card small,
.contact-card strong{
display:block;
}

.contact-card small{
color:var(--muted);
font-size:11px;
font-weight:900;
letter-spacing:.7px;
text-transform:uppercase;
}

.contact-card strong{
margin-top:4px;
font-size:19px;
overflow-wrap:anywhere;
}

.social-links{
display:flex;
flex-wrap:wrap;
gap:10px;
padding:20px 26px;
}

.social-links a{
padding:9px 13px;
border:1px solid #dce4d9;
border-radius:999px;
color:var(--green);
font-size:12px;
font-weight:900;
text-decoration:none;
text-transform:uppercase;
}

footer{
padding:55px 8% 28px;
background:#0d150e;
color:#e7eee4;
}

footer p{
max-width:640px;
font-size:14px;
line-height:1.5;
}

footer small{
display:block;
margin-top:32px;
padding-top:18px;
border-top:1px solid rgba(255,255,255,.12);
color:#aeb9aa;
}

@media(max-width:950px){
.facts{
grid-template-columns:repeat(2,1fr);
}


.facts article:nth-child(2){
    border-right:0;
}

.about,
.location,
.contact{
    grid-template-columns:1fr;
    gap:42px;
}

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

.price-highlight{
    transform:none;
}

.gallery-grid{
    grid-template-columns:1fr 1fr;
    grid-auto-rows:230px;
}

.gallery-main{
    grid-column:span 2;
    grid-row:auto;
}



}
@media(max-width:620px){
.topbar{
padding:8px 14px;
}


.brand span{
    display:none;
}

.brand img{
    width:42px;
    height:42px;
}

.topbar nav a{
    padding:8px 5px;
    font-size:8px;
}

.hero{
    min-height:550px;
}

.hero-content{
    padding:150px 7% 40px;
}

.hero h1{
    font-size:54px;
}

.hero-content p{
    font-size:17px;
}

.hero-buttons{
    display:grid;
}

.btn{
    width:100%;
}

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

.facts article{
    min-height:auto;
    padding:30px 9%;
    border-right:0;
    border-bottom:1px solid var(--line);
}

.about,
.location,
.gallery,
.map-section,
.pricing,
.plots,
.contact{
    padding:68px 6%;
}

.about h2,
.location h2,
.section-title h2,
.contact h2{
    font-size:35px;
}

.gallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:220px;
}

.gallery-main{
    grid-column:auto;
    grid-row:auto;
    height:260px;
}

.map-card{
    padding:7px;
    border-radius:16px;
}

.map-card img{
    max-height:420px;
    border-radius:10px;
}

.contact-card strong{
    font-size:16px;
}

.table-hint{
    display:none;
}

@media(max-width:620px){
    .table-hint{
        display:block;
        margin:0 0 12px;
        color:var(--muted);
        font-size:13px;
        font-weight:700;
    }

    .table-wrap{
        -webkit-overflow-scrolling:touch;
        overscroll-behavior-x:contain;
    }

    table{
        min-width:660px;
    }
}
}
