:root {
  color-scheme: dark;
  --bg: #050908;
  --bg-2: #08120f;
  --ink: #f4efe5;
  --soft: #d9d0c0;
  --muted: #978f82;
  --line: rgba(244, 239, 229, .12);
  --line-strong: rgba(132, 184, 165, .36);
  --panel: rgba(255, 255, 255, .035);
  --panel-2: rgba(132, 184, 165, .055);
  --green: #0d2a24;
  --green-2: #174237;
  --jade: #84b8a5;
  --copper: #b99262;
  --copper-2: #e0c08c;
  --max: 1240px;
  --font: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  --shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

* {
  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:
    radial-gradient(circle at 80% 0, rgba(132, 184, 165, .12), transparent 34%),
    linear-gradient(180deg, #050908 0, #07100d 46%, #030504 100%);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(185, 146, 98, .06), transparent 28%, transparent 70%, rgba(132, 184, 165, .08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 104px);
}

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

a,
button {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(132, 184, 165, .78);
  outline-offset: 3px;
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

p,
li {
  color: var(--soft);
  text-wrap: pretty;
}

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--jade);
  color: #03100d;
  font-weight: 900;
}

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

.site-head {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(244, 239, 229, .09);
  background: rgba(5, 9, 8, .96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .32);
}

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

.site-head__inner {
  display: grid;
  grid-template-columns: minmax(240px, .62fr) minmax(0, 1fr) auto;
  align-items: center;
  min-height: 82px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 13px;
  font-weight: 900;
}

.brand__mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(132, 184, 165, .22), rgba(185, 146, 98, .12)),
    #07110f;
  color: var(--copper-2);
  font-size: .86rem;
  box-shadow: inset 0 0 0 1px rgba(132, 184, 165, .34), 0 16px 30px rgba(0, 0, 0, .34);
}

.brand__name {
  overflow: hidden;
  color: var(--ink);
  font-size: 1.18rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--soft);
  font-size: .9rem;
  font-weight: 850;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--jade), var(--copper));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s cubic-bezier(.16, 1, .3, 1);
}

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

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

.head-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 4px;
  background: rgba(132, 184, 165, .1);
  color: var(--copper-2);
  font-size: .96rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(132, 184, 165, .34);
  white-space: nowrap;
}

.head-phone:hover {
  background: rgba(132, 184, 165, .16);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(420px, .86fr);
  gap: 36px;
  align-items: stretch;
  min-height: 720px;
  padding: 56px 0 40px;
}

.hero__copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 46px 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--jade);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  letter-spacing: 0;
}

.hero__lead {
  max-width: 680px;
  margin-top: 24px;
  color: #e7ddcd;
  font-size: 1.05rem;
  line-height: 1.95;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 4px;
  font-weight: 900;
  transition: transform .2s cubic-bezier(.16, 1, .3, 1), background .2s ease, color .2s ease;
}

.button--primary {
  background: linear-gradient(135deg, #8cbda9, #c4a06a);
  color: #05100d;
  box-shadow: 0 20px 48px rgba(132, 184, 165, .2);
}

.button--ghost {
  box-shadow: inset 0 0 0 1px var(--line-strong);
  color: var(--ink);
}

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

.hero__media {
  display: block;
  position: relative;
  height: min(640px, calc(100vh - 144px));
  min-height: 620px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.86) contrast(1.08) saturate(1.02);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 9, 8, .04), rgba(5, 9, 8, .42)),
    linear-gradient(90deg, rgba(5, 9, 8, .18), transparent 48%);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--line);
}

.hero-facts article,
.stat,
.article-card,
.room-card,
.info-panel,
.route-card,
.menu-note {
  min-width: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .018));
}

.hero-facts article {
  padding: 18px;
}

.hero-facts span,
.stat span,
.article-card span,
.room-card span,
.route-card span,
.footer span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--copper-2);
  font-size: .74rem;
  font-weight: 950;
}

