*{margin:0;padding:0;box-sizing:border-box;}
:root{
  --teal:#1ECEC8;
  --teal-dark:#13A09B;
  --charcoal:#0a0a0a;
  --off-white:#EAE6DE;
  --mid-grey:#6A7078;
  --light-grey:#B0B5BC;
  --app-height:100vh;
  --hero-bottom:140px;
}
@supports (height:100dvh){
  :root{--app-height:100dvh;}
}
@supports (height:100svh){
  :root{--app-height:100svh;}
}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  background:var(--charcoal);
  color:var(--off-white);
  font-family:'Barlow',sans-serif;
  font-weight:300;
  overflow-x:hidden;
}
body.menu-open{overflow:hidden;}
@media(min-width:769px){body.menu-open{overflow:auto;}}
/* NAV */
nav{
  position:fixed;top:0;left:0;right:0;
  z-index:300;padding:0 40px 0 0;height:96px;
  display:flex;align-items:center;justify-content:space-between;
  background:transparent;
}
.nav-logo{transition:opacity 0.4s ease, transform 0.4s ease;display:block;position:relative;height:89px;width:159px;flex-shrink:0;order:-1;}
.nav-logo.hidden{opacity:0;pointer-events:none;transform:translateY(-8px);}
.nav-logo img{height:89px;width:auto;display:block;position:absolute;top:0;left:0;transition:opacity 0.35s ease;}
.nav-logo .logo-dark{opacity:0;}
nav.on-light .nav-logo .logo-light{opacity:0;}
nav.on-light .nav-logo .logo-dark{opacity:1;}
.hamburger{
  display:flex;flex-direction:column;gap:6px;
  cursor:pointer;padding:8px;background:none;border:none;z-index:400;
}
.hamburger span{
  display:block;width:28px;height:1.5px;
  background:var(--off-white);
  transition:all 0.35s ease;transform-origin:center;
}
nav.on-light .hamburger span{background:var(--charcoal);}
.hamburger.active span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
.hamburger.active span:nth-child(2){opacity:0;transform:scaleX(0);}
.hamburger.active span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}

/* MENU OVERLAY — drawer on desktop, fullscreen on mobile */
.menu-overlay{
  position:fixed;inset:0;background:rgba(10,10,10,0.98);
  z-index:250;display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity 0.4s ease;
}
.menu-overlay.open{opacity:1;pointer-events:all;}
.menu-overlay-links{list-style:none;text-align:center;margin-bottom:56px;}
.menu-overlay-links li{overflow:hidden;}
.menu-overlay-links a{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(36px,7vw,76px);font-weight:400;
  color:rgba(234,230,222,0.7);text-decoration:none;
  display:block;padding:5px 0;
  transform:translateY(100%);
  transition:transform 0.5s ease, color 0.25s;
}
.menu-overlay.open .menu-overlay-links li:nth-child(1) a{transform:translateY(0);transition-delay:0.05s;}
.menu-overlay.open .menu-overlay-links li:nth-child(2) a{transform:translateY(0);transition-delay:0.1s;}
.menu-overlay.open .menu-overlay-links li:nth-child(3) a{transform:translateY(0);transition-delay:0.15s;}
.menu-overlay.open .menu-overlay-links li:nth-child(4) a{transform:translateY(0);transition-delay:0.2s;}
.menu-overlay-links a:hover{color:var(--teal);}

/* Films submenu */
.menu-overlay-links .has-submenu{overflow:visible;}
.menu-submenu{
  list-style:none;
  margin:0 0 8px 0;
  padding:0;
  display:flex;flex-direction:column;gap:0;
}
.menu-submenu li{overflow:hidden;}
.menu-submenu a{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(28px,4.5vw,56px);font-weight:400;font-style:italic;
  color:rgba(234,230,222,0.55);
  text-decoration:none;
  display:block;padding:2px 0;
  transform:translateY(100%);
  transition:transform 0.5s ease, color 0.25s;
}
.menu-submenu a:hover{color:var(--teal);}
.menu-overlay.open .has-submenu .menu-submenu li:nth-child(1) a{transform:translateY(0);transition-delay:0.18s;}
.menu-overlay.open .has-submenu .menu-submenu li:nth-child(2) a{transform:translateY(0);transition-delay:0.23s;}

.menu-overlay-socials{display:flex;gap:40px;}
.menu-overlay-socials a{
  font-family:'Barlow Condensed',sans-serif;
  font-size:28px;font-weight:500;letter-spacing:0.25em;text-transform:uppercase;
  color:var(--mid-grey);text-decoration:none;transition:color 0.2s;
}
.menu-overlay-socials a:hover{color:var(--teal);}

@media(max-width:768px){
  .menu-overlay-socials{
    flex-direction:column;
    align-items:center;
    gap:18px;
    width:100%;
    padding:0 24px;
  }
  .menu-overlay-socials a{
    font-size:20px;
    letter-spacing:0.18em;
    max-width:100%;
    overflow-wrap:anywhere;
  }
}

/* Desktop drawer */
@media(min-width:769px){
  .menu-overlay{
    inset:auto;
    top:0;right:0;bottom:0;
    width:340px;
    background:rgba(10,10,10,0.97);
    backdrop-filter:blur(12px);
    align-items:center;
    justify-content:flex-start;
    padding:100px 48px 56px;
    opacity:0;
    transform:translateX(100%);
    transition:transform 0.32s cubic-bezier(0.76,0,0.24,1), opacity 0.32s ease;
  }
  .menu-overlay.open{
    transform:translateX(0);
    opacity:1;
  }
  .menu-overlay-links{text-align:left;margin-bottom:48px;width:100%;}
  .menu-overlay-links a{
    font-size:clamp(28px,2.8vw,40px);
    transform:translateX(24px);
    opacity:0;
    transition:transform 0.45s ease, opacity 0.45s ease, color 0.25s;
  }
  .menu-overlay.open .menu-overlay-links li:nth-child(1) a{transform:translateX(0);opacity:1;transition-delay:0.08s;}
  .menu-overlay.open .menu-overlay-links li:nth-child(2) a{transform:translateX(0);opacity:1;transition-delay:0.13s;}
  .menu-overlay.open .menu-overlay-links li:nth-child(3) a{transform:translateX(0);opacity:1;transition-delay:0.18s;}
  .menu-overlay.open .menu-overlay-links li:nth-child(4) a{transform:translateX(0);opacity:1;transition-delay:0.23s;}
  .menu-overlay-socials{flex-direction:column;gap:16px;}
  .menu-overlay-socials a{font-size:19px;}
  .menu-submenu a{
    font-size:clamp(16px,1.6vw,22px);
    transform:translateX(24px);opacity:0;
    transition:transform 0.45s ease, opacity 0.45s ease, color 0.25s;
  }
  .menu-overlay.open .has-submenu .menu-submenu li:nth-child(1) a{transform:translateX(0);opacity:1;transition-delay:0.18s;}
  .menu-overlay.open .has-submenu .menu-submenu li:nth-child(2) a{transform:translateX(0);opacity:1;transition-delay:0.23s;}
}

/* HERO */
.hero-section{
  position:relative;
  height:var(--app-height);
}
.hero-sticky{
  position:fixed;
  top:0;left:0;right:0;
  height:var(--app-height);
  z-index:1;
  transition:opacity 0.5s ease;
}

/* Backgrounds */
.hero-bg{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;object-position:center 30%;
  filter:brightness(0.68);
  transition:opacity 0.8s ease;
  opacity:0;
}
.hero-bg.active{opacity:1;}
.hero-bg[data-film="hinoel"]{object-position:center 45%;}
.hero-gradient{
  position:absolute;inset:0;
  background:
    linear-gradient(to left,rgba(10,10,10,0.75) 0%,rgba(10,10,10,0.15) 50%,transparent 100%),
    linear-gradient(to top,rgba(10,10,10,0.72) 0%,transparent 52%);
  z-index:1;
}

