:root {
  --ink: #0d0b0a;
  --ink-soft: #17120f;
  --espresso: #22170f;
  --bronze: #8f6b3c;
  --gold: #caa76a;
  --gold-soft: #ead3a7;
  --ivory: #f6f0e7;
  --sand: #e7ddd0;
  --taupe: #b9aa98;
  --line: rgba(231, 211, 170, 0.22);
  --white-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 80px rgba(8, 5, 3, 0.25);
  --serif: "Iowan Old Style", "Palatino Linotype", "Noto Serif SC", "Songti SC", STSong, Georgia, serif;
  --sans: Inter, "SF Pro Display", "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --content: min(1180px, calc(100vw - 48px));
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[lang="zh-Hant"] body {
  font-family: Inter, "SF Pro Display", "PingFang TC", "Microsoft JhengHei", "Noto Sans TC", Arial, sans-serif;
}

html[lang="ja"] {
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Noto Serif SC", Georgia, serif;
  --sans: Inter, "SF Pro Display", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, "Noto Sans JP", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 0%, rgba(155, 105, 55, 0.14), transparent 38rem),
    radial-gradient(circle at 85% 42%, rgba(202, 167, 106, 0.08), transparent 42rem),
    var(--ink);
  content: "";
}

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

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
  padding: 10px 18px;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.container {
  width: var(--content);
  margin-inline: auto;
}

.announcement {
  min-height: 34px;
  border-bottom: 1px solid rgba(202, 167, 106, 0.18);
  background: #0a0807;
  color: #d8c7ac;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announcement .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.announcement a {
  color: var(--gold-soft);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 11, 10, 0.88);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px) saturate(125%);
}

.header-main {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(202, 167, 106, 0.5);
  border-radius: 50%;
  background: #f1ebe2;
  box-shadow: 0 0 0 5px rgba(202, 167, 106, 0.06);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.15;
}

.brand-city {
  color: var(--taupe);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.25vw, 34px);
  color: #ded4c7;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  padding-block: 31px;
  white-space: nowrap;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.035);
}

.language-switcher a {
  min-width: 31px;
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--taupe);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
}

.language-switcher a[aria-current="page"] {
  background: var(--ivory);
  color: var(--ink);
}

.wechat-header {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 9px;
  min-width: 166px;
  border: 1px solid rgba(202, 167, 106, 0.46);
  border-radius: 2px;
  padding: 9px 13px;
  background: linear-gradient(135deg, rgba(202, 167, 106, 0.18), rgba(202, 167, 106, 0.06));
  color: var(--gold-soft);
  line-height: 1.05;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.wechat-header:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: rgba(202, 167, 106, 0.16);
}

.wechat-dot {
  grid-row: 1 / span 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #62c36f;
  box-shadow: 0 0 0 5px rgba(98, 195, 111, 0.1);
}

.wechat-header span {
  color: #d4c7b6;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wechat-header strong {
  font-size: 13px;
  letter-spacing: 0.04em;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, calc(100vh - 120px));
  overflow: hidden;
  background: #17100b;
}

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

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(0.78) contrast(1.03) brightness(0.74);
}

.hero-media::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.97) 0%, rgba(10, 8, 7, 0.83) 38%, rgba(10, 8, 7, 0.24) 71%, rgba(10, 8, 7, 0.12) 100%),
    linear-gradient(0deg, rgba(10, 8, 7, 0.84) 0%, transparent 42%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.25), transparent 30%);
  content: "";
}

