*{
box-sizing:border-box;
}

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#111;
color:#fff;
}

a{
text-decoration:none;
color:inherit;
}

img{
display:block;
max-width:100%;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(0,0,0,.82);
padding:14px 32px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
border-bottom:1px solid rgba(255,255,255,.08);
}

.logo-wrap{
display:flex;
align-items:center;
gap:14px;
}

.logo-wrap img{
height:87px;
}

.logo-text{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
}

.logo-text strong{
font-size:20px;
font-weight:800;
}

.logo-text span{
font-size:15px;
color:#d0d0d0;
margin-top:4px;
}

nav{
display:flex;
gap:22px;
}

nav a{
font-size:15px;
font-weight:600;
color:#fff;
}

.hero{
min-height:88vh;
background:
linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.85)),
url("images/Finished Front Low.jpeg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:150px 20px 70px;
}

.hero-content{
max-width:820px;
margin:auto;
}

.hero h1{
font-size:60px;
font-weight:900;
margin-bottom:20px;
}

.hero p{
font-size:22px;
line-height:1.5;
color:#f0f0f0;
}

.section{
padding:80px 20px;
text-align:center;
}

.section.dark{
background:#171717;
}

.container{
max-width:1200px;
margin:auto;
}

.cards{
display:flex;
gap:24px;
justify-content:center;
flex-wrap:wrap;
margin-top:40px;
}

.card{
background:#1f1f1f;
border:1px solid rgba(255,255,255,.06);
padding:24px;
border-radius:14px;
width:320px;
text-align:left;
}

.card img{
height:200px;
object-fit:cover;
border-radius:10px;
margin-bottom:15px;
}

.gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:40px;
}

.gallery img{
height:260px;
object-fit:cover;
border-radius:14px;
}

.button{
display:inline-block;
padding:16px 30px;
border-radius:10px;
font-size:16px;
font-weight:700;
border:none;
cursor:pointer;
background:#b02a2a;
color:#fff;
}

footer{
background:#000;
padding:40px 20px;
text-align:center;
color:#9d9d9d;
margin-top:60px;
}

@media(max-width:900px){

nav{
display:none;
}

.gallery{
grid-template-columns:1fr;
}

.cards{
flex-direction:column;
align-items:center;
}

.hero h1{
font-size:42px;
}

}