/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --bg-primary: #08080a;
  --bg-secondary: #0d0d12;
  --bg-card: #111118;
  --bg-card-hover: #181820;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a8;
  --text-muted: #606068;
  --accent: #c98344;
  --accent-glow: rgba(201, 131, 68, 0.15);
  --accent-dim: rgba(201, 131, 68, 0.35);
  --accent-copper: #9a5f2a;
  --accent-copper-glow: rgba(154, 95, 42, 0.10);
  --accent-copper-dim: rgba(154, 95, 42, 0.22);
  --gold-text-gradient: linear-gradient(135deg, #c4944a 0%, #c98344 40%, #9a5f2a 100%);
  --gold-text-shadow: 0 0 40px rgba(201, 131, 68, 0.25), 0 1px 2px rgba(0,0,0,0.6);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.5), 0 0 1px rgba(255,255,255,0.03);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  --font-en: "SF Pro Display", "Inter", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  --max-width: 1280px;
  --text-scale: 1;
  --nav-height: 72px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}
::selection { background: var(--accent); color: #000; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background var(--transition), backdrop-filter var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700; letter-spacing: 0.5px;
  color: #fff;
}
.nav-logo .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.nav-links {
  display: flex; list-style: none; gap: 36px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
}
.nav-links a {
  color: var(--text-secondary); transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 13px 15px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  background: none;
  font-family: var(--font);
}
.nav-cta:hover { background: var(--accent); color: #000; }
.nav-toggle { display: none; }

/* ============================================================
   Mobile Navigation (overlay)
   ============================================================ */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 1999;
  background: rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 2000;
  width: min(300px, 80vw);
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  padding: 32px 24px calc(32px + env(safe-area-inset-bottom, 0px));
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700;
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-header .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.mobile-nav-links {
  list-style: none; display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav-links li a {
  display: block; padding: 14px 16px; min-height: 44px;
  border-radius: var(--radius);
  font-size: 16px; font-weight: 500; color: var(--text-secondary);
  transition: all var(--transition);
}
.mobile-nav-links li a:hover,
.mobile-nav-links li a:active {
  background: var(--bg-card-hover); color: #fff;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-video-mobi { display: none; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(8,8,10,0.7) 100%),
    linear-gradient(180deg, rgba(8,8,10,0.4) 0%, rgba(8,8,10,0.85) 80%, var(--bg-primary) 100%);
}
/* Gold shimmer sweep across hero */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(105deg,
    transparent 30%, rgba(201,131,68,0.10) 45%, rgba(201,131,68,0.16) 50%, rgba(201,131,68,0.10) 55%, transparent 70%);
  background-size: 200% 100%;
  animation: goldShimmer 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes goldShimmer {
  0%, 100% { background-position: 200% 0; opacity: 0; }
  25% { opacity: 1; }
  50% { background-position: -200% 0; opacity: 0.6; }
  75% { opacity: 1; }
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 0 24px;
}
.hero-badge {
  display: inline-block; padding: 6px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-size: 13px; letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.03);
}
.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800; line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-title .gold, .section-title .gold {
  color: var(--accent);
  text-shadow: var(--gold-text-shadow);
}
.hero-sub {
  font-size: 18px; color: var(--text-secondary);
  font-weight: 400; letter-spacing: 4px; margin-bottom: 40px;
  font-family: var(--font-en);
}
.hero-cta-group {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
  border: none; font-family: var(--font);
  min-height: 44px;
}
.btn-primary {
  background: var(--accent); color: #000;
  box-shadow: 0 8px 32px rgba(201,131,68,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,131,68,0.50);
}
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); }

/* Hero buttons — slightly larger text */
.hero-cta-group .btn { font-size: 17px; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; z-index: 2;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 12px; letter-spacing: 1px;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(201,131,68,0.50), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   Section Shared
   ============================================================ */
.section {
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 48px);
  padding-left: max(clamp(16px, 5vw, 48px), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(16px, 5vw, 48px), env(safe-area-inset-right, 0px));
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
/* Gold gradient separators between sections */
.section::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), var(--accent-copper-dim), var(--accent-dim), transparent);
  opacity: 0.5;
}
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px; color: var(--text-secondary); line-height: 1.8;
  max-width: 640px;
}
.section-header { margin-bottom: 64px; }

/* ============================================================
   City Gateway — 城市门户
   ============================================================ */
