
*{margin:0;padding:0;box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#070707;color:#fff;overflow-x:hidden}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:8px 6%;
height:70px;
background:#050505;
position:sticky;
top:0;
z-index:20;
}

.logo{
width:210px;
max-height:60px;
object-fit:contain;
}

nav a{
color:#fff;
text-decoration:none;
margin:0 12px;
font-size:15px;
}

nav a:hover{color:#d9a13a}

.hero{
min-height:650px;
background:linear-gradient(90deg,rgba(0,0,0,.85),rgba(0,0,0,.3)),url('https://images.unsplash.com/photo-1518684079-3c830dcef090') center/cover;
display:flex;
align-items:center;
padding:7%;
}

.hero h1{font-size:clamp(35px,6vw,65px)}
.hero p{font-size:18px;max-width:600px;line-height:1.6;margin:20px 0}

.gold{color:#d9a13a}

section{padding:60px 7%}

.heading{
text-align:center;
color:#d9a13a;
font-size:36px;
margin-bottom:35px
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.card{
background:#111;
border:1px solid #333;
border-radius:15px;
overflow:hidden;
height:100%;
}

.card img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.card .text{padding:22px}
.card h3{color:#d9a13a;margin-bottom:10px}

.about{
display:flex;
gap:40px;
align-items:center;
}

.about img{
width:45%;
border-radius:20px;
object-fit:cover;
}

.contact-box{
display:flex;
gap:35px;
align-items:center;
}

.contact-box img{
width:45%;
border-radius:20px;
object-fit:cover;
}

footer{
background:#000;
padding:25px;
text-align:center;
}

@media(max-width:768px){

header{
height:auto;
padding:10px 5%;
flex-direction:column;
gap:10px;
}

.logo{
width:230px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

nav a{
margin:5px 8px;
font-size:14px;
}

.hero{
min-height:520px;
padding:40px 6%;
}

section{
padding:45px 5%;
}

.about,.contact-box{
flex-direction:column;
}

.about img,.contact-box img{
width:100%;
}

.heading{
font-size:30px;
}

.card img{
height:190px;
}
}

.menu-btn{
display:none;
background:none;
border:none;
color:#d9a13a;
font-size:32px;
cursor:pointer;
}

@media(max-width:768px){

header{
height:75px;
flex-direction:row;
padding:8px 5%;
}

.logo{
width:190px;
}

.menu-btn{
display:block;
}

nav{
display:none;
position:absolute;
top:75px;
left:0;
width:100%;
background:#050505;
padding:25px 0;
text-align:center;
}

nav.active{
display:flex;
flex-direction:column;
}

nav a{
margin:12px;
font-size:17px;
}
}