/* Titles LEFT */
.hero-titles{
  position:absolute;left:40px;bottom:132px;
  z-index:2;display:flex;flex-direction:column;align-items:flex-start;
}
.film-entry{margin-bottom:4px;}
.film-title-btn{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(48px,6.5vw,92px);
  font-weight:400;line-height:1;letter-spacing:-0.02em;
  color:rgba(234,230,222,0.28);
  background:none;border:none;cursor:pointer;text-align:left;
  padding:4px 0;
  text-shadow:0 2px 12px rgba(0,0,0,0.6);
  transition:color 0.4s ease, letter-spacing 0.4s ease, transform 0.4s ease;display:block;
  transform-origin:left center;
}
.film-title-btn.active{color:var(--off-white);letter-spacing:-0.01em;}
.film-title-btn:hover{color:var(--teal);transform:scale(1.04);}
.film-title-inline-zh{
  display:none;
  margin-left:2px;
  font-size:0.5em;
  font-style:italic;
  color:rgba(234,230,222,0.58);
  vertical-align:baseline;
  white-space:nowrap;
  letter-spacing:0;
  transform:translateY(-0.08em);
}
.film-title-btn:hover .film-title-inline-zh{color:var(--teal);}
.film-title-zh{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(11px,1.3vw,17px);
  font-weight:400;font-style:italic;
  color:rgba(234,230,222,0.2);
  margin-top:-2px;margin-bottom:4px;
  transition:color 0.4s ease, transform 0.4s ease;
  transform-origin:left center;
}
.film-title-zh.active{color:rgba(234,230,222,0.45);}
.film-entry:hover .film-title-zh{color:var(--teal);transform:scale(1.04);}
.mobile-hi-noel-hero{display:none;}

/* Scroll nudge indicator */
.mobile-section-arrow{
  position:absolute;
  left:50%;
  bottom:30px;
  z-index:6;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  width:auto;
  height:40px;
  transform:translateX(-50%);
  border:none;
  background:none;
  font-size:0;
  cursor:default;
  pointer-events:none;
  white-space:nowrap;
  opacity:0;
  animation:fadeIn 1s ease 1.5s forwards;
}
.mobile-section-arrow::before{
  content:'';
  display:inline-block;
  width:7px;height:7px;
  border-right:1.5px solid rgba(234,230,222,0.45);
  border-bottom:1.5px solid rgba(234,230,222,0.45);
  transform:rotate(45deg) translateY(-2px);
  flex-shrink:0;
  margin-right:8px;
}
.mobile-section-arrow::after{
  content:'scroll to see more';
  font-family:'Barlow Condensed',sans-serif;
  font-size:12px;
  font-weight:500;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:rgba(234,230,222,0.45);
  line-height:1;
}
.mobile-section-arrow--dark::before{border-color:rgba(10,10,10,0.4);}
.mobile-section-arrow--dark::after{color:rgba(10,10,10,0.4);}

/* Details RIGHT */
.hero-info{
  position:absolute;right:40px;bottom:132px;
  z-index:2;max-width:400px;text-align:right;
}
.hero-info-inner{
  position:absolute;bottom:0;right:0;width:100%;
  opacity:0;transform:translateY(14px);
  transition:opacity 0.5s ease, transform 0.5s ease;
  pointer-events:none;
}
.hero-info-inner.active{
  opacity:1;transform:translateY(0);
  pointer-events:all;position:relative;
}

.hero-film-tag{
  font-family:'Barlow Condensed',sans-serif;
  font-size:10px;font-weight:600;letter-spacing:0.35em;text-transform:uppercase;
  color:var(--teal);margin-bottom:12px;
  display:flex;align-items:center;justify-content:flex-end;gap:10px;
}
.hero-film-tag::after{content:'';display:block;width:24px;height:1px;background:var(--teal);}
.hero-film-more{display:none;}
.hero-film-logline{
  font-size:16.1px;font-weight:300;line-height:1.8;
  color:var(--light-grey);margin-bottom:14px;
}
.hero-laurels{
  display:flex;gap:18px;align-items:center;justify-content:flex-end;
}
.hero-laurel-img{
  width:110px;height:auto;
  filter:drop-shadow(0 0 8px rgba(255,255,255,0.1));
  transition:filter 0.3s;
}
.hero-laurel-img:hover{filter:drop-shadow(0 0 16px rgba(255,255,255,0.25));}

/* BUTTONS */
.btn-primary{
  font-family:'Barlow Condensed',sans-serif;
  font-size:11px;font-weight:600;letter-spacing:0.22em;text-transform:uppercase;
  color:var(--charcoal);background:var(--teal);
  border:none;padding:13px 28px;cursor:pointer;
  text-decoration:none;transition:all 0.25s;display:inline-block;
}
.btn-primary:hover{background:var(--teal-dark);transform:translateY(-2px);}
.btn-ghost{
  font-family:'Barlow Condensed',sans-serif;
  font-size:11px;font-weight:500;letter-spacing:0.22em;text-transform:uppercase;
  color:var(--off-white);background:transparent;
  border:1px solid rgba(234,230,222,0.2);padding:12px 24px;
  cursor:pointer;text-decoration:none;transition:all 0.25s;display:inline-block;
}
.btn-ghost:hover{border-color:var(--teal);color:var(--teal);}

/* TRAILER MODAL */
.trailer-modal{
  position:fixed;inset:0;z-index:500;
  background:rgba(0,0,0,0.92);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;
  transition:opacity 0.35s ease;
}
.trailer-modal.open{opacity:1;pointer-events:all;}
.trailer-frame-wrap{
  width:min(90vw,1280px);
  aspect-ratio:16/9;
  position:relative;
}
.trailer-frame-wrap iframe{
  position:absolute;inset:0;width:100%;height:100%;
}
.trailer-close{
  position:absolute;top:24px;right:32px;
  background:none;border:none;cursor:pointer;
  font-size:20px;color:rgba(234,230,222,0.6);
  transition:color 0.2s;z-index:501;
  font-family:'Barlow',sans-serif;
}
.trailer-close:hover{color:var(--off-white);}

