:root {
  --ink: #11110f;
  --ink-soft: #191814;
  --ink-raised: #24211b;
  --paper: #e8e0d2;
  --paper-light: #f2eee5;
  --jade: #cfc1aa;
  --bronze: #a88752;
  --bronze-light: #d2b681;
  --moon: #f2eee6;
  --muted: #a9a091;
  --text-dark: #29251e;
  --line-dark: rgba(55, 47, 36, 0.2);
  --line-light: rgba(210, 182, 129, 0.28);
  --font-display-cn: "Noto Serif SC Variable", "Noto Serif SC", "Source Han Serif SC", serif;
  --font-body-cn: "Noto Serif SC Variable", "Noto Serif SC", "Source Han Serif SC", serif;
  --font-en: "Noto Serif SC Variable", Garamond, "EB Garamond", Georgia, serif;
  --font-utility: "Noto Sans SC Variable", "Noto Sans SC", "Source Han Sans SC", sans-serif;
  --ease-calm: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: min(100% - 40px, 1360px);
  --z-base: 0;
  --z-content: 10;
  --z-nav: 40;
  --z-menu: 50;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--moon);
  font-family: var(--font-body-cn);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--bronze-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-light);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: max(14px, env(safe-area-inset-top)) 20px 12px;
  border-bottom: 1px solid transparent;
  transition:
    min-height 300ms var(--ease-calm),
    background-color 300ms ease,
    border-color 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  min-height: 68px;
  background: rgba(17, 17, 15, 0.84);
  border-color: rgba(210, 182, 129, 0.14);
  backdrop-filter: blur(16px);
}

/* A blurred ancestor becomes a containing block for fixed descendants on
   mobile Chromium. Disable it while the full-screen menu is open so the
   overlay remains attached to the visual viewport instead of the header. */
.site-header.is-menu-open {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}

.brand-lockup {
  position: relative;
  z-index: calc(var(--z-menu) + 1);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 118px;
  min-height: 48px;
  line-height: 1;
}

.brand-lockup__cn {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.brand-lockup__en {
  margin-top: 7px;
  color: var(--jade);
  font-family: var(--font-en);
  font-size: 8px;
  letter-spacing: 0.22em;
}

.desktop-nav {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: calc(var(--z-menu) + 1);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 1px;
  background: var(--moon);
  transition: transform 260ms var(--ease-calm);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  min-height: 100svh;
  min-height: 100dvh;
  padding:
    calc(max(14px, env(safe-area-inset-top)) + 92px)
    28px
    max(48px, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: hidden;
  background:
    radial-gradient(circle at 75% 32%, rgba(168, 135, 82, 0.16), transparent 34%),
    var(--ink);
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 260ms ease,
    transform 320ms var(--ease-calm),
    visibility 0s linear 320ms;
}

.mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-nav a,
.mobile-nav button {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  font-size: clamp(23px, 7vw, 29px);
  letter-spacing: 0.08em;
  text-align: left;
  cursor: pointer;
}

.mobile-nav a:first-child {
  border-top: 1px solid var(--line-light);
}

.mobile-nav a span,
.mobile-nav button span {
  color: var(--bronze-light);
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.hero {
  position: relative;
  z-index: var(--z-base);
  display: grid;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -4;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.04);
  will-change: transform;
}

.hero__media img {
  width: 100%;
  height: 132%;
  object-fit: cover;
  object-position: 37% 58%;
  filter: saturate(0.72) contrast(1.04) brightness(0.78);
  transform: translateY(-11%);
}

.hero__veil {
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.76) 0%, rgba(8, 8, 7, 0.16) 26%, rgba(8, 8, 7, 0.38) 60%, rgba(8, 8, 7, 0.86) 100%),
    linear-gradient(90deg, rgba(8, 8, 7, 0.34), transparent 52%, rgba(8, 8, 7, 0.26));
}

