:root {
  --ink: #17191f;
  --cream: #eee8dc;
  --paper: #f5f1e8;
  --gold: #bd9a58;
  --gold-soft: #d5c39e;
  --wine: #32111f;
  --sage: #becac3;
  --serif: "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --script: "Snell Roundhand", "Segoe Script", cursive;
  --pad: clamp(24px, 4.5vw, 72px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { color: inherit; font: inherit; }

::selection { color: var(--cream); background: var(--wine); }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  color: var(--paper);
  background: var(--wine);
  transition: clip-path 1.15s var(--ease), visibility 1.15s;
  clip-path: inset(0 0 0 0);
}

.preloader.is-finished {
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}

.preloader__word {
  display: flex;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: .8;
  text-transform: uppercase;
}

.preloader__word span {
  display: block;
  opacity: 0;
  transform: translateY(70%);
  animation: loaderLetter .7s var(--ease) forwards;
}

.preloader__word span:nth-child(2) { animation-delay: .05s; }
.preloader__word span:nth-child(3) { animation-delay: .1s; }
.preloader__word span:nth-child(4) { animation-delay: .15s; }
.preloader__word span:nth-child(5) { animation-delay: .2s; }
.preloader__word span:nth-child(6) { animation-delay: .25s; }

.preloader__line {
  width: min(420px, 64vw);
  height: 1px;
  margin: 38px auto 18px;
  overflow: hidden;
  background: rgb(255 255 255 / 20%);
}

.preloader__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--paper);
  transform-origin: left;
  animation: loaderLine 1.4s .2s var(--ease) both;
}

.preloader p {
  margin: 0;
  text-align: center;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}

@keyframes loaderLetter { to { opacity: 1; transform: translateY(0); } }
@keyframes loaderLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.cursor {
  position: fixed;
  z-index: 9998;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  pointer-events: none;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #fff;
  opacity: 0;
  mix-blend-mode: difference;
  transition: width .3s, height .3s, opacity .3s;
  transform: translate3d(-50%, -50%, 0);
}

.cursor::before,
.cursor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.cursor::before { width: 9px; height: 1px; }
.cursor::after { width: 1px; height: 9px; }
.cursor.is-visible { opacity: .85; }
.cursor.is-large { width: 58px; height: 58px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 34px var(--pad);
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
}

.site-header a,
.site-header button { pointer-events: auto; }