.gateway-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.gateway-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.gateway-visual img {
  width: 100%; height: auto; min-height: 280px; max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.gateway-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,8,10,0.4), transparent 50%);
  border-radius: var(--radius-lg);
}
.gateway-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all var(--transition);
}
.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-dim);
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: translateY(-2px);
}
.stat-value {
  font-size: 28px; font-weight: 800; color: var(--accent);
  line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 14px; color: var(--text-muted);
}

/* ============================================================
   Features Grid — 产业 / 交通 / 配套
   ============================================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-dim);
  box-shadow: 0 8px 32px var(--accent-glow), inset 0 1px 0 var(--accent-dim);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--accent-glow);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px; margin-right: 12px; vertical-align: middle;
}
.feature-card h3 {
  display: inline-flex; align-items: center;
  font-size: 22px; font-weight: 700; line-height: 1;
  letter-spacing: -0.3px; margin: 0;
}
.feature-card p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
}
.feature-card .tag-group {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.tag {
  padding: 4px 12px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 500;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

/* ============================================================
   Transport — 交通枢纽
   ============================================================ */
.transport-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.transport-main {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
  display: flex; flex-direction: column; gap: 32px;
}
.transport-item { display: flex; gap: 20px; align-items: flex-start; }
.transport-num {
  font-size: 40px; font-weight: 800; color: var(--accent);
  line-height: 1; min-width: 80px;
}
.transport-num small {
  display: block; font-size: 14px; font-weight: 500;
  color: var(--text-muted); margin-top: 4px;
}
.transport-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.transport-item p { font-size: 14px; color: var(--text-muted); }
.transport-highlights {
  display: flex; flex-direction: column; gap: 16px;
}
.highlight-row {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all var(--transition);
}
.highlight-row:hover { border-color: var(--accent-dim); }
.highlight-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-copper); flex-shrink: 0;
  box-shadow: 0 0 10px var(--accent-copper-glow);
}
.highlight-row span { font-size: 15px; font-weight: 600; }
.highlight-row small { color: var(--text-muted); font-size: 13px; }

/* ============================================================
   Building — 首排封面
   ============================================================ */
.building-showcase {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: center;
}
.building-image {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative;
}
.building-image img {
  width: 100%; height: auto; min-height: 320px; max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.building-image::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 120px rgba(8,8,10,0.5);
  border-radius: var(--radius-lg);
}
.building-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.spec-item {
  padding: 16px; border-bottom: 1px solid var(--border);
}
.spec-num { font-size: 24px; font-weight: 700; color: var(--accent); }
.spec-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   Quote / CTA Banner
   ============================================================ */
.cta-banner {
  margin: 80px auto; max-width: var(--max-width);
  background: linear-gradient(135deg, rgba(201,131,68,0.12), rgba(201,131,68,0.04));
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-lg);
  padding: 72px 64px; text-align: center;
  position: relative; overflow: hidden;
}
/* Semi-transparent overlay when background image is set */
.cta-banner-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: rgba(8, 8, 10, 0.65);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
/* Content sits above the overlay */
.cta-banner-content {
  position: relative; z-index: 1;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
  animation: ctaGlowPulse 4s ease-in-out infinite;
  z-index: 0;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -30%; left: -15%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-copper-glow), transparent 70%);
  pointer-events: none;
  animation: ctaGlowPulse 4s ease-in-out 2s infinite;
  z-index: 0;
}
@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.cta-banner-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.cta-banner-content p { font-size: 17px; color: var(--text-secondary); margin-bottom: 36px; }
.cta-banner-content .btn { }

/* ============================================================
   Quality Office — 品质商务
   ============================================================ */
.quality-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.quality-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  text-align: center; transition: all var(--transition); display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.quality-card:hover {
  background: var(--bg-card-hover); border-color: var(--accent-dim);
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: translateY(-3px);
}
.quality-icon { font-size: 28px; margin-bottom: 12px; }
.quality-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.quality-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   Leasing — 招商信息
   ============================================================ */
.leasing-grid {
  display: flex; flex-direction: column; gap: 32px;
}
.leasing-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.leasing-card.featured {
  border-color: var(--accent-dim);
  background: linear-gradient(135deg, rgba(201,131,68,0.09), transparent);
}
/* Leasing card — text 1/4 | 3 images 1/4 each */
.leasing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 24px;
}
.leasing-card-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 16px;
  align-items: stretch;
}
.leasing-card-body-text {
  min-width: 0; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.leasing-card-body-text h3 { font-size: 18px; font-weight: 700; margin: 0; }
.leasing-card-body-text .area { font-size: 26px; font-weight: 800; color: var(--accent); margin: 0; }
.leasing-card-body-text .area small { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.leasing-card-body-text p { font-size: 13px; margin: 0; }
.leasing-card-body-text ul {
  list-style: none; margin: 0; display: flex; flex-direction: column; gap: 3px;
}
.leasing-card-body-text ul li {
  font-size: 12px; color: var(--text-secondary);
  padding-left: 16px; position: relative;
}
.leasing-card-body-text ul li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-dim);
}
/* 3 thumbnails: nested grid inside the 3fr column, each 1/3 */
.leasing-card-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.leasing-card-thumb {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-secondary);
}
.leasing-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.leasing-card-thumb.empty {
  background: var(--bg-secondary);
  border: 1px dashed var(--border);
}

