:root {
  --night: #080706;
  --night-soft: #0d0b09;
  --night-raised: #15110d;
  --night-deep: #050403;
  --night-rgb: 8, 7, 6;
  --header-rgb: 7, 6, 5;
  --deep-rgb: 5, 4, 3;
  --surface-rgb: 24, 20, 15;
  --ivory: #f5efe4;
  --ivory-rgb: 245, 239, 228;
  --ivory-muted: rgba(var(--ivory-rgb), 0.66);
  --ivory-faint: rgba(var(--ivory-rgb), 0.42);
  --gold: #c9a668;
  --gold-bright: #eed19a;
  --gold-dark: #8b6330;
  --accent-rgb: 201, 166, 104;
  --accent-soft-rgb: 224, 197, 145;
  --accent-deep-rgb: 199, 146, 60;
  --button-accent: #d7b878;
  --accent-ink: #160f07;
  --accent-panel: #2b1b09;
  --line: rgba(var(--accent-soft-rgb), 0.2);
  --line-strong: rgba(var(--accent-soft-rgb), 0.42);
  --display: "Noto Serif TC", "Noto Serif SC", "Noto Serif HK", "Source Han Serif TC", "Songti TC", "Songti SC", STSong, Georgia, serif;
  --body: "Noto Sans HK", Inter, "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", Arial, sans-serif;
  --micro: Inter, "Noto Sans HK", "PingFang TC", "PingFang SC", Arial, sans-serif;
  --page-pad: clamp(22px, 6vw, 92px);
  --content: 1280px;
  --section-space: clamp(96px, 10vw, 152px);
  --control: 210ms ease;
}

html[data-theme="amethyst-noir"] {
  --night: #08060d;
  --night-soft: #100c17;
  --night-raised: #171020;
  --night-deep: #040306;
  --night-rgb: 8, 6, 13;
  --header-rgb: 7, 5, 11;
  --deep-rgb: 4, 3, 6;
  --surface-rgb: 20, 14, 28;
  --ivory: #f4eef7;
  --ivory-rgb: 244, 238, 247;
  --ivory-muted: rgba(244, 238, 247, 0.68);
  --ivory-faint: rgba(244, 238, 247, 0.42);
  --gold: #b98bd8;
  --gold-bright: #e4c8f3;
  --gold-dark: #765094;
  --accent-rgb: 185, 139, 216;
  --accent-soft-rgb: 216, 187, 234;
  --accent-deep-rgb: 130, 84, 164;
  --button-accent: #c79ce3;
  --accent-ink: #170b20;
  --accent-panel: #25122f;
}

html[lang="zh-Hans"] {
  --display: "Noto Serif SC", "Noto Serif TC", "Noto Serif HK", "Source Han Serif SC", "Songti SC", "Songti TC", STSong, Georgia, serif;
}

html[lang="en"] {
  --display: "Playfair Display", "Noto Serif TC", "Noto Serif SC", Georgia, serif;
}

html[data-theme="sapphire-noir"] {
  --night: #050a10;
  --night-soft: #09121b;
  --night-raised: #0d1a25;
  --night-deep: #030609;
  --night-rgb: 5, 10, 16;
  --header-rgb: 4, 9, 15;
  --deep-rgb: 3, 6, 9;
  --surface-rgb: 12, 25, 36;
  --ivory: #eef3f5;
  --ivory-rgb: 238, 243, 245;
  --ivory-muted: rgba(238, 243, 245, 0.68);
  --ivory-faint: rgba(238, 243, 245, 0.42);
  --gold: #78a8c4;
  --gold-bright: #c4dce8;
  --gold-dark: #3e6d89;
  --accent-rgb: 120, 168, 196;
  --accent-soft-rgb: 181, 210, 226;
  --accent-deep-rgb: 61, 109, 137;
  --button-accent: #8ab7cf;
  --accent-ink: #071722;
  --accent-panel: #0b2638;
}

html[data-theme="emerald-champagne"] {
  --night: #050a08;
  --night-soft: #09130f;
  --night-raised: #0e1b16;
  --night-deep: #030605;
  --night-rgb: 5, 10, 8;
  --header-rgb: 4, 9, 7;
  --deep-rgb: 3, 6, 5;
  --surface-rgb: 13, 27, 22;
  --ivory: #f2f2e9;
  --ivory-rgb: 242, 242, 233;
  --ivory-muted: rgba(242, 242, 233, 0.68);
  --ivory-faint: rgba(242, 242, 233, 0.42);
  --gold: #c4b482;
  --gold-bright: #eadfb9;
  --gold-dark: #807044;
  --accent-rgb: 196, 180, 130;
  --accent-soft-rgb: 220, 207, 164;
  --accent-deep-rgb: 142, 125, 72;
  --button-accent: #d0c18f;
  --accent-ink: #111b14;
  --accent-panel: #173328;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--night);
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 4px 4px,
    var(--night);
  color: var(--ivory);
  font-family: var(--body);
  line-height: 1.6;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  background: rgba(0, 0, 0, 0.68);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.22s ease;
  z-index: 1150;
}

body.nav-open::before {
  opacity: 1;
}

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

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

::selection {
  background: var(--gold);
  color: var(--night-deep);
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

h1,
h2,
.slogan,
.brand strong,
.footer strong {
  font-family: var(--display);
  font-weight: 400;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  color: var(--gold-bright);
  font-size: clamp(70px, 8.7vw, 128px);
  line-height: 1.02;
  margin-bottom: 16px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
}

.hero h1 {
  background: linear-gradient(110deg, var(--gold-bright) 0%, var(--ivory) 44%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.08em;
}

h2 {
  color: var(--ivory);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.1;
  margin-bottom: 20px;
}

h3 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 10px;
}

p {
  line-height: 1.82;
}

.eyebrow,
.section-index,
.match-kicker,
.match-count,
.article-card small,
.hero-rail,
.match-inclusions {
  font-family: var(--micro);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 13px;
}

.section-index {
  color: rgba(var(--ivory-rgb), 0.36);
  font-size: 10px;
  margin-bottom: 48px;
}

html[lang^="zh"] .booking-tip .eyebrow {
  letter-spacing: 0;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(3px);
  background: linear-gradient(180deg, rgba(var(--header-rgb), 0.66), rgba(var(--header-rgb), 0.04));
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 26px;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 var(--page-pad);
  position: fixed;
  right: 0;
  top: 0;
  transition: background var(--control), border-color var(--control), box-shadow var(--control), backdrop-filter var(--control);
  z-index: 1250;
}

.site-header.is-scrolled {
  backdrop-filter: blur(12px);
  background: rgba(var(--night-rgb), 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold-bright);
  display: grid;
  font-family: var(--display);
  font-size: 20px;
  height: 38px;
  place-items: center;
  width: 38px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--gold-bright);
  font-size: 20px;
  line-height: 1;
}

