:root {
  --paper: #ffffff;
  --ink: #10130f;
  --muted: #70695f;
  --violet: #1a002e;
  --violet-light: #b894e0;
  --white: #fffaf0;
  --glacial: "Glacial Indifference", system-ui, sans-serif;
  --sans: var(--glacial);
  --serif: "Italiana", Georgia, "Times New Roman", serif;
}

@font-face {
  font-family: "Glacial Indifference";
  src: url("fonts/GlacialIndifference-Regular.woff2") format("woff2"),
    url("fonts/GlacialIndifference-Regular.woff") format("woff"),
    url("fonts/GlacialIndifference-Regular.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: clip;
  max-width: 100%;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
  background: var(--violet);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 100;
  line-height: 1.55;
}

button,
input,
textarea {
  font-weight: 100;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

html.lightbox-is-open,
body.lightbox-is-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.lightbox-is-closing .discover .facility img,
body.lightbox-is-closing .story-panel__slide img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

@media (forced-colors: active) {
:focus-visible {
    outline: 2px solid CanvasText;
  }}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

img.is-zoomable {
  cursor: zoom-in;
}

.skip-link {
  position: absolute;
  z-index: 100;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noscript-banner {
  position: relative;
  z-index: 40;
  margin: 0;
  padding: 16px 7vw;
  background: var(--violet);
  color: var(--paper);
}

.pin-spacer {
  max-width: 100% !important;
}

.editorial-image {
  --editorial-grain-opacity: 0.025;
  overflow: hidden;
  isolation: isolate;
}

.editorial-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.editorial-image img {
  filter: saturate(0.82) contrast(1.12) brightness(0.92);
}

.editorial-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(110, 70, 40, 0.06);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.editorial-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: var(--editorial-grain-opacity);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 232ms ease, color 291ms ease;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--violet);
  animation: loader-out 1035ms ease 1.21s both;
}

.loader.is-hidden {
  display: none;
  pointer-events: none;
}

.loader picture {
  display: contents;
}

.loader__logo {
  width: clamp(64px, 8vw, 110px);
  height: auto;
  object-fit: contain;
  filter: invert(1);
  margin-bottom: 24px;
}

.loader__line {
  position: relative;
  align-self: stretch;
  height: 1px;
  transform-origin: left;
  background: rgba(244, 239, 230, 0.45);
  animation: loader-line-in 1035ms ease both;
}

@keyframes loader-line-in {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes loader-out {
  to {
    transform: translateY(-100%);
    pointer-events: none;
    visibility: hidden;
  }
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.6vh 2.2vw 0;
  color: var(--ink);
  pointer-events: none;
  mix-blend-mode: difference;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    opacity 464ms ease,
    visibility 464ms ease,
    transform 541ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-past-hero .brand {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.brand picture {
  display: contents;
}

.brand img {
  width: 97px;
  height: 97px;
  object-fit: contain;
  opacity: 1;
  filter: invert(1);
}

.brand span {
  display: none;
}

.book-link {
  position: fixed;
  z-index: 32;
  top: 50%;
  right: 0;
  display: grid;
  place-items: center;
  min-width: 150px;
  min-height: 74px;
  padding: 12px 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(-50% - 18px));
  font-family: var(--serif);
  font-size: clamp(18px, 1.1vw, 24px);
  font-weight: 500;
  pointer-events: none;
  transition:
    opacity 464ms ease,
    visibility 464ms ease,
    transform 541ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-past-hero .book-link {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%);
}

body.is-past-hero.is-in-book-flow .book-link {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(-50% - 18px));
}

.book-link__label {
  display: inline-block;
  color: var(--paper);
}

body.is-past-hero .book-link:hover,
body.is-past-hero .book-link:focus-visible {
  transform: translateY(-50%) translateX(-2px);
}

.hero :focus-visible,
.qualities :focus-visible,
.discover :focus-visible,
.address :focus-visible,
.footer :focus-visible,
.carousel :focus-visible,
.lightbox :focus-visible,
.sign:focus-visible {
  outline-color: rgba(244, 239, 230, 0.9);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  padding: 0;
  background: var(--violet);
  color: var(--paper);
}

.hero__media {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  transform: none;
}

.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: center center;
  opacity: 0.8;
}

.hero__copy {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(88%, 900px);
  color: var(--paper);
  text-align: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 28px rgba(16, 19, 15, 0.38);
}

.hero__copy h1 {
  display: table;
  width: max-content;
  margin: 10px auto 4px;
  font-family: var(--serif);
  font-size: clamp(72px, 11.55vw, 195px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.045em;
}

.hero__copy p {
  display: table;
  width: max-content;
  max-width: 100%;
  margin: 18px auto 0;
  font-family: var(--sans);
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
  white-space: nowrap;
}

.language-switch {
  position: fixed;
  top: 18px;
  right: clamp(14px, 3vw, 42px);
  z-index: 10000;
  width: max-content;
  max-width: calc(100vw - 48px);
  display: inline-flex;
  align-items: center;
  gap: 0;
  isolation: isolate;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: auto;
}

.language-switch a {
  position: relative;
  z-index: 1;
  min-width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(26, 0, 46, 0.42);
  color: #fff;
  line-height: 1;
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.language-switch a + a {
  margin-left: -1px;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  opacity: 1;
}

.language-switch a[aria-current="page"] {
  color: var(--violet);
  background: var(--paper);
  border-color: var(--paper);
  opacity: 1;
}

.access__panel a:hover,
.access__panel a:focus-visible {
  opacity: 0.72;
}

.access__text {
  position: relative;
  z-index: 4;
}

.qualities {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  overflow: clip;
  display: grid;
  place-items: center;
  background: var(--violet);
  color: var(--paper);
}

.story-panel__slides,
.story-panel__shade {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(69.6vw, 1080px);
  height: min(98.4svh, 1032px);
  aspect-ratio: 9 / 13;
  translate: -50% -50%;
}

.story-panel__slides {
  overflow: hidden;
}

.story-panel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 0 100%);
}

.story-panel__slide.is-active {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0);
}

