:root {
  --ink: #141414;
  --smoke: #f3f1ea;
  --paper: #fffaf0;
  --clay: #b86442;
  --indigo: #18324a;
  --moss: #8c9a72;
  --line: rgba(20, 20, 20, 0.16);
  --shadow: 0 24px 70px rgba(20, 20, 20, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --brand-font: "Sakura Namazu", "桜鯰", "桜鯰毛筆体", "Ounen-mouhitsu",
    "Hiragino Mincho ProN", "Yu Mincho", serif;
}

@font-face {
  font-family: "Sakura Namazu";
  src:
    url("../../fonts/Ounen-mouhitsu.otf") format("opentype"),
    local("桜鯰"),
    local("桜鯰毛筆体"),
    local("Ounen-mouhitsu"),
    local("Sakura Namazu"),
    local("Sakuranamazu");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--smoke);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Microsoft YaHei", sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.16;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 3px 3px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(18px, 4vw, 54px);
  color: var(--paper);
  transition:
    background 420ms var(--ease),
    color 420ms var(--ease),
    padding 420ms var(--ease),
    border-color 420ms var(--ease);
}

.site-header.is-scrolled {
  padding-block: 14px;
  color: var(--ink);
  background: rgba(243, 241, 234, 0.82);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  width: max-content;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.9;
  font-family: var(--brand-font);
}

.brand-mark span {
  font-size: 24px;
}

.brand-mark small {
  font-size: 10px;
  font-weight: 650;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 3vw, 42px);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.site-nav a,
.language-switcher a,
.nav-action,
.secondary-link {
  position: relative;
}

.site-nav a::after,
.language-switcher a::after,
.nav-action::after,
.secondary-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 360ms var(--ease);
}

.site-nav a:hover::after,
.language-switcher a:hover::after,
.nav-action:hover::after,
.secondary-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 760;
}

.language-switcher a {
  color: currentColor;
  opacity: 0.62;
}

.language-switcher a[aria-current="true"] {
  opacity: 1;
}

.nav-action {
  font-size: 13px;
  font-weight: 720;
}

.hero {
  position: relative;
  min-height: 96svh;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.08);
  animation: heroSettle 1800ms var(--ease) forwards;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 196, 102, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(10, 12, 16, 0.76), rgba(10, 12, 16, 0.22) 52%, rgba(10, 12, 16, 0.48)),
    linear-gradient(0deg, rgba(10, 12, 16, 0.74), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 96svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(98px, 14vh, 150px) clamp(18px, 4vw, 54px) clamp(44px, 8vh, 82px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd08a;
}

.hero h1 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(58px, 10.2vw, 136px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1.brand-title {
  font-family: var(--brand-font);
  font-size: clamp(96px, 22vw, 264px);
  line-height: 0.9;
}

.hero h1 span {
  display: block;
}

.hero h1 small {
  display: block;
  margin-top: clamp(4px, 1vw, 14px);
  font-family: var(--brand-font);
  font-size: clamp(24px, 4.8vw, 58px);
  font-weight: 760;
  line-height: 1;
}

.hero h1 span:last-child {
  font-size: 0.82em;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 620px) auto;
  align-items: end;
  gap: 28px;
  width: min(100%, 1180px);
  margin-top: clamp(30px, 7vh, 72px);
}

.hero-copy h2 {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--paper);
  font-size: clamp(25px, 3.8vw, 52px);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-bottom p {
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.hero-booking-link {
  border-color: rgba(255, 208, 138, 0.62);
  color: #ffd08a;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 240, 0.5);
  border-radius: 999px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
  transition:
    transform 300ms var(--ease),
    background 300ms var(--ease),
    color 300ms var(--ease),
    border-color 300ms var(--ease);
}

.primary-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-link:hover {
  transform: translateY(-2px);
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.primary-link.dark {
  border-color: var(--ink);
  color: var(--ink);
}

.primary-link.dark:hover {
  background: var(--ink);
  color: var(--paper);
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 36px;
  z-index: 3;
  width: 1px;
  height: 86px;
  background: rgba(255, 250, 240, 0.24);
  overflow: hidden;
}

.scroll-cue span {
  display: block;
  width: 100%;
  height: 28px;
  background: var(--paper);
  animation: scrollCue 1800ms var(--ease) infinite;
}

.section-pad {
  padding: clamp(62px, 9vw, 112px) clamp(18px, 4vw, 54px);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.6fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.intro h2,
.section-head h2,
.feature-copy h2,
.access-copy h2,
.contact h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(34px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro p,
.access-copy p,
.contact p,
.room-tile-info p {
  margin: 0;
  color: rgba(20, 20, 20, 0.72);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.9;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(46px, 8vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-row span {
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--indigo);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 760;
  text-transform: uppercase;
}

.signal-row span:last-child {
  border-right: 0;
}

.feature-band {
  position: relative;
  display: grid;
  min-height: 88vh;
  color: var(--paper);
  background: var(--indigo);
  overflow: hidden;
}

.feature-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.1);
}

.feature-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(860px, 100%);
  padding: clamp(54px, 9vw, 120px) clamp(18px, 4vw, 54px);
}

.feature-copy h2 {
  color: var(--paper);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(36px, 7vw, 86px);
}

.section-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(20, 20, 20, 0.68);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.9;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.room-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.room-tile-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: #d6d0c4;
}

.room-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.room-tile:hover .room-tile-media img {
  transform: scale(1.045);
}

.room-tile-info {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.room-number {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 14px;
  font-weight: 820;
}

.room-tile-info h3 {
  margin: 0 0 18px;
  color: var(--indigo);
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.08;
}

.room-tile-info .room-recommend {
  margin-top: 18px;
  color: rgba(20, 20, 20, 0.92);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.65;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.room-meta span {
  padding: 10px 13px;
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 999px;
  color: rgba(20, 20, 20, 0.76);
  font-size: 12px;
  font-weight: 720;
}

.gallery {
  background: var(--smoke);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, 22vw);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 6px;
  cursor: zoom-in;
  background: #d7d2c8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 900ms var(--ease),
    filter 600ms var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.02);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.access {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.76fr);
  min-height: 86vh;
  background: var(--ink);
  color: var(--paper);
}

.access-media {
  min-height: 520px;
  overflow: hidden;
}

.access-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) brightness(0.78);
}

