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

body{
  background:#050505;
  color:#fff;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}

.grain{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.08;
  background-image:url('https://grainy-gradients.vercel.app/noise.svg');
}

.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(100%);
  transform:scale(1.03);
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

nav{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  padding:30px 50px;
  display:flex;
  justify-content:space-between;
  z-index:10;
}

.logo{
  letter-spacing:4px;
  font-size:14px;
}

.menu{
  display:flex;
  gap:24px;
}

.menu a{
  color:#fff;
  text-decoration:none;
  font-size:12px;
  letter-spacing:2px;
}

.hero-content{
  position:absolute;
  bottom:12%;
  left:6%;
  z-index:5;
}

.hero-content h1{
  font-size:clamp(56px,10vw,160px);
  font-weight:300;
  letter-spacing:8px;
}

.hero-content p{
  margin-top:12px;
  color:#ccc;
  letter-spacing:3px;
}

.section{
  padding:120px 8%;
}

.section h2{
  font-size:14px;
  letter-spacing:4px;
  margin-bottom:50px;
  color:#999;
}

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

.about img{
  width:100%;
}

.about p{
  color:#ccc;
  line-height:1.8;
  margin-bottom:24px;
}

.video-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.video-grid iframe{
  width:100%;
  aspect-ratio:16/9;
  border:none;
  background:#111;
}

.links{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.links a{
  color:#fff;
  text-decoration:none;
  border-bottom:1px solid #222;
  padding-bottom:12px;
}

.studio{
  position:relative;
  height:80vh;
}

.studio img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.7);
}

.studio-text{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:clamp(24px,5vw,72px);
  letter-spacing:6px;
  font-weight:300;
}

footer{
  padding:100px 8%;
  display:flex;
  flex-direction:column;
  gap:20px;
}

footer a{
  color:#fff;
  text-decoration:none;
}

@media(max-width:900px){

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

  .menu{
    flex-wrap:wrap;
  }

  .about{
    grid-template-columns:1fr;
  }

  .video-grid{
    grid-template-columns:1fr;
  }

  .hero-content{
    left:8%;
    right:8%;
  }

}


/* Typography refinement */

body{
  letter-spacing:0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hero-content h1{
  font-weight:200;
  letter-spacing:0.18em;
  line-height:0.9;
}

.hero-content p{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.35em;
}

.section h2{
  font-size:13px;
  letter-spacing:0.4em;
  font-weight:400;
}

.about p{
  font-size:17px;
  line-height:1.95;
  font-weight:300;
  max-width:700px;
}

.menu a{
  font-size:11px;
  letter-spacing:0.28em;
  opacity:0.9;
  transition:opacity .3s ease;
}

.menu a:hover{
  opacity:1;
}

.logo{
  font-size:12px;
  letter-spacing:0.45em;
  font-weight:300;
}

.links a,
footer a{
  transition:opacity .3s ease;
}

.links a:hover,
footer a:hover{
  opacity:.65;
}
