:root {
  color-scheme: dark;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  --din-letter-spacing: 0.025em;
  background: #000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #000;
  color: #fff;
}

body.menu-open {
  overflow: hidden;
}

.production-switcher {
  position: fixed;
  z-index: 18;
  inset: 0 0 auto;
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: #050505;
  color: #cfcfcf;
  font: 700 11px/1 "Open Sans", Arial, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.production-switcher a { padding: 0 12px; color: inherit; text-decoration: none; }
.production-switcher a + a { border-left: 1px solid rgba(255,255,255,.3); }
.production-switcher a:hover,
.production-switcher a:focus-visible,
.production-switcher .is-current { color: #e3262e; text-decoration: underline; text-underline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: #000;
  background: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 15;
  top: 30px;
  right: 0;
  left: 0;
  display: flex;
  height: 82px;
  padding: 8px clamp(22px, 4vw, 64px);
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.46));
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-header__brand {
  position: relative;
  z-index: 2;
  display: block;
  width: min(350px, 30vw);
  height: auto;
  aspect-ratio: 350 / 32;
  flex: 0 0 auto;
}

.site-header__brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
}

.primary-navigation a {
  position: relative;
  padding: 12px 0;
  color: #fff;
  font-family: "din-condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  background: #cd1519;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__brand:focus-visible,
.primary-navigation a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px 9px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.menu-toggle > span:not(.menu-toggle__label) {
  position: absolute;
  left: 9px;
  width: 30px;
  height: 2px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle > span:nth-child(2) { top: 14px; }
.menu-toggle > span:nth-child(3) { top: 23px; }
.menu-toggle > span:nth-child(4) { top: 32px; }

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }

.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
  top: 23px;
  transform: rotate(-45deg);
}

#about,
#cast-in-action,
#videos,
#gallery {
  scroll-margin-top: 112px;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(100svh, 753px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #000 url("../images/backgrounds/background.jpg") center / cover no-repeat;
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: 0;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  border: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

.hero__shade {
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.hero__artwork {
  display: block;
  width: min(50vw, 640px);
  height: auto;
  margin-top: -1px;
  animation: hero-artwork-in 700ms ease-out both;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.hero__title {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0;
  place-items: center;
}

.hero__scroll-indicator {
  position: absolute;
  z-index: 2;
  bottom: 2.3rem;
  left: 50%;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: translateX(-50%) rotate(45deg);
  animation: hero-scroll-cue 1.8s ease-in-out infinite;
}

.cast-video {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) max(7vw, 24px);
  background:
    linear-gradient(118deg, transparent 0 66%, rgba(205, 21, 25, 0.08) 66% 67%, transparent 67% 72%, rgba(205, 21, 25, 0.05) 72% 73%, transparent 73%),
    radial-gradient(circle at 82% 50%, rgba(205, 21, 25, 0.28), transparent 40%),
    #050505;
}

.cast-video::before {
  position: absolute;
  top: clamp(44px, 6vw, 80px);
  right: 0;
  width: clamp(70px, 12vw, 180px);
  height: 10px;
  background: #cd1519;
  content: "";
}

.cast-video::after {
  position: absolute;
  right: clamp(24px, 7vw, 110px);
  bottom: clamp(32px, 5vw, 70px);
  width: clamp(120px, 18vw, 260px);
  height: 4px;
  background: #cd1519;
  content: "";
}

.cast-video__inner {
  display: grid;
  width: min(1120px, 100%);
  margin-inline: auto;
  grid-template-columns: minmax(320px, 520px) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.cast-video__frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 12px solid #cd1519;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  animation: cast-section-in 650ms ease-out both;
}

.cast-video__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.cast-video h2 {
  position: relative;
  max-width: 510px;
  margin: 0;
  padding-top: 28px;
  color: #fff;
  font-family: "din-condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.35rem, 4.5vw, 4.75rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: var(--din-letter-spacing);
  text-wrap: balance;
  animation: cast-section-in 650ms 120ms ease-out both;
}

.cast-video h2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 104px;
  height: 8px;
  background: #cd1519;
  content: "";
}

.reviews {
  position: relative;
  display: grid;
  min-height: clamp(360px, 38vw, 520px);
  place-items: center;
  overflow: hidden;
  padding: 72px max(7vw, 24px) 142px;
  background: #170507 url("../images/backgrounds/Background-24.jpg") center / cover no-repeat;
  isolation: isolate;
}

.reviews::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.76), rgba(82, 0, 4, 0.62)),
    linear-gradient(180deg, rgba(205, 21, 25, 0.12), rgba(0, 0, 0, 0.54));
  content: "";
}

