/* ===== Base ===== */
:root{
  --bg:#0f0f10;
  --bg2:#111214;
  --text:#f2f2f2;
  --muted:rgba(242,242,242,.78);
  --line:rgba(242,242,242,.78);
  --line2:rgba(242,242,242,.45);
  --container:1100px;
  --pad:28px;
  --serif: "Source Han Serif JP","Source Han Serif","Noto Serif JP","Hiragino Mincho ProN","Yu Mincho","MS Mincho",serif;
}

/* If Google Fonts is okay, you can uncomment this (Noto Serif JP is a practical fallback)
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap');
*/

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0;
  background: radial-gradient(1400px 900px at 50% -10%, rgba(255,255,255,.06), transparent 60%),
              linear-gradient(180deg, var(--bg2), var(--bg));
  color:var(--text);
  font-family: var(--serif);
  letter-spacing: .02em;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px; border:1px solid var(--line); background:#000; border-radius:10px; z-index:9999;
}

.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:100vh;
  display:grid;
  place-items:center;
  overflow:hidden;
}
/* .hero__bg{
  position:absolute; inset:0;
  background: url("assets/KV-Z.webp") center/cover no-repeat;
  transform: scale(1.03);
} */
.hero__shade{
  position:absolute; inset:0;
  background: radial-gradient(800px 400px at 30% 30%, rgba(0,0,0,.15), rgba(0,0,0,.25));
}
.hero__inner{
  position:relative;
  /* text-align:center; */
  padding: 96px 16px 60px;
  max-width: 960px;
  position: absolute;
  left: 7%;
}
.hero__inner .emblem{
  width: 160px;
  height: auto;
  margin-bottom: 28px;
}
.hero__release{
  margin:0 0 20px;
  font-size: clamp(18px, 1.8vw, 30px);
  font-weight: 600;
  letter-spacing: .06em;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
  line-height: 1;
}
.hero__release span{
  margin:0 0 20px;
  font-size: clamp(18px, 1.5vw, 20px);
  margin-left: 12px;
  font-weight: 500;
}
.hero__title{
  margin:0;
  font-size: clamp(28px, 6.0vw, 54px);
  font-weight: 600;
  letter-spacing: .06em;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
  line-height: 1.1;
}
.hero__subtitle{
  display:block;
  margin-top: 10px;
  font-size: clamp(16px, 4.2vw, 42px);
  color: rgba(242,242,242,.88);
  letter-spacing: .08em;
}
.hero__note{
  margin: 22px 0 0;
  font-size: 13px;
  color: rgba(242,242,242,.65);
}
.back-board{
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #000;
  background: rgba(242,242,242,.80);
  letter-spacing: -.06em;
  text-align: center;
  font-weight: bold;
}
.hero__inner img + p{
  margin-top: 0;
  margin-bottom: 0;
}

.scroll{
  position:absolute;
  bottom:24px;
  left:50%;
  transform: translateX(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid var(--line2);
  display:grid;
  place-items:center;
  text-decoration:none;
  background: rgba(0,0,0,.25);
}

/* ===== Burger + Menu ===== */
.burger{
  position:absolute;
  top:22px;
  right:22px;
  width:54px;
  height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.18);
  cursor:pointer;
  z-index: 20;
}
.burger__lines{
  display:block;
  width:22px;
  height:2px;
  background: rgba(255,255,255,.88);
  margin: 0 auto;
  position:relative;
}
.burger__lines::before,
.burger__lines::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background: rgba(255,255,255,.72);
}
.burger__lines::before{ top:-7px; }
.burger__lines::after{ top:7px; }

.menu{
  position:absolute;
  inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.82);
  z-index: 19;
}
.menu.is-open{ display:grid; }
.menu a{
  display:block;
  font-size: 22px;
  padding: 10px 0;
  text-decoration:none;
  letter-spacing: .08em;
  opacity:.92;
  text-align:center;
}
.menu a:hover{ opacity:1; text-decoration: underline; text-underline-offset: 6px; }

/* ===== Sections ===== */
.section{
  padding: 84px 0;
}
@media (max-width: 740px){
  .section{ padding: 66px 0; }
}

.h2{
  margin:0 0 22px;
  font-size: 40px;
  text-align:center;
  font-weight: 600;
  letter-spacing: .08em;
  position:relative;
}
.h2::after{
  content:"";
  display:block;
  width: 180px;
  height:1px;
  background: var(--line2);
  margin: 16px auto 0;
}
.h2--small{
  font-size: 30px;
  margin-bottom: 16px;
}
.h2--small::after{ width: 120px; }

