/* ═══════════════════════════════════════
   ZHONGHE GRAND HOTEL — Official Website
   Design: Modern Oriental Luxury
   ═══════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --gold:       #C9A96E;
  --gold-light: #E5C98A;
  --gold-dark:  #9D7A45;
  --black:      #0D0D0D;
  --dark:       #111111;
  --dark2:      #1A1A1A;
  --dark3:      #222222;
  --mid:        #2A2A2A;
  --light-bg:   #F5F0E8;
  --light2:     #EDE8DF;
  --cream:      #FAF8F4;
  --text:       #E8E2D9;
  --text-muted: #9A9188;
  --text-dark:  #2C2520;
  --white:      #FFFFFF;
  --font-serif: 'Cormorant Garamond', 'Noto Serif SC', 'Source Han Serif SC', serif;
  --font-cn:    'Noto Serif SC', 'Source Han Serif SC', '思源宋体', serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-cn);
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ── Typography ── */
.section-label {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-title.centered { text-align: center; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}
.section-subtitle.centered { text-align: center; }
.body-text { color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; font-size: 0.95rem; }
.en-text { font-family: var(--font-serif); font-style: italic; font-size: 0.9rem; }

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-dark  { background: var(--dark); }
.section-mid   { background: var(--dark2); }
.section-light { background: var(--light-bg); color: var(--text-dark); }
.section-light .section-title { color: var(--text-dark); }
.section-light .section-subtitle { color: #7a6f63; }
.section-light .section-label { color: var(--gold-dark); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-cn);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-gold-sm {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.btn-gold-sm:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; }

/* ── Logo images ── */
.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  display: block;
  transition: opacity 0.3s;
}
.nav-logo-img:hover { opacity: 0.88; }
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.75) sepia(1) saturate(1.5) hue-rotate(5deg);
  opacity: 0.85;
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  transition: all 0.4s var(--ease);
}
#nav.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-serif);
  flex-shrink: 0;
}
.logo-cn { font-size: 1.4rem; color: var(--gold); font-weight: 400; letter-spacing: 0.1em; }
.logo-divider { color: rgba(201,169,110,0.4); font-size: 1rem; }
.logo-en { font-size: 0.7rem; letter-spacing: 0.3em; color: var(--text-muted); text-transform: uppercase; }
.nav-links {
  display: flex; list-style: none; gap: 2rem; margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-phone {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-serif);
  font-size: 0.95rem; letter-spacing: 0.06em;
  color: var(--gold);
  flex-shrink: 0;
  transition: color 0.3s;
}
.nav-phone svg { width: 15px; height: 15px; }
.nav-phone:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  border-radius: 2px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/hero-main.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
  transform-origin: center;
  will-change: transform;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.5) 100%);
}
.hero-bg::after {
  content: '和';
  position: absolute;
  font-family: var(--font-cn);
  font-size: 40vw;
  color: rgba(201,169,110,0.03);
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,13,13,0.9) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}
.hero-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero-title {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hero-cn {
  font-family: var(--font-cn);
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.3em;
  line-height: 1;
  white-space: nowrap;
}
.hero-en {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  color: var(--gold);
  letter-spacing: 0.3em;
  font-weight: 300;
}
.hero-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 7rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--text-muted); }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex; justify-content: center; align-items: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 1.2rem 2rem;
  gap: 0;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 3rem; text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.stat-num sup { font-size: 0.7rem; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; margin-top: 0.2rem; }
.stat-sep { width: 1px; height: 40px; background: rgba(201,169,110,0.2); }

/* ── BRAND section bg ── */
#brand {
  position: relative;
}
#brand::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('assets/exterior-courtyard.jpg');
  background-size: cover;
  background-position: center 60%;
  background-attachment: fixed;
  opacity: 0.07;
  pointer-events: none;
}