.story-panel__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.story-panel__slide img {
  transform: scale(1.06);
  transform-origin: center;
}

.qualities .editorial-image {
  --editorial-grain-opacity: 0.055;
}

.qualities .editorial-image img {
  filter: saturate(0.88) contrast(1.08) brightness(1.08);
}

.qualities .editorial-image::before {
  background: rgba(110, 70, 40, 0.12);
}

.story-panel__shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 19, 15, 0.1), rgba(16, 19, 15, 0.46));
}

.story-panel__title {
  position: relative;
  z-index: 2;
  justify-self: start;
  width: 88%;
  margin: 0 0 0 6vw;
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 10.6vw, 190px);
  letter-spacing: -0.055em;
  line-height: 0.77;
  text-align: left;
  text-shadow: 0 4px 36px rgba(16, 19, 15, 0.25);
}

.story-panel__title span {
  display: block;
}

.story-panel__title span:nth-child(2) {
  padding-left: 12vw;
  font-size: 0.72em;
}

.story-panel__title span:nth-child(3) {
  position: relative;
  top: -0.1em;
  padding-left: 4vw;
  font-size: 1.55em;
}

.story-panel__counter {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 4vh;
  width: clamp(80px, 12vw, 160px);
  transform: translateX(-50%);
}

.story-panel__counter i {
  display: block;
  height: 1px;
  background: rgba(244, 239, 230, 0.55);
  transform: scaleX(0.333);
  transform-origin: left;
}

h2,
p {
  margin-top: 0;
}

h2 {
  position: relative;
  z-index: 3;
  font-family: var(--serif);
  font-size: clamp(42px, 7.5vw, 112px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  right: auto;
  bottom: clamp(28px, 6vh, 72px);
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
  font-family: var(--serif);
  font-size: clamp(10px, 0.9vw, 15px);
  color: var(--paper);
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition:
    opacity 520ms ease,
    visibility 520ms ease;
}

body.is-hero-scrolled .scroll-cue,
body.is-past-hero .scroll-cue {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-cue__dot {
  width: clamp(24px, 1.4vw, 29px);
  height: clamp(24px, 1.4vw, 29px);
  border-radius: 50%;
  background: var(--paper);
  transform-origin: center;
  animation: scroll-dot-pulse 1093ms ease-in-out infinite alternate;
}

@keyframes scroll-dot-pulse {
  to {
    transform: scale(0.86);
  }
}

.split-lines {
  position: relative;
  z-index: 3;
  overflow: visible;
  padding: 0.16em 0.08em;
  margin-inline: -0.08em;
}

.line-mask {
  display: block;
  overflow: visible;
  padding: 0.12em 0.08em;
  margin: -0.06em -0.08em;
}

.line-mask > span {
  display: block;
  overflow: visible;
  will-change: transform;
}

.image-mask {
  overflow: hidden;
  clip-path: inset(0);
}

.image-mask picture {
  display: block;
  width: 100%;
  height: 100%;
}

.discover .facility img {
  transition: none;
  transform-origin: center center;
}

@supports (animation-timeline: view()) {

.line-mask > span {
    opacity: 0;
    transform: translateY(112%);
    animation: line-reveal-out 1208ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }

.image-mask {
    clip-path: inset(0 0 18% 0);
    animation: image-mask-open linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 38%;
  }

.qualities,
.discover,
.address,
.book,
.carousel,
.footer {
    isolation: isolate;
    background-color: transparent;
  }

.carousel {
    position: relative;
  }

.qualities::before,
.discover::before,
.address::before,
.book::before,
.carousel::before,
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background: var(--violet);
    animation: section-bg-in-out linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }

.book > *,
.carousel > *,
.address > * {
    position: relative;
    z-index: 1;
  }}

@keyframes line-reveal-out {
  0% {
    opacity: 0;
    transform: translateY(112%);
  }

  18% {
    opacity: 1;
    transform: translateY(0);
  }

  82% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-112%);
  }
}

