/* 北京华纳恋日国际公寓 · 移动端 H5（严格参照 UI 稿） */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Montserrat:wght@400;500&family=Noto+Serif+SC:wght@400;500;600;700&display=swap");

:root {
  --cream: rgb(240, 237, 232);
  --cream-dark: #ebe8e2;
  --white: #ffffff;
  --brown: #6b4226;
  --brown-dark: #4a2e1a;
  --brown-light: #8b6347;
  --text: #1a1a1a;
  --text-muted: #8c8c8c;
  --border: rgba(26, 26, 26, 0.1);
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.06);
  --footer-dark: #2a2420;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font-serif: "Cormorant Garamond", "Noto Serif SC", "Songti SC", serif;
  --font-head-en: "Montserrat", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --header-h: 56px;
  --section-py: 20px;
  --section-gap: 24px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  padding-bottom: var(--safe-bottom);
}

a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; height: auto; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-h) + var(--safe-top));
  padding: var(--safe-top) 16px 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease,
    opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.site-header--overlay {
  background: transparent;
  border: none;
  box-shadow: none;
}

.page-home .site-header--overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
}

.page-home .site-header--overlay.is-scrolled {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header--overlay.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.06);
}

.site-logo__img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.site-header--overlay .site-logo__img {
  /* filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,0.35)); */
  transition: filter 0.3s ease;
}

.site-header--overlay.is-scrolled .site-logo__img {
  filter: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--brown);
  transition: transform 0.2s, opacity 0.2s;
}

.site-header--overlay .nav-toggle span { background: #fff; transition: background 0.3s ease; }

.site-header--overlay.is-scrolled .nav-toggle span { background: var(--brown); }

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(42, 36, 32, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.site-nav.is-open { opacity: 1; visibility: visible; }

.site-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(280px, 85vw);
  height: 100%;
  padding: calc(var(--header-h) + var(--safe-top) + 12px) 24px 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.site-nav.is-open .site-nav__panel { transform: translateX(0); }

.site-nav__panel a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--brown-dark);
}

/* Hero 轮播 — 按图片原始比例完整展示，背景与页面一致 */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--cream);
}

.page-home {
  width: 100%;
  min-height: 100%;
  background: var(--cream);
}

.page-home .hero {
  margin-top: 0;
}

.hero-slides {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.42) 100%);
  color: #fff;
  pointer-events: none;
}

.hero-brand-en {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(26px, 7.5vw, 40px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-brand-cn {
  margin: 8px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(14px, 3.6vw, 17px);
  font-weight: 500;
  letter-spacing: 0.28em;
  opacity: 0.95;
}

.hero-tagline {
  margin: 12px 0 0;
  max-width: 22em;
  font-size: 12px;
  line-height: 1.65;
  opacity: 0.88;
  letter-spacing: 0.04em;
}

.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: #fff;
}

/* Sections */
.section {
  padding: var(--section-py) 18px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream);
}

/* 相邻同色区块：避免上下 padding 叠成双倍空白 */

.section--cream + .section--reviews {
  padding-top: var(--section-gap);
}

.section--cream {
  background: var(--cream);
  max-width: none;
  padding-top: 0;
}

.section--cream > * {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  max-width: 100%;
}

.section-head--left {
  flex-direction: row;
  justify-content: flex-start;
}

.section-head--left .section-head__titles {
  text-align: left;
}

.section-head--right {
  flex-direction: row;
  justify-content: flex-end;
}

.section-head--right .section-head__titles {
  text-align: right;
}

.section-head--icon-first .section-head__titles {
  text-align: left;
}

.section-head__titles {
  flex: 0 1 auto;
  min-width: 0;
}

.section-head__cn {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.3;
}

.section-head__en {
  margin: 5px 0 0;
  font-family: var(--font-head-en);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #8b6347;
  line-height: 1.35;
}