.hero-facts strong,
.stat strong,
.route-card strong {
  display: block;
  color: var(--ink);
  line-height: 1.45;
}

.section,
.article-shell {
  margin: 0 0 34px;
  padding: 44px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(132, 184, 165, .045), transparent 38%),
    rgba(255, 255, 255, .024);
  box-shadow: inset 0 0 0 1px var(--line);
}

.section--flush {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
  box-shadow: none;
}

.section--space {
  padding: 34px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(280px, .42fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head--stacked {
  grid-template-columns: minmax(0, 760px);
  align-items: start;
  margin-bottom: 24px;
}

.section-head--stacked .page-actions {
  margin-top: 22px;
}

.section-head h2,
.page-hero h1,
.article-shell h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, .44fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.info-panel,
.menu-note {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px var(--line);
}

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

.gallery-rail img,
.room-card img,
.menu-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, .09);
  outline-offset: -1px;
}

.gallery-rail img {
  aspect-ratio: 4 / 3;
}

.section--space .gallery-rail {
  gap: 18px;
}

.section--space .gallery-rail picture {
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, .035);
}

.section--space .gallery-rail img {
  min-height: 210px;
}

.menu-feature {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .58fr);
  gap: 24px;
  align-items: stretch;
}

.menu-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 36px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(132, 184, 165, .075), transparent 42%),
    rgba(255, 255, 255, .026);
  box-shadow: inset 0 0 0 1px var(--line);
}

.menu-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.menu-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.menu-points article {
  min-width: 0;
  padding: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .028);
  box-shadow: inset 0 0 0 1px rgba(244, 239, 229, .09);
}

.menu-points span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--copper-2);
  font-size: .72rem;
  font-weight: 950;
}

.menu-points strong {
  display: block;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.45;
}

.menu-preview {
  position: relative;
  min-width: 0;
  min-height: 360px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px var(--line), 0 24px 70px rgba(0, 0, 0, .22);
}

.menu-preview picture {
  display: block;
  height: 100%;
}

.menu-preview img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top center;
  filter: brightness(.9) contrast(1.03);
}

.menu-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(5, 9, 8, .82));
}

.menu-preview figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}

.menu-preview figcaption span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--copper-2);
  font-size: .74rem;
  font-weight: 950;
}

.menu-preview figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.38;
}

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

.room-card,
.article-card,
.stat,
.route-card {
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.room-card {
  overflow: hidden;
}

.room-card img {
  aspect-ratio: 4 / 3;
}

.room-card figcaption,
.article-card,
.stat {
  padding: 20px;
}

.room-card h3,
.article-card h2,
.article-card h3,
.stat h3,
.route-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
}

.article-card p,
.room-card p,
.stat p,
.route-card p,
.info-panel p,
.menu-note p {
  margin-top: 10px;
}

.article-card a {
  color: var(--copper-2);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 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(--ink);
  font-size: .92rem;
  font-weight: 900;
}

.article-pagination a:hover,
.article-pagination a[aria-current="page"] {
  border-color: rgba(132, 184, 165, .58);
  background: linear-gradient(145deg, rgba(132, 184, 165, .18), rgba(185, 146, 98, .18));
  color: var(--copper-2);
}

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

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(320px, .38fr);
  gap: 28px;
  align-items: start;
}

.menu-image {
  padding: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px var(--line);
}

.menu-image img {
  aspect-ratio: auto;
}

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

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

.route-card b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(132, 184, 165, .14);
  color: var(--jade);
  font-variant-numeric: tabular-nums;
}

.page-hero {
  padding: 54px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

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

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

.article-meta {
  color: var(--muted);
  font-size: .9rem;
}

.article-body {
  margin-top: 26px;
  color: var(--soft);
  font-size: 1.04rem;
}

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

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

.article-shell .article-body h3,
.article-shell .article-body h4,
.article-shell .article-body h5,
.article-shell .article-body h6 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.35;
}

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