.hero-layout {
  min-height: min(820px, calc(100vh - 120px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: clamp(54px, 9vw, 130px);
  padding-block: clamp(88px, 11vh, 140px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.23em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.3vw, 92px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold-soft);
  font-style: normal;
}

.hero-lead {
  max-width: 625px;
  margin: 27px 0 0;
  color: #ded4c8;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 12px 21px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #e1c28a, #b88745);
  box-shadow: 0 15px 34px rgba(162, 114, 53, 0.2);
  color: #18100a;
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(162, 114, 53, 0.32);
}

.button-outline {
  border-color: rgba(246, 240, 231, 0.34);
  background: rgba(14, 11, 9, 0.32);
  color: var(--ivory);
  backdrop-filter: blur(10px);
}

.button-quiet {
  min-height: 46px;
  border-color: rgba(202, 167, 106, 0.36);
  background: rgba(202, 167, 106, 0.08);
  color: var(--gold-soft);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 25px 0 0;
  padding: 0;
  color: #cbbdac;
  font-size: 12px;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-facts li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.error-eyebrow {
  margin-top: 42px;
}

.hero-booking-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(234, 211, 167, 0.32);
  border-radius: 2px;
  padding: 30px 28px;
  background: linear-gradient(155deg, rgba(28, 20, 14, 0.84), rgba(12, 10, 8, 0.68));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-booking-card::before {
  position: absolute;
  top: -52px;
  right: -52px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(202, 167, 106, 0.23);
  border-radius: 50%;
  content: "";
}

.card-kicker {
  margin: 0;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-booking-card h2 {
  margin: 10px 0 7px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-booking-card p {
  margin: 0;
  color: #cbbdac;
  font-size: 13px;
}

.wechat-number {
  display: block;
  margin: 18px 0 15px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.mini-steps {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  counter-reset: booking-step;
  list-style: none;
}

.mini-steps li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 9px;
  color: #d8cec1;
  font-size: 12px;
  counter-increment: booking-step;
}

.mini-steps li::before {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 167, 106, 0.4);
  border-radius: 50%;
  color: var(--gold-soft);
  content: counter(booking-step, decimal-leading-zero);
  font-size: 8px;
  font-weight: 800;
}

.section {
  position: relative;
  padding-block: clamp(90px, 11vw, 150px);
}

.section-light {
  background: var(--ivory);
  color: #211811;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.46fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2,
.editorial-copy h2,
.booking-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(41px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0;
  color: #6f6255;
  font-size: 15px;
  line-height: 1.9;
}

.section-light .eyebrow {
  color: #8a642e;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.editorial-media {
  position: relative;
  min-height: 620px;
}

.editorial-media::before {
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid rgba(143, 107, 60, 0.3);
  content: "";
}

.editorial-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
}

.editorial-index {
  position: absolute;
  right: -38px;
  bottom: -44px;
  z-index: 2;
  color: rgba(143, 107, 60, 0.18);
  font-family: var(--serif);
  font-size: 124px;
  line-height: 1;
}

.editorial-copy p {
  margin: 23px 0 0;
  color: #66594d;
  line-height: 2;
}

.signature-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(76, 55, 34, 0.17);
  border-left: 1px solid rgba(76, 55, 34, 0.17);
}

.signature-point {
  min-height: 112px;
  border-right: 1px solid rgba(76, 55, 34, 0.17);
  border-bottom: 1px solid rgba(76, 55, 34, 0.17);
  padding: 20px;
}

.signature-point strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.signature-point span {
  display: block;
  color: #766a5d;
  font-size: 12px;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 35%),
    #100d0b;
}

.services-section .section-heading > p {
  color: #afa192;
}

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

.service-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--white-line);
  background: #19130f;
}

.service-card img,
.service-card::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  filter: saturate(0.72) brightness(0.76);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 700ms ease;
}

.service-card::after {
  background: linear-gradient(0deg, rgba(9, 7, 5, 0.98) 0%, rgba(9, 7, 5, 0.58) 38%, rgba(9, 7, 5, 0.08) 76%);
  content: "";
}

.service-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.83) brightness(0.83);
}

.service-content {
  position: absolute;
  right: 28px;
  bottom: 29px;
  left: 28px;
  z-index: 2;
}

.service-index {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-content h3 {
  margin: 9px 0 9px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.16;
}

.service-content p {
  margin: 0;
  color: #c3b7aa;
  font-size: 13px;
  line-height: 1.75;
}

.service-more {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.service-more article {
  min-height: 165px;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  padding: 27px;
}

.service-more h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.service-more p {
  margin: 0;
  color: #a99c8d;
  font-size: 12px;
}

.service-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 27px;
}

.service-cta p {
  margin: 0;
  color: #b4a697;
  font-size: 13px;
}

.service-cta strong {
  color: var(--gold-soft);
}

.image-statement {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #1b130e;
}

.image-statement picture,
.image-statement img,
.image-statement::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.image-statement img {
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.65) brightness(0.64);
}