.section-head__arrow {
  flex-shrink: 0;
  width: 56px;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  margin-top: 2px;
}

/* 区块 Hero 大图 */
.section-hero {
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.section-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Z 字交替图文 */
.zigzag-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.zigzag-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zigzag-row__media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.zigzag-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.zigzag-row__content {
  flex: 1;
  min-width: 0;
}

.zigzag-row__text {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-muted);
}

.zigzag-row__line {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--text);
}

.zigzag-row__stars {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.zigzag-row__stars li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
}

.zigzag-row__stars li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  color: var(--brown);
}

.zigzag-row__thumb {
  margin: 12px 0 0;
  max-width: 120px;
}

.zigzag-row__thumb img {
  width: 100%;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

/* 细节展示 / 配套服务：大图 + 小图配文字左右交替 */
#details {
  padding-left: 0;
  padding-right: 0;
}

#details > .section-head {
  margin-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
}

#details > .section-hero--details {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.section-hero--details img {
  width: 100%;
  aspect-ratio: 416 / 272;
  object-fit: cover;
  display: block;
}

#details > .details-pairs {
  padding-left: 18px;
  padding-right: 18px;
}

#services {
  padding-left: 0;
  padding-right: 0;
}

#services > .section-head {
  margin-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
}

#services > .section-hero--services {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.section-hero--services img {
  width: 100%;
  aspect-ratio: 203 / 226;
  object-fit: cover;
  display: block;
}

#services > .service-pairs {
  padding-left: 18px;
  padding-right: 18px;
}

/* 品牌理念：标题 + 通栏大图 + 三段错落图文（对齐 UI 稿） */
#brand {
  padding-left: 0;
  padding-right: 0;
}

#brand > .section-head {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
  margin-top: 20px;
}

#brand > .section-hero--brand {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.section-hero--brand img {
  width: 100%;
  aspect-ratio: 523 / 235;
  object-fit: cover;
  display: block;
}

.brand-pairs {
  gap: 28px;
  padding-left: 18px;
  padding-right: 18px;
}

.brand-pairs .zigzag-row {
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.brand-pairs .zigzag-row__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.brand-pairs .mini-head {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 6px;
}

.brand-pairs .mini-head__cn {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.brand-pairs .mini-head__en {
  font-family: var(--font-head-en);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  color: #8b6347;
  margin: 0;
}

.brand-pairs .zigzag-row__line {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text);
}

.brand-pairs .zigzag-row__line:last-child {
  margin-bottom: 0;
}

.brand-pairs .zigzag-row__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  color: var(--text);
}

.brand-pairs .zigzag-row__stars {
  margin: 6px 0 0;
}

.brand-pairs .zigzag-row__stars li {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--text);
}

.brand-pairs .zigzag-row__media {
  margin: 0;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

/* 1. 品牌故事：左横图 + 右文垂直居中 */
.brand-row--story {
  align-items: center;
}

.brand-row--story .zigzag-row__content {
  justify-content: center;
}

.brand-row--story .zigzag-row__media {
  flex: 0 0 48%;
  max-width: 48%;
}

.brand-row--story .zigzag-row__media img {
  width: 100%;
  aspect-ratio: 156 / 115;
  object-fit: cover;
}

/* 2. 品牌理念：左文 + 小横图，右竖图等高 */
.brand-row--concept {
  align-items: stretch;
}

.brand-row--concept .zigzag-row__media {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  align-self: stretch;
}

.brand-row--concept .zigzag-row__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: unset;
  object-fit: cover;
}

.brand-row--concept .zigzag-row__thumb {
  margin: 12px 0 0;
  max-width: 100%;
}

