@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');

/* ===== 基础重置 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans SC', sans-serif;
  color: #3D3229;
  background-color: #F9F7F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Noto Serif SC', serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ===== 颜色变量 ===== */
:root {
  --primary: #3D3229;
  --primary-light: #5A4F45;
  --primary-dark: #2E2620;
  --primary-50: #F5F3F0;
  --primary-100: #E8E4DF;
  --primary-200: #D1C9C0;
  --gold: #D4AF37;
  --gold-light: #E8C95A;
  --gold-dark: #B8960C;
  --gold-50: #FBF6E0;
  --gold-100: #F6EDB8;
  --warm: #F9F7F4;
  --warm-white: #FDFCFA;
  --warm-light: #F5F3F0;
  --warm-dark: #EDEAE5;
}

/* ===== 工具类（与 Tailwind 映射） ===== */
.min-h-screen { min-height: 100vh; }
.bg-warm-white { background-color: var(--warm); }
.bg-warm-light { background-color: var(--warm-light); }
.bg-primary-dark { background-color: var(--primary-dark); }
.bg-white { background-color: #fff; }
.bg-gold { background-color: var(--gold); }
.bg-gold-10 { background-color: rgba(212, 175, 55, 0.1); }
.bg-gold-20 { background-color: rgba(212, 175, 55, 0.2); }
.bg-primary-5 { background-color: rgba(61, 50, 41, 0.05); }
.bg-primary-10 { background-color: rgba(61, 50, 41, 0.1); }

.text-primary { color: var(--primary); }
.text-primary-70 { color: rgba(61, 50, 41, 0.7); }
.text-primary-60 { color: rgba(61, 50, 41, 0.6); }
.text-primary-50 { color: rgba(61, 50, 41, 0.5); }
.text-primary-40 { color: rgba(61, 50, 41, 0.4); }
.text-primary-30 { color: rgba(61, 50, 41, 0.3); }
.text-white { color: #fff; }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-white-60 { color: rgba(255, 255, 255, 0.6); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }
.text-white-40 { color: rgba(255, 255, 255, 0.4); }
.text-white-10 { color: rgba(255, 255, 255, 0.1); }
.text-gold { color: var(--gold); }

.font-serif { font-family: 'Noto Serif SC', serif; }
.font-sans { font-family: 'Noto Sans SC', sans-serif; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* ===== 布局 ===== */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

/* ===== 尺寸 ===== */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-5 { width: 1.25rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-80 { width: 20rem; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-5 { height: 1.25rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-52 { height: 13rem; }
.h-64 { height: 16rem; }

.min-h-\[420px\] { min-height: 420px; }
.min-h-\[600px\] { min-height: 600px; }

.aspect-\[3\/4\] { aspect-ratio: 3/4; }

.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-none { max-width: none; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== 间距 ===== */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }
.pt-28 { padding-top: 7rem; }

.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }

.pl-0 { padding-left: 0; }
.pr-0 { padding-right: 0; }

.mt-0 { margin-top: 0; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

/* ===== 边框 ===== */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }

.border-primary-10 { border-color: rgba(61, 50, 41, 0.1); }
.border-primary-20 { border-color: rgba(61, 50, 41, 0.2); }
.border-primary-5 { border-color: rgba(61, 50, 41, 0.05); }
.border-gold { border-color: var(--gold); }
.border-gold-30 { border-color: rgba(212, 175, 55, 0.3); }
.border-gold-40 { border-color: rgba(212, 175, 55, 0.4); }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white-30 { border-color: rgba(255, 255, 255, 0.3); }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ===== 定位 ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-3 { bottom: 0.75rem; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.right-0 { right: 0; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }

.-z-10 { z-index: -10; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ===== 溢出 ===== */
.overflow-hidden { overflow: hidden; }

/* ===== 文字截断 ===== */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ===== 其他 ===== */
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }

.object-cover { object-fit: cover; }
.object-top { object-fit: cover; object-position: top; }

.cursor-default { cursor: default; }
.cursor-pointer { cursor: pointer; }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 500ms; }

.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover\:text-gold:hover { color: var(--gold); }
.hover\:bg-gold-light:hover { background-color: var(--gold-light); }
.hover\:bg-gold-20:hover { background-color: rgba(212, 175, 55, 0.2); }
.hover\:bg-primary-dark:hover { background-color: var(--primary-dark); }
.hover\:border-gold-30:hover { border-color: rgba(212, 175, 55, 0.3); }
.hover\:border-gold-40:hover { border-color: rgba(212, 175, 55, 0.4); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:gap-2:hover { gap: 0.5rem; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:text-gold { color: var(--gold); }
.group:hover .group-hover\:bg-gold-20 { background-color: rgba(212, 175, 55, 0.2); }
.group:hover .group-hover\:gap-2 { gap: 0.5rem; }

.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== 响应式断点 ===== */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:w-auto { width: auto; }
  .sm\:w-40 { width: 10rem; }
  .sm\:h-auto { height: auto; }
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
  .sm\:pl-0 { padding-left: 0; }
  .sm\:pr-4 { padding-right: 1rem; }
  .sm\:flex { display: flex; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:h-20 { height: 5rem; }
  .md\:h-48 { height: 12rem; }
  .md\:h-80 { height: 20rem; }
  .md\:h-auto { height: auto; }
  .md\:w-48 { width: 12rem; }
  .md\:w-64 { width: 16rem; }
  .md\:pt-20 { padding-top: 5rem; }
  .md\:pt-32 { padding-top: 8rem; }
  .md\:pb-20 { padding-bottom: 5rem; }
  .md\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-5 { padding: 1.25rem; }
  .md\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .md\:pr-5 { padding-right: 1.25rem; }
  .md\:gap-5 { gap: 1.25rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:mb-14 { margin-bottom: 3.5rem; }
  .md\:mb-4 { margin-bottom: 1rem; }
  .md\:text-sm { font-size: 0.875rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-left { text-align: left; }
  .md\:min-h-\[700px\] { min-height: 700px; }
  .md\:line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
}

@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:w-auto { width: auto; }
  .lg\:w-80 { width: 20rem; }
  .lg\:max-w-md { max-width: 28rem; }
  .lg\:max-w-xl { max-width: 36rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
}

/* ===== 动画 ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
.animate-slide-up { animation: slideUp 0.6s ease-out forwards; }

/* ===== 导航栏特殊 ===== */
.nav-solid {
  background-color: rgba(249, 247, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.nav-transparent { background-color: transparent; }

/* ===== 渐变 ===== */
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-primary-dark-80 { --tw-gradient-from: rgba(46, 38, 32, 0.8) var(--tw-gradient-from-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-primary-dark-60 { --tw-gradient-from: rgba(46, 38, 32, 0.6) var(--tw-gradient-from-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-primary-dark-40 { --tw-gradient-to: rgba(46, 38, 32, 0.4) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), rgba(46, 38, 32, 0.4) var(--tw-gradient-via-position), var(--tw-gradient-to); }
.via-primary-dark-20 { --tw-gradient-to: rgba(46, 38, 32, 0.2) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), rgba(46, 38, 32, 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to); }
.via-primary-dark-30 { --tw-gradient-to: rgba(46, 38, 32, 0.3) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), rgba(46, 38, 32, 0.3) var(--tw-gradient-via-position), var(--tw-gradient-to); }
.to-primary-dark-80 { --tw-gradient-to: rgba(46, 38, 32, 0.8) var(--tw-gradient-to-position); }
.to-transparent { --tw-gradient-to: transparent var(--tw-gradient-to-position); }

/* ===== Toast ===== */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background-color: var(--primary-dark);
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ===== 移动端菜单 ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: rgba(46, 38, 32, 0.95);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Noto Serif SC', serif;
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== 底部移动端导航 ===== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--warm);
  border-top: 1px solid var(--primary-200);
  display: flex;
  align-items: center;
  justify-content: around;
  height: 4rem;
}
@media (min-width: 768px) {
  .mobile-bottom-nav { display: none; }
}

/* ===== 通用按钮/链接样式 ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--gold);
  color: var(--primary-dark);
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.btn-gold:hover { background-color: var(--gold-light); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 9999px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== 版心：居中定宽，避免超宽全屏拉散 ===== */
.page-px {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .page-px { padding-left: 1.75rem; padding-right: 1.75rem; }
}
@media (min-width: 1024px) {
  .page-px { padding-left: 2rem; padding-right: 2rem; }
}

.page-header {
  padding-top: 7rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .page-header {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
/* ===== 字体改为 layout link 引入后的兜底（@import 保留亦可） ===== */

/* ===== 平台补块：转化 / 表单 / 底栏 ===== */
body {
  padding-bottom: 5.5rem;
}
@media (min-width: 768px) {
  body { padding-bottom: 4.5rem; }
}
body.nav-open { overflow: hidden; }
body.is-home #navbar.nav-transparent .nav-link { color: rgba(255,255,255,0.9); }
body.is-home #navbar.nav-transparent .nav-brand-text { color: #fff; }
body.is-home #navbar.nav-transparent .nav-toggle { color: #fff; }
body.is-home #navbar.nav-solid .nav-link,
body:not(.is-home) #navbar .nav-link { color: var(--primary); }
body.is-home #navbar.nav-solid .nav-brand-text,
body:not(.is-home) #navbar .nav-brand-text { color: var(--primary); }
body.is-home #navbar.nav-solid .nav-toggle,
body:not(.is-home) #navbar .nav-toggle { color: var(--primary); }
#navbar .nav-link.is-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--primary-dark) !important;
  border-radius: 9999px;
  font-weight: 600;
}
#navbar .nav-link.is-cta:hover { background: var(--gold-light); }
#navbar .nav-link.is-active { color: var(--gold) !important; }
#navbar .nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.25rem;
  height: 2px;
  background: var(--gold);
  border-radius: 9999px;
}

.site-main { min-height: 50vh; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consult-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.ug-form {
  background: #fff;
  border: 1px solid rgba(61,50,41,0.1);
  border-radius: 1rem;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.ug-form h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.ug-form .form-sub {
  color: rgba(61,50,41,0.55);
  font-size: 0.8125rem;
  margin-bottom: 1.15rem;
  line-height: 1.55;
}
.ug-form .form-field { margin-bottom: 0.9rem; }
.ug-form label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(61,50,41,0.7);
  margin-bottom: 0.35rem;
}
.ug-form input[type="text"],
.ug-form input[type="tel"],
.ug-form textarea {
  width: 100%;
  border: 1px solid rgba(61,50,41,0.15);
  border-radius: 0.5rem;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: var(--warm);
  color: var(--primary);
  transition: border-color 0.2s;
}
.ug-form input:focus,
.ug-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.ug-form textarea { min-height: 5.5rem; resize: vertical; }
.ug-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.ug-form .form-check input { margin-top: 0.2rem; }
.ug-form .form-check label { margin: 0; }
.ug-form .form-check a { color: var(--gold); text-decoration: underline; }
.ug-form .form-btn {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
}
.ug-form .form-disclaimer {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: rgba(61,50,41,0.45);
  line-height: 1.5;
}

/* 独立咨询区块：左文案 + 右表单，融入暖褐金版式 */
.form-band {
  background: var(--warm-light);
  padding: 3.5rem 0;
}
@media (min-width: 768px) {
  .form-band { padding: 4.5rem 0; }
}
.form-band-inner {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .form-band-inner {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem);
    gap: 2.5rem;
    align-items: start;
  }
}
.form-band-intro {
  padding: 0.25rem 0;
}
.form-band-intro .form-band-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.form-band-intro h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.65rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .form-band-intro h2 { font-size: 2rem; }
}
.form-band-intro .form-band-desc {
  color: rgba(61,50,41,0.62);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 32rem;
}
.form-band-intro .form-band-meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: rgba(61,50,41,0.7);
}
.form-band-intro .form-band-meta a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
}
.form-band .ug-form {
  border-color: rgba(212,175,55,0.28);
  box-shadow: 0 8px 28px rgba(46,38,32,0.06);
}
.form-band .ug-form h3 { display: none; }
.form-band .ug-form .form-sub {
  font-size: 0.8125rem;
  margin-bottom: 1rem;
}

/* 侧栏表单：贴合详情页白卡 */
.ug-shell > aside .ug-form {
  position: sticky;
  top: 5.75rem;
  padding: 1.25rem;
  border-color: rgba(61,50,41,0.1);
  box-shadow: none;
}
.ug-shell > aside .ug-form h3 {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.ug-shell > aside .ug-form h3::before {
  content: "";
  width: 0.25rem;
  height: 1rem;
  background: var(--gold);
  border-radius: 9999px;
}
.ug-shell > aside .ug-form .form-sub { font-size: 0.75rem; }
.ug-shell > aside .ug-form textarea { min-height: 4.5rem; }
.ug-shell > aside .ug-form .form-btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}

/* 简介页内嵌：与白卡区块同级，去双重卡片感 */
.form-embed .ug-form {
  background: #fff;
  border: 1px solid rgba(61,50,41,0.1);
  border-radius: 0.75rem;
  box-shadow: none;
  padding: 1.35rem 1.25rem;
}
.form-embed .ug-form h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}
.form-embed .ug-form h3::before {
  content: "";
  width: 0.25rem;
  height: 1.15rem;
  background: var(--gold);
  border-radius: 9999px;
}

/* 联系页：与联系磁贴同宽同气质 */
.form-contact .ug-form {
  border-radius: 1rem;
  border-color: rgba(61,50,41,0.1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  padding: 1.75rem 1.5rem;
}
.form-contact .ug-form h3 {
  text-align: center;
  font-size: 1.25rem;
}
.form-contact .ug-form .form-sub {
  text-align: center;
}

/* 咨询专页：略加宽、居中 */
.form-consult-page .ug-form {
  max-width: 28rem;
  margin: 0 auto;
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 10px 32px rgba(46,38,32,0.07);
  padding: 1.75rem 1.5rem;
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--gold);
  border-radius: 9999px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.btn-gold-outline:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); }
.btn-primary-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--primary);
  color: #fff;
  border-radius: 9999px;
  font-weight: 500;
  transition: background 0.3s;
}
.btn-primary-solid:hover { background: var(--primary-dark); }

/* 信任条 */
.trust-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  border-top: 1px solid rgba(212,175,55,0.25);
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .trust-inner { grid-template-columns: repeat(4, 1fr); padding-top: 1.75rem; padding-bottom: 1.75rem; }
}
.trust-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.trust-item i { color: var(--gold); font-size: 1.25rem; margin-top: 0.15rem; }
.trust-item strong { display: block; color: #fff; font-size: 0.875rem; }
.trust-item span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.trust-item a { color: var(--gold); }

/* PC 转化条 */
.pc-convert {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  background: rgba(46,38,32,0.97);
  border-top: 1px solid rgba(212,175,55,0.3);
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .pc-convert { display: block; }
}
.pc-convert-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .pc-convert-inner { padding-left: 1.75rem; padding-right: 1.75rem; }
}
.pc-convert-text strong { display: block; color: #fff; font-size: 0.9375rem; }
.pc-convert-text span { color: rgba(255,255,255,0.55); font-size: 0.75rem; }
.pc-convert-actions { display: flex; align-items: center; gap: 0.75rem; }
.pc-convert-phone {
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* 移动底栏（四键，无首页） */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  background: var(--warm);
  border-top: 1px solid var(--primary-200);
  height: 4.25rem;
  padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom));
}
@media (min-width: 768px) {
  .mobile-bar { display: none; }
}
.mobile-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  color: rgba(61,50,41,0.55);
  font-size: 0.6875rem;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
.mobile-bar-item i { font-size: 1.25rem; }
.mobile-bar-item.mobile-cta {
  color: var(--primary-dark);
}
.mobile-bar-item.mobile-cta i {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* 微信弹层 */
.wechat-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(46,38,32,0.55);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.wechat-modal.is-open { display: flex; }
.wechat-modal-box {
  position: relative;
  background: var(--warm-white);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem 1.25rem;
  max-width: 20rem;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 40px rgba(46,38,32,0.18);
}
.wechat-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61,50,41,0.18);
  border-radius: 0.4rem;
  color: var(--primary);
  font-size: 1.125rem;
  background: transparent;
  cursor: pointer;
}
.wechat-modal-close:hover { background: var(--warm-light); }
.wechat-modal-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: var(--primary-100);
  color: var(--primary);
  font-size: 1.35rem;
}
.wechat-modal-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.wechat-modal-desc {
  font-size: 0.8125rem;
  color: rgba(61,50,41,0.55);
  line-height: 1.5;
  margin: 0;
}
.wechat-qr {
  width: 180px;
  height: 180px;
  margin: 1rem auto 0.25rem;
  object-fit: contain;
  background: #fff;
  border-radius: 0.35rem;
}
.wechat-id-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.85rem 0 0.35rem;
}
.wechat-id-label {
  font-size: 0.8125rem;
  color: rgba(61,50,41,0.55);
}
.wechat-id-value {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
}
.wechat-modal-box [data-copy-wechat] {
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  padding: 0.35rem 0.75rem;
  border-radius: 0.4rem;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
}
.wechat-modal-box [data-copy-wechat]:hover { background: var(--warm-light); }
.wechat-id-hint {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #9a3412 !important;
  margin: 0.65rem 0 0.85rem !important;
  line-height: 1.5;
}
.wechat-id-hint strong {
  font-size: 1rem;
  color: #b91c1c;
}
.wechat-modal-dismiss {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(61,50,41,0.16);
  border-radius: 0.45rem;
  background: #fff;
  color: rgba(61,50,41,0.7);
  font-size: 0.9375rem;
  cursor: pointer;
}
.wechat-modal-dismiss:hover { background: var(--warm-light); color: var(--primary); }
.ug-thanks-wechat .wechat-id-row,
.ug-thanks-wechat .wechat-id-hint { text-align: center; }
.ug-thanks-wechat [data-copy-wechat] {
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  padding: 0.35rem 0.75rem;
  border-radius: 0.4rem;
  cursor: pointer;
  font-size: 0.8125rem;
}

