:root {
  --viewport-width: 430px;
  --font-sans: Arial, Helvetica, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-script: "Segoe Script", "Brush Script MT", cursive;
  --ink: #766f68;
  --ink-soft: #aaa198;
  --paper: #f7f5f0;
  --hero-ui: rgba(255, 255, 255, 0.94);
  --hero-fallback: #8095a5;
  --hero-overlay-top: rgba(19, 30, 38, 0.16);
  --hero-overlay-bottom: rgba(15, 23, 28, 0.18);
  --hero-shadow: rgba(0, 0, 0, 0.09);
  --caption-ink: rgba(255, 255, 255, 0.9);
  --editorial-pale: #dedad2;
  --editorial-accent: #d7d2ca;
  --image-fallback: #9ba4a4;
  --space-surface: #ded9cf;
  --space-ink: #625d57;
  --space-line: rgba(98, 93, 87, 0.28);
  --line: #d7d0c8;
  --line-strong: #cec8bd;
  --transition-surface: #4c514c;
  --transition-ink: #eee9df;
  --transition-muted: #afb4ab;
  --transition-body: #c7c9c1;
  --reception-surface: #ece8df;
  --reception-muted: #8c877e;
  --guide-surface: #d8cbbb;
  --guide-ink: #5d554d;
  --guide-muted: #85796e;
  --guide-line: rgba(93, 85, 77, 0.32);
  --contact-surface: #303531;
  --footer-surface: #222622;
  --inverse-ink: #ece8df;
  --inverse-muted: #b9bdb6;
  --inverse-line: #565b56;
  --footer-muted: #8f948d;
  --browser-chrome: #e8dfd2;
  --stage-height: 510px;
  --image-width: clamp(234px, 73.08vw, 314px);
  --image-height: clamp(145px, 45.38vw, 195px);
}

html[data-theme="mineral"] {
  --ink: #405157;
  --ink-soft: #7f8e91;
  --paper: #eef1ef;
  --hero-ui: rgba(247, 250, 249, 0.95);
  --hero-fallback: #627b83;
  --hero-overlay-top: rgba(10, 29, 35, 0.26);
  --hero-overlay-bottom: rgba(18, 38, 42, 0.3);
  --hero-shadow: rgba(0, 14, 18, 0.16);
  --caption-ink: rgba(247, 250, 249, 0.92);
  --editorial-pale: #d0d8d6;
  --editorial-accent: #aebfbd;
  --image-fallback: #6d8588;
  --space-surface: #c6d2ce;
  --space-ink: #3f5250;
  --space-line: rgba(63, 82, 80, 0.3);
  --line: #b8c3bf;
  --line-strong: #aebbb7;
  --transition-surface: #263d40;
  --transition-ink: #eef3f0;
  --transition-muted: #9db0ad;
  --transition-body: #c1d0cc;
  --reception-surface: #dfe7e3;
  --reception-muted: #667a78;
  --guide-surface: #bacbc7;
  --guide-ink: #344e4d;
  --guide-muted: #607a77;
  --guide-line: rgba(52, 78, 77, 0.34);
  --contact-surface: #1d3336;
  --footer-surface: #14272a;
  --inverse-ink: #edf4f1;
  --inverse-muted: #adbfbb;
  --inverse-line: #425c5e;
  --footer-muted: #809793;
  --browser-chrome: #263d40;
}

html:lang(zh) {
  --font-sans: Arial, "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  --font-serif: Georgia, SimSun, "Songti SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
}

body {
  margin: 0;
  width: 100%;
  max-width: var(--viewport-width);
  min-width: 320px;
  background: var(--paper);
  overflow-x: hidden;
}

.content-error {
  min-height: 100svh;
  background: var(--paper);
  color: var(--ink);
}

.content-error-shell {
  box-sizing: border-box;
  min-height: 100svh;
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: clamp(7rem, 18vh, 13rem) clamp(1.25rem, 7vw, 8rem) 4rem;
}

.content-error-shell h1 {
  max-width: 12ch;
  margin: 1rem 0 1.5rem;
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.96;
}

.content-error-shell > p:not(.section-kicker) {
  max-width: 42rem;
  line-height: 1.7;
}

