:root {
  color-scheme: dark;
  --bg: #050403;
  --bg-2: #090705;
  --surface: rgba(17, 13, 9, .92);
  --surface-2: rgba(24, 18, 13, .88);
  --surface-3: rgba(35, 25, 17, .76);
  --line: rgba(214, 176, 100, .2);
  --line-strong: rgba(230, 195, 123, .44);
  --text: #fff8ea;
  --soft: #dfd2bb;
  --muted: #a99c86;
  --gold: #d6ae5f;
  --gold-2: #f1d99a;
  --gold-3: #9d6721;
  --wine: #3a0711;
  --wine-2: #6f1a2b;
  --shadow: 0 30px 90px rgba(0, 0, 0, .58);
  --max: 1280px;
  --font: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  --serif: "Noto Serif SC", "Songti SC", "SimSun", 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, #050403 0, #090704 42%, #030303 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(180deg, rgba(214, 176, 100, .018) 0 1px, transparent 1px 140px);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(58, 7, 17, .18), transparent 34%, transparent 66%, rgba(214, 176, 100, .08)),
    linear-gradient(180deg, rgba(255, 255, 255, .04), 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%;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: 5.15rem;
}

h1 span {
  display: block;
  margin-top: 18px;
  color: var(--soft);
  font-family: var(--font);
  font-size: 1.56rem;
  font-weight: 850;
  line-height: 1.42;
}

h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

p {
  margin-bottom: 16px;
}

.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);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(214, 176, 100, .18);
  background:
    linear-gradient(180deg, rgba(9, 7, 5, .98), rgba(6, 5, 4, .92)),
    linear-gradient(90deg, rgba(58, 7, 17, .26), transparent 38%, rgba(214, 176, 100, .08));
  backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .42);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  min-height: 90px;
  margin: 0 auto;
}

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

.brandmark__seal {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(241, 217, 154, .86);
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 44%, #fff5cb 0 4px, transparent 5px),
    conic-gradient(from 35deg, #fff0b8, #a56c25, #f1d99a, #6d4314, #fff0b8);
  box-shadow:
    inset 0 0 0 7px rgba(5, 4, 3, .88),
    inset 0 0 0 9px rgba(241, 217, 154, .24),
    0 14px 34px rgba(214, 176, 100, .24);
}

.brandmark__text {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 900;
}

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

.navline 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;
}

.navline a:hover,
.navline a[aria-current="page"] {
  border-color: rgba(214, 176, 100, .28);
  background: linear-gradient(180deg, rgba(241, 217, 154, .1), rgba(58, 7, 17, .12));
  color: var(--gold-2);
}

.navline a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 217, 154, .86), transparent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

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

.contact-pill,
.primary-link,
.ghost-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 4px;
  font-weight: 900;
}

.contact-pill {
  flex: 0 0 auto;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid rgba(241, 217, 154, .62);
  background:
    linear-gradient(135deg, rgba(255, 241, 184, .2), rgba(157, 103, 33, .22)),
    rgba(18, 12, 6, .76);
  color: var(--gold-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 18px 42px rgba(0, 0, 0, .32);
}

.menu-toggle {
  display: none;
  min-width: 52px;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font: inherit;
  font-weight: 900;
}

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

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

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

.mast {
  display: grid;
  grid-template-columns:
    minmax(24px, 1fr)
    minmax(0, 680px)
    minmax(420px, 760px)
    minmax(0, .42fr);
  gap: clamp(20px, 2.8vw, 42px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(72px, 9vw, 132px) 0 76px;
}

.mast--store {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 176, 100, .18);
  background:
    linear-gradient(90deg, rgba(5, 4, 3, .99) 0 38%, rgba(5, 4, 3, .86) 56%, rgba(5, 4, 3, .48)),
    linear-gradient(180deg, rgba(58, 7, 17, .22), rgba(0, 0, 0, .94)),
    #050403;
}

.mast--store::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, .98) 0 36%, rgba(5, 4, 3, .76) 56%, rgba(5, 4, 3, .2) 100%),
    url("../img/generated/jinzuan-facade-1200.jpg") right center / min(70vw, 1080px) auto no-repeat;
  filter: saturate(1.02) contrast(1.08) brightness(.94);
}

.mast--store::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 18%, transparent 70%, rgba(0, 0, 0, .78)),
    linear-gradient(90deg, transparent 0 50%, rgba(214, 176, 100, .14) 50% calc(50% + 1px), transparent calc(50% + 1px)),
    repeating-linear-gradient(90deg, transparent 0 128px, rgba(255, 255, 255, .028) 128px 129px);
}

.mast--store .mast__copy {
  grid-column: 2;
  min-width: 640px;
  max-width: 680px;
}

.mast--store .mast__copy h1,
.mast--store .mast__copy h1 span,
.mast--store .mast__lead {
  text-shadow: 0 3px 22px rgba(0, 0, 0, .86), 0 1px 2px rgba(0, 0, 0, .92);
}

.mast--store .mast__copy h1 {
  color: #fffaf0;
}

.mast--store .mast__copy h1 span {
  color: #fff0c9;
  font-weight: 900;
}

.mast--store .store-visual {
  grid-column: 3;
  justify-self: end;
  transform: translateX(clamp(24px, 3.2vw, 56px));
}

.mast__copy,
.page-lead,
.article-head {
  position: relative;
  min-width: 0;
}

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

.mast__lead,
.page-lead p,
.band-head p,
.module-card p,
.article-card p,
.text-panel p,
.side-rail p,
.footline p,
.flowline p {
  color: var(--soft);
}

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

.mast__facts {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  border-top: 1px solid rgba(214, 176, 100, .22);
  border-bottom: 1px solid rgba(214, 176, 100, .22);
  background: linear-gradient(90deg, rgba(255, 255, 255, .02), rgba(214, 176, 100, .04), transparent);
}

.mast__facts span {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 10px 18px;
  border-right: 1px solid rgba(214, 176, 100, .18);
  color: var(--gold-2);
  font-size: .84rem;
  font-weight: 900;
}

.mast__facts span:first-child {
  padding-left: 0;
}

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

.mast__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-link {
  min-width: 156px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 242, 190, .64);
  background:
    linear-gradient(135deg, #f8e4aa, #c58b35 48%, #fff1bd);
  color: #130d05;
  box-shadow: 0 20px 52px rgba(157, 103, 33, .28);
}

.ghost-link {
  min-width: 156px;
  padding: 13px 26px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .035);
  color: var(--text);
}

