:root {
  color-scheme: dark;
  --bg: #060606;
  --bg-2: #0a0808;
  --surface: rgba(18, 15, 15, .94);
  --surface-2: rgba(24, 18, 19, .9);
  --surface-3: rgba(42, 20, 25, .68);
  --line: rgba(242, 231, 216, .12);
  --line-strong: rgba(215, 176, 92, .42);
  --text: #f6f1e9;
  --soft: #d8cec4;
  --muted: #9f948b;
  --gold: #d6ad59;
  --gold-2: #efcf7c;
  --gold-3: #9f722b;
  --wine: #4d0d19;
  --wine-2: #861d31;
  --shadow: 0 30px 90px rgba(0, 0, 0, .58);
  --max: 1280px;
  --font: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  --serif: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #060606 0, #090707 48%, #040404 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(77, 13, 25, .14), transparent 32%, transparent 72%, rgba(134, 29, 49, .05)),
    linear-gradient(180deg, rgba(255, 255, 255, .025), transparent 180px, transparent 72%, rgba(0, 0, 0, .46));
}

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

a,
button {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(241, 217, 154, .9);
  outline-offset: 3px;
}

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

p,
h1,
h2,
h3,
a,
span,
strong,
dd,
td,
th,
li,
b {
  overflow-wrap: anywhere;
  word-break: normal;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.12;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 30;
  transform: translateY(-150%);
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #f3d98f;
  color: #130d05;
  font-weight: 900;
}

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

.site-head {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 6, 6, .98);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .34);
}

.site-head__inner,
main,
.footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
  min-width: max-content;
  color: var(--text);
  font-weight: 900;
}

.brand__mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(190, 72, 85, .88);
  border-radius: 7px;
  background: linear-gradient(145deg, #851d32, #56101d);
  color: #efd27d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 12px 28px rgba(77, 13, 25, .28);
}

.brand__name {
  color: var(--text);
  font-family: var(--font);
  font-size: 1.28rem;
  font-weight: 900;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 4px;
  min-width: 0;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 13px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--soft);
  font-size: .92rem;
  font-weight: 850;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  border-color: transparent;
  background: transparent;
  color: var(--text);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s ease;
}

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

.head-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(178, 54, 76, .72);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(134, 29, 49, .94), rgba(77, 13, 25, .9));
  color: #fff6e8;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 12px 28px rgba(77, 13, 25, .28);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.head-phone:hover {
  border-color: rgba(226, 83, 107, .9);
  background:
    linear-gradient(180deg, rgba(150, 32, 55, .98), rgba(91, 17, 31, .96));
  color: #fffaf0;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  width: 100vw;
  min-height: calc(100vh - 92px);
  margin-left: calc(50% - 50vw);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(6, 6, 6, .99) 0 38%, rgba(8, 6, 6, .88) 56%, rgba(8, 5, 6, .5)),
    linear-gradient(180deg, rgba(77, 13, 25, .16), rgba(0, 0, 0, .94)),
    #060606;
}

.hero__photo {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: min(70vw, 1080px);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.04) contrast(1.06) brightness(1.08);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, .96) 0 36%, rgba(6, 5, 5, .7) 56%, rgba(6, 4, 5, .08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 18%, transparent 70%, rgba(0, 0, 0, .72));
}

.hero__inner {
  display: grid;
  align-content: center;
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 92px 0 132px;
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #f8f3ec;
  font-family: var(--font);
  font-weight: 900;
  font-size: 5.15rem;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .86), 0 1px 2px rgba(0, 0, 0, .92);
}

.hero__lead {
  max-width: 720px;
  color: #e4d9cf;
  font-size: 1.04rem;
  line-height: 1.95;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .52);
}

.hero__actions,
.page-actions,
.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 44px;
  border-radius: 4px;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button--primary {
  padding: 14px 28px;
  border: 1px solid rgba(225, 181, 91, .58);
  background: linear-gradient(145deg, #8c1e33, #671322);
  color: #f5d985;
  box-shadow: 0 18px 46px rgba(77, 13, 25, .36);
}

.button--ghost {
  padding: 13px 26px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .025);
  color: var(--text);
}

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

.hero-facts {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 48px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(10, 8, 8, .82);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.hero-facts article {
  min-height: 118px;
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
}

.hero-facts article:last-child {
  border-right: 0;
}

.hero-facts span,
.stat span,
.room-card span,
.article-card span,
.route-card span,
.footer span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 900;
}

.hero-facts strong,
.stat strong,
.route-card strong {
  display: block;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.55;
}

.section,
.article-shell {
  position: relative;
  min-width: 0;
  max-width: 100%;
  margin: 0 0 34px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(134, 29, 49, .055), transparent 34%),
    linear-gradient(180deg, rgba(18, 15, 15, .94), rgba(9, 8, 8, .9));
  box-shadow: 0 24px 78px rgba(0, 0, 0, .34);
}