.brand-row--concept .zigzag-row__thumb img {
  width: 100%;
  aspect-ratio: 156 / 58;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

/* 3. 核心优势：左列表 + 右竖图 */
.brand-row--advantages .zigzag-row__media {
  flex: 0 0 48%;
  max-width: 48%;
}

.brand-row--advantages .zigzag-row__media img {
  width: 100%;
  aspect-ratio: 131 / 115;
  object-fit: cover;
}

.details-pairs,
.service-pairs {
  gap: 28px;
}

.details-pairs .zigzag-row,
.service-pairs .zigzag-row {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.details-pairs .zigzag-row__media {
  flex: 0 0 44%;
  max-width: 44%;
  margin: 0;
}

.service-pairs .zigzag-row__media {
  flex: 0 0 68%;
  max-width: 68%;
  margin: 0;
}

.details-pairs .zigzag-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.details-pairs .zigzag-row:first-child .zigzag-row__media img {
  aspect-ratio: 216 / 152;
}

.service-pairs .zigzag-row__media img {
  width: 100%;
  aspect-ratio: 260 / 105;
  object-fit: cover;
}

.details-pairs .zigzag-row__content,
.service-pairs .zigzag-row__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.service-pairs .zigzag-row--image-right .zigzag-row__content {
  text-align: right;
}

.details-pairs .zigzag-row__line,
.service-pairs .zigzag-row__line {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--text);
}

.details-pairs .zigzag-row__line:last-child,
.service-pairs .zigzag-row__line:last-child {
  margin-bottom: 0;
}

.details-pairs .zigzag-row__text,
.service-pairs .zigzag-row__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text);
}

.mini-head {
  margin-bottom: 10px;
}

.mini-head__cn {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
}

.mini-head__en {
  margin: 2px 0 0;
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  color: var(--brown-light);
  letter-spacing: 0.04em;
}

/* 房型展示（UI 稿） */
.room-list--showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#rooms > .section-head {
  margin-bottom: 10px;
}

.room-list--showcase .section-head {
  margin: 0 0 10px;
}

.room-list--showcase .room-stack + .section-head {
  margin-top: 36px;
  margin-bottom: 10px;
}

.room-list--showcase .section-head + .room-stack {
  margin-top: 0;
}

/* 上下双图 + 中间叠卡（上下叠入高度一致） */
.room-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4px;
  --room-card-overlap: 17px;
}

.room-stack .room-showcase {
  margin: 0;
}

.room-stack .room-showcase__photo {
  box-shadow: none;
  border-radius: 0;
}

.room-stack .room-showcase:first-of-type .room-showcase__photo {
  border-radius: 2px 2px 0 0;
  box-shadow: var(--shadow);
}

.room-stack .room-showcase:last-of-type .room-showcase__photo {
  border-radius: 0 0 2px 2px;
  box-shadow: var(--shadow);
}

.room-stack .amenity-float {
  position: relative;
  z-index: 5;
  margin-top: calc(-1 * var(--room-card-overlap));
  margin-bottom: calc(-1 * var(--room-card-overlap));
  margin-left: 35px;
  margin-right: 35px;
  padding: 16px 12px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 6px 28px rgba(26, 26, 26, 0.14);
}

.room-showcase {
  margin: 0;
}

.room-showcase__photo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.room-showcase__photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.room-showcase__ribbon {
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px 12px 12px;
  min-width: 120px;
  background: linear-gradient(135deg, #2a6eb8 0%, #1e5599 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.room-showcase__ribbon small {
  display: block;
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.room-showcase__position {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: var(--text);
}

.room-showcase__photo .room-showcase__position--top {
  position: absolute;
  top: 7px;
  right: 12px;
  left: auto;
  max-width: 58%;
  text-align: right;
  white-space: nowrap;
}

.room-showcase__position--bottom {
  margin: 8px 4px 0 0;
  text-align: right;
}

.room-stack .room-showcase:last-of-type .room-showcase__position--bottom {
  margin-bottom: 4px;
}

.amenity-float {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 8px;
}

.amenity-float__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: 11px;
  line-height: 1.35;
  color: var(--text);
}

.amenity-float__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.section--reviews {
  background: var(--cream);
}

.section--reviews > * {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* 硬件设施 */
#facilities {
  padding-left: 0;
  padding-right: 0;
}

#facilities > .section-head {
  margin-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
}