@keyframes image-mask-open {
  to {
    clip-path: inset(0);
  }
}

@keyframes section-bg-in-out {
  0% {
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.discover,
.address {
  position: relative;
}

.discover {
  min-height: 130svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--violet);
  color: var(--paper);
}

.facility-grid {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: min(100%, 1600px);
  pointer-events: none;
  transform: translateX(-50%);
}

.facility {
  position: absolute;
  display: block;
  pointer-events: auto;
  width: min(36vw, 560px);
  height: min(70vh, 760px);
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: zoom-in;
}

.facility:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.86);
  outline-offset: 4px;
  box-shadow: 0 0 0 1px rgba(16, 19, 15, 0.28);
}

.facility:nth-child(1) {
  left: clamp(580px, 59vw, 980px);
  top: 12vh;
  width: min(33vw, 572px);
  height: min(63.8vh, 704px);
}

.facility:nth-child(2) {
  left: clamp(60px, 8vw, 150px);
  top: 15vh;
  width: min(29.7vw, 484px);
  height: min(46.2vh, 528px);
}

.facility:nth-child(3) {
  left: clamp(450px, 39vw, 660px);
  top: 83vh;
  width: min(30vw, 504px);
  height: min(42.24vh, 462px);
}

.facility:nth-child(4) {
  left: clamp(70px, 8vw, 150px);
  top: 67vh;
  width: min(29.04vw, 475px);
  height: min(39.6vh, 436px);
}

.facility:nth-child(5) {
  left: clamp(760px, 72vw, 1240px);
  top: 79vh;
  width: min(24vw, 400px);
  height: min(44.88vh, 475px);
}

.facility span {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
  color: var(--white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.address {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.52fr);
  gap: 8vw;
  align-items: center;
  padding: 12vh 7vw 8vh;
  background: var(--violet);
  color: var(--paper);
}

.access__text h2,
.reservation__head h2 {
  max-width: none;
  font-size: clamp(72px, 9.5vw, 176px);
  line-height: 0.76;
  color: var(--paper);
}

.access__panel {
  border-top: 1px solid rgba(244, 239, 230, 0.28);
}

dl {
  margin: 0;
}

.access__panel div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.28);
}

dt {
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.footer {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 7vw 46px;
  background: var(--violet);
  color: var(--paper);
}

.carousel {
  overflow: hidden;
  background: var(--violet);
  color: var(--violet-light);
}

.marquee {
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: carousel-marquee 58s linear infinite;
  will-change: transform;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 1.8em;
  padding: clamp(28px, 5vw, 76px) 0;
  padding-right: 1.8em;
}

.marquee__group span {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: clamp(34px, 5.525vw, 92px);
  font-weight: 500;
  line-height: 0.92;
  white-space: nowrap;
}

@keyframes carousel-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.book-stage {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: min(69.6vw, 1080px);
  height: min(98.4svh, 1032px);
  max-height: 98.4svh;
  margin: auto;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 9 / 13;
  pointer-events: none;
}

.book__image {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
}

.book__shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 19, 15, 0.1), rgba(16, 19, 15, 0.46));
}

.book__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.book__title {
  position: absolute;
  z-index: 3;
  left: 6vw;
  top: 50%;
  width: 88%;
  margin: 0;
  color: var(--paper);
  font-size: clamp(90px, 11vw, 210px);
  line-height: 0.86;
  text-align: left;
  text-shadow: 0 4px 36px rgba(16, 19, 15, 0.25);
  transform: translateY(-50%);
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
}

