:root {
  --green-dark: #0f3d2e;
  --green-mid: #1a4d2e;
  --green-light: #4caf7a;
  --green-sage: #5a9a78;
  --green-pale: #edf5f0;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gray-dark: #1c2421;
  --gray-mid: #5c6b63;
  --gray-light: #f7f8f6;
  --cream: #faf9f7;
  --surface: rgba(243, 246, 243, 0.72);
  --surface-alt: rgba(237, 245, 240, 0.65);
  --surface-card: rgba(255, 255, 255, 0.82);
  --glass: rgba(255, 255, 255, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --glass-green: rgba(237, 245, 240, 0.75);
  --bg-image: url('/static/images/bg-body.jpg');
  --pink-accent: #e8a4b8;
  --white: #ffffff;
  --max-width: 1200px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(15, 61, 46, 0.08);
  --shadow-hover: 0 12px 40px rgba(15, 61, 46, 0.14);
  --font-serif: "Noto Serif SC", "Source Han Serif CN", "STSong", "SimSun", serif;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.site-page {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--gray-dark);
  line-height: 1.75;
  background-color: #e8f0eb;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}
body.site-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: var(--bg-image) center center / cover no-repeat;
}
body.site-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(237, 245, 240, 0.84) 0%,
    rgba(243, 246, 243, 0.76) 45%,
    rgba(228, 238, 232, 0.88) 100%
  );
}
@media (max-width: 768px) {
  body.site-page::before, body.site-page::after { position: absolute; height: 100%; min-height: 100vh; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--gray-dark);
  line-height: 1.75;
  background-color: #e8f0eb;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--green-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-sage); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: linear-gradient(180deg, var(--green-dark) 0%, #123528 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid var(--gold);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--gold-light); }
.logo-img { border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.4); }
.logo-brand {
  width: auto;
  max-width: min(240px, 42vw);
  height: 48px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  display: block;
}
.nav-main { display: flex; flex-wrap: wrap; gap: 4px 22px; list-style: none; margin: 0; padding: 0; }
.nav-main a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  padding: 6px 0;
  position: relative;
}
.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-main a:hover, .nav-main a.active { color: var(--gold-light); }
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }
.header-cta { display: flex; gap: 12px; align-items: center; }
.btn-phone {
  background: linear-gradient(135deg, var(--gold) 0%, #b8944a 100%);
  color: var(--green-dark);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(201, 169, 98, 0.35);
}
.btn-phone:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); color: var(--green-dark); }

/* Breadcrumb — 与顶栏统一的深绿副栏，全站一致 */
.breadcrumb {
  background: linear-gradient(180deg, #123528 0%, var(--green-dark) 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 11px 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.18);
}
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; }
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb li::after { content: "/"; margin-left: 8px; color: rgba(201, 169, 98, 0.45); font-size: 0.75rem; }
.breadcrumb li:last-child::after { content: ""; margin: 0; }
.breadcrumb a { color: rgba(255, 255, 255, 0.88); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-current,
.breadcrumb li:last-child a,
.breadcrumb li:last-child span {
  color: var(--gold-light);
  font-weight: 600;
}
.breadcrumb:has(+ .hero) + .hero { padding-top: 44px; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, #2d6a4f 100%);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201, 169, 98, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  margin: 0 0 18px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero .intro { max-width: 720px; margin: 0 auto 28px; opacity: 0.92; font-size: 1.08rem; }
.hero-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}
.tag-pink { background: rgba(232, 164, 184, 0.2); border-color: rgba(232, 164, 184, 0.4); }

/* Sections */
.section { padding: 64px 0; position: relative; }
.section-alt {
  background: rgba(15, 61, 46, 0.045);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(15, 61, 46, 0.05);
  border-bottom: 1px solid rgba(15, 61, 46, 0.05);
}
.section-title { text-align: center; margin-bottom: 44px; }
.section-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--green-dark);
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.section-title h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  margin: 14px auto 0;
  border-radius: 2px;
}
.section-title p { color: var(--gray-mid); margin: 0; font-size: 0.95rem; }