.facilities-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.facilities-hero {
  width: 100vw;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  border-radius: 0;
}

.facilities-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.facilities-card-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #fff;
}

.facilities-card {
  background: var(--white);
  text-align: center;
}

/* 上：标题区，较窄，轻叠主图 */
.facilities-card--head {
  margin: -29px 32px 0;
  padding: 24px 16px 18px;
  border-radius: 8px 8px 0 0;
}

/* 下：图标+说明，较宽 */
.facilities-card--body {
  margin: 0 14px;
  padding: 18px 16px 20px;
}

.facilities-card__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.4;
}

.facilities-card__intro {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  color: var(--text);
}

.facilities-card--body .facilities-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px 4px;
  margin: 0 0 18px;
}

.facilities-icon-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.facilities-icon-grid__img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.facilities-icon-grid__label {
  font-size: 9px;
  line-height: 1.3;
  color: var(--text);
  word-break: keep-all;
}

.facilities-card__desc {
  margin: 0;
}

.facilities-card__line {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.75;
  color: var(--text);
}

.facilities-card__line:last-child {
  margin-bottom: 0;
}

.facilities-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 14px 0;
}

.facilities-thumbs__item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.facilities-thumbs__item img {
  width: 100%;
  aspect-ratio: 106 / 104;
  object-fit: cover;
  display: block;
}

.facilities-footer {
  width: 100vw;
  max-width: none;
  margin: 16px calc(50% - 50vw) 0;
  overflow: hidden;
  border-radius: 0;
}

.facilities-footer img {
  width: 100%;
  aspect-ratio: 375 / 192;
  object-fit: cover;
  display: block;
}

/* About */
.about-intro {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.about-intro__photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}

.about-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__text {
  flex: 1;
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-muted);
  text-align: left;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.about-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--white);
}

.about-gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-gallery__item figcaption {
  padding: 8px 4px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  color: var(--text);
  letter-spacing: 0.04em;
}

/* Filter */
.filter-bar { margin-bottom: 24px; }

.filter-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar { display: none; }

.filter-chip {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
}

.filter-chip.is-on {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}

.filter-count {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.filter-count strong { color: var(--brown); }

.list-empty {
  text-align: center;
  padding: 24px;
  font-size: 14px;
  color: var(--text-muted);
  border: 1px dashed var(--border);
}

/* Room blocks */
.room-list { display: flex; flex-direction: column; gap: 48px; }

.room-list.room-list--showcase {
  gap: 0;
}

.room-block { text-align: center; }

.room-block__head { margin-bottom: 16px; }

.room-block__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brown-dark);
}

.room-block__title-en {
  margin: 4px 0 0;
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--brown-light);
  letter-spacing: 0.12em;
}

.room-block__photo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.room-block__photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.room-block__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: rgba(107, 66, 38, 0.85);
  border-radius: 2px;
}

.room-block__amenity {
  margin: 18px 0 12px;
  padding: 12px 8px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.room-block__amenity img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.room-block__price {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--brown);
}

.room-block__price small {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--brown-dark);
  border: 1.5px solid var(--brown-dark);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:active {
  background: var(--brown-dark);
  color: #fff;
}

/* Services */
.service-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 12px;
  margin-bottom: 24px;
}

.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.service-icon__img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.85;
}

.service-icon__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.service-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.service-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.service-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.service-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-item figcaption {
  padding: 14px 16px;
  text-align: center;
}

.service-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--brown-dark);
}

.service-item span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Location */
#location > .section-head {
  margin-bottom: 10px;
}

.location-map {
  position: relative;
  display: block;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: transparent;
}

