/* ============================
   爱聚派 官网 — 暖色亮色系（途家/携程风格）
   ============================ */
:root {
  --bg: #F7F8FC;
  --bg-alt: #FFFFFF;
  --card: #FFFFFF;
  --card-hover: #FFF8F5;
  --card-border: #E8ECF1;
  --orange: #FF6B35;
  --orange-light: #FF8C5A;
  --orange-glow: rgba(255, 107, 53, 0.12);
  --orange-bg: #FFF5F0;
  --blue: #2B6CB0;
  --blue-light: #4299E1;
  --amber: #ED8936;
  --amber-light: #F6AD55;
  --text: #1A202C;
  --text-secondary: #4A5568;
  --text-muted: #A0AEC0;
  --white: #FFFFFF;
  --danger: #E53E3E;
  --success: #38A169;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
  --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-secondary);
  line-height: 1.7;
  min-height: 100vh;
}
@media (min-width: 769px) {
  body.properties-route {
    overflow: hidden;
  }
  body.properties-route .main-content {
    height: 100vh;
    overflow: hidden;
  }
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-light); }
img { max-width: 100%; height: auto; display: block; }

/* ============================
   Navigation (白色导航,类似携程)
   ============================ */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  height: 76px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
}
.nav-logo .logo-img {
  width: 96px;
  height: 64px;
  object-fit: contain;
}
.nav-logo .logo-img-full {
  width: 118px;
  height: 66px;
}
.nav-logo .logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  font-weight: 800;
}
.nav-logo .logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 1px;
}
.nav-logo .logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: var(--orange-bg);
}
.nav-links .nav-cta {
  background: var(--orange);
  color: #fff;
  margin-left: 8px;
  padding: 8px 20px;
}
.nav-links .nav-cta:hover {
  background: var(--orange-light);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* ============================
   Main Content
   ============================ */
.main-content {
  padding-top: 76px;
  min-height: calc(100vh - 76px);
}
.page {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}
.page.active { display: block; }
.page-wide { max-width: 1280px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: #FFF2EA;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ============================
   Hero Section (暖色渐变)
   ============================ */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DC 40%, #FFE0CC 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin: 0 -20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  margin: 16px auto 32px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-family: var(--font);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--card-border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--amber);
  color: #fff;
}
.btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}

/* Stats bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--card-border);
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================
   Section Titles
   ============================ */
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 48px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title .tag {
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 20px;
  background: var(--orange-glow);
  color: var(--orange);
}
.section-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: -12px;
  margin-bottom: 24px;
}

/* ============================
   City Grid (暖色渐变卡片)
   ============================ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.city-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  overflow: hidden;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.city-card .city-img-placeholder {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}
.city-card .city-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  padding: 10px 12px 2px;
}
.city-card .city-count {
  font-size: 12px;
  color: var(--text-muted);
  padding: 0 12px 4px;
}
.city-card .city-sub {
  font-size: 11px;
  color: var(--text-muted);
  padding: 0 12px 12px;
}

/* ============================
   Property Cards (白色卡片+阴影)
   ============================ */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.property-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.prop-img {
  width: 100%;
  height: 220px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #EEF3F5;
}
/* 渐变占位图 */
.prop-img-gradient {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.prop-img-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.3));
  pointer-events: none;
}
.prop-img-city {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.prop-img-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.prop-img-scene {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.prop-info {
  padding: 16px;
}
.prop-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.prop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.prop-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--orange-bg);
  color: var(--orange);
}
.prop-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.prop-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.prop-city { color: var(--text-muted); }
.prop-price {
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
}
.prop-price small {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ============================
   Property Detail
   ============================ */
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 12px;
}
.detail-back:hover { color: var(--orange); }

.detail-hero {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
  background: var(--bg);
}
.detail-hero-gradient {
  width: 100%;
  height: 350px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.detail-hero-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.3));
  pointer-events: none;
}
.detail-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.detail-city {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.detail-city span { color: var(--orange); }

.detail-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.detail-feat {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.detail-feat .feat-icon { font-size: 22px; }
.detail-feat .feat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.detail-feat .feat-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.detail-hl {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--orange-bg);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
}

.detail-price-table { margin: 24px 0; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.price-row .price-day { font-size: 14px; color: var(--text-secondary); }
.price-row .price-amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
}
.price-row .price-amount small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.detail-desc {
  margin: 24px 0;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  line-height: 1.8;
  font-size: 14px;
  color: var(--text-secondary);
  white-space: pre-wrap;
}

.detail-cta {
  text-align: center;
  margin: 32px 0;
}
.detail-cta p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}
.detail-gallery img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #EEF3F5;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: 0.2s;
}
.detail-gallery img:hover { opacity: 0.85; }

