:root {
  --bg: #11110f;
  --panel: #1a1a17;
  --panel-soft: #1f1d19;
  --text: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.75);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #d9be83;
  --accent-strong: #cfa053;
  --canvas: #e4dccd;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(217, 190, 131, 0.12), transparent 24%),
    linear-gradient(180deg, #131310 0%, #0f0f0d 100%);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.landing-page {
  width: 100vw;
  min-height: 100vh;
  position: absolute;
  z-index: 1;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

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

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  width: 100vw;
  min-height: 100vh;
  padding: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(135deg, #1d1a16 0%, #0f100f 100%);
}

.showcase__visual,
.navigator {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.showcase__visual {
  cursor: pointer;
  box-shadow: var(--shadow);
}

.showcase__visual::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1;
  pointer-events: none;
}

.showcase__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.showcase__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  will-change: transform, opacity;
}

.showcase__image--primary {
  z-index: 0;
  opacity: 1;
}

.showcase__image--secondary {
  z-index: 0;
  opacity: 0;
}

.showcase__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.46) 58%, rgba(5, 5, 5, 0.12) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.5) 0%, rgba(8, 8, 8, 0.08) 44%, rgba(8, 8, 8, 0.08) 100%);
}

.showcase__veil::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(217, 190, 131, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%);
}

.showcase__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.1rem;
  min-height: 100vh;
  padding: 2.25rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.showcase h1,
.navigator h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.showcase h1 {
  margin: 0;
  font-size: clamp(4.4rem, 7vw, 6.4rem);
  line-height: 0.9;
  font-weight: 600;
  max-width: 8ch;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.room-indicators {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
}

.room-indicator {
  width: 2.4rem;
  height: 1px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    width 220ms ease;
}

.room-indicator:hover {
  transform: scaleX(1.08);
  background: rgba(255, 255, 255, 0.6);
}

.room-indicator.is-active {
  width: 4.8rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, var(--accent-strong) 100%);
  box-shadow: 0 0 14px rgba(207, 160, 83, 0.22);
}

.showcase__description {
  margin: 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.showcase__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.nav-arrow,
.map-pin {
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease;
}

.nav-arrow:hover {
  transform: translateY(-2px);
}

.navigator {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem 1.2rem 0;
  isolation: isolate;
  background:
    radial-gradient(circle at top center, rgba(217, 190, 131, 0.12), transparent 32%),
    linear-gradient(180deg, #171613 0%, #0f0f0d 100%);
  color: #f4efe7;
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.06),
    -20px 0 60px rgba(0, 0, 0, 0.24);
}

.navigator__bg {
  display: none;
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
  will-change: opacity;
  opacity: .5;
}

.navigator__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 9, 0.78), rgba(10, 10, 9, 0.92)),
    linear-gradient(180deg, rgba(217, 190, 131, 0.05), rgba(10, 10, 9, 0));
  opacity: 0.38;
  transform: scale(1.04);
}

.navigator__bg--current {
  opacity: .5;
}

.navigator__bg--next {
  opacity: 0;
}

.navigator__map-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: min(70vh, 760px);
  margin-top: 0.25rem;
  padding: 0 .25rem;
}

.navigator__map-inner {
  position: relative;
  width: min(88%, 780px);
  max-height: 100%;
}

.navigator__map-image {
  position: relative;
  top: -15px;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter:
    grayscale(0.08)
    brightness(0.9)
    drop-shadow(0 24px 54px rgba(0, 0, 0, 0.32));
}

.map-pin {
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  transform: translate(-50%, -50%);
  padding: 0.48rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #fbf6ee;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.map-pin span {
  position: relative;
  z-index: 1;
}

.map-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--highlight-w, 10rem);
  height: var(--highlight-h, 10rem);
  border-radius: var(--highlight-radius, 1.5rem);
  background:
    radial-gradient(
      ellipse at center,
      rgba(217, 190, 131, 0.3) 0%,
      rgba(217, 190, 131, 0.2) 34%,
      rgba(217, 190, 131, 0.08) 64%,
      rgba(217, 190, 131, 0) 100%
    );
  filter: blur(12px);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 260ms ease;
  pointer-events: none;
  z-index: -1;
}

