/* ============================================================
   金樽音乐汇KTV - 深色高级感设计系统
   针对百度SEO优化 | 响应式布局
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --gold: #a6b65b;
  --gold-light: #b8c87a;
  --gold-dark: #8a9a45;
  --gold-gradient: linear-gradient(135deg, #b8c87a, #8a9a45);
  --gold-glow: rgba(166, 182, 91, 0.15);
  --text-primary: #f5f5f5;
  --text-secondary: #c8c8c8;
  --text-muted: #909090;
  --border-gold: rgba(166, 182, 91, 0.2);
  --border-subtle: rgba(255,255,255,0.06);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(166,182,91,0.08);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.3; color: var(--text-primary); }
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.section-title h2 {
  display: inline-block;
  padding-bottom: 16px;
  letter-spacing: 2px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}
.section-title p {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-phone {
  display: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  margin-left: auto;
  margin-right: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.logo:hover .logo-icon {
  transform: scale(1.08);
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  white-space: nowrap;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  display: block;
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}
.main-nav a {
  display: block;
  padding: 8px 16px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: var(--gold-glow);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.nav-phone a {
  color: var(--gold) !important;
  font-weight: 600;
  background: rgba(200,169,110,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.88rem;
  white-space: nowrap;
}
.nav-phone a:hover {
  background: rgba(200,169,110,0.2);
  color: var(--gold-light) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Banner ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-height) 24px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(200,169,110,0.15);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 4px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-gradient);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(200,169,110,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.35);
  color: #0a0a0a;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition);
}
.card:hover .card-img { transform: scale(1.05); }
.card-img-wrap { overflow: hidden; }
.card-body { padding: 20px; }

/* ---------- Grid Layouts ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---------- Room Gallery ---------- */
.room-card .card-body h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.room-card .card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.room-card .room-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.room-card .room-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- Features Strip ---------- */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}
.feature-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--bg-card-hover); }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--gold);
}
.feature-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---------- Info Section ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.info-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
}
.info-block h3 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.15rem;
  letter-spacing: 1px;
}
.info-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}
.info-list li:last-child { border-bottom: none; }
.info-list .label {
  color: var(--text-muted);
  min-width: 70px;
  flex-shrink: 0;
}

/* ---------- News / Articles ---------- */
.article-card { display: flex; gap: 20px; align-items: flex-start; }
.article-card .thumb {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.article-card .article-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.article-card .article-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-gold); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px;
}
.contact-info-card h3 {
  color: var(--gold);
  margin-bottom: 24px;
  font-size: 1.2rem;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-item h4 {
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.contact-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.qr-wrap {
  text-align: center;
  padding: 20px;
}
.qr-wrap img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 12px;
  border-radius: var(--radius-sm);
}
.qr-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Breadcrumb (SEO) ---------- */
.breadcrumb {
  padding: 20px 0 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--nav-height);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--nav-height) + 40px) 0 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(200,169,110,0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero h1 {
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Job Card ---------- */
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}
.job-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}
.job-card h3 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.job-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--gold);
  margin-right: 8px;
  margin-bottom: 8px;
}
.job-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
}

/* ---------- About Timeline ---------- */
.timeline-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.timeline-year {
  flex-shrink: 0;
  width: 80px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.timeline-content h4 {
  margin-bottom: 8px;
}
.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 35px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  justify-items: center;
  text-align: center;
  margin-bottom: 24px;
}
.footer-brand .logo-text { margin-bottom: 16px; display: block; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 12px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom span { white-space: nowrap; }
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
  text-align: center;
  margin-bottom: 24px;
}
.footer-navs {
  display: contents;
  gap: 40px;
  text-align: center;
}

/* ---------- Scroll-to-top ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  color: var(--gold);
  font-size: 1.1rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
  background: var(--gold-glow);
  transform: translateY(-3px);
}

/* ---------- Floating Phone Button ---------- */
.float-phone {
  position: fixed;
  bottom: 86px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  font-size: 1.2rem;
  color: #0a0a0a;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(200,169,110,0.4);
}
.float-phone:hover { transform: scale(1.1); box-shadow: 0 4px 20px rgba(200,169,110,0.6); }

@media(min-width:769px) { .float-phone { display: none; } }