/* ── BRAND ── */
.brand-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: start; margin-top: 2rem;
}
.brand-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.brand-line {
  width: 60px; height: 1px; background: var(--gold);
  margin: 2rem 0;
}
.brand-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.value-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(201,169,110,0.2);
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.value-item:hover { border-color: var(--gold); background: rgba(201,169,110,0.05); }
.value-cn {
  font-family: var(--font-cn);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.value-en { font-family: var(--font-serif); font-size: 0.75rem; letter-spacing: 0.2em; color: var(--text-muted); text-transform: uppercase; }
.brand-positioning {
  padding: 1.5rem;
  border: 1px solid rgba(201,169,110,0.15);
  background: rgba(201,169,110,0.03);
}
.brand-positioning h4 { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 0.8rem; text-transform: uppercase; }
.brand-positioning p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ── LOCATION ── */
.location-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 2rem;
}
.loc-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 3rem 1.5rem; text-align: center;
  background: var(--light2);
  border: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.loc-item:hover { background: var(--cream); transform: translateY(-4px); }
.loc-icon { font-size: 2rem; margin-bottom: 1rem; }
.loc-time {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-dark);
  font-weight: 300;
  line-height: 1;
}
.loc-time span { font-size: 1rem; }
.loc-name { font-size: 1rem; color: var(--text-dark); margin: 0.5rem 0 0.3rem; font-weight: 600; }
.loc-dist { font-size: 0.8rem; color: #8a7f72; letter-spacing: 0.05em; }

/* ── ROOMS ── */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  margin-top: 2rem;
  background: var(--dark3);
}
.room-card { background: var(--dark2); overflow: hidden; display: flex; flex-direction: column; }
.room-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.room-visual {
  height: 280px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease);
}
.room-wide .room-visual { height: auto; }
.room-card:hover .room-visual { transform: scale(1.03); }

/* Room real photos */
.room-v1 { background-image: url('assets/room-deluxe-king.jpg'); background-size: cover; background-position: center; }
.room-v2 { background-image: url('assets/room-twin.jpg'); background-size: cover; background-position: center; }
.room-v3 { background-image: url('assets/room-exec-suite.jpg'); background-size: cover; background-position: center; }
.room-v4 { background-image: url('assets/room-king-art.jpg'); background-size: cover; background-position: center; }
.room-v5 { background-image: url('assets/room-bathroom.jpg'); background-size: cover; background-position: center; }

/* Subtle dark overlay to keep text readable */
.room-v1::before, .room-v2::before, .room-v3::before, .room-v4::before, .room-v5::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.25) 100%);
}

.room-overlay { position: absolute; inset: 0; display: flex; align-items: flex-start; padding: 1.2rem; }
.room-badge {
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem; letter-spacing: 0.12em;
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  backdrop-filter: blur(10px);
}
.badge-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.badge-prestige { background: rgba(160,120,200,0.2); color: #c8a8f0; border-color: rgba(160,120,200,0.4); }
.room-info { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.room-header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.3rem; }
.room-header h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); font-weight: 400; }
.room-price { font-family: var(--font-serif); color: var(--gold); font-size: 1.3rem; white-space: nowrap; }
.room-price sub { font-size: 0.7rem; color: var(--text-muted); }
.room-desc { font-size: 0.75rem; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
.room-text { font-size: 0.9rem; color: #7a7068; line-height: 1.8; flex: 1; margin-bottom: 1.5rem; }
.room-book {
  font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
  align-self: flex-start;
}
.room-book:hover { border-color: var(--gold); }

.rooms-all-types {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.1);
}
.rooms-all-types h4 {
  font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold);
  margin-bottom: 1.5rem; letter-spacing: 0.1em;
}
.type-table { display: flex; flex-direction: column; gap: 0; }
.type-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 2rem; align-items: center;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  transition: background 0.2s;
}
.type-row:hover { background: rgba(255,255,255,0.02); }
.type-header { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--text-muted); border-bottom-color: rgba(201,169,110,0.2); }
.type-highlight { color: var(--gold); }
.type-note { margin-top: 1rem; font-size: 0.78rem; color: var(--text-muted); }