.seal {
  position: absolute;
  left: var(--pad);
  top: 28px;
  width: 94px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.seal__ring {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 50%;
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-align: center;
  line-height: 1.8;
  animation: rotateSeal 18s linear infinite;
}

.seal__mark {
  font-family: var(--serif);
  font-size: 2.15rem;
  font-style: italic;
}

@keyframes rotateSeal { to { transform: rotate(360deg); } }

.desktop-nav {
  position: absolute;
  right: var(--pad);
  top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-transform: uppercase;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .28em;
}

.desktop-nav a { position: relative; padding-block: 2px; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: .28em;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.desktop-nav .nav-primary {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.03em;
  text-align: right;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  text-transform: uppercase;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 12vh var(--pad) 7vh;
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  align-items: end;
  color: var(--cream);
  background: var(--ink);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .9s var(--ease), visibility .9s;
}

.menu.is-open { clip-path: inset(0); visibility: visible; }
.menu__eyebrow,
.menu__address { font-size: .62rem; line-height: 1.6; letter-spacing: .2em; text-transform: uppercase; }
.menu nav { display: flex; flex-direction: column; }
.menu nav a { font-family: var(--serif); font-size: clamp(3.8rem, 8vw, 8rem); line-height: .85; text-transform: uppercase; }
.menu nav a span { display: inline-block; width: 44px; font-family: var(--sans); font-size: .62rem; letter-spacing: .15em; vertical-align: top; }

.scroll-rail {
  position: fixed;
  z-index: 80;
  left: calc(var(--pad) + 41px);
  bottom: 42px;
  height: min(46vh, 420px);
  color: #fff;
  mix-blend-mode: difference;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.scroll-rail__number { font-size: .58rem; font-weight: 700; }
.scroll-rail i { position: relative; flex: 1; width: 1px; overflow: hidden; background: rgb(255 255 255 / 28%); }
.scroll-rail i b { display: block; width: 100%; height: 100%; background: #fff; transform-origin: top; transform: scaleY(0); }
.scroll-rail small { writing-mode: vertical-rl; transform: rotate(180deg); font-size: .54rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; }
.scroll-rail__arrow { font-size: 1.05rem; font-weight: 200; }

.sticky-frame { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.scroll-scene { position: relative; }
.hero { height: 470svh; color: #fff; background: var(--wine); }

.hero__media,
.hero__shade { position: absolute; inset: 0; }
.hero__media { will-change: transform, filter; }
.hero__media img { height: 100%; object-fit: cover; transform: scale(1.04); }
.hero__shade { background: linear-gradient(180deg, rgb(10 8 14 / 12%), rgb(10 8 14 / 26%)); }

.hero__title {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 42%;
  width: min(820px, 65vw);
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.hero__title-top,
.hero__title-bottom { display: block; font-family: var(--serif); line-height: .72; letter-spacing: -.055em; }
.hero__title-top { font-size: clamp(7rem, 13.5vw, 13.5rem); }
.hero__title-bottom { font-size: clamp(5.8rem, 11.5vw, 11.5rem); }
.hero__script {
  position: absolute;
  left: 50%;
  top: 72%;
  white-space: nowrap;
  font-family: var(--script);
  font-size: clamp(3.5rem, 7vw, 7.4rem);
  font-weight: 400;
  text-transform: none;
  transform: translateX(-50%) rotate(-7deg);
}

.hero__phrase {
  position: absolute;
  z-index: 2;
  top: 64%;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.7rem);
  text-transform: uppercase;
}
.hero__phrase--left { left: 22%; }
.hero__phrase--right { right: 19%; }

.hero__switch {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 74%;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.hero__switch i { display: block; width: 44px; height: 1px; background: currentColor; }

.orbit-link {
  position: relative;
  width: 144px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  text-align: center;
  text-transform: uppercase;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .12em;
  transition: color .45s var(--ease), background .45s var(--ease), transform .45s var(--ease);
}
.orbit-link::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .26;
  transition: inset .45s var(--ease), opacity .45s;
}
.orbit-link:hover { color: var(--ink); background: var(--cream); transform: scale(1.04); }
.orbit-link:hover::after { inset: 2px; opacity: .5; }

.hero__cta {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 9%;
  opacity: 0;
  transform: translateX(-50%) translateY(30px);
  will-change: opacity, transform;
}

.hotspot { position: absolute; z-index: 2; width: 42px; aspect-ratio: 1; border: 1px solid #fff; border-radius: 50%; opacity: .75; }
.hotspot::before { content: ""; position: absolute; inset: 8px; border: 1px solid #fff; border-radius: 50%; animation: hotspot 2.2s ease-in-out infinite; }
.hotspot i { position: absolute; left: 50%; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: #fff; transform: translate(-50%, -50%); }
.hotspot--one { left: 26%; bottom: 18%; }
.hotspot--two { right: 25%; bottom: 12%; }
@keyframes hotspot { 50% { inset: 3px; opacity: .2; } }

.hero__portal {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: -125vw;
  width: 200vw;
  aspect-ratio: 1;
  display: grid;
  place-items: start center;
  padding-top: 28vw;
  color: var(--ink);
  background: var(--gold-soft);
  border-radius: 50%;
  transform: scale(.01) translateX(-50%);
  transform-origin: 50% 0;
  will-change: transform;
}
.hero__portal p { display: flex; gap: 24vw; margin: 0; font-family: var(--serif); font-size: clamp(1rem, 1.8vw, 2rem); text-transform: uppercase; }

.intro {
  position: relative;
  min-height: 110svh;
  padding: 14svh var(--pad) 10svh;
  background: var(--gold-soft);
  overflow: hidden;
}
.intro__arch {
  position: absolute;
  left: 50%;
  top: -15vw;
  width: min(92vw, 1280px);
  aspect-ratio: 2 / 1;
  border-top: 1px solid rgb(23 25 31 / 30%);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}
.intro__arch span { position: absolute; font-family: var(--serif); font-size: clamp(1rem, 2vw, 2rem); text-transform: uppercase; }
.intro__arch span:nth-child(1) { left: 15%; top: 21%; transform: rotate(-28deg); }
.intro__arch span:nth-child(2) { left: 34%; top: 6%; transform: rotate(-11deg); }
.intro__arch span:nth-child(3) { left: 49%; top: 1%; }
.intro__arch span:nth-child(4) { right: 27%; top: 8%; transform: rotate(14deg); }
.intro__arch span:nth-child(5) { right: 10%; top: 28%; transform: rotate(31deg); }
.intro__inner { width: min(960px, 78vw); margin: 20svh auto 0; text-align: center; }
.eyebrow { margin: 0 0 24px; font-size: .62rem; font-weight: 700; line-height: 1.4; letter-spacing: .25em; text-transform: uppercase; }
.intro h2,
.location h2,
.manifesto h2,
.concept h2,
.rooms h2,
.amenities h2,
.contact h2 { margin: 0; font-family: var(--serif); font-size: clamp(4.8rem, 12vw, 12rem); font-weight: 400; line-height: .75; letter-spacing: -.055em; text-transform: uppercase; }
h2 em { font-family: var(--script); font-weight: 400; text-transform: none; }
.intro__copy { width: min(460px, 90%); margin: 55px auto 0; font-size: clamp(1rem, 1.4vw, 1.3rem); line-height: 1.55; }

.location { height: 300svh; background: var(--gold-soft); }
.location__sticky { background: var(--gold-soft); }
.scene-index { position: absolute; left: var(--pad); top: 50%; margin: 0; font-size: .58rem; font-weight: 700; letter-spacing: .15em; }
.location__headline { position: absolute; z-index: 2; left: 15%; top: 10%; font-size: clamp(4.5rem, 9.5vw, 9.5rem) !important; will-change: transform, opacity; }
.location__image { position: absolute; left: 5%; right: 5%; bottom: 0; height: 72%; overflow: hidden; clip-path: inset(52% 25% 0 25% round 50% 50% 0 0); will-change: clip-path, transform; }
.location__image img { height: 100%; object-fit: cover; object-position: 50% 45%; transform: scale(1.18); will-change: transform; }
.location__note { position: absolute; z-index: 3; right: 7%; bottom: 9%; width: min(310px, 28vw); padding: 28px; color: var(--cream); background: var(--wine); opacity: 0; transform: translateY(35px); will-change: transform, opacity; }
.location__note p:last-child { margin: 0; font-size: .9rem; line-height: 1.55; }

.manifesto {
  min-height: 125svh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: stretch;
  color: var(--cream);
  background: var(--ink);
}
.manifesto__image { min-height: 125svh; overflow: hidden; }
.manifesto__image img { height: 115%; object-fit: cover; filter: saturate(.75); will-change: transform; }
.manifesto__copy { align-self: center; padding: 12vh var(--pad); }
.manifesto__copy h2 { font-size: clamp(4rem, 7vw, 8rem); }
.manifesto__copy > p:last-child { width: min(430px, 100%); margin: 60px 0 0 auto; font-size: 1.05rem; line-height: 1.65; }

.concept { height: 430svh; background: var(--paper); }
.concept__sticky { color: var(--ink); background: var(--paper); }
.concept__heading { position: absolute; z-index: 5; left: var(--pad); top: 12%; }
.concept__heading h2 { font-size: clamp(4rem, 7vw, 7.8rem); line-height: .82; }
.concept-card { position: absolute; width: min(28vw, 430px); margin: 0; will-change: transform, opacity; }
.concept-card img { aspect-ratio: 4 / 5; object-fit: cover; }
.concept-card > span { display: block; margin-top: 14px; font-size: .58rem; letter-spacing: .2em; }
.concept-card h3 { margin: 8px 0 0; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; text-transform: uppercase; }
.concept-card--one { left: 8%; top: 100%; }
.concept-card--two { left: 37%; top: 110%; }
.concept-card--three { right: 6%; top: 105%; }
.concept__footnote { position: absolute; right: var(--pad); bottom: 7%; margin: 0; font-family: var(--serif); font-size: 1.7rem; line-height: 1; text-transform: uppercase; text-align: right; opacity: 0; }

.rooms { height: 460svh; color: var(--cream); background: var(--wine); }
.rooms__sticky { background: var(--wine); }
.rooms__intro { position: absolute; z-index: 3; left: var(--pad); top: 11%; width: min(500px, 38vw); }
.rooms__intro h2 { font-size: clamp(5rem, 9vw, 10rem); }
.rooms__intro > p:last-child { width: min(360px, 100%); margin: 50px 0 0 auto; font-size: .95rem; line-height: 1.6; }
.rooms__track { position: absolute; left: 48vw; top: 13%; display: flex; gap: 7vw; padding-right: 12vw; will-change: transform; }
.room-card { flex: 0 0 min(42vw, 620px); }
.room-card__image { height: 62svh; overflow: hidden; background: #e6dfd6; }
.room-card__image img { height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.room-card:hover img { transform: scale(1.04); }
.room-card__body { position: relative; padding-top: 20px; }
.room-card__body span { font-size: .56rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.room-card__body h3 { margin: 6px 0 5px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4.5rem); font-weight: 400; line-height: .9; text-transform: uppercase; }
.room-card__body p { margin: 0; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.rooms__link { position: absolute; z-index: 5; left: var(--pad); bottom: 8%; }
.rooms__count { position: absolute; right: var(--pad); bottom: 7%; display: flex; align-items: center; gap: 12px; font-size: .6rem; }
.rooms__count i { width: 70px; height: 1px; background: rgb(255 255 255 / 35%); }
.rooms__count i::after { content: ""; display: block; width: var(--room-progress, 25%); height: 100%; background: #fff; transition: width .1s linear; }

.amenities { padding: 16svh var(--pad); background: var(--paper); }
.amenities__header { margin: 0 0 12svh 9vw; }
.amenities__header h2 { font-size: clamp(4.5rem, 9vw, 9.5rem); }
.amenities__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: start; }
.amenities__visual { position: sticky; top: 8svh; height: 84svh; overflow: hidden; margin: 0; }
.amenities__visual img { height: 110%; object-fit: cover; will-change: transform; }
.amenities__visual figcaption { position: absolute; left: 24px; bottom: 20px; padding: 10px 14px; color: var(--cream); background: var(--wine); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.amenities__list article { min-height: 34svh; padding: 4svh 0; border-top: 1px solid rgb(23 25 31 / 28%); }
.amenities__list article > span { font-size: .6rem; font-weight: 700; }
.amenities__list h3 { margin: 42px 0 18px; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.5rem); font-weight: 400; line-height: .88; text-transform: uppercase; }
.amenities__list p { width: min(390px, 90%); margin-left: auto; line-height: 1.55; }

.numbers { padding: 14svh var(--pad); background: var(--gold-soft); }
.numbers__grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 10svh; border-top: 1px solid rgb(23 25 31 / 32%); border-bottom: 1px solid rgb(23 25 31 / 32%); }
.numbers__grid article { min-height: 42svh; padding: 5vh 3vw; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgb(23 25 31 / 32%); }
.numbers__grid article:last-child { border: 0; }
.numbers strong { font-family: var(--serif); font-size: clamp(5rem, 10vw, 11rem); font-weight: 400; line-height: .8; }
.numbers sup { font-family: var(--sans); font-size: .18em; vertical-align: top; }
.numbers article span { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.numbers blockquote { width: min(990px, 82vw); margin: 18svh auto 4svh; font-family: var(--serif); font-size: clamp(2.7rem, 5.6vw, 6rem); line-height: .95; text-align: center; text-transform: uppercase; }
.numbers cite { display: block; margin-top: 40px; font-family: var(--sans); font-size: .62rem; font-style: normal; letter-spacing: .2em; text-transform: uppercase; }

.night { height: 250svh; color: #fff; background: #111; }
.night__sticky img { position: absolute; inset: -8%; width: 116%; height: 116%; object-fit: cover; image-rendering: auto; filter: saturate(.8) contrast(1.08); will-change: transform, filter; }
.night__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgb(9 8 12 / 20%), rgb(9 8 12 / 62%)); }
.night .eyebrow { position: absolute; left: var(--pad); top: 12%; }
.night h2 { position: absolute; left: 50%; top: 47%; width: 90vw; margin: 0; font-family: var(--serif); font-size: clamp(5rem, 13vw, 14rem); font-weight: 400; line-height: .72; letter-spacing: -.06em; text-align: center; text-transform: uppercase; transform: translate(-50%, -50%); will-change: transform, opacity; }
.night__script { position: absolute; left: 50%; top: 59%; margin: 0; font-family: var(--script); font-size: clamp(4rem, 9vw, 9rem); transform: translateX(-50%) rotate(-7deg); }

.contact { min-height: 100svh; padding: 15svh var(--pad) 0; color: var(--cream); background: var(--ink); }
.contact__top { position: relative; min-height: 82svh; }
.contact__top > p { width: min(380px, 40vw); margin: 0 0 8vh auto; font-size: 1rem; line-height: 1.6; }
.contact__top h2 { width: 86%; font-size: clamp(5rem, 11vw, 12rem); }
.contact__top .orbit-link { position: absolute; right: 7%; bottom: 12%; }
.orbit-link--light { color: var(--cream); }

footer {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) minmax(190px, .65fr) minmax(220px, .75fr);
  column-gap: clamp(52px, 7vw, 128px);
  row-gap: 0;
  padding: clamp(72px, 10svh, 118px) 0 35px;
  border-top: 1px solid rgb(238 232 220 / 24%);
}
.footer__top {
  grid-column: 1 / -1;
  justify-self: end;
  margin-bottom: clamp(68px, 10svh, 112px);
  padding-bottom: 7px;
  border-bottom: 1px solid rgb(238 232 220 / 38%);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.footer__brand img { width: clamp(160px, 15vw, 220px); height: auto; object-fit: contain; object-position: left center; }
.footer__brand p { max-width: 330px; margin: 42px 0 0; font-family: var(--serif); font-size: clamp(1.3rem, 1.75vw, 1.85rem); line-height: 1.08; text-transform: uppercase; }
footer address,
.footer__contact { padding-left: clamp(28px, 3vw, 52px); border-left: 1px solid rgb(238 232 220 / 18%); }
footer address { font-style: normal; }
footer address .eyebrow,
.footer__contact .eyebrow { margin-bottom: 34px; }
footer address a,
.footer__contact a { display: block; margin-bottom: 14px; font-family: var(--serif); font-size: clamp(1.1rem, 1.45vw, 1.5rem); line-height: 1.25; text-transform: uppercase; transition: opacity .3s ease; }
footer address a:hover,
.footer__contact a:hover { opacity: .58; }
.footer__bottom { grid-column: 1 / -1; display: flex; align-items: center; gap: 30px; margin-top: clamp(76px, 11svh, 126px); padding-top: 24px; border-top: 1px solid rgb(238 232 220 / 18%); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }
.footer__bottom span { margin-right: auto; }

.reveal { opacity: 0; transform: translateY(70px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  :root { --pad: 22px; }
  .cursor { display: none; }
  .site-header { padding-top: 20px; }
  .seal { top: 18px; width: 70px; }
  .seal__ring { font-size: .38rem; }
  .seal__mark { font-size: 1.65rem; }
  .desktop-nav { display: none; }
  .menu-toggle { position: absolute; right: var(--pad); top: 27px; display: flex; align-items: center; gap: 10px; }
  .menu-toggle i { width: 8px; height: 8px; border: 1px solid currentColor; border-radius: 50%; transition: background .3s; }
  .menu-toggle[aria-expanded="true"] i { background: currentColor; }
  .menu { grid-template-columns: 1fr; align-content: end; gap: 30px; }
  .menu nav a { font-size: clamp(3.4rem, 15vw, 6rem); }
  .menu__address { display: none; }
  .scroll-rail { left: auto; right: 8px; bottom: 16px; height: 19vh; opacity: .62; }
  .scroll-rail small { font-size: .46rem; }
  .scroll-rail__number { font-size: .5rem; }
  .hero { height: 350svh; }
  .hero__media img { object-position: 58% center; }
  .hero__title { top: 43%; width: calc(100vw - 38px); }
  .hero__title-top { font-size: clamp(4.7rem, 22vw, 7.5rem); line-height: .78; }
  .hero__title-bottom { font-size: clamp(4rem, 19vw, 6.7rem); line-height: .78; }
  .hero__script { top: 78%; font-size: clamp(2.8rem, 12.5vw, 4.6rem); }
  .hero__phrase { top: 64%; font-size: .84rem; letter-spacing: .015em; white-space: nowrap; }
  .hero__phrase--left { left: 7%; }
  .hero__phrase--right { right: 7%; }
  .hero__switch { top: 73%; gap: 11px; }
  .hero__switch i { width: 32px; }
  .hero__cta { width: 126px; bottom: 8%; }
  .hero__portal { bottom: -185vw; width: 280vw; padding-top: 24vw; }
  .hero__portal p { width: 78vw; flex-direction: column; align-items: center; gap: 2px; font-size: 1.05rem; line-height: 1.05; text-align: center; }
  .intro { min-height: 100svh; padding-top: 20svh; }
  .intro__arch { top: 8svh; width: calc(100% - 44px); height: 82px; aspect-ratio: auto; padding-top: 28px; display: flex; justify-content: space-between; border-radius: 50% 50% 0 0; }
  .intro__arch span,
  .intro__arch span:nth-child(n) { position: static; display: block; font-size: .72rem; transform: none; }
  .intro__inner { width: 100%; margin-top: 17svh; }
  .intro h2, .location h2, .manifesto h2, .concept h2, .rooms h2, .amenities h2, .contact h2 { font-size: clamp(4.2rem, 20vw, 7rem); }
  .intro h2 { font-size: clamp(4.1rem, 18.5vw, 6.6rem); }
  .intro__copy { width: 92%; font-size: .96rem; }
  .location { height: 250svh; }
  .location__headline { left: 7%; top: 15%; width: 88%; font-size: clamp(3.7rem, 16vw, 6.2rem) !important; line-height: .78 !important; }
  .location__image { left: 0; right: 0; height: 63%; clip-path: inset(58% 13% 0 13% round 45% 45% 0 0); }
  .location__image img { object-position: 50% 45%; }
  .location__note { right: 22px; bottom: 5%; width: min(300px, 78vw); }
  .manifesto { display: block; min-height: 0; overflow: hidden; }
  .manifesto__image { min-height: 70svh; }
  .manifesto__copy { min-height: 0; padding: 9svh 22px 13svh; }
  .manifesto__copy h2 { font-size: clamp(3.8rem, 16vw, 5.8rem); line-height: .78; }
  .manifesto__copy h2 em { display: block; width: 100%; margin-top: .12em; font-size: .82em; line-height: .92; }
  .manifesto__copy > p:last-child { margin-top: 42px; }
  .concept { height: auto; padding: 12svh 22px 13svh; }
  .concept__sticky { position: relative; top: auto; height: auto; overflow: visible; display: flex; flex-direction: column; }
  .concept__heading { position: relative; left: auto; top: auto; margin-bottom: 10svh; }
  .concept__heading h2 { font-size: clamp(3.45rem, 14.5vw, 5.2rem); line-height: .82; }
  .concept__heading h2 em { display: block; margin-top: .08em; font-size: .88em; line-height: .9; }
  .concept-card { position: relative; left: auto; right: auto; top: auto; width: 86%; margin: 0 0 9svh; opacity: 1 !important; transform: none !important; }
  .concept-card:nth-of-type(even) { align-self: flex-end; }
  .concept-card img { aspect-ratio: 4 / 5; }
  .concept-card h3 { font-size: 1.45rem; }
  .concept__footnote { position: relative; right: auto; bottom: auto; margin: 2svh 0 0 auto; font-size: 1.2rem; opacity: 1 !important; transform: none !important; }
  .rooms { height: 370svh; }
  .rooms__intro { top: 8%; width: 80vw; }
  .rooms__intro h2 { font-size: clamp(4.5rem, 20vw, 7rem); }
  .rooms__intro > p:last-child { display: none; }
  .rooms__track { left: 24px; top: 35%; gap: 8vw; }
  .room-card { flex-basis: 76vw; }
  .room-card__image { height: 46svh; }
  .room-card__body h3 { font-size: 2.4rem; }
  .room-card__body p { font-size: .58rem; line-height: 1.35; }
  .rooms__link { left: auto; right: 22px; top: 24%; bottom: auto; width: 92px; }
  .rooms__count { left: 22px; right: auto; top: 30%; bottom: auto; }
  .amenities { padding-top: 12svh; }
  .amenities__header { margin: 0 0 9svh; }
  .amenities__header h2 { font-size: clamp(3.8rem, 16.5vw, 6rem); line-height: .8; }
  .amenities__grid { grid-template-columns: 1fr; }
  .amenities__visual { position: relative; top: 0; height: 68svh; }
  .amenities__list article { min-height: 29svh; padding: 7svh 0 5svh; }
  .amenities__list h3 { margin-top: 32px; font-size: 2.65rem; line-height: .9; }
  .amenities__list p { width: 90%; font-size: .94rem; }
  .numbers__grid { grid-template-columns: 1fr; }
  .numbers__grid article { min-height: 26svh; border-right: 0; border-bottom: 1px solid rgb(23 25 31 / 32%); }
  .numbers strong { font-size: 6.4rem; }
  .numbers blockquote { margin-top: 13svh; font-size: clamp(2.5rem, 10.5vw, 4rem); }
  .night { height: 210svh; }
  .night__sticky img { inset: 0; width: 100%; height: 100%; }
  .night h2 { top: 46%; font-size: clamp(3.8rem, 18vw, 6.3rem); line-height: .76; }
  .night__script { top: 60%; font-size: 3.7rem; line-height: .92; text-align: center; }
  .contact__top > p { width: 82%; margin-left: 0; }
  .contact__top h2 { width: 100%; font-size: clamp(3.8rem, 16vw, 6rem); line-height: .78; }
  .contact__top .orbit-link { right: 0; }
  footer { grid-template-columns: 1fr; padding: 64px 0 24px; }
  .footer__top { justify-self: end; margin-bottom: 52px; }
  .footer__brand { margin-bottom: 64px; }
  .footer__brand img { width: 168px; }
  .footer__brand p { max-width: 290px; margin-top: 30px; font-size: 1.45rem; }
  footer address,
  .footer__contact { padding: 38px 0; border-top: 1px solid rgb(238 232 220 / 18%); border-left: 0; }
  footer address .eyebrow,
  .footer__contact .eyebrow { margin-bottom: 22px; }
  footer address a,
  .footer__contact a { margin-bottom: 9px; font-size: 1.15rem; }
  .footer__bottom { flex-wrap: wrap; gap: 14px 25px; margin-top: 44px; padding-top: 22px; }
  .footer__bottom span { width: 100%; }
}

@media (max-width: 520px) {
  .hero__phrase { font-size: .8rem; }
  .hero__phrase--left { left: 7%; }
  .hero__phrase--right { right: 7%; }
  .hero__switch { top: 73%; }
  .hotspot--one { left: 15%; }
  .hotspot--two { right: 12%; }
  .intro__copy { margin-top: 40px; }
  .room-card__body h3 { font-size: 2.4rem; }
  .numbers blockquote { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
