:root {
  --ink: #151515;
  --muted: #4f4941;
  --paper: #f7f3ed;
  --ivory: #fffaf1;
  --gold: #caa45c;
  --copper: #a4623a;
  --jade: #426b5d;
  --river: #dce9e6;
  --charcoal: #111513;
  --line: rgba(21, 21, 21, 0.14);
  --shadow: 0 26px 70px rgba(18, 22, 20, 0.18);
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  --scroll-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: 60;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(202, 164, 92, 0.22), rgba(202, 164, 92, 0.08) 13vw, transparent 31vw),
    radial-gradient(circle at calc(var(--pointer-x) + 13vw) calc(var(--pointer-y) + 8vh), rgba(66, 107, 93, 0.14), transparent 24vw);
  mix-blend-mode: soft-light;
  opacity: 0.82;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fff;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease, transform 220ms ease;
}

.site-header.is-solid {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0;
  transition: transform 260ms ease, background 260ms ease;
}

.brand:hover .brand-mark {
  background: currentColor;
  color: var(--charcoal);
  transform: rotate(12deg) scale(1.04);
}

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

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.brand small {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.82;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-cta,
.button,
.guide-bar a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.header-cta::before,
.button::before,
.guide-bar a::before {
  position: absolute;
  inset: -1px;
  content: "";
  background: linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, 0.42), transparent 58%);
  transform: translateX(-115%);
  transition: transform 620ms ease;
}

.header-cta:hover::before,
.button:hover::before,
.guide-bar a:hover::before {
  transform: translateX(115%);
}

.header-cta {
  min-width: 116px;
  padding: 0 18px;
  border-color: currentColor;
}

.language-switch {
  display: inline-flex;
  max-width: min(420px, 38vw);
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.language-switch::-webkit-scrollbar {
  display: none;
}

.language-switch a {
  display: grid;
  flex: 0 0 auto;
  min-width: 30px;
  min-height: 28px;
  padding: 0 5px;
  place-items: center;
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.header-cta:hover,
.button:hover,
.guide-bar a:hover {
  box-shadow: 0 18px 36px rgba(18, 22, 20, 0.2);
  transform: translateY(-3px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  filter: saturate(1.05) contrast(1.06);
  transform: translate3d(0, calc(var(--scroll-shift) * 0.22), 0) scale(1.06);
  transform-origin: center;
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 13, 13, 0.72), rgba(8, 13, 13, 0.18) 56%, rgba(8, 13, 13, 0.55)),
    linear-gradient(0deg, rgba(8, 13, 13, 0.78), rgba(8, 13, 13, 0.02) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  padding: 128px 0 96px;
  transform: translate3d(0, calc(var(--scroll-shift) * -0.08), 0);
  will-change: transform;
}

.hero h1 {
  text-shadow: 0 16px 70px rgba(0, 0, 0, 0.48);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--copper);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(46px, 8.5vw, 112px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 68px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  display: grid;
  min-width: 150px;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 21, 19, 0.26);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  transform: translateZ(0);
  transition: border-color 260ms ease, background 260ms ease, transform 260ms ease;
}

.hero-proof span:hover {
  border-color: rgba(202, 164, 92, 0.65);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.hero-proof strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  min-width: 136px;
  padding: 0 20px;
}

.button.primary {
  color: #16110b;
  background: var(--gold);
}

.button.glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(17, 21, 19, 0.32);
  backdrop-filter: blur(12px);
}

.button.outline {
  border-color: var(--line);
}

.button.magnetic:hover,
.header-cta.magnetic:hover {
  transform: translate3d(var(--magnet-x, 0), calc(var(--magnet-y, 0) - 3px), 0);
}

.guide-bar {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: grid;
  width: min(1120px, calc(100% - 36px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.guide-bar a {
  display: grid;
  gap: 6px;
  min-width: 0;
  min-height: 98px;
  align-content: center;
  justify-content: start;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.84);
  text-align: left;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.guide-bar a:hover {
  background: #fff;
}

.guide-bar span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-bar strong {
  font-size: 18px;
  line-height: 1.15;
}

.guide-bar small {
  color: var(--muted);
  font-size: 13px;
}

.section-pad {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(32px, 8vw, 110px);
  align-items: center;
  background: var(--ivory);
}

.intro-copy {
  max-width: 780px;
}

.intro-copy p:last-child,
.section-heading p,
.experience-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
}

.signature-panel {
  display: grid;
  gap: 18px;
  min-height: 360px;
  align-content: end;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(20, 42, 35, 0.12), rgba(20, 42, 35, 0.86)),
    url("../photos/湄公河角度.png") center / cover;
  transform: translateZ(0);
  transition: transform 360ms ease, box-shadow 360ms ease, filter 360ms ease;
}

.signature-panel:hover {
  box-shadow: 0 34px 90px rgba(18, 22, 20, 0.26);
  filter: saturate(1.06);
  transform: translateY(-8px) scale(1.012);
}

.signature-panel span,
.signature-panel small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signature-panel strong {
  max-width: 320px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.12;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: 640px;
  background: #e4ece8;
}

.story-image {
  min-height: 520px;
  overflow: hidden;
}

.story-image img,
.experience-image img {
  transform: scale(1.035);
  transition: transform 700ms ease, filter 700ms ease;
}

.story-image:hover img,
.experience-image:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.075);
}