/* 页脚技术支持 */
.footer-tech {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
}
.footer-tech a { color: rgba(255,255,255,0.45); }
.footer-tech a:hover { color: var(--gold); }
.footer-disclaimer { font-size: 0.6875rem; color: rgba(255,255,255,0.4); max-width: 40rem; }
.footer-beian { font-size: 0.6875rem; color: rgba(255,255,255,0.35); margin-top: 0.35rem; }
.footer-wechat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
}
.footer-qr { margin-top: 0.75rem; width: 96px; height: 96px; border-radius: 0.5rem; object-fit: cover; }

/* 栏目头 */
.page-hero {
  position: relative;
  background: var(--primary-dark);
  padding: 5.5rem 0 3.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-hero { padding: 6.5rem 0 4.5rem; }
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(46,38,32,0.75), rgba(46,38,32,0.9));
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero .crumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.page-hero .crumbs a { color: rgba(255,255,255,0.65); }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero .crumbs .current { color: var(--gold); }

/* 列表去图：案例 / 资讯文字卡 */
.ug-case-card,
.ug-news-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(61,50,41,0.1);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  transition: all 0.3s;
}
.ug-case-card:hover,
.ug-news-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-2px);
}
.ug-case-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 0.65rem;
}
.ug-case-card h3,
.ug-news-card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.0625rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.ug-case-card:hover h3,
.ug-news-card:hover h3 { color: var(--gold); }
.ug-case-card p,
.ug-news-card p {
  font-size: 0.875rem;
  color: rgba(61,50,41,0.6);
  line-height: 1.6;
}
.ug-news-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: rgba(61,50,41,0.4);
}
.ug-badge {
  padding: 0.15rem 0.5rem;
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  border-radius: 9999px;
  font-size: 0.6875rem;
}