.primary-link:hover,
.ghost-link:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.store-visual {
  margin: 0;
  align-self: center;
  width: min(100%, 760px);
  max-width: 760px;
  padding: 14px;
  border: 1px solid rgba(241, 217, 154, .34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 241, 184, .12), rgba(58, 7, 17, .22) 52%, rgba(255, 255, 255, .04)),
    rgba(13, 9, 6, .78);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .58);
  backdrop-filter: blur(8px);
}

.store-visual__track {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #090705;
}

.store-visual__track img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1702 / 1276;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.07) brightness(.98);
  transition: transform .3s ease, filter .3s ease;
}

.store-visual figcaption {
  margin: 0;
  padding: 14px 6px 2px;
}

.store-visual--inline {
  display: none;
  width: 100%;
  max-width: none;
  margin: 4px 0 26px;
  padding: 10px;
  transform: none;
}

.store-visual--inline .store-visual__track img {
  aspect-ratio: 16 / 7;
  max-height: 420px;
  object-position: center top;
}

.store-visual:hover .store-visual__track img {
  transform: scale(1.014);
  filter: saturate(1.1) contrast(1.09) brightness(1.02);
}

.content-band,
.article-shell,
.side-rail section {
  position: relative;
  min-width: 0;
  max-width: 100%;
  margin: 0 0 34px;
  padding: 42px;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 241, 184, .06), transparent 34%),
    linear-gradient(180deg, rgba(20, 15, 10, .92), rgba(10, 8, 6, .84));
  box-shadow: 0 24px 78px rgba(0, 0, 0, .34);
}

.content-band::before,
.article-shell::before,
.side-rail section::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 217, 154, .72), transparent);
}

.band-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.row-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
}

.text-link {
  min-height: 38px;
  color: var(--gold-2);
  font-size: .92rem;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .018);
}

.fact-strip article {
  min-height: 118px;
  padding: 22px;
  border-right: 1px solid rgba(214, 176, 100, .16);
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(214, 176, 100, .035));
}

.fact-strip article:last-child {
  border-right: 0;
}

.fact-strip span,
.module-card > span,
.article-card span,
.article-card__author {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 900;
}

.article-card__author {
  margin-bottom: 14px;
}

.fact-strip strong {
  display: block;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.55;
}

.room-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.room-entry-grid article {
  min-height: 116px;
  padding: 22px;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 241, 184, .055), transparent 44%),
    rgba(255, 255, 255, .025);
}

.room-entry-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 900;
}

.room-entry-grid strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.55;
}

.room-entry-link {
  margin-top: 18px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
}

.info-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(214, 176, 100, .14);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  color: var(--gold-2);
  font-size: .84rem;
  font-weight: 900;
}

.info-table td {
  color: var(--soft);
}

.info-table tr:last-child td {
  border-bottom: 0;
}

.source-note,
figcaption,
.article-meta {
  color: var(--muted);
  font-size: .86rem;
}

.article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.article-keyword-tag {
  display: inline-block;
  padding: 2px 8px;
  color: var(--gold-2);
  font-size: .75rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 3px;
}

.page-lead {
  margin-bottom: 28px;
  padding: 58px 0 26px;
  border-bottom: 1px solid rgba(214, 176, 100, .18);
}

.page-lead h1,
.article-head h1 {
  margin-bottom: 16px;
  font-size: 3.35rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .86rem;
}

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

.crumbs a::after {
  content: "/";
  margin-left: 8px;
  color: var(--muted);
}

.module-stack,
.article-list,
.map-list,
.rule-grid,
.city-matrix,
.entry-grid {
  display: grid;
  gap: 16px;
}

.module-stack,
.article-list,
.rule-grid,
.map-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-card,
.article-card,
.rule-grid article,
.map-list a,
.city-matrix a,
.entry-tile {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(214, 176, 100, .17);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 241, 184, .055), transparent 44%),
    rgba(255, 255, 255, .025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.module-card,
.article-card,
.rule-grid article {
  padding: 24px;
  display: block;
  text-decoration: none;
}

.module-card:hover,
.article-card:hover,
.rule-grid article:hover,
.map-list a:hover,
.city-matrix a:hover,
.entry-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 217, 154, .42);
  background:
    linear-gradient(145deg, rgba(255, 241, 184, .09), transparent 48%),
    rgba(255, 255, 255, .035);
}

.module-card h3,
.article-card h3,
.rule-grid h3 {
  font-family: var(--font);
  font-weight: 900;
}

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

.article-card time {
  color: var(--muted);
  font-size: .82rem;
}

.map-list a,
.city-matrix a,
.entry-tile {
  display: grid;
  min-height: 70px;
  align-content: center;
  padding: 18px 20px;
  color: var(--soft);
  font-weight: 850;
}

.entry-card {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
}

.entry-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.entry-card div {
  align-self: center;
  padding: 10px 8px;
}

.entry-card h3 a {
  color: var(--text);
}

.compact-list,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.compact-list li,
.check-list li {
  padding: 12px 14px;
  border: 1px solid rgba(214, 176, 100, .14);
  border-radius: 6px;
  background: rgba(0, 0, 0, .16);
  color: var(--soft);
}

.jobs-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 34px;
  align-items: center;
}

.jobs-contact__grid > div {
  min-width: 0;
}

.jobs-contact__grid > div > p {
  max-width: 720px;
  color: var(--soft);
}

.qr-card {
  display: grid;
  justify-items: center;
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(241, 217, 154, .28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 241, 184, .08), transparent 42%),
    rgba(5, 4, 3, .72);
}

.qr-card img {
  width: min(100%, 260px);
  height: auto;
  aspect-ratio: 1;
  border: 8px solid #fff;
  border-radius: 6px;
  background: #fff;
}

.qr-card figcaption {
  max-width: 260px;
  margin-top: 12px;
  text-align: center;
}

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

.content-band.split-band {
  grid-template-columns: minmax(260px, .38fr) minmax(0, 1fr);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  gap: 30px;
  padding-top: 42px;
}

.article-shell {
  margin-bottom: 0;
}

.media-frame {
  margin: 24px 0;
}

.media-frame .store-visual__track {
  background:
    linear-gradient(145deg, rgba(214, 176, 100, .08), rgba(0, 0, 0, .22)),
    #090705;
}

.media-frame--facade .store-visual__track {
  background:
    linear-gradient(180deg, rgba(5, 4, 3, .08), rgba(5, 4, 3, .28)),
    url("../img/generated/jinzuan-facade-1200.jpg") center top / cover no-repeat,
    #090705;
}

.media-frame .store-visual__track img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center top;
}

.fact-panel,
.text-panel {
  min-width: 0;
  max-width: 100%;
}

