/* Real footage gives the lake its own pace. */
.hero__bg { overflow: hidden; }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  opacity: 0;
  transition: opacity 1.1s ease;
  filter: contrast(1.06) saturate(1.08) brightness(0.98);
  image-rendering: -webkit-optimize-contrast;
}
.hero__video.is-ready { opacity: 1; }
.hero__img { object-position: 58% 50%; }
.hero__overlay {
  background: linear-gradient(90deg, rgba(8, 28, 29, .76), rgba(8, 28, 29, .3) 58%, rgba(8, 28, 29, .12)),
    linear-gradient(0deg, rgba(8, 28, 29, .7), transparent 35%, rgba(8, 28, 29, .13));
}
.hero__atmosphere { display: flex; align-items: center; gap: 16px; }
.hero-motion-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 15px;
  border: 1px solid #ffffff65;
  border-radius: 40px;
  color: #fff;
  background: #102c2b70;
  font-size: 12px;
  backdrop-filter: blur(8px);
}
.hero-motion-toggle:hover { background: #102c2bc9; }
.hero-motion-toggle svg { width: 14px; height: 14px; }
.hero-motion-toggle .icon-pause { display: none; }
.hero-motion-toggle.is-playing .icon-pause { display: block; }
.hero-motion-toggle.is-playing .icon-play { display: none; }
.hero__thumbnail { position: relative; width: 98px; height: 66px; }
.hero__thumbnail::after {
  content: '';
  position: absolute;
  left: calc(50% - 4px);
  top: calc(50% - 6px);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
  filter: drop-shadow(0 1px 3px #000);
}

.cinema-section {
  --cinema-border: #f8f6f02e;
  padding: 88px 0 74px;
  color: var(--paper);
  background: #142c25;
}
.cinema-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 38px;
}
.cinema-heading h2 {
  max-width: 660px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.035em;
}
.cinema-heading p {
  max-width: 300px;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.8;
  color: #d4ddd3;
}
.cinema-layout { display: grid; grid-template-columns: minmax(0, 1fr) 238px; gap: 28px; }
.cinema-stage {
  position: relative;
  align-self: start;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b1b17;
}
.cinema-video { width: 100%; height: 100%; object-fit: contain; display: block; }
.cinema-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.cinema-stage.has-started .cinema-poster { display: none; }
.cinema-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #061b1880, transparent 48%);
  pointer-events: none;
  transition: opacity .4s;
}
.cinema-stage.has-started::after { opacity: 0; }
.cinema-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 10px #102c2b;
}
.cinema-play__circle {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  background: #f8f6f021;
  backdrop-filter: blur(6px);
  border: 1px solid #ffffffad;
  border-radius: 50%;
  transition: background .25s, transform .25s;
}
.cinema-play__circle svg { width: 24px; height: 24px; margin-left: 4px; }
.cinema-play:hover .cinema-play__circle { background: #f8f6f047; transform: scale(1.06); }
.cinema-play[hidden] { display: none; }
.cinema-choices { display: flex; flex-direction: column; gap: 22px; }
.cinema-choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  text-align: left;
  padding: 0 0 15px;
  border-bottom: 1px solid var(--cinema-border);
  color: #d4ddd3;
}
.cinema-choice__image { position: relative; display: block; aspect-ratio: 16 / 7; overflow: hidden; margin-bottom: 12px; }
.cinema-choice img { width: 100%; height: 100%; object-fit: cover; opacity: .65; transition: opacity .25s; }
.cinema-choice:hover img, .cinema-choice[aria-pressed="true"] img { opacity: 1; }
.cinema-choice[aria-pressed="true"] { border-bottom-color: #d9c298; color: white; }
.cinema-choice__duration {
  position: absolute;
  right: 8px;
  bottom: 7px;
  padding: 1px 6px;
  color: white;
  background: #102c2bcc;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.cinema-choice__title { display: block; font-family: var(--font-serif); font-size: 28px; line-height: 1.1; }
.cinema-choice__detail { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 12px; margin-top: 8px; }
.cinema-choice__detail svg { width: 15px; height: 15px; flex-shrink: 0; }
.cinema-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--cinema-border);
}
.cinema-caption p { color: #d4ddd3; font-size: 13px; }
.cinema-caption .text-link { color: var(--paper); flex-shrink: 0; border-color: var(--cinema-border); }
.cinema-status { color: #e5d4b3; font-size: 13px; margin-top: 12px; }
.cinema-status:empty { display: none; }
.cinema-noscript { padding: 18px 0; }
.cinema-noscript a { text-decoration: underline; }
.cinema-section :focus-visible, .hero-motion-toggle:focus-visible { outline: 2px solid #f1ddb3; outline-offset: 5px; }

/* The first image is a portrait; the remaining frames show the wider setting. */
.gallery-card:first-child .gallery-card__img { object-position: 50% 52%; }
.gallery-card__img { background: #d7ded4; }

@media (min-width: 1001px) {
  .hero__content { padding-top: clamp(180px, 23vh, 220px); }
  .hero__note { display: none; }
}
@media (max-width: 1000px) {
  .cinema-layout { grid-template-columns: minmax(0, 1fr) 190px; gap: 22px; }
  .cinema-choice__title { font-size: 25px; }
  .cinema-heading { gap: 30px; }
  .cinema-heading p { max-width: 250px; }
  .hero__note { display: none; }
}
@media (max-width: 760px) {
  .cinema-section { padding: 62px 0 48px; }
  .cinema-heading { display: block; margin-bottom: 28px; }
  .cinema-heading h2 { font-size: clamp(43px, 8vw, 58px); }
  .cinema-heading p { margin-top: 20px; max-width: 390px; }
  .cinema-layout { grid-template-columns: 1fr; gap: 24px; }
  .cinema-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .cinema-choice__image { aspect-ratio: 16 / 8; }
  .cinema-choice__detail { font-size: 12px; }
  .cinema-caption { display: block; margin-top: 25px; }
  .cinema-caption .text-link { margin-top: 10px; }
  .cinema-play { gap: 10px; font-size: 13px; }
  .cinema-play__circle { width: 56px; height: 56px; }
  .hero__bottom { align-items: center; }
  .hero-motion-toggle { padding: 10px; width: 44px; height: 44px; justify-content: center; flex-shrink: 0; }
  .hero-motion-toggle span { display: none; }
  .hero__gallery-link { gap: 12px; font-size: 23px; }
  .hero__thumbnail { width: 76px; height: 57px; }
  .hero__gallery-link small { font-size: 11px; gap: 10px; margin-top: 7px; }
  .hero__scroll { display: none; }
}
@media (max-width: 360px) {
  .hero__bottom { justify-content: space-between; }
  .hero__gallery-link { font-size: 21px; gap: 10px; }
  .hero__thumbnail { width: 60px; }
  .cinema-choices { gap: 14px; }
  .cinema-choice__title { font-size: 23px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__video, .cinema-play__circle, .cinema-choice img { transition: none; }
  .cinema-play:hover .cinema-play__circle { transform: none; }
}