/* SHORT FILMS */
.shorts-section{
  position:relative;z-index:2;
  height:var(--app-height);min-height:var(--app-height);
  overflow:hidden;
  background:var(--charcoal);
}
.shorts-bg{
  position:absolute;top:0;left:0;right:0;bottom:0;
  width:100%;height:100%;
  object-fit:cover;object-position:center;
  filter:brightness(0.55);
  opacity:0;
  transition:
    opacity 0.8s ease,
    width 0.65s cubic-bezier(0.76,0,0.24,1);
}
.shorts-bg.active{opacity:1;animation:shortsBgReveal 18s ease-out forwards;}
.carousel-running .shorts-bg.active{animation:none;}
@media(min-width:1025px){
  .shorts-section.drawer-open .shorts-bg{
    width:50%;
  }
}
@keyframes shortsBgReveal{
  0%  {filter:brightness(0.25) blur(16px);transform:scale(1);}
  4%  {filter:brightness(0.75) blur(0px); transform:scale(1.01);}
  100%{filter:brightness(0.75) blur(0px); transform:scale(1.1) translate(1.5%,1%);}
}
.shorts-grain{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background:white;filter:url(#filmGrain);opacity:0.045;
  animation:grainShift 0.14s steps(1) infinite;
}
.shorts-gradient{
  position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(to right,rgba(10,10,10,0.82) 0%,rgba(10,10,10,0.15) 55%,transparent 100%),
    linear-gradient(to top,rgba(10,10,10,0.6) 0%,transparent 50%);
}
.shorts-titles{
  position:absolute;left:40px;top:50%;transform:translateY(-50%);z-index:4;
  display:flex;flex-direction:column;align-items:flex-start;gap:4px;
}
.shorts-eyebrow{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(18px,2vw,28px);font-weight:400;font-style:italic;
  color:rgba(234,230,222,0.45);margin-bottom:18px;display:block;
  text-shadow:0 2px 12px rgba(0,0,0,0.6);
}
.short-entry{margin-bottom:4px;display:flex;align-items:center;gap:10px;cursor:pointer;}
.short-entry-arrow{
  display:flex;align-items:center;
  color:rgba(255,255,255,0.2);
  flex-shrink:0;user-select:none;
  transition:color 0.4s ease;
}
.short-entry-arrow-line{
  width:22px;height:1px;
  background:currentColor;
  transition:width 0.45s cubic-bezier(0.76,0,0.24,1);
  flex-shrink:0;
}
.short-entry-arrow-head{
  width:9px;
  height:9px;
  border-top:1px solid currentColor;
  border-right:1px solid currentColor;
  transform:rotate(45deg);
  margin-left:-9px;
  transition:transform 0.45s cubic-bezier(0.76,0,0.24,1), margin-left 0.45s cubic-bezier(0.76,0,0.24,1);
  display:block;
}
.short-entry:hover .short-entry-arrow{ color:var(--teal); }
.short-entry:hover .short-entry-arrow-line{ width:46px; }
.short-entry:hover .short-entry-arrow-head{ margin-left:-9px; transform:translateX(5px) rotate(45deg); }
.short-title-btn{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(32px,4vw,56px);font-weight:400;line-height:1;letter-spacing:-0.02em;
  color:var(--off-white);
  background:none;border:none;cursor:pointer;text-align:left;padding:4px 0;
  text-shadow:0 2px 12px rgba(0,0,0,0.6);
  transition:color 0.4s ease,letter-spacing 0.4s ease;display:block;
}
.short-title-btn.active{color:var(--off-white);letter-spacing:-0.01em;}
.short-title-btn:hover{color:var(--teal);}

/* Play button on hero image */
.shorts-play-wrap{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  z-index:5;
  opacity:1;pointer-events:auto;
  transition:opacity 0.35s ease;
}
.shorts-section.drawer-open .shorts-play-wrap{
  opacity:0;pointer-events:none;
}
.shorts-thumb-rail{
  position:absolute;
  left:24px;
  bottom:24px;
  z-index:5;
  display:flex;
  gap:8px;
  max-width:calc(50% - 48px);
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:opacity 0.25s ease, transform 0.25s ease;
}
.shorts-section.drawer-open .shorts-thumb-rail{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.shorts-thumb-btn{
  width:56px;
  height:36px;
  padding:0;
  border:1px solid rgba(234,230,222,0.3);
  background:rgba(10,10,10,0.24);
  cursor:pointer;
  overflow:hidden;
  opacity:0.48;
  transition:opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.shorts-thumb-btn:hover,
.shorts-thumb-btn.active{
  opacity:1;
  border-color:var(--teal);
}
.shorts-thumb-btn.active{transform:translateY(-2px);}
.shorts-thumb-btn img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
/* Drawer */
.shorts-drawer{
  position:absolute;top:0;right:0;bottom:0;width:50%;z-index:6;
  background:#0d0d0d;
  border-left:1px solid rgba(255,255,255,0.1);
  transform:translateX(100%);
  transition:transform 0.65s cubic-bezier(0.76,0,0.24,1);
  display:flex;align-items:center;justify-content:center;
}
.shorts-section.drawer-open .shorts-drawer{ transform:translateX(0); }
.shorts-section.drawer-open .mobile-section-arrow{
  opacity:0;
  pointer-events:none;
}
.shorts-drawer-peek{
  display:none;
}
.shorts-info-pane{
  display:none;flex-direction:column;align-items:center;
  gap:28px;padding:60px 48px;width:100%;
}
.shorts-info-pane.active{ display:flex; }
.shorts-info-eyebrow{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(13px,1.1vw,16px);font-weight:400;font-style:italic;
  color:rgba(234,230,222,0.4);letter-spacing:0.05em;
}
.shorts-info-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(40px,4vw,64px);font-weight:400;line-height:1;letter-spacing:-0.02em;
  color:var(--off-white);
  text-decoration:none;
  transition:color 0.3s ease;
}
a.shorts-info-title:hover{ color:var(--teal); }
.shorts-play-btn{
  display:flex;align-items:center;justify-content:center;
  width:72px;height:72px;border-radius:50%;
  cursor:pointer;flex-shrink:0;
  border:1.5px solid rgba(234,230,222,0.5);
  background:rgba(10,10,10,0.35);
  backdrop-filter:blur(8px);
  transition:border-color 0.25s,background 0.25s,transform 0.25s;
}
.shorts-play-btn:hover{
  border-color:var(--teal);background:rgba(10,10,10,0.55);
  transform:scale(1.1);
}
.shorts-play-icon{
  font-size:22px;color:var(--off-white);
  margin-left:4px;line-height:1;
}
.shorts-play-btn:hover .shorts-play-icon{color:var(--teal);}
.shorts-laurels-row{
  display:flex;align-items:center;justify-content:center;
  flex-wrap:wrap;gap:20px;max-width:100%;
}
.shorts-laurel-img{
  width:clamp(80px,7vw,115px);height:auto;
  opacity:0.85;transition:opacity 0.3s;
}
.shorts-laurel-img:hover{opacity:1;}
.shorts-laurel-img.highlight{
  width:clamp(120px,12vw,170px);opacity:1;
}
.shorts-info-pane[data-short="monster"] .shorts-laurel-img{
  filter:brightness(0) invert(1);
}
.shorts-info-synopsis{
  font-family:'Barlow',sans-serif;
  font-size:clamp(16px,1.24vw,18px);font-weight:300;line-height:1.65;
  color:rgba(234,230,222,0.65);
  text-align:center;max-width:420px;
}
.shorts-info-specs{
  display:grid;grid-template-columns:1fr 1fr;
  gap:10px 24px;width:100%;max-width:420px;
}
.shorts-info-spec{
  display:flex;flex-direction:column;gap:2px;
}
.shorts-info-spec--full{
  grid-column:1/-1;
}
.shorts-info-spec-label{
  font-family:'Barlow Condensed',sans-serif;
  font-size:12px;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;
  color:rgba(234,230,222,0.35);
}
.shorts-info-spec-value{
  font-family:'Barlow',sans-serif;
  font-size:clamp(14px,1.1vw,17px);font-weight:300;
  color:rgba(234,230,222,0.8);
}
.shorts-awards-label{
  align-self:center;
  margin-top:8px;
}
.shorts-info-link{
  color:rgba(234,230,222,0.8);text-decoration:none;
  transition:color 0.25s;
}
.shorts-info-link:hover{ color:var(--teal); }

/* MERCHANDISE */
.merch-section{
  position:relative;z-index:2;
  background:var(--off-white);
  height:var(--app-height);min-height:var(--app-height);
  padding:80px 40px 40px;
  display:flex;flex-direction:column;
}
.merch-header{
  flex:0 0 auto;
  margin-bottom:32px;
  text-align:center;
}
.merch-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(22px,2.8vw,39px);font-weight:400;font-style:italic;
  color:var(--charcoal);line-height:1;
}
.merch-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
  flex:1;min-height:0;
}
.merch-card{
  display:flex;flex-direction:column;
  text-decoration:none;
  min-height:0;
  transition:transform 0.3s ease;
}
.merch-card:hover{transform:translateY(-4px);}
.merch-card-img-wrap{
  aspect-ratio:3/4;overflow:hidden;
  background:rgba(10,10,10,0.06);
}
.merch-card-img-wrap img{
  width:100%;height:100%;object-fit:cover;object-position:center;
  transition:transform 0.6s ease;
}
.merch-card-img--box{object-position:center 15%;}
.merch-card:hover .merch-card-img-wrap img{transform:scale(1.04);}
.merch-card-body{
  flex:1;
  padding-top:14px;
  display:flex;flex-direction:column;gap:6px;
  justify-content:flex-start;
}
.merch-card-name{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(20px,2vw,28px);font-weight:400;
  color:var(--charcoal);line-height:1.3;
}
.merch-card-price{
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(15px,1.5vw,20px);font-weight:500;letter-spacing:0.04em;
  color:var(--mid-grey);
  display:flex;align-items:center;gap:8px;
}
.merch-card-variants{
  font-size:13px;font-weight:400;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--light-grey);
}
.merch-shop-all{
  flex:0 0 auto;
  font-family:'Barlow Condensed',sans-serif;
  font-size:11px;font-weight:500;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--teal-dark);text-decoration:none;
  margin-top:20px;display:inline-block;align-self:flex-end;
  transition:letter-spacing 0.2s ease;
}
.merch-shop-all:hover{letter-spacing:0.28em;}