/* ── MEETINGS ── */
.meeting-buildings {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin: 2rem 0 4rem;
}
.building-card {
  border: 1px solid rgba(201,169,110,0.15);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.building-card:hover { border-color: rgba(201,169,110,0.5); }
.building-card-inner {
  position: relative;
  padding: 3rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.88) 100%);
  backdrop-filter: blur(1px);
  height: 100%;
}
.building-num {
  font-family: var(--font-serif);
  font-size: 4rem; color: rgba(201,169,110,0.12);
  font-weight: 300;
  position: absolute; top: 1rem; right: 2rem;
  line-height: 1;
}
.building-card h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.building-area { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; letter-spacing: 0.05em; }
.building-card p { font-size: 0.9rem; color: #7a7068; line-height: 1.9; margin-bottom: 1.5rem; }
.building-rooms { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.building-rooms span {
  padding: 0.3rem 0.8rem;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  font-size: 0.75rem; color: var(--gold);
  border-radius: 2px;
}
.meeting-highlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  padding: 3rem;
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.15);
}
.mh-left h3 { font-family: var(--font-serif); font-size: 2rem; color: var(--white); margin-bottom: 0.3rem; }
.mh-spec { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.mh-left p { font-size: 0.9rem; color: #7a7068; line-height: 1.9; margin-bottom: 1rem; }
.venue-list { display: flex; flex-direction: column; gap: 0; }
.venue-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.venue-name { color: var(--white); font-size: 0.95rem; flex: 1; }
.venue-spec { font-size: 0.8rem; color: var(--text-muted); flex: 1.5; }
.venue-price { font-family: var(--font-serif); color: var(--gold); font-size: 1rem; white-space: nowrap; }

/* ── DINING ── */
.dining-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 1.5px; background: var(--dark3); margin-top: 2rem; }
.dining-card { overflow: hidden; display: flex; flex-direction: column; background: var(--dark2); }
.dining-img { height: 320px; position: relative; overflow: hidden; }
.dining-chinese {
  background-image: url('assets/dining-allday-2.jpg');
  background-size: cover;
  background-position: center 40%;
}
.dining-chinese::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%); }
.dining-alldayimgreserve {
  background-image: url('assets/dining-allday-1.jpg');
  background-size: cover;
  background-position: center;
}
.dining-alldayimgreserve::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%); }
.dining-content { padding: 2.5rem; flex: 1; }
.dining-tag { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.8rem; display: block; }
.dining-content h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--white); margin-bottom: 0.3rem; }
.dining-cap { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.2rem; letter-spacing: 0.05em; }
.dining-content p { font-size: 0.9rem; color: #7a7068; line-height: 1.9; margin-bottom: 0.8rem; }
.dining-detail { font-size: 0.8rem; color: var(--gold); font-style: italic; border-top: 1px solid rgba(201,169,110,0.15); padding-top: 1rem; margin-top: 1rem; }

/* ── WELLNESS ── */
.wellness-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.wellness-card {
  padding: 3rem 2.5rem;
  background: var(--light2);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wellness-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.wellness-icon-wrap {
  width: 80px; height: 80px; margin: 0 auto 1.5rem;
  background: rgba(157,122,69,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(157,122,69,0.2);
}
.wellness-icon { font-size: 2rem; }
.wellness-card h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--text-dark); margin-bottom: 1rem; }
.wellness-card p { font-size: 0.9rem; color: #6a6058; line-height: 1.85; margin-bottom: 0.8rem; }
.wellness-spec { font-size: 0.78rem; color: var(--gold-dark); letter-spacing: 0.05em; }

/* ── CONTACT ── */
.contact-section { position: relative; overflow: hidden; }
.contact-section::before {
  content: '中';
  position: absolute;
  font-family: var(--font-cn); font-size: 60vw; font-weight: 900;
  color: rgba(201,169,110,0.025);
  right: -15%; top: 50%; transform: translateY(-50%);
  pointer-events: none; user-select: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; position: relative; z-index: 1; }
.contact-left .section-title { font-size: clamp(1.8rem, 4vw, 3rem); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.2rem; margin-top: 0.1rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--white); font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.9rem; color: var(--text-muted); }
.contact-form {
  padding: 3rem;
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.15);
}
.contact-form h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.08em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark3);
  border: 1px solid rgba(201,169,110,0.15);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-radius: 2px;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark3); }
