:root{
  --black:#0a0a0a;
  --yellow:#f5e642;
  --white:#f2f0eb;
  --orange:#ff6b35;
  --cyan:#00d4ff;
  --silver:#8c8c8c;
  --navy:#0d1b2a;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--black);
  color:var(--white);
  font-family:'Inter',Arial,sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.container{
  width:min(1400px, calc(100% - 48px));
  margin:auto;
}

/* NAV */

.nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(0,0,0,.88);
  backdrop-filter:blur(10px);
  border-bottom:2px solid var(--yellow);
}

.nav-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  width:41px;
  height:41px;
  object-fit:contain;
}

.brand span{
  font-family:'Archivo Black',sans-serif;
  font-size:1.55rem;
  letter-spacing:.14em;
  color:var(--yellow);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
  flex-wrap:wrap;
}

.nav-links a{
  font-family:'Bebas Neue',sans-serif;
  font-size:2rem;
  letter-spacing:.08em;
  color:var(--white);
  transition:.22s ease;
}

.nav-links a:hover{
  color:var(--yellow);
}

/* HERO */

.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  border-bottom:1px solid rgba(242,240,235,.14);
  background:#000;
}

.hero-poster{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.45)),
    url('../images/rougarou-1.png') center center / cover no-repeat;
  z-index:1;
  transition:opacity 1.1s ease;
  transform:scale(1.01);
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  z-index:2;
  opacity:0;
  transition:opacity 1.2s ease;
  pointer-events:none;
}

body.video-ready .hero-video{
  opacity:1;
}

body.video-ready .hero-poster{
  opacity:0;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.12), rgba(0,0,0,.45) 45%, rgba(0,0,0,.72)),
    linear-gradient(to bottom, rgba(0,0,0,.42), rgba(0,0,0,.55));
  z-index:3;
}

.hud{
  position:absolute;
  right:36px;
  bottom:28px;
  z-index:4;
  font-family:'DM Mono',monospace;
  font-size:.95rem;
  letter-spacing:.16em;
  color:rgba(242,240,235,.58);
}

/* SECTIONS */

.section{
  padding:92px 0;
}

.section-head{
  margin-bottom:34px;
}

.section-head h2{
  font-family:'Archivo Black',sans-serif;
  font-size:2.3rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}

/* PROJECTS */

#featureMount,
#narrativeMount,
#commercialMount,
#musicMount{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
}

.project-card{
  background:#111;
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  overflow:hidden;
  transition:.25s ease;
}

.project-card:hover{
  transform:translateY(-4px);
  border-color:rgba(245,230,66,.4);
}

.project-thumb{
  aspect-ratio:16/9;
  overflow:hidden;
}

.project-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.project-copy{
  padding:18px;
}

.project-copy h3{
  font-family:'Archivo Black',sans-serif;
  font-size:1.15rem;
  margin-bottom:6px;
}

.project-copy p{
  color:rgba(242,240,235,.68);
  font-size:.96rem;
}

/* FRAMES */

.strip{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}

.strip img{
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:14px;
}

/* ABOUT */

.about{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:48px;
  align-items:start;
}

.about-portrait{
  border-radius:22px;
  overflow:hidden;
  min-height:520px;
  background:#111;
}

.about-copy h2{
  font-family:'Archivo Black',sans-serif;
  font-size:2.4rem;
  margin-bottom:4px;
}

.about-copy h3{
  font-family:'Bebas Neue',sans-serif;
  font-size:1.8rem;
  letter-spacing:.08em;
  color:var(--yellow);
  margin-bottom:18px;
}

.about-copy p{
  margin-bottom:18px;
  color:rgba(242,240,235,.82);
  font-size:1.02rem;
}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:24px;
}

.stat{
  background:#111;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:18px;
  text-align:center;
}

.stat strong{
  display:block;
  font-family:'Archivo Black',sans-serif;
  font-size:1.35rem;
  color:var(--yellow);
}

.stat span{
  font-size:.8rem;
  letter-spacing:.12em;
  color:rgba(242,240,235,.58);
}

/* CONTACT */

.contact-block{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.contact-card{
  background:#111;
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  padding:24px;
}

.contact-card h3{
  font-family:'Archivo Black',sans-serif;
  font-size:1.1rem;
  margin-bottom:8px;
}

.contact-card p,
.contact-card a{
  color:rgba(242,240,235,.82);
}

.locations{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.locations span{
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  padding:10px 14px;
}

/* VIDEO OVERLAY */

.video-overlay{
  position:fixed;
  inset:0;
  z-index:2000;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.88);
  padding:28px;
}

.video-overlay.hidden{
  display:none;
}

.video-shell{
  width:min(1100px, 96vw);
  aspect-ratio:16/9;
  background:#000;
  border-radius:18px;
  overflow:hidden;
}

.video-shell iframe{
  width:100%;
  height:100%;
  border:0;
}

.video-close{
  position:absolute;
  top:18px;
  right:22px;
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:#111;
  color:#fff;
  cursor:pointer;
  font-size:1.6rem;
}

/* FOOTER */

.footer{
  padding:34px 0 46px;
  border-top:1px solid rgba(255,255,255,.06);
}

.footer .row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.small{
  font-family:'DM Mono',monospace;
  color:rgba(242,240,235,.52);
  letter-spacing:.12em;
  font-size:.88rem;
}

/* EASTER EGG */

.nav.nav-easter-active .nav-links a{
  color:var(--yellow);
}

/* RESPONSIVE */

@media (max-width:1100px){

  .about{
    grid-template-columns:1fr;
  }

  .about-portrait{
    min-height:420px;
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:900px){

  .nav-inner{
    min-height:auto;
    padding:16px 0;
    align-items:flex-start;
    flex-direction:column;
  }

  .nav-links{
    gap:18px;
  }

  .nav-links a{
    font-size:1.55rem;
  }

  .section{
    padding:72px 0;
  }

  .contact-block{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){

  .container{
    width:min(100%, calc(100% - 28px));
  }

  .brand img{
    width:36px;
    height:36px;
  }

  .brand span{
    font-size:1.2rem;
  }

  .nav-links a{
    font-size:1.3rem;
  }

  .section-head h2{
    font-size:1.7rem;
  }

  .about-copy h2{
    font-size:1.9rem;
  }

  .hud{
    right:16px;
    bottom:16px;
    font-size:.72rem;
  }

  .stats{
    grid-template-columns:1fr 1fr;
  }
}