.image-statement::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 10, 8, 0.9), rgba(15, 10, 8, 0.5) 55%, rgba(15, 10, 8, 0.12)),
    linear-gradient(0deg, rgba(15, 10, 8, 0.55), transparent 48%);
  content: "";
}

.statement-copy {
  max-width: 700px;
  padding-block: 100px;
}

.statement-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6.2vw, 82px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.statement-copy p {
  max-width: 590px;
  margin: 24px 0 0;
  color: #ddd1c4;
  font-size: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid rgba(75, 54, 33, 0.2);
  border-left: 1px solid rgba(75, 54, 33, 0.2);
}

.process-step {
  min-height: 290px;
  border-right: 1px solid rgba(75, 54, 33, 0.2);
  border-bottom: 1px solid rgba(75, 54, 33, 0.2);
  padding: 34px;
}

.process-number {
  display: block;
  margin-bottom: 52px;
  color: #9b7139;
  font-family: var(--serif);
  font-size: 34px;
}

.process-step h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: #716457;
  font-size: 13px;
}

.process-note {
  margin: 24px 0 0;
  color: #75685b;
  font-size: 12px;
}

.faq-section {
  background: #14100d;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.52fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 125px);
}

.faq-intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.faq-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.06;
}

.faq-intro p {
  margin: 20px 0 0;
  color: #a99c8d;
  font-size: 13px;
}

.faq-list {
  border-top: 1px solid var(--white-line);
}

.faq-list details {
  border-bottom: 1px solid var(--white-line);
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  color: #eee5da;
  font-family: var(--serif);
  font-size: 21px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 28px;
  right: 4px;
  color: var(--gold-soft);
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 750px;
  padding: 0 48px 27px 0;
  color: #aa9d8f;
  font-size: 14px;
}

.faq-answer p {
  margin: 0;
}

.booking {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #18100b;
}

.booking picture,
.booking picture img,
.booking::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.booking picture img {
  object-fit: cover;
  filter: saturate(0.65) brightness(0.55);
}

.booking::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 8, 6, 0.95) 0%, rgba(10, 8, 6, 0.82) 48%, rgba(10, 8, 6, 0.27) 100%),
    linear-gradient(0deg, rgba(10, 8, 6, 0.75), transparent 50%);
  content: "";
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.48fr);
  align-items: center;
  gap: clamp(60px, 10vw, 145px);
  padding-block: 110px;
}

.booking-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #d1c5b7;
}

