/* ===========================================
   RESET
=========================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f4ef;
    color:#222;
}


/* ===========================================
   NAVBAR
=========================================== */

nav{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 70px;

    z-index:999;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(18px);

    transition:.4s;

}

.logo{

    font-family:'Cormorant Garamond',serif;

    font-size:32px;

    letter-spacing:1px;

}

.logo a{

    text-decoration:none;

    color:#222;

    transition:.3s;

}

.logo a:hover{

    opacity:.7;

}

nav ul{

    display:flex;

    gap:45px;

    list-style:none;

}

nav a{

    text-decoration:none;

    color:#222;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.3s;

}

nav a:hover{

    opacity:.55;

}


/* ===========================================
   HERO
=========================================== */

.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

}

.hero img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,.45),
        rgba(0,0,0,.20)
    );

}

.hero-text{

    position:absolute;

    left:8%;

    top:55%;

    transform:translateY(-50%);

    color:white;

    max-width:700px;

    z-index:20;

}

.hero-kicker{

    font-size:14px;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:24px;

    opacity:.9;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    font-weight:500;

    line-height:1.05;

    margin-bottom:28px;

}

.hero-subtitle{

    font-size:24px;

    font-weight:400;

    margin-bottom:18px;

    line-height:1.3;

}

.hero-description{

    font-size:18px;

    line-height:1.7;

    max-width:620px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.button{

    padding:18px 34px;

    text-decoration:none;

    font-size:15px;

    transition:.35s;

}

.primary{

    background:white;

    color:#222;

}

.primary:hover{

    background:#ececec;

}

.secondary{

    border:1px solid white;

    color:white;

}

.secondary:hover{

    background:white;

    color:#222;

}

/* ===========================================
   THE ESTATE
=========================================== */

.estate{

    padding:120px 8%;

    background:#f7f5f0;

}

.container{

    max-width:1400px;

    margin:auto;

}

.section-tag{

    display:block;

    font-size:13px;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#8c8578;

    margin-bottom:20px;

}

.section-intro h2{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    font-weight:500;

    max-width:800px;

    margin-bottom:70px;

    color:#222;

}

.estate-content{

    display:grid;

    grid-template-columns:1.3fr 1fr;

    gap:80px;

    align-items:start;

}

.estate-text{

    font-size:20px;

    line-height:1.9;

    color:#555;

}

.estate-text p{

    margin-bottom:32px;

}

.estate-facts{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.fact{

    background:white;

    padding:40px;

    border:1px solid #e6e2da;

}

.fact h3{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    font-weight:500;

    color:#1f1f1f;

    margin-bottom:10px;

}

.fact p{

    color:#666;

    line-height:1.5;

}

/* ===========================================
   DEVELOPMENT
=========================================== */

.development{

    padding:140px 8%;

    background:white;

}

.development-grid{

    display:grid;

    grid-template-columns:1.4fr 0.9fr;

    gap:90px;

    align-items:start;

}

.development-left{

    font-size:20px;

    line-height:1.9;

    color:#555;

}

.development-left p{

    margin-bottom:32px;

}

.development-right{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.highlight{

    background:#f7f5f0;

    padding:42px;

    border-left:4px solid #b19463;

}

.highlight span{

    display:block;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#9b8b6f;

    margin-bottom:12px;

}

.highlight h3{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    font-weight:500;

    margin-bottom:14px;

    color:#222;

}

.highlight p{

    color:#666;

    line-height:1.6;

}

/*========================================
LOCATION
========================================*/

.location{

    padding:140px 0;

    background:#f8f7f4;

}

.location .section-intro{

    text-align:center;

}

.location .section-intro h2{

    margin-left:auto;
    margin-right:auto;

}

.location-intro{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

    font-size:21px;

    line-height:1.8;

}

.location-layout{

    width:90%;

    max-width:1350px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:start;

}

.google-map iframe{

    width:100%;

    height:600px;

    border:none;

    border-radius:14px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.connections{

    background:white;

    border-radius:12px;

    padding:35px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.connections h3{

    font-family:"Cormorant Garamond",serif;

    font-size:34px;

    margin-bottom:25px;

}

.connection{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid #ececec;

}

.connection:last-child{

    border:none;

}

.connection span{

    font-size:16px;

    color:#555;

}

.connection strong{

    font-size:18px;

    font-weight:600;

    color:#111;

}

/* =====================================================
   GALLERY
===================================================== */

.gallery{

    padding:120px 8%;

    background:#faf8f3;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title p{

    letter-spacing:4px;

    text-transform:uppercase;

    color:#8d8573;

    font-size:13px;

    margin-bottom:15px;

}

.section-title h2{

    font-family:'Cormorant Garamond',serif;

    font-size:64px;

    font-weight:500;

    color:#222;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.gallery-grid img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:14px;

    cursor:pointer;

    transition:.45s;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

}

.gallery-grid img:hover{

    transform:scale(1.03);

    box-shadow:0 30px 60px rgba(0,0,0,.20);

}



/* ==========================================
   LIGHTBOX
========================================== */

#lightbox{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.92);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

    animation:fade .3s;

}

#lightbox img{

    max-width:90%;

    max-height:88%;

    border-radius:10px;

    box-shadow:0 30px 80px rgba(0,0,0,.45);

}

#lightbox span{

    position:absolute;

    top:35px;

    right:55px;

    font-size:55px;

    color:white;

    cursor:pointer;

    transition:.3s;

    font-weight:300;

}

#lightbox span:hover{

    transform:scale(1.2);

}



@keyframes fade{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}



/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1100px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:700px){

.gallery{

padding:80px 6%;

}

.section-title h2{

font-size:46px;

}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-grid img{

height:250px;

}

}

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    color:white;

    font-size:60px;

    cursor:pointer;

    user-select:none;

    padding:25px;

    transition:.3s;

}