.hero + .section {
  margin-top: 34px;
}

.section::before,
.article-shell::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190, 72, 85, .56), rgba(215, 176, 92, .38), transparent);
}

.section--tight {
  padding-top: 38px;
  padding-bottom: 38px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .5fr);
  gap: 28px;
  align-items: end;
  max-width: none;
  margin-bottom: 24px;
}

.section-head h2,
.page-hero h1,
.article-shell h1 {
  margin-bottom: 14px;
  font-size: 2.55rem;
}

.section-head p,
.page-hero p,
.article-shell p,
.split-royal__text p,
.stat p,
.info-grid p,
.article-card p,
.room-card p,
.route-card p,
.map-panel p,
.footer p,
.article-body {
  color: var(--soft);
}

.split-royal {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.split-royal__text,
.stat,
.info-grid article,
.article-card,
.map-panel,
.route-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, .022);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.split-royal__text {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.split-royal__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 7px;
  object-fit: cover;
}

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

.stat,
.info-grid article,
.article-card {
  min-height: 150px;
  padding: 24px;
}

.stat strong {
  color: var(--text);
  font-size: 1.02rem;
}

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

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, .022);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
  filter: saturate(1.04) contrast(1.04) brightness(.98);
}

.room-card figcaption {
  padding: 18px;
}

.room-card h3,
.article-card h2,
.article-card h3,
.info-grid h3,
.stat h3,
.route-card h3 {
  font-family: var(--font);
  font-weight: 900;
  line-height: 1.45;
}

.room-card h3 {
  font-size: 1rem;
}

.article-card a {
  color: var(--gold-2);
  font-weight: 900;
}

/* 资讯卡片关键词标签 */
.article-card__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
}

.article-card__keywords .keyword-tag {
  display: inline-block;
  padding: 3px 12px;
  font-size: 12px;
  line-height: 1.6;
  color: #f6e9c5;
  background: rgba(214, 173, 89, .18);
  border: 1px solid rgba(214, 173, 89, .35);
  border-radius: 3px;
}

.article-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.article-pagination a,
.article-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, .025);
  color: var(--text);
  font-size: .92rem;
  font-weight: 900;
}

.article-pagination a:hover,
.article-pagination a[aria-current="page"] {
  border-color: rgba(225, 181, 91, .58);
  background: linear-gradient(145deg, rgba(140, 30, 51, .9), rgba(103, 19, 34, .9));
  color: #f5d985;
}

.article-pagination span {
  color: var(--muted);
}

.article-body a,
.info-grid p a,
.section-head p a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-card h2,
.article-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.split-royal__text:hover,
.stat:hover,
.info-grid article:hover,
.article-card:hover,
.route-card:hover,
.room-card:hover {
  transform: translateY(-2px);
  border-color: rgba(190, 72, 85, .44);
  background: rgba(134, 29, 49, .075);
}

.room-card:hover img {
  transform: scale(1.018);
  filter: saturate(1.08) contrast(1.06) brightness(1.02);
}

.arrival-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(300px, .48fr);
  gap: 24px;
  align-items: stretch;
}

.route-list {
  display: grid;
  gap: 12px;
}

.route-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
}

.route-card b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(241, 217, 154, .42);
  border-radius: 50%;
  background: rgba(112, 20, 36, .78);
  color: var(--gold-2);
}

.map-panel {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 30px;
}

.map-panel h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.recruit-media {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(225, 181, 91, .07), transparent 40%),
    rgba(255, 255, 255, .022);
  text-align: center;
}

.recruit-media img {
  width: min(320px, 100%);
  height: auto;
  border: 1px solid rgba(225, 181, 91, .32);
  border-radius: 7px;
  object-fit: contain;
}

.recruit-media figcaption {
  color: var(--soft);
  font-size: .9rem;
  line-height: 1.7;
}

.recruit-media a {
  color: var(--gold-2);
  font-weight: 900;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  margin-bottom: 28px;
  padding: 58px 0 26px;
  border-bottom: 1px solid var(--line);
}

.page-hero > div {
  max-width: 980px;
}

.article-shell {
  width: min(900px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.article-body {
  margin-top: 24px;
  font-size: 1.04rem;
}

.article-body img {
  width: 100%;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.article-body h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.52rem;
}

.article-body p {
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 18px;
  padding-left: 1.35em;
  color: var(--soft);
}

.article-body li {
  margin-bottom: 8px;
}

.article-body strong,
.article-body b {
  color: var(--text);
  font-weight: 800;
}

.article-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  overflow-x: auto;
  border-collapse: collapse;
  color: var(--soft);
  -webkit-overflow-scrolling: touch;
}

.article-body th,
.article-body td {
  min-width: 120px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  color: var(--text);
  font-weight: 800;
}

.article-body iframe,
.article-body video {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #030303;
}

.article-body iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 260px;
}

