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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f3ef;
    color:#1d1d1d;
    line-height:1.7;
}

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

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

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

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:20;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:30px 60px;
}

.logo img{
    height:130px;
    width:auto;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:40px;
}

.navbar a{
    color:white;
    text-decoration:none;
    font-weight:500;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:20;

    text-align:center;
    color:white;

    width:90%;
    max-width:1000px;
}

.hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:5.5rem;
    font-weight:300;
    line-height:1.05;
    margin-bottom:20px;
}

.hero-content p{
    max-width:850px;
    margin:auto;
    font-size:1.15rem;
}

.buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:18px 34px;
    text-decoration:none;
}

.gold{
    background:#b9985a;
    color:white;
}

.outline{
    border:1px solid white;
    color:white;
}

/* =========================
   STATS
========================= */

.stats{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;

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

    background:rgba(0,0,0,.55);
    color:white;

    z-index:20;
}

.stats div{
    text-align:center;
    padding:25px;
}

.stats strong{
    display:block;
    font-size:2rem;
}

.stats span{
    display:block;
    margin-top:5px;
}

/* =========================
   SECTIONS
========================= */

section{
    overflow:hidden;
}

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
}

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

.content{
    padding:100px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.label{
    color:#b9985a;
    letter-spacing:4px;
    font-size:12px;
}

.content h2,
.gallery-section h2,
.text-section h2,
.contact h2,
.centered h2{
    font-family:'Cormorant Garamond',serif;
    font-size:4rem;
    font-weight:400;
    margin:20px 0;
}
.meaning{
    font-family:'Cormorant Garamond', serif;
    font-size:1.5rem;
    color:#b99a5a;
    margin-bottom:30px;
    font-style:italic;
}

.full-image{
    position:relative;
    height:90vh;
}

.full-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.centered{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    width:90%;
}

.gallery-section,
.text-section,
.contact{
    padding:120px 8%;
}

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

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

.location-text{
    text-align:center;
    margin-top:30px;
}

/* =========================
   FAMILY FACTS
========================= */

.estate-facts{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    margin-top:60px;
}

.estate-facts h3{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    font-weight:400;
}

.estate-facts p{
    opacity:.7;
}

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

.contact{
    text-align:center;
}

.contact-wrapper{
    max-width:1000px;
    margin:auto;
}

.contact-info{
    display:flex;
    justify-content:center;
    gap:80px;
    flex-wrap:wrap;
    margin:60px 0;
}

.contact-item span{
    display:block;
    margin-bottom:10px;
    color:#b9985a;
    font-size:12px;
    letter-spacing:3px;
}

.contact-item a{
    color:#1d1d1d;
    text-decoration:none;
}

footer{
    text-align:center;
    padding:40px;
}

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

@media(max-width:900px){

.navbar{
    padding:20px;
}

.logo img{
    height:130px;
}

.navbar ul{
    display:none;
}

.hero{
    height:auto;
    min-height:100vh;
}

.hero-content{
    position:relative;
    top:auto;
    left:auto;
    transform:none;

    padding-top:160px;
    padding-bottom:220px;

    margin:auto;
}

.hero-content h1{
    font-size:3.8rem;
    line-height:1.05;
    margin-bottom:25px;
}

.hero-content p{
    font-size:1rem;
}

.buttons{
    flex-direction:column;
    align-items:center;
}

.btn{
    width:90%;
    max-width:420px;
    text-align:center;
}

.stats{
    grid-template-columns:repeat(2,1fr);
}

.stats strong{
    font-size:2rem;
}

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

.content{
    padding:60px 30px;
}

.content h2,
.gallery-section h2,
.text-section h2,
.contact h2{
    font-size:3rem;
}

.full-image{
    height:60vh;
}

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

.gallery img{
    height:auto;
}

.estate-facts{
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.contact-info{
    flex-direction:column;
    gap:40px;
}

.gallery-section,
.text-section,
.contact{
    padding:80px 30px;
}

}