.prev{

    left:40px;

}

.next{

    right:40px;

}

.prev:hover,
.next:hover{

    transform:translateY(-50%) scale(1.15);

}

/*=====================================
CONTACT
=====================================*/

.contact{

    padding:140px 8%;

    background:#f6f2ea;

    text-align:center;

}

.contact h2{

    font-family:"Cormorant Garamond",serif;

    font-size:72px;

    font-weight:500;

    margin:20px 0 35px;

}

.contact-intro{

    max-width:850px;

    margin:0 auto 70px;

    font-size:22px;

    line-height:1.8;

    color:#666;

}

.contact-details{

    display:flex;

    justify-content:center;

    gap:120px;

    margin-bottom:70px;

    flex-wrap:wrap;

}

.contact-line{

    text-align:center;

}

.contact-line span{

    display:block;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#999;

    margin-bottom:15px;

}

.contact-line a{

    font-size:34px;

    color:#222;

    text-decoration:none;

    font-weight:300;

    white-space:nowrap;

}

.contact-line a:hover{

    color:#9b7b43;

}

.contact .button{

    display:inline-block;

    padding:18px 42px;

}

/* ==========================================
   MOBILE VERSION
========================================== */

@media (max-width:900px){

/* NAVBAR */

nav{

    padding:18px 25px;
    flex-direction:column;
    gap:20px;

}

nav ul{

    flex-wrap:wrap;
    justify-content:center;
    gap:22px;

}

.logo{

    font-size:18px;

}


/* HERO */

.hero{

    height:100vh;

}

.hero-text{

    width:90%;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    text-align:center;

}

.hero h1{

    font-size:62px;
    line-height:1;

}

.hero-subtitle{

    font-size:28px;

}

.hero-description{

    font-size:20px;

}

.hero-buttons{

    flex-direction:column;
    align-items:center;
    gap:20px;

}

.button{

    width:280px;

}


/* GENERAL */

.container{

    width:92%;

}

.section-intro h2{

    font-size:54px;
    text-align:center;

}

.section-intro{

    text-align:center;

}


/* ESTATE */

.estate-content{

    display:block;

}

.estate-facts{

    margin-top:50px;
    grid-template-columns:1fr 1fr;
    gap:14px;

}

.fact{

    padding:24px 20px;

}

.fact h3{

    font-size:32px;

}


/* INVESTMENT */

.development-grid{

    display:block;

}

.development-right{

    margin-top:50px;

}

.highlight{

    padding:28px 24px;

}

.highlight h3{

    font-size:34px;

}


/* LOCATION */

.location-layout{

    display:block;

}

.google-map{

    margin-bottom:40px;

}

.google-map iframe{

    height:380px;

}


/* GALLERY */

.gallery-grid{

    grid-template-columns:1fr;

}


/* CONTACT */

.contact{

    padding:90px 6%;

}

.contact h2{

    font-size:44px;

}

.contact-intro{

    font-size:18px;

}

.contact-details{

    gap:36px;

}

.contact-line a{

    font-size:19px;
    white-space:normal;
    word-break:break-word;

}

.contact-container{

    display:block;

    text-align:center;

}

.contact-right{

    margin-top:50px;

}

.contact-card{

    padding:45px 30px;

}

}