.fact-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.fact-panel dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(214, 176, 100, .14);
  border-radius: 6px;
  background: rgba(0, 0, 0, .18);
}

dt {
  color: var(--muted);
  font-weight: 850;
}

dd {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.flowline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flowline li,
.flowline div {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(214, 176, 100, .17);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(111, 26, 43, .28), transparent 58%),
    rgba(255, 255, 255, .024);
}

.flowline strong,
.flowline span {
  display: block;
}

.flowline strong {
  color: var(--text);
  font-weight: 900;
}

.flowline span {
  margin-top: 8px;
  color: var(--soft);
}

.side-rail {
  display: grid;
  align-content: start;
  gap: 18px;
}

.side-rail section {
  margin: 0;
  padding: 22px;
}

.side-rail a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(214, 176, 100, .14);
  color: var(--gold-2);
  font-weight: 850;
}

.recommend-card {
  display: grid;
  gap: 4px;
}

.recommend-card .eyebrow {
  margin: 0;
}

.recommend-card h2 {
  margin: 0 0 6px;
}

.side-rail .recommend-link {
  display: grid;
  gap: 5px;
  padding: 16px 0;
  color: var(--soft);
}

.recommend-link span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.35;
}

.recommend-link strong {
  color: var(--gold-2);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.45;
}

.article-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(214, 176, 100, .14);
}

.article-pager__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(214, 176, 100, .28);
  border-radius: 4px;
  background: rgba(255, 255, 255, .035);
  color: var(--soft);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.article-pager__link:hover,
.article-pager__link:focus-visible {
  border-color: rgba(241, 217, 154, .56);
  background: rgba(241, 217, 154, .08);
  color: var(--gold-2);
  transform: translateY(-1px);
}

.article-pager__link--primary {
  border-color: rgba(241, 217, 154, .68);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #160f07;
  box-shadow: 0 14px 28px rgba(214, 176, 100, .14);
}

.article-pager__link--primary:hover,
.article-pager__link--primary:focus-visible {
  color: #100a04;
  background: linear-gradient(135deg, var(--gold-2), #fff2c5);
}

.booking-card {
  border-color: rgba(241, 217, 154, .34) !important;
  background:
    linear-gradient(145deg, rgba(241, 217, 154, .12), transparent 42%),
    rgba(18, 13, 9, .9) !important;
}

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

.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
  gap: 34px;
  align-items: stretch;
  padding: 54px 0 30px;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  border-bottom: 1px solid rgba(214, 176, 100, .16);
  background:
    linear-gradient(90deg, rgba(58, 7, 17, .18), transparent 38%, rgba(214, 176, 100, .06)),
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 34%, rgba(0, 0, 0, .32));
}

.detail-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 38px 0;
}

.detail-hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 4.4rem;
}

.detail-hero__lead {
  max-width: 680px;
  color: #efe4cf;
  font-size: 1.06rem;
  line-height: 1.9;
}

.detail-hero__actions,
.detail-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.detail-hero__media {
  position: relative;
  margin: 0;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(241, 217, 154, .36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 241, 184, .1), rgba(58, 7, 17, .16) 58%, rgba(255, 255, 255, .035)),
    rgba(12, 9, 6, .84);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .48);
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 660px;
  border: 1px solid rgba(241, 217, 154, .24);
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.detail-hero__media figcaption {
  margin: 0;
  padding: 14px 4px 2px;
}

.detail-command {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin: 18px 0 34px;
  border: 1px solid rgba(214, 176, 100, .2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 241, 184, .07), rgba(58, 7, 17, .14), rgba(255, 255, 255, .025)),
    rgba(7, 6, 4, .88);
}

.detail-command article {
  min-width: 0;
  padding: 20px 22px;
  border-right: 1px solid rgba(214, 176, 100, .16);
}

.detail-command article:last-child {
  border-right: 0;
}

.detail-command span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 900;
}

.detail-command strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
}

.detail-section {
  position: relative;
  margin-bottom: 34px;
  padding: 42px;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 241, 184, .055), transparent 36%),
    linear-gradient(180deg, rgba(18, 13, 9, .92), rgba(8, 7, 5, .86));
  box-shadow: 0 24px 78px rgba(0, 0, 0, .3);
}

.detail-section::before,
.detail-cta::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 217, 154, .76), transparent);
}

.detail-section__head {
  max-width: 780px;
  margin-bottom: 24px;
}

.detail-section__head p {
  color: var(--soft);
}

.detail-profile__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.detail-profile__grid div {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(214, 176, 100, .15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 241, 184, .045), transparent 46%),
    rgba(0, 0, 0, .18);
}

.detail-profile__grid dt {
  margin-bottom: 8px;
}

.detail-profile__grid dd {
  line-height: 1.58;
}

.detail-intro {
  display: grid;
  grid-template-columns: minmax(260px, .34fr) minmax(0, 1fr);
  gap: 30px;
}

.detail-intro .detail-section__head {
  margin-bottom: 0;
}

.detail-intro__body {
  min-width: 0;
}

.detail-feature-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-feature-grid article {
  padding: 20px;
  border: 1px solid rgba(214, 176, 100, .16);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
}

.detail-feature-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-weight: 900;
}

.detail-feature-grid strong {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}

.detail-price {
  display: grid;
  grid-template-columns: minmax(260px, .34fr) minmax(0, 1fr);
  gap: 30px;
}

.detail-price .detail-section__head,
.detail-price .source-note {
  margin-bottom: 0;
}

.detail-price__table {
  min-width: 0;
  overflow-x: auto;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
}

.detail-price__table .info-table {
  min-width: 520px;
}

.detail-price .source-note {
  grid-column: 2;
}

.detail-route__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .48fr);
  gap: 28px;
  align-items: start;
}

.detail-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-checklist li {
  padding: 14px 16px;
  border: 1px solid rgba(214, 176, 100, .16);
  border-radius: 6px;
  background: rgba(0, 0, 0, .18);
  color: var(--soft);
}

.detail-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 10px;
  padding: 34px 42px;
  border: 1px solid rgba(241, 217, 154, .3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(241, 217, 154, .14), transparent 44%),
    linear-gradient(90deg, rgba(58, 7, 17, .3), rgba(9, 7, 5, .9));
}

.detail-cta h2 {
  margin-bottom: 10px;
}

.detail-cta p {
  margin-bottom: 0;
  color: var(--soft);
}

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

.room-hero {
  position: relative;
  padding: 58px 0 52px;
  border-bottom: 1px solid rgba(214, 176, 100, .18);
}

.room-hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(58, 7, 17, .3), transparent 42%, rgba(214, 176, 100, .12)),
    repeating-linear-gradient(90deg, rgba(241, 217, 154, .055) 0 1px, transparent 1px 128px),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(0, 0, 0, .36));
}