/* 领域卡（无服务图，金褐渐变头） */
.ug-practice-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(61,50,41,0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}
.ug-practice-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-0.25rem);
}
.ug-practice-head {
  position: relative;
  height: 7.5rem;
  background: linear-gradient(135deg, #2E2620 0%, #5A4F45 55%, #3D3229 100%);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ug-practice-head .icon-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.ug-practice-head h3 {
  font-family: 'Noto Serif SC', serif;
  color: #fff;
  font-size: 1.125rem;
}
.ug-practice-body { padding: 1.25rem; }
.ug-practice-body p {
  font-size: 0.875rem;
  color: rgba(61,50,41,0.6);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ug-practice-more {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
}
.ug-practice-card:hover .ug-practice-more { gap: 0.5rem; }

/* 首页资讯去图横卡 */
.ug-article-row {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(61,50,41,0.1);
  border-radius: 0.75rem;
  padding: 1.15rem 1.25rem;
  transition: border-color 0.3s;
}
.ug-article-row:hover { border-color: rgba(212,175,55,0.4); }
.ug-article-row h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.0625rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.ug-article-row:hover h3 { color: var(--gold); }
.ug-article-row p {
  font-size: 0.875rem;
  color: rgba(61,50,41,0.6);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 详情壳 */
.ug-shell {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .ug-shell { grid-template-columns: minmax(0, 1fr) 20.5rem; align-items: start; }
}
.ug-panel {
  background: #fff;
  border: 1px solid rgba(61,50,41,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}
.ug-result-box {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 0.75rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
}
.ug-result-box strong { display: block; color: var(--gold-dark); margin-bottom: 0.35rem; font-size: 0.8125rem; }
.ug-result-box p { color: var(--primary); font-size: 0.9375rem; }
.ug-meta-card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid rgba(61,50,41,0.08);
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  background: var(--warm);
}
.ug-meta-card img { width: 3.5rem; height: 3.5rem; border-radius: 9999px; object-fit: cover; }
.ug-meta-card strong { display: block; color: var(--primary); }
.ug-meta-card span { font-size: 0.8125rem; color: rgba(61,50,41,0.55); }
.ug-article-lead {
  font-size: 1.05rem;
  color: rgba(61,50,41,0.75);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}
.ug-faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61,50,41,0.08);
}
.ug-faq-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.35rem; }
.ug-faq-item p { font-size: 0.875rem; color: rgba(61,50,41,0.65); }

