:root {
  --camel-50: #FAF5EF;
  --camel-100: #F0E6D3;
  --camel-200: #E5D2B5;
  --camel-300: #D4B894;
  --camel-400: #C4A882;
  --camel-500: #B8956B;
  --camel-600: #A67C52;
  --camel-700: #8B6543;
  --camel-800: #6E4F35;
  --camel-900: #523B28;
  --wood-50: #FBF8F3;
  --wood-100: #F5EFE6;
  --wood-200: #EDE4D3;
  --wood-300: #E0D2BC;
  --wood-400: #C8B89E;
  --ink: #1A1A1A;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #fff;
  --primary: var(--camel-500);
  --primary-dark: var(--camel-600);
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-pill: 9999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: Inter, system-ui, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--wood-50);
  line-height: 1.6;
  padding-bottom: 88px;
}

@media (min-width: 768px) {
  body { padding-bottom: 72px; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
.font-serif { font-family: "Noto Serif SC", Georgia, serif; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.container-lawyer {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container-lawyer { padding: 0 2rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.85rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--camel-500);
  color: #fff;
  border-color: var(--camel-500);
}
.btn-primary:hover { background: var(--camel-600); border-color: var(--camel-600); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); }
.btn-outline-camel {
  background: transparent;
  color: var(--camel-600);
  border-color: var(--camel-500);
}
.btn-outline-camel:hover { background: var(--camel-50); }
.btn-white {
  background: #fff;
  color: #111;
}
.btn-white:hover { background: #f3f4f6; }
.btn-small { padding: 0.5rem 1rem; font-size: 0.8125rem; }

/* ========== NAV ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.is-solid,
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) {
  .navbar-inner { height: 80px; }
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.navbar-brand img,
.navbar-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .navbar-brand img,
  .navbar-brand-mark { width: 40px; height: 40px; }
}
.navbar-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--camel-500);
  color: #fff;
  font-size: 1.1rem;
}
.navbar-name {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .navbar-name { font-size: 1.25rem; }
}
.navbar.is-solid .navbar-name,
.navbar.scrolled .navbar-name { color: #1f2937; }

.navbar-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .navbar-nav { display: flex; }
}
.navbar-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  transition: color 0.2s;
}
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--camel-300); }
.navbar.is-solid .navbar-nav a,
.navbar.scrolled .navbar-nav a { color: #374151; }
.navbar.is-solid .navbar-nav a:hover,
.navbar.is-solid .navbar-nav a.active,
.navbar.scrolled .navbar-nav a:hover,
.navbar.scrolled .navbar-nav a.active { color: var(--camel-600); }
.navbar-nav a.is-cta {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}
.navbar-nav a.is-cta:hover { background: rgba(255,255,255,0.1); }
.navbar.is-solid .navbar-nav a.is-cta,
.navbar.scrolled .navbar-nav a.is-cta {
  border-color: var(--camel-500);
  color: var(--camel-600);
}
.navbar.is-solid .navbar-nav a.is-cta:hover,
.navbar.scrolled .navbar-nav a.is-cta:hover { background: var(--camel-50); }

.navbar-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}
.navbar.is-solid .navbar-toggle,
.navbar.scrolled .navbar-toggle { color: #1f2937; }
@media (min-width: 768px) {
  .navbar-toggle { display: none; }
}

.navbar-mobile {
  display: none;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.navbar-mobile.is-open { display: block; }
@media (min-width: 768px) {
  .navbar-mobile,
  .navbar-mobile.is-open { display: none; }
}
.navbar-mobile-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.navbar-mobile a {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.navbar-mobile a:hover,
.navbar-mobile a.active {
  background: var(--camel-50);
  color: var(--camel-700);
}
.navbar-mobile a.is-cta {
  margin: 0.5rem 1rem 0;
  text-align: center;
  background: var(--camel-500);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.25rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { min-height: 640px; }
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img,
.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-fallback {
  background: linear-gradient(160deg, #3a2a1c 0%, #6E4F35 45%, #B8956B 100%);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6rem 0 5rem;
}
@media (min-width: 768px) {
  .hero-content { padding: 8rem 0 6rem; }
}
.hero-kicker {
  color: var(--camel-300);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: "Noto Serif SC", Georgia, serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  max-width: 40rem;
}
@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}
.hero-lead {
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 36rem;
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

/* ========== LAWYER BAR ========== */
.lawyer-bar {
  background: var(--wood-100);
  border-bottom: 1px solid var(--wood-200);
}
.lawyer-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .lawyer-bar-inner {
    flex-direction: row;
    padding: 1.25rem 0;
  }
}
.lawyer-bar-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: #4b5563;
}
@media (min-width: 768px) {
  .lawyer-bar-meta { justify-content: flex-start; font-size: 0.875rem; }
}
.lawyer-bar-meta .name { color: #1f2937; font-weight: 500; }
.lawyer-bar-meta .sep { color: #d1d5db; display: none; }
@media (min-width: 768px) {
  .lawyer-bar-meta .sep { display: inline; }
}
.lawyer-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lawyer-bar-tel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}
.lawyer-bar-tel:hover { color: var(--camel-700); }
.lawyer-bar-tel .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--camel-100);
  color: var(--camel-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lawyer-bar-wechat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lawyer-bar-wechat img,
.lawyer-bar-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--camel-100);
}
.lawyer-bar-wechat small { display: block; font-size: 0.7rem; color: #6b7280; }
.lawyer-bar-wechat strong { font-size: 0.75rem; color: #374151; }
.lawyer-bar-qr {
  width: 72px;
  height: 72px;
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lawyer-bar-qr img { width: 100%; height: 100%; object-fit: cover; }
.lawyer-bar-qr button,
.lawyer-bar-qr a.placeholder {
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 100%;
  height: 100%;
  font-family: inherit;
}
.lawyer-bar-qr .placeholder {
  text-align: center;
  color: #16a34a;
  font-size: 0.6rem;
}
.lawyer-bar-qr .placeholder i { display: block; font-size: 1.4rem; }

/* ========== INTRO ========== */
.intro-section {
  background: var(--wood-50);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .intro-section { padding: 6rem 0; }
}
.section-eyebrow {
  font-size: 0.875rem;
  color: #6b7280;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.intro-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .intro-grid { flex-direction: row; gap: 4rem; align-items: flex-start; }
}
.intro-photo {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .intro-photo { width: 45%; }
}
.intro-photo-wrap {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .intro-photo-wrap { margin: 0; }
}
.intro-photo-wrap img,
.intro-photo-fallback {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.intro-photo-fallback {
  background: linear-gradient(160deg, var(--camel-200), var(--camel-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 2rem;
}
.intro-badge {
  position: absolute;
  right: -8px;
  bottom: -12px;
  background: var(--camel-500);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  font-size: 0.75rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .intro-badge { right: -16px; bottom: -16px; }
}
.intro-copy { flex: 1; }
@media (min-width: 1024px) {
  .intro-copy { padding-top: 1.5rem; }
}
.intro-copy h2 {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1.25rem;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .intro-copy h2 { font-size: 1.875rem; }
}
.intro-copy h2 span {
  display: block;
  font-size: 1.125rem;
  font-weight: 400;
  color: #6b7280;
  margin-top: 0.25rem;
}
.intro-copy p {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.intro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.intro-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.intro-chip i { color: var(--camel-500); font-size: 0.5rem; }
.intro-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--camel-600);
  font-size: 0.875rem;
  font-weight: 500;
}
.intro-more:hover { color: var(--camel-800); }

/* ========== SERVICES ========== */
.svc-section {
  background: var(--wood-100);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .svc-section { padding: 6rem 0; }
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.5rem;
  }
}
.section-en {
  font-size: 0.75rem;
  color: #6b7280;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-head h2,
.section-title {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 1.5rem;
  color: #1f2937;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section-head h2,
  .section-title { font-size: 2.25rem; }
}
.section-sub {
  font-family: "Noto Serif SC", Georgia, serif;
  font-style: italic;
  color: #6b7280;
  font-size: 1.125rem;
  margin-top: 0.15rem;
}
.section-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 28rem;
}
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.svc-card {
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.6rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.svc-card:hover {
  border-color: var(--camel-300);
  box-shadow: 0 8px 20px rgba(168,124,82,0.1);
  transform: translateY(-2px);
}
.svc-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--camel-50);
  color: var(--camel-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1.15rem;
}
.svc-card:hover .icon { background: var(--camel-100); }
.svc-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.6rem;
}
.svc-card:hover h3 { color: var(--camel-700); }
.svc-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* practice list: alternating skins, no cover images */
.svc-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .svc-page-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .svc-page-grid { grid-template-columns: repeat(4, 1fr); }
}
.svc-page-card {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--wood-200);
  background: #fff;
  padding: 1.6rem 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.svc-page-card:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.svc-page-card:nth-child(4n+1) {
  background: var(--gray-800);
  border-color: #374151;
  color: #fff;
}
.svc-page-card:nth-child(4n+3) {
  background: var(--camel-50);
  border-color: var(--camel-200);
}
.svc-page-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--camel-100);
  color: var(--camel-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  font-size: 1.15rem;
}
.svc-page-card:nth-child(4n+1) .icon {
  background: rgba(255,255,255,0.1);
  color: var(--camel-300);
}
.svc-page-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #1f2937;
}
.svc-page-card:nth-child(4n+1) h3 { color: #fff; }
.svc-page-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #4b5563;
}
.svc-page-card:nth-child(4n+1) p { color: #d1d5db; }
.svc-page-card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--camel-600);
}
.svc-page-card:nth-child(4n+1) .more { color: var(--camel-300); }

