:root {
  color-scheme: only light;
  --bg-dark: #0b0c0f;
  --text-main: #f5f4f2;
  --text-muted: rgba(245, 244, 242, 0.75);
  --panel-bg: rgba(12, 14, 18, 0.6);
  --panel-border: rgba(255, 255, 255, 0.2);
  --glow-warm: rgba(215, 186, 128, 0.25);
  --glow-cool: rgba(150, 190, 210, 0.2);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
  --max-width: 72rem;
  --video-zoom: 1.3;
  --video-shift-x: 0px;
  --video-shift-y: 0px;
  --parallax-x: 0;
  --parallax-y: 0;
  --parallax-mouse: 4;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  color: var(--text-main);
  background: var(--bg-dark) url("SVR_poster.jpg") center / cover no-repeat
    fixed;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

body.is-page-loading {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 2;
}

main[hidden] {
  display: none !important;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translate3d(var(--video-shift-x), var(--video-shift-y), 0)
    scale(var(--video-zoom));
  transform-origin: center;
  will-change: transform;
  filter: saturate(0.95) contrast(1.05);
}

.bg__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      60% 60% at 12% 15%,
      var(--glow-warm),
      transparent 70%
    ),
    radial-gradient(50% 60% at 80% 8%, var(--glow-cool), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      140deg,
      rgba(8, 10, 14, 0.6) 0%,
      rgba(8, 10, 14, 0.2) 40%,
      rgba(8, 10, 14, 0.65) 100%
    ),
    radial-gradient(
      120% 120% at 10% 20%,
      rgba(5, 6, 9, 0.7) 0%,
      rgba(5, 6, 9, 0.3) 45%,
      rgba(5, 6, 9, 0.85) 100%
    );
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #070a11;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__video {
  width: min(42rem, 72vw);
  max-height: 70vh;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #000;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}

.hero__content {
  max-width: var(--max-width);
  animation: fade-up 1.2s ease-out 0.15s both;
}

.hero__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.hero__title-main {
  display: block;
}

.hero__title-sub {
  display: block;
  font-size: 0.7em;
  line-height: 1.14;
}

.hero__cue {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__cue::after {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  display: inline-block;
  transform-origin: left;
  animation: cue-line 1.8s ease-in-out infinite;
}

.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}

.about__panel {
  width: min(88rem, 100%);
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.about__copy {
  max-width: 72ch;
}

.about__panel h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
}

.about__panel p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.about__panel p:last-child {
  margin-bottom: 0;
}

.about__intro {
  color: var(--text-main);
}

.about__highlights {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--text-main);
}

.about__highlights li {
  margin-bottom: 0.6rem;
}

.about__highlights li:last-child {
  margin-bottom: 0;
}

.artist {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}

.artist__panel {
  width: min(88rem, 100%);
  padding: clamp(1.4rem, 2.2vw, 2rem);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 24rem);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: start;
}

.artist__media {
  margin: 0;
  width: min(100%, 24rem);
  justify-self: end;
}

.artist__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(78vh, 39rem);
  object-fit: cover;
  object-position: 52% 34%;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-strong);
}

.artist__content {
  max-width: 70ch;
}

.artist__content h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
}

.artist__content p {
  margin-top: 0;
  margin-bottom: 1.05rem;
  color: var(--text-muted);
  max-width: 65ch;
  line-height: 1.72;
  text-wrap: pretty;
  hyphens: auto;
}

.artist__content .artist__lead {
  color: var(--text-main);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.66;
  margin-bottom: 1.2rem;
}

.artist__content .artist__site {
  margin-bottom: 0;
  color: var(--text-main);
}

.artist__site a {
  color: inherit;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.artist__site a:hover {
  opacity: 0.85;
}

.repertoire {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}

.repertoire__panel {
  width: min(88rem, 100%);
  padding: clamp(1.9rem, 3.5vw, 3rem);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.language-switch__button {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-main);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  min-width: 2.8rem;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
}

.language-switch__button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.language-switch__button.is-active {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.65);
}

.repertoire__panel h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.1vw, 2.5rem);
  letter-spacing: 0.03em;
}

.repertoire__intro {
  margin: 0 0 clamp(1.35rem, 2.4vw, 2rem);
  color: var(--text-muted);
  max-width: 78ch;
}

.repertoire__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.multimedia {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}

.multimedia__panel {
  width: min(88rem, 100%);
  padding: clamp(1.9rem, 3.5vw, 3rem);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.multimedia__panel h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.1vw, 2.5rem);
  letter-spacing: 0.03em;
}

.multimedia__intro {
  max-width: 78ch;
  margin: 0 0 clamp(1.25rem, 2vw, 1.7rem);
  color: var(--text-muted);
  text-align: left;
  line-height: 1.72;
}