.form-note { margin-top: 1rem; font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* ── FOOTER ── */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 4rem 2rem;
  display: grid; grid-template-columns: 240px 1fr; gap: 4rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.footer-slogan { font-family: var(--font-serif); font-size: 0.7rem; letter-spacing: 0.3em; color: var(--text-muted); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h5 { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1rem; text-transform: uppercase; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between;
  font-size: 0.78rem; color: var(--text-muted);
  flex-wrap: wrap; gap: 0.5rem;
}

/* ── AOS Animations ── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="150"] { transition-delay: 0.15s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="450"] { transition-delay: 0.45s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .brand-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .meeting-highlight { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 0 1.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-phone { margin-left: auto; font-size: 0.9rem; }
  .nav-hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .stat { padding: 0.8rem 1.5rem; }
  .stat-sep { display: none; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .meeting-buildings { grid-template-columns: 1fr; }
  .dining-grid { grid-template-columns: 1fr; }
  .wellness-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .type-row { grid-template-columns: 1fr auto; font-size: 0.8rem; }
  .type-row span:nth-child(2) { display: none; }
}
/* ═══════════════════════════════════════
   WHY-US section
   ═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
  background: var(--dark3);
}
.why-card {
  background: var(--dark);
  padding: 2.4rem 2rem 2rem;
  position: relative;
  transition: background 0.35s var(--ease);
}
.why-card:hover { background: var(--dark2); }
.why-num {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  letter-spacing: 0.05em;
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  filter: hue-rotate(10deg) saturate(0.85);
}
.why-card h3 {
  font-family: var(--font-cn);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

/* ═══════════════════════════════════════
   SHOWCASE Gallery (visual journey)
   ═══════════════════════════════════════ */
.showcase-section {
  padding-bottom: 7rem;
}
.showcase-head {
  max-width: 1240px;
  margin: 0 auto 3rem;
  padding: 0 var(--container-pad);
  text-align: center;
}
.showcase-stage {
  position: relative;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  max-height: 78vh;
  overflow: hidden;
  background: #0a0a0a;
  border-top: 1px solid rgba(201,169,110,0.18);
  border-bottom: 1px solid rgba(201,169,110,0.18);
}
.ss-track {
  position: absolute; inset: 0;
}
.ss-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s var(--ease), transform 6s linear;
  pointer-events: none;
}
.ss-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition: opacity 0.9s var(--ease), transform 9s linear;
}
.ss-slide::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,0.72) 100%),
    linear-gradient(to right, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 35%);
  pointer-events: none;
}
.ss-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-arrow:hover { background: rgba(201,169,110,0.85); color: #1a1a1a; }
.ss-prev { left: 2rem; }
.ss-next { right: 2rem; }
.ss-caption {
  position: absolute;
  left: 2.4rem;
  bottom: 2.6rem;
  z-index: 3;
  color: var(--white);
  font-family: var(--font-cn);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  max-width: 60%;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease) 0.2s, transform 0.5s var(--ease) 0.2s;
}
.ss-caption.show { opacity: 1; transform: translateY(0); }
.ss-counter {
  position: absolute;
  right: 2.4rem;
  bottom: 2.6rem;
  z-index: 3;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.ss-counter .ss-cur { font-size: 1.4rem; color: var(--white); }
.ss-dots {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.55rem;
}
.ss-dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.ss-dot.active { background: var(--gold); width: 48px; }
.ss-empty {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .showcase-section { padding-bottom: 4rem; }
  .showcase-stage { aspect-ratio: 4 / 5; max-height: none; }
  .ss-arrow { width: 42px; height: 42px; font-size: 1.4rem; }
  .ss-prev { left: 0.8rem; }
  .ss-next { right: 0.8rem; }
  .ss-caption {
    left: 1rem; right: 1rem; bottom: 2.4rem;
    font-size: 0.95rem; max-width: none;
  }
  .ss-counter { right: 1rem; bottom: 2.4rem; font-size: 0.75rem; }
  .ss-counter .ss-cur { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════
   ROOM carousel
   ═══════════════════════════════════════ */
.room-carousel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: background-image 0.5s var(--ease);
}
.room-carousel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.rc-prev, .rc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(13,13,13,0.5);
  color: var(--gold);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s var(--ease), background 0.25s var(--ease);
  z-index: 3;
  border: 1px solid rgba(201,169,110,0.3);
}
.rc-prev { left: 14px; }
.rc-next { right: 14px; }
.rc-prev:hover, .rc-next:hover { background: var(--gold); color: var(--dark); }
.room-card:hover .rc-prev,
.room-card:hover .rc-next { opacity: 1; }
.rc-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.rc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.rc-dot.active { background: var(--gold); transform: scale(1.3); }

/* ═══════════════════════════════════════
   Dining new (西餐 + 烧烤)
   ═══════════════════════════════════════ */
.dining-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--dark3);
  margin-top: 2rem;
}
.dining-grid-three .dining-card {
  display: flex; flex-direction: column;
  background: var(--dark2);
}
.dining-img.dining-chinese {
  background-image: url('assets/dining-allday-1.jpg');
  background-size: cover; background-position: center;
}
.dining-img.dining-western {
  background-image: url('assets/dining-allday-2.jpg');
  background-size: cover; background-position: center;
}
.dining-img.dining-bbq {
  background-image: url('assets/dining-allday-3.jpg');
  background-size: cover; background-position: center;
}