.map-pin.is-active {
  background: linear-gradient(180deg, #f0d36f 0%, #d7aa2f 100%);
  border-color: rgba(240, 211, 111, 0.42);
  color: #191611;
  box-shadow: 0 16px 30px rgba(215, 170, 47, 0.28);
}

.map-pin:hover {
  background: linear-gradient(180deg, #f0d36f 0%, #d7aa2f 100%);
  border-color: rgba(240, 211, 111, 0.42);
  color: #191611;
  box-shadow: 0 20px 34px rgba(215, 170, 47, 0.28);
  transform: translate(-50%, -50%) translateY(-2px);
}

.map-pin:hover::before,
.map-pin.is-active::before {
  opacity: 1;
}

.map-pin.is-active:hover {
  background: linear-gradient(180deg, #f4db84 0%, #ddb43f 100%);
  border-color: rgba(240, 211, 111, 0.48);
  box-shadow: 0 18px 32px rgba(215, 170, 47, 0.32);
}

.map-pin[data-room="series-1"] {
  --highlight-w: 10.5rem;
  --highlight-h: 8.5rem;
  --highlight-radius: 1.5rem;
}

.map-pin[data-room="series-2"] {
  --highlight-w: 8rem;
  --highlight-h: 8rem;
  --highlight-radius: 1.5rem;
}

.map-pin[data-room="lobby"] {
  --highlight-w: 7rem;
  --highlight-h: 7rem;
  --highlight-radius: 1.2rem;
}

.map-pin[data-room="series-3"] {
  --highlight-w: 10.5rem;
  --highlight-h: 8.5rem;
  --highlight-radius: 1.5rem;
}

.navigator__intro {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.navigator__actions {
  display: flex;
  gap: 0;
  justify-content: space-between;
  align-items: stretch;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  min-height: 9rem;
  padding: 1.35rem 1rem 1.5rem;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  color: #f6f1e8;
  cursor: pointer;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.nav-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(20, 20, 18, 0.72), rgba(12, 12, 10, 0.92));
  opacity: 1;
  z-index: 1;
}

.nav-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(217, 190, 131, 0.18), rgba(217, 190, 131, 0));
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: 2;
}

.nav-arrow:hover::after {
  opacity: 1;
}

#prev-room.nav-arrow {
  border-right: 1px solid rgba(0, 0, 0, 0.75);
}

.nav-arrow__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  opacity: 0;
  will-change: opacity, transform;
  z-index: 0;
  pointer-events: none;
}

.nav-arrow__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 14, 12, 0.9), rgba(8, 8, 7, 0.96)),
    linear-gradient(180deg, rgba(217, 190, 131, 0.08), transparent 36%);
}

.nav-arrow__bg--current {
  opacity: 1;
}

.nav-arrow__icon,
.nav-arrow__meta {
  position: relative;
  z-index: 3;
}

.nav-arrow__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 2rem;
  line-height: 1;
  flex: 0 0 auto;
}

.nav-arrow__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.nav-arrow__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-arrow__room {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.95rem, 2.3vw, 2.8rem);
  line-height: 0.95;
  text-align: center;
}

@media (max-width: 1100px) {
  body {
    overflow-y: auto;
  }

  .showcase {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .showcase__visual,
  .navigator {
    min-height: 70vh;
  }

  .showcase__visual {
    display: none;
  }

  .showcase__content,
  .navigator {
    padding-bottom: 2rem;
  }

  .navigator__map-frame {
    height: min(62vh, 620px);
  }

  .navigator::before {
    inset: 0;
  }

  .navigator__bg::after {
    transform: scale(1.02);
  }

  .navigator__bg {
    display: block;
  }
}

@media (max-width: 720px) {
  .showcase__content {
    padding: 2rem 1.2rem;
  }

  .navigator {
    padding: 0;
  }

  .navigator__actions {
    width: 100%;
  }

  .nav-arrow {
    min-height: 25vh;
    padding: 0.85rem 0.7rem;
  }

  .nav-arrow__icon {
    width: 2.1rem;
    height: 2.1rem;
    padding: 0.4rem;
    font-size: 2rem;
  }

  .nav-arrow__room {
    font-size: 1.3rem;
  }

  .navigator__map-frame {
    height: 100%;
    padding: 0rem;
  }

  .navigator__map-image {
    width: 100%;
  }

  .navigator__map-inner {
    width: 100%;
  }

  .map-pin {
    padding: 0.62rem 0.92rem;
    font-size: 0.78rem;
  }

  .navigator__actions {
    gap: 0rem;
  }
}

.vt-embed {
  height: 100%;
  width: 100%;
  display: none;
  position: absolute;
  z-index: 0;
}

.vt-embed.active {
  display: block;
}

#back-button {
  color: white;
  position: absolute;
  top: 50%;
  left: 12px;
  cursor: pointer;
  background: #1a1a17;
  padding: 4px;
}