.article-shell .article-body li {
  margin: 6px 0;
}

.article-shell .article-body strong,
.article-shell .article-body b {
  color: var(--ink);
  font-weight: 900;
}

.article-shell .article-body em,
.article-shell .article-body i {
  color: var(--soft);
}

.article-shell .article-body blockquote {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--jade);
  background: rgba(132, 184, 165, .065);
  color: var(--soft);
}

.article-shell .article-body figure {
  margin: 24px 0;
}

.article-shell .article-body figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
}

.article-shell .article-body hr {
  height: 1px;
  margin: 28px 0;
  border: 0;
  background: var(--line);
}

.article-body img {
  width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, .035);
}

.article-body a {
  color: var(--copper-2);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-shell .article-body pre {
  overflow-x: auto;
  max-width: 100%;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0, 0, 0, .22);
  color: var(--soft);
  white-space: pre-wrap;
}

.article-shell .article-body code {
  color: var(--ink);
  font-family: Consolas, "Microsoft YaHei", monospace;
  font-size: .94em;
}

.article-shell .article-body table {
  display: block;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  color: var(--soft);
  font-size: .95rem;
}

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

.article-shell .article-body th {
  color: var(--ink);
  background: rgba(132, 184, 165, .08);
  font-weight: 900;
}

.article-shell .article-body video,
.article-shell .article-body iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 260px;
  margin: 24px 0;
  border: 0;
  border-radius: 4px;
  background: rgba(0, 0, 0, .26);
  aspect-ratio: 16 / 9;
}

.article-shell .article-body [style*="background" i] {
  background: transparent !important;
  box-shadow: none !important;
}

.article-shell .article-body :where(span, p, li, strong, em, b, i)[style*="color" i] {
  color: inherit !important;
}

.article-shell .article-body a[style*="color" i] {
  color: var(--copper-2) !important;
}

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

.footer {
  padding: 34px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .4fr) minmax(180px, .28fr);
  gap: 42px;
  padding: 34px 0 22px;
  border-top: 1px solid var(--line);
}

.footer__brand {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--jade);
  font-size: 1.28rem;
  font-weight: 950;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 850;
}

.footer__info {
  justify-self: end;
  max-width: 360px;
}

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

.footer__qr {
  justify-self: end;
  max-width: 220px;
  text-align: center;
}

.footer__qr img,
.jobs-qr img {
  width: 132px;
  height: auto;
  margin: 0 auto 12px;
  border-radius: 4px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .32);
}

.footer__qr p {
  margin: 0;
  color: var(--soft);
  font-size: .88rem;
  line-height: 1.65;
}

.footer__qr a {
  display: inline-block;
  margin-top: 2px;
  color: var(--copper-2);
  font-size: 1.14rem;
  font-weight: 950;
  line-height: 1.35;
}

.mobile-float-call {
  position: fixed;
  right: 14px;
  bottom: calc(78px + env(safe-area-inset-bottom));
  z-index: 94;
  display: none;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(132, 184, 165, .92), rgba(185, 146, 98, .92)),
    #0b241e;
  color: #04110d;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .46), inset 0 0 0 1px rgba(244, 239, 229, .42);
}

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

.jobs-qr {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px var(--line);
  text-align: center;
}

.jobs-qr img {
  width: 176px;
  padding: 8px;
}

.jobs-qr strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.jobs-qr a {
  color: var(--copper-2);
  font-weight: 950;
}

.copyright {
  padding-top: 14px;
  border-top: 1px solid rgba(244, 239, 229, .07);
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}
.beian-inline {
  display: inline;
  white-space: nowrap;
}
.beian-inline img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 2px;
}

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

.copyright a:hover {
  color: var(--copper-2);
}

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

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

@media (hover: hover) {
  .article-card:hover,
  .room-card:hover,
  .stat:hover,
  .route-card:hover,
  .menu-points article:hover {
    background: rgba(132, 184, 165, .062);
  }
}

