/* TripMate adaptations; original Travelshift CSS is in travelshift.css. */
@import url("chat-styles.css");
@font-face {
  font-family: EuclidSquare;
  src: url("../fonts/EuclidSquare-Light.woff");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: EuclidSquare;
  src: url("../fonts/EuclidSquare-Regular.woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: EuclidSquare;
  src: url("../fonts/EuclidSquare-Medium.woff");
  font-weight: 500 800;
  font-display: swap;
}
:root {
  --wine: #73272c;
  --blue: #b3e5fc;
  --green: #73272c;
  --ink: #302b2c;
  --muted: #7f7577;
  --line: #e9e0e0;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  background: var(--wine);
  color: #fff;
  font:
    300 16px EuclidSquare,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
a,
input {
  font: inherit;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
main:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}
p,
h1,
h2,
figure {
  margin: 0;
}
button:disabled {
  opacity: 0.25;
  cursor: default;
}
[hidden] {
  display: none !important;
}
.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  padding: 0 clamp(30px, 7.8vw, 122px);
  display: flex;
  align-items: center;
  gap: 35px;
  pointer-events: none;
}
.site-header > * {
  pointer-events: auto;
}
.wordmark {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -1.2px;
  white-space: nowrap;
}
.wordmark > .wordmark-symbol {
  font-size: 38px;
  margin-right: 7px;
  font-weight: 300;
}
.ai-label {
  font-size: 11px;
  letter-spacing: 1px;
  border: 1px solid #ffffff60;
  border-radius: 4px;
  padding: 3px 5px;
  margin-left: 9px;
}
.header-caption {
  font-size: 12px;
  opacity: 0.55;
  max-width: 210px;
  line-height: 1.6;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.text-button {
  border: 0;
  background: none;
  font-size: 15px;
}
.text-button > span {
  margin-left: 25px;
  font-size: 22px;
}
.menu-button {
  background: none;
  border: 0;
  font-size: 22px;
  padding: 10px;
}
.tripPage {
  position: relative;
  height: 100dvh;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
}
.tripPage::-webkit-scrollbar {
  display: none;
}
.tripPage.dragging {
  cursor: grabbing;
  user-select: none;
}
.journey-track {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  min-height: 520px;
}
.intro {
  position: relative;
  flex-shrink: 0;
  width: clamp(550px, 52vw, 820px);
  height: 100%;
  display: flex;
  align-items: center;
}
.tripBlock__introWrapper {
  margin: 55px 0 0 clamp(55px, 11.8vw, 170px);
  padding: 0;
}
.tripBlock__title {
  font-size: clamp(84px, 13.3333vh, 120px);
  font-weight: 300;
}
.tripBlock__title > span {
  color: var(--blue);
}
.tripBlock__introCircle {
  position: absolute;
  top: 50%;
  right: 0;
}
.tripBlock__introCircle:before {
  width: min(71.1111vh, 640px);
  height: min(71.1111vh, 640px);
  pointer-events: none;
}
.back-button {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 38px 0 0 8px;
  padding: 16px 0;
  background: none;
  border: 0;
  font-size: 14px;
}
.back-button > span {
  border: 1px solid #ffffff40;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  font-size: 21px;
}
.journey-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 0 100px;
  height: 100%;
  flex-shrink: 0;
}
.journey-group.dark {
  background: #090909;
}
.tripBlock__line {
  left: 0;
  top: 50%;
  pointer-events: none;
}
.tripBlock__item {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  z-index: 1;
}
.tripImageItem {
  position: relative;
  width: 80vh;
  height: 50vh;
  max-width: 720px;
  max-height: 450px;
  min-width: 360px;
  min-height: 225px;
  overflow: hidden;
}
.tripImageItem.cover {
  width: 50vw;
  max-width: none;
  min-width: 400px;
  height: 50vh;
  max-height: 35vw;
}
.tripImageItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.tripImageItem.cover img {
  transform: scale(1.3);
  opacity: 0.8;
}
.tripTextItem {
  height: auto;
  width: 600px;
  max-width: none;
  font-size: 16px;
}
.tripTextItem.large {
  width: 640px;
}
.tripTextItem__wrapper {
  position: relative;
  background: var(--wine);
  padding: 70px 65px 45px;
  height: auto;
  min-height: 50vh;
  border: 1px solid #ffffff2e;
}
.dark .tripTextItem__wrapper {
  background: #090909;
}
.tripTextItem__subhead {
  position: static;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
}
.tripTextItem__title {
  margin: 0;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.12;
}
.tripTextItem__desc {
  margin-top: 30px;
  opacity: 0.65;
  font-size: 16px;
  line-height: 1.65;
}
.tripTextItem .pictoItem {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--wine);
  border: 1px solid #ffffff50;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 23px;
  z-index: 2;
}
.dark .pictoItem {
  background: #090909;
}
.ask-context {
  margin-top: 24px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid #ffffff50;
  background: none;
  font-size: 14px;
  color: var(--blue);
}
.tripHotelItem {
  height: 50vh;
  min-height: 330px;
  max-height: 450px;
}
.tripHotelItem__wrapper {
  height: 100%;
}
.tripHotelItem__slider {
  position: relative;
  width: 30vh;
  min-width: 180px;
  max-width: 270px;
  height: 100%;
}
.tripHotelItem__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tripHotelItem__textWrapper {
  padding: 45px;
  width: 390px;
  background: var(--wine);
}
.dark .tripHotelItem__textWrapper {
  background: #090909;
}
.tripHotelItem__title {
  font-weight: 300;
  font-size: 32px;
  max-width: none;
}
.tripHotelItem__roomTypes {
  gap: 8px;
  margin-top: 20px;
}
.radioBttn {
  border: 1px solid #ffffff50;
  border-radius: 30px;
  background: none;
  font-size: 11px;
  padding: 9px 12px;
  color: var(--blue);
}
.radioBttn.selected {
  background: var(--blue);
  color: #302b2c;
  border-color: var(--blue);
}
.next-stop {
  width: 100vw;
  min-width: 500px;
  height: 100%;
  padding: 170px 12vw 90px;
  background: #172c32;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.next-stop > span {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--blue);
}
.next-stop h2 {
  font-size: clamp(65px, 11vh, 110px);
  line-height: 1;
  margin: 30px 0;
  font-weight: 300;
}
.next-stop em {
  font-style: normal;
  color: var(--blue);
}
.next-stop p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.65;
}
.journey-footer {
  position: fixed;
  z-index: 5;
  bottom: 35px;
  left: clamp(30px, 7.8vw, 122px);
  right: clamp(30px, 7.8vw, 122px);
  display: flex;
  align-items: center;
  gap: 40px;
  pointer-events: none;
}
.journey-footer > * {
  pointer-events: auto;
}
.drag-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 23px;
  white-space: nowrap;
}
.drag-hint span {
  font-size: 12px;
  opacity: 0.65;
}
.progress {
  height: 1px;
  background: #ffffff35;
  flex: 1;
}
.progress > span {
  display: block;
  background: var(--blue);
  height: 2px;
  width: 0;
}
.journey-controls {
  display: flex;
  gap: 10px;
}
.journey-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff45;
  border-radius: 50%;
  background: transparent;
  font-size: 21px;
}
.journey-menu {
  position: fixed;
  z-index: 20;
  right: 7vw;
  top: 115px;
  width: 320px;
  max-height: 65vh;
  overflow: auto;
  padding: 25px;
  background: #542026;
  box-shadow: 0 20px 60px #0004;
  border: 1px solid #ffffff25;
}
.journey-menu > span {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 1.5px;
}
.journey-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #ffffff20;
  font-size: 15px;
}
.journey-menu a:hover {
  color: var(--blue);
}
dialog {
  border: 0;
  padding: 0;
  width: min(470px, calc(100vw - 30px));
  max-height: calc(100dvh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  color: var(--ink);
  box-shadow: 0 30px 100px #0006;
}
dialog::backdrop {
  background: #160c1099;
  backdrop-filter: blur(6px);
}
.close-chat {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 5;
  color: var(--muted);
  background: #fff;
  border: 0;
  font-size: 25px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.chat-card {
  position: relative;
  border-radius: 18px;
  width: 100%;
  max-width: none;
  box-shadow: none;
  font-family: Arial, sans-serif;
}
.chat-heading {
  padding-right: 48px;
}
.chat-heading h2 {
  font-size: 16px;
}
.chat-heading p {
  font-size: 12px;
  margin-top: 5px;
}
.reset-chat {
  margin-left: auto;
}
.chat-messages {
  max-height: 40vh;
}
.message {
  font-size: 14px;
}
.chat-form input {
  font-size: 14px;
}
.chat-note {
  font-size: 11px;
  line-height: 1.4;
}
.suggestions button {
  font-size: 13px;
}
.suggestions > span,
.message-label {
  font-size: 10px;
}
.assistant-icon {
  color: #b3e5fc;
}
.small-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #709872;
  border-radius: 50%;
  margin-right: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
@media (max-width: 800px) {
  .site-header {
    height: 110px;
    padding: 0 28px;
  }
  .header-caption {
    display: none;
  }
  .header-actions {
    gap: 15px;
  }
  .text-button {
    font-size: 12px;
  }
  .text-button span {
    margin-left: 8px;
  }
  .wordmark {
    font-size: 25px;
  }
  .wordmark > .wordmark-symbol {
    font-size: 30px;
  }
  .menu-button {
    font-size: 18px;
  }
  .intro {
    width: 85vw;
    min-width: 325px;
  }
  .tripBlock__introWrapper {
    margin: 30px 0 0 40px;
  }
  .tripBlock__title {
    font-size: 82px;
  }
  .tripBlock__introCircle:before {
    width: 60vh;
    height: 60vh;
  }
  .journey-group {
    gap: 55px;
    padding: 0 55px;
  }
  .tripImageItem.cover {
    width: 80vw;
    min-width: 280px;
    max-height: none;
    height: 50vh;
  }
  .tripImageItem {
    width: 80vw;
    min-width: 280px;
  }
  .tripTextItem,
  .tripTextItem.large {
    width: 85vw;
    max-width: 470px;
  }
  .tripTextItem__wrapper {
    padding: 38px 30px;
    min-height: 45vh;
  }
  .tripTextItem__title {
    font-size: 30px;
  }
  .tripTextItem__desc {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
  }
  .tripTextItem__subhead {
    font-size: 11px;
  }
  .tripHotelItem__textWrapper {
    width: 300px;
    padding: 28px;
  }
  .tripHotelItem__title {
    font-size: 27px;
  }
  .tripHotelItem__slider {
    min-width: 160px;
  }
  .journey-footer {
    bottom: 25px;
    left: 28px;
    right: 28px;
    gap: 20px;
  }
  .drag-hint span {
    font-size: 10px;
  }
  .journey-controls button {
    height: 36px;
    width: 36px;
  }
  .next-stop {
    min-width: 100vw;
    padding: 120px 50px;
  }
  .next-stop h2 {
    font-size: 72px;
  }
  .journey-menu {
    right: 20px;
    top: 95px;
    max-width: calc(100vw - 40px);
  }
  .chat-heading h2 {
    font-size: 14px;
  }
  .chat-heading p {
    font-size: 10px;
  }
}
@media (max-height: 650px) {
  .site-header {
    height: 85px;
  }
  .journey-track {
    min-height: 0;
  }
  .tripBlock__title {
    font-size: 75px;
  }
  .tripBlock__introWrapper {
    margin-top: 20px;
  }
  .tripTextItem__wrapper {
    min-height: 0;
    padding: 30px 40px;
    max-height: calc(100dvh - 165px);
    overflow-y: auto;
  }
  .tripTextItem__desc {
    font-size: 14px;
    line-height: 1.45;
    margin-top: 14px;
  }
  .tripTextItem__title {
    font-size: 28px;
  }
  .tripTextItem__subhead {
    margin-bottom: 12px;
  }
  .ask-context {
    margin-top: 15px;
  }
  .tripHotelItem {
    min-height: 260px;
  }
  .tripHotelItem__title {
    font-size: 24px;
  }
  .journey-footer {
    bottom: 14px;
  }
  .next-stop {
    padding-top: 90px;
    padding-bottom: 65px;
  }
  .next-stop h2 {
    font-size: 65px;
    margin: 15px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Travelshift homepage motion: shaped WebGL images, kinetic type, timeline. */
body.is-home {
  --scene-bg: #73272c;
  --scene-ink: #b3e5fc;
  background: var(--scene-bg);
  transition: background 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
body.is-home .header-caption {
  max-width: 260px;
}
body.is-home .journey-footer {
  display: none;
}
.home-experience {
  position: fixed;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
  color: #fff;
}
.home-experience.is-dragging {
  cursor: grabbing;
}
.home-art {
  position: absolute;
  left: 29%;
  top: 12%;
  width: 64%;
  height: 74%;
  pointer-events: none;
}
.home-art canvas,
.home-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-art canvas {
  opacity: 0;
  transition: opacity 0.5s;
}
.home-art.webgl-ready canvas {
  opacity: 1;
}
.home-art.webgl-ready > img {
  opacity: 0;
}
.home-art > img {
  border-radius: 48% 48% 42% 42%;
  transform: scale(0.88);
  transition:
    opacity 0.4s,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.8);
}
.home-orbit {
  position: absolute;
  width: min(85vh, 800px);
  height: min(85vh, 800px);
  border: 1px solid #ffffff1c;
  border-radius: 50%;
  left: 41%;
  top: 49%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.home-title-wrap {
  position: absolute;
  left: 32%;
  top: 38%;
  pointer-events: none;
  z-index: 2;
}
.home-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  margin-left: 10px;
  color: #fff9;
  margin-bottom: 12px;
}
.home-title {
  font-size: clamp(100px, 15vw, 240px);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 1.04;
  color: var(--scene-ink);
  white-space: nowrap;
  transform-origin: left center;
  text-shadow: 0 10px 55px #0002;
}
.home-title .glyph {
  display: inline-block;
  will-change: transform, opacity;
}
.home-description {
  position: absolute;
  left: 8.47222%;
  top: 39%;
  width: 250px;
  z-index: 3;
}
.home-description > span {
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.5;
}
.home-description h2 {
  font-weight: 300;
  font-size: 34px;
  line-height: 1.15;
  margin: 23px 0 20px;
  max-width: 240px;
}
.home-description p {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.65;
  min-height: 53px;
}
.home-description > button {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 13px;
  margin-top: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-description > button span {
  border: 1px solid #fff5;
  border-radius: 50%;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  font-size: 21px;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.4s;
}
.home-description > button:hover span {
  background: var(--scene-ink);
  color: var(--scene-bg);
  transform: rotate(45deg);
}
.home-shuffle {
  position: absolute;
  right: 8.47222%;
  top: 23%;
  border: 1px solid #ffffff40;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  background: transparent;
  z-index: 4;
  transition:
    transform 0.4s,
    border-color 0.4s;
}
.home-shuffle > span {
  font-size: 34px;
  display: block;
  transition: transform 0.6s;
}
.home-shuffle:hover > span {
  transform: rotate(180deg);
}
.home-shuffle small {
  position: absolute;
  right: 75px;
  top: 24px;
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s;
}
.home-shuffle:hover small,
.home-shuffle:focus-visible small {
  opacity: 0.7;
}
.home-bottom {
  position: absolute;
  left: 8.47222%;
  right: 8.47222%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 4;
}
.home-instruction {
  font-size: 11px;
  opacity: 0.6;
  white-space: nowrap;
}
.home-dots {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex: 1;
  max-width: 530px;
  margin: auto;
}
.home-dots:before {
  content: "";
  height: 1px;
  position: absolute;
  left: 12%;
  right: 12%;
  top: 20px;
  background: #ffffff35;
}
.home-dots > button {
  position: relative;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  padding: 0;
}
.home-dots > button:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff6;
  transition:
    background 0.4s,
    transform 0.5s;
}
.home-dots > button:after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--scene-ink);
  border-radius: 50%;
  transform: scale(0.3);
  opacity: 0;
  transition:
    transform 0.6s,
    opacity 0.6s;
}
.home-dots > button[aria-pressed="true"]:before {
  background: var(--scene-ink);
}
.home-dots > button[aria-pressed="true"]:after {
  transform: scale(1);
  opacity: 1;
}
.home-dots span {
  position: absolute;
  top: 49px;
  left: 0;
  width: 100%;
  font-size: 10px;
  opacity: 0.6;
}
.home-arrows {
  display: flex;
  align-items: center;
  gap: 20px;
}
.home-arrows > span {
  font-size: 10px;
  letter-spacing: 2px;
  white-space: nowrap;
}
.home-arrows > button {
  width: 37px;
  height: 37px;
  border: 0;
  border-radius: 50%;
  background: none;
  font-size: 23px;
  transition: background 0.3s;
}
.home-arrows > button:hover {
  background: #fff2;
}
.home-experience.entering .home-kicker {
  animation: homeRise 1.2s 0.15s both;
}
.home-experience.entering .home-description {
  animation: homeRise 1.3s 0.3s both;
}
.home-experience.entering .home-art {
  animation: artReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.home-experience.entering .home-bottom {
  animation: homeRise 1.2s 0.5s both;
}
@keyframes homeRise {
  from {
    opacity: 0;
    translate: 0 25px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes artReveal {
  from {
    opacity: 0;
    transform: scale(0.86) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
.journey-track .tripBlock__item {
  will-change: translate;
}
.tripImageItem img {
  will-change: transform;
}
.journey-menu:not([hidden]) {
  animation: homeRise 0.35s both;
}
dialog[open] {
  animation: homeRise 0.35s both;
}
@media (max-width: 1000px) {
  .home-description {
    width: 190px;
  }
  .home-description h2 {
    font-size: 28px;
  }
  .home-description p {
    font-size: 13px;
  }
  .home-title-wrap {
    left: 32%;
    top: 40%;
  }
  .home-title {
    font-size: 16vw;
  }
  .home-shuffle {
    right: 6%;
    top: 23%;
  }
  .home-bottom {
    gap: 20px;
  }
  .home-instruction {
    font-size: 9px;
  }
}
@media (max-width: 650px) {
  .home-art {
    left: 7%;
    top: 14%;
    width: 90%;
    height: 54%;
  }
  .home-title-wrap {
    top: 35%;
    left: 9%;
  }
  .home-title {
    font-size: clamp(77px, 22vw, 140px);
  }
  .home-kicker {
    font-size: 8px;
    letter-spacing: 2px;
  }
  .home-description {
    left: 9%;
    top: auto;
    bottom: 18%;
    width: 82%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    column-gap: 15px;
  }
  .home-description > span {
    grid-column: 1/-1;
    font-size: 9px;
  }
  .home-description h2 {
    font-size: 25px;
    margin: 10px 0;
  }
  .home-description p {
    grid-column: 1;
    font-size: 12px;
    min-height: 0;
  }
  .home-description > button {
    grid-column: 2;
    grid-row: 2/4;
    font-size: 11px;
    gap: 10px;
    margin: 0;
  }
  .home-description > button span {
    width: 32px;
    height: 32px;
  }
  .home-shuffle {
    width: 43px;
    height: 43px;
    right: 8%;
    top: 17%;
  }
  .home-shuffle > span {
    font-size: 27px;
  }
  .home-shuffle small {
    display: none;
  }
  .home-bottom {
    left: 8%;
    right: 8%;
    bottom: 6%;
    gap: 12px;
  }
  .home-instruction {
    display: none;
  }
  .home-arrows {
    gap: 8px;
  }
  .home-dots {
    max-width: none;
  }
  .home-dots span {
    top: 41px;
  }
  .home-orbit {
    left: 50%;
    top: 38%;
    width: 90vw;
    height: 90vw;
  }
}
@media (max-height: 620px) and (min-width: 651px) {
  .home-title {
    font-size: 15vw;
  }
  .home-title-wrap {
    top: 32%;
  }
  .home-description {
    top: 29%;
  }
  .home-description h2 {
    font-size: 25px;
    margin: 12px 0;
  }
  .home-description p {
    font-size: 12px;
  }
  .home-description > button {
    margin-top: 12px;
  }
  .home-bottom {
    bottom: 7%;
  }
  .home-art {
    top: 7%;
    height: 78%;
  }
  .home-shuffle {
    top: 20%;
  }
}
@media (max-height: 650px) and (max-width: 650px) {
  .home-description p {
    display: none;
  }
  .home-description {
    bottom: 20%;
  }
  .home-title-wrap {
    top: 32%;
  }
  .home-art {
    top: 12%;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.is-home {
    transition: none;
  }
  .home-experience * {
    animation: none !important;
    transition: none !important;
  }
  .home-title .glyph {
    will-change: auto;
  }
}

/* Full-screen destination photographs on every viewport. */
.home-art {
  inset: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.home-art > img {
  border-radius: 0;
  transform: scale(1.06) !important;
  filter: none;
}
.home-art:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 15, 20, 0.64), rgba(8, 15, 20, 0.12) 65%),
    linear-gradient(
      180deg,
      rgba(8, 15, 20, 0.35),
      transparent 30%,
      transparent 65%,
      rgba(8, 15, 20, 0.5)
    );
}
.home-orbit {
  display: none;
}
.home-experience.entering .home-art {
  animation: fullScreenReveal 1.2s ease both;
}
@keyframes fullScreenReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-experience.entering .home-art {
    animation: none;
  }
}

/* Hover for 600 ms to select a scene; pointer exit cancels. */
.home-shuffle:after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid var(--scene-ink);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.home-shuffle.hover-armed:after {
  opacity: 1;
  animation: hoverSceneRing 0.6s linear both;
}
.home-dots > button.hover-armed:after {
  opacity: 1;
  transform: scale(1);
  animation: hoverSceneRing 0.6s linear both;
}
@keyframes hoverSceneRing {
  from {
    rotate: -90deg;
    opacity: 0.3;
  }
  to {
    rotate: 270deg;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-shuffle.hover-armed:after,
  .home-dots > button.hover-armed:after {
    animation: none;
    opacity: 1;
  }
}

/* Hold anywhere on the stage; dragging remains available. */
.screen-hold-ring {
  display: none;
  position: fixed;
  z-index: 12;
  left: var(--hold-x);
  top: var(--hold-y);
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border: 2px solid #ffffff40;
  border-top-color: var(--scene-ink);
  border-right-color: var(--scene-ink);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 0 7px #00000015;
}
.home-experience.hover-armed > .screen-hold-ring {
  display: block;
  animation: screenHoldProgress 0.6s linear both;
}
@keyframes screenHoldProgress {
  from {
    transform: rotate(-90deg) scale(0.7);
    opacity: 0.5;
  }
  to {
    transform: rotate(270deg) scale(1);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-experience.hover-armed > .screen-hold-ring {
    animation: none;
  }
}

/* Remove the center heading and shuffle control from the visible interface. */
.home-title-wrap,
.home-shuffle {
  display: none !important;
}

/* Full-screen destination menu */
.site-header .header-actions {
  margin-left: auto;
}
.site-header .menu-button {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 56px;
  height: 56px;
  padding: 15px;
  border: 1px solid #ffffff65;
  border-radius: 14px;
  background: #ffffff15;
  backdrop-filter: blur(14px);
}
.site-header .menu-button span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
}
#journey-menu.immersive-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #f2eedf;
  color: #253e35;
  z-index: 9000;
  overflow: auto;
  box-shadow: none;
  backdrop-filter: none;
  display: block;
  font-family: Euclid, Arial, sans-serif;
}
#journey-menu[hidden] {
  display: none !important;
}
.menu-top {
  display: flex;
  justify-content: space-between;
  gap: 8vw;
  padding: 60px 9vw 36px;
  min-height: 48vh;
}
.menu-brand {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.2;
}
.menu-brand > span {
  font-size: 11px;
  letter-spacing: 1px;
  border: 1px solid #8e9b87;
  padding: 5px 7px;
  border-radius: 5px;
  vertical-align: middle;
  margin-left: 10px;
}
.menu-brand p {
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #839080;
  margin-top: 18px;
}
.menu-links {
  width: 43%;
  max-width: 500px;
}
.menu-eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: #81917f;
  margin-bottom: 14px;
}
#journey-menu .menu-links button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid #253e3520;
  border-radius: 0;
  color: #253e35;
  font:
    400 clamp(23px, 2.8vw, 40px) / 1.4 Euclid,
    Arial,
    sans-serif;
  text-align: left;
  transition:
    padding 0.3s,
    color 0.3s;
}
#journey-menu .menu-links button:hover {
  padding-left: 12px;
  color: #738661;
}
.menu-links button small {
  font-size: 10px;
  margin-right: 20px;
  color: #8b987f;
}
.menu-links button > span {
  margin-left: auto;
  font-size: 24px;
}
#journey-menu .menu-dismiss {
  position: absolute;
  right: 25px;
  top: 23px;
  width: 43px;
  height: 43px;
  border: 1px solid #253e3530;
  border-radius: 50%;
  background: none;
  color: #253e35;
  font: 300 30px/1 Arial;
}
.menu-gallery {
  overflow: hidden;
  padding-top: 15px;
}
.menu-gallery-heading {
  display: flex;
  justify-content: space-between;
  padding: 0 9vw 18px;
  font-size: 9px;
  letter-spacing: 2px;
  color: #7a896f;
}
.menu-film {
  display: flex;
  width: max-content;
  animation: menu-drift 65s linear infinite;
  will-change: transform;
}
.menu-film-group {
  display: flex;
  gap: 22px;
  padding-right: 22px;
  flex-shrink: 0;
}
.menu-destination {
  position: relative;
  margin: 0;
  width: 29vw;
  min-width: 240px;
  height: 29vh;
  min-height: 180px;
  overflow: hidden;
  border-radius: 5px;
}
.menu-destination img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-destination:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, #102a245c);
}
.menu-destination figcaption {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 23px;
  color: #fff;
}
.menu-destination figcaption span {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.menu-destination strong {
  font-size: 28px;
  font-weight: 400;
}
.menu-foot {
  padding: 24px 9vw;
  color: #85917e;
  font-size: 10px;
  letter-spacing: 0.5px;
}
@keyframes menu-drift {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@media (max-width: 700px) {
  .menu-top {
    padding: 70px 7vw 20px;
    display: block;
  }
  .menu-brand {
    font-size: 34px;
  }
  .menu-brand p {
    margin-top: 8px;
  }
  .menu-links {
    width: 100%;
    margin-top: 28px;
  }
  .menu-gallery-heading {
    padding: 0 7vw 15px;
  }
  .menu-gallery-heading span:last-child {
    display: none;
  }
  .menu-destination {
    width: 65vw;
    height: 24vh;
  }
  .menu-foot {
    padding: 20px 7vw;
  }
}
/* Lower the image slightly within its crop to reveal the pass. */
img[src*="ma-pi-leng.jpg"] {
  object-position: center 95%;
}

.home-dots::before {
  left: var(--dot-edge, 8.333%);
  right: var(--dot-edge, 8.333%);
}
/* Use the destination dots as the visible scene navigation. */
.home-arrows {
  display: none !important;
}
/* Center scene dots independently of the instruction text. */
.home-bottom {
  justify-content: center;
}
.home-bottom .home-dots {
  flex: 0 1 530px;
  width: 100%;
  margin: 0;
}
.home-bottom .home-instruction {
  position: absolute;
  left: 0;
  bottom: 64px;
}