.reviews__carousel {
  position: relative;
  width: min(980px, 100%);
  min-height: 230px;
  outline: none;
}

.reviews__carousel:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 12px;
}

.reviews__quote {
  position: absolute;
  inset: 0;
  display: flex;
  margin: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transition: opacity 700ms ease;
}

.reviews__quote.is-active {
  opacity: 1;
  pointer-events: auto;
}

.reviews__stars {
  margin-bottom: 18px;
  color: #f0c36a;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.24em;
}

.reviews blockquote {
  margin: 0;
  color: #fff;
  font-family: "din-condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--din-letter-spacing);
  text-transform: uppercase;
  text-wrap: balance;
}

.reviews figcaption {
  margin-top: 22px;
  color: #f3d7c1;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.show-copy {
  position: relative;
  z-index: 2;
  width: min(1460px, calc(100% - clamp(36px, 6vw, 92px)));
  margin: -84px auto 0;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) max(7vw, 24px);
  border-top: 1px solid rgba(205, 21, 25, 0.3);
  border-radius: 4px 4px 0 0;
  background:
    linear-gradient(125deg, transparent 0 78%, rgba(205, 21, 25, 0.07) 78% 79%, transparent 79%),
    #f0e8dc;
  color: #171313;
  box-shadow: 0 -28px 70px rgba(0, 0, 0, 0.34);
}

.show-copy::before {
  position: absolute;
  top: 0;
  left: max(7vw, 24px);
  width: min(210px, 24vw);
  height: 10px;
  background: #cd1519;
  content: "";
}

.show-copy::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 46px solid rgba(205, 21, 25, 0.09);
  border-radius: 50%;
  content: "";
}

.show-copy__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1160px, 100%);
  margin-inline: auto;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  align-items: start;
  gap: clamp(54px, 8vw, 120px);
}

.show-copy p {
  margin: 0;
}

.show-copy__lead {
  padding-left: clamp(22px, 3vw, 40px);
  border-left: 8px solid #cd1519;
  font-family: "din-condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: var(--din-letter-spacing);
  text-wrap: balance;
}

.show-copy__body {
  display: grid;
  gap: 24px;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.75;
}

.show-copy strong {
  color: #a70f13;
  font-weight: 700;
}

.show-copy em {
  color: #6e1c1e;
  font-style: italic;
}

.video-pair {
  position: relative;
  padding: clamp(64px, 8vw, 108px) max(7vw, 24px);
  background: #494949 url("../images/backgrounds/vid.jpg") center / cover no-repeat;
  isolation: isolate;
}

.video-pair::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24));
  content: "";
}