.reservation-button {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(244, 239, 230, 0.3);
  padding: 0 18px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  text-align: center;
  transition: background 309ms ease, border-color 309ms ease, color 309ms ease;
}

.reservation-button:hover,
.reservation-button:focus-visible {
  border-color: rgba(244, 239, 230, 0.55);
  background: rgba(244, 239, 230, 0.08);
}

.book {
  position: relative;
  padding: clamp(96px, 16vh, 168px) 7vw clamp(72px, 12vh, 132px);
  background: var(--violet);
  color: var(--paper);
}

.reservation__head {
  max-width: 62ch;
  margin-bottom: clamp(48px, 7vh, 84px);
}

.reservation__head p {
  color: var(--paper);
}

.reservation-form {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(18px, 2.6vw, 32px);
  background: rgba(0, 0, 0, 0.2);
}

.reservation-form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
}

.reservation-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reservation-form label > span,
.reservation-form__message > span {
  color: var(--paper);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  padding: 8px 2px;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
  transition: border-color 309ms ease;
}

.reservation-form textarea {
  min-height: 52px;
  resize: vertical;
}

.reservation-form input:focus-visible,
.reservation-form textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--paper);
}

.reservation-form__note {
  margin: 4px 0 0;
  color: var(--paper);
}

.reservation-form__status {
  margin: 0;
  color: var(--paper);
}

.reservation-whatsapp {
  display: grid;
  gap: 12px;
}

.reservation-whatsapp[hidden] {
  display: none;
}

