/* Isolated film opening. No hiding of the shop before JavaScript succeeds. */
.sho-intro {
  --sho-intro-ready: 1;
  --sho-intro-paper: #f2f0e9;
  color-scheme: dark;
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--sho-intro-paper);
  background: #151715;
  overflow: auto;
  overscroll-behavior: contain;
}
.sho-intro:not([open]) { display: none; }
.sho-intro::backdrop { background: #151715; }
html.sho-intro-open, html.sho-intro-open body { overflow: hidden; }
.sho-intro-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  min-height: 320px;
  padding: max(12px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
}
.sho-intro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 12px;
}
.sho-intro-wordmark { display: block; width: 140px; height: auto; flex: 0 0 auto; }
.sho-intro button {
  min-height: 44px;
  border-radius: 0;
  font: inherit;
  font-size: 12px;
  line-height: 1.4;
  color: inherit;
  cursor: pointer;
}
.sho-intro button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.sho-intro .sho-intro-enter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 10px 16px;
  color: #151715;
  background: var(--sho-intro-paper);
  border: 1px solid var(--sho-intro-paper);
  text-align: center;
}
.sho-intro-enter span { font-size: 18px; }
.sho-intro-picture { min-height: 0; min-width: 0; overflow: hidden; }
.sho-intro-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #151715;
}
.sho-intro-footer { width: min(100%, 760px); margin-inline: auto; padding-top: 13px; }
.sho-intro-caption { display: flex; align-items: end; justify-content: space-between; gap: 15px; }
.sho-intro-caption h2 { font-size: 11px; line-height: 1.4; letter-spacing: .13em; font-weight: 500; }
.sho-intro-caption p { margin-top: 4px; font-size: 11px; line-height: 1.4; color: #c3c6bd; }
.sho-intro-caption output { white-space: nowrap; font-size: 10px; font-variant-numeric: tabular-nums; color: #c3c6bd; }
.sho-intro progress {
  display: block;
  appearance: none;
  width: 100%;
  height: 2px;
  margin: 12px 0 7px;
  border: 0;
  border-radius: 0;
  background: #53574d;
  accent-color: var(--sho-intro-paper);
}
.sho-intro progress::-webkit-progress-bar { background: #53574d; }
.sho-intro progress::-webkit-progress-value { background: var(--sho-intro-paper); }
.sho-intro progress::-moz-progress-bar { background: var(--sho-intro-paper); }
.sho-intro-controls { display: flex; align-items: center; gap: 10px 24px; flex-wrap: wrap; }
.sho-intro-controls button { padding: 9px 0; background: none; border: 0; text-decoration: underline; text-underline-offset: 4px; }
.sho-intro-controls p { margin-left: auto; color: #c3c6bd; font-size: 10px; line-height: 1.5; }
.sho-intro-replay { padding: 0; min-height: 30px; color: inherit; background: none; border: 0; text-align: left; font: inherit; cursor: pointer; }
.sho-intro-replay:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (min-width: 1000px) { .sho-intro-shell { padding-inline: max(36px, env(safe-area-inset-left)); } }
@media (max-width: 480px) {
  .sho-intro-shell { padding-inline: max(14px, env(safe-area-inset-left)); }
  .sho-intro-wordmark { width: 100px; }
  .sho-intro .sho-intro-enter { font-size: 10px; padding-inline: 10px; gap: 9px; }
  .sho-intro-header { gap: 12px; padding-bottom: 8px; }
  .sho-intro-controls { gap: 0 22px; }
  .sho-intro-controls p { width: 100%; margin: 0; padding-bottom: 2px; }
  .sho-intro-footer { padding-top: 10px; }
}
@media (max-height: 500px) and (min-width: 600px) {
  .sho-intro-shell { padding-block: 8px; }
  .sho-intro-header { padding-bottom: 5px; }
  .sho-intro-footer { padding-top: 6px; }
  .sho-intro-caption p, .sho-intro-controls p { display: none; }
  .sho-intro progress { margin-block: 5px 2px; }
}