/* prose */
.prose { color: rgba(61,50,41,0.8); line-height: 1.8; font-size: 0.975rem; }
.prose h2, .prose h3, .prose h4 {
  font-family: 'Noto Serif SC', serif;
  color: var(--primary);
  margin: 1.5rem 0 0.75rem;
}
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1rem 1.25rem; }
.prose li { margin-bottom: 0.35rem; }
.prose img { max-width: 100%; height: auto; border-radius: 0.5rem; margin: 1rem 0; }
.prose a { color: var(--gold-dark); text-decoration: underline; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1rem 0;
  color: rgba(61,50,41,0.7);
  font-family: 'Noto Serif SC', serif;
}

/* 三步流程 */
.ug-steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .ug-steps { grid-template-columns: repeat(3, 1fr); }
}
.ug-step {
  background: #fff;
  border: 1px solid rgba(61,50,41,0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  position: relative;
}
.ug-step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Noto Serif SC', serif;
  color: rgba(212,175,55,0.35);
  font-size: 1.5rem;
  font-weight: 700;
}
.ug-step h3 { font-size: 1.05rem; color: var(--primary); margin: 0.5rem 0; }
.ug-step p { font-size: 0.875rem; color: rgba(61,50,41,0.6); }
.ug-step-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 相关推荐 */
.ug-related { padding: 3rem 0; background: var(--warm-light); }
.ug-related h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.ug-related-block { margin-top: 1.5rem; }
.ug-related-block h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.75rem; }
.ug-related-list { display: grid; gap: 0.5rem; }
.ug-related-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid rgba(61,50,41,0.08);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: var(--primary);
}
.ug-related-item:hover { border-color: rgba(212,175,55,0.4); color: var(--gold); }
.ug-related-lawyer {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid rgba(61,50,41,0.1);
  margin-bottom: 1rem;
}
.ug-related-lawyer img { width: 4rem; height: 4rem; border-radius: 9999px; object-fit: cover; }