/* ---- Carousel ---- */
.leasing-carousel-wrap {
  width: 100%; overflow: hidden; border-radius: var(--radius);
}
.leasing-carousel {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3; border-radius: var(--radius);
  background: var(--bg-card-hover);
}
.leasing-carousel-placeholder {
  aspect-ratio: 4 / 3; border-radius: var(--radius);
  background: var(--bg-card-hover);
}
.leasing-carousel-track {
  position: relative; width: 100%; height: 100%;
}
.leasing-carousel-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.leasing-carousel-slide.active {
  opacity: 1; pointer-events: auto;
}
.leasing-carousel-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Dots */
.leasing-carousel-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.leasing-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.4); cursor: pointer; padding: 0;
  transition: background 0.3s;
}
.leasing-carousel-dot.active { background: #fff; }

/* Arrows */
.leasing-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: #fff; border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 20px; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.leasing-carousel:hover .leasing-carousel-arrow { opacity: 1; }
.leasing-carousel-arrow.prev { left: 8px; }
.leasing-carousel-arrow.next { right: 8px; }


/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 48px calc(32px + env(safe-area-inset-bottom, 0px));
  padding-left: max(48px, env(safe-area-inset-left, 0px));
  padding-right: max(48px, env(safe-area-inset-right, 0px));
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.footer h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  color: var(--text-secondary); margin-bottom: 20px;
  text-transform: uppercase;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul li a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer ul li a:hover { color: #fff; }
.footer-contact p {
  font-size: 14px; color: var(--text-muted); line-height: 1.8;
}
.footer-contact strong { color: var(--text-secondary); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-muted);
}

/* ============================================================
   Booking Modal
   ============================================================ */
.booking-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.booking-modal-overlay.active {
  opacity: 1; visibility: visible;
}
.booking-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 420px; width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition);
}
.booking-modal-overlay.active .booking-modal {
  transform: translateY(0);
}
.booking-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.booking-modal-close:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-hover);
  color: #fff;
}
.booking-modal .contact-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 16px;
  border: 2px solid var(--accent-dim);
  background: var(--bg-card-hover);
}
.booking-modal .contact-name {
  font-size: 22px; font-weight: 700; margin-bottom: 4px;
}
.booking-modal .contact-title {
  font-size: 14px; color: var(--accent); margin-bottom: 24px;
}
.booking-modal .contact-info {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 24px;
}
.booking-modal .contact-info-item {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px;
  min-height: 44px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px; color: var(--text-secondary);
  cursor: pointer; transition: all var(--transition);
}
.booking-modal .contact-info-item:hover {
  border-color: var(--accent-dim);
  color: #fff;
}
.booking-modal .contact-info-item .info-icon {
  font-size: 18px;
}
.booking-modal .wechat-qr {
  width: 160px; height: 160px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  background: #fff;
  padding: 8px;
}

/* ============================================================
   My Needs Modal — 我的需求 多步骤弹窗
   ============================================================ */
.my-needs-modal {
  max-width: 480px; width: 92%;
  padding: 40px 32px;
}
.my-needs-back {
  position: absolute; top: 16px; left: 16px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px; cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}