.room-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 58px;
  align-items: end;
}

.room-hero__copy {
  min-width: 0;
}

.room-hero__copy h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 4.2rem;
}

.room-hero__copy > p {
  max-width: 830px;
  margin-bottom: 0;
  color: #f0e3cc;
  font-size: 1.03rem;
  line-height: 1.92;
}

.room-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.room-booking-card {
  position: relative;
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(241, 217, 154, .34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(241, 217, 154, .12), transparent 46%),
    linear-gradient(180deg, rgba(20, 14, 10, .96), rgba(6, 5, 4, .92));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .4);
}

.room-booking-card::before {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(241, 217, 154, .2);
  border-radius: 50%;
  opacity: .68;
}

.room-booking-card > span,
.room-card__body > span,
.room-price-note > span,
.room-profile-grid dt {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
}

.room-booking-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 10px 0 10px;
  color: var(--gold-2);
  font-size: 1.68rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.room-booking-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: var(--soft);
}

.room-booking-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 176, 100, .16);
  border-radius: 8px;
  background: rgba(214, 176, 100, .16);
}

.room-booking-card dl div {
  padding: 13px 14px;
  background: rgba(8, 7, 5, .94);
}

.room-booking-card dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
}

.room-booking-card dd {
  margin-top: 4px;
  color: var(--text);
  font-size: .94rem;
  font-weight: 900;
}

.room-types,
.room-price-panel,
.room-process,
.room-profile {
  position: relative;
  margin-bottom: 64px;
  padding-top: 44px;
  border-top: 1px solid rgba(214, 176, 100, .18);
}

.room-section-head {
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.room-section-head .eyebrow,
.room-section-head h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.room-section-head p:not(.eyebrow) {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--soft);
  line-height: 1.86;
}

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

.room-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  grid-column: span 6;
  min-width: 0;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 241, 184, .06), transparent 42%),
    linear-gradient(180deg, rgba(20, 14, 9, .94), rgba(7, 6, 5, .9));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

.room-card--accent {
  grid-column: span 6;
  background:
    linear-gradient(145deg, rgba(111, 26, 43, .28), transparent 54%),
    linear-gradient(180deg, rgba(23, 15, 10, .96), rgba(7, 6, 5, .9));
}

.room-card--vip {
  grid-column: span 12;
  grid-template-columns: minmax(260px, .36fr) minmax(0, 1fr);
  min-height: 260px;
}

.room-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 217, 154, .74), transparent);
}

.room-card__plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  min-width: 0;
  padding: 24px;
  border-right: 1px solid rgba(214, 176, 100, .14);
  background:
    linear-gradient(180deg, rgba(241, 217, 154, .08), rgba(0, 0, 0, .12)),
    rgba(0, 0, 0, .2);
}

.room-card__plan span {
  min-height: 48px;
  border: 1px solid rgba(241, 217, 154, .28);
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(241, 217, 154, .16), transparent 64%),
    rgba(255, 255, 255, .025);
}

.room-card__plan span:first-child {
  grid-column: span 2;
  min-height: 86px;
}

.room-card__plan span:last-child {
  min-height: 118px;
}

.room-card__body {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 28px;
}

.room-card__body h3 {
  margin: 8px 0 12px;
  font-size: 1.52rem;
}

.room-card__body p {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--soft);
  line-height: 1.82;
}

.room-card__body strong {
  color: var(--gold-2);
  font-size: 1.04rem;
  font-variant-numeric: tabular-nums;
}

.room-price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: stretch;
}

.room-table-wrap {
  min-width: 0;
  overflow-x: auto;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
}

.room-table-wrap .info-table {
  min-width: 760px;
}

.room-price-note {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(214, 176, 100, .17);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(241, 217, 154, .09), transparent 46%),
    rgba(255, 255, 255, .025);
}

.room-price-note p {
  margin: 12px 0 18px;
  color: var(--soft);
  line-height: 1.8;
}

.room-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: room-step;
  list-style: none;
}

.room-process-list li {
  position: relative;
  min-width: 0;
  min-height: 180px;
  padding: 24px 20px 20px;
  border: 1px solid rgba(214, 176, 100, .16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 241, 184, .055), transparent 46%),
    rgba(8, 7, 5, .9);
}

.room-process-list li::before {
  content: counter(room-step, decimal-leading-zero);
  counter-increment: room-step;
  display: block;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1;
}

.room-process-list strong,
.room-process-list span {
  display: block;
}

.room-process-list strong {
  color: var(--text);
  font-weight: 900;
}

.room-process-list span {
  margin-top: 8px;
  color: var(--soft);
}

.room-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background: rgba(214, 176, 100, .18);
}

.room-profile-grid div {
  min-width: 0;
  min-height: 140px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 241, 184, .045), transparent 50%),
    rgba(10, 8, 6, .94);
}

.room-profile-grid dt {
  margin-bottom: 12px;
}

.room-profile-grid dd {
  margin: 0;
  color: var(--text);
  font-weight: 850;
  line-height: 1.58;
}

.room-profile-grid a {
  color: var(--gold-2);
}

.room-gallery-page .page-lead p {
  max-width: 900px;
}

.room-gallery-page .content-band {
  margin-bottom: 30px;
}

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

.gallery-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 241, 184, .055), transparent 46%),
    linear-gradient(180deg, rgba(16, 12, 9, .95), rgba(6, 5, 4, .9));
  box-shadow: 0 24px 76px rgba(0, 0, 0, .28);
}

.gallery-card__img {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 176, 100, .14);
  background: #080604;
  aspect-ratio: 16 / 9;
}

.gallery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04) brightness(.96);
  transition: transform .24s ease, filter .24s ease;
}

.gallery-card:hover .gallery-card__img img {
  transform: scale(1.018);
  filter: saturate(1.08) contrast(1.05) brightness(1);
}

.gallery-card__body {
  padding: 22px;
}

.gallery-card__body h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.gallery-card__desc {
  margin: 0;
  color: var(--soft);
  line-height: 1.82;
}

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

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

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

.room-reservation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

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

.venue-intro {
  position: relative;
  padding: 58px 0 34px;
}

.venue-intro::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  border-bottom: 1px solid rgba(214, 176, 100, .16);
  background:
    linear-gradient(90deg, rgba(58, 7, 17, .26), transparent 42%, rgba(214, 176, 100, .1)),
    repeating-linear-gradient(90deg, rgba(241, 217, 154, .05) 0 1px, transparent 1px 120px),
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(0, 0, 0, .34));
}