/* Cards grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.card {
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.55);
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card:hover::before { opacity: 1; }
.card-body { padding: 24px; }
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-pale), #dceee4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
  border: 1px solid rgba(76, 175, 122, 0.2);
}
.card h3 { margin: 0 0 10px; font-size: 1.12rem; color: var(--green-dark); font-weight: 700; }
.card p { margin: 0; color: var(--gray-mid); font-size: 0.9rem; line-height: 1.65; }
.card-link {
  display: block;
  padding: 14px 24px;
  background: rgba(237, 245, 240, 0.85);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.875rem;
  border-top: 1px solid rgba(15, 61, 46, 0.05);
  transition: background 0.2s, color 0.2s;
}
.card-link:hover { background: var(--green-dark); color: var(--gold-light); }
a.card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.card:hover { color: inherit; }

/* Content page */
.page-content { padding: 48px 0 calc(72px + env(safe-area-inset-bottom, 0px)); }
.content-block { margin-bottom: 36px; }
.content-block h2 {
  font-family: var(--font-serif);
  color: var(--green-dark);
  font-size: 1.35rem;
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}
.content-block p { margin: 0 0 14px; max-width: 800px; }

/* FAQ */
.faq-section {
  background: rgba(15, 61, 46, 0.05);
  backdrop-filter: blur(6px);
  padding: 56px 0;
  border-top: 1px solid rgba(15, 61, 46, 0.06);
}
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--glass-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  margin-bottom: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.faq-item h3 { margin: 0 0 10px; font-size: 1.02rem; color: var(--green-dark); font-weight: 700; }
.faq-item p { margin: 0; color: var(--gray-mid); font-size: 0.925rem; }

/* Dual city */
.dual-city { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.city-box {
  background: var(--glass-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}
.city-box:hover { box-shadow: var(--shadow-hover); }
.city-box h3 {
  font-family: var(--font-serif);
  color: var(--green-dark);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-light);
}
.city-box ul { list-style: none; padding: 0; margin: 0; }
.city-box li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 0.925rem; }
.city-box li strong { color: var(--green-dark); min-width: 60px; display: inline-block; }

/* CTA bar */
.cta-bar {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
  position: relative;
}
.cta-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-bar h2 {
  font-family: var(--font-serif);
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: 1px;
}
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 20px; }
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8944a 100%);
  color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(201, 169, 98, 0.35);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); color: var(--green-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255, 255, 255, 0.6); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); border-color: var(--white); }
.page-content .btn-outline,
.form-group .btn-outline,
.news-filter .btn-outline {
  color: var(--green-dark);
  border-color: rgba(15, 61, 46, 0.25);
}
.page-content .btn-outline:hover,
.form-group .btn-outline:hover,
.news-filter .btn-outline:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  border-color: var(--green-sage);
}
.btn-pink { background: var(--pink-accent); color: var(--gray-dark); }

/* Form */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 7px; font-weight: 600; font-size: 0.9rem; color: var(--green-dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(15, 61, 46, 0.15);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--glass-strong);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green-sage);
  box-shadow: 0 0 0 3px rgba(76, 175, 122, 0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* News list */
.news-list { list-style: none; padding: 0; margin: 0; }
.news-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 61, 46, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  transition: padding-left 0.2s;
}
.news-list li:hover { padding-left: 8px; }
.news-list a { font-weight: 500; }
.news-list .meta { color: var(--gray-mid); font-size: 0.85rem; }
.article-body { max-width: 800px; line-height: 1.85; font-size: 1.02rem; }
.article-body p { margin-bottom: 18px; }

/* Footer — 延续全站背景，深绿收尾无白条 */
.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 calc(28px + env(safe-area-inset-bottom, 0px));
  font-size: 0.875rem;
  background:
    linear-gradient(180deg, rgba(15, 61, 46, 0.88) 0%, rgba(21, 40, 32, 0.94) 35%, rgba(28, 36, 33, 0.97) 100%),
    var(--bg-image) center bottom / cover no-repeat;
  border-top: 2px solid rgba(201, 169, 98, 0.22);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}
.footer-grid h4 { color: var(--gold-light); margin: 0 0 14px; font-size: 1rem; font-weight: 600; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 5px 0; }
.footer-grid a { color: rgba(255, 255, 255, 0.65); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.footer-brand-logo {
  display: block;
  max-width: 200px;
  height: auto;
  margin-bottom: 12px;
  filter: brightness(1.05);
}

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 9px 16px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: var(--radius);
  font-size: 0.875rem;
  background: var(--glass-strong);
  backdrop-filter: blur(8px);
}
.pagination a:hover { border-color: var(--green-sage); color: var(--green-dark); }
.pagination .current { background: var(--green-dark); color: var(--gold-light); border-color: var(--green-dark); }