.brand small {
  color: rgba(var(--ivory-rgb), 0.48);
  font-size: 10px;
  margin-top: 5px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  flex: 1;
  gap: clamp(10px, 1.45vw, 25px);
  justify-content: center;
}

.desktop-nav a {
  color: rgba(var(--ivory-rgb), 0.68);
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 0;
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  background: var(--gold);
  bottom: 6px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
  width: 100%;
}

.desktop-nav a:hover {
  color: var(--ivory);
}

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

.language-switch {
  align-items: center;
  display: flex;
  gap: 3px;
  min-width: max-content;
}

.language-switch a {
  color: rgba(var(--ivory-rgb), 0.42);
  font-size: 11px;
  padding: 8px 7px;
}

.language-switch a.active {
  color: var(--gold-bright);
}

.header-action,
.primary-btn {
  background: var(--button-accent);
  border: 1px solid var(--button-accent);
  border-radius: 2px;
  color: var(--accent-ink);
  cursor: pointer;
  font-weight: 700;
  min-height: 42px;
  padding: 0 18px;
  transition: background var(--control), border-color var(--control), color var(--control), transform var(--control);
  white-space: nowrap;
}

.header-action:hover,
.primary-btn:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}

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

.nav-toggle,
.mobile-drawer {
  display: none;
}

.hero {
  height: auto;
  min-height: max(94svh, 820px);
  overflow: hidden;
  position: relative;
}

.hero-image {
  filter: saturate(0.86) contrast(1.08) brightness(0.78);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 50% center;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(var(--deep-rgb), 0.94) 0%, rgba(var(--deep-rgb), 0.68) 35%, rgba(var(--deep-rgb), 0.14) 69%, rgba(var(--deep-rgb), 0.34) 100%),
    linear-gradient(180deg, rgba(var(--deep-rgb), 0.16) 0%, rgba(var(--deep-rgb), 0.08) 51%, rgba(var(--deep-rgb), 0.93) 100%);
  inset: 0;
  position: absolute;
}

.hero-content {
  align-items: center;
  display: flex;
  min-height: max(94svh, 820px);
  margin: 0 auto;
  max-width: var(--content);
  padding: 118px var(--page-pad) 84px;
  position: relative;
  z-index: 2;
}

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

.hero-copy-block {
  margin-right: auto;
  width: min(650px, 50vw);
}