.booking-panel {
  border: 1px solid rgba(234, 211, 167, 0.34);
  padding: 34px;
  background: rgba(13, 10, 8, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-panel-label {
  margin: 0;
  color: #cbbca9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-panel .wechat-number {
  margin-block: 12px 8px;
  font-size: clamp(28px, 3vw, 39px);
}

.booking-panel-note {
  margin: 0 0 22px;
  color: #b9ac9e;
  font-size: 13px;
}

.booking-panel .button {
  width: 100%;
}

.copy-status {
  min-height: 24px;
  margin: 9px 0 0;
  color: #b9d7ba;
  font-size: 11px;
  text-align: center;
}

.secondary-contact {
  margin-top: 17px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  color: #b7aa9c;
  font-size: 12px;
  text-align: center;
}

.secondary-contact a {
  color: #e1d6c8;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--white-line);
  padding: 58px 0 96px;
  background: #090706;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  align-items: start;
  gap: 55px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 450px;
  margin: 0;
  color: #94887b;
  font-size: 12px;
}

.footer-heading {
  margin: 0 0 15px;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: #c3b7aa;
  font-size: 13px;
}

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

.footer-wechat {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 23px;
}

.copyright {
  width: var(--content);
  margin: 44px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  color: #746b62;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.floating-wechat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-width: 194px;
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: center;
  column-gap: 11px;
  border: 1px solid rgba(234, 211, 167, 0.56);
  border-radius: 2px;
  padding: 12px 15px;
  background: rgba(18, 13, 10, 0.92);
  box-shadow: 0 17px 45px rgba(0, 0, 0, 0.35);
  color: var(--gold-soft);
  backdrop-filter: blur(18px);
}

.floating-wechat::before {
  grid-row: 1 / span 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #62c36f;
  box-shadow: 0 0 0 5px rgba(98, 195, 111, 0.1);
  content: "";
}

.floating-wechat span {
  color: #c0b4a6;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.floating-wechat strong {
  font-size: 13px;
  line-height: 1.3;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1100px) {
  .header-main {
    gap: 22px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a:nth-child(3) {
    display: none;
  }

  .wechat-header {
    min-width: 154px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 48px;
  }

  .editorial {
    gap: 65px;
  }
}

@media (max-width: 900px) {
  :root {
    --content: min(100% - 36px, 760px);
  }

  html {
    scroll-padding-top: 132px;
  }

  .announcement .container {
    justify-content: center;
    text-align: center;
  }

  .announcement span:first-child {
    display: none;
  }

  .header-main {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 17px;
  }

  .desktop-nav,
  .wechat-header {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .mobile-nav {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px max(18px, calc((100vw - 760px) / 2));
    color: #c7baab;
    font-size: 11px;
    scrollbar-width: none;
  }

  .mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav a {
    flex-shrink: 0;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 98px 74px;
  }

  .hero-booking-card {
    max-width: 480px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(10, 8, 7, 0.94), rgba(10, 8, 7, 0.54) 78%, rgba(10, 8, 7, 0.3)),
      linear-gradient(0deg, rgba(10, 8, 7, 0.94), transparent 58%);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .editorial {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .editorial-media {
    min-height: 560px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 560px;
  }

  .service-more {
    grid-template-columns: 1fr;
  }

  .service-more article {
    min-height: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }

  .process-number {
    margin-bottom: 26px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-intro {
    position: static;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .booking-panel {
    max-width: 510px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --content: calc(100% - 32px);
  }

  body {
    padding-bottom: calc(69px + env(safe-area-inset-bottom));
  }

  .announcement {
    font-size: 9px;
  }

  .header-main {
    min-height: 70px;
    gap: 14px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand-name {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

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

  .language-switcher a {
    min-width: 28px;
    padding: 5px 7px;
    font-size: 9px;
  }

  .mobile-nav {
    gap: 21px;
    padding-inline: 16px;
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-layout {
    padding-block: 76px 58px;
  }

  .hero h1 {
    font-size: clamp(43px, 14.2vw, 64px);
    line-height: 1.01;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    gap: 8px 17px;
  }

  .hero-booking-card {
    padding: 25px 22px;
  }

  .section {
    padding-block: 84px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .editorial-copy h2,
  .booking-copy h2 {
    font-size: clamp(39px, 11.7vw, 52px);
  }

  .editorial-media {
    min-height: 470px;
  }

  .editorial-media::before {
    inset: 16px -10px -16px 10px;
  }

  .editorial-index {
    right: 2px;
    bottom: -34px;
    font-size: 92px;
  }

  .signature-points {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 460px;
  }

  .service-content {
    right: 22px;
    bottom: 23px;
    left: 22px;
  }

  .service-content h3 {
    font-size: 27px;
  }

  .service-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .service-cta .button {
    width: 100%;
  }

  .image-statement {
    min-height: 660px;
  }

  .image-statement img {
    object-position: 60% center;
  }

  .statement-copy {
    padding-block: 90px;
  }

  .statement-copy h2 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .process-step {
    padding: 27px;
  }

  .faq-list summary {
    font-size: 19px;
  }

  .booking {
    min-height: auto;
  }

  .booking::after {
    background: linear-gradient(0deg, rgba(10, 8, 6, 0.96), rgba(10, 8, 6, 0.62));
  }

  .booking-layout {
    padding-block: 88px;
  }

  .booking-panel {
    padding: 26px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .site-footer {
    padding-bottom: 58px;
  }

  .floating-wechat {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    min-height: calc(69px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.8fr);
    gap: 1px;
    border-top: 1px solid rgba(234, 211, 167, 0.42);
    background: #251b14;
    box-shadow: 0 -15px 45px rgba(0, 0, 0, 0.35);
  }

  .mobile-contact-bar a {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
  }

  .mobile-contact-bar a:first-child {
    background: linear-gradient(135deg, #e2c58d, #b98947);
    color: #18100a;
  }

  .mobile-contact-bar a:last-child {
    background: #17110d;
    color: #e6d9c8;
  }
}

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

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

@media print {
  .announcement,
  .site-header,
  .floating-wechat,
  .mobile-contact-bar,
  .button {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
    color: #111;
  }
}