.venue-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 48px;
  align-items: end;
}

.venue-title {
  min-width: 0;
}

.venue-title h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 4.35rem;
}

.venue-title p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: #efe4cf;
  font-size: 1.02rem;
  line-height: 1.92;
}

.venue-reserve {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(241, 217, 154, .34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(241, 217, 154, .12), transparent 44%),
    linear-gradient(180deg, rgba(18, 13, 9, .94), rgba(6, 5, 4, .9));
  box-shadow: 0 24px 72px rgba(0, 0, 0, .38);
}

.venue-reserve::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(241, 217, 154, .18);
  border-radius: 50%;
  opacity: .7;
}

.venue-reserve span,
.venue-portrait__facts span,
.venue-file__grid dt,
.venue-room-grid span,
.venue-story aside span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-reserve strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 10px 0 8px;
  color: var(--gold-2);
  font-size: 1.62rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}

.venue-reserve p {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--soft);
}

.venue-reserve .primary-link {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 8px;
}

.venue-portrait {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: 0;
  align-items: stretch;
  margin: 34px 0 68px;
  padding: 18px 0;
  border-top: 1px solid rgba(214, 176, 100, .18);
  border-bottom: 1px solid rgba(214, 176, 100, .18);
}

.venue-portrait__image {
  min-width: 0;
  margin: 0;
  padding-right: 28px;
  border-right: 1px solid rgba(214, 176, 100, .16);
}

.venue-portrait__image img {
  width: 100%;
  height: 620px;
  border: 1px solid rgba(241, 217, 154, .22);
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .5);
}

.venue-portrait__image figcaption {
  max-width: 900px;
  margin-top: 12px;
}

.venue-portrait__facts {
  display: grid;
  align-content: stretch;
  min-width: 0;
  padding-left: 28px;
}

.venue-portrait__facts article {
  display: grid;
  align-content: center;
  min-height: 138px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(214, 176, 100, .14);
}

.venue-portrait__facts article:last-child {
  border-bottom: 0;
}

.venue-portrait__facts strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.34;
}

.venue-file,
.venue-story,
.venue-rooms,
.venue-arrival {
  position: relative;
  margin-bottom: 64px;
  padding-top: 44px;
  border-top: 1px solid rgba(214, 176, 100, .18);
}

.venue-section-title {
  display: grid;
  grid-template-columns: minmax(210px, .32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.venue-section-title .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
}

.venue-section-title h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.venue-section-title p:not(.eyebrow) {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--soft);
  line-height: 1.85;
}

.venue-file__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background: rgba(214, 176, 100, .18);
}

.venue-file__grid div {
  min-width: 0;
  min-height: 148px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 241, 184, .045), transparent 50%),
    rgba(10, 8, 6, .94);
}

.venue-file__grid dt {
  margin-bottom: 12px;
}

.venue-file__grid dd {
  margin: 0;
  color: var(--text);
  font-weight: 850;
  line-height: 1.58;
}

.venue-file__grid a {
  color: var(--gold-2);
}

.venue-story__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 44px;
  align-items: start;
}

.venue-story__content > div {
  min-width: 0;
  padding: 0 0 0 28px;
  border-left: 2px solid rgba(241, 217, 154, .34);
}

.venue-story__content > div p {
  max-width: 820px;
  margin-bottom: 18px;
  color: #eadfc9;
  font-size: 1.03rem;
  line-height: 1.95;
}

.venue-story aside {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.venue-story aside article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(214, 176, 100, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
}

.venue-story aside strong {
  display: block;
  margin-top: 8px;
  color: var(--gold-2);
  font-size: 1rem;
}

.venue-story aside p {
  margin: 8px 0 0;
  color: var(--soft);
}

.venue-room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.venue-room-grid article {
  position: relative;
  min-width: 0;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(214, 176, 100, .16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(241, 217, 154, .08), transparent 44%),
    rgba(7, 6, 5, .9);
}

.venue-room-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 1px;
  background: rgba(241, 217, 154, .46);
}

.venue-room-grid strong {
  display: block;
  margin-top: 20px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.2;
}

.venue-room-grid p {
  margin: 12px 0 0;
  color: var(--gold-2);
  font-size: 1.02rem;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.venue-table {
  min-width: 0;
  overflow-x: auto;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
}

.venue-table .info-table {
  min-width: 580px;
}

.venue-rooms .source-note {
  margin: 14px 0 0;
}

.venue-arrival__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
  gap: 44px;
  align-items: start;
}

.venue-arrival__grid > div {
  min-width: 0;
}

.venue-arrival__grid > div p {
  max-width: 790px;
  color: #eadfc9;
  line-height: 1.92;
}

.venue-arrival ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  counter-reset: arrival;
  list-style: none;
}