/* Admin (shared) */
.admin-wrap { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.admin-nav { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { border: 1px solid rgba(15, 61, 46, 0.1); padding: 12px; text-align: left; font-size: 0.875rem; }
.admin-table th { background: var(--green-pale); color: var(--green-dark); font-weight: 600; }
.admin-table tr:hover td { background: rgba(237, 245, 240, 0.5); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 1.2rem;
  padding: 7px 12px;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-wrap { display: flex; align-items: center; }
@media (max-width: 900px) {
  .nav-toggle { display: block; margin-left: auto; }
  .header-inner { position: relative; }
  .nav-wrap { display: none; width: 100%; order: 4; padding-top: 10px; }
  .nav-wrap.open { display: block; }
  .nav-main { flex-direction: column; gap: 8px; }
  .header-cta { width: 100%; }
}
@media (max-width: 768px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .nav-main { width: 100%; }
  .hero { padding: 48px 20px; }
  .section { padding: 44px 0; }
}

/* Card images */
.card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
  background: var(--green-pale);
  transition: transform 0.4s ease;
}
.card:hover .card-img { transform: scale(1.03); }
.qual-img { aspect-ratio: 7/9; object-fit: cover; padding: 0; background: var(--gray-light); border-radius: var(--radius); }
.meta { color: var(--gray-mid); font-size: 0.85rem; margin-top: 8px; }

/* Stats */
.stats-section {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a5238 100%);
  position: relative;
}
.stats-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { color: var(--white); }
.stat-value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-light);
}
.stat-value span { font-size: 1rem; font-weight: 400; margin-left: 2px; color: rgba(255, 255, 255, 0.8); }
.stat-label { font-size: 0.9rem; opacity: 0.85; margin-top: 6px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* Qualifications */
.qual-grid .qual-card { text-align: center; }
.qual-note { text-align: center; color: var(--gray-mid); font-size: 0.85rem; margin-top: 24px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.process-item {
  background: var(--glass-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.process-item:hover { transform: translateY(-3px); }
.process-step {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--gold-light);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.process-item h3 { margin: 0 0 10px; font-size: 1.02rem; color: var(--green-dark); }
.process-item p { margin: 0; font-size: 0.875rem; color: var(--gray-mid); }

/* Hero split */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; text-align: left; }
.hero-side-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  object-fit: cover;
  width: 100%;
  max-height: 320px;
}
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-side-img { max-width: 360px; margin: 0 auto; }
}

/* Bottom contact bar */
/* Bottom contact bar — 深绿底栏，与页脚统一 */
.contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 90;
  box-shadow: 0 -4px 24px rgba(15, 61, 46, 0.28);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}
.contact-bar-item {
  flex: 1;
  text-align: center;
  padding: 13px 8px;
  background: rgba(15, 61, 46, 0.94);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-bar-item:last-of-type:not(.contact-bar-primary) { border-right: none; }
.contact-bar-item:hover {
  background: rgba(26, 77, 46, 0.98);
  color: var(--gold-light);
}
.contact-bar-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8944a 100%);
  color: var(--green-dark);
  border-right: none;
}
.contact-bar-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--green-dark);
}
body { padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px)); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.captcha-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.captcha-group label { width: 100%; }
.captcha-refresh { padding: 8px 12px; font-size: 0.875rem; }
.inquiry-content-cell { max-width: 200px; word-break: break-word; }
.admin-table-wrap { overflow-x: auto; }
.inquiry-actions form { display: inline-block; }

/* GEO */
.geo-summary {
  background: rgba(237, 245, 240, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(15, 61, 46, 0.08);
  border-bottom: 1px solid rgba(15, 61, 46, 0.08);
  padding: 48px 0;
}
.geo-summary-title { font-family: var(--font-serif); color: var(--green-dark); font-size: 1.3rem; margin: 0 0 8px; }
.geo-cite-note { font-size: 0.875rem; color: var(--gray-mid); margin: 0 0 22px; }
.geo-facts { margin: 0; }
.geo-fact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(15, 61, 46, 0.1);
}
.geo-fact-row:last-child { border-bottom: none; }
.geo-fact-row dt { font-weight: 600; color: var(--green-dark); font-size: 0.875rem; margin: 0; }
.geo-fact-row dd { margin: 0; font-size: 0.9rem; color: var(--gray-dark); line-height: 1.65; }
@media (max-width: 600px) { .geo-fact-row { grid-template-columns: 1fr; gap: 4px; } }