.story-copy {
  display: grid;
  align-content: center;
  padding: clamp(46px, 7vw, 88px);
}

.story-copy p {
  color: #5d625d;
  font-size: 18px;
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: rgba(17, 21, 19, 0.14);
}

.story-metrics span {
  display: grid;
  gap: 6px;
  min-height: 118px;
  align-content: center;
  padding: 18px;
  background: #f8fbf6;
  color: #5f625f;
  font-size: 13px;
  transition: transform 260ms ease, background 260ms ease;
}

.story-metrics span:hover {
  background: #fff;
  transform: translateY(-6px);
}

.story-metrics strong {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  background: var(--charcoal);
}

.feature-strip article {
  min-height: 260px;
  padding: clamp(28px, 5vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 320ms ease, filter 320ms ease, background 320ms ease;
}

.feature-strip article:hover {
  filter: brightness(1.08) saturate(1.08);
  transform: translateY(-8px);
}

.feature-strip article:nth-child(2) {
  background: #23372f;
}

.feature-strip article:nth-child(3) {
  background: #6e4a32;
  border-right: 0;
}

.feature-strip span {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-family: Georgia, serif;
}

.feature-strip p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.75);
}

.section-heading {
  display: grid;
  max-width: 820px;
  margin-bottom: 42px;
}

.rooms {
  background: var(--paper);
}

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

.room-card {
  position: relative;
  display: grid;
  overflow: hidden;
  background: var(--ivory);
  box-shadow: 0 1px 0 var(--line);
  transform: translateZ(0);
  transition: box-shadow 360ms ease, transform 360ms ease;
}

.room-card:hover {
  box-shadow: 0 30px 80px rgba(18, 22, 20, 0.22);
  transform: translateY(-10px);
}

.room-card.featured {
  grid-row: span 2;
}

.room-card img {
  aspect-ratio: 16 / 10;
  transition: transform 700ms ease, filter 700ms ease;
}

.room-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.055);
}

.room-card.featured img {
  min-height: 430px;
}

.room-card div {
  padding: clamp(22px, 4vw, 36px);
}

.room-kicker {
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.room-card p:not(.room-kicker) {
  color: var(--muted);
}

.room-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.room-card li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4a463f;
  font-size: 12px;
}

.offers {
  background: var(--ivory);
}

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

.offer-row article {
  position: relative;
  display: grid;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 360ms ease, transform 360ms ease;
}

.offer-row article:hover {
  box-shadow: 0 28px 70px rgba(18, 22, 20, 0.2);
  transform: translateY(-10px);
}

.offer-row img {
  aspect-ratio: 4 / 3;
  transition: transform 700ms ease, filter 700ms ease;
}

.offer-row article:hover img {
  filter: saturate(1.1);
  transform: scale(1.065);
}

.offer-row div {
  display: grid;
  gap: 10px;
  padding: 26px;
}

.offer-row span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-row p {
  color: var(--muted);
}

.offer-row a,
.guide-list a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-row a::after,
.guide-list a strong::after {
  content: "  ->";
  color: var(--copper);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 720px;
  color: #fff;
  background: var(--charcoal);
}

.experience-image {
  min-height: 520px;
  overflow: hidden;
}

.experience-copy {
  display: grid;
  align-content: center;
  padding: clamp(46px, 7vw, 88px);
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.experience-list span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  transition: border-color 260ms ease, background 260ms ease, transform 260ms ease;
}

.experience-list span:hover {
  border-color: rgba(202, 164, 92, 0.6);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(6px);
}

.amenities {
  background: #f2eee5;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.amenity-grid article {
  position: relative;
  min-height: 210px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  overflow: hidden;
  transition: background 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.amenity-grid article:hover {
  background: #fffaf1;
  box-shadow: 0 22px 58px rgba(18, 22, 20, 0.16);
  transform: translateY(-8px);
}

.amenity-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--jade);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.amenity-grid p {
  color: var(--muted);
}