.location-map img {
  width: 100%;
  aspect-ratio: 25 / 12;
  object-fit: cover;
  display: block;
}

.location-map__badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.location-map__badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #e03b37;
  vertical-align: middle;
}

.location-transport-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-transport {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.location-transport__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 2px;
}

.location-transport__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}

.location-transport__line {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--text);
}

.location-transport__key {
  font-weight: 600;
}

/* Surroundings */
.surround-parts {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

/* 子模块（景点/餐饮）不再重复「周边配套」大标题，仅保留左侧分类名 */
.surround-part + .surround-part .section-head__arrow,
.surround-part + .surround-part .section-head__titles {
  display: none;
}

.surround-part + .surround-part .surround-part__header {
  margin-bottom: 10px;
}

.surround-part__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.surround-part__header .section-head {
  margin-bottom: 0;
  flex: 1;
}

.surround-part__header--label-left .surround-part__label {
  flex-shrink: 0;
  padding-bottom: 6px;
}

.surround-part__header--label-right .surround-part__label {
  flex-shrink: 0;
  padding-bottom: 6px;
  text-align: right;
}

.surround-part__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.08em;
}

.surround-shop {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.surround-shop__row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.surround-shop__media {
  flex: 0 0 66%;
  max-width: 66%;
  margin: 0;
  overflow: hidden;
}

.surround-shop__media img {
  width: 100%;
  aspect-ratio: 322 / 144;
  object-fit: cover;
  display: block;
}

.surround-shop__media--left img {
  border-radius: 0 999px 999px 0 / 0 999px 999px 0;
}

.surround-shop__media--right img {
  border-radius: 999px 0 0 999px / 999px 0 0 999px;
}

.surround-shop__title {
  flex: 1;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
}

.surround-shop__row--image-left .surround-shop__title {
  text-align: left;
}

.surround-shop__row--image-right .surround-shop__title {
  text-align: right;
}

.surround-attr {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}

.surround-attr__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.surround-attr__media {
  flex: 0 0 48%;
  max-width: 48%;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.surround-attr__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.surround-attr__text {
  flex: 1;
  min-width: 0;
}

.surround-attr__text p {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  color: var(--text);
}

.surround-attr__row--image-left .surround-attr__text p {
  text-align: left;
}

.surround-attr__row--image-right .surround-attr__text p {
  text-align: right;
}

.surround-circle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  padding: 4px 12px 0;
}

.surround-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.surround-circle__label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
}

.surround-circle__img {
  width: min(24vw, 36vw);
  height: min(24vw, 36vw);
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px dashed rgba(26, 26, 26, 0.28);
  padding: 15px;
  box-sizing: border-box;
}

.surround-circle__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.surround-dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}

.surround-dining-grid__item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.surround-dining-grid__item img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.surround-dining-grid__item--1 img {
  aspect-ratio: 154 / 322;
}

.surround-dining-grid__item--2 img,
.surround-dining-grid__item--3 img {
  aspect-ratio: 154 / 247;
}

.surround-facilities-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 20px 18px;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}

.surround-facilities-card__text {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 13px;
  line-height: 2.1;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.surround-facilities-card__media {
  flex: 0 0 46%;
  max-width: 46%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.surround-facilities-card__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
}

/* 公共设施顶栏 — 与 UI 一致：左标题，右折线 + 标签 */
.surround-part--public {
  margin-top: 4px;
}

.surround-pub-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 16px;
}

.surround-pub-head__main {
  flex: 1 1 auto;
  min-width: 0;
}

.surround-pub-head__cn {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.3;
}

.surround-pub-head__en {
  margin: 5px 0 0;
  font-family: var(--font-head-en);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #8b6347;
  line-height: 1.35;
}

.surround-pub-head__tag {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  margin-left: 8px;
}

.surround-pub-head__arrow {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.surround-pub-head__label {
  flex-shrink: 0;
  margin: 0 0 10px 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.08em;
  line-height: 1.3;
  white-space: nowrap;
}

/* 公园标题：左右短横线夹居中黑体 */
.surround-spot-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0 4px;
}