.reservation-whatsapp__label {
  margin: 0;
  color: var(--paper);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reservation-whatsapp__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reservation-whatsapp__list .reservation-button {
  width: auto;
  flex: 1 1 220px;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px 18px;
  max-width: 880px;
  margin: 14px auto 0;
}

.platforms__label {
  margin: 0;
  color: var(--paper);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.platform {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid rgba(244, 239, 230, 0.3);
  color: var(--paper);
  letter-spacing: 0.02em;
  text-align: center;
  transition: border-color 309ms ease, background 309ms ease;
}

.platform:hover,
.platform:focus-visible {
  border-color: var(--paper);
  background: rgba(244, 239, 230, 0.08);
}

.reservation-form input[data-date-picker] {
  cursor: pointer;
}

.date-picker {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 500;
  width: min(560px, calc(100% - 24px));
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(16, 19, 15, 0.14);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(7, 8, 6, 0.28);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

.date-picker.is-open {
  opacity: 1;
}

.date-picker.is-closing {
  opacity: 0;
  pointer-events: none;
}

.date-picker__close {
  position: absolute;
  top: -54px;
  right: 0;
  min-height: 44px;
  padding: 8px 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 16px;
}

.date-picker__header {
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.date-picker__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1;
  text-align: center;
}

.date-picker__heading {
  display: grid;
  gap: 8px;
  text-align: center;
}

.date-picker__step {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.date-picker__nav {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(16, 19, 15, 0.16);
  border-radius: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 26px;
}

.date-picker__nav:hover,
.date-picker__nav:focus-visible {
  border-color: var(--ink);
}

.date-picker__weekdays,
.date-picker__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.date-picker__weekdays {
  margin-bottom: 8px;
  color: var(--muted);
  text-align: center;
}

.date-picker__day {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 56px;
  padding: 12px 6px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  box-shadow: none;
}

.date-picker__day:hover,
.date-picker__day:focus-visible,
.date-picker__day.is-selected {
  background: var(--ink);
  color: var(--paper);
}

.date-picker__day.is-today {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.date-picker__day.is-arrival,
.date-picker__day.is-departure,
.date-picker__day:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.date-picker__day.is-today.is-selected,
.date-picker__day.is-today:hover,
.date-picker__day.is-today:focus-visible {
  outline-color: var(--paper);
}

.date-picker__day.is-outside {
  color: rgba(16, 19, 15, 0.32);
}

.date-picker__day:disabled {
  color: rgba(16, 19, 15, 0.2);
  cursor: default;
}

body.date-picker-is-open {
  overflow: hidden;
}

body.date-picker-is-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 499;
  background: rgba(16, 19, 15, 0.35);
  backdrop-filter: blur(6px);
  pointer-events: none;
  animation: date-picker-backdrop-in 0.4s ease both;
}

body.date-picker-is-open.date-picker-is-closing::after {
  animation: date-picker-backdrop-out 0.4s ease both;
}

@keyframes date-picker-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes date-picker-backdrop-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@media (max-width: 600px) {
.date-picker__day {
    min-height: 44px;
    padding: 8px 3px;
  }}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 0;
  color: var(--paper);
  background: rgb(26 0 46 / 62%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: zoom-out;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__stage {
  position: relative;
  display: grid;
  width: min(100%, 92rem);
  height: min(100%, 92svh);
  place-items: center;
}

.lightbox__image {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 5rem);
  max-height: calc(100% - 5.5rem);
  object-fit: contain;
  cursor: zoom-out;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition:
    opacity 0.26s ease,
    transform 0.26s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lightbox__image.is-swapping {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
}

.lightbox__close,
.lightbox__previous,
.lightbox__next {
  position: absolute;
  z-index: 2;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox__close {
  top: 0;
  right: 0;
  min-height: 44px;
  padding: 1rem;
}

.lightbox__previous,
.lightbox__next {
  top: 50%;
  min-width: 44px;
  min-height: 44px;
  padding: 2rem 1rem;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox__previous {
  left: 0;
}

.lightbox__next {
  right: 0;
}

.lightbox__close:hover,
.lightbox__previous:hover,
.lightbox__next:hover,
.lightbox__close:focus-visible,
.lightbox__previous:focus-visible,
.lightbox__next:focus-visible {
  opacity: 0.72;
}

.lightbox__caption {
  position: absolute;
  right: 4.2rem;
  bottom: 0;
  left: 4.2rem;
  margin: 0;
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 600px) {
.lightbox__image {
    max-width: calc(100% - 2.4rem);
  }

.lightbox__previous,
.lightbox__next {
    padding-inline: 0.35rem;
  }

.lightbox__caption {
    right: 2.6rem;
    left: 2.6rem;
  }
}

.sign {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% + 14vw);
  margin-block: auto -46px;
  margin-inline: -7vw;
  padding: 18px 0 34px;
  padding-left: clamp(22px, 7vw, 96px);
  color: var(--paper);
}

.sign-trigger {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 61px);
  font-weight: 400;
  line-height: 0.72;
  color: currentColor;
  cursor: pointer;
  transition: color 361ms ease;
  user-select: none;
}

.sign:hover .sign-trigger,
.sign:focus-visible .sign-trigger {
  color: var(--ink);
}

.sign-hover-card {
  position: absolute;
  left: clamp(22px, 7vw, 96px);
  right: auto;
  bottom: calc(100% + 10px);
  width: 150px;
  min-height: 150px;
  padding: 13px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.08;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 14px, 0) scale(0.92);
  transform-origin: left bottom;
  transition: opacity 489ms ease, visibility 489ms ease, transform 618ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sign:hover .sign-hover-card,
.sign:focus-visible .sign-hover-card {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (min-width: 901px) and (max-width: 1023px) {
.discover {
    min-height: 180svh;
  }

.facility:nth-child(5) {
    left: clamp(650px, 68vw, 700px);
    top: 132vh;
  }}

@media (max-width: 900px) {

body {
    font-size: 10.88px;
  }

.qualities {
    min-height: 100svh;
  }

.story-panel__slides,
.story-panel__shade {
    width: min(86vw, 640px);
    height: min(58svh, 560px);
  }

.story-panel__title {
    justify-self: start;
    width: calc(100% - 36px);
    margin-left: 18px;
    font-size: clamp(48px, 14.5vw, 96px);
    line-height: 0.82;
  }

.story-panel__title span:nth-child(2) {
    padding-left: 11vw;
  }

.story-panel__title span:nth-child(3) {
    padding-left: 3vw;
  }

.footer {
    height: 100dvh;
    min-height: 100dvh;
  }

.site-header {
    grid-template-columns: 1fr auto;
    padding: 10px 12px;
  }

.hero__media {
    height: 100dvh;
  }

.hero__copy {
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    padding-inline: 16px;
    text-align: center;
    transform: translateY(-50%);
  }

.hero__copy h1 {
    font-size: clamp(52px, calc((100vw - 48px) / 4.25), 86px);
  }

.hero__copy h1,
.hero__copy p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

.scroll-cue {
    bottom: 34px;
  }

.discover,
.address {
    padding: 0 22px;
  }

.discover {
    min-height: 200svh;
  }

.address {
    grid-template-columns: 1fr;
    padding-top: 86px;
    padding-bottom: 64px;
  }

.access__text h2,
.reservation__head h2 {
    font-size: clamp(46px, 17vw, 86px);
    line-height: 0.7;
    white-space: normal;
  }

.book-stage {
    width: min(100%, 720px);
    height: min(91.2dvh, 864px);
    max-height: 91.2dvh;
  }

.marquee__group span {
    font-size: clamp(27px, 8.45vw, 56px);
  }

.book__title {
    left: 18px;
    width: calc(100% - 36px);
    font-size: clamp(44px, 12vw, 96px);
  }

.facility-grid {
    left: 0;
    width: 100%;
    transform: none;
  }

.facility:nth-child(1) {
    left: 50vw;
    top: 18vh;
    width: 42vw;
    height: 40vh;
  }

.facility:nth-child(2) {
    left: 6vw;
    top: 10vh;
    width: 36vw;
    height: 34vh;
  }

.facility:nth-child(3) {
    left: 8vw;
    top: 58vh;
    width: 57.6vw;
    height: 36vh;
  }

.facility:nth-child(4) {
    left: 41.6vw;
    top: 104vh;
    width: 50.4vw;
    height: 36vh;
  }

.facility:nth-child(5) {
    left: 8vw;
    top: 154vh;
    width: 57.6vw;
    height: 36vh;
  }

.book-link {
    min-width: 118px;
    min-height: 58px;
    padding: 8px 12px;
    font-size: 14px;
  }}

@media (max-width: 560px) {
html {
    scroll-padding-top: 84px;
  }

.site-header {
    padding: 8px 10px 0;
  }

.brand img {
    width: 70px;
    height: 70px;
  }

.book-link {
    min-width: 112px;
    min-height: 48px;
    padding: 7px 9px;
    font-size: 12px;
  }

.language-switch {
    top: 14px;
    right: 12px;
    max-width: calc(100vw - 24px);
    font-size: 7px;
    letter-spacing: 0.1em;
  }

.language-switch a {
    min-width: 31px;
    height: 25px;
  }

h2 {
    font-size: clamp(38px, 14vw, 68px);
  }

.hero__copy p {
    margin-top: 12px;
  }

.scroll-cue {
    bottom: 30px;
    min-width: 44px;
    min-height: 44px;
  }

.discover {
    min-height: 162svh;
  }

.facility:nth-child(1) {
    left: 48vw;
    top: 10vh;
    width: 42vw;
    height: 34vh;
  }

.facility:nth-child(2) {
    left: 7vw;
    top: 6vh;
    width: 38vw;
    height: 28vh;
  }

.facility:nth-child(3) {
    left: 8vw;
    top: 45vh;
    width: 57.6vw;
    height: 34.8vh;
  }

.facility:nth-child(4) {
    left: 41.6vw;
    top: 81.8vh;
    width: 50.4vw;
    height: 33.6vh;
  }

.facility:nth-child(5) {
    left: 8vw;
    top: 119.4vh;
    width: 62.4vw;
    height: 37.2vh;
  }

.facility span {
    left: 14px;
    bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

.access__text h2,
.reservation__head h2 {
    font-size: clamp(42px, 13vw, 72px);
    line-height: 0.86;
  }

.book-stage {
    width: min(100%, 552px);
    height: min(91.2dvh, 720px);
    max-height: 91.2dvh;
  }

.marquee__track {
    animation-duration: 47s;
  }

.marquee__group {
    padding: 34px 0;
    padding-right: 1.8em;
  }

.marquee__group span {
    font-size: clamp(25px, 8.45vw, 44px);
  }

.book__title {
    font-size: clamp(40px, 12vw, 68px);
    line-height: 0.9;
  }

.access__panel div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

.book {
    padding-inline: 22px;
  }

.reservation-form__row {
    grid-template-columns: 1fr;
  }

.platforms {
    flex-wrap: nowrap;
  }
}

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

*,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

.loader {
    display: none !important;
  }

.reveal,
.image-mask,
.line-mask > span,
.facility {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

.qualities::before,
.discover::before,
.address::before,
.book::before,
.carousel::before,
.footer::before {
    opacity: 1 !important;
    animation: none !important;
  }

.marquee__track {
    animation: none !important;
    transform: none !important;
  }

.discover .facility img {
    transform: none !important;
    scale: 1 !important;
    will-change: auto !important;
  }

.story-panel__slides,
.story-panel__slide,
.story-panel__slide img,
.story-panel__title span {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

.hero__copy {
    opacity: 1 !important;
    clip-path: none !important;
  }}