.my-needs-back:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-hover);
  color: #fff;
}
.my-needs-title {
  font-size: 24px; font-weight: 700; margin-bottom: 6px;
}
.my-needs-subtitle {
  font-size: 14px; color: var(--text-muted); margin-bottom: 28px;
  line-height: 1.6;
}
.my-needs-form-group {
  margin-bottom: 20px; text-align: left;
}
.my-needs-form-group label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 8px;
}
.my-needs-form-group .input-wrapper {
  position: relative; display: flex; align-items: center;
}
.my-needs-form-group input {
  width: 100%; padding: 14px 60px 14px 16px;
  min-height: 52px;
  font-size: 18px; font-weight: 600;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font);
  outline: none; transition: border var(--transition);
  -webkit-appearance: none;
}
.my-needs-form-group input:focus {
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.my-needs-form-group input::placeholder {
  color: var(--text-muted);
  opacity: 0.55;
}
.my-needs-form-group .input-suffix {
  position: absolute; right: 16px;
  font-size: 15px; color: var(--text-muted);
  pointer-events: none;
}
.my-needs-reference {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 24px;
  font-size: 13px; color: var(--text-muted); line-height: 1.6;
}
.my-needs-reference strong { color: var(--accent); }
.my-needs-btn {
  width: 100%; padding: 14px 0; min-height: 52px;
  border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 600; cursor: pointer;
  border: none; font-family: var(--font);
  background: var(--accent); color: #000;
  transition: all var(--transition);
}
.my-needs-btn:hover { opacity: 0.92; transform: translateY(-1px); }
.my-needs-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.my-needs-loading {
  text-align: center; padding: 40px 0;
}
.my-needs-loading .spinner {
  width: 40px; height: 40px; margin: 0 auto 16px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Match result cards */
.my-needs-results { margin-bottom: 24px; }
.my-needs-result-title {
  font-size: 18px; font-weight: 700; margin-bottom: 16px;
}
.my-needs-match-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 12px;
  text-align: left;
  transition: all var(--transition);
  cursor: default;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.my-needs-match-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.my-needs-match-card.featured-match {
  border-color: var(--accent-dim);
  background: linear-gradient(135deg, rgba(201,131,68,0.07), transparent);
}
/* Text block: 1/4 width */
.my-needs-match-text {
  min-width: 0;
}
.my-needs-match-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
  flex-wrap: wrap; gap: 4px;
}
.my-needs-match-header .match-name {
  font-size: 16px; font-weight: 700;
}
.my-needs-match-header .match-badge {
  font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: var(--radius-sm);
  background: var(--accent-glow); color: var(--accent);
  white-space: nowrap;
}
.my-needs-match-stats {
  display: flex; flex-direction: column; gap: 4px; margin: 8px 0;
  font-size: 14px; color: var(--text-secondary);
}
.my-needs-match-stats span { white-space: nowrap; }
.my-needs-match-reason {
  font-size: 13px; color: var(--text-muted);
  margin-top: 8px; line-height: 1.5;
}
.my-needs-match-reason .reason-icon { margin-right: 4px; }
/* Image thumbnails: 3 columns × 1/4 each */
.my-needs-match-images {
  display: contents;
}
.match-thumb {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
}
.match-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.match-thumb.empty {
  background: var(--bg-card);
  border: 1px dashed var(--border);
}
.my-needs-params {
  font-size: 13px; color: var(--text-muted);
  text-align: center; padding: 8px 0;
}
.my-needs-params span { color: var(--accent); }

/* Contact reveal section */
.my-needs-contact-section {
  text-align: center; padding: 8px 0;
}
.my-needs-contact-divider {
  text-align: center; margin: 20px 0 16px;
  font-size: 13px; color: var(--text-muted);
  position: relative;
}
.my-needs-contact-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--border);
}
.my-needs-contact-divider span {
  position: relative; background: var(--bg-card);
  padding: 0 16px; z-index: 1;
}


@media (max-width: 1024px) {
  /* Grid collapses */
  .gateway-grid, .building-showcase, .transport-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .leasing-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .leasing-card { padding: 28px 24px; }
  .leasing-card-row { grid-template-columns: 1fr; }
  .leasing-card-images { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .building-specs { grid-template-columns: 1fr 1fr; }

  /* Nav: show hamburger, hide desktop links */
  .nav { padding: 0 max(24px, env(safe-area-inset-left, 0px)) 0 max(24px, env(safe-area-inset-right, 0px)); }
  .nav-links { display: none; }
  .nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 10px; width: 44px; height: 44px;
    align-items: center; justify-content: center;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: all 0.3s ease;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero-title { font-size: clamp(36px, 8vw, 56px); }
  .hero-sub { font-size: clamp(14px, 2.5vw, 18px); letter-spacing: 2px; }

  /* Sections */
  .section { padding: clamp(48px, 6vw, 80px) max(24px, env(safe-area-inset-right, 0px)) clamp(48px, 6vw, 80px) max(24px, env(safe-area-inset-left, 0px)); }
  .section-header { margin-bottom: 40px; }

  /* Cards */
  .feature-card { padding: 28px 24px; }
  .quality-card { padding: 24px 18px; }
  .leasing-card { padding: 28px 24px; }
  .stat-card { padding: 18px; }
  .transport-main { padding: 28px 24px; }

}