.surround-spot-title__line {
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  background: #111;
}

.surround-spot-title__text {
  flex: 0 1 auto;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--text);
  text-align: center;
}

/* 公园三图：左右顶对齐，中间下沉 */
.surround-spot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  align-items: start;
}

.surround-spot-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.surround-spot-gallery__item--2 {
  margin-top: 28px;
}

.surround-spot-gallery__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.surround-spot-divider {
  position: relative;
  margin: 0 0 14px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

.surround-spot-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.surround-spot-divider span {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  background: var(--cream);
}

.surround-dining-list {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}

.surround-dining-item__name {
  margin: 0 ;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
}

.surround-dining-item__meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  color: var(--text);
}

.surround-dining-footer {
  margin: 18px 0 0;
  overflow: hidden;
  border-radius: 2px;
}

.surround-dining-footer img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Booking / Contact */
#booking {
  padding-left: 0;
  padding-right: 0;
}

#booking > .section-head {
  margin-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
}

.booking-notice {
  margin: 0 18px 20px;
  font-size: 12px;
  line-height: 1.85;
  color: var(--text);
  text-align: center;
}

.booking-contact {
  position: relative;
  width: 100vw;
  max-width: none;
  margin: 40px calc(50% - 50vw) 0;
  overflow: visible;
  border-radius: 0;
}

.booking-contact__bg {
  margin: 0;
  width: 100%;
}

.booking-contact__bg img {
  width: 100%;
  aspect-ratio: 275 / 478;
  object-fit: cover;
  display: block;
}

.booking-contact__panel {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 320px;
  padding: 24px 20px 28px;
  background: rgba(102, 102, 102, 0.6);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  z-index: 2;
}

.booking-contact__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.booking-contact__title-en {
  margin: 6px 0 0;
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.14em;
  font-weight: bold;
}

.booking-contact__divider {
  width: 72px;
  height: 1px;
  margin: 16px auto;
  background: rgba(255, 255, 255, 0.45);
}

.booking-contact__label {
  margin: 0 0 6px;
  font-size: 13px;
  opacity: 0.92;
}

.booking-contact__phone {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.booking-contact__phone a {
  color: #fff;
}

.booking-contact__phone span {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
}

.booking-contact__qr .footer-qr__img {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border-radius: 4px;
  background: #fff;
  padding: 4px;
}

/* 入住口碑 / 细节展示 */
.section--reviews {
  padding-bottom: var(--section-py);
}

.section--reviews .section-head {
  margin-bottom: 24px;
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 4vw, 22px);
  padding: 8px 0 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  box-shadow: none;
}

.review-summary__platform {
  flex: 0 0 auto;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0055a1;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
}

.review-summary__score-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.review-summary__score {
  margin: 0;
  font-size: clamp(44px, 12vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: #0055a1;
  letter-spacing: -0.02em;
}

.review-summary__score-line {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 5px;
  background: #0055a1;
  border-radius: 0;
}

.review-summary__grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(16px, 5vw, 28px);
  row-gap: 10px;
  min-width: 0;
  align-content: center;
}

.review-metric {
  margin: 0;
}

.review-metric__text {
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
}

.reviews-image {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.reviews-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 关于我们 · 视频 */
.section--about-video {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-py);
}

