:root {
  --paper: #f3f0e8;
  --paper-deep: #e7e1d6;
  --ink: #1d2a22;
  --ink-soft: #566158;
  --forest: #24382d;
  --forest-deep: #192a21;
  --forest-soft: #344d3d;
  --cream: #f5f0e6;
  --clay: #b47753;
  --line: rgba(29, 42, 34, 0.18);
  --line-light: rgba(245, 240, 230, 0.24);
  --serif: "Iowan Old Style", "Baskerville", "Songti SC", "STSong", Georgia, serif;
  --sans: "Avenir Next", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --shell: 1380px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

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

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

.page-shell {
  width: min(calc(100% - 72px), var(--shell));
  margin: 0 auto;
}

.section-pad {
  padding: 150px 0;
}

.section-soft {
  background: var(--paper-deep);
}

.section-ink {
  color: var(--cream);
  background: var(--forest);
}

.eyebrow {
  margin: 0;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #d3cbbd;
}

.section-label {
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-label-light {
  color: #c7c4b8;
}

.section-number {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button:hover {
  transform: translateY(-2px);
}

.button-cream {
  color: var(--forest);
  background: var(--cream);
}

.button-cream:hover {
  color: var(--cream);
  background: var(--clay);
}

.button-forest {
  color: var(--cream);
  background: var(--forest);
}

.button-forest:hover {
  background: var(--clay);
}

.button-outline-light {
  color: var(--cream);
  border-color: var(--line-light);
}

.button-outline-light:hover {
  color: var(--forest);
  background: var(--cream);
  border-color: var(--cream);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--cream);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(243, 240, 232, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 72px), 1480px);
  min-height: 84px;
  margin: 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  white-space: nowrap;
}

.brand-cn {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.brand-en {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: 9%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-place {
  color: currentColor;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: min(800px, 86vh);
  min-height: 660px;
  overflow: hidden;
  color: var(--cream);
  background: var(--forest);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  animation: hero-zoom 1.6s ease both;
}

.hero-overlay {
  background: rgba(11, 20, 15, 0.26);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-top: 160px;
  padding-bottom: 51px;
}

.hero h1 {
  max-width: 620px;
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: 112px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.86;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.39em;
  line-height: 1;
  text-indent: 0.39em;
}

.hero-intro {
  margin-top: 28px;
}

.hero-intro p {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.35;
}

.hero-intro .hero-subcopy {
  margin-top: 5px;
  color: rgba(245, 240, 230, 0.7);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.hero-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 30px;
  margin-top: 80px;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  justify-self: center;
  color: rgba(245, 240, 230, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hero-meta {
  margin: 0;
  color: rgba(245, 240, 230, 0.64);
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: right;
}

.hero-index {
  position: absolute;
  right: 36px;
  bottom: 51px;
  z-index: 2;
  color: rgba(245, 240, 230, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-index span {
  color: rgba(245, 240, 230, 0.42);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.75fr 3fr;
  gap: 12%;
}

.intro-copy {
  max-width: 930px;
}

.intro-copy h2,
.commons-copy h2,
.stay-intro h2,
.location-copy h2,
.booking-aside h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 67px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.intro-copy h2 {
  color: var(--ink);
}

.intro-copy h2 em,
.commons-copy h2 em,
.stay-intro h2 em,
.location-copy h2 em,
.booking-aside h2 em {
  color: var(--clay);
  font-style: normal;
}

.intro-lede {
  max-width: 670px;
  margin: 55px 0 0 21%;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.6;
}

.intro-rule {
  width: 100%;
  height: 1px;
  margin: 52px 0 24px;
  background: var(--line);
}

.intro-details {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 20px;
  margin-left: 21%;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.8;
}

.intro-details p {
  margin: 0;
}

.intro-details .text-link {
  justify-self: end;
  color: var(--ink);
}

.cabins {
  overflow: hidden;
}

.section-head {
  display: grid;
  grid-template-columns: 0.75fr 3fr;
  gap: 12%;
}

.section-head-copy {
  max-width: 750px;
}

.section-head-copy h2 {
  margin: 23px 0 0;
  font-family: var(--serif);
  font-size: 67px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-head-copy h2 em {
  color: #bf8d6c;
  font-style: normal;
}

.room-list {
  margin-top: 100px;
}

.room-item {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 9%;
  align-items: center;
  padding: 68px 0;
  border-top: 1px solid var(--line-light);
}

.room-item:last-child {
  border-bottom: 1px solid var(--line-light);
}

.room-item-reverse .room-image-wrap {
  grid-column: 2;
  grid-row: 1;
}

.room-item-reverse .room-info {
  grid-column: 1;
  grid-row: 1;
}

.room-image-wrap {
  position: relative;
  aspect-ratio: 1.34;
  overflow: hidden;
  background: var(--forest-soft);
}

.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.room-item:hover .room-image-wrap img {
  transform: scale(1.035);
}

.room-index {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
}

.room-info {
  max-width: 430px;
}

.room-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line-light);
}

.room-kicker,
.room-status {
  margin: 0;
  color: #bdc2b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room-status {
  color: #c28e6b;
}

.room-info h3 {
  margin: 28px 0 18px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.room-info h3 span {
  display: block;
  margin-top: 9px;
  color: #9ca99e;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

.room-info > p {
  margin: 0;
  color: #bbc3ba;
  font-size: 14px;
  line-height: 1.9;
}

.room-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 35px 0 33px;
  padding: 15px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.room-specs div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.room-specs dt {
  color: #9ca99e;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-specs dd {
  margin: 0;
  color: var(--cream);
  font-size: 12px;
}

.commons {
  background: var(--paper);
}

.commons-grid {
  display: grid;
  grid-template-columns: 1.32fr 0.78fr;
  gap: 9%;
  align-items: center;
}

.commons-image {
  position: relative;
  overflow: hidden;
}

.commons-image img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: 19px;
  bottom: 17px;
  color: rgba(245, 240, 230, 0.85);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.commons-copy {
  max-width: 520px;
}

.commons-copy h2 {
  margin-top: 33px;
  font-size: 54px;
}

.commons-copy > p {
  margin: 37px 0 32px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.stay-grid {
  display: grid;
  grid-template-columns: 0.75fr 3fr;
  gap: 12%;
}

.stay-main {
  max-width: 920px;
}

.stay-intro h2 {
  margin-top: 22px;
}

.stay-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
  margin-top: 68px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stay-block h3 {
  margin: 0 0 25px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stay-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}

.stay-line strong {
  color: var(--ink);
  font-weight: 500;
}

.amenities {
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 12px;
  list-style: none;
}

.amenities li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.stay-block > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.stay-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 700px;
  margin-top: 63px;
  padding: 18px 20px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  font-size: 12px;
}

.stay-note p {
  margin: 0;
}

.note-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--cream);
  background: var(--clay);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 12px;
}

.location {
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 10%;
  align-items: center;
}

.location-copy {
  max-width: 500px;
}

.location-copy .eyebrow {
  margin-top: 80px;
}

.location-copy h2 {
  margin-top: 25px;
  font-size: 57px;
}

.location-copy > p:not(.eyebrow) {
  max-width: 410px;
  margin: 38px 0 31px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.map-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--ink-soft);
  background: #d7d2c5;
}

.map-panel::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(29, 42, 34, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 42, 34, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.map-topline {
  position: absolute;
  top: 24px;
  right: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(29, 42, 34, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.map-lake {
  position: absolute;
  top: 20%;
  right: -4%;
  width: 63%;
  height: 47%;
  background: #a8bdba;
  clip-path: polygon(34% 0, 68% 8%, 100% 28%, 90% 54%, 66% 62%, 52% 88%, 15% 100%, 0 78%, 15% 51%, 4% 25%);
  opacity: 0.8;
}

.map-contour,
.map-road {
  position: absolute;
  border: 1px solid rgba(29, 42, 34, 0.2);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.contour-one {
  top: 17%;
  left: 4%;
  width: 66%;
  height: 40%;
}

.contour-two {
  top: 29%;
  left: 10%;
  width: 53%;
  height: 29%;
}

.contour-three {
  top: 40%;
  left: 17%;
  width: 41%;
  height: 21%;
}

.map-road {
  height: 1px;
  border: 0;
  border-radius: 0;
  background: rgba(29, 42, 34, 0.5);
  transform-origin: left center;
}

.road-one {
  top: 77%;
  left: 4%;
  width: 79%;
  transform: rotate(-26deg);
}

.road-two {
  top: 45%;
  left: 19%;
  width: 46%;
  transform: rotate(21deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.map-pin::before {
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.map-pin-city {
  bottom: 17%;
  left: 10%;
}

.map-pin-lanbo {
  top: 38%;
  right: 26%;
}

.map-pin-lanbo::before {
  border-color: var(--clay);
  background: var(--clay);
  box-shadow: 0 0 0 6px rgba(180, 119, 83, 0.16);
}

.map-distance {
  position: absolute;
  bottom: 19%;
  left: 36%;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
}

.map-distance small {
  color: rgba(29, 42, 34, 0.6);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-legend {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 21px;
  color: rgba(29, 42, 34, 0.68);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot,
.legend-line {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #a8bdba;
}

.legend-line {
  width: 17px;
  height: 1px;
  background: rgba(29, 42, 34, 0.5);
}

.booking {
  overflow: hidden;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 10%;
  align-items: start;
}

.booking-aside {
  max-width: 500px;
}

.booking-aside .eyebrow {
  margin-top: 78px;
}

.booking-aside h2 {
  margin-top: 25px;
  color: var(--cream);
  font-size: 58px;
}

.booking-aside > p:not(.eyebrow) {
  max-width: 420px;
  margin: 38px 0 0;
  color: #bfc7bd;
  font-size: 14px;
  line-height: 1.9;
}

.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 90px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  color: #a6b0a6;
  font-size: 11px;
}

.booking-contact a {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 19px;
}

.booking-form-wrap {
  position: relative;
  min-height: 620px;
}

.booking-form {
  padding: 37px 39px 35px;
  color: var(--cream);
  background: var(--forest-soft);
  border: 1px solid rgba(245, 240, 230, 0.14);
}

.booking-form[hidden],
.form-success[hidden] {
  display: none;
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line-light);
}

.form-heading p,
.form-heading span {
  margin: 0;
  color: #d3cbbd;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.form-heading span {
  color: #9eaa9f;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 24px;
}

.booking-form label > span {
  color: #b5c0b5;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 9px 0 11px;
  color: var(--cream);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.28);
  border-radius: 0;
  outline: 0;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #869789;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--cream);
}

.booking-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #b5c0b5 50%), linear-gradient(135deg, #b5c0b5 50%, transparent 50%);
  background-position: calc(100% - 7px) 50%, calc(100% - 2px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.booking-form option {
  color: var(--ink);
  background: var(--cream);
}

.booking-form textarea {
  resize: vertical;
}

.form-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-top: 34px;
}

.form-bottom p {
  max-width: 230px;
  margin: 0;
  color: #91a094;
  font-size: 10px;
  line-height: 1.6;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 620px;
  padding: 48px 40px;
  color: var(--cream);
  background: var(--forest-soft);
  border: 1px solid rgba(245, 240, 230, 0.14);
}

.success-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 75px;
  color: var(--forest);
  background: var(--cream);
  border-radius: 50%;
  font-size: 18px;
}

.form-success h3 {
  margin: 24px 0 17px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.form-success > p:not(.eyebrow) {
  max-width: 350px;
  margin: 0 0 32px;
  color: #bfc7bd;
  font-size: 14px;
  line-height: 1.8;
}

.site-footer {
  padding: 50px 0 46px;
  color: var(--cream);
  background: var(--forest-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: end;
  gap: 30px;
}

.brand-mark-footer {
  color: var(--cream);
}

.footer-note {
  margin: 22px 0 0;
  color: #93a092;
  font-family: var(--serif);
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  color: #c5cbbb;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #89978d;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes hero-zoom {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 22px;
    margin-left: 2%;
  }

  .header-place {
    display: none;
  }

  .section-pad {
    padding: 120px 0;
  }

  .intro-copy h2,
  .section-head-copy h2 {
    font-size: 58px;
  }

  .intro-lede,
  .intro-details {
    margin-left: 0;
  }

  .room-item {
    gap: 6%;
  }

  .commons-copy h2,
  .location-copy h2,
  .booking-aside h2 {
    font-size: 50px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .page-shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .section-pad {
    padding: 92px 0;
  }

  .header-inner {
    width: calc(100% - 48px);
    min-height: 70px;
  }

  .brand-cn {
    font-size: 20px;
  }

  .brand-en {
    font-size: 8px;
  }

  .desktop-nav,
  .header-actions > .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: block;
    padding: 21px 24px 27px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 23px;
  }

  .mobile-menu nav a span {
    color: var(--clay);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
  }

  .mobile-menu .mobile-booking-link {
    color: var(--forest);
  }

  .mobile-menu > p {
    margin: 21px 0 0;
    color: var(--ink-soft);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
  }

  .hero {
    height: min(730px, 86vh);
    min-height: 640px;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 35px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: 72px;
  }

  .hero h1 em {
    margin-top: 8px;
    font-size: 13px;
  }

  .hero-intro {
    margin-top: 26px;
  }

  .hero-intro p {
    font-size: 19px;
  }

  .hero-intro .hero-subcopy {
    font-size: 11px;
  }

  .hero-footer {
    grid-template-columns: auto 1fr;
    gap: 20px;
    margin-top: 57px;
  }

  .hero-scroll {
    justify-self: end;
  }

  .hero-meta,
  .hero-index {
    display: none;
  }

  .intro-grid,
  .section-head,
  .stay-grid {
    display: block;
  }

  .intro-grid > .section-label,
  .section-head > .section-label,
  .stay-grid > .section-label {
    margin-bottom: 43px;
  }

  .intro-copy h2,
  .section-head-copy h2 {
    font-size: 47px;
  }

  .intro-lede {
    margin-top: 37px;
    font-size: 19px;
  }

  .intro-rule {
    margin-top: 39px;
  }

  .intro-details {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .intro-details .text-link {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 8px;
  }

  .section-head-copy h2 {
    margin-top: 20px;
  }

  .room-list {
    margin-top: 57px;
  }

  .room-item,
  .room-item-reverse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 38px;
    padding: 48px 0 56px;
  }

  .room-item-reverse .room-image-wrap,
  .room-item-reverse .room-info {
    grid-column: auto;
    grid-row: auto;
  }

  .room-image-wrap {
    aspect-ratio: 1.18;
  }

  .room-info {
    max-width: none;
  }

  .room-info h3 {
    font-size: 39px;
  }

  .room-info > p {
    font-size: 13px;
  }

  .commons-grid,
  .location-grid,
  .booking-grid {
    display: block;
  }

  .commons-copy {
    max-width: none;
    margin-top: 48px;
  }

  .commons-copy h2,
  .location-copy h2,
  .booking-aside h2 {
    font-size: 43px;
  }

  .commons-copy > p {
    margin-top: 28px;
  }

  .stay-intro h2 {
    font-size: 47px;
  }

  .stay-columns {
    grid-template-columns: 1fr;
    gap: 37px;
    margin-top: 52px;
  }

  .stay-note {
    margin-top: 42px;
  }

  .location-copy {
    max-width: none;
  }

  .location-copy .eyebrow {
    margin-top: 46px;
  }

  .location-copy > p:not(.eyebrow) {
    margin-top: 28px;
  }

  .map-panel {
    min-height: 390px;
    margin-top: 55px;
  }

  .map-distance {
    bottom: 20%;
    left: 32%;
  }

  .booking-aside .eyebrow {
    margin-top: 46px;
  }

  .booking-aside > p:not(.eyebrow) {
    margin-top: 28px;
  }

  .booking-contact {
    margin-top: 46px;
  }

  .booking-form-wrap {
    min-height: 0;
    margin-top: 54px;
  }

  .booking-form {
    padding: 27px 21px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .form-bottom .button {
    width: 100%;
  }

  .form-success {
    min-height: 480px;
    padding: 31px 23px;
  }

  .success-mark {
    margin-bottom: 55px;
  }

  .form-success h3 {
    font-size: 40px;
  }

  .footer-grid {
    display: block;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 38px;
  }

  .footer-meta {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 42px;
    text-align: left;
  }
}

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

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

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