

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#0f0f0f;
    color:#fff;
    line-height:1.8;
}

img{
    width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

.hero{
    height:95vh;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.65)),
    url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=1800') center/cover;
    
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:760px;
}

.tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(255,255,255,.2);
    margin-bottom:28px;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#c8a46b;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    margin-bottom:28px;
    font-weight:700;
}

.hero p{
    font-size:20px;
    color:#d0d0d0;
    margin-bottom:40px;
    max-width:650px;
}

.btn{
    display:inline-block;
    padding:16px 42px;
    background:#c8a46b;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#fff;
    color:#111;
}

.section{
    padding:110px 0;
}

.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.section-title{
    font-size:48px;
    margin-bottom:28px;
    line-height:1.2;
}

.section p{
    color:#bdbdbd;
    margin-bottom:22px;
}

.project-data{
    margin-top:35px;
}

.project-data div{
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:18px 0;
    display:flex;
    justify-content:space-between;
}

.project-data span:first-child{
    color:#999;
}

.highlight{
    background:#171717;
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:55px;
}

.feature{
    background:#101010;
    border:1px solid rgba(255,255,255,.08);
    padding:38px 28px;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
    border-color:#c8a46b;
}

.feature h3{
    margin-bottom:16px;
    color:#c8a46b;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:50px;
}

.gallery img{
    height:340px;
    object-fit:cover;
}

.cta{
    padding:130px 0;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1800') center/cover;
}

.cta h2{
    font-size:56px;
    margin-bottom:25px;
}

.cta p{
    max-width:760px;
    margin:auto;
    color:#d0d0d0;
    margin-bottom:40px;
}

footer{
    padding:35px 0;
    text-align:center;
    color:#666;
    border-top:1px solid rgba(255,255,255,.06);
}

@media(max-width:992px){

.hero h1{
    font-size:46px;
}

.grid{
    grid-template-columns:1fr;
}

.features{
    grid-template-columns:1fr 1fr;
}

.gallery{
    grid-template-columns:1fr;
}

.section-title{
    font-size:36px;
}

.cta h2{
    font-size:40px;
}

}

@media(max-width:640px){

.features{
    grid-template-columns:1fr;
}

.hero{
    height:78vh;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:17px;
}

}

