.hero-module {
  cursor: crosshair;
  background: var(--color-bg);
  scroll-snap-align: start;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 0 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hero-module__background {
  z-index: 0;
  pointer-events: none;
  background: var(--color-bg);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}
.hero-module__image {
  object-position: center bottom;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.hero-module__image--base {
  z-index: 1;
  object-fit: cover;
  object-position: center bottom;
}
.hero-module__reveal-mask {
  z-index: 2;
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.hero-module__image--back {
  z-index: 1;
  object-fit: cover;
  object-position: center bottom;
}
.hero-module__image--reveal {
  z-index: 2;
  object-fit: cover;
  object-position: center bottom;
}
.hero-module__image--base,
.hero-module__image--reveal {
  z-index: 2;
  object-fit: cover;
  object-position: center center;
  transform-origin: bottom;
  transform: translateY(20px) scale(1.03);
}
.hero-module__logo {
  z-index: 10;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  width: min(323px, 28vw);
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
.hero-module__next {
  z-index: 10;
  color: #f6eadbcc;
  text-transform: uppercase;
  font-family: var(--font-display);
  cursor: pointer;
  background: 0 0;
  border: 0;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.792rem;
  line-height: 2.688rem;
  transition:
    color 0.3s,
    transform 0.3s;
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
}
.hero-module__next:hover {
  color: var(--color-text);
}
.hero-module__next svg {
  transition: transform 0.3s;
}
.hero-module__next:hover svg {
  transform: translateY(4px);
}
.hero-module__mobile-image {
  z-index: 1;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0;
}
@media (width<=768px) {
  .hero-module__logo {
    width: min(300px, 60vw);
  }
  .hero-module__next {
    font-size: 0.875rem;
    right: 1.25rem;
  }
}
.hero-module__reveal-static {
  z-index: 2;
  pointer-events: none;
  position: absolute;
  inset: 0;
}
@media (width<=768px) {
  .hero-module {
    cursor: default;
    justify-content: center;
    padding: 0 1rem;
  }
  .hero-module__background {
    display: none;
  }
  .hero-module__mobile-image {
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .hero-module__image--base {
    opacity: 0;
  }
  .hero-module__image--back {
    object-fit: cover;
    object-position: center;
  }
  .hero-module__image--reveal {
    object-fit: cover;
    object-position: center bottom;
  }
  .hero-module__logo {
    width: min(250px, 72vw);
    top: 2rem;
    left: 50%;
    transform: translate(-50%);
  }
  .hero-module__next {
    z-index: 20;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #f6eadb;
    letter-spacing: 1px;
    white-space: nowrap;
    background-color: #11142080;
    border: 0;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 283px;
    height: 53px;
    font-size: 20px;
    line-height: 43px;
    display: flex;
    position: absolute;
    inset: auto auto 2.25rem 50%;
    transform: translate(-50%);
  }
  .hero-module__next svg {
    color: #f6eadbcc;
    width: 23px;
    height: 23px;
  }
}
.intro-module {
  background: var(--color-bg);
  scroll-snap-align: start;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.intro-module__image-frame {
  transform-origin: 50%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.intro-module__image {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.intro-module__hotspots-layer {
  z-index: 20;
  position: absolute;
}
.intro-module__hotspot {
  z-index: 20;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  display: flex;
  position: absolute;
  transform: translate(-50%, -50%);
}
.intro-module__hotspot-button {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  background: #f6eadb1a;
  border: 1px solid #f6eadb80;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
  display: flex;
  position: relative;
}
.intro-module__hotspot-button--active {
  background: #f6eadb29;
  border-color: #f6eadbe6;
}
.intro-module__hotspot-dot {
  background: var(--color-text);
  border-radius: 999px;
  width: 0.5rem;
  height: 0.5rem;
  animation: 1s infinite pulse-dot;
}
.intro-module__hotspot-ring {
  border: 1px solid #f6eadb33;
  border-radius: 999px;
  animation: 1s infinite pulse-ring;
  position: absolute;
  inset: 0;
}
.intro-module__hotspot-button--active .intro-module__hotspot-ring {
  border-color: #f6eadb80;
}
.intro-module__hotspot-label {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #f6eadbe6;
  max-width: 280px;
  font-family: var(--font-display);
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  white-space: pre-line;
  opacity: 1;
  pointer-events: none;
  background: #111420cc;
  border-radius: 6px;
  padding: 0.875rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1rem;
}
.intro-module__mobile-label-shell {
  z-index: 30;
  pointer-events: none;
  width: 100%;
  display: none;
  position: absolute;
  top: 59px;
  left: 50%;
  transform: translate(-50%);
}
.intro-module__mobile-label-stage {
  width: 100%;
  max-width: 320px;
  height: 92px;
  position: relative;
}
.intro-module__mobile-label {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #f6eadb;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: pre-line;
  background: #11142080;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 8px 30px;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  position: absolute;
  inset: 0;
}
@keyframes pulse-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.9);
  }
  to {
    opacity: 0;
    transform: scale(2.5);
  }
}
@keyframes pulse-dot {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(2);
  }
}
@media (width<=768px) {
  .intro-module__hotspot-label {
    display: none;
  }
  .intro-module__mobile-label-shell {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .intro-module__hotspot-button {
    opacity: 1;
    background: #f6eadb24;
    border-color: #f6eadba6;
    width: 2rem;
    height: 2rem;
  }
  .intro-module__hotspot-dot {
    width: 0.5rem;
    height: 0.5rem;
  }
  .intro-module__hotspot-ring {
    border-color: #f6eadb59;
  }
  .intro-module__hotspot-button--active {
    width: 1.9rem;
    height: 1.9rem;
    box-shadow: none;
    opacity: 0.65;
    background: #11142047;
    border-color: #f6eadb47;
  }
  .intro-module__hotspot-button--active .intro-module__hotspot-dot {
    opacity: 0.55;
    animation: none;
    transform: scale(1);
  }
  .intro-module__hotspot-button--active .intro-module__hotspot-ring {
    opacity: 0.35;
    border-color: #f6eadb33;
    animation: none;
    transform: scale(1);
  }
}
.hall-intro-screen {
  background: var(--color-bg);
  scroll-snap-align: start;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hall-intro-screen__bg {
  z-index: 0;
  opacity: 0.35;
  background-position: top;
  background-size: cover;
  position: absolute;
  inset: 0;
}
.hall-intro-screen__overlay {
  z-index: 10;
  background: linear-gradient(#0d0d10cc, #0d0d1066, #0d0d10);
  position: absolute;
  inset: 0;
}
.hall-intro-screen__content {
  z-index: 20;
  text-align: center;
  max-width: 64rem;
  padding: 1.5rem;
  position: relative;
}
.hall-intro-screen__subtitle {
  color: #f6eadb80;
  font-family: var(--font-display);
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-size: 1rem;
}
.hall-intro-screen__title {
  color: var(--color-text);
  font-family: var(--font-display);
  letter-spacing: 0.675rem;
  text-transform: uppercase;
  margin: 0 0 2rem;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 400;
}
.hall-intro-screen__line {
  background: #f6eadb4d;
  width: 4rem;
  height: 1px;
  margin: 0 auto 2rem;
}
.hall-intro-screen__description {
  color: #f6eadbb3;
  margin: 0 0 62px;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.8;
}
.hall-intro-screen__credits {
  z-index: 20;
  color: #f6eadb66;
  white-space: pre-line;
  max-width: 34rem;
  font-size: 0.875rem;
  line-height: 1.6;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
.hall-intro-screen__credits strong {
  color: var(--color-text);
  font-weight: 500;
}
@media (width<=768px) {
  .hall-intro-screen {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 43px;
    padding-bottom: 36px;
    display: flex;
  }
  .hall-intro-screen__content {
    padding: 0 24px;
  }
  .hall-intro-screen__title {
    font-size: 41.73px;
    line-height: 41.73px;
  }
  .hall-intro-screen__description {
    font-size: 16px;
    line-height: 24px;
  }
  .hall-intro-screen__subtitle {
    letter-spacing: 3.65px;
    font-size: 12.17px;
    line-height: 17.39px;
  }
  .hall-intro-screen__credits {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .hall-intro-screen__credits p {
    max-width: 265px;
    font-size: 10.43px;
    line-height: 16.69px;
  }
  .hall-intro-screen__description {
    margin-bottom: 24px;
  }
}
.artwork-slide {
  box-sizing: border-box;
  flex: 0 0 100vw;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  display: flex;
  position: relative;
}
.artwork-slide__content {
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  width: min(92vw, 1240px);
  margin: 0 auto;
  display: flex;
  position: relative;
}
.artwork-slide__frame {
  z-index: 10;
  aspect-ratio: 3/4;
  transform-origin: 50%;
  will-change: transform;
  flex: none;
  width: min(40vw, 500px);
  position: relative;
}
.artwork-slide__glow {
  filter: blur(80px);
  pointer-events: none;
  background: #f6eadb0d;
  border-radius: 100px;
  position: absolute;
  inset: 0;
}
.artwork-slide__image-shell {
  background: var(--color-bg);
  outline: 1px solid #f6eadb1a;
  width: 100%;
  height: 100%;
  padding: 1rem;
  position: relative;
  box-shadow: 0 30px 60px -15px #000000e6;
}
.artwork-slide__spotlight {
  z-index: 20;
  mix-blend-mode: overlay;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0, #f6eadb40 0%, #0000 70%);
  position: absolute;
  inset: 0;
}
.artwork-slide__image {
  z-index: 10;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: inset 0 0 40px #000c;
}
.artwork-slide__overlay {
  z-index: 30;
  -webkit-backdrop-filter: blur(6px);
  background: #0d0d1080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 1rem;
}
.artwork-slide__overlay h2 {
  color: var(--color-text);
  font-family: var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 20px #f6eadb80;
  margin: 0;
  padding: 0 1rem;
  font-size: clamp(2rem, 4vw, 3.375rem);
  font-weight: 400;
  line-height: 4rem;
}
.artwork-slide__overlay--med {
  -webkit-backdrop-filter: blur(14px);
  background: #0d0d1094;
  box-shadow: 0 30px 60px -15px #000000e6;
}
.artwork-slide__text {
  z-index: 10;
  flex: 0 560px;
  width: min(35vw, 560px);
  position: relative;
}
.artwork-slide__text h3 {
  color: var(--color-text);
  font-family: var(--font-display);
  letter-spacing: 0.047rem;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 2.25rem;
}
.artwork-slide__text p {
  color: #f6eadbb3;
  margin: 0 0 30px;
  font-size: 1.15rem;
  line-height: 1.75;
}
.artwork-slide__line {
  background: #f6eadb4d;
  width: 2rem;
  height: 1px;
  margin-bottom: 1.5rem;
}
.artwork-slide__meta {
  color: #f6eadb66;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  display: flex;
}
.artwork-slide__dot {
  background: #f6eadb4d;
  border-radius: 999px;
  width: 0.25rem;
  height: 0.25rem;
}
.artwork-slide__index {
  z-index: 10;
  color: #f6eadb80;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
  font-size: 0.875rem;
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
}
.artwork-slide__credits {
  font-family: var(--font-display);
  color: #f6eadb66;
  opacity: 0.5;
  letter-spacing: 1.2px;
  line-height: 16px;
}
.artwork-slide__credits .ist {
  margin: 0;
  font-size: 12px;
}
.artwork-slide__credits .cred {
  margin: 0;
  font-size: 10px;
}
.artwork-slide__mobile-head,
.artwork-slide__mobile-description {
  display: none;
}
.artwork-slide__dop-image {
  z-index: 10;
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.artwork-slide__frame--med {
  isolation: isolate;
  position: relative;
}
.artwork-slide__frame--med:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  filter: blur(18px);
  background: radial-gradient(#f6eadb40 0%, #0000 70%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.artwork-slide__image-shell--med {
  width: 100%;
  height: 100%;
  box-shadow: none;
  border: 3px solid #f6eadb;
  border-radius: 12px;
  outline: none;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}
.artwork-slide__image--med {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: none;
  border-radius: 12px;
  display: block;
  position: relative;
}
.artwork-slide__dop-image--med {
  position: absolute;
  left: 0;
}
.artwork-slide__overlay--med {
  -webkit-backdrop-filter: blur(8px);
  background: #0d0d1073;
  border-radius: 12px;
  inset: 0;
}
@media (width<=1280px) {
  .artwork-slide__content {
    gap: 2rem;
    width: min(94vw, 1080px);
  }
  .artwork-slide__frame {
    width: min(38vw, 220px);
  }
  .artwork-slide__text {
    width: min(40vw, 460px);
  }
  .artwork-slide__text h3 {
    font-size: 22px;
    line-height: 36px;
  }
  .artwork-slide__text p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media (width<=1024px) {
  .artwork-slide {
    justify-content: center;
  }
  .artwork-slide__content {
    flex-direction: column;
    gap: 2rem;
    width: min(90vw, 700px);
  }
  .artwork-slide__frame {
    width: min(65vw, 225px);
  }
  .artwork-slide__text {
    text-align: center;
    width: 100%;
  }
  .artwork-slide__line {
    margin: 0 auto 1.5rem;
  }
  .artwork-slide__meta,
  .artwork-slide {
    justify-content: center;
  }
  .artwork-slide__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: min(90vw, 700px);
    margin-top: 20px;
  }
  .artwork-slide__index {
    text-align: center;
    width: max-content;
    top: 1.25rem;
    bottom: auto;
    left: 50%;
    transform: translate(-50%);
  }
  .artwork-slide__mobile-head {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    display: flex;
  }
  .artwork-slide__mobile-head h3 {
    color: #f6eadb;
    font-family: var(--font-display);
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0;
    font-size: 28px;
    font-weight: 400;
  }
  .artwork-slide__mobile-description {
    width: 100%;
    padding: 0 20px;
    display: block;
  }
  .artwork-slide__mobile-description p {
    color: #f6eadbb3;
    text-align: left;
    font-size: 16px;
    line-height: 16px;
  }
  .artwork-slide__text {
    display: none;
  }
  .artwork-slide__meta {
    justify-content: center;
    margin-top: 0;
  }
  .artwork-slide__line {
    display: none;
  }
}
@media (width<=768px) {
  .artwork-slide__text h3 {
    letter-spacing: 0;
    font-size: 20px;
  }
  .artwork-slide__text p {
    text-align: start;
    font-size: 12px;
    line-height: 16px;
  }
  .artwork-slide__meta span {
    letter-spacing: 0.56px;
    font-size: 9px;
    line-height: 8px;
  }
  .artwork-slide__index {
    color: #f6eadbcc;
    letter-spacing: 0.95px;
    font-size: 9.54px;
    line-height: 14.31px;
  }
  .artwork-slide__overlay h2 {
    font-size: 22px;
    line-height: 36px;
  }
  .artwork-slide__credits {
    font-family: var(--font-display);
    color: #f6eadb66;
    letter-spacing: 1.2px;
    line-height: 16px;
  }
  .artwork-slide__credits .ist {
    font-size: 10px;
  }
  .artwork-slide__credits .cred {
    font-size: 8px;
  }
}
@media (width<=400px) {
  .artwork-slide__mobile-head h3 {
    font-size: 18px;
  }
  .artwork-slide__mobile-description p {
    font-size: 12px;
    line-height: 16px;
  }
}
.artwork-slide__image-visual {
  will-change: filter;
  width: 100%;
  height: 100%;
  position: relative;
}
.artwork-slide__image-visual--med {
  border-radius: 12px;
  overflow: hidden;
}
.hall-final {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  scroll-snap-align: start;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
}
.hall-final__content {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
}
.final-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}
.hall-final__text {
  color: var(--color-text);
  margin: 0 0 3rem;
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  line-height: 1.6;
}
.hall-final__primary,
.hall-final__secondary {
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.hall-final__primary {
  color: #f6eadbcc;
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid #f6eadb4d;
  margin-bottom: 2rem;
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  transition:
    background 0.4s,
    color 0.4s;
}
.hall-final__primary:hover {
  background: var(--color-text);
  color: var(--color-bg);
}
.hall-final__secondary {
  color: #f6eadb80;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: color 0.3s;
}
.hall-final__secondary:hover {
  color: var(--color-text);
}
.hall-final_img {
  width: 224px;
  margin-top: 82px;
}
.hall-final__bottom {
  color: #f6eadbcc;
  font-size: 10px;
}
@media (width<=768px) {
  .hall-final {
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .hall-final__content {
    flex: 1;
    padding-left: 23px;
    padding-right: 23px;
  }
  .hall-final__text {
    letter-spacing: 0;
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 28.14px;
  }
  .hall-final__primary {
    border-radius: 30px;
    margin-bottom: 16px;
  }
  .hall-final__secondary {
    letter-spacing: 1.29px;
    color: #f6eadbb2;
    font-size: 16px;
    line-height: 18.48px;
  }
  .hall-final_img {
    width: 181px;
    margin-top: 96px;
  }
}
@media (width<=500px) {
  .hall-final__bottom {
    color: #f6eadbcc;
    font-size: 8px;
  }
}
.cinematic-hall__title-shadow {
  z-index: 25;
  pointer-events: none;
  background: linear-gradient(#0d0d10cc 0%, #0d0d1066 50%, #0d0d1000 100%);
  position: absolute;
  inset: 0;
}
.cinematic-hall {
  background: var(--color-bg);
  width: 100%;
  position: relative;
}
.cinematic-hall__snap-target {
  pointer-events: none;
  scroll-snap-align: start;
  width: 100%;
  height: 100vh;
  position: absolute;
}
.cinematic-hall__sticky {
  z-index: 10;
  background: var(--color-bg);
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.cinematic-hall__bg {
  z-index: 0;
  background-position-y: bottom;
  background-size: cover;
  position: absolute;
  inset: 0;
}
.cinematic-hall__bg-darkness {
  background: var(--color-dark);
  position: absolute;
  inset: 0;
}
.cinematic-hall__floating-title {
  z-index: 30;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}
.cinematic-hall__floating-title h2 {
  color: #f6eadbe6;
  font-family: var(--font-display);
  letter-spacing: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 40px #f6eadb33;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 6rem;
}
.cinematic-hall__track {
  z-index: 20;
  will-change: transform;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}
.cinematic-hall__intro-darkness {
  z-index: 25;
  pointer-events: none;
  background: linear-gradient(#0d0d10cc 0%, #0d0d1080 80%, #0d0d1000 100%);
  position: absolute;
  inset: 0;
}
.cinematic-hall__actions {
  z-index: 40;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: absolute;
  top: 28px;
  /* left: 2.5rem; */
  /* right: 2.5rem; */
  padding: 0 2.5rem;
}
.cinematic-hall__action {
  color: #f6eadb80;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(0);
  background: transparent;
  border: none;
  align-items: center;
  gap: 4px;
  padding: 9px 0;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 24px;
  display: inline-flex;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}
.cinematic-hall__action:hover {
  color: #f6eadb;
  /* border-color: #f6eadbcc; */
}
.cinematic-hall__action--center {
  margin-inline: auto;
}
@media (width<=768px) {
  .cinematic-hall__actions {
    display: none;
  }
  .cinematic-hall__floating-title h2 {
    letter-spacing: 1px;
    width: 100%;
    max-width: 250px;
    font-size: 50px;
    line-height: 64px;
  }
}
@font-face {
  font-family: Oranienbaum;
  src: url(../fonts/Oranienbaum-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Nata Sans;
  src: url(../fonts/NataSans-VariableFont_wght.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-bg: #111420;
  --color-text: #f6eadb;
  --color-dark: #0000008d;
  --color-border: #f6eadb1a;
  --color-border-strong: #f6eadb4d;
  --font-display: "Oranienbaum", serif;
  --font-body: "Nata Sans", system-ui, sans-serif;
}
*,
:before,
:after {
  box-sizing: border-box;
}
html,
body,
#root {
  width: 100%;
  height: 100%;
  margin: 0;
}
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.app-shell {
  scroll-snap-type: none;
  scroll-behavior: auto;
  overscroll-behavior-y: none;
  background: var(--color-bg);
  width: 100%;
  height: 100vh;
  color: var(--color-text);
  position: relative;
  overflow: hidden auto;
}
.app-shell__vignette {
  pointer-events: none;
  z-index: 100;
  position: fixed;
  inset: 0;
  box-shadow: inset 0 0 70px #0d0d10f2;
}
.app-shell__hint {
  z-index: 100;
  pointer-events: none;
  text-align: right;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f6eadbcc;
  mix-blend-mode: difference;
  max-width: 250px;
  font-size: 0.75rem;
  line-height: 1.4;
  font-family: var(--font-display);
  opacity: 1;
  transition: opacity 0.35s;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: fixed;
  bottom: 2.5rem;
  right: 3.5rem;
}
.app-shell__hint-chevron {
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 0.35rem;
  display: flex;
  animation: app-shell-hint-chevron 1.6s ease-in-out infinite;
}
@keyframes app-shell-hint-chevron {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.app-shell__hint--hidden {
  opacity: 0;
  visibility: hidden;
}
@media (width<=768px) {
  .app-shell__hint {
    max-width: 180px;
    font-size: 0.625rem;
    display: none;
    bottom: 1rem;
    right: 1rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .app-shell {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-y: auto;
    touch-action: auto;
  }
  .hero-module,
  .intro-module,
  .hall-intro-screen,
  .hall-final,
  .cinematic-hall__snap-target {
    scroll-snap-stop: always;
  }
}
.artwork-slide__dop-image {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.artwork-slide__frame--med {
  position: relative;
  isolation: isolate;
}
.artwork-slide__image-shell--med {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  box-shadow: none;
  outline: none;
  border-radius: 12px;
  border: 3px solid #f6eadb;
  overflow: visible;
  overflow-x: visible;
}
.artwork-slide__dop-image--med {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  height: 100%;
  width: auto;
  max-width: none;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.section-nav {
  z-index: 35;
  pointer-events: none;
  justify-content: center;
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  position: absolute;
  top: 57px;
  left: 50%;
  transform: translate(-50%);
}
.section-nav__inner {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  pointer-events: auto;
  background: #11142099;
  border: 1px solid #f6eadb24;
  border-radius: 6px;
  align-items: center;
  gap: 16px;
  padding: 5px 37.5px;
  display: inline-flex;
  box-shadow: 0 16px 40px #0000002e;
}
.section-nav__separator {
  color: #f6eadb73;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 43px;
}
.section-nav__link {
  color: #f6eadb73;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 43px;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
.section-nav__link:hover {
  color: #f6eadb;
}
.section-nav__link--active {
  color: #f6eadb;
}
.mobile-nav-toggle,
.mobile-nav-overlay {
  display: none;
}
.mobile-nav-toggle {
  -webkit-backdrop-filter: blur(3.62px);
  backdrop-filter: blur(3.62px);
  z-index: 220;
  cursor: pointer;
  background: #11142080;
  border: 1px solid #f6eadb29;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
  position: fixed;
  top: 16px;
  right: 16px;
}
.mobile-nav-toggle__icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
  display: flex;
}
.mobile-nav-toggle__line {
  background: #f6eadb;
  border-radius: 999px;
  width: 1rem;
  height: 1.5px;
  display: block;
}
.mobile-nav-toggle__icon--close {
  width: 1rem;
  height: 1rem;
  position: relative;
}
.mobile-nav-toggle__close-line {
  background: #f6eadb;
  border-radius: 999px;
  width: 1rem;
  height: 1.5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.mobile-nav-toggle__close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-nav-toggle__close-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-nav-overlay {
  z-index: 210;
  background: #111420e5;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5.5rem 2rem 2rem;
  position: fixed;
  inset: 0;
}
.mobile-nav-overlay__menu {
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  display: flex;
}
.mobile-nav-overlay__logo {
  pointer-events: none;
  user-select: none;
  width: min(150px, 58vw);
  margin-top: 2rem;
  opacity: 0.96;
}
.mobile-nav-overlay__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.mobile-nav-overlay__link {
  color: #f6eadb;
  letter-spacing: 6.26px;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 41.73px;
  line-height: 41.73px;
  transition: opacity 0.25s ease;
}
.mobile-nav-overlay__link:hover {
  opacity: 0.75;
}
.app-shell--menu-open {
  touch-action: none;
}

@media (width<=768px) {
  .section-nav {
    display: none;
  }
  .mobile-nav-toggle,
  .mobile-nav-overlay {
    display: flex;
  }
  .mobile-nav-toggle {
    top: 1.1rem;
    right: 1rem;
  }
}