.access-copy {
  align-self: center;
  padding: clamp(52px, 8vw, 112px) clamp(18px, 4vw, 64px);
}

.access-copy p {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(255, 250, 240, 0.72);
}

.access-list {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
}

.access-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
}

.access-list div:last-child {
  border-bottom: 1px solid rgba(255, 250, 240, 0.18);
}

.access-list dt,
.access-list dd {
  margin: 0;
}

.access-list dt {
  color: #ffd08a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.access-list dd {
  color: rgba(255, 250, 240, 0.86);
  line-height: 1.5;
}

.access-list dd strong,
.access-list dd span {
  display: block;
}

.access-list dd strong {
  color: var(--paper);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 780;
  line-height: 1.55;
}

.access-list dd span {
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.68);
}

.access-list dd .address-line {
  color: rgba(255, 250, 240, 0.58);
  font-size: 13px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 20px;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 999px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 760;
  transition:
    transform 300ms var(--ease),
    background 300ms var(--ease),
    color 300ms var(--ease);
}

.map-link:hover {
  transform: translateY(-2px);
  background: var(--paper);
  color: var(--ink);
}

.contact {
  background: var(--moss);
}

.contact-inner {
  max-width: 980px;
}

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

.contact p {
  max-width: 650px;
  margin-top: 24px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
}

.secondary-link {
  color: rgba(20, 20, 20, 0.78);
  font-size: 14px;
  font-weight: 760;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: var(--smoke);
  color: rgba(20, 20, 20, 0.68);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(8, 9, 11, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
}

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

.lightbox img {
  max-width: min(100%, 1280px);
  max-height: 86vh;
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  transform: scale(0.96);
  transition: transform 300ms var(--ease);
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.35);
  border-radius: 50%;
  color: var(--paper);
  cursor: pointer;
}

.lightbox-close svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
}

html[lang="zh-CN"] body {
  font-family:
    "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei",
    "Heiti SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis-weight: none;
}

html[lang="zh-CN"] .site-nav,
html[lang="zh-CN"] .language-switcher,
html[lang="zh-CN"] .nav-action,
html[lang="zh-CN"] .primary-link,
html[lang="zh-CN"] .secondary-link,
html[lang="zh-CN"] .section-kicker,
html[lang="zh-CN"] .room-number,
html[lang="zh-CN"] .room-tile-info .room-recommend,
html[lang="zh-CN"] .room-meta span,
html[lang="zh-CN"] .access-list dt,
html[lang="zh-CN"] .access-list dd strong {
  font-weight: 700;
}

html[lang="zh-CN"] .hero-copy h2 {
  max-width: 760px;
  font-size: clamp(24px, 3.1vw, 44px);
  font-weight: 700;
  line-height: 1.18;
}

html[lang="zh-CN"] .hero-bottom p {
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.72;
}

html[lang="zh-CN"] .section-head h2,
html[lang="zh-CN"] .access-copy h2,
html[lang="zh-CN"] .contact h2 {
  font-size: clamp(34px, 5.2vw, 74px);
  font-weight: 700;
  line-height: 1.08;
}

html[lang="zh-CN"] .access-copy h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.16;
}

html[lang="zh-CN"] .section-intro,
html[lang="zh-CN"] .access-copy p,
html[lang="zh-CN"] .contact p,
html[lang="zh-CN"] .room-tile-info p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.86;
}

html[lang="zh-CN"] .room-tile-info h3 {
  font-size: clamp(24px, 2.15vw, 34px);
  font-weight: 700;
  line-height: 1.18;
}

html[lang="zh-CN"] .room-tile-info .room-recommend {
  font-size: 13px;
  line-height: 1.7;
}

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

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

@keyframes heroSettle {
  to {
    transform: scale(1);
  }
}

@keyframes scrollCue {
  0% {
    transform: translateY(-28px);
  }
  100% {
    transform: translateY(86px);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .language-switcher {
    gap: 7px;
    font-size: 10px;
  }

  .hero-bottom,
  .intro-grid,
  .section-head,
  .access {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .room-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(170px, 44vw);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }

  .nav-action {
    font-size: 12px;
  }

  .language-switcher {
    gap: 6px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 82px);
  }

  .hero-bottom {
    align-items: start;
  }

  .primary-link {
    min-height: 46px;
    padding-inline: 18px;
  }

  .signal-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-row span:nth-child(2) {
    border-right: 0;
  }

  .signal-row span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .room-media {
    min-height: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(240px, 72vw);
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .access-media {
    min-height: 330px;
  }

  .access-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

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