/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;font-family:'Montserrat',sans-serif}
html{scroll-behavior:smooth}
section{scroll-margin-top:80px}
@media (max-width:768px){ section{scroll-margin-top:64px} }
html,body{background:#000;color:#fff;font-family:'Montserrat',sans-serif;line-height:1.5;-webkit-font-smoothing:antialiased;overflow-x:hidden;max-width:100vw}
button,input,select,textarea{font-family:'Montserrat',sans-serif}
img,video{display:block;max-width:100%}
a{color:inherit;text-decoration:none}

/* ---------- Navigation ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 50px;background:#ffffff;color:#000;
  border-bottom:1px solid #eee;
  transition:transform 0.35s ease;
}
.nav.nav-hidden{transform:translateY(-100%)}
.logo{font-weight:800;font-size:26px;letter-spacing:0.5px;color:#000;display:flex;align-items:center}
.nav-links{display:flex;gap:36px;align-items:center;font-size:16px;color:#000}
.nav-links a{color:#000;opacity:1;font-weight:400}
.nav-links a:hover{opacity:0.65}

.hamburger{display:none;flex-direction:column;justify-content:space-between;width:28px;height:20px;background:transparent;border:none;cursor:pointer;padding:0;z-index:101}
.hamburger span{display:block;height:2px;width:100%;background:#000;border-radius:2px;transition:transform .3s ease, opacity .3s ease}
.hamburger.open span:nth-child(1){transform:translateY(9px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}
/* ---------- Hero ---------- */
.hero{
  position:relative;width:100%;height:100vh;min-height:560px;
  overflow:hidden;display:flex;align-items:center;justify-content:center;
  background:#000;
}
.hero .vimeo-wrap{
  position:absolute;inset:0;width:100%;height:100%;
  overflow:hidden;z-index:0;pointer-events:none;
  background:#000;
}

/* Thumbnail/poster — covers entire hero until video plays */
.hero-poster{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:1;
  opacity:1;
  transition:opacity 0.6s ease;
}
.hero-poster.hidden{
  opacity:0;
  pointer-events:none;
}

/* Vimeo iframe — covers full hero, no black bars on any aspect ratio */
.hero .vimeo-wrap iframe{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:100vw;
  height:100vh;
  min-width:177.78vh;   /* maintain 16:9 if viewport taller than 16:9 */
  min-height:56.25vw;   /* maintain 16:9 if viewport wider than 16:9 */
  border:0;display:block;
  opacity:0;
  transition:opacity 0.6s ease;
  z-index:0;
}
.hero .vimeo-wrap iframe.loaded{opacity:1;z-index:2}

/* Hero video — direct MP4, cover-fits the hero with no black bars */
.hero .vimeo-wrap .hero-video{
  position:absolute;
  top:0;left:0;
  width:100%;
  height:100%;
  max-width:none;       /* override the global img,video max-width:100% reset */
  object-fit:cover;
  border:0;display:block;
  opacity:0;
  transition:opacity 0.6s ease;
  z-index:0;
}
.hero .vimeo-wrap .hero-video.loaded{opacity:1;z-index:2}

.hero::after{
  content:"";position:absolute;inset:0;
  background:rgba(0,0,0,0.15);
  z-index:3;
  pointer-events:none;
}
.hero-content{position:relative;z-index:4;text-align:center}
.hero-content h1{font-size:46px;font-weight:800;letter-spacing:6px}

/* Mobile hero */
@media (max-width:767px){
  .hero{
    height:auto;
    min-height:0;
    aspect-ratio:16/9;
  }
  .hero .vimeo-wrap iframe,
  .hero .vimeo-wrap .hero-video{
    position:absolute;top:0;left:0;
    width:100%;height:100%;
    max-width:none;
    transform:none;
    min-width:0;min-height:0;
  }
}
/* ---------- Sections ---------- */
section{padding:30px 20px}
.container{max-width:1000px;margin:0 auto}
.intro h3{font-size:18px;font-weight:700;letter-spacing:1.5px;margin-bottom:18px}
.intro p{font-size:14px;margin-bottom:16px;opacity:0.92}
.intro p strong{font-weight:700}

/* Showcase boxes */
.showcase{margin:60px auto 0;max-width:1000px}
.showcase-item{margin-bottom:50px}
.showcase-item .video-box{
  width:100%;aspect-ratio:16/7;overflow:hidden;background:#111;position:relative;
}
.video-box{position:relative}
.showcase-item .video-box video,
.showcase-item .video-box iframe{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;border:0}

.mute-btn{
  position:absolute;bottom:14px;right:14px;z-index:5;
  width:42px;height:42px;border-radius:50%;
  background:rgba(0,0,0,0.55);border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color:transparent;
}
.mute-btn:hover{background:rgba(0,0,0,0.85);transform:scale(1.05)}
.mute-btn svg{width:20px;height:20px;fill:#fff;pointer-events:none}
.mute-btn .icon-sound{display:none}
.mute-btn.unmuted .icon-mute{display:none}
.mute-btn.unmuted .icon-sound{display:block}

.play-pause-btn{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:72px;height:72px;border-radius:50%;
  background:rgba(0,0,0,0.45);border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;z-index:4;
  opacity:0;pointer-events:none;
  transition:opacity 0.25s ease, background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color:transparent;
}
.video-box:hover .play-pause-btn{opacity:1;pointer-events:auto}
.video-box.paused .play-pause-btn{opacity:1;pointer-events:auto}
.play-pause-btn:hover{background:rgba(0,0,0,0.7);transform:translate(-50%,-50%) scale(1.06)}
.play-pause-btn svg{width:30px;height:30px;fill:#fff;pointer-events:none}
.play-pause-btn .icon-play{display:none;margin-left:4px}
.video-box.paused .play-pause-btn .icon-play{display:block}
.video-box.paused .play-pause-btn .icon-pause{display:none}

/* On touch devices there's no hover, and videos auto-play one at a time as
   you scroll — so the manual play/pause button just clutters the thumbnails
   and sticks on auto-paused videos. Hide it there; the mute button stays. */
@media (hover:none){
  .play-pause-btn{display:none !important}
}

.showcase-item h4{margin-top:14px;font-size:14px;font-weight:700;letter-spacing:1.2px;text-align:right}
.showcase-item p{margin-top:8px;font-size:12px;opacity:0.85;text-align:right;max-width:520px;margin-left:auto}

/* Load More button */
.load-more-btn{
  border:1px solid #fff;background:transparent;color:#fff;
  padding:12px 42px;border-radius:30px;font-size:14px;letter-spacing:1.5px;
  cursor:pointer;transition:all .25s;font-weight:500;
}
.load-more-btn:hover{background:#fff;color:#000}

/* About */
.about{padding:90px 20px;text-align:center;background:#ffffff;color:#000}
.about h2{font-size:22px;font-weight:400;letter-spacing:2px;margin-bottom:60px;color:#000}
.about h2 strong{font-weight:800}
.about .about-body{max-width:1000px;margin:0 auto;text-align:left}
.about p{font-size:15px;margin-bottom:22px;color:#000;line-height:1.7}

/* Get in touch — 60/40 split on desktop */
.contact-row{
  display:grid;
  grid-template-columns:60% 40%;
  gap:0;background:#ffffff;color:#000;border-top:1px solid #eee;
}
.contact-video{
  position:relative;min-height:520px;overflow:hidden;background:#000;
}
.contact-video iframe{
  position:absolute;inset:0;width:100%;height:100%;border:0;
}
/* Direct-MP4 contact video — cover-fills the box, no black bars */
.contact-video .contact-video-el{
  position:absolute;inset:0;
  width:100%;height:100%;
  max-width:none;
  object-fit:cover;
  border:0;display:block;
}
/* Cover-fit the background iframe on desktop only */
@media (min-width:769px) and (min-aspect-ratio:60/52){
  .contact-video iframe{width:100%;height:auto;min-height:100%;top:50%;left:0;transform:translateY(-50%)}
}

.contact-info{padding:80px 60px;display:flex;flex-direction:column;justify-content:center;background:#ffffff;color:#000;align-items:center;text-align:center}
.contact-info h3{font-size:22px;font-weight:400;letter-spacing:2px;margin-bottom:40px;color:#000}
.contact-info table{font-size:14px;border-collapse:collapse;margin-bottom:40px}
.contact-info td{padding:6px 40px 6px 0;vertical-align:top;color:#000;text-align:left}
.contact-info td:last-child{padding-right:0}
.contact-info td a{color:#000;text-decoration:underline}
.contact-info td a:hover{opacity:0.6}

footer{padding:30px 60px;display:flex;justify-content:space-between;align-items:center;font-size:14px;background:#ffffff;color:#000;flex-wrap:wrap;gap:10px;border-top:none}
.socials{display:flex;gap:28px;font-size:18px}
.socials a{color:#000;width:24px;height:24px;display:inline-flex;align-items:center;justify-content:center}
.socials a:hover{opacity:0.6}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .nav{padding:16px 30px}
  .nav-links{gap:24px;font-size:14px}
  .logo{font-size:22px}
  .contact-info{padding:60px 40px}
}
@media (max-width:768px){
  .nav{padding:14px 20px}
  .logo{font-size:20px}
  .hamburger{display:flex}
  .nav-links{
    position:fixed;top:0;right:0;bottom:0;width:75%;max-width:320px;
    background:#fff;flex-direction:column;align-items:flex-start;justify-content:flex-start;
    padding:90px 30px 30px;gap:24px;font-size:16px;
    transform:translateX(100%);transition:transform .3s ease;
    box-shadow:-4px 0 24px rgba(0,0,0,0.08);
  }
  .nav-links.open{transform:translateX(0)}
  .nav-links a{width:100%;padding:6px 0;border-bottom:1px solid #eee}

  .hero{height:60vh;min-height:500px}
  .hero-content h1{letter-spacing:3px}

  section{padding:60px 18px}
  .intro h3{font-size:12px}
  .intro p{font-size:13px}

  .showcase-item .video-box{aspect-ratio:16/9 !important;width:100%;overflow:hidden}
  .showcase-item .video-box video{width:100%;height:100%;object-fit:contain;background:#000}

  .showcase-item h4,.showcase-item p{text-align:left}
  .showcase-item p{margin-left:0}

  .about{padding:60px 18px}
  .about h2{font-size:18px;margin-bottom:40px;letter-spacing:1.5px}
  .about p{font-size:14px}

  /* Stack contact on mobile */
  .contact-row{grid-template-columns:1fr;width:100%;overflow:hidden}
  .contact-video{min-height:0;height:auto;aspect-ratio:16/9;width:100%;max-width:100%}
  .contact-video iframe,
  .contact-video .contact-video-el{
    position:absolute;top:0;left:0;
    width:100%;height:100%;
    transform:none;min-height:0;
  }

  .contact-info{padding:50px 24px}
  .contact-info h3{font-size:18px;margin-bottom:30px;letter-spacing:1.5px}

  footer{padding:24px 20px;flex-direction:column;text-align:center;gap:14px;font-size:13px}
}
@media (max-width:480px){
  .logo{font-size:18px}
  .hero{        height: 38vh;
        min-height: auto;}
  .hero-content h1{font-size:30px;letter-spacing:2px;padding:50px 0}
  section{padding:50px 16px}
  .about h2{font-size:16px}
  .contact-info{padding:40px 18px}
}