.section--about-video .section-head {
  max-width: min(78vw, 320px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 12px;
}

.about-video {
  display: flex;
  justify-content: center;
  padding: 0 12px;
}

.about-video__frame {
  position: relative;
  width: min(78vw, 320px);
  aspect-ratio: 9 / 16;
  background: #0a0a0a;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.about-video__frame.is-playing {
  cursor: default;
}

.about-video__player {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #0a0a0a;
  transform: translateZ(0);
}

.about-video__player[poster] {
  background: transparent;
}

.about-video__frame.is-loading .about-video__play {
  opacity: 0.45;
  pointer-events: none;
}

.about-video__play {
  position: absolute;
  left: 50%;
  bottom: 22%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  padding-left: 4px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(160, 160, 160, 0.95);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.about-video__play:active {
  transform: translateX(-50%) scale(0.94);
}

.about-video__frame.is-playing .about-video__play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Footer · 左（热线+电话）中（地址）右（二维码） */
.site-footer {
  padding: 0 0 calc(16px + var(--safe-bottom));
  background: var(--cream);
  color: var(--text);
}

.footer-cta {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 10px 16px;
}

.footer-bar {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
}

.footer-bar__main {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 4px;
  row-gap: 0;
  align-items: center;
}

.footer-bar__contact {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.footer-bar__address {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-bar__address div {
  margin: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
  color: #444;
}

.footer-bar__rule {
  grid-column: 1 / -1;
  grid-row: 2;
  display: block;
  height: 1px;
  margin-top: 5px;
  background: rgba(26, 26, 26, 0.28);
}

.footer-bar__label {
  flex: 0 0 auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #555;
  white-space: nowrap;
  transform: scale(0.8);
}

.footer-bar__num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
  text-decoration: none;
}

@media (min-width: 401px) {
  .footer-bar__num {
    font-size: 22px;
  }
}

.footer-bar__qr {
  flex: 0 0 64px;
  width: 64px;
  min-width: 64px;
  align-self: center;
}

.footer-bar__qr .footer-qr__img {
  width: 64px;
  height: 64px;
}

.site-footer__brand {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  text-align: center;
}

.site-footer__brand-name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--brown-dark);
  text-transform: uppercase;
}

.site-footer__brand-sub {
  margin: 6px 0 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.footer-qr__img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
}

.site-footer__logo {
  height: 56px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}

.site-footer__logo--sm { height: 44px; margin-bottom: 8px; }

.site-footer__legal {
  margin: 0;
  padding: 12px 16px 0;
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.5;
}

.site-footer--compact {
  padding: 20px;
  background: var(--cream);
  text-align: center;
}

/* Detail page */
.page-detail { background: var(--cream); }

.detail-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--brown-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.site-header--overlay {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  height: calc(var(--header-h) + var(--safe-top));
  padding: var(--safe-top) 12px 0;
}

.site-header__title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}

.site-header__spacer { width: 40px; }

.detail-hero {
  position: relative;
  margin-top: calc(-1 * (var(--header-h) + var(--safe-top)));
  padding-top: calc(var(--header-h) + var(--safe-top));
  background: #1a1512;
}

.detail-gallery {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.detail-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.detail-slide.is-active { opacity: 1; }

.detail-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.detail-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.detail-dot.is-active {
  width: 18px;
  border-radius: 3px;
  background: #fff;
}

.detail-main {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 18px 32px;
}

.detail-rent {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--brown);
}

.detail-rent small {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.detail-title {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brown-dark);
}

.detail-title-en {
  margin: 4px 0 0;
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--brown-light);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  padding: 4px 12px;
  font-size: 12px;
  background: var(--cream);
  color: var(--text-muted);
  border-radius: 2px;
}

.room-block__amenity--detail { margin: 20px 0; }

.map-card {
  display: block;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.map-card__map { width: 100%; }

.map-card__body {
  padding: 14px 16px;
  background: var(--cream);
}

.map-card__addr {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.map-card__cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
}

.detail-section { margin-top: 28px; }

.detail-section__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brown-dark);
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.facility-list li {
  padding: 8px 14px;
  font-size: 13px;
  background: var(--cream);
  border-radius: 2px;
  color: var(--text-muted);
}

.requirement-box {
  margin: 0;
  padding: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  background: var(--cream);
  border-radius: 2px;
}

[hidden] { display: none !important; }