/* ========== CTA ========== */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .cta-band { padding: 7rem 0; }
}
.cta-band-bg {
  position: absolute;
  inset: 0;
}
.cta-band-bg img,
.cta-band-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.cta-band-fallback {
  background: linear-gradient(120deg, #1f2937, #6E4F35);
}
.cta-band-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.4));
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}
.cta-band h2 {
  font-family: "Noto Serif SC", Georgia, serif;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .cta-band h2 { font-size: 2.5rem; }
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 32rem;
}
.btn-cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: #111;
  border-radius: var(--radius-pill);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.btn-cta-arrow span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.btn-cta-arrow:hover { background: #f3f4f6; }
.btn-cta-arrow:hover span { background: var(--camel-600); }

/* ========== CASES / NEWS CARDS (no covers) ========== */
.list-section { padding: 4rem 0; }
@media (min-width: 768px) {
  .list-section { padding: 6rem 0; }
}
.list-section.is-white { background: #fff; }
.list-section.is-wood { background: var(--wood-50); }
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .card-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}
.case-card,
.news-card {
  display: block;
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: var(--radius-2xl);
  padding: 1.5rem 1.6rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.case-card:hover,
.news-card:hover {
  border-color: var(--camel-300);
  box-shadow: 0 8px 20px rgba(168,124,82,0.1);
}
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--camel-50);
  color: var(--camel-700);
  margin-bottom: 0.75rem;
}
.tag-anon { background: var(--wood-100); color: #6b7280; }
.case-card h3,
.news-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.45;
  margin-bottom: 0.6rem;
}
.case-card:hover h3,
.news-card:hover h3 { color: var(--camel-700); }
.case-card p,
.news-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-foot {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--wood-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #9ca3af;
}
.card-foot .go {
  font-size: 0.875rem;
  color: var(--camel-600);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.news-card:nth-child(3n+2) {
  background: var(--gray-800);
  border-color: #374151;
}
.news-card:nth-child(3n+2) h3 { color: #fff; }
.news-card:nth-child(3n+2):hover h3 { color: var(--camel-300); }
.news-card:nth-child(3n+2) p { color: #d1d5db; }
.news-card:nth-child(3n+2) .tag {
  background: var(--camel-500);
  color: #fff;
}
.news-card:nth-child(3n+2) .card-foot { border-color: #374151; color: #9ca3af; }
.news-card:nth-child(3n+2) .go { color: var(--camel-300); }
.section-more {
  text-align: center;
  margin-top: 2.5rem;
}
.section-more a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--camel-600);
  font-size: 0.875rem;
  font-weight: 500;
}
.section-more a:hover { color: var(--camel-800); }

/* ========== PAGE HEADER ========== */
.page-header {
  position: relative;
  background: var(--gray-800);
  padding: 6.5rem 0 3.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-header { padding: 8rem 0 5rem; }
}
.page-header.has-img .page-header-bg {
  position: absolute;
  inset: 0;
}
.page-header.has-img .page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-header.has-img .page-header-veil {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,0.72);
}
.page-header-inner { position: relative; z-index: 1; }
.page-header .kicker {
  color: var(--camel-400);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-header h1 {
  font-family: "Noto Serif SC", Georgia, serif;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-header h1 { font-size: 2.5rem; }
}
.page-header .lead {
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  max-width: 36rem;
  line-height: 1.7;
}
.crumbs {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}
.crumbs a:hover { color: #fff; }
.crumbs .sep { margin: 0 0.5rem; }

/* ========== ABOUT ========== */
.about-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
}
@media (min-width: 1024px) {
  .about-layout { flex-direction: row; gap: 4rem; }
}
.about-side {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .about-side { width: 40%; }
  .about-side-sticky { position: sticky; top: 6rem; }
}
.about-side img,
.about-side-fallback {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
@media (min-width: 1024px) {
  .about-side img,
  .about-side-fallback { margin: 0; }
}
.about-side-fallback {
  background: linear-gradient(160deg, var(--camel-200), var(--camel-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 2rem;
}
.info-card {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}
.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}
.info-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  padding: 0.4rem 0;
}
.info-row span { color: #6b7280; }
.info-row strong { color: #1f2937; font-weight: 500; text-align: right; }
.info-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  padding: 0.35rem 0;
}
.info-link:hover { color: var(--camel-700); }
.info-link .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--camel-50);
  color: var(--camel-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-main { flex: 1; min-width: 0; }
.about-block {
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .about-block { padding: 2rem; }
}
.about-block h2,
.about-heading {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}
.honor-list { list-style: none; }
.honor-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #4b5563;
  font-size: 0.9375rem;
  padding: 0.4rem 0;
}
.honor-item i { color: var(--camel-400); margin-top: 0.2rem; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 3rem 0 4rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.contact-tile {
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: var(--radius-2xl);
  padding: 1.5rem 1.75rem;
}
.contact-tile + .contact-tile { margin-top: 1.5rem; }
.contact-tile-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-tile .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--camel-50);
  color: var(--camel-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-tile .icon.is-wechat { background: #f0fdf4; color: #16a34a; }
.contact-tile .en {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.2rem;
}
.contact-tile .value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
}
.contact-tile .value:hover { color: var(--camel-700); }
.contact-tile .hint { font-size: 0.875rem; color: #6b7280; margin-top: 0.4rem; }
.contact-tip {
  background: var(--camel-50);
  border: 1px solid var(--camel-100);
  border-radius: var(--radius-2xl);
  padding: 1.5rem 1.75rem;
}
.contact-tip .en { color: var(--camel-700); }
.contact-tip p { color: rgba(82,59,40,0.7); font-size: 0.875rem; line-height: 1.7; }

/* ========== DETAIL ========== */
.detail-page { padding: 2.5rem 0 4rem; }
.detail-shell {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .detail-shell {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 3rem;
  }
}
.detail-article {
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .detail-article { padding: 2.5rem; }
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--camel-600); }
.article-lead {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.meta-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
  padding: 0.85rem 1rem;
  background: var(--wood-50);
  border: 1px solid var(--wood-200);
  border-radius: 12px;
}
.meta-card img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}
.meta-card strong { display: block; color: #1f2937; }
.meta-card span { font-size: 0.8rem; color: #6b7280; }
.result-box {
  display: flex;
  gap: 0.75rem;
  background: var(--camel-50);
  border: 1px solid var(--camel-100);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
}
.result-box i { color: var(--camel-600); margin-top: 0.15rem; }
.result-box .label { font-size: 0.75rem; color: #6b7280; }
.result-box .text { font-size: 0.875rem; font-weight: 500; color: #1f2937; }
.alert-soft {
  background: var(--wood-100);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: #4b5563;
  margin-bottom: 1rem;
}
.faq-item {
  border-bottom: 1px solid var(--wood-100);
  padding: 1rem 0;
}
.faq-item h3 { font-size: 0.95rem; color: #1f2937; margin-bottom: 0.4rem; }
.faq-item p { font-size: 0.875rem; color: #4b5563; line-height: 1.7; }
.disclaimer-box {
  margin-top: 1.5rem;
  background: var(--gray-800);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  color: #9ca3af;
  font-size: 0.8125rem;
  line-height: 1.7;
}
.disclaimer-box h4 { color: #fff; font-size: 0.875rem; margin-bottom: 0.5rem; }

/* ========== TRUST / STEPS ========== */
.trust-bar {
  background: var(--wood-100);
  border-top: 1px solid var(--wood-200);
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .trust-inner { grid-template-columns: repeat(4, 1fr); padding: 1.75rem 0; }
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.trust-item i { color: var(--camel-600); font-size: 1.25rem; }
.trust-item strong { display: block; font-size: 0.875rem; color: #1f2937; }
.trust-item span { font-size: 0.75rem; color: #6b7280; }

.steps-section {
  background: var(--gray-800);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .steps-section { padding: 6rem 0; }
}
.steps-section .section-en { color: var(--camel-400); }
.steps-section h2 { color: #fff; text-align: center; }
.steps-section .lead {
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
  max-width: 28rem;
  margin: 0.75rem auto 0;
}
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.step-item {
  flex: 1 1 16.5rem;
  max-width: 22rem;
  min-width: 0;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  background: #111827;
  border: 1px solid #374151;
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.25rem;
}
.step-item .num {
  display: block;
  font-family: "Noto Serif SC", Georgia, serif;
  color: var(--camel-500);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-item .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--camel-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-item h3,
.step-item p {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.step-item h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step-item p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.7;
}
.steps-cta { text-align: center; margin-top: 2.5rem; }

/* ========== FORMS (multi-context) ========== */
.cm-form h3 {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 1.15rem;
  color: #1f2937;
  margin-bottom: 0.35rem;
}
.cm-form .form-sub {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.cm-form .form-field { margin-bottom: 0.85rem; }
.cm-form label {
  display: block;
  font-size: 0.8125rem;
  color: #4b5563;
  margin-bottom: 0.35rem;
}
.cm-form input[type="text"],
.cm-form input[type="tel"],
.cm-form textarea {
  width: 100%;
  border: 1px solid var(--wood-200);
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  color: #1f2937;
  font-family: inherit;
  outline: none;
}
.cm-form input:focus,
.cm-form textarea:focus { border-color: var(--camel-500); }
.cm-form textarea { min-height: 96px; resize: vertical; }
.cm-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.cm-form .form-check label { margin: 0; line-height: 1.5; }
.cm-form .form-check a { color: var(--camel-600); text-decoration: underline; }
.cm-form .form-check input { margin-top: 3px; accent-color: var(--camel-500); }
.cm-form .form-btn { width: 100%; margin-top: 0.35rem; }
.cm-form .form-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.6;
}
.consult-error {
  background: #fde8e4;
  color: var(--camel-800);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.form-band {
  background: var(--wood-100);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .form-band { padding: 5rem 0; }
}
.form-band-inner {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .form-band-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}
.form-band-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--camel-600);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.form-band-kicker .line {
  width: 32px;
  height: 1px;
  background: var(--camel-500);
}
.form-band-intro h2 {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 1.6rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.form-band-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.form-band-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}
.form-band-meta i { color: var(--camel-600); margin-right: 0.35rem; }
.form-band-meta a { color: var(--camel-600); font-weight: 600; }
.form-band-card {
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
}
.form-band-card .cm-form h3,
.form-band-card .cm-form .form-sub { display: none; }

.form-sidebar {
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
}
@media (min-width: 1024px) {
  .form-sidebar { position: sticky; top: 96px; }
}
.form-sidebar .cm-form h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
}
.form-sidebar .cm-form h3::before {
  content: "";
  width: 3px;
  height: 16px;
  background: var(--camel-500);
  border-radius: 2px;
}
.form-sidebar .cm-form .form-sub { font-size: 0.75rem; }
.form-sidebar .cm-form textarea { min-height: 72px; }

.form-about { margin-top: 0.5rem; }
.form-about .cm-form {
  background: transparent;
  border: 0;
  padding: 0;
}
.form-about .cm-form h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.form-about .cm-form h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--wood-200);
}

.form-contact {
  margin-top: 0.25rem;
}
.form-contact .cm-form h3 { font-size: 1.05rem; }

.form-consult-page { max-width: 40rem; margin: 0 auto; padding: 3rem 0 4rem; }
.form-consult-lead {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.form-consult-lead a { color: var(--camel-600); font-weight: 600; }
.form-consult-page .cm-form {
  background: #fff;
  border: 1px solid var(--camel-200);
  border-radius: var(--radius-2xl);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 28px rgba(82,59,40,0.06);
}

/* ========== PAGER ========== */
.pager {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.pager ul,
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
}
.pager a,
.pager span,
.pager li a,
.pager li span,
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--wood-200);
  color: #4b5563;
  font-size: 0.8125rem;
  background: #fff;
}
.pager a:hover,
.pagination a:hover {
  border-color: var(--camel-500);
  color: var(--camel-600);
}
.pager .active,
.pager .current,
.pager span.current,
.pager li.active span,
.pager li.active a,
.pagination .active,
.pagination .current {
  background: var(--camel-500);
  border-color: var(--camel-500);
  color: #fff;
}
.pager .disabled,
.pager li.disabled span,
.pagination .disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--gray-800);
  border-radius: 1.5rem 1.5rem 0 0;
  margin: 4rem 0.5rem 0;
}
@media (min-width: 768px) {
  .site-footer { margin: 6rem 1rem 0; }
}
.footer-inner { padding: 3rem 0; }
@media (min-width: 768px) {
  .footer-inner { padding: 4rem 0; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.footer-brand img,
.footer-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}
.footer-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--camel-500);
  color: #fff;
}
.footer-brand span {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; }
}
.footer-text {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 18rem;
  margin: 0.5rem 0 1.25rem;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #4b5563;
}
.footer-links a:hover { color: #fff; text-decoration-color: #fff; }
.footer-nap {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: #9ca3af;
}
.footer-nap i { color: var(--camel-400); margin-right: 0.4rem; }
.footer-nap a:hover { color: #fff; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #6b7280;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom a:hover { color: #d1d5db; }
.footer-tech { color: #6b7280; }
.footer-tech a { color: #9ca3af; }
.footer-disclaimer { margin-bottom: 0.35rem; }

/* ========== PC / MOBILE CONVERT ========== */
.pc-convert {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(251,248,243,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--wood-200);
}
@media (min-width: 768px) {
  .pc-convert { display: block; }
}
.pc-convert-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pc-convert-text strong {
  display: block;
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 0.95rem;
  color: #1f2937;
}
.pc-convert-text span { font-size: 0.75rem; color: #6b7280; }
.pc-convert-actions { display: flex; align-items: center; gap: 0.75rem; }
.pc-convert-phone {
  color: var(--camel-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 45;
  background: var(--gray-800);
  border-top: 1px solid #374151;
  padding: 4px 0 calc(4px + env(safe-area-inset-bottom, 0px));
  height: auto;
  min-height: 64px;
}
@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: 2px;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 0.625rem;
  cursor: pointer;
  white-space: nowrap;
}
.mobile-bar-item i { font-size: 0.95rem; }
.mobile-bar-item.mobile-cta { color: var(--camel-400); }

/* ========== WECHAT MODAL ========== */
#wechat-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17,24,39,0.5);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#wechat-modal.is-open { display: flex; }
.wechat-modal-box {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}
.wechat-modal-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 1.25rem;
  cursor: pointer;
}
.wechat-modal-icon {
  width: 48px; height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--camel-50);
  color: var(--camel-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.wechat-modal-title {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.35rem;
}
.wechat-modal-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.wechat-qr {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin: 0 auto 1rem;
  border-radius: 12px;
  border: 1px solid var(--wood-200);
}
.wechat-modal-dismiss {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--wood-200);
  background: #fff;
  color: #4b5563;
  font-size: 0.875rem;
  cursor: pointer;
}
.wechat-modal-dismiss:hover { border-color: var(--camel-500); color: var(--camel-600); }
.wechat-id-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.wechat-id-label { color: #6b7280; }
.wechat-id-value { color: #1f2937; }
.wechat-id-row button {
  border: 1px solid var(--camel-500);
  background: transparent;
  color: var(--camel-600);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
}
.wechat-id-row button:hover { background: var(--camel-500); color: #fff; }
.wechat-id-hint { margin-top: 0.5rem; font-size: 0.75rem; color: #6b7280; }
.wechat-id-hint strong { color: #b45309; }
@media (min-width: 768px) {
  body:has(#wechat-modal img) .wechat-id-row,
  body:has(#wechat-modal img) .wechat-id-hint { display: none !important; }
}

/* ========== PROSE ========== */
.prose {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.85;
}
.prose p { margin-bottom: 1rem; }
.prose h2, .prose h3 {
  font-family: "Noto Serif SC", Georgia, serif;
  color: #1f2937;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
}
.prose h2 { font-size: 1.25rem; }
.prose h3 { font-size: 1.05rem; }
.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: 8px; }
.prose a { color: var(--camel-600); text-decoration: underline; }

/* ========== RELATED / THANKS / 404 / PRIVACY ========== */
.related-section { padding: 0 0 4rem; }
.related-section h2 {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 1rem;
}
.related-lawyer {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.related-lawyer img {
  width: 64px; height: 64px;
  border-radius: 8px;
  object-fit: cover;
}
.related-block h3 { font-size: 0.95rem; color: #1f2937; margin-bottom: 0.6rem; }
.related-item {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--wood-100);
}
.related-item-title { color: #1f2937; font-size: 0.9rem; }
.related-item:hover .related-item-title { color: var(--camel-700); }

.thanks-page,
.error-page {
  padding: 8rem 1rem 5rem;
  text-align: center;
}
.thanks-icon,
.error-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--camel-50);
  color: var(--camel-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.thanks-page h1,
.error-page h1 {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 1.75rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.thanks-lead,
.error-lead { color: #6b7280; margin-bottom: 1.5rem; }
.thanks-actions,
.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.thanks-wechat {
  background: #fff;
  border: 1px solid var(--wood-200);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.thanks-wechat img { width: 180px; height: 180px; margin: 0 auto 1rem; border-radius: 12px; }
.thanks-hours h2 { font-size: 1rem; margin-bottom: 0.5rem; color: #1f2937; }
.off-hours-tip { font-size: 0.8125rem; color: var(--camel-700); margin-top: 0.5rem; }
.notfound-bg {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--camel-100);
  line-height: 1;
  margin-bottom: -1.5rem;
}
.error-practices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.error-practices a {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--wood-200);
  font-size: 0.8rem;
  color: #374151;
}
.error-practices a:hover { border-color: var(--camel-400); color: var(--camel-700); }

.privacy-wrap {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

.list-wrap { padding: 3rem 0 4rem; }

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