.multimedia__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.multimedia__action {
  min-width: min(100%, 17rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--text-main);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.68rem 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.multimedia__action:hover {
  background: rgba(255, 255, 255, 0.2);
}

.multimedia__action .action-icon {
  width: 1.08rem;
  height: 1.08rem;
  flex: 0 0 1.08rem;
}

.repertoire__status {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.suite-tile {
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.suite-tile__preview {
  width: 60%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin: 0.55rem auto 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.suite-tile__body {
  padding: 1rem 1.05rem 1.1rem;
}

.suite-tile__title {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
}

.suite-tile__location {
  margin: 0 0 0.9rem;
  font-size: 0.91rem;
  color: var(--text-muted);
}

.suite-tile__location a {
  color: var(--text-main);
}

.suite-tile__movements {
  display: grid;
  gap: 0.5rem;
}

.movement-item {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(8, 10, 16, 0.32);
  overflow: clip;
}

.movement-item > summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 0.72rem;
}

.movement-item > summary::-webkit-details-marker {
  display: none;
}

.movement-item__name {
  font-size: 0.9rem;
  line-height: 1.35;
}

.movement-item__badge {
  border-radius: 999px;
  border: 1px solid rgba(167, 231, 193, 0.65);
  color: #c8f0d7;
  font-size: 0.71rem;
  line-height: 1;
  padding: 0.34rem 0.52rem;
  white-space: nowrap;
}

.movement-item__badge--soon {
  border-color: rgba(255, 226, 167, 0.55);
  color: #ffe4ae;
}

.movement-item__actions {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.58rem 0.72rem 0.72rem;
  display: grid;
  gap: 0.46rem;
}

.movement-item__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 600;
  padding: 0.48rem 0.66rem;
  background: rgba(255, 255, 255, 0.08);
}

.movement-item__action:hover {
  background: rgba(255, 255, 255, 0.16);
}

.action-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  display: block;
  pointer-events: none;
}

.action-icon--quest {
  width: 1.08rem;
  flex-basis: 1.08rem;
}

.action-icon--youtube {
  width: 1.1rem;
  flex-basis: 1.1rem;
}

.movement-item__soon {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.suites-talk,
.project-funding {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}

.suites-talk__panel,
.project-funding__panel {
  width: min(88rem, 100%);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.suites-talk__panel h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.1vw, 2.5rem);
  letter-spacing: 0.03em;
}

.suites-talk__video {
  width: 70%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  background: rgba(0, 0, 0, 0.75);
}

.suites-talk__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.suites-talk__copy {
  margin-top: 1rem;
}

.suites-talk__copy p {
  margin: 0 0 0.95rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.suites-talk__copy p:last-child {
  margin-bottom: 0;
}

.project-funding__banner {
  margin: 0 auto;
  width: min(100%, 72rem);
}

.project-funding__banner img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.78;
}

.project-funding__note {
  margin: 1.45rem 0 0;
  color: var(--text-muted);
  text-align: center;
}

.project-funding__contact {
  margin: 0.45rem 0 0;
  color: var(--text-main);
  font-weight: 500;
  text-align: center;
}

.project-funding__contact a {
  color: inherit;
}

.quest-library,
.library-page,
.film-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.8rem, 4vw, 3.2rem);
}