.video-pair__inner {
  display: grid;
  width: min(1180px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.video-pair__frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 7px solid #cd1519;
  background: #000;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

.video-pair__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-section {
  background: #000;
}

.gallery-section h2 {
  margin: 0;
  padding: 52px max(7vw, 24px) 40px;
  color: #fff;
  font-family: "din-condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--din-letter-spacing);
  text-align: center;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #080808;
  outline-offset: -5px;
}

.photo-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 250ms ease, transform 350ms ease;
}

.photo-gallery a::after {
  position: absolute;
  inset: 0;
  border: 0 solid #cd1519;
  content: "";
  pointer-events: none;
  transition: border-width 200ms ease;
}

.photo-gallery a:hover img,
.photo-gallery a:focus-visible img {
  filter: brightness(0.72);
  transform: scale(1.025);
}

.photo-gallery a:hover::after,
.photo-gallery a:focus-visible::after {
  border-width: 7px;
}

.photo-gallery a:focus-visible {
  outline: 3px solid #fff;
}

.song-ticker {
  width: 100%;
  overflow: hidden;
  padding-block: 25px;
  background: #08111d url("../images/backgrounds/RTV-Cast-Banner.jpg") left top / cover no-repeat;
}

.song-ticker__track {
  display: flex;
  width: max-content;
  animation: song-ticker 44s linear infinite;
}

.song-ticker__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.song-ticker h2 {
  display: flex;
  min-width: clamp(210px, 24vw, 340px);
  min-height: 180px;
  flex: 0 0 auto;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 26px 28px;
  color: #d7242b;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.song-ticker h2 span {
  display: block;
}

.partners {
  position: relative;
  padding: clamp(22px, 3vw, 36px) max(7vw, 24px);
  background: #230406 url("../images/backgrounds/RTV_Background-1.jpg") center / cover no-repeat;
}

.partners__inner {
  display: grid;
  width: min(1120px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(3, 140px);
  align-items: center;
  justify-content: end;
  gap: clamp(28px, 4vw, 58px);
}

.partners a,
.partners__logo {
  display: grid;
  min-height: 56px;
  place-items: center;
}

.partners a {
  border-radius: 2px;
}

.partners img {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.partners a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 8px;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 54px 82px;
  border: 0;
  background: rgba(0, 0, 0, 0.95);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  place-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 108px);
  cursor: zoom-out;
  object-fit: contain;
}

.lightbox button {
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.lightbox__close {
  position: fixed;
  z-index: 2;
  top: 12px;
  right: 22px;
  padding: 0;
  font: 300 44px/1 Arial, sans-serif;
}

.lightbox__previous,
.lightbox__next {
  padding: 18px;
  font: 300 58px/1 Arial, sans-serif;
}

.lightbox button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.site-footer {
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  background: #050505;
}

.site-footer nav { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 0; }
.site-footer a { padding: 0 13px; color: inherit; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; }
.site-footer a + a { border-left: 1px solid rgba(255, 255, 255, 0.25); }
.site-footer a:hover,
.site-footer a:focus-visible { color: #ef3f35; text-decoration: underline; text-underline-offset: 4px; }

.contact-modal { width: min(520px, calc(100% - 32px)); max-height: calc(100dvh - 32px); overflow-y: auto; padding: 46px clamp(26px, 5vw, 52px); border: 1px solid rgba(255,255,255,.22); color: #fff; background: #0b0b0b; box-shadow: 0 24px 80px rgba(0,0,0,.7); text-align: center; }
.contact-modal::backdrop { background: rgba(0,0,0,.78); }
.contact-modal p { line-height: 1.6; }
.contact-modal__eyebrow { margin: 0; color: #ef3f35; font-size: 1.2rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-modal__logo { width: min(290px, 78%); height: auto; margin: 30px auto 28px; }
.contact-modal__email { display: inline-block; margin-top: 12px; color: #fff; font-weight: 700; overflow-wrap: anywhere; text-underline-offset: 4px; }
.contact-modal__email:hover,
.contact-modal__email:focus-visible { color: #ef3f35; }
.contact-modal__close { position: absolute; top: 12px; right: 16px; padding: 4px; border: 0; color: #fff; background: transparent; font: 300 34px/1 Arial, sans-serif; cursor: pointer; }
.contact-form { display: grid; gap: 16px; margin-top: 28px; text-align: left; }
.contact-form label { display: grid; gap: 7px; color: #ef3f35; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 0; color: #fff; background: #050505; font: inherit; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #ef3f35; outline: 2px solid rgba(239,63,53,.22); }
.contact-submit { padding: 14px 18px; border: 0; color: #fff; background: #b3251b; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.contact-submit:disabled { cursor: wait; opacity: .65; }
.contact-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-status { margin: 0; color: #ffb7a8; font-size: .86rem; line-height: 1.45; text-align: left; }
.contact-status.is-success { color: #bce5af; }

@media (max-width: 1100px) {
  .menu-toggle {
    display: block;
  }

  .primary-navigation {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(390px, 88vw);
    padding: 112px 34px 48px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
    background: #090909;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 260ms ease, visibility 260ms;
  }

  .site-header.is-menu-open .primary-navigation {
    transform: translateX(0);
    visibility: visible;
  }

  .primary-navigation a {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 2rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__artwork {
    width: min(72vw, 560px);
  }

  .cast-video__inner {
    grid-template-columns: minmax(280px, 46vw) 1fr;
    gap: 48px;
  }

  .show-copy__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .show-copy__lead {
    max-width: 760px;
  }

  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners__inner {
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 72px;
    padding: 6px 16px;
  }

  .site-header__brand {
    width: min(230px, calc(100vw - 82px));
    height: auto;
  }

  #about,
  #cast-in-action,
  #videos,
  #gallery {
    scroll-margin-top: 72px;
  }

  .hero__video {
    display: none;
  }

  .hero__artwork {
    width: min(88vw, 440px);
  }

  .cast-video {
    padding: 52px 24px 66px;
  }

  .cast-video__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cast-video h2 {
    grid-row: 1;
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    line-height: 1;
    text-align: center;
  }

  .cast-video__frame {
    width: min(100%, 520px);
    margin-inline: auto;
    border-width: 8px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
  }

  .cast-video h2::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .reviews {
    min-height: 430px;
    padding: 58px 24px 92px;
  }

  .reviews__carousel {
    min-height: 300px;
  }

  .reviews blockquote {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .show-copy {
    width: calc(100% - 24px);
    margin-top: -44px;
    padding: 66px 24px 72px;
    box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.3);
  }

  .show-copy__lead {
    padding-left: 20px;
    border-left-width: 6px;
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .show-copy__body {
    gap: 22px;
    line-height: 1.68;
  }

  .video-pair {
    padding: 58px 24px;
  }

  .video-pair__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .video-pair__frame {
    border-width: 5px;
  }

  .gallery-section h2 {
    padding: 44px 24px 32px;
  }

  .song-ticker h2 {
    min-width: 190px;
    min-height: 150px;
    padding: 22px 20px;
    font-size: 29px;
  }

  .partners__inner {
    grid-template-columns: 125px;
    justify-content: end;
    gap: 28px;
  }

  .partners a,
  .partners__logo {
    min-height: 48px;
  }

  .partners img {
    max-width: 125px;
    max-height: 41px;
  }

  .lightbox {
    padding: 54px 8px 26px;
  }

  .lightbox[open] {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .lightbox__previous,
  .lightbox__next {
    padding: 6px;
    font-size: 44px;
  }

}

@keyframes hero-artwork-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-scroll-cue {
  0%,
  100% {
    opacity: 0.35;
    translate: 0 -3px;
  }

  50% {
    opacity: 1;
    translate: 0 3px;
  }
}

@keyframes cast-section-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes song-ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__video {
    display: none;
  }

  .hero__artwork,
  .hero__scroll-indicator,
  .cast-video__frame,
  .cast-video h2 {
    animation: none;
  }

  .site-header,
  .primary-navigation,
  .primary-navigation a::after,
  .menu-toggle > span:not(.menu-toggle__label) {
    transition: none;
  }

  .reviews__quote {
    transition: none;
  }

  .song-ticker {
    overflow-x: auto;
  }

  .song-ticker__track {
    animation: none;
  }

  .photo-gallery img,
  .photo-gallery a::after {
    transition: none;
  }
}