@media(max-width:1024px) and (min-width:769px){
  .hero-sticky{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-end;
    padding:0 56px var(--hero-bottom);
  }
  .hero-titles{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    margin-bottom:14px;
  }
  .film-entry{margin-bottom:0;}
  .film-entry:not(:has(.film-title-btn.active)){display:none;}
  .film-title-btn{font-size:clamp(58px,8vw,86px);}
  .film-title-inline-zh{
    display:inline-block;
    margin-left:6px;
    font-size:0.42em;
    transform:translateY(-0.06em);
  }
  .film-title-btn[data-film="hinoel"].active{
    transform:translateY(-10px);
  }
  .film-title-zh{display:none;}
  .hero-info{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    width:100%;
    max-width:720px;
    text-align:center;
  }
  .hero-info-inner{
    position:absolute;
    top:auto;
    bottom:0;
    right:auto;
    left:0;
    width:100%;
    text-align:left;
  }
  .hero-info-inner.active{
    position:relative;
    top:auto;
    left:auto;
  }
  .hero-info-inner[data-film="hinoel"].active{
    transform:translateY(-10px);
  }
  .hero-film-tag{
    font-size:14px;
    justify-content:flex-start;
    min-height:30px;
    margin-bottom:6px;
  }
  .hero-film-tag::before{content:'';display:block;width:24px;height:1px;background:var(--teal);}
  .hero-film-tag::after{display:none;}
  .hero-film-more{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:28px;
    padding:0 10px;
    margin-left:12px;
    border:1px solid rgba(42,176,181,0.72);
    border-radius:999px;
    background:rgba(42,176,181,0.14);
    color:var(--off-white);
    text-decoration:none;
    letter-spacing:0.18em;
    box-shadow:0 0 18px rgba(42,176,181,0.12);
  }
  .hero-film-more::after{
    content:'›';
    margin-left:7px;
    color:var(--teal);
    font-size:18px;
    line-height:1;
    transform:translateY(-1px);
  }
  .hero-film-logline{
    font-size:17px;
    line-height:1.55;
    margin-bottom:10px;
  }
  .btn-primary,
  .btn-ghost,
  .merch-card-variants,
  .merch-shop-all,
  .shorts-drawer-peek-label,
  .shorts-info-eyebrow,
  .cd-label,
  .netflix-badge{
    font-size:14px;
  }
  .countdown-eyebrow{
    align-self:flex-start;
    justify-content:flex-start;
    text-align:left;
    font-size:clamp(20px,2.7vw,26px);
    letter-spacing:0.16em;
  }
  .countdown-netflix-wordmark{height:clamp(20px,2.8vw,26px);}
  .countdown-unit>span:first-child,
  .countdown-sep{
    font-size:clamp(40px,5.2vw,58px);
  }
  .netflix-launch,
  .countdown-wrap{
    align-items:center;
    text-align:center;
  }
  .countdown-timer{
    justify-content:flex-start;
  }
  .hero-laurels{
    justify-content:flex-start;
    gap:14px;
    margin-top:4px;
  }
  .hero-laurel-img{
    width:128px;
  }
  .about-title{font-size:clamp(40px,5.5vw,64px);font-weight:600;}
  .merch-section,
  .shorts-section,
  .about-section{
    height:100vh;
    min-height:100vh;
  }
  .about-split{
    position:relative;
    grid-template-columns:1fr;
    min-height:calc(100vh - 320px);
    overflow:hidden;
  }
  .about-split-text{
    position:relative;
    z-index:2;
    align-items:flex-end;
    justify-content:flex-end;
    padding:120px 56px 72px;
    text-align:right;
  }
  .about-split-image{
    position:absolute;
    inset:0;
    z-index:0;
  }
  .about-split-image img{
    object-position:center;
    filter:brightness(0.82);
  }
  .about-split-image::after{
    background:
      linear-gradient(to left,rgba(26,30,36,0.9) 0%,rgba(26,30,36,0.58) 38%,rgba(26,30,36,0.12) 76%),
      linear-gradient(to top,rgba(26,30,36,0.86) 0%,rgba(26,30,36,0.36) 48%,rgba(26,30,36,0.1) 100%);
  }
  .about-mission-text{
    font-size:clamp(20px,2.45vw,26px);
    line-height:1.55;
    max-width:680px;
    color:rgba(255,255,255,0.78);
  }
  .about-footer{
    min-height:320px;
    height:auto;
    padding:46px 48px 96px;
    gap:26px;
  }
  .merch-section{padding:88px 32px 40px;}
  .merch-grid{grid-template-columns:repeat(2,1fr);gap:16px;flex:1;min-height:0;}
  .merch-title{font-size:clamp(29px,3.6vw,51px);}
}
@media(max-width:768px){
  .merch-section{height:auto;min-height:var(--app-height);padding:88px 20px 60px;}
  .mobile-hi-noel-hero + .merch-section{
    border-top:1px solid rgba(10,10,10,0.18);
  }
  .merch-grid{grid-template-columns:repeat(2,1fr);gap:12px;flex:none;}
  .merch-card-img-wrap{flex:none;aspect-ratio:1/1;}
  .merch-card-img-wrap--box img{object-position:center 0% !important;}
  .merch-title{font-size:clamp(29px,3.6vw,51px);}
  .merch-card-name{font-size:clamp(22px,6vw,30px);line-height:1.2;}
  .merch-card-price{font-size:16px;}
  .merch-card-variants{font-size:14px;}
  .merch-shop-all{font-size:14px;}
}

/* ABOUT */
.about-section{
  position:relative;z-index:2;
  background:#1a1e24;
  height:var(--app-height);min-height:var(--app-height);
  padding:0;
  display:flex;flex-direction:column;
  overflow:hidden;
}
.about-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(32px,4vw,56px);font-weight:400;font-style:italic;
  color:#fff;line-height:1;margin-bottom:20px;
}

/* About split layout */
.about-split{
  flex:1;min-height:0;
  display:grid;
  grid-template-columns:2fr 3fr;
  position:relative;
}
.about-split-text{
  display:flex;flex-direction:column;justify-content:center;
  padding:60px 48px 60px 56px;
}
.about-split-image{
  position:relative;overflow:hidden;
}
.about-split-image img{
  width:100%;height:100%;object-fit:cover;object-position:center top;
}
.about-split-image::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(to right, #1a1e24 0%, rgba(26,30,36,0.4) 30%, transparent 60%);
  pointer-events:none;
}
.about-mission-text{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(16px,1.5vw,22px);font-weight:400;font-style:italic;
  line-height:1.8;color:rgba(255,255,255,0.65);
  max-width:480px;
}
.about-industry{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,0.14);
  max-width:480px;
}
.about-industry-title{
  font-family:'Barlow Condensed',sans-serif;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.24em;
  text-transform:uppercase;
  color:var(--teal);
  margin-bottom:10px;
}
.about-industry-text{
  font-family:'Barlow',sans-serif;
  font-size:14px;
  font-weight:300;
  line-height:1.65;
  color:rgba(255,255,255,0.58);
  max-width:460px;
}
.about-industry-email{
  display:inline-block;
  margin:6px 0 8px;
  font-family:'Barlow Condensed',sans-serif;
  font-size:18px;
  font-weight:500;
  letter-spacing:0.12em;
  color:rgba(255,255,255,0.86);
  text-decoration:none;
  transition:color 0.2s ease;
}
.about-industry-email:hover{color:var(--teal);}

/* ── ENQUIRIES DRAWER (mobile only) ── */
.enq-drawer{display:none;}

.about-footer .footer-social-links li a{color:rgba(10,10,10,0.6);}
.about-footer .footer-social-links li a:hover{color:var(--teal-dark);}