/* ============================
   Guides
   ============================ */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.guide-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.guide-cover {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--bg);
}
.guide-cover-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #FFE8DC, #D7F2EB);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--orange);
  font-weight: 800;
}
.guide-info { padding: 16px; }
.guide-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.guide-summary { font-size: 13px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.guide-meta { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.guide-tags,
.guide-detail-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.guide-tags span,
.guide-detail-tags span {
  background: #FFF2EA;
  color: var(--orange);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
}
.guide-detail-tags {
  margin-top: 0;
  margin-bottom: 16px;
}

.guide-detail {
  max-width: 900px;
  margin: 0 auto;
}
.guide-detail-hero {
  margin-bottom: 18px;
}
.guide-hero-image {
  width: 100%;
  height: min(460px, 52vw);
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.guide-content {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
}
.guide-section {
  margin-bottom: 30px;
}
.guide-section h2 {
  font-size: 22px;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 12px;
}
.guide-section p {
  margin: 0 0 12px;
}
.guide-inline-image {
  margin: 18px 0 0;
}
.guide-inline-image img {
  width: 100%;
  height: min(360px, 48vw);
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}
.guide-inline-image figcaption {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 8px;
}
.guide-cta {
  background: var(--orange-bg);
  border: 1px solid #FFD6C0;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.guide-cta h2 {
  color: var(--text);
  font-size: 20px;
  margin-bottom: 8px;
}
.guide-cta p {
  margin-bottom: 18px;
}

/* ============================
   About Page
   ============================ */
.about-section { padding: 40px 0; }
.about-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  margin-top: 32px;
}
.about-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.timeline {
  margin: 32px 0;
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--card-border);
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--card);
}
.timeline-year {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}
.timeline-text { font-size: 14px; color: var(--text-secondary); }

/* ============================
   Partner Page
   ============================ */
.partner-levels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin: 24px 0;
}
.partner-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
  overflow: hidden;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.partner-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--orange-bg), var(--card));
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
}
.partner-card-img {
  width: calc(100% + 40px);
  height: 176px;
  margin: 0 -20px 20px;
  object-fit: cover;
  background: var(--bg);
}
.partner-level-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.partner-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  margin: 12px 0;
}
.partner-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}
.partner-features {
  list-style: none;
  margin: 16px 0;
  text-align: left;
}
.partner-features li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

/* ============================
   Contact / CTA Section
   ============================ */
.contact-section {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}
.contact-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-section p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.contact-methods {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-method { text-align: center; }
.contact-method .cm-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 8px;
}
.contact-method .cm-label {
  font-size: 12px;
  color: var(--text-muted);
}
.contact-method .cm-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

/* ============================
   Loading & Empty
   ============================ */
.loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.loading .spinner {
  display: inline-block;
  width: 32px; height: 32px;
  border: 3px solid var(--card-border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state .empty-text { font-size: 15px; }

/* ============================
   Footer (深色底部)
   ============================ */
.footer {
  text-align: center;
  padding: 32px 20px;
  background: #2D3748;
  margin-top: 40px;
}
.footer p {
  font-size: 12px;
  color: #A0AEC0;
}
.footer a { color: var(--orange-light); }

/* ============================
   V2 OTA-style Homepage
   ============================ */
.hero-ota {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  text-align: left;
  padding: 70px 48px;
  min-height: 610px;
  background: #FFF7F1;
  align-items: center;
}
.hero-carousel,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-carousel { z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 18s infinite;
  transform: scale(1.02);
}
.hero-slide-1 { animation-delay: 0s; }
.hero-slide-2 { animation-delay: 6s; }
.hero-slide-3 { animation-delay: 12s; }
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.58) 48%, rgba(255,255,255,0.16) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,248,242,0.28));
}
.hero-copy,
.hero-panel {
  position: relative;
  z-index: 2;
}
@keyframes heroFade {
  0%, 28% { opacity: 1; }
  34%, 94% { opacity: 0; }
  100% { opacity: 1; }
}
.hero-ota h1 {
  max-width: 720px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: 0;
}
.hero-ota p { margin-left: 0; max-width: 680px; }
.hero-slide-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.hero-slide-notes span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
}
.hero-panel {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(43, 48, 59, 0.12);
  padding: 24px;
}
.search-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}
.search-grid {
  display: grid;
  gap: 12px;
}
.search-grid label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}
.search-grid span { color: var(--text-muted); font-weight: 600; }
.search-grid select,
.filter-select,
.form-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
}
.filter-select {
  margin-top: 8px;
}
.search-submit { width: 100%; justify-content: center; margin-top: 16px; }
.search-note { font-size: 12px; color: var(--text-muted); margin-top: 10px; text-align: center; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0 42px;
}
.trust-strip div {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 18px 16px;
}
.trust-strip strong {
  display: block;
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-strip span { display: block; font-size: 13px; color: var(--text-muted); line-height: 1.45; }

.section-block { margin: 44px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: 26px;
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 6px;
}
.section-head p { color: var(--text-muted); font-size: 14px; margin: 0; }
.section-head a {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.scene-grid,
.scene-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.scene-card,
.scene-detail-card,
.destination-card,
.detail-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 20px;
}
.scene-card {
  cursor: pointer;
  transition: all 0.22s;
  min-height: 190px;
}
.scene-card:hover,
.destination-card:hover,
.property-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.scene-card h3,
.scene-detail-card h2,
.detail-card h2 {
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}
.scene-card p,
.scene-detail-card p,
.detail-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.scene-card div,
.amenity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.scene-card span,
.amenity-grid span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #F2F6FA;
  color: var(--text-secondary);
  font-size: 12px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.destination-card {
  cursor: pointer;
  border-top: 4px solid var(--city-accent);
}
.destination-card strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  margin-bottom: 6px;
}
.destination-card span,
.destination-card em {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-style: normal;
}
.destination-card em { margin-top: 10px; color: var(--orange); font-weight: 700; }