.quest-library__panel,
.library-page__panel,
.film-page__panel,
.film-player,
.film-player__ended {
  width: min(88rem, 100%);
  background: rgba(10, 12, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.quest-library__panel {
  padding: clamp(1.1rem, 2.1vw, 1.8rem);
}

.library-page__panel {
  padding: clamp(1.1rem, 2.1vw, 1.8rem);
}

.library-page__topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.library-page__panel h1 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
}

.library-page__home-link {
  color: var(--text-main);
  font-size: 0.92rem;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

.library-page__intro {
  margin: 0.45rem 0 1rem;
  color: var(--text-muted);
}

.quest-library__panel h1 {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
}

.quest-library__intro {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.quest-library__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.quest-suite {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
}

.quest-suite h2 {
  margin: 0 0 0.58rem;
  font-size: 1rem;
}

.quest-suite__list {
  display: grid;
  gap: 0.48rem;
}

.quest-suite__link {
  display: block;
  text-decoration: none;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 0.58rem 0.68rem;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.08);
}

.quest-suite__link:hover {
  background: rgba(255, 255, 255, 0.16);
}

.quest-suite__soon {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.film-page {
  flex-direction: column;
  gap: 1rem;
}

.film-page__panel {
  padding: clamp(1.1rem, 2.1vw, 1.8rem);
}

.film-page__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 0.7rem;
}

.film-page__back {
  display: inline-block;
  margin-bottom: 0;
  color: var(--text-main);
  font-size: 0.9rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.film-page__suite {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.film-page__title {
  margin: 0.25rem 0 0.28rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  line-height: 1.05;
}

.film-page__movement {
  margin: 0 0 0.55rem;
  color: var(--text-main);
}

.film-page__location,
.film-page__status {
  margin: 0 0 0.45rem;
  color: var(--text-muted);
}

.film-page__location a {
  color: var(--text-main);
}

.film-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin: 0.86rem 0 1rem;
}

.film-page__cta,
.film-page__link,
.film-player__controls button {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--text-main);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.62rem 0.88rem;
  text-decoration: none;
  cursor: pointer;
}

.film-page__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.film-player__controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.film-page__cta:hover,
.film-page__link:hover,
.film-player__controls button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.film-page__cta:disabled,
.film-page__link.is-disabled,
.film-player__controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.film-page__preview-wrap {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.film-player,
.film-player__ended {
  padding: 0.86rem;
}

.film-player__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.film-player__stage canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.look-hint {
  position: absolute;
  left: 50%;
  bottom: 0.72rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: calc(100% - 1rem);
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(6, 8, 12, 0.78);
  color: var(--text-main);
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.look-hint.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

.look-hint__icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  align-items: center;
  justify-content: center;
  animation: look-hint-swipe 1.2s ease-in-out infinite;
}

.look-hint__icon-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.look-hint__text {
  overflow-wrap: anywhere;
}

.film-player__controls {
  margin-top: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.film-player__buffer {
  margin-top: 0.78rem;
}

.film-player__tracking {
  margin-top: 0.68rem;
}

.film-player__tracking-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.79rem;
  line-height: 1.3;
}

.film-player__controls button.is-active {
  border-color: rgba(180, 214, 255, 0.74);
  background: rgba(160, 202, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.film-player__progress {
  position: relative;
  width: 100%;
  height: 0.72rem;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.film-player__progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(180, 214, 255, 0.72), rgba(255, 255, 255, 0.95));
  transition: width 0.18s ease;
}

.film-player__progress.is-indeterminate .film-player__progress-fill {
  width: 34%;
  animation: film-buffer-indeterminate 1.15s linear infinite;
}

.film-player__progress-label {
  margin: 0.42rem 0 0;
  color: var(--text-muted);
  font-size: 0.79rem;
  line-height: 1.3;
}

.film-player__hint {
  margin: 0.72rem 0 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.film-player__hint kbd {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  font-size: 0.72rem;
  line-height: 1;
  padding: 0.15rem 0.34rem;
  margin: 0 0.08rem;
  display: inline-block;
}

.film-player__ended p {
  margin: 0;
  color: var(--text-muted);
}

@keyframes film-buffer-indeterminate {
  0% {
    transform: translateX(-115%);
  }
  100% {
    transform: translateX(320%);
  }
}

body.route-film .bg__video,
body.route-library .bg__video,
body.route-quest .bg__video {
  display: none;
}

body.route-main [data-view-main] img {
  opacity: 0.96;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cue-line {
  0% {
    transform: scaleX(0.4);
    opacity: 0.35;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.9;
  }
  100% {
    transform: scaleX(0.4);
    opacity: 0.35;
  }
}

@keyframes look-hint-swipe {
  0% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(-3px);
  }
}

@media (max-width: 720px) {
  .page-loader__video {
    width: min(88vw, 34rem);
    border-radius: 14px;
  }

  .hero,
  .about,
  .artist,
  .repertoire,
  .multimedia,
  .suites-talk,
  .project-funding {
    padding: 2.5rem 1.75rem;
  }

  .hero__cue {
    letter-spacing: 0.28em;
  }

  .artist__panel {
    grid-template-columns: 1fr;
  }

  .about__copy,
  .artist__content,
  .artist__content p {
    max-width: none;
  }

  .artist__media {
    justify-self: center;
    width: min(72vw, 19rem);
  }

  .artist__media img {
    width: 100%;
    max-height: min(62vh, 24rem);
  }

  .quest-library,
  .library-page,
  .film-page {
    padding: 1.5rem 1rem;
  }

  .suites-talk__video {
    width: 100%;
  }

  .film-player__controls {
    flex-direction: column;
  }

  .language-switch {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .look-hint {
    bottom: 0.55rem;
    border-radius: 12px;
    padding: 0.5rem 0.62rem;
    white-space: normal;
    text-align: center;
  }

  .look-hint__text {
    line-height: 1.25;
  }
}

@media (max-width: 980px) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .repertoire__grid {
    grid-template-columns: 1fr;
  }

  .quest-library__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .film-page__actions {
    flex-direction: column;
  }

  .film-page__cta,
  .film-page__link,
  .multimedia__action,
  .film-player__controls button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .bg__video {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