@media(max-width:1024px){
  .shorts-thumb-rail{display:none;}
  .shorts-section.drawer-open .shorts-titles{
    opacity:0;
    pointer-events:none;
  }
  .shorts-bg{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .shorts-bg[data-short="prism"]{object-position:center center;}
  .shorts-bg[data-short="monster"]{object-position:58% center;}
  .shorts-titles{
    left:50%;
    top:calc(69% + 20px);
    transform:translate(-50%,-50%);
    align-items:center;
    text-align:center;
  }
  .shorts-titles::before{
    content:'';
    position:absolute;
    inset:-40px -88px -50px;
    z-index:-1;
    background:linear-gradient(to bottom,rgba(10,10,10,0.08),rgba(10,10,10,0.7));
    filter:blur(18px);
    pointer-events:none;
  }
  .shorts-eyebrow{
    font-size:clamp(24px,3.6vw,36px);
    color:rgba(234,230,222,0.72);
  }
  .short-title-btn{
    font-size:clamp(46px,7vw,78px);
  }
  .short-title-btn.active[data-short="prism"]{color:var(--teal);}
  .short-title-btn.active[data-short="monster"]{color:#7DE7E2;}
  .shorts-section[data-current-short="prism"]{--short-tab-accent:var(--teal);}
  .shorts-section[data-current-short="monster"]{--short-tab-accent:#7DE7E2;}
  .short-entry-arrow{
    display:none;
  }
  .shorts-drawer{
    width:100%;
    transform:translateX(calc(100% - 54px));
    background:transparent;
    border-left:none;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    transition:transform 0.45s cubic-bezier(0.76,0,0.24,1);
  }
  .shorts-section.drawer-open .shorts-drawer{
    transform:translateX(0);
  }
  .shorts-drawer::before{
    content:'';
    position:absolute;
    inset:0;
    z-index:0;
    background:transparent;
    transition:background 0.3s ease, backdrop-filter 0.3s ease;
  }
  .shorts-section.drawer-open .shorts-drawer::before{
    background:rgba(10,10,10,0.9);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
  }
  .shorts-drawer-peek{
    display:none;
    position:absolute;
    top:66%;
    left:0;
    width:54px;
    height:132px;
    transform:translateY(-50%);
    align-items:center;
    justify-content:center;
    z-index:2;
    padding:0;
    border:1px solid color-mix(in srgb,var(--short-tab-accent,var(--teal)) 62%,transparent);
    border-right:none;
    border-radius:18px 0 0 18px;
    background:color-mix(in srgb,var(--short-tab-accent,var(--teal)) 18%,transparent);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    color:var(--short-tab-accent,var(--teal));
    cursor:pointer;
    box-shadow:0 0 24px color-mix(in srgb,var(--short-tab-accent,var(--teal)) 18%,transparent);
    transition:transform 0.22s cubic-bezier(0.34,1.56,0.64,1), background 0.2s ease, box-shadow 0.2s ease;
  }
  .shorts-drawer-peek-label{
    font-family:'Barlow Condensed',sans-serif;
    font-size:12px;
    font-weight:600;
    letter-spacing:0.2em;
    text-transform:uppercase;
    writing-mode:vertical-rl;
    transform:rotate(180deg);
  }
  .shorts-drawer-peek-close{
    display:none;
    font-family:'Barlow',sans-serif;
    font-size:18px;
    line-height:1;
  }
  .shorts-section.drawer-open .shorts-drawer-peek{
    display:flex;
    left:auto;
    right:0;
    border-left:none;
    border-right:1px solid color-mix(in srgb,var(--short-tab-accent,var(--teal)) 62%,transparent);
    border-radius:0 18px 18px 0;
    background:color-mix(in srgb,var(--short-tab-accent,var(--teal)) 24%,rgba(10,10,10,0.42));
  }
  .shorts-section.drawer-open .shorts-drawer-peek-label{
    display:none;
  }
  .shorts-section.drawer-open .shorts-drawer-peek-close{
    display:block;
  }
  .shorts-drawer .shorts-info-pane{
    position:relative;
    z-index:1;
    opacity:0;
    transform:translateX(24px);
    transition:opacity 0.25s ease, transform 0.25s ease;
    overflow-y:auto;
    max-height:100%;
    -webkit-overflow-scrolling:touch;
    padding:80px 72px 60px 24px;
    gap:20px;
    align-items:center;
    text-align:center;
  }
  .shorts-section.drawer-open .shorts-drawer .shorts-info-pane.active{
    opacity:1;
    transform:translateX(0);
  }
  .shorts-drawer .shorts-info-eyebrow{
    font-size:13px;
  }
  .shorts-drawer .shorts-info-title{
    font-size:clamp(38px,10vw,58px);
  }
  .shorts-drawer .shorts-info-synopsis{
    font-size:22px;
    line-height:1.7;
    text-align:center;
    max-width:100%;
  }
  .shorts-drawer .shorts-info-specs{
    grid-template-columns:1fr 1fr;
    gap:16px 20px;
    width:100%;
    max-width:100%;
    text-align:center;
  }
  .shorts-drawer .shorts-info-spec{align-items:center;}
  .shorts-drawer .shorts-info-spec-label{
    font-size:17px;
  }
  .shorts-drawer .shorts-info-spec-value{
    font-size:20px;
    line-height:1.5;
  }
  .shorts-drawer .shorts-laurels-row{
    flex-direction:column;
    align-items:center;
    gap:16px;
    width:100%;
  }
  .shorts-drawer .shorts-laurel-img{
    width:clamp(100px,28vw,160px);
  }
  .shorts-drawer .shorts-laurel-img.highlight{
    width:clamp(140px,36vw,200px);
  }
  .shorts-drawer .shorts-awards-label{
    align-self:center;
    margin-top:4px;
  }
}
@media(max-width:768px){
  .shorts-section{height:auto;min-height:var(--app-height);padding:88px 20px 40px;}
  .shorts-bg[data-short="prism"]{object-position:52% center;}
  .shorts-bg[data-short="monster"]{object-position:62% center;}
  .shorts-titles{
    left:50%;
    top:calc(68% + 20px);
    transform:translate(-50%,-50%);
    align-items:center;
    text-align:center;
    width:calc(100% - 40px);
  }
  .shorts-titles::before{
    inset:-36px -40px -46px;
    background:linear-gradient(to bottom,rgba(10,10,10,0.08),rgba(10,10,10,0.76));
    filter:blur(16px);
  }
  .shorts-eyebrow{
    font-size:clamp(28px,8vw,38px);
    color:rgba(234,230,222,0.78);
    margin-bottom:20px;
  }
  .short-title-btn{
    font-size:clamp(54px,16vw,76px);
  }
  .shorts-drawer{
    transform:translateX(calc(100% - 44px));
  }
  .shorts-drawer-peek{
    width:44px;
    height:112px;
    top:71%;
  }
  .shorts-drawer-peek-label,
  .shorts-drawer-peek-close{
    font-size:14px;
  }
  .shorts-info-eyebrow{
    font-size:14px;
  }
  .about-section{height:auto;min-height:var(--app-height);}
  .about-split{
    position:relative;
    grid-template-columns:1fr;
    grid-template-rows:auto;
    min-height:calc(var(--app-height) - 260px);
    overflow:hidden;
  }
  .about-split-text{
    position:relative;
    z-index:2;
    padding:88px 24px 64px;
    justify-content:flex-end;
    min-height:calc(var(--app-height) - 260px);
  }
  .about-split-text::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(10,10,10,0.52);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    z-index:-1;
  }
  .about-split-image{
    position:absolute;
    inset:0;
    z-index:0;
    min-height:0;
    max-height:none;
  }
  .about-split-image img{
    object-position:center;
    filter:brightness(0.82);
  }
  .about-split-image::after{
    background:
      linear-gradient(to top,rgba(26,30,36,0.92) 0%,rgba(26,30,36,0.62) 52%,rgba(26,30,36,0.18) 100%),
      linear-gradient(to right,rgba(26,30,36,0.72) 0%,rgba(26,30,36,0.18) 72%,transparent 100%);
  }
  .about-title{font-size:clamp(38px,11vw,58px);}
  .about-mission-text{font-size:clamp(19px,5.2vw,23px);line-height:1.55;}
  .about-industry{display:none;}
  .enq-drawer{
    display:flex;
    position:absolute;left:0;right:0;bottom:0;top:auto;
    width:100%;height:380px;
    z-index:5;
    border-left:none;
    border-top:1px solid rgba(255,255,255,0.1);
    background:rgba(10,10,10,0.94);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
    transform:translateY(calc(100% - 48px));
    transition:transform 0.45s cubic-bezier(0.76,0,0.24,1);
  }
  .about-section.enq-open .enq-drawer{
    transform:translateY(0);
  }
  .enq-tab{
    position:absolute;
    top:0;left:0;right:0;
    width:100%;height:48px;
    padding:0;
    display:flex;align-items:center;justify-content:center;
    cursor:pointer;
    color:var(--teal);
    transform:none;
    border:none;
    border-bottom:1px solid rgba(255,255,255,0.08);
    border-radius:0;
    background:transparent;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  .enq-tab-label{
    font-family:'Barlow Condensed',sans-serif;
    font-weight:600;text-transform:uppercase;
    writing-mode:horizontal-tb;
    transform:none;
    font-size:15px;
    letter-spacing:0.2em;
  }
  .enq-tab-arrow-up{display:inline;margin-left:8px;}
  .enq-tab-arrow-down{display:none;}
  .enq-tab-close{display:none !important;}
  .about-section.enq-open .enq-tab{display:none;}
  .enq-content{
    display:flex;flex-direction:column;justify-content:flex-start;
    margin-left:0;
    margin-top:48px;
    padding:20px 24px 28px;
  }
  .enq-title{
    font-family:'Barlow Condensed',sans-serif;
    font-weight:600;text-transform:uppercase;color:var(--teal);
    font-size:18px;letter-spacing:0.18em;margin-bottom:14px;
  }
  .enq-text{
    font-family:'Barlow',sans-serif;font-weight:300;
    color:rgba(255,255,255,0.58);
    font-size:20px;line-height:1.55;
  }
  .enq-email{
    display:inline-block;
    font-family:'Barlow Condensed',sans-serif;font-weight:500;
    color:rgba(255,255,255,0.86);text-decoration:none;
    font-size:25px;letter-spacing:0.08em;margin:10px 0 14px;
    word-break:break-all;
  }
  .about-footer{
    min-height:260px;
    height:auto;
    padding:24px 24px 28px;
    gap:18px;
  }
  .about-footer .fp-footer-newsletter{
    width:100%;
    max-width:520px;
  }
  .about-footer .fp-footer-newsletter-text{
    font-size:17px;
    line-height:1.55;
  }
}

/* FOOTER */
footer{
  position:relative;z-index:2;
  background:#EAE6DE;border-top:1px solid rgba(0,0,0,0.08);
  min-height:12vh;
  height:12vh;
  padding:14px 40px 12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
}
.about-footer{
  flex:0 0 auto;
  margin-top:auto;
  background:var(--off-white);
  border-top:1px solid rgba(10,10,10,0.08);
  min-height:auto;height:auto;
  padding:16px 40px;
}
.footer-grid{
  min-height:0;
}
.footer-col-title{
  font-family:'Barlow Condensed',sans-serif;
  font-size:16px;font-weight:600;letter-spacing:0.25em;text-transform:uppercase;
  color:rgba(10,10,10,0.4);margin-bottom:12px;padding-bottom:0;
}
.footer-social-links{list-style:none;display:flex;gap:28px;align-items:center;justify-content:center;flex-wrap:wrap;}
.footer-social-links li a{
  color:rgba(10,10,10,0.68);text-decoration:none;
  display:inline-flex;align-items:center;padding:4px;
  transition:color 0.2s;
}
.footer-social-links li a:hover{color:var(--teal);}
.footer-bottom{
  display:flex;justify-content:center;
}
.footer-copy{
  font-family:'Barlow Condensed',sans-serif;
  font-size:11px;letter-spacing:0.08em;
  color:rgba(10,10,10,0.35);text-transform:uppercase;
}

/* RESPONSIVE */
@media(max-width:1024px){
  nav{padding:0 20px 0 0;height:96px;}
  .nav-logo{margin-left:-24px;}
}
@media(max-width:768px){
  .hero-section{
    overflow:hidden;
  }
  .hero-sticky{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding-bottom:100px;
  }
  .hero-titles{
    position:relative;
    left:auto;right:auto;bottom:auto;
    margin-top:auto;
    z-index:4;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:0 20px;
  }
  .film-entry:not(:has(.film-title-btn.active)){display:none;}
  .film-entry{
    min-height:unset;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
  }
  .hero-info{
    position:relative;
    left:auto;right:auto;bottom:auto;
    width:100%;
    height:auto;
    max-width:none;
    text-align:center;
    padding:0 20px;
    margin-top:8px;
  }
  .hero-info-inner{
    position:relative;
    top:auto;bottom:auto;left:auto;right:auto;
    min-height:unset;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
  }
  .hero-info-inner.active{
    position:relative;
    top:auto;left:auto;right:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    width:100%;
  }
  .film-title-btn{font-size:clamp(42px,11vw,62px);text-align:center;}
  .film-title-inline-zh{
    display:inline-block;
    margin-left:1px;
    font-size:0.48em;
    transform:translateY(-0.06em);
  }
  .film-title-zh{display:none;}
  .hero-film-logline{display:none;}
  .btn-primary,.btn-ghost{padding:12px 16px;font-size:14px;}
  .footer-social-links{gap:18px;}
  .menu-overlay-links a{font-size:clamp(38px,12vw,60px);}
  .mobile-section-arrow{
    position:absolute;
    left:50%;
    bottom:22px;
    z-index:6;
    display:flex;
    align-items:center;
    justify-content:center;
    width:auto;
    height:48px;
    transform:translateX(-50%);
    border:none;
    background:none;
    font-size:0;
    cursor:default;
    white-space:nowrap;
  }
  .mobile-section-arrow::before{
    content:'';
    display:inline-block;
    width:7px;height:7px;
    border-right:1.5px solid rgba(234,230,222,0.45);
    border-bottom:1.5px solid rgba(234,230,222,0.45);
    transform:rotate(45deg) translateY(-2px);
    flex-shrink:0;
    margin-right:8px;
  }
  .mobile-section-arrow::after{
    content:'scroll to see more';
    font-family:'Barlow Condensed',sans-serif;
    font-size:12px;
    font-weight:500;
    letter-spacing:0.18em;
    text-transform:uppercase;
    color:rgba(234,230,222,0.45);
    line-height:1;
  }
  .mobile-section-arrow--dark::before{border-color:rgba(10,10,10,0.4);}
  .mobile-section-arrow--dark::after{color:rgba(10,10,10,0.4);}

  .hero-film-tag{
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:14px;
    margin-bottom:8px;
    min-height:14px;
  }
  .hero-film-tag::before{content:'';display:block;width:24px;height:1px;background:var(--teal);}
  .hero-film-tag::after{display:none;}
  .netflix-launch{align-items:center;}
  .hero-film-more{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:28px;
    padding:0 10px;
    margin-left:12px;
    border:1px solid rgba(42,176,181,0.72);
    border-radius:999px;
    background:rgba(42,176,181,0.14);
    color:var(--off-white);
    text-decoration:none;
    letter-spacing:0.18em;
    box-shadow:0 0 18px rgba(42,176,181,0.12);
  }
  .hero-film-more::after{
    content:'›';
    margin-left:7px;
    color:var(--teal);
    font-size:18px;
    line-height:1;
    transform:translateY(-1px);
  }
  .hero-laurels{
    flex-direction:column;
    align-items:center;
    gap:12px;
  }
  .hero-laurel-img{
    width:clamp(142px,41vw,180px);
  }
  .hero-info-inner[data-film="hinoel"]{display:none;}
  .mobile-hi-noel-hero{
    position:relative;
    z-index:2;
    display:block;
    min-height:100dvh;
    overflow:hidden;
    background:var(--charcoal);
  }
  .mobile-hi-noel-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:50% 60%;
    filter:brightness(0.62);
  }
  .mobile-hi-noel-gradient{
    position:absolute;
    inset:0;
    background:
      linear-gradient(to top,rgba(10,10,10,0.82) 0%,rgba(10,10,10,0.26) 58%,transparent 100%),
      linear-gradient(to right,rgba(10,10,10,0.58) 0%,transparent 70%);
  }
  .mobile-hi-noel-content{
    position:absolute;
    left:20px;right:20px;
    bottom:104px;
    z-index:2;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .mobile-hi-noel-title{
    display:inline-block;
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(42px,11vw,62px);
    font-weight:400;
    line-height:1;
    color:var(--off-white);
    margin-bottom:10px;
    text-decoration:none;
    text-shadow:0 2px 12px rgba(0,0,0,0.6);
    text-align:center;
  }
  .mobile-hi-noel-title:hover{color:var(--teal);}
}

/* iPad portrait follows the mobile-style homepage flow. */
@media(min-width:769px) and (max-width:1024px) and (orientation:portrait) and (hover:none) and (pointer:coarse){
  .menu-overlay-links a{font-size:clamp(36px,3.6vw,52px);}
  .menu-submenu a{font-size:clamp(31px,3.1vw,43px);}
  .menu-overlay-socials a{font-size:20px;}
  .hero-section{overflow:hidden;}
  .hero-sticky{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-end;
    padding:0 56px var(--hero-bottom);
  }
  .hero-titles{
    position:relative;
    left:auto;right:auto;bottom:auto;
    margin-bottom:14px;
  }
  .film-entry{margin-bottom:0;}
  .film-entry:not(:has(.film-title-btn.active)){display:none;}
  .film-title-btn{font-size:clamp(58px,8vw,86px);}
  .film-title-inline-zh{display:inline-block;margin-left:6px;font-size:0.42em;transform:translateY(-0.06em);}
  .film-title-zh{display:none;}
  .hero-info{
    position:relative;
    left:auto;right:auto;bottom:auto;
    width:100%;max-width:720px;text-align:left;
  }
  .hero-info-inner{
    position:absolute;
    top:auto;bottom:0;right:auto;left:0;
    width:100%;text-align:left;
  }
  .hero-info-inner.active{position:relative;top:auto;left:auto;}
  .hero-info-inner[data-film="hinoel"]{display:none;}
  .hero-film-tag{font-size:14px;justify-content:flex-start;min-height:30px;margin-bottom:6px;}
  .hero-film-tag::before{content:'';display:block;width:24px;height:1px;background:var(--teal);}
  .hero-film-tag::after{display:none;}
  .hero-film-more{
    display:inline-flex;align-items:center;justify-content:center;
    min-height:28px;padding:0 10px;margin-left:12px;
    border:1px solid rgba(42,176,181,0.72);border-radius:999px;
    background:rgba(42,176,181,0.14);color:var(--off-white);
    text-decoration:none;letter-spacing:0.18em;
    box-shadow:0 0 18px rgba(42,176,181,0.12);
  }
  .hero-film-more::after{content:'›';margin-left:7px;color:var(--teal);font-size:18px;line-height:1;transform:translateY(-1px);}
  .hero-film-logline{font-size:17px;line-height:1.55;margin-bottom:10px;}
  .hero-laurels{justify-content:flex-start;gap:14px;margin-top:4px;}
  .hero-laurel-img{width:128px;}
  .netflix-launch{align-items:center;text-align:center;}

  .mobile-hi-noel-hero{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-end;
    padding:0 56px var(--hero-bottom);
    min-height:100dvh;
    overflow:hidden;
    background:var(--charcoal);
  }
  .mobile-hi-noel-content{
    position:absolute;
    left:56px;right:56px;
    bottom:var(--hero-bottom);
    z-index:2;
  }
  .mobile-hi-noel-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:50% 40%;
    filter:brightness(0.62);
  }
  .mobile-hi-noel-gradient{
    position:absolute;
    inset:0;
    background:
      linear-gradient(to top,rgba(10,10,10,0.82) 0%,rgba(10,10,10,0.26) 58%,transparent 100%),
      linear-gradient(to right,rgba(10,10,10,0.58) 0%,transparent 70%);
  }
  .mobile-hi-noel-title{
    display:inline-block;
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(62px,8vw,92px);
    font-weight:400;
    line-height:1;
    color:var(--off-white);
    margin-bottom:24px;
    text-decoration:none;
  }
  .mobile-hi-noel-title:hover{color:var(--teal);}
  .hero-info-inner[data-film="hinoel"]{display:none;}
  .mobile-section-arrow{
    position:absolute;
    left:50%;
    bottom:22px;
    z-index:6;
    display:flex;
    align-items:center;
    justify-content:center;
    width:auto;
    height:48px;
    transform:translateX(-50%);
    border:none;
    background:none;
    font-size:0;
    cursor:default;
    white-space:nowrap;
  }
  .mobile-section-arrow::before{
    content:'';
    display:inline-block;
    width:7px;height:7px;
    border-right:1.5px solid rgba(234,230,222,0.45);
    border-bottom:1.5px solid rgba(234,230,222,0.45);
    transform:rotate(45deg) translateY(-2px);
    flex-shrink:0;
    margin-right:8px;
  }
  .mobile-section-arrow::after{
    content:'scroll to see more';
    font-family:'Barlow Condensed',sans-serif;
    font-size:12px;
    font-weight:500;
    letter-spacing:0.18em;
    text-transform:uppercase;
    color:rgba(234,230,222,0.45);
    line-height:1;
  }
  .mobile-section-arrow--dark::before{border-color:rgba(10,10,10,0.4);}
  .mobile-section-arrow--dark::after{color:rgba(10,10,10,0.4);}
}

.shorts-section.drawer-open .mobile-section-arrow{
  opacity:0 !important;
  pointer-events:none !important;
}

@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}

/* ── CINEMATIC HERO ── */
.grain-filter-def{position:absolute;width:0;height:0;overflow:hidden;pointer-events:none;}

.hero-bg{will-change:transform;}
.hero-bg.active{animation:heroBgReveal 22s ease-out forwards;}
@keyframes heroBgReveal{
  0%  {filter:brightness(0.2) blur(16px);transform:scale(1);}
  4%  {filter:brightness(0.82) blur(0px); transform:scale(1.01);}
  100%{filter:brightness(0.82) blur(0px); transform:scale(1.07) translate(1%,0.8%);}
}
@media(max-width:1024px),(hover:none) and (pointer:coarse){
  .hero-bg[data-film="lml"]  { object-position: 38% 30% !important; }
  .hero-bg[data-film="hinoel"]{ object-position: 50% 65% !important; }
  .hero-bg{will-change:auto;}
  .hero-bg.active{ animation:heroBgRevealMobile 22s ease-out forwards; }
  .mobile-hi-noel-bg{ animation:heroBgRevealMobile 22s ease-out forwards; }
}
@keyframes heroBgRevealMobile{
  0%  {filter:brightness(0.2) blur(16px);}
  4%  {filter:brightness(0.82) blur(0px);}
  100%{filter:brightness(0.82) blur(0px);}
}

.hero-grain{
  position:absolute;inset:0;z-index:1;
  pointer-events:none;
  background:white;
  filter:url(#filmGrain);
  opacity:0.055;
  animation:grainShift 0.14s steps(1) infinite;
}
@keyframes grainShift{
  0%  {transform:translate(0,0) scale(1.5);}
  20% {transform:translate(-4%,3%) scale(1.5);}
  40% {transform:translate(3%,-5%) scale(1.5);}
  60% {transform:translate(-2%,4%) scale(1.5);}
  80% {transform:translate(5%,-2%) scale(1.5);}
  100%{transform:translate(-3%,1%) scale(1.5);}
}

@keyframes loglineIn{
  from{opacity:0;transform:translateY(12px);}
  to{opacity:1;transform:translateY(0);}
}
.logline-animate{animation:loglineIn 0.55s cubic-bezier(0.22,0.61,0.36,1) forwards;}

/* ── NETFLIX COUNTDOWN ── */
.netflix-launch{margin-bottom:20px;display:flex;flex-direction:column;align-items:flex-end;}

.netflix-badge{
  display:inline-flex;align-items:center;gap:14px;
  background:rgba(10,10,10,0.55);
  border:1px solid rgba(234,230,222,0.12);
  color:var(--off-white);
  text-decoration:none;padding:12px 22px;
  transition:border-color 0.2s ease,transform 0.2s ease;
  backdrop-filter:blur(6px);
}
.netflix-badge-label{
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(13px,1.4vw,17px);font-weight:500;letter-spacing:0.22em;text-transform:uppercase;
  white-space:nowrap;
}
.netflix-badge:hover{border-color:rgba(234,230,222,0.35);transform:translateY(-2px);}
.netflix-logo-img{height:clamp(18px,2vw,26px);width:auto;display:block;}

/* iPad portrait follows the finalized mobile flow without hover-only feedback. */
@media(min-width:769px) and (max-width:1024px) and (orientation:portrait) and (hover:none) and (pointer:coarse){
  .hero-sticky{
    align-items:center;
    justify-content:flex-end;
    padding:0 40px 118px;
  }
  .hero-titles{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    margin-bottom:10px;
    padding:0;
  }
  .film-title-btn{
    font-size:clamp(56px,9vw,76px);
    text-align:center;
  }
  .film-title-inline-zh{
    margin-left:2px;
    font-size:0.48em;
  }
  .hero-info{
    max-width:680px;
    text-align:center;
    padding:0;
  }
  .hero-info-inner,
  .hero-info-inner.active{
    align-items:center;
    text-align:center;
  }
  .hero-film-tag{
    justify-content:center;
    margin-bottom:10px;
  }
  .hero-film-logline{
    display:none;
  }
  .netflix-launch,
  .countdown-wrap{
    align-items:center !important;
    text-align:center !important;
  }
  .countdown-eyebrow,
  .countdown-timer{
    align-self:center !important;
    justify-content:center !important;
    text-align:center !important;
  }
  .mobile-hi-noel-hero{
    display:block;
    min-height:var(--app-height);
  }
  .mobile-hi-noel-bg{
    object-position:50% 60%;
  }
  .mobile-hi-noel-content{
    left:40px;
    right:40px;
    bottom:118px;
    align-items:center;
    text-align:center;
  }
  .mobile-hi-noel-title{
    font-size:clamp(56px,9vw,76px);
    margin-bottom:12px;
    text-align:center;
  }
  .mobile-hi-noel-content .hero-laurels{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
  }
  .mobile-section-arrow{
    display:flex;
  }
  .merch-section{
    height:auto;
    min-height:var(--app-height);
    padding:96px 32px 72px;
  }
  .merch-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    flex:none;
  }
  .merch-card-img-wrap{
    flex:none;
    aspect-ratio:1/1;
  }
  .merch-card-img-wrap--box img{
    object-position:center 0% !important;
  }
  .shorts-section{
    height:auto;
    min-height:var(--app-height);
    padding:96px 32px 56px;
  }
  .shorts-titles{
    width:calc(100% - 64px);
    top:calc(68% + 20px);
  }
  .shorts-drawer{
    transform:translateX(calc(100% - 48px));
  }
  .shorts-drawer-peek{
    width:48px;
    height:120px;
    top:71%;
  }
  .about-section{
    height:auto;
    min-height:var(--app-height);
  }
  .about-split{
    min-height:calc(var(--app-height) - 300px);
  }
  .about-split-text{
    align-items:flex-start;
    justify-content:flex-end;
    padding:96px 40px 72px;
    text-align:left;
  }
  .about-split-image::after{
    background:
      linear-gradient(to top,rgba(26,30,36,0.92) 0%,rgba(26,30,36,0.62) 52%,rgba(26,30,36,0.18) 100%),
      linear-gradient(to right,rgba(26,30,36,0.72) 0%,rgba(26,30,36,0.18) 72%,transparent 100%);
  }
  .about-footer{
    min-height:300px;
    padding:32px 40px 44px;
  }
}

@media(hover:none) and (pointer:coarse){
  .menu-overlay-links a:hover,
  .menu-submenu a:hover,
  .menu-overlay-socials a:hover,
  .film-title-btn:hover,
  .film-title-btn:hover .film-title-inline-zh,
  .mobile-hi-noel-title:hover,
  .short-title-btn:hover,
  a.shorts-info-title:hover,
  .shorts-info-link:hover,
  .footer-social-links li a:hover,
  .about-footer .footer-social-links li a:hover{
    color:inherit;
  }
  .film-title-btn:hover,
  .film-entry:hover .film-title-zh,
  .btn-primary:hover,
  .merch-card:hover,
  .netflix-badge:hover{
    transform:none;
  }
  .hero-laurel-img:hover,
  .shorts-laurel-img:hover{
    filter:none;
    opacity:inherit;
  }
  .short-entry:hover .short-entry-arrow-line{
    width:0;
  }
  .merch-card:hover .merch-card-img-wrap img{
    transform:none;
  }
  .merch-shop-all:hover{
    letter-spacing:0.2em;
  }
}

@media(max-width:1024px) and (min-width:769px){
  .netflix-launch,
  .countdown-wrap{
    align-items:flex-start;
    text-align:left;
    width:100%;
  }
}

@media(min-width:769px) and (hover:none) and (pointer:coarse) and (orientation:landscape){
  :root{--hero-bottom:75px;}
  .hero-sticky{
    position:fixed;
    display:block;
    padding:0 !important;
  }
  .hero-titles{
    position:absolute;
    left:40px;
    bottom:132px;
    margin:0;
    display:flex;
    align-items:flex-start;
    text-align:left;
  }
  .film-entry:not(:has(.film-title-btn.active)){display:block;}
  .film-title-btn{font-size:clamp(48px,6.5vw,92px);text-align:left;}
  .film-title-inline-zh{display:none;}
  .film-title-zh{display:block;}
  .hero-info{
    position:absolute;
    right:40px;
    bottom:132px;
    left:auto;
    width:auto;
    max-width:400px;
    text-align:right;
  }
  .hero-info-inner{
    position:absolute;
    right:0;
    bottom:0;
    left:auto;
    text-align:right;
  }
  .hero-info-inner.active{position:relative;}
  .hero-info-inner[data-film="hinoel"]{display:block;}
  .hero-film-tag{justify-content:flex-end;}
  .hero-film-tag::before{display:none;}
  .hero-film-tag::after{display:block;}
  .hero-film-more{display:none;}
  .hero-film-logline{display:block;}
  .hero-laurels{justify-content:flex-end;}
  .mobile-hi-noel-hero{display:none;}
  .merch-grid{grid-template-columns:repeat(4,1fr);}
  .about-title{font-size:clamp(40px,5.5vw,64px);font-weight:600;}
  .about-split-text{padding:80px 72px 60px;}
  .about-mission-text{font-size:clamp(15px,1.7vw,20px);font-weight:400;line-height:1.5;max-width:860px;}
}

@media(min-width:769px) and (hover:none) and (pointer:coarse){
  .netflix-launch,
  .countdown-wrap{align-items:flex-start;text-align:left;width:100%;}
  .countdown-eyebrow,
  .countdown-timer{align-self:flex-start;justify-content:flex-start;text-align:left;}
  .countdown-eyebrow{font-size:clamp(17px,2.35vw,23px);letter-spacing:0.16em;}
  .countdown-netflix-wordmark{height:clamp(20px,2.8vw,26px);}
  .countdown-unit>span:first-child,
  .countdown-sep{font-size:clamp(34px,4.5vw,48px);}
}

@media(max-width:768px){
  .netflix-launch,
  .countdown-wrap{
    align-items:flex-start;
    text-align:left;
    width:100%;
  }
  .countdown-eyebrow,
  .countdown-timer{
    align-self:flex-start;
  }
  .countdown-wrap{gap:9px;margin-bottom:14px;}
  .countdown-eyebrow{
    font-size:clamp(15px,4vw,19px);
    letter-spacing:0.18em;
  }
}

@media(orientation:landscape) and (max-width:1366px){
  .shorts-bg,
  .shorts-bg.active{
    animation:none !important;
    transform:none !important;
  }
}

/* Scroll snap — phone and iPad portrait */
@media(max-width:768px),(min-width:769px) and (max-width:1024px) and (orientation:portrait) and (hover:none) and (pointer:coarse){
  html{scroll-snap-type:y mandatory;}
  html.form-field-active{scroll-snap-type:none;}
  .hero-section,
  .mobile-hi-noel-hero,
  .merch-section,
  .shorts-section,
  .about-section{scroll-snap-align:start;}
  .merch-section,
  .shorts-section,
  .about-section{min-height:100dvh;}
}

@media(max-width:768px){
  .netflix-launch{align-items:center !important;text-align:center !important;width:100%;margin-top:4px;}
  .netflix-badge{align-self:center !important;}
}