.prose{
  max-width: 860px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 2.0;
  color: rgba(242,242,242,.88);
}
.prose p{ margin: 0 0 18px; }
.prose p.main_copy{ font-size: 22px; }
.prose p:last-child{ margin-bottom: 0; }

.profile {
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 50px;
  margin-top: 28px;
  background: #000;
  margin: 34px auto 0;
  max-width: 980px;
}
.profile_wrapper {
  width: 50%;
}
.profile__img{
  width: 150px;
  height: 150px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
}
.profile__name{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
}
.profile__bio{
  font-size: 13px;
  color: rgba(242,242,242,.65);
}
@media (max-width: 980px){
  .profile{ 
    flex-direction: column; gap: 22px;
    padding: 20px;
  }
  .profile_wrapper {
    width: 100%;
  }
}
blockquote {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  unicode-bidi: isolate;
}

.stills{
  margin: 34px auto 0;
  max-width: 980px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 860px){
  .stills{ grid-template-columns: 1fr; }
}
.still{
  margin:0;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

/* Big date */
.bigDate{
  margin: 0 0 28px;
  text-align:center;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: .06em;
}

.crowdfunding {
  text-align: center;
  background: rgba(165, 239, 150, 0.65);
}
.crowdfunding img {
  max-width: 300px;
  Display: block;
  margin: 0 auto 18px;
}

/* News + Screenings boxes */
.twoBox{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  /* align-items:start; */
  align-items: stretch;
}
@media (max-width: 980px){
  .twoBox{ grid-template-columns: 1fr; }
  .bigDate{ font-size: 34px; }
  .h2--small {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.box{
  border: 2px solid var(--line);
  padding: 28px 22px 22px;
  min-height: 360px;
}
.box__inner{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px 12px 6px;
}
.placeholder{
  text-align:center;
  color: rgba(242,242,242,.70);
  line-height: 1.9;
  font-size: 16px;
}

/* Trailer */
.trailer{
  position:relative;
  display:block;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.18);
  text-decoration:none;
}
.trailer img{ width:100%; height:auto; }
.trailer__play{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
}
.trailer__play::before{
  content:"";
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: rgba(120, 255, 240, .22);
  border: 1px solid rgba(120, 255, 240, .35);
  backdrop-filter: blur(6px);
}
.trailer__play::after{
  content:"";
  position:absolute;
  width: 0; height: 0;
  border-left: 18px solid rgba(255,255,255,.92);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transform: translateX(4px);
}

.smallNote{
  margin: 18px auto 0;
  max-width: 900px;
  text-align:center;
  color: rgba(242,242,242,.65);
  font-size: 14px;
  line-height: 1.8;
}

/* Comments */
.quotes{
  max-width: 920px;
  margin: 0 auto;
  display:grid;
  gap: 30px;
}
.quote{
  margin:0;
  /* padding: 0 12px; */
  /* text-align:center; */
  text-align:left;
  margin-bottom: 20px;
}
.quote p{
  margin:0;
  font-size: 20px;
  line-height: 1.9;
  color: rgba(242,242,242,.88);
  position:relative;
  display:inline-block;
  padding-bottom: 10px;
}
.quote p::after{
  content:"";
  display:block;
  height:2px;
  background: rgba(242,242,242,.80);
  width: min(760px, 92vw);
  margin: 12px auto 0;
}
.quote cite{
  display:block;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(165, 239, 150, 0.65);
  font-style: normal;
  letter-spacing: .06em;
  text-align: center;
}

@media (max-width: 980px){
    .quote p{
    margin:0;
    font-size: 16px;
  } 
}
.center{ text-align:center; }

/* Modal */
.modal{
  position:fixed; inset:0;
  display:none;
  z-index: 50;
}
.modal.is-open{ display:block; }
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.78);
}
.modal__panel{
  position:relative;
  width:min(980px, calc(100% - 32px));
  margin: 70px auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(15,15,16,.94);
}
.modal__close{
  position:absolute;
  top:10px;
  right:10px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.25);
  color: var(--text);
  cursor:pointer;
  font-size: 20px;
}

.ratio{
  position:relative;
  width:100%;
  padding-top: 56.25%;
  border:1px solid rgba(255,255,255,.16);
  background:#000;
}
.ratio iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}

#directors .comment {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(242,242,242,.88);
}

#cast .cast__wrapper {
  display: flex;
  gap: 28px;
  justify-content: center;
}
#cast .cast__bio {
  width: 33.33%;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242,242,242,.88);
}