.venue-arrival li {
  position: relative;
  min-width: 0;
  padding: 16px 16px 16px 64px;
  border: 1px solid rgba(214, 176, 100, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
}

.venue-arrival li::before {
  content: counter(arrival, decimal-leading-zero);
  counter-increment: arrival;
  position: absolute;
  left: 16px;
  top: 18px;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.venue-arrival strong,
.venue-arrival span {
  display: block;
}

.venue-arrival strong {
  color: var(--text);
  font-weight: 900;
}

.venue-arrival span {
  margin-top: 4px;
  color: var(--soft);
}

.footline {
  margin-top: 58px;
  border-top: 1px solid rgba(214, 176, 100, .18);
  background:
    linear-gradient(180deg, rgba(17, 12, 8, .96), #040303),
    linear-gradient(90deg, rgba(58, 7, 17, .18), transparent 50%, rgba(214, 176, 100, .06));
}

.footline__inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(240px, .85fr) minmax(220px, .62fr);
  grid-template-rows: auto auto auto;
  align-items: start;
  gap: 18px 54px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 34px;
  text-align: left;
}

.foot-brand {
  grid-column: 1;
  grid-row: 1;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 900;
}

.foot-summary {
  grid-column: 1;
  grid-row: 2;
  max-width: 600px;
  margin: 0;
  color: var(--soft);
  font-weight: 700;
  line-height: 1.9;
}

.footer-hotline,
.footer-qr-title {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-hotline {
  grid-column: 1;
  grid-row: 3;
  margin: 8px 0 0;
}

.footer-qr-title {
  margin: 0;
}

.footer-hotline a,
.footer-map-link,
.footer-qr-phone {
  color: var(--gold-2);
  font-weight: 900;
}

.footer-qr-phone {
  display: inline-block;
  margin-left: 2px;
  font-size: 1.06rem;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-quick-title,
.footer-map-title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.footer-quick-title {
  grid-column: 2;
  grid-row: 1;
  margin: 6px 0 0;
}

.footer-map-title {
  grid-column: 2;
  grid-row: 3;
  margin: 8px 0 0;
}

.footer-quick-nav {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(84px, auto));
  justify-content: start;
  gap: 12px 18px;
  margin: 0;
}

.footer-quick-nav a {
  color: var(--soft);
  font-weight: 850;
}

.footer-contact-card {
  grid-column: 3;
  grid-row: 1 / span 3;
  display: grid;
  justify-items: center;
  gap: 8px;
  justify-self: end;
  min-width: 184px;
  margin: 0;
  padding: 20px 22px;
  border: 1px solid rgba(214, 176, 100, .18);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01)),
    rgba(20, 14, 9, .52);
}

.footer-qr {
  width: 112px;
  height: 112px;
  border: 6px solid #fff;
  border-radius: 4px;
  background: #fff;
  object-fit: contain;
}

.footer-qr-note {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.copyright {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(214, 176, 100, .12);
  color: var(--muted);
  font-size: .82rem;
}

.copyright a {
  color: var(--gold-2);
  font-weight: 850;
}

@media (max-width: 1120px) {
  .topbar__inner {
    gap: 14px;
  }

  .navline a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: .86rem;
  }
}

@media (max-width: 980px) {
  .topbar__inner {
    position: relative;
    min-height: 70px;
    padding-right: 142px;
  }

  .navline,
  .contact-pill {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 130px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 130px;
    margin-left: auto;
    min-width: 130px;
    padding: 0 8px;
    font-size: .98rem;
    white-space: nowrap;
    transform: translateY(-50%);
  }

  .mast {
    grid-template-columns: minmax(20px, 1fr) minmax(0, 720px) minmax(20px, 1fr);
    min-height: auto;
    padding: 64px 0 54px;
  }

  .mast--store::before {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, .72), rgba(5, 4, 3, .94)),
      url("../img/generated/jinzuan-facade-1200.jpg") center top / cover no-repeat;
  }

  .mast--store .mast__copy,
  .mast--store .store-visual {
    grid-column: 2;
    min-width: 0;
  }

  .mast--store .store-visual {
    max-width: 100%;
    margin-top: 18px;
    transform: none;
  }

  h1 {
    font-size: 4rem;
  }

  h1 span {
    font-size: 1.32rem;
  }

  .module-stack,
  .article-list,
  .rule-grid,
  .map-list,
  .flowline,
  .fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-band,
  .content-band.split-band,
  .two-column,
  .footline__inner {
    grid-template-columns: 1fr;
  }

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

  .detail-hero,
  .detail-intro,
  .detail-price,
  .detail-route__layout,
  .detail-cta {
    grid-template-columns: 1fr;
  }

  .detail-hero__copy {
    padding-bottom: 0;
  }

  .detail-hero h1 {
    font-size: 3.65rem;
  }

  .detail-hero__media img {
    min-height: 360px;
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .detail-command,
  .detail-profile__grid,
  .detail-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-command article:nth-child(2) {
    border-right: 0;
  }

  .detail-price .source-note {
    grid-column: 1;
  }

  .detail-cta__actions {
    margin-top: 0;
  }

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

  .room-hero__grid,
  .room-price-layout {
    grid-template-columns: 1fr;
  }

  .room-hero__copy h1 {
    font-size: 3.55rem;
  }

  .room-booking-card {
    max-width: 560px;
  }

  .room-section-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .room-section-head .eyebrow,
  .room-section-head h2,
  .room-section-head p:not(.eyebrow) {
    grid-column: 1;
  }

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

  .room-card,
  .room-card--accent,
  .room-card--vip {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .room-card__plan {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(214, 176, 100, .14);
  }

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

  .venue-intro__grid,
  .venue-portrait,
  .venue-story__content,
  .venue-arrival__grid {
    grid-template-columns: 1fr;
  }

  .venue-title h1 {
    font-size: 3.55rem;
  }

  .venue-reserve {
    max-width: 520px;
  }

  .venue-portrait {
    gap: 22px;
  }

  .venue-portrait__image {
    padding-right: 0;
    border-right: 0;
  }

  .venue-portrait__image img {
    height: 430px;
  }

  .venue-portrait__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding-left: 0;
    border: 1px solid rgba(214, 176, 100, .16);
    border-radius: 8px;
    background: rgba(214, 176, 100, .16);
  }

  .venue-portrait__facts article {
    min-height: 124px;
    padding: 18px;
    border: 0;
    background: rgba(9, 7, 5, .94);
  }

  .venue-section-title {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .venue-section-title .eyebrow,
  .venue-section-title h2,
  .venue-section-title p:not(.eyebrow) {
    grid-column: 1;
  }

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

  .venue-story__content {
    gap: 24px;
  }

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

}

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

  .home-page {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .topbar__inner,
  main,
  .detail-page,
  .room-page,
  .footline__inner,
  .copyright {
    width: min(var(--max), calc(100% - 32px));
  }

  .topbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
    gap: 8px;
    width: 100%;
    padding: 0 12px 0 16px;
  }

  .menu-toggle {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    z-index: 23;
    justify-self: end;
    align-self: center;
    flex: 0 0 auto;
    width: clamp(136px, 37vw, 148px);
    max-width: 148px;
    min-width: clamp(136px, 37vw, 148px);
    min-height: 46px;
    margin-left: 0;
    padding: 0 12px;
    overflow: hidden;
    font-size: clamp(1rem, 4vw, 1.08rem);
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    transform: none;
  }

  .brandmark {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }

  .brandmark__seal {
    width: 30px;
    height: 30px;
  }

  .brandmark__text {
    max-width: min(10em, calc(100vw - 220px));
    overflow: hidden;
    font-size: 1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mast {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: auto;
    padding: 18px 0 0;
    align-content: center;
  }

  .mast--store {
    width: 100%;
    margin-left: 0;
  }

  .mast--store::before {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, .34) 0, rgba(5, 4, 3, .58) 46%, rgba(5, 4, 3, .9) 100%),
      url("../img/generated/jinzuan-facade-800.jpg") center top / auto 62vh no-repeat;
    filter: saturate(1.12) contrast(1.06) brightness(1.16);
  }

  .mast--store .mast__copy,
  .mast--store .store-visual {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .mast--store .mast__copy {
    display: flex;
    min-height: 40vh;
    margin-top: 90px;
    flex-direction: column;
    justify-content: center;
    padding-top: 4px;
    padding-bottom: 8px;
    text-align: center;
  }

  .mast--store .mast__copy h1,
  .mast--store .mast__copy h1 span,
  .mast--store .mast__lead {
    margin-right: auto;
    margin-left: auto;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(2rem, 10vw, 2.36rem);
    line-height: 1.12;
  }

  h1 span {
    margin-top: 12px;
    font-size: 1.03rem;
    line-height: 1.42;
  }

  h2 {
    font-size: 1.42rem;
  }

  h3 {
    font-size: 1.04rem;
  }

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

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

  .mast__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    margin-top: 18px;
    border-color: rgba(241, 217, 154, .34);
    background:
      linear-gradient(90deg, rgba(5, 4, 3, .66), rgba(48, 33, 18, .54)),
      rgba(5, 4, 3, .42);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
  }

  .mast__facts span {
    justify-content: center;
    min-width: 0;
    min-height: 40px;
    padding: 8px 4px;
    border-right: 1px solid rgba(214, 176, 100, .14);
    border-bottom: 0;
    font-size: .7rem;
    text-align: center;
    white-space: nowrap;
  }

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

  .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(241, 217, 154, .26);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 8px 8px 0 0;
    background:
      linear-gradient(180deg, rgba(18, 13, 9, .98), rgba(7, 6, 5, .98)),
      rgba(5, 4, 3, .98);
    box-shadow: 0 -18px 54px rgba(0, 0, 0, .48);
  }

  .mobile-call-float {
    position: fixed;
    right: 14px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    z-index: 92;
    display: block;
  }

  .mobile-call-float details {
    position: relative;
  }

  .mobile-call-float summary {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 235, 166, .72);
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 35%, rgba(255, 246, 199, .34), transparent 36%),
      linear-gradient(145deg, rgba(83, 12, 24, .96), rgba(21, 14, 8, .96) 48%, rgba(183, 124, 42, .9));
    color: #fff3c9;
    cursor: pointer;
    list-style: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .22),
      0 16px 38px rgba(0, 0, 0, .5),
      0 0 0 4px rgba(214, 176, 100, .08);
  }

  .mobile-call-float summary::-webkit-details-marker {
    display: none;
  }

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

  .mobile-call-float summary span {
    margin-top: -3px;
    color: #fff4d4;
    font-size: .62rem;
    font-weight: 900;
    line-height: 1;
  }

  .mobile-call-panel {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: min(224px, calc(100vw - 28px));
    padding: 14px;
    border: 1px solid rgba(241, 217, 154, .34);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(255, 241, 184, .1), transparent 38%),
      linear-gradient(180deg, rgba(20, 15, 10, .98), rgba(7, 6, 5, .98));
    box-shadow: 0 22px 58px rgba(0, 0, 0, .56);
  }

  .mobile-call-panel__label,
  .mobile-call-panel__hint {
    display: block;
    color: var(--soft);
    font-size: .74rem;
    font-weight: 850;
    text-align: center;
  }

  .mobile-call-panel__number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 8px 0 7px;
    border: 1px solid rgba(255, 242, 190, .64);
    border-radius: 6px;
    background: linear-gradient(135deg, #f8e4aa, #c58b35 48%, #fff1bd);
    color: #130d05;
    font-size: 1.16rem;
    font-weight: 950;
    line-height: 1;
  }

  .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: .61rem;
    font-weight: 850;
    line-height: 1;
    text-align: center;
  }

  .mobile-bottom-nav a[aria-current="page"] {
    color: var(--gold-2);
    background: rgba(214, 176, 100, .1);
  }

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

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

  .mast__actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .primary-link,
  .ghost-link {
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
  }

  .room-hero {
    padding: 28px 0 26px;
  }

  .room-hero__grid {
    gap: 18px;
  }

  .room-hero__copy h1 {
    font-size: 2.42rem;
  }

  .room-hero__copy > p {
    font-size: .94rem;
    line-height: 1.78;
  }

  .room-hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 20px;
  }

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

  .room-booking-card strong {
    font-size: 1.38rem;
  }

  .room-types,
  .room-price-panel,
  .room-process,
  .room-profile {
    margin-bottom: 34px;
    padding-top: 28px;
  }

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

  .room-section-head p:not(.eyebrow) {
    font-size: .92rem;
    line-height: 1.76;
  }

  .room-suite-grid,
  .room-process-list,
  .room-profile-grid {
    grid-template-columns: 1fr;
  }

  .room-card {
    min-height: auto;
  }

  .room-card__plan {
    min-height: 118px;
    padding: 14px;
  }

  .room-card__plan span {
    min-height: 34px;
  }

  .room-card__plan span:first-child {
    min-height: 58px;
  }

  .room-card__plan span:last-child {
    min-height: 76px;
  }

  .room-card__body,
  .room-price-note,
  .room-profile-grid div {
    padding: 16px;
  }

  .room-card__body h3 {
    font-size: 1.18rem;
  }

  .room-card__body p,
  .room-price-note p {
    font-size: .9rem;
    line-height: 1.72;
  }

  .room-table-wrap .info-table {
    min-width: 680px;
  }

  .room-process-list li {
    min-height: auto;
    padding: 16px;
  }

  .room-process-list li::before {
    margin-bottom: 12px;
    font-size: 1.18rem;
  }

  .room-profile-grid div {
    min-height: auto;
  }

  .mast--store .store-visual--hero {
    display: none;
  }

  .store-visual--inline {
    display: block;
    width: calc(100% + 16px);
    max-width: calc(100% + 16px);
    margin-left: -8px;
    margin-top: 0;
    margin-bottom: 16px;
    padding: 8px;
    transform: none;
  }

  .store-visual--inline .store-visual__track img {
    aspect-ratio: auto;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center top;
  }

  .home-facility-band {
    display: none;
  }

  .content-band[aria-labelledby="quickFactsTitle"] {
    margin-top: 0;
  }

  .store-visual figcaption,
  figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.6;
  }

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

  .content-band *,
  .article-shell *,
  .module-card,
  .rule-grid article,
  .fact-panel,
  .fact-panel dl,
  .fact-panel dl div,
  .flowline,
  .flowline div {
    min-width: 0;
    max-width: 100%;
  }

  .two-column .article-shell,
  .two-column .side-rail {
    width: calc(100% - 16px);
  }

  .side-rail .recommend-link {
    padding: 14px 0;
  }

  .article-pager {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
    padding-top: 18px;
  }

  .article-pager__link {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 10px 6px;
    font-size: .78rem;
    white-space: nowrap;
  }

  .article-head p,
  .page-lead p,
  .mast__lead,
  .module-card p,
  .rule-grid p,
  .fact-panel dt,
  .fact-panel dd,
  .flowline p,
  .source-note,
  figcaption,
  dd,
  strong {
    overflow-wrap: anywhere;
  }

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

  .page-lead h1,
  .article-head h1 {
    max-width: 100%;
    font-size: clamp(1.86rem, 8.8vw, 2.06rem);
  }

  .crumbs {
    gap: 6px;
    margin-bottom: 14px;
    font-size: .78rem;
  }

  .row-head {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .module-stack,
  .article-list,
  .rule-grid,
  .map-list,
  .flowline,
  .fact-strip,
  .room-entry-grid,
  .city-matrix,
  .entry-grid {
    grid-template-columns: 1fr;
  }

  .jobs-contact__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .qr-card {
    padding: 14px;
  }

  .qr-card img {
    width: min(100%, 240px);
  }

  .entry-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 10px;
  }

  .entry-card img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .fact-panel dl div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 13px;
  }

  .fact-strip article,
  .module-card,
  .article-card,
  .rule-grid article,
  .flowline li,
  .flowline div {
    min-height: auto;
    padding: 16px;
  }

  .table-wrap {
    margin-right: -6px;
    margin-left: -6px;
  }

  .info-table {
    min-width: 0;
  }

  .info-table th,
  .info-table td {
    padding: 12px 9px;
    font-size: .78rem;
    line-height: 1.55;
  }

  .media-frame {
    margin: 18px 0;
  }

  .media-frame .store-visual__track img {
    min-height: 180px;
    aspect-ratio: 16 / 10;
  }

  .detail-hero {
    gap: 18px;
    padding: 28px 0 18px;
  }

  .detail-hero__copy {
    padding: 0;
  }

  .detail-hero h1 {
    font-size: 2.36rem;
  }

  .detail-hero__lead {
    font-size: .92rem;
    line-height: 1.78;
  }

  .detail-hero__actions,
  .detail-cta__actions {
    display: grid;
    gap: 12px;
  }

  .detail-hero__media {
    padding: 8px;
  }

  .detail-hero__media img {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .detail-command,
  .detail-profile__grid,
  .detail-feature-grid {
    grid-template-columns: 1fr;
  }

  .detail-command {
    margin: 12px 0 18px;
  }

  .detail-command article {
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(214, 176, 100, .14);
  }

  .detail-command article:last-child {
    border-bottom: 0;
  }

  .detail-section,
  .detail-cta {
    margin-bottom: 18px;
    padding: 18px;
  }

  .detail-section::before,
  .detail-cta::before {
    left: 16px;
    right: 16px;
  }

  .detail-section__head {
    margin-bottom: 16px;
  }

  .detail-profile__grid div,
  .detail-feature-grid article,
  .detail-checklist li {
    padding: 14px;
  }

  .detail-price__table {
    margin-right: -6px;
    margin-left: -6px;
  }

  .detail-price__table .info-table {
    min-width: 0;
  }

  .venue-page {
    width: min(var(--max), calc(100% - 32px));
  }

  .venue-intro {
    padding: 28px 0 22px;
  }

  .venue-intro__grid {
    gap: 18px;
  }

  .venue-title h1 {
    font-size: 2.34rem;
  }

  .venue-title p:not(.eyebrow) {
    font-size: .92rem;
    line-height: 1.78;
  }

  .venue-reserve {
    padding: 18px;
  }

  .venue-reserve strong {
    font-size: 1.32rem;
  }

  .venue-portrait {
    margin: 22px 0 34px;
    padding: 12px 0;
  }

  .venue-portrait__image img {
    height: 300px;
  }

  .venue-portrait__facts,
  .venue-file__grid,
  .venue-room-grid {
    grid-template-columns: 1fr;
  }

  .venue-portrait__facts article {
    min-height: auto;
    padding: 15px;
  }

  .venue-portrait__facts strong {
    font-size: 1.02rem;
  }

  .venue-file,
  .venue-story,
  .venue-rooms,
  .venue-arrival {
    margin-bottom: 34px;
    padding-top: 28px;
  }

  .venue-section-title {
    margin-bottom: 18px;
  }

  .venue-file__grid div {
    min-height: auto;
    padding: 16px;
  }

  .venue-story__content > div {
    padding-left: 16px;
  }

  .venue-story__content > div p,
  .venue-arrival__grid > div p {
    font-size: .92rem;
    line-height: 1.78;
  }

  .venue-story aside article,
  .venue-room-grid article,
  .venue-arrival li {
    padding: 15px;
  }

  .venue-room-grid article {
    min-height: auto;
  }

  .venue-room-grid strong {
    margin-top: 12px;
    font-size: 1.22rem;
  }

  .venue-table {
    margin-right: -6px;
    margin-left: -6px;
  }

  .venue-table .info-table {
    min-width: 520px;
  }

  .venue-arrival__grid {
    gap: 18px;
  }

  .venue-arrival li {
    padding-left: 56px;
  }

  .venue-arrival li::before {
    left: 15px;
    top: 18px;
    font-size: 1.08rem;
  }

  .footline {
    margin-top: 28px;
  }

  .footline__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 26px 0 20px;
    text-align: center;
  }

  .foot-brand {
    font-size: 1.1rem;
  }

  .foot-summary {
    max-width: 100%;
    margin: 0 auto;
    font-size: .88rem;
    line-height: 1.9;
  }

  .footer-hotline,
  .footer-quick-title,
  .footer-map-title {
    margin: 4px 0 0;
  }

  .footer-hotline,
  .footer-quick-title,
  .footer-map-title,
  .footer-qr-title {
    font-size: .96rem;
  }

  .footer-quick-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    margin-top: 2px;
    font-size: .88rem;
  }

  .footer-contact-card {
    min-width: 0;
    padding: 0;
    border: 0;
    background: none;
  }

  .footer-qr {
    width: 104px;
    height: 104px;
    border-width: 5px;
  }

  .copyright {
    margin: 0 auto calc(50px + env(safe-area-inset-bottom));
    padding: 12px 0 18px;
    font-size: .76rem;
    line-height: 1.55;
  }
}

@media (max-width: 980px) {
  .gallery-grid,
  .room-service-grid,
  .room-experience-grid,
  .room-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .room-gallery-page .content-band {
    margin-bottom: 18px;
  }

  .room-gallery-page .page-lead h1 {
    max-width: 9em;
    font-size: 1.9rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .gallery-grid,
  .room-service-grid,
  .room-experience-grid,
  .room-faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    gap: 14px;
  }

  .gallery-card__body {
    padding: 16px;
  }

  .gallery-card__body h3 {
    font-size: 1.08rem;
  }

  .gallery-card__desc {
    font-size: .9rem;
    line-height: 1.72;
  }

  .room-reservation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

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