.hero__arc {
  position: absolute;
  z-index: -2;
  width: 112vw;
  aspect-ratio: 1;
  border: 1px solid rgba(210, 182, 129, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero__arc--one {
  right: -72vw;
  bottom: -56vw;
}

.hero__arc--two {
  right: -61vw;
  bottom: -45vw;
  opacity: 0.5;
}

.hero__rail {
  position: absolute;
  top: 50%;
  left: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(242, 238, 230, 0.54);
  font-family: var(--font-en);
  font-size: 8px;
  letter-spacing: 0.18em;
  transform: translate(-45%, -50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
}

.hero__rail i {
  display: block;
  width: 42px;
  height: 1px;
  background: rgba(210, 182, 129, 0.5);
}

.hero__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(100% - 56px, 680px);
  padding: 110px 0 132px;
  text-align: center;
}

.hero__seal {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 18px;
  place-items: center;
}

.hero__seal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__eyebrow,
.section-heading__eyebrow {
  margin: 0;
  color: var(--bronze-light);
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
}

.hero h1 {
  margin: 21px 0 0;
  font-size: clamp(48px, 14vw, 76px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-shadow: 0 8px 42px rgba(0, 0, 0, 0.46);
}

.hero__english {
  margin: 13px 0 0;
  color: var(--jade);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.42em;
}

.hero__divider {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 124px;
  margin: 26px 0 23px;
}

.hero__divider span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 182, 129, 0.68));
}

.hero__divider span:last-child {
  transform: rotate(180deg);
}

.hero__divider i {
  flex: 0 0 4px;
  width: 4px;
  height: 4px;
  border: 1px solid var(--bronze-light);
  transform: rotate(45deg);
}

.hero__tagline {
  margin: 0;
  color: rgba(242, 238, 230, 0.92);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.9;
}

.hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 350px);
  margin-top: 31px;
}

.primary-cta,
.secondary-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 0 14px 0 17px;
  border: 1px solid rgba(242, 238, 230, 0.62);
  background: rgba(17, 17, 15, 0.16);
  font-family: var(--font-utility);
  font-size: 12px;
  letter-spacing: 0.14em;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.secondary-cta {
  border-color: rgba(210, 182, 129, 0.58);
  color: var(--bronze-light);
}

.primary-cta__arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--bronze-light);
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
  transform: translateY(-0.5px);
}

.primary-cta:hover,
.secondary-cta:hover {
  color: var(--ink);
  background: var(--paper-light);
  border-color: var(--paper-light);
}

.scroll-cue {
  position: absolute;
  bottom: max(21px, env(safe-area-inset-bottom));
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  min-width: 48px;
  min-height: 48px;
  color: rgba(242, 238, 230, 0.64);
  font-size: 10px;
  letter-spacing: 0.25em;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 26px;
  overflow: hidden;
  background: rgba(242, 238, 230, 0.22);
}

.scroll-cue i::after {
  position: absolute;
  inset: -100% 0 auto;
  width: 1px;
  height: 100%;
  background: var(--bronze-light);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  65%, 100% { transform: translateY(200%); }
}

.reveal-on-load {
  opacity: 0;
  animation: intro-reveal 900ms var(--ease-calm) forwards;
}

.hero__eyebrow.reveal-on-load { animation-delay: 220ms; }
.hero h1.reveal-on-load { animation-delay: 320ms; }
.hero__english.reveal-on-load { animation-delay: 410ms; }
.hero__divider.reveal-on-load { animation-delay: 490ms; }
.hero__tagline.reveal-on-load { animation-delay: 560ms; }
.hero__actions.reveal-on-load { animation-delay: 650ms; }

@keyframes intro-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.dark-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(168, 135, 82, 0.08), transparent 22%),
    linear-gradient(180deg, var(--ink) 0%, #14130f 52%, var(--ink) 100%);
}

.section-shell {
  position: relative;
  z-index: var(--z-content);
  width: var(--shell);
  margin-inline: auto;
}

.spaces {
  padding: 112px 0 128px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 9px 0 0;
  font-size: clamp(37px, 10vw, 64px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.section-heading__intro {
  margin: 0;
  color: rgba(242, 238, 230, 0.7);
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.95;
}

.light-thread {
  position: absolute;
  z-index: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(210, 182, 129, 0.52), transparent);
  box-shadow: 0 0 24px rgba(210, 182, 129, 0.22);
}

.light-thread--spaces {
  top: 0;
  left: 20px;
  height: 50%;
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 72px 12px;
}

.space-card {
  margin: 0;
}

.space-card--private {
  grid-column: 1 / -1;
}

.space-card--water {
  grid-column: 2 / -1;
}

.space-card--lounge {
  grid-column: 1 / 6;
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--ink-raised);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(210, 182, 129, 0.26);
  pointer-events: none;
  content: "";
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.03) brightness(0.84);
  transform: scale(1.025);
  transition: transform 900ms var(--ease-calm), filter 500ms ease;
}