.split-band,
.partner-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 32px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 34px;
  margin: 44px 0;
}
.split-band h2,
.partner-band h2 {
  color: var(--text);
  font-size: 26px;
  line-height: 1.35;
  margin-bottom: 12px;
}
.split-band p,
.partner-band p { font-size: 15px; color: var(--text-secondary); margin-bottom: 18px; }
.support-list {
  display: grid;
  gap: 12px;
}
.support-list div {
  background: #F8FAFC;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 14px;
}
.support-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}
.support-list span {
  color: var(--text-muted);
  font-size: 13px;
}
.partner-band {
  grid-template-columns: minmax(0, 1fr) auto;
  background: linear-gradient(135deg, #273142, #3D4B5F);
}
.partner-band h2,
.partner-band p { color: #fff; }
.partner-band p { opacity: 0.78; }

/* ============================
   Listing and Detail V2
   ============================ */
.listing-hero {
  padding: 28px 0 18px;
  max-width: 860px;
  flex: 0 0 auto;
}
.listing-hero h1 {
  color: var(--text);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.24;
  margin-bottom: 12px;
}
.listing-hero p { color: var(--text-secondary); font-size: 16px; }
.listing-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  flex: 1 1 0%;
  min-height: 0;
  overflow: hidden;
}
.properties-page {
  max-width: none;
  height: calc(100vh - 76px);
  padding: 0 18px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.page.active.properties-page {
  display: flex;
}
.filter-panel {
  position: static;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 18px;
}
.listing-results {
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 2px;
  display: flex;
  flex-direction: column;
}
#propsList {
  min-height: 0;
}
.filter-panel,
.listing-results {
  scrollbar-width: thin;
}
.filter-group + .filter-group {
  border-top: 1px solid var(--card-border);
  margin-top: 18px;
  padding-top: 18px;
}
.filter-group h3 {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 10px;
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip,
.filter-reset {
  border: 1px solid var(--card-border);
  background: #fff;
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font);
}
.chip.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.list-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 700;
  flex: 0 0 auto;
}
.filter-reset { border-radius: 8px; }
.property-grid-list {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  align-content: start;
}
.prop-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 6px;
}
.prop-meta strong { color: var(--orange); font-size: 15px; }
.visual-label,
.visual-title {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.visual-label {
  font-size: 13px;
  opacity: 0.78;
  margin-bottom: 6px;
}
.visual-title {
  font-size: 21px;
  font-weight: 800;
  padding: 0 18px;
}

.detail-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}
.photo-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 8px;
  margin-bottom: 24px;
}
.photo-mosaic img,
.photo-mosaic .prop-img-gradient {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.photo-mosaic .main-photo {
  grid-row: span 2;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.fact-grid div {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 16px;
}
.fact-grid strong {
  display: block;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}
.fact-grid span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 8px;
}
.detail-card {
  margin-bottom: 16px;
}
.detail-card h2 {
  font-size: 20px;
}
.step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.step-row span {
  background: #F8FAFC;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}
.booking-card {
  position: sticky;
  top: 80px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.price-large {
  color: var(--orange);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}
.booking-card p,
.mini-note {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.booking-card .btn { width: 100%; justify-content: center; }
.mini-note { text-align: center; margin: 12px 0 0; }

.scene-detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.scene-detail-card .btn { margin-top: 18px; }
.process-grid,
.verify-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 16px 0 28px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.showcase-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
}
.showcase-card img,
.showcase-card .prop-img-gradient {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 0;
}
.showcase-card div:last-child { padding: 16px; }
.showcase-card h3 {
  color: var(--text);
  font-size: 17px;
  margin-bottom: 8px;
}
.showcase-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}
.process-grid div {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 18px;
}
.process-grid strong {
  display: block;
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}
.process-grid span {
  color: var(--text);
  font-weight: 700;
}
.compliance-card { border-color: #F4C7A8; background: #FFF8F2; }
.verify-grid { grid-template-columns: repeat(2, 1fr); }
.verify-grid .btn { margin-top: 12px; }
.verify-ok { border-color: var(--success); background: #F0FFF4; }
.verify-fail { border-color: var(--danger); background: #FFF5F5; }

/* ============================
   Filter Bar
   ============================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ============================
   Featured Venues / Yachts
   ============================ */
.venue-home {
  background: #EEF8FA;
  border: 1px solid #D9EDF0;
  border-radius: 14px;
  padding: 28px;
}
.venue-hero {
  min-height: 390px;
  margin: 0 -20px 30px;
  padding: 58px 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 45, 61, 0.9), rgba(8, 45, 61, 0.24)),
    url("../assets/yachts/2247503862/02.jpg") center 48% / cover;
}
.venue-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
  margin-bottom: 16px;
}
.venue-hero p {
  max-width: 680px;
  color: rgba(255,255,255,0.86);
  margin-bottom: 24px;
}
.venue-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  border-radius: 8px;
  overflow: hidden;
}
.venue-hero-facts div { padding: 18px 12px; border-right: 1px solid var(--card-border); }
.venue-hero-facts div:last-child { border-right: 0; }
.venue-hero-facts strong, .venue-hero-facts span { display: block; }
.venue-hero-facts strong { font-size: 20px; color: #117184; }
.venue-hero-facts span { font-size: 11px; color: var(--text-muted); }
.venue-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}
.venue-toolbar strong, .venue-toolbar span { display: block; }
.venue-toolbar span { color: var(--text-muted); font-size: 13px; }
.venue-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.yacht-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.yacht-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.yacht-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.yacht-photo { height: 230px; position: relative; overflow: hidden; background: #DCE9EC; }
.yacht-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.yacht-card:hover .yacht-photo img { transform: scale(1.025); }
.yacht-photo > span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(8,45,61,.88);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.yacht-info { padding: 16px; }
.yacht-info h3 { color: var(--text); font-size: 20px; margin: 5px 0; }
.yacht-info p { color: var(--text-muted); font-size: 12px; min-height: 40px; }
.yacht-card-top, .yacht-card-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.yacht-card-top strong, .yacht-card-foot strong { color: #117184; }
.yacht-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.yacht-tags span { background: #EEF8FA; color: #117184; border-radius: 6px; padding: 4px 7px; font-size: 11px; }
.yacht-card-foot { border-top: 1px solid var(--card-border); padding-top: 12px; }
.venue-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 38px 0 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--card-border);
}
.venue-process div { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.venue-process strong {
  width: 30px; height: 30px; flex: 0 0 30px;
  display: grid; place-items: center;
  border-radius: 50%; background: #117184; color: #fff;
}
.yacht-gallery-main { height: min(62vw, 620px); }
.source-link { display: block; margin-top: 14px; text-align: center; font-size: 12px; color: var(--text-muted); }
.gallery-viewport {
  position: relative;
  width: 100%;
  height: min(56vw, 560px);
  overflow: hidden;
  border-radius: 8px;
  background: #EEF3F5;
}
.detail-gallery { display: block; }
.detail-gallery .gallery-viewport > img { width: 100%; height: 100%; object-fit: contain; }
.gallery-btn {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.9);
  color: var(--text);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.gallery-btn-left { left: 14px; }
.gallery-btn-right { right: 14px; }
.gallery-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(8,45,61,.82);
  color: #fff;
  font-size: 12px;
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 1px 16px;
}
.gallery-thumb {
  width: 96px;
  height: 66px;
  flex: 0 0 96px;
  object-fit: contain;
  background: #EEF3F5;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  opacity: .68;
}
.gallery-thumb.active { border-color: #117184; opacity: 1; }

/* ============================
   Responsive
   ============================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 4px; }
  .nav-toggle { display: block; }
  .nav-logo .logo-img-full {
    width: 96px;
    height: 58px;
  }

  .hero { padding: 50px 16px 40px; }
  .stats-bar { gap: 20px; }
  .stat-num { font-size: 20px; }

  .property-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .partner-levels { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }

  .detail-features { grid-template-columns: repeat(2, 1fr); }
  .detail-gallery { grid-template-columns: repeat(2, 1fr); }
  .detail-gallery img { height: 100px; }
  .contact-section { padding: 24px 16px; }

  .hero-ota {
    grid-template-columns: 1fr;
    padding: 44px 18px;
    gap: 22px;
  }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .section-head { align-items: start; flex-direction: column; gap: 8px; }
  .scene-grid { grid-template-columns: 1fr; }
  .split-band,
  .partner-band {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }
  .listing-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .properties-page {
    height: auto;
    min-height: calc(100vh - 76px);
    padding: 0 14px 48px;
    overflow: visible;
    display: block;
  }
  .page.active.properties-page {
    display: block;
  }
  .filter-panel,
  .booking-card {
    position: static;
  }
  .filter-panel,
  .listing-results {
    height: auto;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    padding-right: 0;
  }
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 120px 120px;
  }
  .photo-mosaic .main-photo {
    grid-column: span 2;
    grid-row: span 1;
  }
  .fact-grid,
  .process-grid,
  .step-row,
  .verify-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-top {
    align-items: start;
    flex-direction: column;
  }
  .venue-home { padding: 20px 14px; }
  .venue-hero {
    min-height: 520px;
    grid-template-columns: 1fr;
    margin: 0 -12px 24px;
    padding: 38px 20px 24px;
  }
  .venue-hero-facts { grid-template-columns: repeat(3, 1fr); }
  .venue-toolbar { align-items: flex-start; flex-direction: column; }
  .yacht-grid { grid-template-columns: 1fr; }
  .yacht-grid-home .yacht-card:nth-child(n+3) { display: none; }
  .venue-process { grid-template-columns: 1fr 1fr; padding: 16px; }
  .yacht-gallery-main { height: 340px; }
  .detail-gallery .gallery-viewport > img { height: 100%; }
}

@media (max-width: 480px) {
  .page { padding: 0 12px 40px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip,
  .fact-grid,
  .process-grid,
  .step-row,
  .verify-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel { padding: 18px; }
  .photo-mosaic {
    display: block;
  }
  .photo-mosaic img,
  .photo-mosaic .prop-img-gradient {
    height: 220px;
    margin-bottom: 8px;
  }
  .venue-hero-facts { grid-template-columns: 1fr; }
  .venue-hero-facts div { border-right: 0; border-bottom: 1px solid var(--card-border); }
  .venue-process { grid-template-columns: 1fr; }
}
