*{
box-sizing:border-box;
}

body{
margin:0;
font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial;
background:black;
color:white;
}

nav{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 60px;
box-sizing:border-box;
z-index:10;
background:linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,0));
}

.logo{
font-weight:600;
letter-spacing:2px;
}

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

.nav-links a{
text-decoration:none;
color:white;
opacity:.75;
font-size:14px;
letter-spacing:.5px;
}

.nav-links a:hover{
opacity:1;
}

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

.hero-video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
text-align:center;
max-width:700px;
}

.hero h1{
font-size:56px;
margin-bottom:20px;
}

.hero p{
opacity:.8;
margin-bottom:40px;
}

.cta{
border:1px solid white;
padding:14px 30px;
text-decoration:none;
color:white;
transition:.3s;
}

.cta:hover{
background:white;
color:black;
}

.section{
padding:140px 10%;
max-width:1400px;
margin:auto;
}

.section-title{
font-size:32px;
margin-bottom:80px;
}

.dark{
background:#070707;
}

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

.project video{
width:100%;
height:240px;
object-fit:cover;
margin-bottom:20px;
}

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

.cap h3{
margin-bottom:10px;
}

.contact-email{
font-size:22px;
margin:40px 0;
}