.space-card--private .image-frame {
  aspect-ratio: 4 / 5;
}

.space-card--private img {
  object-position: 51% center;
}

.space-card--water .image-frame {
  aspect-ratio: 3 / 4;
}

.space-card--water img {
  object-position: center center;
}

.space-card--lounge .image-frame {
  aspect-ratio: 4 / 5;
}

.space-card--lounge img {
  object-position: 48% center;
}

.space-card figcaption {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-top: 19px;
}

.space-card__index {
  padding-top: 4px;
  color: var(--bronze-light);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.space-card h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.13em;
}

.space-card p {
  margin: 5px 0 0;
  color: rgba(242, 238, 230, 0.56);
  font-size: 13px;
  line-height: 1.8;
}

.space-quote {
  position: relative;
  grid-column: 1 / -1;
  padding: 43px 8px 4px 30px;
  border-top: 1px solid var(--line-light);
}

.space-quote__mark {
  position: absolute;
  top: 24px;
  left: 0;
  color: var(--bronze);
  font-size: 40px;
  opacity: 0.7;
}

.space-quote p {
  margin: 0;
  font-size: clamp(22px, 6.2vw, 34px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.space-quote__en {
  display: block;
  margin-top: 18px;
  color: var(--bronze-light);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.22em;
}

.brand-story {
  position: relative;
  min-height: 100svh;
  padding: 116px 0 124px;
  overflow: hidden;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 85% 16%, rgba(168, 135, 82, 0.13), transparent 27%),
    linear-gradient(135deg, #eee8dc 0%, var(--paper) 60%, #ddd2c1 100%);
}

.brand-story::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 70, 40, 0.32), transparent);
  content: "";
}

.brand-story__watermark {
  position: absolute;
  top: 4%;
  right: -8%;
  color: rgba(72, 59, 43, 0.055);
  font-size: min(82vw, 440px);
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.brand-story__orbit {
  position: absolute;
  top: 9%;
  right: -45%;
  width: 106vw;
  aspect-ratio: 1;
  border: 1px solid rgba(114, 88, 51, 0.17);
  border-radius: 50%;
}

.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.brand-story__label {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #6e5b42;
  font-family: var(--font-utility);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.brand-story__label i {
  width: 42px;
  height: 1px;
  background: rgba(93, 72, 43, 0.45);
}

.brand-story__content {
  margin-top: 76px;
}

.section-heading__eyebrow--dark {
  color: #7d6646;
}

.brand-story h2 {
  margin: 18px 0 0;
  font-size: clamp(36px, 9.6vw, 68px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.brand-story__copy {
  display: grid;
  gap: 17px;
  max-width: 580px;
  margin-top: 47px;
  padding-left: 20px;
  border-left: 1px solid rgba(113, 85, 48, 0.44);
}

.brand-story__copy p {
  margin: 0;
  color: rgba(41, 37, 30, 0.76);
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 2;
}

.brand-story__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.brand-story__values div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  border-right: 1px solid var(--line-dark);
}

.brand-story__values div:last-child {
  border-right: 0;
}

.brand-story__values span {
  font-size: 18px;
  letter-spacing: 0.16em;
}

.brand-story__values small {
  margin-top: 7px;
  color: #806b4e;
  font-family: var(--font-en);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.brand-story__vertical {
  display: none;
}

.services {
  padding: 116px 0 52px;
}

.light-thread--services {
  top: 0;
  right: 20px;
  height: 38%;
}

.service-grid {
  display: grid;
  gap: 22px;
}

.service-card {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 70svh;
  overflow: hidden;
  background: var(--ink-raised);
  isolation: isolate;
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid rgba(210, 182, 129, 0.22);
  pointer-events: none;
  content: "";
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.69) contrast(1.08);
  transform: scale(1.04);
  transition: transform 950ms var(--ease-calm), filter 420ms ease;
}

.service-card--foot img { object-position: 48% center; }
.service-card--spa img { object-position: 50% center; }
.service-card--tea img { object-position: 50% center; }
.service-card--chess img { object-position: 50% center; }
.service-card--meal img { object-position: 50% 56%; }

.service-card--meal {
  min-height: 56svh;
}

.service-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 8, 0.32), transparent 35%, rgba(10, 10, 8, 0.84) 100%),
    linear-gradient(90deg, rgba(10, 10, 8, 0.22), transparent 65%);
  transition: opacity 420ms ease;
}