.location {
  background: var(--ivory);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
}

.map-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--river);
  box-shadow: var(--shadow);
  transition: box-shadow 360ms ease, transform 360ms ease;
}

.map-card:hover {
  box-shadow: 0 34px 90px rgba(18, 22, 20, 0.24);
  transform: translateY(-8px);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: saturate(0.92) contrast(0.98);
}

.map-fallback {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 14px 34px rgba(18, 22, 20, 0.18);
  backdrop-filter: blur(16px);
}

.map-fallback strong {
  font-size: 18px;
  line-height: 1.2;
}

.map-fallback span {
  grid-column: 1;
  color: var(--muted);
  font-size: 13px;
}

.map-fallback a {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 10px 12px;
  color: #fff;
  background: var(--jade);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-points {
  display: grid;
  align-content: center;
  gap: 1px;
  background: var(--line);
}

.location-points article {
  position: relative;
  padding: 28px;
  background: var(--ivory);
  overflow: hidden;
  transition: background 260ms ease, transform 260ms ease;
}

.location-points article:hover {
  background: #fff;
  transform: translateX(6px);
}

.location-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.location-points p {
  margin-bottom: 0;
  color: var(--muted);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(19, 29, 27, 0.9), rgba(19, 29, 27, 0.72)),
    url("../photos/夜晚法国街.png") center / cover;
}

.editorial-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.guide-list {
  display: grid;
  align-content: center;
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.guide-list a {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
  overflow: hidden;
  transition: background 260ms ease, transform 260ms ease;
}

.guide-list a:hover {
  background: #fff;
  transform: translateX(-8px);
}

.guide-list span {
  color: var(--copper);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guide-list strong {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ddd;
  cursor: zoom-in;
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 360ms ease, transform 360ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 255, 255, 0.34), transparent 32%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-item img {
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-item:hover {
  box-shadow: 0 26px 70px rgba(18, 22, 20, 0.24);
  transform: translateY(-8px);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.08);
}

.gallery-item.tall {
  grid-column: 1;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.gallery-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.gallery-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.gallery-item:nth-child(5) {
  grid-column: 4;
  grid-row: 1;
}

.gallery-item:nth-child(6) {
  grid-column: 4;
  grid-row: 2;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 36px;
  align-items: center;
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 21, 19, 0.9), rgba(17, 21, 19, 0.68)),
    url("../photos/入夜.png") center / cover;
}

.contact-section p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 360ms ease, transform 360ms ease;
}

.contact-card:hover {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  transform: translateY(-8px);
}

.contact-card strong {
  min-height: 74px;
  font-size: 18px;
  line-height: 1.35;
}

.contact-methods {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.contact-methods a,
.contact-methods div {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition: background 260ms ease, transform 260ms ease;
}

.contact-methods a:hover,
.contact-methods div:hover {
  background: #fff;
  transform: translateX(6px);
}

.contact-methods span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-methods strong {
  min-height: 0;
  font-size: 17px;
  line-height: 1.2;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spotlight {
  position: relative;
  isolation: isolate;
}

.spotlight::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 255, 255, 0.28), rgba(202, 164, 92, 0.16) 18%, transparent 42%);
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 260ms ease;
}

.spotlight > * {
  position: relative;
  z-index: 2;
}

.spotlight:hover::before {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.magnetic {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.84);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: min(1100px, 94vw);
  height: min(760px, 80vh);
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 30px;
  padding: 46px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #0f1110;
}

.site-footer .brand {
  color: #fff;
}

.site-footer p {
  max-width: 520px;
  margin: 18px 0 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  align-content: center;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

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

  body::before {
    display: none;
  }

  .reveal,
  .reveal.is-visible,
  .hero-content,
  .hero-media img,
  .magnetic {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero-content {
    padding-bottom: 96px;
  }

  .intro,
  .brand-story,
  .experience,
  .location-layout,
  .editorial,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .room-grid,
  .offer-row,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .room-card.featured {
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }

  .story-metrics {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    gap: 8px;
    padding: 12px 14px;
  }

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

  .language-switch {
    max-width: calc(100vw - 96px);
    margin-left: auto;
    padding: 3px;
  }

  .language-switch a {
    min-width: 26px;
    min-height: 26px;
    padding: 0 4px;
    font-size: 9px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding-top: 110px;
    padding-bottom: 90px;
  }

  h1 {
    font-size: 44px;
  }

  .map-fallback {
    grid-template-columns: 1fr;
  }

  .map-fallback a {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .signature-panel {
    min-height: 300px;
  }

  .experience-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
}
