* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #000;
  background: rgba(0,0,0,.05);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }
.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  width: 100%;
  padding: 20px 40px;
  color: #fff;
  border-color: #fff;
  transition: background-color 300ms ease, color 260ms ease, padding 180ms ease, box-shadow 180ms ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}
.site-title {
  max-width: 400px;
  margin-right: 30px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .03em;
  transition: opacity 200ms ease, font-size 260ms ease;
}
.site-title:hover { opacity: .6; }
.desktop-nav { margin-left: auto; }
.nav-link {
  display: block;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: opacity 300ms ease;
}
.nav-link.active { border-color: currentColor; }
.nav-link:hover { opacity: .6; }
.site-header.scrolled {
  padding: 10px 40px;
  color: #000;
  background: #fff;
  border-color: #000;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.site-header.scrolled .site-title { font-size: 24px; }
.site-header.scrolled .nav-link { padding: 10px 20px; }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav > a {
  width: 100%;
  padding: 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  background: rgba(0,0,0,.05);
}
.menu-close {
  position: absolute;
  top: 12px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
body.menu-open { overflow: hidden; }

.hero {
  position: relative;
  height: 400px;
  background-image: url("../images/hero.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50.35%;
  background-size: cover;
  background-color: #000;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 40% 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.intro-section {
  background-image: url("../images/background-origin.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.intro-grid {
  display: grid;
  grid-template-columns: 36.707566462168% 63.292433537832%;
  row-gap: 0;
  padding-bottom: 125px;
}
.intro-title,
.intro-copy { padding: 0 15px; color: #2a2a2a; }
h2 {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}
.intro-copy {
  margin: 0 0 30px;
  line-height: 1.75;
}
.intro-copy-large { font-size: 20.8px; }
.background-heading { font-size: 36px; }
.intro-copy-strong {
  font-size: 22.4px;
  font-weight: 700;
}

.movies-section {
  min-height: 400px;
  color: #2a2a2a;
  background-image: url("../images/background-movies.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.section-title {
  margin-bottom: 42px;
  text-align: center;
}
.movie-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 -15px;
}
.movie-grid > * { padding: 0 15px; }
.movie-name {
  margin: 0 0 30px;
  line-height: 1.75;
  text-align: center;
}
.movie-media img {
  width: auto;
  max-width: 100%;
  margin: 10px auto;
}
.movie-copy p {
  margin: 0 0 30px;
  line-height: 1.75;
}
.movie-copy p + p { margin-top: -2px; }
.video-frame {
  position: relative;
  width: 100%;
  margin: 10px 0;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.trailer > p {
  margin: 0 0 30px;
  line-height: 1.75;
  text-align: center;
}
.movie-separator { height: 86px; }
.movie-two-title {
  margin-bottom: 30px;
  font-size: 19.2px;
  text-align: left;
}
.stacked-images .scene-image {
  width: 100%;
}

@media (max-width: 767px) {
  .container { padding: 30px 20px; }
  .site-header { padding: 5px 20px; }
  .site-header.scrolled { padding: 5px 20px; }
  .site-header .site-title,
  .site-header.scrolled .site-title { font-size: 24px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { height: 400px; }
  .intro-grid,
  .movie-grid { display: block; }
  .intro-grid { padding-bottom: 30px; }
  .intro-title,
  .intro-copy,
  .movie-grid > * { width: 100%; padding: 0; }
  .intro-copy-large { font-size: 20.8px; }
  .background-heading { font-size: 36px; }
  .intro-copy-strong { font-size: 22.4px; }
  .movie-grid { margin: 0; }
  .movie-media,
  .movie-copy,
  .trailer { margin-bottom: 30px; }
  .movie-separator { height: 36px; }
}

@media (max-width: 480px) {
  .site-title { max-width: calc(100vw - 100px); }
}