.service-card__meta {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px 24px 30px;
}

.service-card__meta > span {
  color: var(--bronze-light);
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.23em;
}

.service-card__meta h3 {
  margin: 0;
  font-size: clamp(31px, 8.5vw, 54px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.service-card__meta p {
  margin: 9px 0 0;
  color: rgba(242, 238, 230, 0.66);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.service-card__meta i {
  position: absolute;
  right: 17px;
  bottom: 19px;
  color: rgba(242, 238, 230, 0.13);
  font-size: 92px;
  font-style: normal;
  line-height: 1;
}

.prototype-footer {
  display: grid;
  gap: 28px;
  margin-top: 112px;
  padding: 48px 0 max(12px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-light);
  text-align: center;
}

.prototype-footer > div {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.prototype-footer > div span {
  font-size: 24px;
  letter-spacing: 0.2em;
}

.prototype-footer > div small {
  margin-top: 8px;
  color: var(--bronze-light);
  font-family: var(--font-en);
  font-size: 8px;
  letter-spacing: 0.3em;
}

.prototype-footer p {
  margin: 0;
  color: rgba(242, 238, 230, 0.72);
  font-size: 13px;
  letter-spacing: 0.13em;
}

.visit-strip {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  margin-top: 112px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.visit-strip + .prototype-footer {
  margin-top: 0;
  border-top: 0;
}

.visit-strip > div > span {
  color: var(--bronze-light);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.visit-strip p {
  margin: 3px 0 0;
  color: rgba(242, 238, 230, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.visit-strip button,
.desktop-nav__map {
  border: 0;
  background: transparent;
  color: var(--bronze-light);
  font-family: var(--font-utility);
  font-size: 11px;
  letter-spacing: 0.14em;
  cursor: pointer;
}

.visit-strip button {
  flex: 0 0 auto;
}

.visit-strip__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  width: 100%;
}

.visit-strip__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
}

.visit-strip__actions .visit-strip__copy {
  color: rgba(242, 238, 230, 0.62);
}

.visit-strip button .primary-cta__arrow {
  margin-left: 0;
}

.map-sheet[hidden] {
  display: none;
}

.map-sheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  align-items: end;
}

.map-sheet__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(5, 5, 4, 0.68);
  backdrop-filter: blur(6px);
}

.map-sheet__panel {
  position: relative;
  width: 100%;
  max-height: calc(100dvh - 32px);
  padding: 24px 24px max(24px, env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid rgba(168, 135, 82, 0.72);
  background:
    radial-gradient(circle at 100% 0, transparent 0 178px, rgba(168, 135, 82, 0.17) 179px 180px, transparent 181px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    var(--paper);
  color: var(--text-dark);
  box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.45);
  animation: map-sheet-in 320ms var(--ease-calm) both;
  isolation: isolate;
}

.map-sheet__topline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}

.map-sheet__topline span {
  width: 34px;
  height: 1px;
  background: var(--bronze);
}

.map-sheet__topline i {
  width: 5px;
  height: 5px;
  border: 1px solid var(--bronze);
  transform: rotate(45deg);
}

.map-sheet__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.map-sheet__header p {
  margin: 0 0 9px;
  color: #765e3d;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.24em;
}

.map-sheet__header h2 {
  margin: 0;
  font-size: clamp(31px, 8.2vw, 39px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.42;
}

.map-sheet__brand {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 22px;
}

.map-sheet__brand > img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

.map-sheet__close {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.map-sheet__close svg,
.map-sheet__apps svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.4;
}

.map-sheet__destination {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  margin: 28px 0 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.map-sheet__destination > span,
.map-sheet__prompt {
  color: #765e3d;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.map-sheet__destination p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.map-sheet__destination strong {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.map-sheet__destination small {
  margin-top: 3px;
  color: rgba(41, 37, 30, 0.62);
  font-family: var(--font-utility);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.map-sheet__prompt {
  margin: 0 0 10px;
  font-family: var(--font-utility);
  letter-spacing: 0.12em;
}

.map-sheet__apps {
  display: grid;
  gap: 0;
}

.map-sheet__apps button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  padding: 12px 8px;
  border: 0;
  border-top: 1px solid var(--line-dark);
  background: transparent;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.map-sheet__apps button:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.map-sheet__app-name {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.map-sheet__app-name strong {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.11em;
}

.map-sheet__app-name small {
  margin-top: 2px;
  color: rgba(41, 37, 30, 0.5);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.map-sheet__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.map-sheet__footer p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(41, 37, 30, 0.62);
  font-family: var(--font-utility);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.map-sheet__footer p i {
  width: 5px;
  height: 5px;
  border: 1px solid var(--bronze);
  transform: rotate(45deg);
}

.map-sheet__copy {
  min-width: 74px;
  min-height: 48px;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(55, 47, 36, 0.36);
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-utility);
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

@media (hover: hover) {
  .map-sheet__close:hover {
    color: #765e3d;
  }

  .map-sheet__apps button:hover {
    background: rgba(255, 255, 255, 0.22);
  }

  .map-sheet__copy:hover {
    color: #765e3d;
    border-color: var(--bronze);
  }
}

.map-sheet__apps button:active,
.map-sheet__close:active,
.map-sheet__copy:active {
  opacity: 0.72;
}

@keyframes map-sheet-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) and (max-height: 700px) {
  .map-sheet__panel {
    padding: 16px 20px max(16px, env(safe-area-inset-bottom));
  }

  .map-sheet__topline {
    margin-bottom: 12px;
  }

  .map-sheet__header h2 {
    font-size: 27px;
    line-height: 1.28;
  }

  .map-sheet__brand {
    gap: 10px;
  }

  .map-sheet__destination {
    margin: 14px 0 12px;
    padding: 10px 0;
  }

  .map-sheet__apps button {
    min-height: 58px;
    padding-block: 7px;
  }

  .map-sheet__footer {
    margin-top: 12px;
  }
}

.prototype-footer__note {
  color: rgba(242, 238, 230, 0.34);
  font-family: var(--font-utility);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease-calm),
    transform 800ms var(--ease-calm);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .space-card:hover .image-frame img,
  .service-card:hover img {
    filter: saturate(0.78) brightness(0.82) contrast(1.04);
    transform: scale(1.01);
  }

}

@media (hover: none), (pointer: coarse) {
  .service-card.is-active img {
    filter: saturate(0.78) brightness(0.86) contrast(1.04);
    transform: scale(1.01);
  }

  .service-card.is-active .service-card__shade {
    opacity: 0.56;
  }
}

@media (min-width: 768px) {
  :root {
    --shell: min(100% - 96px, 1360px);
  }

  .visit-strip {
    align-items: center;
    flex-direction: row;
  }

  .visit-strip__actions {
    width: auto;
  }

  .site-header {
    min-height: 92px;
    padding-inline: 48px;
  }

  .brand-lockup__cn {
    font-size: 24px;
  }

  .brand-lockup__en {
    font-size: 9px;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(28px, 3vw, 52px);
    color: rgba(242, 238, 230, 0.76);
    font-family: var(--font-utility);
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .desktop-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    transition: color 180ms ease;
  }

  .desktop-nav a:hover {
    color: var(--moon);
  }

  .desktop-nav__map:hover {
    color: var(--moon);
  }

  .desktop-nav__cta {
    padding-inline: 22px;
    border: 1px solid rgba(210, 182, 129, 0.48);
  }

  .hero__media img {
    height: 112%;
    object-position: center 55%;
    transform: none;
  }

  .hero__rail {
    left: 27px;
  }

  .hero__content {
    padding-top: 130px;
  }

  .hero__seal {
    width: 50px;
    height: 50px;
  }

  .hero h1 {
    font-size: clamp(68px, 7vw, 108px);
    letter-spacing: 0.19em;
  }

  .hero__english {
    font-size: 13px;
    letter-spacing: 0.58em;
  }

  .hero__tagline {
    font-size: 20px;
  }

  .hero__tagline br {
    display: none;
  }

  .hero__arc {
    width: 68vw;
  }

  .hero__arc--one {
    right: -35vw;
    bottom: -35vw;
  }

  .hero__arc--two {
    right: -29vw;
    bottom: -29vw;
  }

  .spaces,
  .services {
    padding-top: 170px;
  }

  .spaces {
    padding-bottom: 190px;
  }

  .section-heading {
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 80px;
  }

  .section-heading__intro {
    padding-bottom: 9px;
    text-align: right;
  }

  .light-thread--spaces {
    left: clamp(48px, 7vw, 110px);
  }

  .space-gallery {
    grid-template-columns: repeat(12, 1fr);
    gap: 118px 24px;
  }

  .space-card--private {
    grid-column: 1 / 9;
  }

  .space-card--private .image-frame {
    aspect-ratio: 16 / 10;
  }

  .space-card--water {
    grid-column: 8 / 13;
    margin-top: -40px;
  }

  .space-card--water .image-frame {
    aspect-ratio: 4 / 5;
  }

  .space-card--lounge {
    grid-column: 1 / 7;
    margin-top: -100px;
  }

  .space-card--lounge .image-frame {
    aspect-ratio: 5 / 4;
  }

  .space-quote {
    grid-column: 8 / 13;
    align-self: center;
    margin-top: -130px;
    padding-top: 55px;
  }

  .brand-story {
    display: flex;
    align-items: center;
    min-height: 860px;
    padding: 170px 0;
  }

  .brand-story__watermark {
    top: 3%;
    right: 2%;
    font-size: min(42vw, 620px);
  }

  .brand-story__orbit {
    top: -35%;
    right: -20%;
    width: 74vw;
  }

  .brand-story__grid {
    grid-template-columns: 2fr 7fr 2fr;
    column-gap: 40px;
  }

  .brand-story__label {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 8px;
  }

  .brand-story__label i {
    width: 1px;
    height: 64px;
  }

  .brand-story__content {
    max-width: 800px;
    margin-top: 0;
  }

  .brand-story h2 {
    font-size: clamp(54px, 5.4vw, 82px);
  }

  .brand-story__copy {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 760px;
  }

  .brand-story__values {
    grid-column: 2;
    margin-top: 90px;
  }

  .brand-story__vertical {
    display: block;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin: 0;
    color: rgba(65, 53, 39, 0.66);
    font-size: 17px;
    letter-spacing: 0.48em;
    line-height: 1.8;
    writing-mode: vertical-rl;
  }

  .light-thread--services {
    right: clamp(48px, 7vw, 110px);
  }

  .service-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(300px, 42vw)) minmax(380px, 46vw);
    gap: 24px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card--foot {
    grid-column: 1 / 8;
    grid-row: 1;
  }

  .service-card--spa {
    grid-column: 8 / 13;
    grid-row: 1;
  }

  .service-card--chess {
    grid-column: 1 / 6;
    grid-row: 2;
  }

  .service-card--tea {
    grid-column: 6 / 13;
    grid-row: 2;
  }

  .service-card--meal {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
    width: min(100%, 620px);
  }

  .service-card__meta {
    padding: 34px 36px 38px;
  }

  .prototype-footer {
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    padding-top: 60px;
    text-align: left;
  }

  .prototype-footer > div {
    align-items: flex-start;
  }

  .prototype-footer p {
    align-self: center;
  }

  .prototype-footer__note {
    justify-self: end;
  }

  .map-sheet {
    align-items: center;
    justify-items: center;
    padding: 32px;
  }

  .map-sheet__panel {
    width: min(100%, 560px);
    padding: 38px 44px 40px;
    border: 1px solid rgba(168, 135, 82, 0.5);
  }
}

@media (min-width: 1200px) {
  :root {
    --shell: min(100% - 160px, 1360px);
  }

  .site-header {
    padding-inline: 70px;
  }
}

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

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

  .hero__media,
  .image-frame img,
  .service-card img {
    transform: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
