:root{
--black:#050505;
--gold:#d6aa54;
--gold2:#fff0b8;
--white:#fff;
}

*{
box-sizing:border-box;
}

body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
background:#050505;
color:#fff;
}

a{
text-decoration:none;
color:inherit;
}

.container{
width:min(1180px,92%);
margin:auto;
}

.site-header{
position:sticky;
top:0;
z-index:1000;
background:rgba(5,5,5,.92);
border-bottom:1px solid rgba(214,170,84,.35);
}

.nav-wrap{
display:flex;
align-items:center;
justify-content:space-between;
padding:14px 0;
}

.brand img{
height:76px;
width:auto;
display:block;
}

nav{
display:flex;
gap:22px;
}

nav a{
font-size:14px;
font-weight:700;
color:#eee;
}

nav a:hover{
color:var(--gold);
}

.call-btn,.btn{
display:inline-block;
padding:14px 24px;
border-radius:999px;
font-weight:800;
}

.call-btn,.primary{
background:linear-gradient(135deg,var(--gold),var(--gold2));
color:#070707;
}

.secondary{
border:1px solid var(--gold);
color:var(--gold);
}

.hero{
min-height:90vh;
display:flex;
align-items:center;
background:
linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.55),rgba(0,0,0,.25)),
url("hero.jpg") center center / cover no-repeat;
}

.hero-content{
max-width:850px;
padding:80px 0;
}

.eyebrow{
color:var(--gold);
letter-spacing:4px;
text-transform:uppercase;
font-size:13px;
font-weight:900;
}

.hero h1{
font-size:clamp(44px,7vw,86px);
line-height:.98;
margin:18px 0;
}

.hero-text{
max-width:680px;
font-size:20px;
line-height:1.7;
color:#eee;
}

.hero-buttons{
display:flex;
gap:16px;
margin-top:32px;
flex-wrap:wrap;
}

.section{
padding:90px 0;
}

.dark{
background:#090909;
}

.gold-section{
background:linear-gradient(135deg,#d6aa54,#f5d886);
color:#090909;
}

.dark-text{
color:#090909;
}

.section h2{
font-size:clamp(32px,4vw,54px);
margin:12px 0 30px;
}

.section p{
line-height:1.7;
color:#d1d1d1;
}

.gold-section p{
color:#171717;
}

.grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.card,.contact-box{
background:linear-gradient(180deg,#171717,#0b0b0b);
border:1px solid rgba(214,170,84,.28);
border-radius:24px;
padding:30px;
}

.card h3{
margin-top:0;
color:var(--gold);
}

.split{
display:grid;
grid-template-columns:1fr 1fr;
gap:45px;
align-items:center;
}

.service-list{
display:grid;
gap:15px;
}

.service-list a{
background:#0c0c0f;
color:#fff;
padding:22px;
border-radius:18px;
font-weight:900;
border:1px solid rgba(255,255,255,.14);
}

.contact-box a{
color:var(--gold);
}

footer{
text-align:center;
padding:28px;
background:#050505;
border-top:1px solid rgba(214,170,84,.28);
color:#aaa;
}

@media(max-width:900px){
.brand img{
height:58px;
}

nav{
display:none;
}

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

.hero{
min-height:82vh;
}

.hero-buttons{
flex-direction:column;
}
}
