/* ---------- base / reset ---------- */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{background:#0a0a0a;-webkit-font-smoothing:antialiased}
::selection{background:#f2f0eb;color:#0a0a0a}
input,textarea,button{font-family:inherit}
input:focus,textarea:focus{outline:none}
a{color:#f2f0eb;text-decoration:none}
a:hover{color:#ffffff}

@keyframes pulseRing{
  0%{box-shadow:0 0 0 0 rgba(242,240,235,0.5)}
  70%{box-shadow:0 0 0 16px rgba(242,240,235,0)}
  100%{box-shadow:0 0 0 0 rgba(242,240,235,0)}
}

.page{
  font-family:'Jost',sans-serif;
  color:#f2f0eb;
  background:#0a0a0a;
  overflow-x:hidden;
}

.hidden{ display:none !important; }

/* ---------- music toggle ---------- */
.music-toggle{
  position:fixed;
  top:24px;
  left:24px;
  z-index:100;
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.4);
  background:rgba(10,10,10,0.35);
  backdrop-filter:blur(8px);
  color:#f2f0eb;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
  transition:all .3s;
}
.music-toggle:hover{
  background:#f2f0eb;
  color:#0a0a0a;
  border-color:#f2f0eb;
}

/* ---------- hero ---------- */
.hero{
  position:relative;
  height:100vh;
  min-height:600px;
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(1) contrast(1.04);
  z-index:0;
}
.hero-img{ object-position:center 28%; }

/* Mobile-first: the vertical (9:16) clip fills the screen edge-to-edge,
   matching a phone's own aspect ratio almost exactly. */
.hero-video-fg{ object-position:center; }
.hero-video-blur{ display:none; }

/* Wider than a phone: keep the vertical clip at its true proportions,
   centered, and fill the sides with a soft blurred/darkened copy of the
   same footage instead of harshly cropping it to fit a landscape frame. */
@media (min-width:820px){
  .hero-video-blur{
    display:block;
    object-position:center;
    filter:grayscale(1) contrast(1.04) blur(60px) brightness(0.55);
    transform:scale(1.18);
  }
  .hero-video-fg{
    object-fit:contain;
    object-position:center;
  }
}
.hero-scrim{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg,rgba(10,10,10,0.5),rgba(10,10,10,0.35) 40%,rgba(10,10,10,0.7));
}

.play-btn{
  position:absolute;
  top:24px;
  right:24px;
  z-index:5;
  width:86px;
  height:86px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid rgba(255,255,255,0.85);
  background:none;
  cursor:pointer;
  padding:0;
  animation:pulseRing 2.6s infinite;
  transition:transform .3s;
}
.play-btn:hover{ transform:scale(1.06); }
.play-btn-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 20%;
  filter:grayscale(1);
}
.play-btn-overlay{
  position:absolute;
  inset:0;
  background:rgba(10,10,10,0.28);
  display:flex;
  align-items:center;
  justify-content:center;
}
.play-btn-triangle{
  display:block;
  width:0;
  height:0;
  border-left:16px solid #ffffff;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  margin-left:4px;
}

.hero-content{
  position:relative;
  z-index:3;
  text-align:center;
  padding:0 clamp(20px,5vw,64px);
  max-width:1400px;
}

.eyebrow{
  font-size:clamp(11px,1.4vw,15px);
  letter-spacing:0.42em;
  text-transform:uppercase;
  color:rgba(242,240,235,0.9);
  margin-bottom:clamp(18px,3vh,34px);
}

.headline{
  font-family:'Anton',sans-serif;
  font-weight:400;
  line-height:0.92;
  font-size:clamp(46px,9vw,150px);
  letter-spacing:0.005em;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 4px 40px rgba(0,0,0,0.4);
}

.watch-btn{
  margin-top:clamp(26px,4vh,42px);
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:none;
  border:1px solid rgba(255,255,255,0.55);
  color:#f2f0eb;
  padding:14px 28px;
  font-size:12px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  cursor:pointer;
  transition:all .3s;
}
.watch-btn:hover{
  background:#f2f0eb;
  color:#0a0a0a;
  border-color:#f2f0eb;
}
.watch-btn-triangle{
  display:block;
  width:0;
  height:0;
  border-left:9px solid currentColor;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
}

.scroll-indicator{
  position:absolute;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:9px;
}
.scroll-label{
  font-size:10px;
  letter-spacing:0.35em;
  text-transform:uppercase;
  color:rgba(242,240,235,0.6);
}
.scroll-line{
  width:1px;
  height:40px;
  background:linear-gradient(180deg,rgba(242,240,235,0.7),transparent);
}

/* ---------- video lightbox ---------- */
.lightbox{
  position:fixed;
  inset:0;
  z-index:200;
  background:rgba(6,6,6,0.94);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.lightbox-close{
  position:absolute;
  top:22px;
  right:26px;
  background:none;
  border:none;
  color:#f2f0eb;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  font-weight:300;
}
.lightbox-video{
  max-width:min(1100px,92vw);
  max-height:82vh;
  height:auto;
  background:#000;
  box-shadow:0 30px 90px -30px rgba(0,0,0,0.8);
}

/* ---------- countdown ---------- */
.countdown-section{
  position:relative;
  padding:clamp(72px,11vh,120px) 24px;
  background:#0a0a0a;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.countdown-inner{
  max-width:960px;
  margin:0 auto;
  text-align:center;
}
.section-eyebrow{
  font-size:12px;
  letter-spacing:0.45em;
  text-transform:uppercase;
  color:rgba(242,240,235,0.55);
  margin-bottom:16px;
}
.countdown-title{
  font-family:'Anton',sans-serif;
  font-weight:400;
  font-size:clamp(30px,5vw,60px);
  text-transform:uppercase;
  letter-spacing:0.01em;
  margin-bottom:clamp(44px,6vh,64px);
}
.countdown-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
  max-width:760px;
  margin:0 auto;
}
.countdown-cell{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:0 8px;
  border-right:1px solid rgba(255,255,255,0.12);
}
.countdown-cell-last{ border-right:none; }
.countdown-number{
  font-family:'Anton',sans-serif;
  font-size:clamp(40px,9.5vw,92px);
  line-height:1;
}
.countdown-label{
  font-size:10px;
  letter-spacing:0.32em;
  text-transform:uppercase;
  color:rgba(242,240,235,0.5);
}

/* ---------- details ---------- */
.details-section{
  padding:clamp(80px,12vh,130px) 24px;
  background:#0f0f0f;
}
.details-inner{
  max-width:1100px;
  margin:0 auto;
}
.details-header{
  text-align:center;
  margin-bottom:clamp(48px,7vh,76px);
}
.section-title{
  font-family:'Anton',sans-serif;
  font-weight:400;
  font-size:clamp(34px,5.5vw,66px);
  text-transform:uppercase;
  letter-spacing:0.01em;
}
.details-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:1px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.1);
}
.details-card{
  background:#0f0f0f;
  padding:clamp(34px,5vw,52px) 28px;
  text-align:center;
}
.details-card-label{
  font-size:10px;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:rgba(242,240,235,0.45);
  margin-bottom:16px;
}
.details-card-value{
  font-family:'Anton',sans-serif;
  font-size:clamp(22px,2.6vw,30px);
  line-height:1.15;
  text-transform:uppercase;
}
.details-note{
  max-width:560px;
  margin:clamp(32px,5vh,48px) auto 0;
  text-align:center;
  font-weight:300;
  font-size:15px;
  color:rgba(242,240,235,0.65);
  line-height:1.7;
}

/* ---------- gallery ---------- */
.gallery-section{
  padding:clamp(80px,12vh,130px) 24px;
  background:#0a0a0a;
}
.gallery-inner{
  max-width:1100px;
  margin:0 auto;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(140px,1fr));
  gap:10px;
}
.gallery-thumb{
  position:relative;
  aspect-ratio:1;
  overflow:hidden;
  border:none;
  padding:0;
  background:#0f0f0f;
  cursor:pointer;
}
.gallery-thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(1) contrast(1.04);
  transition:transform .4s;
}
.gallery-thumb:hover img{ transform:scale(1.06); }

.gallery-lightbox-img{
  max-width:min(1100px,92vw);
  max-height:82vh;
  height:auto;
  background:#000;
  box-shadow:0 30px 90px -30px rgba(0,0,0,0.8);
  filter:grayscale(1) contrast(1.04);
}

/* ---------- footer ---------- */
.site-footer{
  padding:clamp(44px,6vh,64px) 24px;
  text-align:center;
  background:#0a0a0a;
  border-top:1px solid rgba(255,255,255,0.1);
}
.footer-title{
  font-family:'Anton',sans-serif;
  font-size:26px;
  text-transform:uppercase;
  letter-spacing:0.02em;
}