.content-error-shell a {
  display: inline-block;
  margin-top: 2rem;
  color: inherit;
  text-underline-offset: 0.35em;
}

button,
p,
h1,
figure {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 15px;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--viewport-width);
  height: 30px;
  padding: 0 21px 0 10px;
  color: var(--hero-ui);
  mix-blend-mode: difference;
  pointer-events: none;
}

.menu-mark {
  display: grid;
  width: 25px;
  height: 30px;
  padding: 9px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
}

.menu-mark span {
  display: block;
  width: 25px;
  height: 1px;
  background: currentColor;
}

.nav-label {
  margin-left: 12px;
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.nav-action {
  margin-left: auto;
  padding: 7px 11px 6px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100svh;
  min-height: min(620px, 100dvh);
  overflow: hidden;
  background: var(--hero-fallback);
  color: var(--hero-ui);
}

.capture-marker {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.capture-marker-b {
  top: 420px;
  scroll-margin-top: 0;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  will-change: transform;
}

.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.035);
}

.hero-media video[hidden] {
  display: none;
}

.hero-shade {
  background:
    linear-gradient(180deg, var(--hero-overlay-top), transparent 28%),
    linear-gradient(0deg, var(--hero-overlay-bottom), transparent 38%);
}

.hero-wordmark {
  position: absolute;
  top: 36.8%;
  left: 50%;
  width: 300px;
  transform: translateX(-50%);
  font-family: var(--font-script);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.055em;
  text-shadow: 0 1px 12px var(--hero-shadow);
  will-change: transform;
}

.entry-prompt {
  position: absolute;
  top: 76.07svh;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 176px;
  transform: translateX(-50%);
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  will-change: transform;
}

.prompt-arrow {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 200;
  line-height: 18px;
}

.editorial {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  overflow: hidden;
  background: var(--paper);
  scroll-margin-top: 169px;
}

.editorial-stage {
  position: relative;
  width: 100%;
  height: var(--stage-height);
  overflow: hidden;
  transform: translate3d(0, var(--section-lift, 0), 0);
  will-change: transform;
}

.clip {
  position: absolute;
  z-index: 4;
  overflow: hidden;
}

.reveal-word {
  will-change: transform;
}

html[data-motion="on"] .reveal-word {
  transform: translate3d(0, 112%, 0);
  transition: transform 900ms cubic-bezier(0.22, 0.72, 0.16, 1);
}

html[data-motion="on"] .editorial.is-visible .reveal-word {
  transform: translate3d(0, 0, 0);
}

html[data-motion="on"] .editorial.is-visible .clip-a .reveal-word {
  transition-delay: 80ms;
}

html[data-motion="on"] .editorial.is-visible .clip-b .reveal-word {
  transition-delay: 400ms;
}

html[data-motion="on"] .editorial.is-visible .clip-c .reveal-word {
  transition-delay: 500ms;
}

html[data-motion="on"] .editorial.is-visible .clip-d .reveal-word {
  transition-delay: 620ms;
}

.clip-a {
  top: 7px;
  left: 35px;
  width: calc(100% - 35px);
  height: 96px;
}