/* ═══════════════════════════════════════
   WeChat FAB (右下角浮窗)
   ═══════════════════════════════════════ */
.wechat-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 12px 18px;
  border-radius: 30px;
  font-family: var(--font-cn);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(201,169,110,0.4), 0 2px 8px rgba(0,0,0,0.3);
  display: flex; align-items: center; gap: 7px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: wf-pulse 2.5s ease-in-out infinite;
}
.wechat-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(201,169,110,0.55), 0 2px 8px rgba(0,0,0,0.3);
}
.wf-icon { font-size: 1.15rem; }
@keyframes wf-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(201,169,110,0.4), 0 2px 8px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 8px 28px rgba(201,169,110,0.7), 0 0 0 8px rgba(201,169,110,0.08); }
}
.wechat-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: wp-fade 0.25s var(--ease);
}
.wechat-popup[hidden] { display: none; }
@keyframes wp-fade { from { opacity: 0; } to { opacity: 1; } }
.wp-card {
  position: relative;
  background: linear-gradient(160deg, #1a1a1a, #0d0d0d);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 18px;
  padding: 36px 30px 28px;
  max-width: 340px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  animation: wp-pop 0.3s var(--ease-out);
}
@keyframes wp-pop { from { opacity: 0; transform: scale(0.92) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.wp-close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 1.6rem;
  color: var(--text-muted);
  background: none; border: none;
  cursor: pointer; line-height: 1;
}
.wp-close:hover { color: var(--gold); }
.wp-title {
  font-family: var(--font-cn);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
}
.wp-qr {
  width: 200px; height: 200px;
  margin: 0 auto 1.2rem;
  background: var(--white);
  border-radius: 10px;
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.wp-qr img { width: 100%; height: 100%; object-fit: contain; }
.wp-qr-fallback {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-dark);
  text-align: center;
}
.wp-qr-empty .wp-qr-fallback { display: flex; }
.wp-qr-icon { font-size: 3rem; margin-bottom: 8px; opacity: 0.4; }
.wp-qr-line { font-size: 0.85rem; color: #555; line-height: 1.6; }
.wp-tip {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.wp-divider {
  height: 1px;
  background: rgba(201,169,110,0.18);
  margin: 1rem 0 1rem;
}
.wp-call {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 25px;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.wp-call:hover { background: var(--gold); color: var(--dark); }

/* ═══════════════════════════════════════
   Responsive overrides
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .dining-grid-three { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1.8rem 1.5rem 1.6rem; }
  .wechat-fab { right: 16px; bottom: 16px; padding: 10px 14px; font-size: 0.85rem; }
  .wf-text { display: none; }
  .wf-icon { font-size: 1.4rem; }
  .wechat-fab { padding: 12px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .section { padding: 4rem 0; }
  .hero-cn { font-size: 2.8rem; letter-spacing: 0.2em; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