/* 感谢 / 404 */
.ug-thanks, .ug-error {
  padding: 6rem 1rem 4rem;
  text-align: center;
}
.ug-thanks-icon, .ug-error-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.ug-thanks h1, .ug-error h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.75rem;
  color: var(--primary);
}
.ug-thanks-actions, .ug-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.ug-thanks-wechat { margin: 1.25rem auto; max-width: 16rem; }
.ug-thanks-hours {
  margin: 1.5rem auto;
  max-width: 28rem;
  padding: 1rem;
  background: var(--warm-light);
  border-radius: 0.75rem;
  text-align: left;
}
.ug-thanks-hours h2 { font-size: 1rem; margin-bottom: 0.35rem; color: var(--primary); }
.ug-off-hours {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #b45309;
}
.ug-error-practices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.ug-error-practices a {
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(61,50,41,0.15);
  font-size: 0.8125rem;
  color: var(--primary);
}
.ug-error-practices a:hover { border-color: var(--gold); color: var(--gold); }

/* Hero 律师卡微信区 */
.hero-wechat-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-wechat-row img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  object-fit: cover;
  background: #fff;
  padding: 2px;
}
.hero-card-glass {
  background-color: rgba(249,247,244,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-stat {
  background-color: rgba(255,255,255,0.05);
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.section-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--gold);
}
.intro-deco-br {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 1rem;
  z-index: -1;
}
.intro-deco-tl {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 4rem;
  height: 4rem;
  background: rgba(212,175,55,0.1);
  border-radius: 9999px;
  z-index: -1;
}
@media (max-width: 1023px) {
  .intro-deco-br, .intro-deco-tl { display: none; }
}
.photo-fallback {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2E2620, #5A4F45);
  color: var(--gold);
  font-family: 'Noto Serif SC', serif;
  font-size: 3rem;
  font-weight: 700;
}
.profile-side-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(61,50,41,0.1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.profile-side-card .aspect-photo { aspect-ratio: 3/4; overflow: hidden; }
.section-bar {
  width: 0.25rem;
  height: 1.25rem;
  background: var(--gold);
  border-radius: 9999px;
}
.nap-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: rgba(61,50,41,0.75);
}
.nap-row i { color: var(--gold); margin-top: 0.15rem; }
.contact-tile {
  display: block;
  background: #fff;
  border: 1px solid rgba(61,50,41,0.1);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.contact-tile:hover { border-color: rgba(212,175,55,0.4); }
.contact-tile-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.alert-soft {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: rgba(212,175,55,0.08);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(61,50,41,0.65);
  margin-bottom: 1rem;
}
.mt-section { margin-top: 2rem; }
.max-form { max-width: 28rem; margin-left: auto; margin-right: auto; }

/* 首页 Hero 无图兜底 */
.hero-fallback-bg {
  background: linear-gradient(145deg, #1a1612 0%, #2E2620 40%, #3D3229 100%);
}

.border, .border-2, .border-t { border-style: solid; }
.border-t { border-left: 0; border-right: 0; border-bottom: 0; }
.bg-primary { background-color: var(--primary); }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-wide { letter-spacing: 0.025rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.ml-4 { margin-left: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
