*{

margin:0;
padding:0;
box-sizing:border-box;

}


html{

scroll-behavior:smooth;

}



body{

font-family:'Inter',sans-serif;

background:#f7f3ed;

color:#171717;

}



h1,h2,h3{

font-family:'Playfair Display',serif;

}



a{

text-decoration:none;

color:inherit;

}





nav{

display:flex;

justify-content:space-between;

align-items:center;

padding:35px 8%;

}



.logo{

font-size:28px;

font-weight:600;

}



.menu a{

margin-left:35px;

}







.hero{

min-height:80vh;

display:flex;

align-items:center;

padding:80px 8%;

}



.hero-text{

max-width:850px;

}



.label{

font-size:12px;

letter-spacing:5px;

color:#b18a45;

margin-bottom:25px;

}



.hero h1{

font-size:75px;

line-height:1.1;

}



.hero p:not(.label){

font-size:21px;

color:#666;

line-height:1.7;

margin:30px 0;

}




.button{

display:inline-block;

background:#171717;

color:white;

padding:16px 40px;

border-radius:40px;

}





section{

padding:100px 8%;

}




.title{

text-align:center;

margin-bottom:60px;

}



.title h2{

font-size:55px;

margin-bottom:15px;

}



.title p:last-child{

color:#777;

}







.projects{

display:grid;

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

gap:35px;

}



.project-card{

background:white;

border-radius:25px;

overflow:hidden;

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

transition:.3s;

}



.project-card:hover{

transform:translateY(-10px);

}



.project-card img{

    width:100%;
    height:auto;
    border-radius:20px;

}



.project-content{

padding:35px;

}



.project-content span{

color:#b18a45;

font-size:12px;

letter-spacing:3px;

}



.project-content h3{

font-size:32px;

margin:15px 0;

}



.project-content p{

color:#666;

line-height:1.6;

margin-bottom:20px;

}



.project-content a{

color:#b18a45;

font-weight:600;

}







.services{

display:grid;

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

gap:30px;

}



.services div{

background:white;

padding:40px;

border-radius:20px;

}



.services h3{

font-size:30px;

margin-bottom:20px;

}



.services p{

color:#666;

}





.process{

display:grid;

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

gap:30px;

}



.process div{

background:#171717;

color:white;

padding:40px;

border-radius:20px;

}



.process strong{

font-size:50px;

color:#c6a15b;

}



.process h3{

font-size:30px;

margin:20px 0;

}



.process p{

color:#aaa;

}







.contact{

background:#171717;

color:white;

text-align:center;

}



.contact h2{

font-size:65px;

}



.contact p{

color:#ccc;

margin:25px;

}





.contact .button{

background:#c6a15b;

}



footer{

padding:35px;

text-align:center;

color:#777;

}







@media(max-width:900px){


nav{

flex-direction:column;

gap:25px;

}



.hero{

text-align:center;

}



.hero h1{

font-size:45px;

}



.projects,
.services,
.process{

grid-template-columns:1fr;

}



.contact h2{

font-size:40px;

}


}