.slogan {
  color: var(--ivory);
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-copy {
  color: rgba(var(--ivory-rgb), 0.74);
  font-size: clamp(15px, 1.25vw, 18px);
  margin-bottom: 0;
  max-width: 620px;
}

.hero-price {
  align-items: center;
  border-bottom: 1px solid rgba(var(--accent-soft-rgb), 0.22);
  border-top: 1px solid rgba(var(--accent-soft-rgb), 0.22);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 22px;
  max-width: 620px;
  padding: 12px 0;
}

.hero-price > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.hero-price > div span {
  color: var(--gold-bright);
  font-family: var(--micro);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-price > div small {
  color: rgba(var(--ivory-rgb), 0.4);
  font-size: 9px;
  line-height: 1.45;
}

.hero-price > p {
  align-items: baseline;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  margin: 0;
}

.hero-price strong {
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
}

.hero-price strong b {
  color: rgba(var(--ivory-rgb), 0.48);
  font-family: var(--micro);
  font-size: 8px;
  font-weight: 500;
  margin-right: 4px;
}

.hero-price > p i {
  color: rgba(var(--accent-soft-rgb), 0.32);
  font-style: normal;
}

.hero-links {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.im-link {
  align-items: center;
  border: 1px solid rgba(var(--ivory-rgb), 0.24);
  border-radius: 2px;
  color: var(--ivory);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  min-height: 57px;
  padding: 0 20px;
  transition: background var(--control), border-color var(--control), color var(--control), transform var(--control);
}

.im-link:hover {
  background: rgba(var(--ivory-rgb), 0.1);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.im-link svg {
  fill: currentColor;
  height: 26px;
  width: 26px;
}

.telegram svg {
  color: #3eabdd;
}

.whatsapp svg {
  color: #36d06e;
}

.line svg {
  color: #21d665;
}

.hero-booking-pulse {
  animation: booking-pulse 1.65s ease-in-out infinite;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 18px 0 16px;
}

html[lang^="zh"] .hero-booking-pulse {
  letter-spacing: 0;
}

@keyframes booking-pulse {
  0%,
  100% {
    opacity: 0.72;
    text-shadow: 0 0 0 rgba(var(--accent-rgb), 0);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 18px rgba(var(--accent-rgb), 0.74), 0 0 34px rgba(var(--accent-rgb), 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-booking-pulse {
    animation: none;
  }
}

.hero-badges {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 12px;
}

.hero-badges div {
  border-right: 1px solid var(--line);
  min-width: 0;
  padding: 13px 12px;
}

.hero-badges div:first-child {
  padding-left: 0;
}

.hero-badges div:last-child {
  border-right: 0;
}

.hero-badges strong {
  color: var(--gold-bright);
  display: block;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.hero-badges span {
  color: rgba(var(--ivory-rgb), 0.48);
  display: block;
  font-size: 10px;
  margin-top: 3px;
}

.hero-rail {
  align-items: center;
  bottom: 76px;
  color: rgba(var(--ivory-rgb), 0.46);
  display: flex;
  font-size: 9px;
  gap: 13px;
  left: 26px;
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  z-index: 3;
}

.hero-rail i {
  background: var(--gold);
  display: block;
  height: 1px;
  width: 46px;
}

.booking-notice,
.section,
.page-hero,
.content-layout,
.footer {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

#booking-notice {
  scroll-margin-top: 76px;
}

.booking-notice {
  background:
    radial-gradient(circle at 18% 42%, rgba(238, 209, 154, 0.14), transparent 28%),
    linear-gradient(115deg, rgba(201, 166, 104, 0.12), rgba(var(--surface-rgb), 0.72) 42%, rgba(var(--deep-rgb), 0.58)),
    var(--night-soft);
  border: 1px solid rgba(238, 209, 154, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(238, 209, 154, 0.2),
    inset 0 22px 70px rgba(238, 209, 154, 0.04),
    0 26px 90px rgba(0, 0, 0, 0.26);
  margin-bottom: 40px;
  margin-left: 40px;
  margin-right: 40px;
  padding-bottom: 48px;
  padding-left: calc(var(--page-pad) - 40px);
  padding-right: calc(var(--page-pad) - 40px);
  padding-top: 48px;
}

.booking-tip {
  align-items: center;
  display: grid;
  gap: clamp(22px, 3.4vw, 58px);
  grid-template-columns: 54px minmax(150px, 0.24fr) minmax(0, 1fr) 58px;
  margin: 0 auto;
  max-width: var(--content);
}

.notice-index {
  color: rgba(238, 209, 154, 0.82);
  font-family: var(--micro);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.booking-tip h2 {
  color: #eed19a;
  font-size: clamp(27px, 3vw, 43px);
  margin-bottom: 12px;
  max-width: 1040px;
}

.booking-tip p:last-child {
  color: var(--ivory-muted);
  margin-bottom: 0;
  max-width: 980px;
}

.notice-action {
  background: transparent;
  border: 1px solid rgba(238, 209, 154, 0.48);
  border-radius: 50%;
  color: #eed19a;
  cursor: pointer;
  font-size: 22px;
  height: 48px;
  transition: background var(--control), color var(--control), transform var(--control);
  width: 48px;
}

.notice-action:hover {
  background: #eed19a;
  color: #160f07;
  transform: translateX(3px);
}

.booking-vip-mark {
  align-items: center;
  border: 1px solid rgba(238, 209, 154, 0.52);
  box-shadow: inset 0 0 0 1px rgba(238, 209, 154, 0.12), 0 0 34px rgba(201, 166, 104, 0.1);
  color: #eed19a;
  display: flex;
  font-family: var(--display);
  font-size: clamp(24px, 2.25vw, 32px);
  font-weight: 400;
  justify-items: center;
  justify-content: center;
  line-height: 1.18;
  min-height: 104px;
  min-width: 150px;
  padding: 22px 18px;
  position: relative;
  text-align: center;
  white-space: nowrap;
}

.booking-vip-mark::before,
.booking-vip-mark::after {
  background: #eed19a;
  content: "";
  height: 1px;
  opacity: 0.62;
  position: absolute;
  width: 28px;
}

.booking-vip-mark::before {
  top: 16px;
}

.booking-vip-mark::after {
  bottom: 16px;
}

.section {
  margin: 0 auto;
  max-width: calc(var(--content) + 2 * var(--page-pad));
  padding-bottom: var(--section-space);
  padding-top: var(--section-space);
}

.match-section {
  align-items: center;
  background:
    linear-gradient(115deg, rgba(var(--accent-rgb), 0.035), transparent 40%),
    var(--night-soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(54px, 7vw, 108px);
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  max-width: none;
  padding-bottom: var(--section-space);
  padding-top: var(--section-space);
  position: relative;
}

.match-section::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  height: 1px;
  left: var(--page-pad);
  opacity: 0.34;
  position: absolute;
  right: var(--page-pad);
  top: 0;
}

.match-copy {
  max-width: 510px;
}

.match-copy > p:not(.eyebrow):not(.section-index) {
  color: var(--ivory-muted);
}

.match-inclusions {
  color: rgba(var(--accent-rgb), 0.7);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--micro);
  font-size: 8px;
  gap: 10px 20px;
  margin-top: 34px;
}

.match-inclusions span {
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
}

.match-card {
  align-self: center;
  background: rgba(var(--header-rgb), 0.54);
  border: 1px solid rgba(var(--accent-soft-rgb), 0.24);
  border-radius: 2px;
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.28);
  min-height: 485px;
  padding: clamp(26px, 3vw, 42px);
  position: relative;
}

.match-card::after {
  background: linear-gradient(90deg, var(--gold), transparent 72%);
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.48;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.match-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.match-kicker,
.match-count {
  color: var(--gold);
  font-size: 10px;
  margin-bottom: 10px;
}

.match-count {
  color: rgba(var(--ivory-rgb), 0.34);
}

.match-card h2 {
  font-size: clamp(28px, 3vw, 39px);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.match-progress {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.match-progress span {
  background: rgba(var(--ivory-rgb), 0.12);
  height: 1px;
}

.match-progress span.active {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
}

.match-summary {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.match-summary div {
  border-right: 1px solid var(--line);
  min-width: 0;
  padding: 11px 13px;
}

.match-summary div:first-child {
  padding-left: 0;
}

.match-summary div:last-child {
  border-right: 0;
}

.match-summary span,
.match-result-kicker {
  color: rgba(var(--accent-rgb), 0.62);
  display: block;
  font-family: var(--micro);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.match-summary strong {
  color: rgba(var(--ivory-rgb), 0.76);
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-step {
  display: none;
  min-height: 205px;
  position: relative;
  z-index: 1;
}

.match-step.active {
  animation: match-step-in 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
  display: block;
}

@keyframes match-step-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.match-step > span {
  color: rgba(var(--accent-rgb), 0.72);
  display: block;
  font-family: var(--micro);
  font-size: 11px;
  margin-bottom: 12px;
}

.match-step h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.25vw, 31px);
  font-weight: 400;
  margin-bottom: 18px;
}

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

.choice-grid-time {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.choice-grid button,
.ghost-btn {
  background: transparent;
  border: 1px solid rgba(var(--accent-soft-rgb), 0.17);
  border-radius: 2px;
  color: rgba(var(--ivory-rgb), 0.76);
  cursor: pointer;
  min-height: 52px;
  padding: 0 12px;
  text-align: center;
  transition: background var(--control), border-color var(--control), color var(--control);
}

.choice-grid button:hover,
.choice-grid button.selected {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.6);
  color: var(--gold-bright);
}

.chat-panel input,
.chat-panel select,
.chat-panel textarea {
  background: rgba(var(--ivory-rgb), 0.025);
  border: 1px solid rgba(var(--accent-soft-rgb), 0.2);
  border-radius: 2px;
  color-scheme: dark;
  color: var(--ivory);
  font: inherit;
  min-height: 44px;
  padding: 9px 10px;
  width: 100%;
}

.chat-panel textarea {
  min-height: 62px;
  resize: vertical;
}

.chat-panel input::placeholder,
.chat-panel textarea::placeholder {
  color: rgba(var(--ivory-rgb), 0.28);
}

.chat-panel input:focus,
.chat-panel select:focus,
.chat-panel textarea:focus {
  background: rgba(var(--accent-rgb), 0.04);
  border-color: rgba(var(--accent-soft-rgb), 0.58);
  outline: 0;
}

.match-actions {
  display: flex;
  margin-top: 17px;
  position: relative;
  z-index: 1;
}

.match-actions .ghost-btn {
  border: 0;
  color: var(--ivory-faint);
  min-height: 28px;
  padding: 0;
  text-align: left;
}

.match-actions .ghost-btn:hover {
  background: transparent;
  color: var(--gold-bright);
}

.match-result {
  animation: match-step-in 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  min-height: 205px;
  position: relative;
  z-index: 1;
}

.match-result[hidden] {
  display: none;
}

.match-result h3 {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 400;
  margin: 9px 0 12px;
}

.match-result > p:not(.match-result-kicker) {
  color: var(--ivory-muted);
  font-size: 13px;
  margin-bottom: 18px;
  max-width: 620px;
}

.match-reset {
  background: transparent;
  border: 0;
  color: var(--ivory-faint);
  cursor: pointer;
  display: block;
  font-size: 11px;
  margin: 17px auto 0;
  padding: 4px;
  transition: color var(--control);
}

.match-reset:hover {
  color: var(--gold-bright);
}

.match-card.complete .match-summary {
  border-color: rgba(var(--accent-soft-rgb), 0.32);
}

.match-card.complete .match-actions {
  display: none;
}

.match-links,
.chat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.match-links .im-link,
.chat-links .im-link {
  flex: 1;
  min-width: 108px;
}

.rooms-section {
  padding-bottom: 122px;
  padding-top: 122px;
}

.features-section {
  padding-bottom: 128px;
  padding-top: 128px;
}

.feature-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid article {
  border-right: 1px solid var(--line);
  min-height: 268px;
  padding: 38px clamp(20px, 2.3vw, 34px) 34px;
}

.feature-grid article:last-child {
  border-right: 0;
}

.feature-grid span,
.decision-list > a > span,
.environment-grid figcaption span {
  color: rgba(var(--accent-rgb), 0.66);
  display: block;
  font-family: var(--micro);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.feature-grid h3 {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 400;
  margin-top: 58px;
}

.feature-grid p {
  color: var(--ivory-muted);
  font-size: 13px;
  margin-bottom: 0;
}

.signature-section {
  background: var(--night-soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  align-items: stretch;
  min-height: 0;
}

.signature-media {
  align-self: stretch;
  height: 100%;
  min-height: clamp(520px, 44vw, 720px);
  overflow: hidden;
}

.signature-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 760ms ease;
  width: 100%;
}

.signature-section:hover .signature-media img {
  transform: none;
}

.signature-copy {
  align-self: center;
  justify-self: center;
  max-width: 680px;
  padding: clamp(64px, 6vw, 104px);
  width: 100%;
}

.signature-copy > p:not(.eyebrow):not(.section-index) {
  color: var(--ivory-muted);
  margin-bottom: 34px;
}

.section-head {
  margin-bottom: 54px;
}

.editorial-head {
  align-items: end;
  display: grid;
  gap: clamp(30px, 7vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
}

.editorial-head .section-index {
  margin-bottom: 36px;
}

.editorial-head > p {
  color: var(--ivory-muted);
  margin-bottom: 22px;
  max-width: 520px;
}

.room-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.room-grid-compact {
  grid-auto-rows: minmax(360px, 32vw);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card {
  background: var(--night-raised);
  border: 1px solid var(--line);
  border-radius: 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.room-grid-compact .room-card {
  min-height: 0;
}

.room-grid-compact .room-media,
.room-grid-compact .room-media img {
  height: 100%;
}

.room-media {
  min-height: 0;
  overflow: hidden;
}

.room-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 760ms ease;
  width: 100%;
}

.room-card:hover .room-media img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.room-grid-compact .room-card::after {
  background: linear-gradient(180deg, transparent 28%, rgba(var(--deep-rgb), 0.92));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.room-grid-compact .room-copy {
  bottom: 0;
  left: 0;
  padding: clamp(18px, 2.7vw, 34px);
  position: absolute;
  right: 0;
  z-index: 1;
}

.room-grid-compact .room-copy h3 {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(22px, 2.25vw, 32px);
  font-weight: 400;
}

.room-grid-compact .room-copy p {
  color: rgba(var(--ivory-rgb), 0.65);
  font-size: 13px;
  margin-bottom: 0;
  max-width: 540px;
}

.room-grid-compact .room-card:not(.room-card-1) .room-copy p {
  display: block;
}

.room-number {
  color: var(--gold);
  display: block;
  font-family: var(--micro);
  font-size: 10px;
  margin-bottom: 8px;
}

.room-grid-full {
  gap: 0;
}

.room-grid-full .room-card {
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  min-height: 520px;
}

.room-grid-full .room-card + .room-card {
  border-top: 0;
}

.room-grid-full .room-card:nth-child(even) .room-media {
  order: 2;
}

.room-grid-full .room-media img {
  min-height: 520px;
}

.room-grid-full .room-copy {
  align-self: center;
  padding: clamp(34px, 6vw, 88px);
}

.room-grid-full .room-copy h3 {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 400;
}

.room-grid-full .room-copy p {
  color: var(--ivory-muted);
  max-width: 440px;
}

.text-link {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
}

.arrow-link {
  align-items: center;
  display: inline-flex;
  gap: 18px;
}

.arrow-link span {
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: 70px;
}

.gallery-grid figure {
  border-bottom: 1px solid var(--line);
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(5) {
  grid-column: span 7;
}

.gallery-grid figure:nth-child(2),
.gallery-grid figure:nth-child(6) {
  grid-column: span 5;
}

.gallery-grid img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 760ms ease;
  width: 100%;
}

.gallery-grid figure:hover img {
  filter: saturate(1.04);
  transform: scale(1.018);
}

.gallery-grid figure:nth-child(1) img,
.gallery-grid figure:nth-child(5) img {
  aspect-ratio: 16 / 9;
}

.gallery-grid figcaption {
  color: rgba(var(--ivory-rgb), 0.58);
  font-size: 11px;
  padding: 13px 2px 14px;
}

.environment-section {
  border-top: 1px solid var(--line);
  max-width: none;
}

.environment-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr) minmax(0, 2fr);
  grid-template-rows: repeat(2, minmax(230px, 28vw));
  margin-bottom: 32px;
}

.environment-grid figure {
  background: var(--night-raised);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.environment-grid figure:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
}

.environment-grid figure:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1;
}

.environment-grid figure:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.environment-grid figure:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.environment-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 760ms ease;
  width: 100%;
}

.environment-grid figure:hover img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.environment-grid figure::after {
  background: linear-gradient(180deg, transparent 52%, rgba(5, 5, 4, 0.88));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.environment-grid figcaption {
  bottom: 0;
  color: rgba(var(--ivory-rgb), 0.82);
  display: flex;
  font-size: 12px;
  gap: 10px;
  left: 0;
  padding: 20px;
  position: absolute;
  z-index: 1;
}

.decision-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(54px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  padding-bottom: 132px;
  padding-top: 132px;
}

.decision-intro {
  max-width: 510px;
}

.decision-intro > p:last-child {
  color: var(--ivory-muted);
}

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

.decision-list > a {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 31px 2px;
  transition: background 0.2s ease, padding 0.2s ease;
}

.decision-list > a:hover {
  background: rgba(var(--accent-rgb), 0.05);
  padding-left: 16px;
  padding-right: 16px;
}

.decision-list h3 {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 400;
}

.decision-list p {
  color: var(--ivory-muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.decision-list small {
  color: var(--gold);
  font-size: 10px;
}

.final-booking {
  align-items: center;
  background:
    linear-gradient(rgba(var(--header-rgb), 0.84), rgba(var(--header-rgb), 0.94)),
    var(--final-image) center 48% / cover;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 110px var(--page-pad);
  text-align: center;
}

.final-booking h2 {
  max-width: 920px;
}

.final-booking > p:not(.eyebrow) {
  color: var(--ivory-muted);
  max-width: 680px;
}

.final-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.final-links .im-link {
  min-width: 148px;
}

.reveal-ready [data-reveal],
.reveal-ready [data-reveal-child] {
  opacity: 0;
  transform: translateY(12px);
}

.reveal-ready [data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 550ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 550ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-ready [data-reveal].is-in [data-reveal-child] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 550ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms), transform 550ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms);
}

.journal-section {
  border-top: 1px solid var(--line);
  max-width: none;
}

.article-grid {
  border-top: 1px solid var(--line);
}

.article-card {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: 56px minmax(0, 1fr) 38px;
  min-height: 168px;
  padding: 24px 4px;
  transition: background 0.2s ease, padding 0.2s ease;
}

.article-card:hover {
  background: rgba(var(--accent-rgb), 0.055);
  padding-left: 18px;
  padding-right: 18px;
}

.article-number {
  color: rgba(var(--accent-rgb), 0.52);
  font-family: var(--micro);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

.article-card small {
  color: rgba(var(--accent-rgb), 0.68);
  display: block;
  font-size: 9px;
  margin-bottom: 8px;
}

.article-card h3 {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(23px, 2.1vw, 31px);
  font-weight: 400;
  margin-bottom: 8px;
}

.article-card p {
  color: var(--ivory-muted);
  margin-bottom: 0;
  max-width: 840px;
}

.article-card b {
  color: var(--gold);
  font-size: 20px;
  font-weight: 400;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(var(--night-rgb), 0.96), rgba(var(--night-rgb), 0.68)),
    var(--page-hero-image) center 44% / cover;
  border-bottom: 1px solid var(--line);
  min-height: 520px;
  padding-bottom: 82px;
  padding-top: 180px;
}

.page-hero h1 {
  font-size: clamp(50px, 7vw, 92px);
  max-width: 1080px;
}

.page-price {
  align-items: baseline;
  border-bottom: 1px solid rgba(var(--accent-soft-rgb), 0.24);
  border-top: 1px solid rgba(var(--accent-soft-rgb), 0.24);
  display: flex;
  gap: 30px;
  margin: 24px 0 20px;
  max-width: 760px;
  padding: 13px 0;
}

.page-price > span {
  color: rgba(var(--accent-soft-rgb), 0.72);
  font-family: var(--micro);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-price p {
  align-items: baseline;
  display: flex;
  gap: 12px;
  margin: 0;
}

.page-price strong {
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 400;
  white-space: nowrap;
}

.page-price i {
  color: rgba(var(--accent-soft-rgb), 0.34);
  font-style: normal;
}

.page-hero > p:last-child {
  color: rgba(var(--ivory-rgb), 0.72);
  font-size: clamp(16px, 1.7vw, 20px);
  max-width: 760px;
}

.content-layout {
  align-items: start;
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  padding-bottom: 110px;
  padding-top: 100px;
}

.longform {
  border-top: 1px solid var(--line-strong);
}

.longform section {
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.longform h2 {
  font-size: clamp(28px, 3.3vw, 46px);
}

.longform p {
  color: var(--ivory-muted);
  font-size: 17px;
  max-width: 820px;
}

.content-layout aside {
  position: sticky;
  top: 106px;
}

.footer {
  align-items: start;
  background: var(--night-deep);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 48px;
  justify-content: space-between;
  padding-bottom: 52px;
  padding-top: 52px;
}

.footer strong {
  color: var(--gold-bright);
  font-size: 22px;
}

.footer p {
  color: rgba(var(--ivory-rgb), 0.52);
  font-size: 12px;
  margin-bottom: 11px;
}

.footer small {
  color: rgba(var(--ivory-rgb), 0.34);
  display: block;
  font-size: 10px;
  line-height: 1.75;
  max-width: 740px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(var(--ivory-rgb), 0.5);
  font-size: 11px;
}

.concierge-layer {
  display: none;
  inset: 0;
  position: fixed;
  z-index: 1400;
}

.concierge-layer.open {
  display: block;
}

.concierge-layer.open ~ .mobile-concierge {
  opacity: 0;
  pointer-events: none;
}

.concierge-backdrop {
  background: rgba(0, 0, 0, 0.7);
  border: 0;
  inset: 0;
  position: absolute;
}

.chat-panel {
  background: linear-gradient(180deg, rgba(24, 20, 15, 0.99), rgba(var(--night-rgb), 0.995));
  border: 1px solid rgba(var(--accent-soft-rgb), 0.34);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58), 0 0 54px rgba(var(--accent-deep-rgb), 0.1);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  max-height: min(72dvh, 640px);
  overflow: hidden;
  width: min(390px, calc(100vw - 28px));
}

.concierge-panel {
  position: absolute;
  right: clamp(14px, 4vw, 60px);
  top: 96px;
}

.chat-head {
  align-items: center;
  background: rgba(var(--accent-deep-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--accent-soft-rgb), 0.17);
  display: flex;
  gap: 11px;
  padding: 13px 14px;
}

.chat-avatar {
  align-items: center;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold-dark));
  border: 1px solid rgba(255, 239, 202, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(var(--accent-deep-rgb), 0.24);
  color: var(--accent-ink);
  display: inline-flex;
  flex: 0 0 34px;
  font-family: var(--display);
  font-size: 17px;
  height: 34px;
  justify-content: center;
}

.chat-head > div {
  flex: 1;
  min-width: 0;
}

.chat-head strong {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
}

.chat-head small {
  align-items: center;
  color: rgba(var(--ivory-rgb), 0.55);
  display: flex;
  font-size: 10px;
  gap: 7px;
  margin-top: 5px;
}

.chat-head small i {
  background: #36d06e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(54, 208, 110, 0.1);
  height: 6px;
  width: 6px;
}

.chat-head button {
  align-items: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ivory);
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  height: 34px;
  justify-content: center;
  padding: 0 0 2px;
  width: 34px;
}

.chat-body {
  flex: 1;
  min-height: 190px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px 14px 8px;
  scrollbar-width: thin;
}

.chat-stream {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 28px;
}

.chat-dialogue {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-message {
  animation: chat-message-in 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
  flex-shrink: 0;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  max-width: 86%;
  padding: 9px 12px;
}

.chat-message.is-bot {
  align-self: flex-start;
  background: rgba(var(--ivory-rgb), 0.055);
  border: 1px solid rgba(var(--accent-soft-rgb), 0.16);
  border-radius: 14px 14px 14px 4px;
  color: rgba(var(--ivory-rgb), 0.78);
}

.chat-message.is-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  border: 1px solid rgba(240, 216, 169, 0.34);
  border-radius: 14px 14px 4px 14px;
  box-shadow: 0 7px 18px rgba(138, 88, 22, 0.22);
  color: #fffaf0;
  font-weight: 600;
}

.chat-recommendation[hidden],
[data-chat-restart][hidden] {
  display: none;
}

@keyframes chat-message-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.typing {
  align-self: flex-start;
  align-items: center;
  animation: chat-message-in 180ms ease;
  background: rgba(var(--ivory-rgb), 0.045);
  border: 1px solid rgba(var(--accent-soft-rgb), 0.14);
  border-radius: 14px 14px 14px 4px;
  display: inline-flex;
  gap: 5px;
  padding: 12px 14px;
  width: max-content;
}

.typing i {
  animation: typing-pulse 1.1s infinite ease-in-out;
  background: var(--gold);
  border-radius: 50%;
  height: 5px;
  opacity: 0.35;
  width: 5px;
}

.typing i:nth-child(2) {
  animation-delay: 0.14s;
}

.typing i:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes typing-pulse {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.chat-recommendation {
  animation: chat-message-in 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
  background: linear-gradient(160deg, rgba(var(--accent-deep-rgb), 0.12), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(var(--accent-soft-rgb), 0.27);
  border-radius: 7px;
  flex-shrink: 0;
  margin-top: 4px;
  padding: 14px;
}

.chat-summary-eyebrow {
  color: var(--gold-bright);
  font-family: var(--micro);
  font-size: 10px;
  letter-spacing: 0.15em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.chat-summary-list {
  display: grid;
  gap: 6px;
  margin: 0;
}

.chat-summary-list > div {
  align-items: baseline;
  display: flex;
  gap: 8px;
}

.chat-summary-list dt {
  border: 1px solid rgba(var(--accent-soft-rgb), 0.28);
  color: var(--gold-bright);
  flex: 0 0 auto;
  font-size: 10px;
  line-height: 1.5;
  min-width: 42px;
  padding: 1px 5px;
  text-align: center;
}

.chat-summary-list dd {
  color: rgba(var(--ivory-rgb), 0.82);
  font-size: 12px;
  margin: 0;
}

.chat-contact-prompt {
  color: rgba(var(--ivory-rgb), 0.42);
  font-size: 10px;
  margin: 13px 0 8px;
}

.chat-links {
  gap: 7px;
}

.chat-links .im-link {
  min-height: 42px;
  padding: 8px 6px;
}

.chat-links .im-link svg {
  height: 18px;
  width: 18px;
}

.chat-foot {
  background: rgba(var(--deep-rgb), 0.62);
  border-top: 1px solid rgba(var(--accent-soft-rgb), 0.15);
  flex-shrink: 0;
  padding: 9px 14px 11px;
}

.chat-step-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 20px;
}

.chat-step-meta > span {
  color: rgba(var(--accent-soft-rgb), 0.65);
  font-family: var(--micro);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.chat-step-meta button {
  background: transparent;
  border: 0;
  color: rgba(var(--ivory-rgb), 0.55);
  cursor: pointer;
  font-size: 11px;
  padding: 3px 0;
}

.chat-chips {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 5px;
}

.chat-chip {
  align-items: center;
  background: rgba(var(--accent-deep-rgb), 0.1);
  border: 1px solid rgba(var(--accent-soft-rgb), 0.28);
  border-radius: 5px;
  color: rgba(250, 244, 232, 0.9);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--body);
  font-size: 12px;
  justify-content: center;
  min-height: 44px;
  padding: 8px 7px;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.chat-chip:hover,
.chat-chip:focus-visible {
  background: rgba(var(--accent-deep-rgb), 0.22);
  border-color: rgba(236, 211, 161, 0.58);
  transform: translateY(-1px);
}

.chat-chips[data-count="5"] .chat-chip:last-child {
  grid-column: 1 / -1;
}

.chat-note {
  color: rgba(var(--ivory-rgb), 0.32);
  font-size: 9px;
  letter-spacing: 0.08em;
  margin: 8px 0 0;
  text-align: center;
}

.mobile-concierge {
  display: none;
}

@media (max-width: 1320px) {
  .signature-section {
    grid-template-columns: 1fr;
  }

  .signature-media {
    aspect-ratio: 16 / 6;
    height: auto;
    min-height: 0;
  }

  .signature-copy {
    max-width: 880px;
    padding: clamp(54px, 6vw, 86px) var(--page-pad);
  }
}

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

  .desktop-nav {
    gap: 11px;
  }

  .desktop-nav a {
    font-size: 14px;
  }

  .brand small,
  .header-action {
    display: none;
  }

  .hero-copy-block {
    width: min(700px, 62vw);
  }

  .match-section,
  .decision-section,
  .content-layout {
    grid-template-columns: 1fr;
  }

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

  .feature-grid article:nth-child(2) {
    border-right: 0;
  }

  .feature-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .signature-media {
    min-height: 0;
  }

  .signature-copy {
    max-width: 880px;
  }

  .match-copy {
    max-width: 760px;
  }

  .content-layout aside {
    position: static;
  }
}

@media (min-width: 901px) and (max-height: 780px) {
  .hero {
    min-height: 800px;
  }

  .hero-content {
    min-height: 800px;
    padding-bottom: 52px;
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(64px, 8vw, 96px);
  }

  .hero-badges {
    margin-top: 18px;
  }
}

@media (max-width: 900px) {
  :root {
    --page-pad: 20px;
  }

  #booking-notice {
    scroll-margin-top: 66px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 78px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 45px);
  }

  .site-header {
    gap: 9px;
    height: 66px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-mark {
    flex: 0 0 34px;
    font-size: 18px;
    height: 34px;
    width: 34px;
  }

  .brand strong {
    font-size: 17px;
    white-space: nowrap;
  }

  .desktop-nav {
    display: none;
  }

  .site-header > .language-switch {
    margin-left: auto;
  }

  .language-switch a {
    font-size: 10px;
    padding: 7px 5px;
  }

  .nav-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 3px;
    display: block;
    flex: 0 0 40px;
    height: 38px;
    padding: 0;
    position: relative;
    width: 40px;
    z-index: 1270;
  }

  .nav-toggle span {
    background: var(--gold-bright);
    display: block;
    height: 1px;
    left: 11px;
    position: absolute;
    transition: transform 0.18s ease, opacity 0.18s ease;
    width: 17px;
  }

  .nav-toggle span:nth-child(1) {
    top: 13px;
  }

  .nav-toggle span:nth-child(2) {
    top: 18px;
  }

  .nav-toggle span:nth-child(3) {
    top: 23px;
  }

  .nav-toggle.open span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
  }

  .mobile-drawer {
    background: var(--night-soft);
    border-left: 1px solid var(--line-strong);
    bottom: 0;
    box-shadow: -28px 0 80px rgba(0, 0, 0, 0.56);
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    max-width: 330px;
    overflow-y: auto;
    padding: 94px 22px 28px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform 0.22s ease;
    width: min(84vw, 330px);
    z-index: 1260;
  }

  .mobile-drawer.open {
    transform: translateX(0);
  }

  .mobile-drawer a {
    border-bottom: 1px solid var(--line);
    color: rgba(var(--ivory-rgb), 0.78);
    font-family: var(--display);
    font-size: 20px;
    padding: 15px 2px;
  }

  .hero {
    height: auto;
    min-height: 94svh;
  }

  .hero-image {
    filter: saturate(0.82) contrast(1.08) brightness(0.78);
    object-position: 50% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(var(--deep-rgb), 0.4) 0%, rgba(var(--deep-rgb), 0.72) 47%, rgba(var(--deep-rgb), 0.97) 100%),
      linear-gradient(90deg, rgba(var(--deep-rgb), 0.58), rgba(var(--deep-rgb), 0.32));
  }

  .hero-content {
    align-items: flex-end;
    min-height: 94svh;
    padding-bottom: 78px;
    padding-top: 108px;
  }

  .hero-copy-block {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  html[lang="en"] .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-price {
    gap: 10px;
    margin-top: 17px;
    padding: 10px 0;
  }

  .hero-price > div small {
    display: none;
  }

  .hero-price > p {
    gap: 6px;
  }

  .hero-price strong {
    font-size: 18px;
  }

  .hero-price strong b {
    font-size: 7px;
    margin-right: 3px;
  }

  .slogan {
    font-size: clamp(23px, 7.5vw, 30px);
  }

  .hero-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 15px;
  }

  .hero-links .im-link {
    font-size: 12px;
    gap: 6px;
    min-height: 48px;
    min-width: 0;
    padding: 0 8px;
  }

  .hero-links .im-link svg {
    height: 21px;
    width: 21px;
  }

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

  .hero-badges div:nth-child(2) {
    border-right: 0;
  }

  .hero-badges div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-badges div:nth-child(3) {
    padding-left: 0;
  }

  .hero-badges strong {
    font-size: 17px;
  }

  .hero-rail {
    display: none;
  }

  .booking-tip {
    align-items: start;
    gap: 18px;
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .booking-vip-mark {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    min-height: 54px;
    min-width: 128px;
    padding: 12px 10px;
  }

  .booking-vip-mark::before,
  .booking-vip-mark::after {
    width: 18px;
  }

  .booking-vip-mark::before {
    top: 12px;
  }

  .booking-vip-mark::after {
    bottom: 12px;
  }

  .booking-vip-mark {
    font-size: 21px;
  }

  .booking-tip > div:nth-of-type(3) {
    grid-column: 2;
  }

  .notice-index {
    font-size: 21px;
    padding-top: 2px;
  }

  .notice-action {
    display: none;
  }

  .booking-notice {
    margin-bottom: 20px;
    margin-left: 14px;
    margin-right: 14px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }

  .booking-tip h2 {
    font-size: 27px;
  }

  .booking-tip p:last-child {
    font-size: 13px;
  }

  .section,
  .match-section,
  .rooms-section {
    padding-bottom: 84px;
    padding-top: 84px;
  }

  .section-index {
    margin-bottom: 30px;
  }

  .match-section {
    gap: 44px;
  }

  .match-card {
    min-height: 0;
    padding: 28px 20px 24px;
  }

  .match-step {
    min-height: 205px;
  }

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

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

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

  .choice-grid-time button:last-child {
    grid-column: 1 / -1;
  }

  .match-summary div {
    padding-left: 8px;
    padding-right: 8px;
  }

  .match-summary strong {
    font-size: 11px;
  }

  .editorial-head {
    grid-template-columns: 1fr;
  }

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

  .feature-grid article {
    min-height: 220px;
    padding: 26px 16px;
  }

  .feature-grid h3 {
    font-size: 20px;
    margin-top: 36px;
  }

  .feature-grid p {
    font-size: 12px;
    line-height: 1.7;
  }

  .signature-section {
    display: block;
    min-height: 0;
  }

  .signature-media {
    min-height: 0;
  }

  .signature-media img {
    aspect-ratio: 16 / 8;
  }

  .signature-copy {
    padding: 70px 20px 78px;
  }

  .editorial-head {
    gap: 8px;
  }

  .editorial-head > p {
    margin-bottom: 0;
  }

  .room-grid-compact {
    display: grid;
    gap: 12px;
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-grid-compact .room-card {
    aspect-ratio: 1 / 1.22;
    margin-bottom: 0;
  }

  .room-grid-compact .room-card:not(.room-card-1) {
    aspect-ratio: 1 / 1.22;
  }

  .room-grid-compact .room-card-3 {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .room-grid-full .room-card {
    display: block;
    min-height: 0;
  }

  .room-grid-full .room-card:nth-child(even) .room-media {
    order: initial;
  }

  .room-grid-full .room-media img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .room-grid-full .room-copy {
    padding: 30px 4px 46px;
  }

  .gallery-grid {
    display: block;
    margin-top: 48px;
  }

  .gallery-grid figure {
    margin-bottom: 12px;
  }

  .gallery-grid img,
  .gallery-grid figure:nth-child(1) img,
  .gallery-grid figure:nth-child(5) img {
    aspect-ratio: 4 / 3;
  }

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

  .environment-grid figure,
  .environment-grid figure:first-child,
  .environment-grid figure:nth-child(2),
  .environment-grid figure:nth-child(3),
  .environment-grid figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .environment-grid figure:first-child {
    grid-column: 1 / 3;
  }

  .environment-grid img {
    aspect-ratio: 4 / 3;
  }

  .environment-grid figure:first-child img {
    aspect-ratio: 16 / 11;
  }

  .environment-grid figcaption {
    font-size: 10px;
    padding: 13px;
  }

  .decision-section {
    gap: 48px;
  }

  .decision-list > a {
    gap: 16px;
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 26px 0;
  }

  .final-booking {
    min-height: 570px;
    padding-bottom: 90px;
    padding-top: 90px;
  }

  .final-links {
    align-self: stretch;
    display: grid;
    width: 100%;
  }

  .final-links .im-link {
    width: 100%;
  }

  .article-card {
    gap: 14px;
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    min-height: 0;
    padding: 24px 0;
  }

  .article-card p {
    display: none;
  }

  .page-hero {
    min-height: 460px;
    padding-bottom: 60px;
    padding-top: 148px;
  }

  .page-price {
    align-items: flex-start;
    display: grid;
    gap: 7px;
    margin: 18px 0 16px;
    padding: 10px 0;
  }

  .page-price p {
    gap: 8px;
  }

  .page-price strong {
    font-size: 21px;
  }

  .content-layout {
    gap: 58px;
    padding-bottom: 78px;
    padding-top: 58px;
  }

  .footer {
    display: block;
    padding-bottom: 94px;
  }

  .footer-links {
    flex-wrap: wrap;
    margin-top: 26px;
  }

  .concierge-panel {
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    right: 10px;
    top: auto;
    width: auto;
  }

  .chat-body {
    min-height: 180px;
    padding: 15px;
  }

  .mobile-concierge {
    background: var(--button-accent);
    border: 1px solid var(--button-accent);
    align-items: center;
    border-radius: 2px;
    bottom: 12px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
    color: var(--accent-ink);
    display: flex;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    min-height: 44px;
    opacity: 0;
    padding: 0 17px;
    pointer-events: none;
    position: fixed;
    right: 14px;
    transform: translateY(14px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 1300;
  }

  .mobile-concierge.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-concierge i {
    background: var(--accent-panel);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(43, 27, 9, 0.09);
    height: 6px;
    width: 6px;
  }
}

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

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

html[data-theme="obsidian-gold"] {
  --night: #080706;
  --night-soft: #0d0b09;
  --night-raised: #15110d;
  --night-deep: #050403;
  --night-rgb: 8, 7, 6;
  --header-rgb: 7, 6, 5;
  --deep-rgb: 5, 4, 3;
  --surface-rgb: 24, 20, 15;
  --ivory: #f5efe4;
  --ivory-rgb: 245, 239, 228;
  --ivory-muted: rgba(245, 239, 228, 0.68);
  --ivory-faint: rgba(245, 239, 228, 0.42);
  --gold: #c9a668;
  --gold-bright: #eed19a;
  --gold-dark: #8b6330;
  --accent-rgb: 201, 166, 104;
  --accent-soft-rgb: 224, 197, 145;
  --accent-deep-rgb: 199, 146, 60;
  --button-accent: #d7b878;
  --accent-ink: #160f07;
  --accent-panel: #2b1b09;
  --line: rgba(224, 197, 145, 0.2);
  --line-strong: rgba(224, 197, 145, 0.42);
}
html[data-theme="amethyst-noir"] {
  --night: #08060d;
  --night-soft: #100c17;
  --night-raised: #171020;
  --night-deep: #040306;
  --night-rgb: 8, 6, 13;
  --header-rgb: 7, 5, 11;
  --deep-rgb: 4, 3, 6;
  --surface-rgb: 20, 14, 28;
  --ivory: #f4eef7;
  --ivory-rgb: 244, 238, 247;
  --ivory-muted: rgba(244, 238, 247, 0.68);
  --ivory-faint: rgba(244, 238, 247, 0.42);
  --gold: #b98bd8;
  --gold-bright: #e4c8f3;
  --gold-dark: #765094;
  --accent-rgb: 185, 139, 216;
  --accent-soft-rgb: 216, 187, 234;
  --accent-deep-rgb: 130, 84, 164;
  --button-accent: #c79ce3;
  --accent-ink: #170b20;
  --accent-panel: #25122f;
  --line: rgba(216, 187, 234, 0.2);
  --line-strong: rgba(216, 187, 234, 0.42);
}
html[data-theme="sapphire-noir"] {
  --night: #050a10;
  --night-soft: #09121b;
  --night-raised: #0d1a25;
  --night-deep: #030609;
  --night-rgb: 5, 10, 16;
  --header-rgb: 4, 9, 15;
  --deep-rgb: 3, 6, 9;
  --surface-rgb: 12, 25, 36;
  --ivory: #eef3f5;
  --ivory-rgb: 238, 243, 245;
  --ivory-muted: rgba(238, 243, 245, 0.68);
  --ivory-faint: rgba(238, 243, 245, 0.42);
  --gold: #78a8c4;
  --gold-bright: #c4dce8;
  --gold-dark: #3e6d89;
  --accent-rgb: 120, 168, 196;
  --accent-soft-rgb: 181, 210, 226;
  --accent-deep-rgb: 61, 109, 137;
  --button-accent: #8ab7cf;
  --accent-ink: #071722;
  --accent-panel: #0b2638;
  --line: rgba(181, 210, 226, 0.2);
  --line-strong: rgba(181, 210, 226, 0.42);
}
html[data-theme="emerald-champagne"] {
  --night: #050a08;
  --night-soft: #09130f;
  --night-raised: #0e1b16;
  --night-deep: #030605;
  --night-rgb: 5, 10, 8;
  --header-rgb: 4, 9, 7;
  --deep-rgb: 3, 6, 5;
  --surface-rgb: 13, 27, 22;
  --ivory: #f2f2e9;
  --ivory-rgb: 242, 242, 233;
  --ivory-muted: rgba(242, 242, 233, 0.68);
  --ivory-faint: rgba(242, 242, 233, 0.42);
  --gold: #c4b482;
  --gold-bright: #eadfb9;
  --gold-dark: #807044;
  --accent-rgb: 196, 180, 130;
  --accent-soft-rgb: 220, 207, 164;
  --accent-deep-rgb: 142, 125, 72;
  --button-accent: #d0c18f;
  --accent-ink: #111b14;
  --accent-panel: #173328;
  --line: rgba(220, 207, 164, 0.2);
  --line-strong: rgba(220, 207, 164, 0.42);
}