.article-body video {
  height: auto;
}

.article-body pre {
  max-width: 100%;
  margin: 22px 0;
  padding: 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(0, 0, 0, .32);
  color: var(--text);
  -webkit-overflow-scrolling: touch;
}

.article-body code {
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-nav {
  justify-content: center;
  width: min(900px, 100%);
  margin: 0 auto 54px;
}

.footer {
  padding: 44px 0 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .72fr) minmax(190px, .56fr);
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(242, 231, 216, .08);
  text-align: left;
}

.footer__top > div {
  min-width: 0;
}

.footer__brand {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-family: var(--font);
  font-size: 1.45rem;
  font-weight: 900;
}

.footer__main > p {
  max-width: 560px;
  line-height: 1.8;
}

.footer__info,
.footer__qr {
  padding-top: 4px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 18px;
  margin-top: 14px;
  color: var(--text);
  font-weight: 850;
}

.footer__phone {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-2);
  font-size: 1.08rem;
  font-weight: 950;
}

.footer__qr {
  display: grid;
  width: 100%;
  max-width: 190px;
  justify-items: center;
  justify-self: center;
  align-content: start;
  gap: 10px;
  text-align: center;
}

.footer__qr img {
  width: 128px;
  height: 128px;
  padding: 8px;
  border: 1px solid rgba(225, 181, 91, .36);
  border-radius: 6px;
  background: #f9f5ef;
  object-fit: contain;
}

.footer__qr p {
  max-width: 180px;
  margin: 0;
  font-size: .78rem;
  line-height: 1.55;
}

.footer__qr a {
  color: var(--gold-2);
  font-weight: 900;
}

.footer__nav a:hover,
.copyright a:hover {
  color: var(--gold-2);
}

.copyright {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0 20px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
  text-align: center;
}

.copyright a {
  color: var(--soft);
}

.mobile-bottom-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-float-call {
  display: none;
}