@media (max-width: 980px) {
  .site-head__inner,
  .hero,
  .section-head,
  .split-layout,
  .menu-layout,
  .menu-feature,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: flex-start;
  }

  .head-phone {
    justify-self: start;
    width: fit-content;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero__media {
    height: 440px;
    min-height: 440px;
    order: -1;
  }

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

  .menu-preview {
    min-height: 360px;
  }

  .footer__info {
    justify-self: start;
  }

  .footer__qr {
    justify-self: start;
    text-align: left;
  }

  .footer__qr img {
    margin-left: 0;
  }
}

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

  .site-head__inner,
  main,
  .footer__inner,
  .copyright {
    width: calc(100% - 32px);
  }

  .site-head__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
    font-size: .76rem;
  }

  .brand__name {
    font-size: 1rem;
  }

  .nav {
    display: none;
  }

  .head-phone {
    justify-self: end;
    min-height: 38px;
    padding: 8px 10px;
    font-size: .82rem;
  }

  .hero {
    position: relative;
    width: 100vw;
    min-height: calc(100svh - 64px);
    margin-left: calc(50% - 50vw);
    padding: 0 16px;
    overflow: hidden;
    isolation: isolate;
  }

  .hero__copy {
    position: relative;
    z-index: 1;
    align-content: end;
    min-height: calc(100svh - 64px);
    padding: clamp(126px, 23svh, 190px) 0 calc(156px + env(safe-area-inset-bottom));
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13.4vw, 3.42rem);
    line-height: 1.08;
    text-shadow: 0 22px 58px rgba(0, 0, 0, .62);
  }

  .hero__lead {
    margin-top: 14px;
    display: -webkit-box;
    overflow: hidden;
    font-size: .94rem;
    line-height: 1.82;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero__actions,
  .page-actions,
  .article-nav {
    display: grid;
    gap: 10px;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 11px 10px;
  }

  .hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    order: 0;
  }

  .hero__media img {
    object-position: 50% 28%;
    filter: brightness(.88) contrast(1.08) saturate(1.04);
  }

  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(5, 9, 8, .18) 0, rgba(5, 9, 8, .46) 36%, rgba(5, 9, 8, .93) 100%),
      linear-gradient(90deg, rgba(5, 9, 8, .58), rgba(5, 9, 8, .14) 50%, rgba(5, 9, 8, .42));
  }

  .hero-facts {
    display: none;
  }

  .gallery-rail,
  .room-grid,
  .article-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .article-shell {
    margin-bottom: 18px;
    padding: 18px;
  }

  .section--space {
    padding: 18px;
  }

  .section--flush {
    padding-right: 0;
    padding-left: 0;
  }

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

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

  .info-panel,
  .menu-note,
  .menu-copy,
  .room-card figcaption,
  .article-card,
  .stat,
  .route-card {
    padding: 16px;
  }

  .menu-copy h2 {
    font-size: 1.82rem;
  }

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

  .menu-preview,
  .menu-preview img {
    min-height: 300px;
  }

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

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

  .article-shell .article-body video,
  .article-shell .article-body iframe {
    min-height: 210px;
  }

  .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-bottom: 18px;
  }

  .footer__inner {
    gap: 20px;
    padding-top: 26px;
    text-align: center;
  }

  .footer__nav {
    justify-content: center;
    font-size: .9rem;
  }

  .footer__info {
    justify-self: center;
  }

  .footer__qr {
    justify-self: center;
    text-align: center;
  }

  .footer__qr img {
    margin-left: auto;
  }

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

  .mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(244, 239, 229, .12);
    background: rgba(5, 9, 8, .98);
    box-shadow: 0 -18px 54px rgba(0, 0, 0, .48);
  }

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

  .mobile-bottom-nav a[aria-current="page"] {
    background: rgba(132, 184, 165, .12);
    color: var(--jade);
  }
}

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