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

body{
font-family:Arial,sans-serif;
background:#111;
color:white;
line-height:1.6;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:24px 40px;
}

.brand-wrap{
display:flex;
align-items:center;
gap:15px;
}

.logo{
width:70px;
height:70px;
border-radius:50%;
object-fit:cover;
}

.brand{
font-weight:bold;
letter-spacing:2px;
}

.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
color:white;
text-decoration:none;
}

.hero{
padding-bottom:60px;
background:#111;
}

.hero-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
padding:40px;
}

.hero-text h1{
font-size:60px;
line-height:1;
margin:20px 0;
}

.hero-image{
width:100%;
border-radius:10px;
}

.eyebrow{
color:#d7a45b;
font-weight:bold;
letter-spacing:2px;
}

.section{
padding:80px 40px;
}

.light{
background:#f5f1ea;
color:#111;
}

.dark{
background:#1a1a1a;
color:white;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.card img{
width:100%;
border-radius:8px;
display:block;
}

.card p{
margin-top:10px;
font-weight:bold;
}

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

.split img{
width:100%;
border-radius:10px;
}

h2{
font-size:48px;
margin-bottom:20px;
}

@media(max-width:900px){

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

.hero-text h1{
font-size:40px;
}

nav{
flex-direction:column;
gap:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}
}


.footer-contact{
background:#111;
color:white;
padding:80px 20px;
text-align:center;
border-top:1px solid rgba(255,255,255,0.08);
}

.footer-inner{
max-width:700px;
margin:auto;
}

.footer-logo{
width:72px;
height:72px;
object-fit:cover;
border-radius:50%;
margin-bottom:20px;
border:2px solid #c8a26a;
}

.footer-small{
color:#c8a26a;
letter-spacing:2px;
font-size:0.75rem;
margin-bottom:12px;
}

.footer-contact h2{
font-size:2.2rem;
margin-bottom:18px;
}

.footer-contact p{
margin-bottom:12px;
color:#ddd;
}

.footer-contact a{
color:#c8a26a;
text-decoration:none;
}

.site-footer{
background:#000;
color:#777;
text-align:center;
padding:18px;
font-size:13px;
}