/* Hero carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  background: var(--green-dark);
  isolation: isolate;
}
.carousel-viewport {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1200 / 420;
  max-height: min(480px, 42vw);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  height: 100%;
}
.carousel-link {
  display: block;
  width: 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.97) saturate(1.04);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 61, 46, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.carousel-btn:hover {
  background: rgba(201, 169, 98, 0.75);
  border-color: rgba(255, 255, 255, 0.6);
}
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.carousel-dots button.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .carousel-viewport {
    aspect-ratio: 16 / 9;
    max-height: 240px;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  .carousel-dots { bottom: 12px; }
}

/* Map / WeChat */
.map-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.map-link {
  display: inline-block;
  padding: 11px 18px;
  background: var(--green-pale);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(15, 61, 46, 0.08);
}
.wechat-block {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  background: var(--glass-green);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.wechat-qr { border-radius: var(--radius); border: 2px solid var(--white); flex-shrink: 0; box-shadow: var(--shadow); }
.wechat-tip { font-size: 0.85rem; color: var(--gray-mid); margin: 4px 0 0; }
.footer-wechat { display: flex; gap: 18px; }
.footer-wechat div { text-align: center; }
.footer-wechat img { border-radius: 8px; margin-bottom: 6px; }
.footer-wechat span { font-size: 0.75rem; opacity: 0.8; }
.article-cover { width: 100%; max-width: 800px; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
.captcha-group input { max-width: 120px; }

/* News filter */
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--glass-green);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}
.news-filter input[type="text"] {
  flex: 1;
  min-width: 160px;
  padding: 11px 16px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: var(--radius);
}
.news-filter select {
  padding: 11px 16px;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
}
.client-logo-item {
  text-align: center;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 61, 46, 0.08);
}
.client-logo-item img {
  max-width: 120px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto 8px;
  display: block;
}
.client-logo-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-mid);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.gallery-tab {
  border: 1px solid rgba(15, 61, 46, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: var(--green-dark);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
}
.gallery-tab.is-active,
.gallery-tab:hover {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}
.gallery-panel.is-hidden { display: none; }
.gallery-card {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.gallery-card figcaption {
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--gray-mid);
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.package-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.package-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 61, 46, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.package-card-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}
.package-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--green-dark);
}
.package-price {
  margin: 0 0 10px;
  color: #c45c00;
  font-size: 0.95rem;
}
.package-price strong {
  font-size: 1.8rem;
  font-weight: 700;
}
.package-summary {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.6;
}
.package-plants {
  margin-top: 14px;
  text-align: left;
  font-size: 0.85rem;
}
.package-plants summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 500;
}
.package-plants ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--gray-mid);
}
.package-plants li { margin-bottom: 4px; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.pain-column {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 61, 46, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.pain-column h3 {
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: var(--green-dark);
  line-height: 1.5;
}
.pain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pain-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--gray-mid);
  line-height: 1.65;
}
.pain-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}
.advantage-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.advantage-tab {
  border: 1px solid rgba(15, 61, 46, 0.15);
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 0.92rem;
}
.advantage-tab.is-active,
.advantage-tab:hover {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}
.advantage-panel {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 28px;
  align-items: start;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.advantage-panel.is-hidden { display: none; }
.advantage-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}
.advantage-copy h3 {
  margin: 0 0 12px;
  color: var(--green-dark);
}
.advantage-copy p {
  margin: 0 0 12px;
  color: var(--gray-mid);
  line-height: 1.7;
}
.advantage-highlights {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--gray-mid);
}
.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.strength-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  box-shadow: var(--shadow);
}
.strength-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 12px;
}
.strength-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--green-dark);
}
.strength-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.6;
}
.after-sales-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.after-sales-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  box-shadow: var(--shadow);
}
.after-sales-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.after-sales-item h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  color: var(--green-dark);
}
.after-sales-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-mid);
}
.plant-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.plant-catalog-card {
  display: block;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plant-catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.plant-catalog-card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  display: block;
}
.plant-catalog-card h3 {
  margin: 0;
  padding: 12px 14px;
  font-size: 0.95rem;
  text-align: center;
  color: var(--green-dark);
}
.plant-catalog-card-static { cursor: default; }
@media (max-width: 768px) {
  .advantage-panel { grid-template-columns: 1fr; }
}

.notice-bar {
  background: linear-gradient(90deg, #fff8ef, #fff);
  border-bottom: 1px solid rgba(253, 114, 4, 0.15);
}
.notice-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  overflow: hidden;
}
.notice-label {
  flex-shrink: 0;
  color: #fd7204;
  font-weight: 700;
}
.notice-list {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}
.notice-list a {
  color: var(--gray-dark);
  white-space: nowrap;
}
.home-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.home-intro-text p {
  line-height: 1.8;
  color: var(--gray-mid);
  margin-bottom: 16px;
}
.home-intro-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.section-title-left { text-align: left; }
.design-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.designer-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.designer-photo {
  width: 100%;
  max-width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto 12px;
}
.designer-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--green-dark);
}
.designer-card h3 small {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--gray-mid);
  font-weight: 400;
}
.designer-quote {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 768px) {
  .home-intro-grid { grid-template-columns: 1fr; }
}