.mobile-float-call svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 1180px) {
  .site-head__inner {
    gap: 16px;
  }

  .nav a {
    padding-right: 9px;
    padding-left: 9px;
    font-size: .86rem;
  }

  .hero h1 {
    font-size: 4.3rem;
  }

  .section-head h2,
  .page-hero h1,
  .article-shell h1 {
    font-size: 2.25rem;
  }

  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-head__inner {
    min-height: 76px;
  }

  .nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand__name {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-facts,
  .section-head,
  .split-royal,
  .arrival-layout,
  .page-hero,
  .stat-grid,
  .info-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14.5px;
    line-height: 1.72;
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .site-head__inner,
  main,
  .footer,
  .copyright {
    width: min(var(--max), calc(100% - 32px));
  }

  .site-head__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 126px;
    align-items: center;
    gap: 8px;
    width: calc(100% - 24px);
    min-height: 64px;
  }

  .brand {
    gap: 10px;
    max-width: 100%;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    font-size: .72rem;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .1),
      0 10px 24px rgba(77, 13, 25, .24);
  }

  .brand__name {
    max-width: 100%;
    font-size: 1.15rem;
  }

  .head-phone {
    justify-self: end;
    width: 126px;
    max-width: 126px;
    min-height: 44px;
    padding: 8px 6px;
    font-size: .88rem;
  }

  .hero {
    min-height: 760px;
    margin-left: calc(50% - 50vw);
  }

  .hero__photo {
    inset: 0;
    width: 100%;
  }

  .hero__photo img {
    object-position: center top;
    filter: saturate(1.12) contrast(1.06) brightness(1.12);
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(6, 6, 6, .3) 0, rgba(7, 5, 5, .58) 46%, rgba(6, 5, 5, .92) 100%),
      linear-gradient(90deg, rgba(32, 6, 12, .54), rgba(6, 6, 6, .16));
  }

  .hero__inner {
    align-content: center;
    width: calc(100% - 32px);
    min-height: 760px;
    padding: 160px 0 252px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: .68rem;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 2.36rem;
    line-height: 1.12;
  }

  .hero__lead {
    display: -webkit-box;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    color: #eee2d7;
    font-size: .92rem;
    font-weight: 850;
    line-height: 1.82;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hero__actions,
  .page-actions,
  .article-nav {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
  }

  .hero-facts {
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: calc(100% - 32px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-color: rgba(242, 231, 216, .18);
    background:
      linear-gradient(90deg, rgba(9, 8, 8, .82), rgba(43, 12, 18, .62)),
      rgba(6, 6, 6, .62);
  }

  .hero-facts article {
    min-height: 86px;
    padding: 12px;
    border-right: 1px solid rgba(242, 231, 216, .1);
    border-bottom: 1px solid rgba(242, 231, 216, .1);
  }

  .hero-facts article:nth-child(even) {
    border-right: 0;
  }

  .hero-facts article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .hero-facts span,
  .stat span,
  .room-card span,
  .article-card span,
  .route-card span,
  .footer span {
    margin-bottom: 6px;
    font-size: .7rem;
  }

  .hero-facts strong {
    font-size: .82rem;
    line-height: 1.42;
  }

  .section,
  .article-shell {
    width: 100%;
    margin-bottom: 18px;
    padding: 18px;
    overflow-x: clip;
  }

  .hero + .section {
    margin-top: 18px;
  }

  .section::before,
  .article-shell::before {
    left: 16px;
    right: 16px;
  }

  .section-head {
    gap: 10px;
    margin-bottom: 18px;
  }

  .section-head h2,
  .page-hero h1,
  .article-shell h1 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 1.86rem;
  }

  .split-royal__text,
  .stat,
  .info-grid article,
  .article-card,
  .map-panel,
  .recruit-media,
  .route-card {
    padding: 16px;
  }

  .split-royal__media img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .stat-grid,
  .info-grid,
  .article-grid,
  .room-grid,
  .route-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .room-card figcaption {
    padding: 16px;
  }

  .arrival-layout {
    gap: 18px;
  }

  .route-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .route-card b {
    width: 38px;
    height: 38px;
  }

  .map-panel h3 {
    font-size: 1.5rem;
  }

  .page-hero {
    gap: 18px;
    margin-bottom: 18px;
    padding: 28px 0 20px;
  }

  .article-body {
    font-size: 1rem;
  }

  .article-body iframe {
    min-height: 200px;
  }

  .article-nav {
    margin-bottom: 38px;
  }

  .article-card__keywords .keyword-tag {
    font-size: 11px;
    padding: 2px 8px;
  }

  .article-pagination {
    gap: 8px;
    margin-top: 22px;
  }

  .article-pagination a,
  .article-pagination span {
    min-width: 38px;
    min-height: 38px;
    padding: 0 12px;
    font-size: .86rem;
  }

  .footer {
    padding: 28px 0 0;
  }

  .footer__top {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    gap: 18px;
    padding: 26px 0 20px;
    text-align: center;
  }

  .footer__brand {
    font-size: 1.1rem;
  }

  .footer__nav {
    justify-content: center;
    gap: 10px 14px;
    margin-top: 8px;
    font-size: .88rem;
  }

  .footer__phone {
    justify-content: center;
    width: 100%;
    font-size: 1.05rem;
  }

  .footer__qr {
    width: auto;
    justify-self: center;
    padding-top: 0;
  }

  .footer__qr img {
    width: 118px;
    height: 118px;
  }

  .copyright {
    padding: 12px 0 18px;
    font-size: .76rem;
    line-height: 1.55;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    width: 100dvw;
    max-width: 100vw;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 5px 4px calc(5px + env(safe-area-inset-bottom));
    border: 1px solid rgba(242, 231, 216, .14);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, rgba(17, 13, 14, .99), rgba(6, 6, 6, .99));
    box-shadow: 0 -18px 54px rgba(0, 0, 0, .48);
  }

  .mobile-float-call {
    position: fixed;
    right: 16px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    z-index: 90;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(242, 231, 216, .16);
    border-radius: 9px;
    background: linear-gradient(180deg, rgba(24, 16, 18, .98), rgba(92, 17, 31, .96));
    color: var(--gold-2);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  .mobile-float-call::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(225, 181, 91, .18);
    border-radius: 6px;
    pointer-events: none;
  }

  .mobile-float-call:active {
    transform: translateY(1px);
    background: linear-gradient(180deg, rgba(35, 20, 23, .98), rgba(117, 23, 39, .98));
  }

  .mobile-bottom-nav a {
    display: grid;
    grid-template-rows: 24px 16px;
    gap: 2px;
    align-items: center;
    justify-items: center;
    min-width: 0;
    min-height: 48px;
    padding: 4px 0;
    border-radius: 5px;
    color: var(--muted);
    font-size: .58rem;
    font-weight: 850;
    line-height: 1;
    text-align: center;
  }

  .mobile-bottom-nav a[aria-current="page"] {
    color: var(--gold-2);
    background: rgba(134, 29, 49, .18);
  }

  .mobile-bottom-nav svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.9;
  }

  .mobile-bottom-nav b {
    display: block;
    width: 100%;
    overflow: hidden;
    font-weight: 850;
    white-space: nowrap;
    text-overflow: clip;
  }
}

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