@media(max-width:768px) {
  .float-phone { right: 18px; bottom: 80px; width: 48px; height: 48px; font-size: 1.3rem; }
}
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 400px;
  background: var(--bg-card);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.6) brightness(0.8);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, rgba(200,169,110,0.08), rgba(200,169,110,0.03));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.lx-traffic .grid-3 {
  margin: 0;
  gap: 16px;
}
.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* ---------- Mobile Bottom Tab Bar ---------- */
.mobile-tab-bar {
  display: none !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 200;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  justify-content: space-around;
  align-items: center;
  padding: 6px 0;
  padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .62rem;
  font-weight: 500;
  transition: color .2s;
  flex: 1;
  min-width: 0;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.tab-item svg { width: 22px; height: 22px; }
.tab-item.active { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .footer-navs { display: flex; flex-direction: column; align-items: center; gap: 30px; }
  .footer-col { text-align: center; }
}

@media (max-width: 600px) {
  .footer-navs { flex-direction: row; flex-wrap: wrap; gap: 20px; justify-content: center; }
  .footer-col { flex: 1 1 45%; min-width: 120px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  section { padding: 60px 0; }

  .nav-toggle { display: none !important; }
  .main-nav { display: none !important; }
  .mobile-tab-bar { display: flex !important; }
  body { padding-bottom: 68px; }
  .main-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  .main-nav a { padding: 12px 16px; font-size: 1rem; }

  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  .grid-3 { gap: 8px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .info-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }

  .features-strip { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: 1px solid var(--border-subtle); }
  .feature-item:nth-child(3) { border-right: none; }

  .stats-bar { gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .hero { min-height: 90vh; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  .article-card { flex-direction: column; }
  .article-card .thumb { width: 100%; height: 180px; }

  .timeline-item { flex-direction: column; gap: 8px; }

  .footer-bottom { text-align: center; }
  .footer-bottom span { white-space: normal; word-break: break-all; padding: 0 18px; display: block; width: 100%; box-sizing: border-box; }
  .scroll-top { display: none; }
  .header-phone { display: inline-block; }
}

@media (max-width: 480px) {
  .features-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .feature-item:last-child { border-bottom: none; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .stats-bar { gap: 20px; }
  .stat-num { font-size: 1.6rem; }
}

/* ==========================================================================
   Page-Specific Styles
   ========================================================================== */

/* ---------- 首页 Bento Grid (index.html) ---------- */
.bento-hero{padding:100px 24px 30px;max-width:1200px;margin:0 auto}
.bento-grid{display:grid;grid-template-columns:repeat(12,1fr);grid-template-rows:auto;gap:16px}
.bento-cell{background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-md);overflow:hidden;transition:all var(--transition);margin-top:20px}
.bento-cell:hover{border-color:var(--border-gold);box-shadow:var(--shadow-card)}
.cell-main{grid-column:1/9;grid-row:4/6;padding:60px 29px;display:flex;flex-direction:column;justify-content:center;position:relative;overflow:hidden}
.cell-main::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(166,182,91,0.06),transparent);pointer-events:none}
.cell-main h1{font-size:clamp(2rem,4vw,3rem);letter-spacing:6px;margin-bottom:16px;background:linear-gradient(135deg,#b8c87a,#a6b65b);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.cell-main p{color:var(--text-secondary);line-height:1.9;margin-bottom:28px;max-width:480px}
.cell-phone{grid-column:9/13;grid-row:4;padding:30px;text-align:center;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(135deg,rgba(166,182,91,0.08),rgba(166,182,91,0.02));border-color:var(--border-gold)}
.cell-phone .icon{font-size:2rem;margin-bottom:10px}
.cell-phone h4{color:var(--gold);margin-bottom:6px;font-size:0.95rem}
.cell-phone .num{font-size:1.5rem;font-weight:700;color:var(--gold);letter-spacing:1px}
.cell-hours{grid-column:9/13;grid-row:5;padding:24px;display:flex;align-items:center;gap:16px}
.cell-hours .icon{font-size:1.8rem}
.cell-hours h4{font-size:0.95rem;margin-bottom:4px}
.cell-hours p{color:var(--text-muted);font-size:0.85rem}
.house10-showcase-wrap{grid-column:1/13;grid-row:2/4}
.cell-room{grid-column:1/13;padding:28px}
.rooms-row{display:flex;gap:16px;padding-top:20px}
.rooms-row a{flex:none;width:378px;height:273px;border-radius:var(--radius-md);overflow:hidden;position:relative;background:var(--bg-card);border:1px solid var(--border-subtle);transition:all var(--transition)}
.rooms-row a:hover{border-color:var(--border-gold);box-shadow:var(--shadow-card);transform:translateY(-3px)}
.rooms-row a img{width:100%;height:100%;object-fit:cover;display:block}
.rooms-row .label{position:absolute;bottom:0;left:0;right:0;padding:14px 16px;background:linear-gradient(transparent,rgba(0,0,0,0.75))}
.rooms-row .label h3{font-size:1rem;margin-bottom:2px}
.rooms-row .label p{color:var(--text-muted);font-size:0.82rem}
.cell-stat{padding:28px 20px;text-align:center}
.cell-stat .num{font-size:2rem;font-weight:700;color:var(--gold);line-height:1}
.cell-stat .label{color:var(--text-muted);font-size:0.82rem;margin-top:8px}
.cell-news{grid-column:span 6;padding:28px 30px;display:flex;flex-direction:column;gap:10px}
.cell-news .tag{flex-shrink:0;width:50px;height:50px;background:var(--gold-glow);border:1px solid var(--border-gold);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;font-size:1.4rem}
.cell-news h3{font-size:1rem;margin-bottom:6px}
.cell-news p{color:var(--text-muted);font-size:0.85rem;line-height:1.6}
.cell-stat-wrap{grid-column:1/13;display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.cell-stat-wrap .bento-cell{margin-top:0}
.cell-cta{grid-column:1/13;padding:30px 40px;text-align:center;background:linear-gradient(135deg,rgba(166,182,91,0.06),transparent);border-color:var(--border-gold)}
.cell-cta h2{letter-spacing:4px;margin-bottom:10px;background:linear-gradient(135deg,#b8c87a,#a6b65b);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.cell-cta p{color:var(--text-muted);margin-bottom:20px}
@media(max-width:768px){
  .bento-grid{display:block}
  .bento-cell{margin-bottom:16px}
  .rooms-row{flex-direction:column;align-items:center}
  .rooms-row a{width:100%;height:220px}
  .cell-news h3{font-size:0.95rem}
  .cell-news{padding:20px}
  .cell-main{padding:50px 20px}
  .bento-hero{padding-top:80px}
  .cell-stat-wrap{display:grid;grid-template-columns:1fr 1fr;gap:12px}
  .cell-stat-wrap .bento-cell{margin-bottom:0}
  .cell-room{padding:10px}
  .house10-showcase{height:250px!important}
}

@media(min-width:1281px){
  .bento-hero{margin-left:max(236px,calc(50vw - 420px));max-width:1150px;margin-right:auto}
  .site-footer .container{margin-left:max(246px,calc(50vw - 450px));margin-right:auto}
  .site-footer .footer-bottom{margin-left:max(246px,calc(50vw - 450px));margin-right:auto;max-width:1200px}
}

/* ---------- 首页左侧热门推荐 (城市快捷导航风格) ---------- */
.hot-recommend{
  display:block;
  position:fixed;
  z-index:900;
  top:92px;
  bottom:22px;
  left:max(8px,calc(50% - 660px));
  width:200px;
}
.hot-recommend__inner{
  height:100%;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid rgba(166,182,91,0.18);
  border-radius:18px;
  background:linear-gradient(165deg,rgba(37,29,24,0.98),rgba(15,12,11,0.98));
  box-shadow:0 22px 54px rgba(0,0,0,0.34);
}
.hot-recommend__title{
  display:flex;
  align-items:center;
  gap:10px;
  padding:17px 16px 14px;
  color:#f0f2e8;
  border-bottom:1px solid rgba(166,182,91,0.13);
  text-decoration:none;
  font-size:16px;
  letter-spacing:0.01em;
}
.hot-recommend__title span{
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  flex:0 0 auto;
  border:1px solid rgba(166,182,91,0.4);
  border-radius:9px;
  color:var(--gold-light);
  background:rgba(166,182,91,0.07);
}
.hot-recommend__title svg{width:16px;height:16px}
.hot-recommend__title:hover span{border-color:rgba(166,182,91,0.6);color:#c8da8a;background:rgba(166,182,91,0.12)}
.hot-recommend__title:hover{color:#fff}
.hot-recommend__scroll{
  display:flex;
  flex:1;
  flex-direction:column;
  min-height:0;
  overflow-y:auto;
  padding:4px 12px 16px;
  scrollbar-color:rgba(166,182,91,0.36) transparent;
  scrollbar-width:thin;
}
.hot-recommend__group{padding-top:12px}
.hot-recommend__group + .hot-recommend__group{margin-top:auto;padding-bottom:15px}
.hot-recommend__group h2{margin:0 0 7px;padding:0 4px;color:var(--gold);font-size:12px;letter-spacing:0.12em}
.hot-recommend__links{display:grid;gap:6px}
.hot-recommend__links a{
  display:block;
  width:176px;
  height:44px;
  line-height:20px;
  padding:8px 10px;
  border:1px solid rgba(166,182,91,0.10);
  border-radius:8px;
  color:#d8dcc8;
  background:rgba(255,255,255,0.025);
  font-size:13px;
  text-decoration:none;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:clip;
  transition:border-color 0.18s ease,background 0.18s ease,color 0.18s ease;
}
@media (max-height:680px) and (min-width:1281px){
  .hot-recommend__group[aria-label="资讯动态"] .hot-recommend__links a:nth-child(n+7){display:none}
}
@media (max-height:600px) and (min-width:1281px){
  .hot-recommend__group[aria-label="资讯动态"] .hot-recommend__links a:nth-child(n+5){display:none}
}
.hot-recommend__links a:first-child{margin-top:20px}
.hot-recommend__links a:hover{
  border-color:rgba(166,182,91,0.46);
  color:#fff;
  background:rgba(166,182,91,0.10);
}
@media(max-width:1280px){.hot-recommend{display:none}}

/* ---------- 包厢展示 (fangjian.html) ---------- */
.rh3{padding:calc(var(--nav-height)+50px) 24px 40px;text-align:center;max-width:720px;margin:0 auto}
.rh3 .breadcrumb{margin-bottom:20px}
.rh3 p{color:var(--text-secondary);line-height:1.9;font-size:0.95rem;margin-bottom:15px}
.rh3-label{display:inline-block;padding:4px 16px;font-size:clamp(1.8rem,4vw,2.6rem);letter-spacing:8px;color:var(--gold);margin-bottom:16px;margin-top:100px}
.rh3 .sub-note{color:var(--text-muted);font-size:0.85rem;margin-top:4px;line-height:1.8}
.hl3{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border-subtle);max-width:1000px;margin:0 auto 60px;border-radius:var(--radius-md);overflow:hidden}
.hl3 .i{background:var(--bg-card);padding:36px 20px;text-align:center}
.hl3 .i .n{font-size:2.2rem;font-weight:700;color:var(--gold);line-height:1}
.hl3 .i .l{color:var(--text-muted);font-size:0.82rem;margin-top:8px;letter-spacing:2px}
.alt-section{max-width:1100px;margin:0 auto;padding:0 24px}
.alt-row{display:flex;gap:40px;margin-bottom:36px;align-items:center}
.alt-row.reverse{flex-direction:row-reverse}
.alt-img{flex:1.2;border-radius:var(--radius-md);overflow:hidden;position:relative}
.alt-img img{width:100%;height:360px;object-fit:cover;display:block;transition:transform var(--transition)}
.alt-img:hover img{transform:scale(1.03)}
.alt-img .badge{position:absolute;top:16px;left:16px;padding:5px 14px;background:rgba(166,182,91,0.9);border-radius:20px;font-size:0.78rem;color:#0a0a0a;font-weight:600;letter-spacing:1px}
.alt-text{flex:1}
.alt-text h3{font-size:1.4rem;letter-spacing:3px;margin-bottom:12px}
.alt-text p{color:var(--text-secondary);line-height:1.9;font-size:0.95rem;margin-bottom:20px}
.alt-text .tags{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:20px}
.alt-text .tags span{padding:5px 14px;background:var(--gold-glow);border:1px solid var(--border-gold);border-radius:20px;font-size:0.8rem;color:var(--gold)}
.alt-text .detail{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:4px}
.alt-text .detail .dx{padding:14px 16px;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-sm);display:flex;align-items:center;gap:12px}
.alt-text .detail .k{color:var(--text-muted);font-size:0.72rem;letter-spacing:1px;flex-shrink:0}
.alt-text .detail .v{color:var(--gold);font-size:0.9rem;font-weight:600}
.fac3{max-width:1100px;margin:0 auto;padding:0 24px 35px}
.fac3 h2{text-align:center;font-size:1.4rem;letter-spacing:4px;color:var(--gold);margin-bottom:12px}
.fac3 .sub{text-align:center;color:var(--text-muted);font-size:0.88rem;margin-bottom:40px}
.fac-strip{display:flex;gap:0;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-lg);overflow:hidden}
.fac-item{flex:1;padding:36px 20px;text-align:center;border-right:1px solid var(--border-subtle);transition:all var(--transition)}
.fac-item:last-child{border-right:none}
.fac-item:hover{background:rgba(166,182,91,0.04)}
.fac-item .fc{width:56px;height:56px;margin:0 auto 16px;background:var(--gold-glow);border:1px solid var(--border-gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem}
.fac-item h4{font-size:0.95rem;margin-bottom:6px;color:var(--gold);letter-spacing:1px}
.fac-item p{color:var(--text-muted);font-size:0.8rem;line-height:1.6}
.cta3{max-width:1100px;margin:0 auto;padding:0 24px 35px}
.cta3-inner{background:linear-gradient(135deg,rgba(166,182,91,0.08),rgba(166,182,91,0.02));border:1px solid var(--border-gold);border-radius:var(--radius-lg);padding:35px 10px;text-align:center}
.cta3-inner h2{letter-spacing:4px;margin-bottom:10px;color:var(--gold)}
.cta3-inner p{color:var(--text-muted);margin-bottom:24px;font-size:0.92rem}
.cta3-inner .ph{display:inline-block;font-size:2rem;font-weight:700;color:var(--gold);letter-spacing:3px;margin-bottom:20px}
@media(max-width:768px){
  .rh3{padding-left:24px;padding-right:24px}
  .hl3{grid-template-columns:1fr 1fr;margin:0 16px 40px}
  .alt-row,.alt-row.reverse{flex-direction:column;gap:20px}
  .alt-img{width:100%}
  .alt-img img{height:240px}
  .fg3{grid-template-columns:1fr}
  .cta3-inner{padding:32px 20px}
  .cta3-inner .ph{font-size:1.5rem}
  .fac-strip{flex-wrap:wrap}
  .fac-item{flex:1 1 50%;border-bottom:1px solid var(--border-subtle)}
  .fac-item:nth-child(2){border-right:none}
  .fac-item:nth-child(3),.fac-item:nth-child(4){border-bottom:none}
}

/* ---------- 关于我们 (guanyu.html) ---------- */
.gy-hero{padding:calc(var(--nav-height)+100px) 24px 50px;text-align:center;max-width:720px;margin:100px auto 0}
.gy-hero h1{font-size:clamp(1.8rem,4vw,2.6rem);letter-spacing:8px;color:var(--gold);margin-bottom:16px}
.gy-hero p{color:var(--text-secondary);line-height:1.9;font-size:0.95rem;padding:15px}
.gy-story{max-width:1100px;margin:0 auto 25px;padding:0 24px;display:flex;flex-direction:column;gap:32px}
.gy-story-img{border-radius:var(--radius-md);overflow:hidden}
.gy-story-img img{width:100%;height:500px;object-fit:cover;display:block}
.gy-story-text{max-width:1050px;margin:0 auto}
.gy-label{display:block;text-align:center;font-size:26px;color:var(--gold);letter-spacing:4px}
.gy-story-text h2{font-size:1.3rem;letter-spacing:4px;margin-bottom:20px;color:var(--text-primary)}
.gy-story-text p{color:var(--text-secondary);line-height:2;font-size:0.92rem;margin-bottom:14px}
.gy-stats{max-width:1100px;margin:0 auto 80px;padding:0 24px;display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.gy-stat{background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:32px 20px;text-align:center;transition:all var(--transition)}
.gy-stat:hover{border-color:var(--border-gold)}
.gy-stat .gs-num{font-size:2.4rem;font-weight:700;color:var(--gold);line-height:1;margin-bottom:8px}
.gy-stat .gs-label{color:var(--text-muted);font-size:0.82rem;letter-spacing:1px}
.gy-strip-sec{background:var(--bg-secondary);padding:20px 0}
.gy-strip-sec h2{text-align:center;font-size:1.4rem;letter-spacing:4px;color:var(--gold);margin-bottom:12px}
.gy-strip-sec .sub{text-align:center;color:var(--text-muted);font-size:0.88rem;margin-bottom:25px}
.gy-strip{max-width:1052px;margin:0 auto;padding:0 24px;display:flex;gap:0;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-lg);overflow:hidden}
.gy-strip-item{flex:1;padding:12px;text-align:center;border-right:1px solid var(--border-subtle);transition:all var(--transition)}
.gy-strip-item:last-child{border-right:none}
.gy-strip-item:hover{background:rgba(166,182,91,0.04)}
.gy-strip-item .si{width:52px;height:52px;margin:0 auto 14px;background:var(--gold-glow);border:1px solid var(--border-gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.4rem}
.gy-strip-item h4{font-size:0.92rem;color:var(--gold);letter-spacing:1px;margin-bottom:6px}
.gy-strip-item p{color:var(--text-muted);font-size:0.8rem;line-height:1.6}
.gy-services{max-width:1100px;margin:0 auto 35px;padding:0 24px}
.gy-services h2{text-align:center;font-size:1.4rem;letter-spacing:4px;color:var(--gold);margin-bottom:12px}
.gy-services .sub{text-align:center;color:var(--text-muted);font-size:0.88rem;margin-bottom:25px}
.gy-svc-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.gy-svc{display:flex;gap:20px;padding:28px;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-md);transition:all var(--transition)}
.gy-svc:hover{border-color:var(--border-gold)}
.gy-svc .svc-icon{width:48px;height:48px;flex-shrink:0;background:var(--gold-glow);border:1px solid var(--border-gold);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;font-size:1.3rem}
.gy-svc h3{font-size:1rem;color:var(--gold);letter-spacing:1px;margin-bottom:6px}
.gy-svc p{color:var(--text-secondary);font-size:0.85rem;line-height:1.8}
.gy-timeline{background:var(--bg-secondary);padding:35px 0;margin-bottom:30px}
.gy-timeline h2{text-align:center;font-size:1.4rem;letter-spacing:4px;color:var(--gold);margin-bottom:12px}
.gy-timeline .sub{text-align:center;color:var(--text-muted);font-size:0.88rem;margin-bottom:25px}
.gy-tl-wrap{max-width:1100px;margin:0 auto;padding:0 24px;display:flex;gap:8px}
.gy-tl-item{flex:1;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:28px 24px;transition:all var(--transition)}
.gy-tl-item:hover{border-color:var(--border-gold)}
.gy-tl-item h4{color:var(--gold);font-size:1rem;letter-spacing:2px;margin-bottom:10px}
.gy-tl-item p{color:var(--text-secondary);font-size:0.85rem;line-height:1.8}
.gy-cta{max-width:1100px;margin:0 auto;padding:0 24px 35px}
.gy-cta-inner{background:linear-gradient(135deg,rgba(166,182,91,0.08),rgba(166,182,91,0.02));border:1px solid var(--border-gold);border-radius:var(--radius-lg);padding:35px;text-align:center}
.gy-cta-inner h2{letter-spacing:4px;margin-bottom:10px;color:var(--gold)}
.gy-cta-inner p{color:var(--text-muted);margin-bottom:24px;font-size:0.92rem}
@media(max-width:768px){
  .gy-story-img img{height:260px}
  .gy-stats{grid-template-columns:1fr 1fr}
  .gy-strip{flex-wrap:wrap}
  .gy-strip-item{flex:1 1 50%;border-bottom:1px solid var(--border-subtle)}
  .gy-strip-item:nth-child(2){border-right:none}
  .gy-strip-item:nth-child(3),.gy-strip-item:nth-child(4){border-bottom:none}
  .gy-svc-grid{grid-template-columns:1fr}
  .gy-tl-wrap{flex-direction:column;gap:8px}
}

/* ---------- 资讯动态 (zixun.html) ---------- */
.zx-hero{padding:calc(var(--nav-height)+100px) 24px 30px;text-align:center;max-width:720px;margin:100px auto 0}
.zx-hero h1{font-size:clamp(1.8rem,4vw,2.6rem);letter-spacing:8px;color:var(--gold);margin-bottom:12px;position:relative;display:inline-block}
.zx-hero h1::after{content:'';display:block;width:48px;height:2px;background:var(--gold);margin:14px auto 0;border-radius:2px}
.zx-hero p{color:var(--text-muted);font-size:0.92rem;line-height:1.7}
.zx-feat{max-width:1100px;margin:0 auto 36px;padding:0 24px}
.zx-feat a{display:block;border-radius:var(--radius-lg);overflow:hidden;text-decoration:none;position:relative;background:linear-gradient(135deg,#1a1610 0%,#0d0b08 100%);border:1px solid var(--border-subtle);transition:all 0.35s;margin-top:18px}
.zx-feat a:hover{border-color:var(--border-gold);box-shadow:0 8px 32px rgba(166,182,91,0.12)}
.zx-feat-image{display:block;width:100%;height:280px;object-fit:cover;border-bottom:1px solid var(--border-subtle)}
.zx-feat-badge{display:inline-block;padding:5px 16px;background:var(--gold);color:#0a0a0a;font-size:0.7rem;font-weight:700;border-radius:20px;letter-spacing:2px;margin-bottom:10px}
.zx-feat-content{padding:36px 40px;display:flex;flex-direction:column;gap:12px}
.zx-feat-meta{display:flex;align-items:center;gap:10px;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;padding-bottom:2px}
.zx-feat-meta::-webkit-scrollbar{display:none}
.zx-feat-date{font-size:0.78rem;color:var(--text-muted)}
.zx-feat-tag{font-size:0.65rem;padding:3px 10px;border:1px solid var(--border-gold);border-radius:9999px;color:var(--gold);background:var(--gold-glow);font-weight:500;letter-spacing:0.5px;white-space:nowrap;flex-shrink:0}
.zx-feat-content h2{font-size:1.35rem;letter-spacing:2px;color:var(--text-primary);line-height:1.5}
.zx-feat-content p{color:var(--text-secondary);font-size:0.88rem;line-height:1.85;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.zx-feat-bottom{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:12px;border-top:1px solid rgba(255,255,255,0.06)}
.zx-feat-cta{display:inline-flex;align-items:center;gap:8px;font-size:0.85rem;font-weight:600;color:var(--gold);transition:gap 0.2s}
.zx-feat a:hover .zx-feat-cta{gap:12px}
.zx-section{max-width:1100px;margin:0 auto;padding:0 24px 50px}
.zx-section-hd{text-align:center;margin-bottom:36px}
.zx-section-hd h2{font-size:1.2rem;letter-spacing:4px;color:var(--gold);margin-bottom:8px;position:relative;display:inline-block}
.zx-section-hd h2::after{content:'';display:block;width:32px;height:2px;background:var(--gold);margin:10px auto 0;border-radius:2px}
.zx-section-hd p{color:var(--text-muted);font-size:0.85rem}
.zx-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:stretch}
.zx-card{display:flex;flex-direction:column;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:12px;overflow:hidden;text-decoration:none;transition:all 0.3s;position:relative}
.zx-card-image{display:block;width:100%;height:180px;object-fit:cover;border-bottom:1px solid var(--border-subtle)}
.zx-card::before{content:'';display:block;height:3px;background:linear-gradient(90deg,var(--gold),rgba(166,182,91,0.3));position:absolute;top:0;left:0;right:0;opacity:0;transition:opacity 0.3s}
.zx-card:hover{border-color:var(--border-gold);transform:translateY(-3px);box-shadow:0 10px 28px rgba(0,0,0,0.28)}
.zx-card:hover::before{opacity:1}
.zx-card-body{flex:1;padding:28px 24px;display:flex;flex-direction:column;gap:10px}
.zx-card-tags{display:flex;gap:6px;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;padding-bottom:2px}
.zx-card-tags::-webkit-scrollbar{display:none}
.zx-card-tag{font-size:0.6875rem;padding:2px 10px;border:1px solid var(--border-gold);border-radius:9999px;color:var(--gold);background:var(--gold-glow);font-weight:500;white-space:nowrap;flex-shrink:0}
.zx-card-title{font-size:1.1875rem;font-weight:700;color:var(--text-primary);line-height:1.4;transition:color 0.2s;margin:2px 0}
.zx-card:hover .zx-card-title{color:var(--gold)}
.zx-card-date{font-size:0.75rem;color:var(--text-muted);font-weight:500}
.zx-card-excerpt{font-size:0.875rem;color:var(--text-secondary);line-height:1.7;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;flex:1;min-height:3.6em}
.zx-card-bottom{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:12px;border-top:1px solid rgba(255,255,255,0.04)}
.zx-card-date-text{font-size:0.75rem;color:var(--text-muted);font-weight:500}
.zx-card-link{font-size:0.8125rem;font-weight:600;color:var(--gold);display:inline-flex;align-items:center;gap:6px;transition:gap 0.2s;margin-top:4px}
.zx-card:hover .zx-card-link{gap:10px}
.zx-pg-wrap{margin-top:32px}
.zx-pg-info{text-align:center;color:var(--text-muted);font-size:0.82rem;margin-bottom:14px}
.zx-pg-info span{color:var(--gold)}
.zx-pg{display:flex;align-items:center;justify-content:center;gap:6px;flex-wrap:wrap}
.zx-pg-btn{padding:7px 16px;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-sm);color:var(--text-secondary);font-size:0.85rem;cursor:pointer;transition:all var(--transition)}
.zx-pg-btn:hover:not(:disabled){border-color:var(--border-gold);color:var(--gold)}
.zx-pg-btn:disabled{opacity:0.35;cursor:default}
.zx-pg-nums{display:flex;gap:4px}
.zx-pg-num{width:36px;height:36px;display:flex;align-items:center;justify-content:center;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-sm);color:var(--text-secondary);font-size:0.85rem;cursor:pointer;transition:all var(--transition)}
.zx-pg-num:hover{border-color:var(--border-gold);color:var(--gold)}
.zx-pg-num.active{background:var(--gold);border-color:var(--gold);color:#0a0a0a;font-weight:600}
.zx-pg-dots{width:36px;height:36px;display:flex;align-items:center;justify-content:center;color:var(--text-muted);font-size:0.85rem}
@media(max-width:1024px){.zx-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){
  .zx-feat-content{padding:24px}
  .zx-feat-image{height:200px}
  .zx-feat-content h2{font-size:1.15rem}
  .zx-grid{grid-template-columns:1fr;gap:16px}
  .zx-pg-btn{padding:6px 12px;font-size:0.8rem}
  .zx-pg-num{width:32px;height:32px;font-size:0.8rem}
}

/* ---------- 人才招聘 (zhaopin.html) ---------- */
.zp-hero{padding:calc(var(--nav-height)+100px) 24px 50px;text-align:center;max-width:720px;margin:100px auto 0}
.zp-hero h1{font-size:clamp(1.8rem,4vw,2.6rem);letter-spacing:8px;color:var(--gold);margin-bottom:16px}
.zp-hero p{color:var(--text-secondary);line-height:1.9;font-size:0.95rem;padding:15px}
.zp-bento{max-width:1100px;margin:0 auto 80px;padding:0 24px;display:grid;grid-template-columns:1fr 1fr 1fr;grid-template-rows:auto auto;gap:16px}
.zp-bento .bz{background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:32px;transition:all var(--transition)}
.zp-bento .bz:hover{border-color:var(--border-gold)}
.zp-bento .bz-full{grid-column:1/-1}
.zp-bento .bz-wide{grid-column:span 2}
.bz h3{color:var(--gold);font-size:1.05rem;letter-spacing:2px;margin-bottom:10px}
.bz p{color:var(--text-secondary);font-size:0.88rem;line-height:1.8}
.bz .bz-icon{font-size:2rem;margin-bottom:12px;display:block}
.bz .bz-stat{font-size:2.2rem;font-weight:700;color:var(--gold);line-height:1;margin-bottom:4px}
.bz .bz-label{color:var(--text-muted);font-size:0.8rem;letter-spacing:1px}
.zp-jobs{max-width:1100px;margin:0 auto 35px;padding:0 24px}
.zp-jobs h2{text-align:center;font-size:1.4rem;letter-spacing:4px;color:var(--gold);margin-bottom:12px}
.zp-jobs .sub{text-align:center;color:var(--text-muted);font-size:0.88rem;margin-bottom:20px}
.job-list{display:flex;flex-direction:column;gap:12px}
.job-row{display:flex;align-items:stretch;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-md);overflow:hidden;transition:all var(--transition)}
.job-row:hover{border-color:var(--border-gold)}
.job-accent{width:4px;flex-shrink:0;background:var(--gold)}
.job-body{flex:1;padding:24px 28px;display:flex;flex-direction:column;gap:10px}
.job-info h3{font-size:1.1rem;letter-spacing:2px;color:var(--text-primary);flex:1}
.job-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.job-desc{color:var(--text-secondary);font-size:0.88rem;line-height:1.8}
.job-bottom{display:flex;align-items:center;justify-content:space-between;margin-top:4px}
.job-salary{font-size:1.1rem;font-weight:700;color:#fff;white-space:nowrap;letter-spacing:1px;padding-left:45px}
.zp-perks{background:var(--bg-secondary);padding:0 0 35px}
.zp-perks h2{text-align:center;font-size:1.4rem;letter-spacing:4px;color:var(--gold);margin-bottom:12px}
.zp-perks .sub{text-align:center;color:var(--text-muted);font-size:0.88rem;margin-bottom:25px}
.perk-strip{max-width:1052px;margin:0 auto;padding:0 24px;display:flex;gap:0;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-lg);overflow:hidden}
.perk-item{flex:1;padding:20px 10px;text-align:center;border-right:1px solid var(--border-subtle);transition:all var(--transition)}
.perk-item:last-child{border-right:none}
.perk-item:hover{background:rgba(166,182,91,0.04)}
.perk-item .pi{width:52px;height:52px;margin:0 auto 14px;background:var(--gold-glow);border:1px solid var(--border-gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.4rem}
.perk-item h4{font-size:0.92rem;color:var(--gold);letter-spacing:1px;margin-bottom:6px}
.perk-item p{color:var(--text-muted);font-size:0.8rem;line-height:1.6}
.zp-cta{max-width:1100px;margin:0 auto;padding:0 24px 35px}
.zp-cta-inner{background:linear-gradient(135deg,rgba(166,182,91,0.08),rgba(166,182,91,0.02));border:1px solid var(--border-gold);border-radius:var(--radius-lg);padding:35px;display:flex;align-items:center;gap:40px}
.zp-cta-text{flex:1}
.zp-cta-text h2{letter-spacing:4px;margin-bottom:10px;color:var(--gold)}
.zp-cta-text p{color:var(--text-muted);margin-bottom:28px;font-size:0.92rem;line-height:1.8}
.zp-cta-text .cta-btns{display:flex;gap:16px;flex-wrap:wrap}
.zp-cta-qr{flex-shrink:0;text-align:center}
.zp-cta-qr img{width:140px;height:140px;border-radius:var(--radius-md);border:1px solid var(--border-subtle);display:block;margin-bottom:10px}
.zp-cta-qr span{font-size:0.8rem;color:var(--text-muted)}
@media(max-width:768px){
  .zp-bento{grid-template-columns:1fr}
  .zp-bento .bz-wide{grid-column:1/-1}
  .job-body{flex-direction:column;align-items:flex-start;gap:12px}
  .perk-strip{flex-wrap:wrap}
  .perk-item{flex:1 1 50%;border-bottom:1px solid var(--border-subtle)}
  .perk-item:nth-child(2){border-right:none}
  .perk-item:nth-child(3),.perk-item:nth-child(4){border-bottom:none}
  .zp-cta-inner{padding:32px 20px;flex-direction:column;text-align:center}
  .zp-cta-text .cta-btns{justify-content:center}
  .zp-cta-qr img{margin:0 auto 10px}
}

/* ---------- 联系我们 (lianxi.html) ---------- */
.lx-hero{padding:calc(var(--nav-height)+100px) 24px 50px;text-align:center;background:linear-gradient(180deg,rgba(166,182,91,0.04) 0%,transparent 100%);border-bottom:1px solid var(--border-subtle);margin:100px auto 0;max-width:720px}
.lx-hero h1{letter-spacing:3px;margin-bottom:12px;color:var(--gold)}
.lx-hero p{color:var(--text-muted);font-size:0.95rem;margin-bottom:35px}
.lx-contact{max-width:1129px;margin:0 auto;padding:0 24px}
.lx-traffic{background:var(--bg-card);border-top:1px solid var(--border-subtle);border-bottom:1px solid var(--border-subtle);margin:35px 0;padding:0}
.lx-traffic-inner{max-width:1100px;margin:0 auto;padding:10px 0 10px 24px}
.lx-cta{max-width:1129px;margin:0 auto;padding:0 24px 35px}
.lx-cta-inner{background:linear-gradient(135deg,rgba(200,169,110,0.08),rgba(200,169,110,0.03));border:1px solid var(--border-gold);border-radius:var(--radius-lg);padding:30px;text-align:center}
.lx-cta-inner h2{color:var(--gold);margin-bottom:16px;letter-spacing:2px}
.lx-cta-inner p{color:var(--text-secondary);margin-bottom:30px}
.section-title{margin-bottom:35px!important}
.section-title h2{color:var(--gold)}
.wx-benefits{margin-top:16px}
.contact-grid{align-items:stretch!important}
.wx-title{font-size:0.82rem;color:var(--text-muted);letter-spacing:1px;margin-bottom:12px;text-transform:uppercase}
.wx-list{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:6px}
.wx-list li{display:flex;align-items:center;gap:10px;padding:10px 12px;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-sm);font-size:0.85rem;color:var(--text-secondary)}
.wx-list li:last-child{border-bottom:none}
.wx-num{width:24px;height:24px;flex-shrink:0;background:var(--gold-glow);border:1px solid var(--border-gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:0.72rem;font-weight:700;color:var(--gold)}
@media(min-width:769px){.wx-benefits{text-align:center}.wx-list{margin:0 auto;max-width:560px;display:grid!important;grid-template-columns:1fr 1fr;gap:6px}}
@media(max-width:768px){.wx-list{gap:3px}.wx-list li{padding:4px 5px;gap:3px;font-size:0.63rem}.wx-num{width:14px;height:14px;font-size:0.52rem}.contact-info-card{padding:20px!important}}

/* ---------- 常见问题 (changjianwenti.html) ---------- */
.faq-hero{padding:calc(var(--nav-height)+100px) 24px 50px;text-align:center;background:linear-gradient(180deg,rgba(166,182,91,0.04) 0%,transparent 100%);border-bottom:1px solid var(--border-subtle);margin:100px auto 0;max-width:720px}
.faq-hero h1{letter-spacing:3px;margin-bottom:12px;color:#a6b65b}
.faq-hero p{color:var(--text-muted);font-size:0.95rem}
.faq-section{padding:35px 0}
.faq-section:nth-child(even){background:rgba(166,182,91,0.02)}
.faq-cat-header{display:flex;align-items:center;justify-content:center;gap:16px;margin-bottom:32px}
.faq-cat-icon{width:48px;height:48px;background:var(--gold-glow);border:1px solid var(--border-gold);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;font-size:1.4rem;flex-shrink:0}
.faq-cat-header h2{font-size:1.2rem;letter-spacing:2px;color:var(--gold);margin:0}
.faq-cat-header p{color:var(--text-muted);font-size:0.85rem;margin:4px 0 0}
.faq-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.faq-card{background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:28px 24px;transition:border-color .25s,box-shadow .25s;display:flex;flex-direction:column;gap:14px}
.faq-card:hover{border-color:var(--border-gold);box-shadow:var(--shadow-card)}
.faq-card-q{font-size:1rem;font-weight:600;color:var(--text-primary);line-height:1.5;display:flex;align-items:flex-start;gap:10px}
.faq-card-q .num{color:var(--gold);font-size:0.82rem;font-weight:700;flex-shrink:0;width:26px;height:26px;background:var(--gold-glow);border:1px solid var(--border-gold);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-top:1px}
.faq-card-a{color:var(--text-secondary);font-size:0.88rem;line-height:1.8;padding-left:36px}
.faq-card-a a{color:var(--gold);text-decoration:none;font-weight:500}
.faq-card-a a:hover{text-decoration:underline}
.faq-card-a strong{color:var(--text-primary);font-weight:600}
.faq-cta{margin-top:40px;padding:35px;text-align:center;background:linear-gradient(135deg,rgba(166,182,91,0.06),transparent);border:1px solid var(--border-gold);border-radius:var(--radius-md)}
.faq-cta h2{letter-spacing:3px;margin-bottom:10px;font-size:1.2rem;color:#a6b65b}
.faq-cta p{color:var(--text-muted);margin-bottom:20px;font-size:0.92rem}
@media(max-width:768px){
  .faq-grid{grid-template-columns:1fr}
  .faq-card{padding:22px 18px}
  .faq-cta{padding:30px 20px}
}

/* ---------- 网站地图 (sitemap.html) ---------- */
.sm-hero{padding:calc(var(--nav-height)+100px) 24px 50px;text-align:center;max-width:720px;margin:100px auto 0}
.sm-hero h1{font-size:clamp(1.8rem,4vw,2.6rem);letter-spacing:8px;color:var(--gold);margin-bottom:16px}
.sm-hero p{color:var(--text-secondary);line-height:1.9;font-size:0.95rem;padding:15px}
.sm-list{max-width:1100px;margin:0 auto;padding:0 24px 60px;display:grid;grid-template-columns:1fr 1fr;gap:12px;justify-content:center}
.sm-card{display:flex;align-items:center;gap:16px;padding:20px 24px;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-md);text-decoration:none;transition:all var(--transition)}
.sm-card:hover{border-color:var(--border-gold);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,0.25)}
.sm-icon{width:44px;height:44px;flex-shrink:0;background:var(--gold-glow);border:1px solid var(--border-gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.2rem}
.sm-body{flex:1}
.sm-body h3{color:var(--gold);font-size:1rem;letter-spacing:2px;margin-bottom:4px}
.sm-body p{color:var(--text-muted);font-size:0.82rem;line-height:1.6}
.sm-num{color:var(--gold);font-size:0.75rem;font-weight:700;letter-spacing:1px;flex-shrink:0}
@media(max-width:768px){.sm-list{grid-template-columns:1fr}.sm-card{padding:16px 18px}}

/* ---------- 资讯详情 (news-1~8.html) ---------- */
.nd-hero{padding:calc(var(--nav-height)+100px) 24px 40px;text-align:center;max-width:900px;margin:100px auto 0}
.nd-hero h1{font-size:clamp(1.6rem,4vw,2.4rem);letter-spacing:6px;color:var(--gold);margin-bottom:16px;line-height:1.5;padding:10px}
.nd-meta{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;margin-bottom:8px;padding:0 10px}
.nd-date{font-size:0.82rem;color:var(--text-muted);flex-basis:100%}
.nd-tag{font-size:0.72rem;padding:2px 12px;border:1px solid var(--border-gold);border-radius:9999px;color:var(--gold);background:var(--gold-glow)}
.nd-body{max-width:900px;margin:0 auto;padding:0 24px 60px}
.nd-body p{color:var(--text-secondary);line-height:2;font-size:0.95rem;margin-bottom:20px}
.nd-body h2{color:var(--gold);font-size:1.2rem;letter-spacing:3px;margin:36px 0 16px}
.nd-body h3{color:var(--text-primary);font-size:1.05rem;letter-spacing:2px;margin:28px 0 12px}
.nd-body ul{margin:0 0 20px 20px;color:var(--text-secondary);font-size:0.92rem;line-height:2}
.nd-body ul li{margin-bottom:6px}
.nd-body .highlight{background:var(--bg-card);border:1px solid var(--border-gold);border-radius:var(--radius-md);padding:24px;margin:24px 0}
.nd-body .highlight p{color:var(--gold);font-weight:600;font-size:1rem;margin-bottom:8px}
.nd-body .highlight span{color:var(--text-secondary);font-size:0.88rem}
.nd-body figure{margin:28px 0}
.nd-body figure img{width:100%;height:400px;object-fit:cover;border-radius:var(--radius-md);border:1px solid var(--border-subtle);display:block}
.nd-body figure figcaption{font-size:0.78rem;color:var(--text-muted);text-align:center;margin-top:8px}
.nd-nav{max-width:900px;margin:0 auto;padding:0 24px 35px;display:flex;justify-content:space-between;gap:16px}
.nd-nav a{display:inline-flex;align-items:center;gap:6px;color:var(--gold);font-size:0.88rem;text-decoration:none;transition:gap 0.2s}
.nd-nav a:hover{gap:10px}
@media(max-width:768px){.nd-body{padding:0 24px 40px}.nd-body figure img{height:250px}.nd-nav{padding:0 24px 30px}.ktv-recommend p{margin-bottom:16px!important}}

/* ---------- Print Styles ---------- */
@media print {
  .site-header, .scroll-top, .nav-toggle { display: none; }
  body { background: white; color: #222; }
  .card { border: 1px solid #ddd; box-shadow: none; }
}

/* ---------- 全页面侧边栏布局偏移 ---------- */
@media(min-width:1281px){
  .rh3{margin-left:max(476px,calc(50vw - 234px));margin-right:auto}
  .alt-section,.fac3,.cta3{margin-left:max(236px,calc(50vw - 420px));margin-right:24px}
  .zx-hero{margin-left:max(476px,calc(50vw - 234px));margin-right:auto}
  .zx-feat,.zx-section{margin-left:max(236px,calc(50vw - 420px));margin-right:24px}
  .gy-hero{margin-left:max(476px,calc(50vw - 234px));margin-right:auto}
  .gy-story,.gy-adv,.gy-cta,.gy-services{margin-left:max(296px,calc(50vw - 424px));margin-right:auto}
  .gy-strip-sec,.gy-timeline{max-width:1100px;margin-left:max(296px,calc(50vw - 424px));margin-right:auto}
  .gy-strip-sec-inner,.gy-timeline-inner{width:100%;max-width:none;margin:0}
  .lx-hero{margin-left:max(476px,calc(50vw - 234px));margin-right:auto}
  .lx-contact,.lx-cta{margin-left:max(328px,calc(50vw - 392px));margin-right:auto;padding:0}
.lx-cta{margin-bottom:30px}
  .lx-contact .section-title{text-align:left}
  .lx-contact .contact-grid{width:100%!important;max-width:none!important;margin:0!important}
  .lx-traffic{max-width:1129px;margin-left:max(328px,calc(50vw - 392px));margin-right:auto}
  .lx-traffic-inner{width:100%;max-width:none;margin:0;padding-left:0}
  .zp-hero{margin-left:max(476px,calc(50vw - 234px));margin-right:auto}
  .zp-jobs,.zp-cta{margin-left:max(296px,calc(50vw - 424px));margin-right:auto}
  .zp-perks{max-width:1100px;margin-left:max(296px,calc(50vw - 424px));margin-right:auto}
  .zp-perks-inner{width:100%;max-width:none;margin:0}
  .faq-hero{margin-left:max(476px,calc(50vw - 234px));margin-right:auto}
  .faq-section{max-width:1100px;margin-left:max(236px,calc(50vw - 420px));margin-right:24px}
  .faq-section .container{max-width:1100px!important;padding:0 24px}
  .faq-cta{max-width:1100px!important}
  .sm-hero,.sm-list{margin-left:max(236px,calc(50vw - 420px));margin-right:24px}
  .nd-hero,.nd-body,.nd-nav{margin-left:max(260px,calc(50vw - 308px));margin-right:24px}
  .site-footer .container{margin-left:max(246px,calc(50vw - 450px));margin-right:auto}
  .site-footer .footer-bottom{margin-left:max(246px,calc(50vw - 450px));margin-right:auto;max-width:1200px}
}