.title-a {
  color: var(--editorial-pale);
  font-family: var(--font-sans);
  font-size: 97.5px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-wordmark[data-content-length="long"] {
  width: calc(100% - 40px);
  font-size: clamp(24px, 7.8vw, 32px);
  line-height: 1.12;
}

.title-a[data-content-length="long"] {
  max-width: 100%;
  font-size: clamp(40px, 12vw, 50px);
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: normal;
}

.clip-b {
  top: 67px;
  right: 28px;
  left: 39%;
  width: auto;
  height: 30px;
}

.title-b {
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.title-b[data-content-length="long"] {
  font-size: 17px;
  line-height: 22px;
  white-space: normal;
}

.collage-media {
  position: absolute;
  z-index: 2;
  top: 98px;
  left: 0;
  width: var(--image-width);
  height: var(--image-height);
  overflow: hidden;
  background: var(--image-fallback);
}

.collage-media img {
  width: 100%;
  height: calc(100% + 20px);
  object-fit: cover;
  object-position: 50% 48%;
  transform: translateY(-10px) scale(1.015);
  will-change: transform;
}

.clip-c {
  top: 236px;
  right: 29px;
  width: 180px;
  height: 44px;
}

.title-c {
  color: var(--editorial-accent);
  font-family: var(--font-sans);
  font-size: 25.35px;
  font-weight: 300;
  line-height: 29px;
  letter-spacing: -0.04em;
  text-align: right;
}

.title-c[data-content-length="long"] {
  font-size: 18px;
  line-height: 22px;
  white-space: normal;
}

.clip-d {
  top: 270px;
  left: 39px;
  width: calc(100% - 53px);
  height: 70px;
}

.title-d {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 33px;
  font-weight: 300;
  line-height: 39px;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.title-d[data-content-length="long"] {
  font-size: 24px;
  line-height: 30px;
  white-space: normal;
}

.editorial[data-type-profile="long"] .clip-a {
  top: 18px;
  left: 24px;
  width: calc(100% - 48px);
  height: 102px;
}

.editorial[data-type-profile="long"] .clip-b {
  top: 116px;
  right: 24px;
  left: 42%;
  height: 50px;
}

.editorial[data-type-profile="long"] .collage-media {
  top: 174px;
}

.editorial[data-type-profile="long"] .clip-c {
  top: 330px;
  right: 24px;
}

.editorial[data-type-profile="long"] .clip-d {
  top: 386px;
  left: 32px;
  width: calc(100% - 56px);
}

/* C01-C1-H: complete mobile homepage. The accepted Hero and Editorial rules above remain unchanged. */
.content-section,
.reception-section,
.reception-transition,
.faq,
.contact,
.site-footer {
  position: relative;
  width: 100%;
}

.section-detail-link {
  display: inline-block;
  margin-top: 38px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.section-detail-link[hidden] {
  display: none;
}

.visual-story > .section-detail-link,
.stay > .section-detail-link,
.local-guide > .section-detail-link {
  margin-left: 24px;
}

.reception-detail-link {
  margin-left: 42px;
}

.contact-detail-link {
  margin-left: 28%;
}

.site-menu[hidden] {
  display: none;
}

.site-menu {
  position: fixed;
  z-index: 100;
  inset: 0;
  width: 100%;
  max-width: var(--viewport-width);
  background: rgba(20, 23, 21, 0.58);
}

.site-menu-panel {
  min-height: 100dvh;
  padding: 24px 24px 42px;
  background: var(--contact-surface);
  color: var(--inverse-ink);
  opacity: 0;
  transform: translate3d(0, -14px, 0);
  transition: opacity 280ms ease, transform 420ms cubic-bezier(0.22, 0.72, 0.16, 1);
}

.site-menu.is-open .site-menu-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-menu-close {
  display: block;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.site-menu-brand {
  margin-top: 38px;
  color: var(--inverse-muted);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.site-menu-links {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
  border-top: 1px solid var(--inverse-line);
}

.site-menu-links a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: baseline;
  padding: 18px 0 17px;
  border-bottom: 1px solid var(--inverse-line);
  color: inherit;
  font-family: var(--font-serif);
  font-size: clamp(27px, 8.5vw, 36px);
  line-height: 1.1;
  text-decoration: none;
}

.site-menu-links a span {
  color: var(--inverse-muted);
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.12em;
}

body.menu-open {
  overflow: hidden;
}

.section-index,
.section-kicker,
.site-footer,
.quiet-list,
.contact-methods {
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.section-index {
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1;
}

.section-kicker {
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.4;
}

.display-title {
  font-family: var(--font-serif);
  font-size: clamp(43px, 13.5vw, 56px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.display-title[data-content-length="long"] {
  font-size: clamp(36px, 11vw, 46px);
  line-height: 1.04;
}

.section-body {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.85;
}

.visual-story {
  min-height: 104svh;
  padding: 68px 24px 84px;
  background: var(--space-surface);
  color: var(--space-ink);
}

.visual-story > .section-index {
  position: absolute;
  top: 72px;
  right: 24px;
}

.story-copy {
  width: 87%;
}

.story-copy .display-title {
  margin: 18px 0 30px;
}

.story-copy .section-body {
  width: 78%;
  margin-left: auto;
}

.story-images {
  position: relative;
  min-height: 470px;
  margin: 62px -24px 0;
}

.story-images:empty {
  display: none;
}

.story-figure {
  position: absolute;
  overflow: hidden;
}

.story-figure:first-child {
  top: 0;
  left: 0;
  width: 78%;
  height: 365px;
}

.story-figure:nth-child(2) {
  right: 0;
  bottom: 0;
  width: 49%;
  height: 230px;
  border: 9px solid var(--space-surface);
}

.story-figure img,
.stay-image img,
.guide-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-figure figcaption,
.stay-image figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  color: var(--caption-ink);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.stay {
  min-height: 102svh;
  padding: 82px 0 96px;
  background: var(--paper);
}

.stay-heading {
  padding: 0 25px;
}

.stay-heading .section-index {
  float: right;
  margin-top: 4px;
}

.stay-heading .display-title {
  max-width: 325px;
  margin-top: 18px;
}

.stay-image {
  position: relative;
  width: calc(100% - 48px);
  height: 55svh;
  min-height: 390px;
  margin: 54px 0 0 auto;
  overflow: hidden;
}

.stay-copy {
  width: calc(100% - 72px);
  margin: 42px 24px 0 48px;
}

.stay-copy .section-body {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.stay-image[hidden] + .stay-copy {
  margin-top: 78px;
}

.stay-image[hidden] + .stay-copy .section-body {
  min-height: 250px;
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 1.75;
}

.quiet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
  padding: 25px 0 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 8px;
  line-height: 1.5;
}

.reception-transition {
  min-height: 78svh;
  padding: 112px 25px 80px;
  background: var(--transition-surface);
  color: var(--transition-ink);
}

.reception-transition .section-kicker {
  color: var(--transition-muted);
}

.reception-transition h2 {
  max-width: 330px;
  margin: 36px 0 38px;
  font-family: var(--font-serif);
  font-size: clamp(38px, 12vw, 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.reception-transition > p:last-of-type {
  max-width: 245px;
  margin-left: auto;
  color: var(--transition-body);
  font-size: 12px;
  line-height: 1.85;
}

.transition-rule {
  display: block;
  width: 1px;
  height: 96px;
  margin: 70px auto 0;
  background: var(--transition-muted);
}

.reception-shell {
  background: var(--reception-surface);
}

.reception-section {
  padding: 86px 24px;
  border-bottom: 1px solid var(--line-strong);
}

.reception-heading {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 10px;
}

.reception-heading .section-index {
  grid-row: 1 / span 2;
  padding-top: 3px;
}

.reception-heading .display-title {
  margin-top: 14px;
}

.address-line {
  max-width: calc(100% - 42px);
  margin: 76px 0 40px 42px;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.arrival-details,
.checkin-notes {
  margin-left: 42px;
}

.detail-row,
.facility-row,
.contact-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line-strong);
}

.detail-label,
.facility-name,
.contact-label {
  color: var(--reception-muted);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.detail-value,
.facility-detail,
.contact-value {
  font-size: 12px;
  line-height: 1.7;
  min-width: 0;
  overflow-wrap: anywhere;
}

.text-link {
  display: inline-flex;
  margin: 34px 0 0 42px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.time-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 72px 0 58px 42px;
}

.time-pair > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.time-pair span {
  color: var(--reception-muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.time-pair strong {
  font-family: var(--font-serif);
  font-size: clamp(45px, 14vw, 58px);
  font-weight: 400;
  letter-spacing: -0.07em;
}

.compact-heading .display-title {
  font-size: clamp(38px, 12vw, 49px);
}

.facility-list {
  margin: 60px 0 0 42px;
}

.facility-row {
  grid-template-columns: minmax(74px, 0.7fr) minmax(0, 1.3fr);
}

.local-guide {
  padding: 96px 24px 116px;
  background: var(--guide-surface);
  color: var(--guide-ink);
}

.guide-intro .section-index {
  float: right;
}

.guide-intro .display-title {
  margin: 17px 0 35px;
}

.guide-intro .section-body {
  width: 76%;
  margin-left: auto;
}

.guide-list {
  margin-top: 72px;
}

.guide-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--guide-line);
}

.guide-image {
  width: 88px;
  height: 116px;
  overflow: hidden;
}

.guide-item.no-image .guide-meta {
  grid-column: 2;
}

.guide-type,
.guide-distance {
  color: var(--guide-muted);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.guide-name {
  margin: 9px 0 13px;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.guide-reason {
  font-size: 11px;
  line-height: 1.7;
}

.guide-distance {
  display: block;
  margin-top: 17px;
}

.guide-link {
  display: inline-block;
  margin-top: 14px;
  color: inherit;
  font-size: 9px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* C01-C2-H: section capability is derived from content, never selected by a client. */
.visual-story[data-capability="text"] {
  min-height: 0;
  padding-top: 66px;
  padding-bottom: 70px;
}

.visual-story[data-capability="text"] .story-copy {
  width: 100%;
}

.visual-story[data-capability="text"] .story-copy .display-title {
  max-width: 340px;
  margin-bottom: 34px;
}

.visual-story[data-capability="text"] .story-copy .section-body {
  width: 72%;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--space-line);
}

.stay[data-capability="text"] {
  min-height: 0;
  padding-top: 68px;
  padding-bottom: 74px;
}

.stay[data-capability="text"] .stay-heading .display-title {
  max-width: 335px;
}

.stay[data-capability="text"] .stay-copy {
  margin-top: 44px;
}

.stay[data-capability="text"] .stay-copy .section-body {
  min-height: 0;
  display: block;
  align-items: initial;
  font-size: 17px;
  line-height: 1.75;
}

.reception-transition[data-capability="compact"] {
  min-height: 0;
  padding-top: 82px;
  padding-bottom: 66px;
}

.reception-transition[data-capability="compact"] h2 {
  margin-top: 30px;
  margin-bottom: 32px;
}

.reception-transition[data-capability="compact"] .transition-rule {
  height: 58px;
  margin-top: 48px;
}

.local-guide[data-capability="text"] {
  padding-top: 82px;
  padding-bottom: 92px;
}

.local-guide[data-capability="text"] .guide-list {
  margin-top: 54px;
}

.local-guide[data-capability="text"] .guide-item {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 24px 0;
}

.local-guide[data-capability="text"] .guide-item.no-image .guide-meta {
  grid-column: 1;
  width: 82%;
  margin-left: auto;
}

.local-guide[data-capability="text"] .guide-name {
  font-size: 27px;
}

.faq {
  padding: 88px 24px 96px;
  background: var(--paper);
}

.faq h2 {
  margin: 17px 0 58px;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.faq-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.faq-question {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.45;
}

.faq-answer {
  width: 82%;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.75;
}

.contact {
  min-height: 86svh;
  padding: 100px 24px 82px;
  background: var(--contact-surface);
  color: var(--inverse-ink);
}

.contact-main .section-index {
  float: right;
  color: var(--inverse-muted);
}

.contact-main .section-kicker {
  color: var(--inverse-muted);
}

.contact-main h2 {
  margin: 26px 0 36px;
  font-family: var(--font-serif);
  font-size: clamp(48px, 15vw, 61px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.contact-main > p:last-child {
  width: 75%;
  color: var(--inverse-muted);
  font-size: 12px;
  line-height: 1.8;
}

.contact-methods {
  margin-top: 88px;
  font-size: 9px;
}

.contact-row {
  border-color: var(--inverse-line);
}

.contact-value,
.contact-value:visited {
  color: var(--inverse-ink);
  text-decoration: none;
}

.contact-address {
  width: 72%;
  margin: 68px 0 0 auto;
  color: var(--inverse-muted);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: var(--footer-surface);
  color: var(--footer-muted);
  font-size: 7px;
  line-height: 1.5;
}

html[data-motion="on"] .reveal-section > :not(.section-index),
html[data-motion="on"] .guide-item,
html[data-motion="on"] .facility-row,
html[data-motion="on"] .detail-row,
html[data-motion="on"] .faq-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.22, 0.72, 0.16, 1);
}

html[data-motion="on"] .reveal-section.is-visible > :not(.section-index),
html[data-motion="on"] .reveal-section.is-visible .guide-item,
html[data-motion="on"] .reveal-section.is-visible .facility-row,
html[data-motion="on"] .reveal-section.is-visible .detail-row,
html[data-motion="on"] .reveal-section.is-visible .faq-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html[data-motion="on"] .reveal-section.is-visible > :nth-child(3),
html[data-motion="on"] .reveal-section.is-visible .guide-item:nth-child(2),
html[data-motion="on"] .reveal-section.is-visible .facility-row:nth-child(2) {
  transition-delay: 100ms;
}

html[data-motion="on"] .reveal-section.is-visible > :nth-child(4),
html[data-motion="on"] .reveal-section.is-visible .guide-item:nth-child(3),
html[data-motion="on"] .reveal-section.is-visible .facility-row:nth-child(3) {
  transition-delay: 180ms;
}

html:lang(zh) .display-title,
html:lang(zh) .reception-transition h2,
html:lang(zh) .contact-main h2,
html:lang(zh) .faq h2 {
  line-height: 1.06;
  letter-spacing: -0.045em;
}

html:lang(zh) .section-body,
html:lang(zh) .address-line,
html:lang(zh) .faq-question,
html:lang(zh) .contact-address {
  line-height: 1.72;
}

.nav-label[data-content-length="long"] {
  max-width: 54%;
  font-size: 9px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

@media (max-width: 359px) {
  .display-title {
    font-size: 42px;
  }

  .visual-story,
  .reception-section,
  .local-guide,
  .faq,
  .contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .story-images {
    margin-right: -20px;
    margin-left: -20px;
  }

  .detail-row,
  .facility-row,
  .contact-row {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .time-pair strong {
    font-size: 42px;
  }
}

/* C01-D1-P: additive desktop composition. Mobile remains the source baseline. */
.desktop-nav {
  display: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --viewport-width: 100%;
  }

  body,
  .site-header,
  .site-menu {
    max-width: none;
  }

  .site-menu-panel {
    width: min(430px, 100%);
  }

  .visual-story,
  .reception-section,
  .local-guide,
  .faq,
  .contact {
    padding-right: clamp(48px, 9vw, 90px);
    padding-left: clamp(48px, 9vw, 90px);
  }

  .story-images {
    margin-right: calc(clamp(48px, 9vw, 90px) * -1);
    margin-left: calc(clamp(48px, 9vw, 90px) * -1);
  }
}

@media (min-width: 1024px) {
  :root {
    --viewport-width: 100%;
    --desktop-gutter: clamp(42px, 5.6vw, 108px);
    --desktop-canvas: 1640px;
    --desktop-reading: 650px;
  }

  body {
    max-width: none;
  }

  .site-header {
    top: 0;
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    width: 100%;
    max-width: none;
    height: 72px;
    padding: 0 var(--desktop-gutter);
    color: var(--hero-ui);
    mix-blend-mode: normal;
    transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease;
  }

  body.hero-has-left .site-header,
  .subpage-site-header {
    border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
    background: color-mix(in srgb, var(--paper) 94%, transparent);
    color: var(--ink);
    backdrop-filter: blur(12px);
  }

  .menu-mark {
    display: none;
  }

  .desktop-nav {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    gap: clamp(20px, 2.2vw, 38px);
    pointer-events: auto;
  }

  .desktop-nav a {
    position: relative;
    padding: 27px 0 24px;
    color: inherit;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after,
  .desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-label {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 11px;
  }

  .nav-action {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin: 0;
  }

  .site-menu {
    max-width: none;
  }

  .hero {
    height: 100svh;
    min-height: 700px;
  }

  .hero-media img,
  .hero-media video {
    transform: scale(1.018);
  }

  .hero-wordmark {
    top: 43%;
    width: min(70vw, 960px);
    font-size: clamp(62px, 6.2vw, 106px);
  }

  .hero-wordmark[data-content-length="long"] {
    width: min(72vw, 980px);
    font-size: clamp(48px, 5.2vw, 82px);
  }

  .entry-prompt {
    top: auto;
    bottom: 52px;
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 0.12em;
  }

  .editorial {
    min-height: 860px;
  }

  .editorial-stage {
    height: 820px;
    max-width: var(--desktop-canvas);
    margin: 0 auto;
  }

  .clip-a {
    top: 86px;
    left: var(--desktop-gutter);
    width: 57%;
    height: 172px;
  }

  .title-a {
    font-size: clamp(128px, 11vw, 190px);
    line-height: 0.9;
  }

  .title-a[data-content-length="long"] {
    font-size: clamp(70px, 7.5vw, 118px);
  }

  .clip-b {
    top: 178px;
    right: var(--desktop-gutter);
    left: 63%;
    height: 76px;
  }

  .title-b,
  .title-b[data-content-length="long"] {
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1.15;
  }

  .collage-media {
    top: 265px;
    left: 9%;
    width: 46%;
    height: 410px;
  }

  .clip-c {
    top: 340px;
    right: 9%;
    width: 34%;
    height: 80px;
  }

  .title-c,
  .title-c[data-content-length="long"] {
    font-size: clamp(36px, 3.5vw, 60px);
    line-height: 1.05;
  }

  .clip-d {
    top: 470px;
    left: 48%;
    width: 45%;
    height: 150px;
  }

  .title-d,
  .title-d[data-content-length="long"] {
    font-size: clamp(46px, 4.7vw, 78px);
    line-height: 1.08;
    white-space: normal;
  }

  .editorial[data-type-profile="long"] .clip-a {
    top: 86px;
    left: var(--desktop-gutter);
    width: 57%;
    height: 172px;
  }

  .editorial[data-type-profile="long"] .clip-b {
    top: 178px;
    right: var(--desktop-gutter);
    left: 63%;
    height: 76px;
  }

  .editorial[data-type-profile="long"] .collage-media {
    top: 265px;
  }

  .editorial[data-type-profile="long"] .clip-c {
    top: 340px;
    right: 9%;
  }

  .editorial[data-type-profile="long"] .clip-d {
    top: 470px;
    left: 48%;
    width: 45%;
  }

  .section-kicker,
  .section-index {
    font-size: 10px;
  }

  .display-title {
    font-size: clamp(58px, 5.2vw, 88px);
  }

  .display-title[data-content-length="long"] {
    font-size: clamp(50px, 4.4vw, 74px);
  }

  .section-body {
    font-size: 16px;
    line-height: 1.9;
  }

  .visual-story {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    min-height: 900px;
    padding: 140px max(var(--desktop-gutter), calc((100vw - var(--desktop-canvas)) / 2));
  }

  .visual-story > .section-index {
    top: 148px;
    right: max(var(--desktop-gutter), calc((100vw - var(--desktop-canvas)) / 2));
  }

  .story-copy {
    grid-column: 1 / 6;
    width: auto;
  }

  .story-copy .display-title {
    margin: 28px 0 48px;
  }

  .story-copy .section-body {
    width: 76%;
    margin: 0 0 0 auto;
  }

  .story-images {
    grid-column: 7 / 13;
    min-height: 610px;
    margin: 32px 0 0;
  }

  .story-figure:first-child {
    width: 82%;
    height: 520px;
  }

  .story-figure:nth-child(2) {
    width: 43%;
    height: 310px;
  }

  .visual-story > .section-detail-link {
    grid-column: 1 / 6;
    align-self: end;
    justify-self: start;
    margin-left: 0;
  }

  .visual-story[data-capability="text"] {
    min-height: 620px;
    padding-top: 136px;
    padding-bottom: 126px;
  }

  .visual-story[data-capability="text"] .story-copy {
    grid-column: 1 / 10;
  }

  .visual-story[data-capability="text"] .story-copy .display-title {
    max-width: 900px;
  }

  .visual-story[data-capability="text"] .story-copy .section-body {
    width: min(46%, var(--desktop-reading));
    margin-left: 45%;
  }

  .stay {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(440px, 1.18fr);
    grid-template-rows: auto auto;
    gap: 0 clamp(60px, 7vw, 130px);
    min-height: 850px;
    padding: 140px max(var(--desktop-gutter), calc((100vw - var(--desktop-canvas)) / 2));
  }

  .stay-heading {
    grid-column: 1;
    padding: 0;
  }

  .stay-heading .display-title {
    max-width: 520px;
    margin-top: 26px;
  }

  .stay-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    height: 650px;
    min-height: 0;
    margin: 0;
  }

  .stay-copy,
  .stay-image[hidden] + .stay-copy {
    grid-column: 1;
    width: auto;
    margin: 82px 0 0;
    align-self: end;
  }

  .stay-image[hidden] + .stay-copy .section-body {
    min-height: 0;
  }

  .stay > .section-detail-link {
    grid-column: 1;
    margin-left: 0;
  }

  .stay[data-capability="text"] {
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 590px;
    padding-top: 124px;
    padding-bottom: 120px;
  }

  .stay[data-capability="text"] .stay-copy {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 30px 0 0;
  }

  .stay[data-capability="text"] .stay-heading .display-title {
    max-width: 510px;
  }

  .stay[data-capability="text"] .stay-copy .section-body {
    font-size: 22px;
    line-height: 1.75;
  }

  .reception-transition,
  .reception-transition[data-capability="compact"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    min-height: 660px;
    padding: 150px max(var(--desktop-gutter), calc((100vw - var(--desktop-canvas)) / 2)) 120px;
  }

  .reception-transition h2,
  .reception-transition[data-capability="compact"] h2 {
    max-width: 720px;
    margin: 40px 0 0;
    font-size: clamp(58px, 5vw, 84px);
  }

  .reception-transition > p:last-of-type {
    align-self: center;
    max-width: 390px;
    margin: 82px 0 0;
    font-size: 14px;
  }

  .transition-rule,
  .reception-transition[data-capability="compact"] .transition-rule {
    grid-column: 1 / -1;
    width: 140px;
    height: 1px;
    margin: 70px auto 0;
  }

  .reception-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 max(var(--desktop-gutter), calc((100vw - var(--desktop-canvas)) / 2));
  }

  .reception-section {
    padding: 130px clamp(48px, 5vw, 90px);
  }

  .arrival {
    border-right: 1px solid var(--line-strong);
  }

  .facilities {
    grid-column: 1 / -1;
  }

  .reception-heading {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .address-line,
  .arrival-details,
  .checkin-notes,
  .time-pair,
  .facility-list {
    margin-left: 54px;
  }

  .address-line {
    max-width: 520px;
    font-size: 28px;
  }

  .time-pair strong {
    font-size: clamp(48px, 4.2vw, 70px);
  }

  .facilities .facility-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
  }

  .local-guide {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
    gap: clamp(80px, 10vw, 190px);
    padding: 150px max(var(--desktop-gutter), calc((100vw - var(--desktop-canvas)) / 2));
  }

  .guide-intro .display-title {
    margin-top: 26px;
  }

  .guide-intro .section-body {
    width: 72%;
    margin-top: 48px;
  }

  .guide-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    gap: 0 52px;
    margin-top: 0;
  }

  .guide-item,
  .local-guide[data-capability="text"] .guide-item {
    grid-template-columns: 1fr;
    padding: 32px 0 36px;
  }

  .guide-item.no-image .guide-meta,
  .local-guide[data-capability="text"] .guide-item.no-image .guide-meta {
    grid-column: 1;
    width: 100%;
    margin: 0;
  }

  .local-guide > .section-detail-link {
    grid-column: 2;
    justify-self: start;
    margin-left: 0;
  }

  .faq {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: clamp(70px, 9vw, 170px);
    padding: 130px max(var(--desktop-gutter), calc((100vw - var(--desktop-canvas)) / 2));
  }

  .faq h2 {
    grid-column: 1;
    margin-top: 24px;
    font-size: clamp(52px, 4.5vw, 76px);
  }

  .faq-list {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .faq > .section-detail-link {
    grid-column: 1;
  }

  .contact {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(80px, 10vw, 190px);
    min-height: 650px;
    padding: 140px max(var(--desktop-gutter), calc((100vw - var(--desktop-canvas)) / 2));
  }

  .contact-main h2 {
    font-size: clamp(64px, 5.6vw, 94px);
  }

  .contact-main > p:last-child {
    max-width: 500px;
  }

  .contact-methods {
    margin-top: 40px;
  }

  .contact-address,
  .contact-detail-link {
    grid-column: 2;
    width: 72%;
    margin-left: 0;
  }

  .contact-address {
    align-self: end;
    margin-top: 30px;
  }

  .site-footer {
    padding: 30px var(--desktop-gutter);
    font-size: 8px;
  }
}

@media (min-width: 1440px) {
  .editorial-stage {
    height: 880px;
  }

  .editorial {
    min-height: 900px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

}
