/* ==========================================================================
   陈世民律师 · 视觉系统
   Design System: 墨黑酒红 · 书卷律所
   米白纸感底 / 墨黑衬线标题 / 酒红单一强调色 / 细金线书卷气
   ========================================================================== */

:root {
  /* 色彩 —— 纸感暖底，墨黑字，酒红单一强调 */
  --ink: #1a1a1a;            /* 墨黑：标题与深底 */
  --ink-2: #2a2320;          /* 正文墨色 */
  --cream: #faf8f3;          /* 页面纸底 */
  --cream-2: #f3ede1;        /* 浅交替面 */
  --paper: #ffffff;          /* 卡片纸白 */
  --burgundy: #7a2e2e;       /* 酒红：交互唯一强调色 */
  --burgundy-dark: #5e2222;
  --gold: #b08d4c;           /* 书卷细线点缀（仅装饰用） */

  --text: #2a2320;
  --text-80: rgba(26, 26, 26, 0.82);
  --text-62: rgba(26, 26, 26, 0.62);
  --text-48: rgba(26, 26, 26, 0.48);
  --on-dark-80: rgba(250, 248, 243, 0.82);
  --on-dark-62: rgba(250, 248, 243, 0.62);
  --on-dark-48: rgba(250, 248, 243, 0.48);

  --line: rgba(26, 26, 26, 0.12);
  --line-dark: rgba(250, 248, 243, 0.16);

  --shadow-card: rgba(26, 26, 26, 0.14) 0px 6px 28px 0px;

  --r-sm: 5px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 18px;
  --r-pill: 980px;

  --wrap: 980px;
  --wrap-wide: 1120px;

  /* 政务/司法部风格字体栈：以「微软雅黑」为首选（Windows 系统与微信浏览器默认具备，
     即司法部/政府门户网站同款观感），Mac 回退苹方，Linux 回退文泉驿；思源黑体/
     Noto Sans SC 仅在已安装时生效。全部为系统字体，不嵌入、不分发任何字体文件，
     彻底规避字体版权风险。 */
  --font-display: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB",
    "Source Han Sans SC", "Noto Sans SC", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  --font-text: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB",
    "Source Han Sans SC", "Noto Sans SC", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: var(--burgundy); color: #fff; }

:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 22px; }

/* ==========================================================================
   导航 —— 墨黑实心条，永远浮在内容之上
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 56px;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: var(--wrap-wide);
}

.brand {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cream);
}
.brand:hover { text-decoration: none; opacity: .85; }
.brand span { font-weight: 400; color: var(--gold); margin-left: 4px; font-size: 14px; }

.menu { display: flex; gap: 26px; }
.menu a {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--on-dark-80);
  transition: color .2s ease;
}
.menu a:hover { color: var(--gold); text-decoration: none; }
/* 当前页高亮：导航可定位原则（简诗 AI 导航规范） */
.menu a.active,
.menu a[aria-current="page"] {
  color: var(--gold);
  font-weight: 600;
  position: relative;
}
.menu a.active::after,
.menu a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.btn-phone {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cream);
  padding: 6px 15px;
  border: 1px solid var(--gold);
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.btn-phone:hover { text-decoration: none; background: rgba(176, 141, 76, .16); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  flex: 0 0 44px;
  transition: background .2s ease;
}
.nav-toggle:hover { background: rgba(255, 255, 255, .08); }

/* ==========================================================================
   按钮
   ========================================================================== */
.btn-primary,
.btn-ghost,
.btn-pill {
  display: inline-block;
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all .22s ease;
  text-align: center;
}

.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  padding: 11px 24px;
}
.btn-primary:hover { background: var(--burgundy-dark); text-decoration: none; }
.btn-primary:active { background: #4a1818; }

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid currentColor;
  border-radius: var(--r-pill);
  padding: 10px 22px;
}
.btn-ghost:hover { text-decoration: none; background: rgba(122, 46, 46, .07); }

.on-dark .btn-ghost,
.hero .btn-ghost { color: var(--gold); }
.on-dark .btn-ghost:hover,
.hero .btn-ghost:hover { background: rgba(176, 141, 76, .14); }

.link-more {
  font-size: 15px;
  color: var(--burgundy);
  letter-spacing: 0.5px;
}
.link-more::after { content: " ›"; }
.link-more:hover { text-decoration: underline; }

/* ==========================================================================
   排版基元
   ========================================================================== */
.sec-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.5px;
  margin: 0 0 14px;
  color: var(--ink);
}

.sub-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin: 56px 0 18px;
  color: var(--ink);
}

.lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.62;
  color: var(--text-80);
  margin: 0 0 34px;
  max-width: 44em;
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--burgundy);
  margin: 0 0 14px;
}

.center { text-align: center; }

/* 分区节奏：纸白 / 浅米 交替；深墨用于 CTA/页脚 */
.section { padding: 96px 0; background: var(--cream); }
.section-alt { background: var(--cream-2); }
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark .sec-title,
.section-dark .sub-title,
.section-dark h3,
.section-dark h4 { color: var(--cream); }
.section-dark .lead,
.section-dark p { color: var(--on-dark-80); }
.section-dark a { color: var(--gold); }

.section p { line-height: 1.7; }

/* 书卷细双线分隔（仅装饰） */
.sec-rule {
  width: 64px;
  height: 0;
  border: 0;
  border-top: 1px solid var(--gold);
  box-shadow: 0 4px 0 -3px var(--gold);
  margin: 0 0 30px;
  opacity: .7;
}

/* ==========================================================================
   HERO —— 米白纸底，墨黑衬线，酒红点睛
   ========================================================================== */
.hero {
  background: var(--cream);
  color: var(--ink);
  padding: 92px 0 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  max-width: var(--wrap-wide);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1px;
  margin: 0 0 6px;
  color: var(--ink);
}
.hero h1 span {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--burgundy);
  margin-left: 12px;
  vertical-align: 14px;
}

.hero-role {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.5px;
  color: var(--burgundy);
  margin: 0 0 16px;
}

.hero-tag {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-62);
  margin: 0 0 34px;
  max-width: 30em;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 56px;
  list-style: none;
  padding: 30px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: var(--ink);
}
.hero-stats span {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-48);
  margin-top: 4px;
}

.hero-photo img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

/* ==========================================================================
   执业介绍
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card-soft {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
}
.section-alt .card-soft { background: var(--cream); }
.card-soft h4 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  color: var(--ink);
}
.card-soft p { margin: 0; color: var(--text-80); font-size: 15px; line-height: 1.7; }

.firm { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.firm > div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
}
.section-alt .firm > div { background: var(--cream); }
.firm h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  color: var(--ink);
}
.firm p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--text-80); }

.region {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--burgundy);
  border-radius: var(--r-md);
  padding: 24px 28px;
  font-size: 15px;
  line-height: 2;
  color: var(--text-80);
}
.section-alt .region { background: var(--cream); }
.region strong { color: var(--ink); }

code {
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: .92em;
  background: rgba(26, 26, 26, .05);
  padding: 2px 7px;
  border-radius: var(--r-sm);
  letter-spacing: 0;
  color: var(--burgundy);
}

/* ==========================================================================
   业务领域
   ========================================================================== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.practice-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--burgundy);
  border-radius: var(--r-xl);
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .26s ease, box-shadow .26s ease;
}
.practice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.section-dark .practice-card {
  background: #2e2824;
  border-color: var(--line-dark);
  box-shadow: none;
}
.section-dark .practice-card .pc-head h3 { color: var(--cream); }
.section-dark .practice-card .pc-no { color: var(--gold); }
.section-dark .practice-card .pc-list strong { color: var(--cream); }

.pc-head { margin-bottom: 14px; }
.pc-no {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--burgundy);
  margin-bottom: 10px;
}
.pc-head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin: 0;
  color: var(--ink);
}

.pc-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-62);
  margin: 0 0 20px;
}
.section-dark .pc-desc { color: var(--on-dark-80); }

.pc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pc-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-80);
  padding: 9px 0 9px 18px;
  position: relative;
  border-top: 1px solid var(--line);
}
.section-dark .pc-list li {
  color: var(--on-dark-80);
  border-top-color: var(--line-dark);
}
.section-dark .pc-list li::before { background: var(--gold); }
.pc-list li:first-child { border-top: none; }
.pc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 17px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--burgundy);
}
.pc-list strong { font-weight: 600; color: var(--ink); }

.pc-more { font-size: 15px; color: var(--burgundy); letter-spacing: 0.5px; }
.section-dark .pc-more { color: var(--gold); }

/* ==========================================================================
   分类卡片（法律文章导航）
   ========================================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-card {
  display: block;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 34px 30px;
  color: inherit;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.section-alt .cat-card { background: var(--paper); }
.cat-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--burgundy);
}
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  color: var(--ink);
}
.cat-card p { font-size: 15px; line-height: 1.65; color: var(--text-62); margin: 0 0 16px; }
.cat-card span { font-size: 15px; color: var(--burgundy); letter-spacing: 0.5px; }

/* ==========================================================================
   案例
   ========================================================================== */
.case-list { display: grid; gap: 18px; }

.case {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 32px;
}
.section-alt .case { background: var(--cream); }

.case-meta {
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0;
  color: var(--text-48);
  margin-bottom: 10px;
}
.case h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  color: var(--ink);
}
.case p { font-size: 15px; line-height: 1.7; color: var(--text-80); margin: 0 0 8px; }
.case-result {
  display: inline-block;
  font-size: 14px !important;
  color: var(--ink) !important;
  background: rgba(122, 46, 46, .08);
  border-radius: var(--r-md);
  padding: 8px 14px;
  margin-top: 6px !important;
}
.case-result strong { color: var(--burgundy); }

/* ==========================================================================
   FAQ · 图文卡片（常显完整答案，无手风琴展开）
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.faq-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .2s ease, transform .2s ease;
}
.faq-card:hover {
  box-shadow: 0 10px 28px rgba(26, 26, 26, .08);
  transform: translateY(-2px);
}
.section-alt .faq-card { background: var(--cream); }

.faq-ic {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.faq-ic svg { width: 26px; height: 26px; display: block; }
.faq-ic-labor { background: var(--burgundy); }
.faq-ic-workinjury { background: #b08d4c; }
.faq-ic-traffic { background: #2f6f6a; }
.faq-ic-injury { background: #34506b; }
.faq-ic-general { background: #4a4a4a; }

.faq-main { flex: 1 1 auto; min-width: 0; }
.faq-q {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: .3px;
  color: var(--ink);
  margin: 2px 0 8px;
}
.faq-a {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-80);
}
.faq-a p { margin: 0 0 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--burgundy); }

.faq-cat {
  display: inline-block;
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--burgundy);
  background: rgba(122, 46, 46, .1);
  border-radius: var(--r-pill);
  padding: 3px 11px;
  margin-top: 12px;
}

.faq-group-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 38px 0 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.faq-group-title .gt-count {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-48);
  margin-left: 12px;
}

/* ==========================================================================
   文章列表 / 筛选
   ========================================================================== */
.filter-bar {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 0 0 44px;
}

.filter-btn {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-80);
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 9px 20px;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-btn:hover { background: #ece3d3; }
.filter-btn.active { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }

.group-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin: 56px 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.article-group:first-of-type .group-title { margin-top: 0; }

.post-list { display: grid; gap: 14px; }

.post-card {
  display: block;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 30px;
  color: inherit;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.post-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--burgundy);
}
.post-card h4 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.5px;
  margin: 0 0 9px;
  color: var(--ink);
}
.post-card .p-sum {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-62);
  margin: 0 0 14px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-48);
}
.tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--burgundy);
  background: rgba(122, 46, 46, .1);
  border-radius: var(--r-pill);
  padding: 3px 11px;
}
.post-card .read { margin-left: auto; color: var(--burgundy); font-size: 14px; }

/* ==========================================================================
   文章详情页
   ========================================================================== */
.post-hero {
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 56px;
}
.post-hero .wrap { max-width: 760px; }
.post-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.5px;
  margin: 14px 0 18px;
  color: var(--ink);
}
.post-hero .post-meta { font-size: 14px; }

.breadcrumb {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-48);
}
.breadcrumb a { color: var(--text-62); }
.breadcrumb a:hover { color: var(--burgundy); }
.breadcrumb span { margin: 0 7px; opacity: .5; }

.post-body { padding: 60px 0 88px; }
.post-body .wrap { max-width: 760px; }

.answer-box {
  background: rgba(122, 46, 46, .06);
  border-left: 3px solid var(--burgundy);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 0 0 40px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.answer-box strong { font-weight: 600; color: var(--burgundy); }

.post-body .a-body p,
.post-body > .wrap > p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-80);
  margin: 0 0 22px;
}
.post-body h2 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0.5px;
  margin: 46px 0 16px;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.post-body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 34px 0 12px;
  color: var(--ink);
}
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body ul, .post-body ol { padding-left: 22px; margin: 0 0 22px; }
.post-body li { font-size: 17px; line-height: 1.85; color: var(--text-80); margin-bottom: 8px; }

.law-ref {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-62);
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin: 0 0 22px;
}

.post-cta {
  margin-top: 56px;
  padding: 34px 32px;
  background: var(--ink);
  border-radius: var(--r-xl);
  color: var(--cream);
}
.post-cta h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
  color: var(--cream);
}
.post-cta p { font-size: 15px; color: var(--on-dark-62); margin: 0 0 20px; }
.post-cta .btn-primary { margin-right: 10px; }

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

/* ==========================================================================
   联系
   ========================================================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-list { list-style: none; padding: 0; margin: 26px 0 0; }
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.contact-list li:first-child { border-top: none; }
.contact-list span {
  flex: 0 0 108px;
  font-size: 14px;
  color: var(--text-48);
}

.contact-form { display: grid; gap: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-text);
  font-size: 17px;
  letter-spacing: 0.3px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(122, 46, 46, .14);
}
.contact-form .btn-primary { width: 100%; padding: 13px; }
.form-note { font-size: 12px; color: var(--text-48); margin: 2px 0 0; }

/* ==========================================================================
   页脚
   ========================================================================== */
.site-footer {
  background: var(--ink);
  padding: 44px 0 52px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--on-dark-62);
  letter-spacing: 0.3px;
}
.site-footer p { margin: 0 0 7px; }
.site-footer strong { color: var(--cream); font-weight: 600; }
.site-footer .foot-links { margin: 0 0 16px; display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer .foot-links a { font-size: 12px; color: var(--on-dark-62); }
.site-footer .foot-links a:hover { color: var(--gold); }
.site-footer .beian { margin: 0 0 12px; display: flex; flex-wrap: nowrap; align-items: center; gap: 4px; white-space: nowrap; }
.site-footer .beian a { color: var(--on-dark-62); border-bottom: 1px solid transparent; white-space: nowrap; flex: 0 0 auto; }
.site-footer .beian img { flex: 0 0 auto; display: inline-block; vertical-align: -3px; width: 16px; height: 16px; }
.site-footer .beian a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.site-footer .foot-authority { margin: 0 0 14px; display: flex; gap: 16px 22px; flex-wrap: wrap; align-items: baseline; }
.site-footer .foot-authority .fa-label { color: var(--on-dark-62); font-size: 12px; white-space: nowrap; }
.site-footer .foot-dist { margin: 0 0 14px; font-size: 12px; color: var(--on-dark-62); display: flex; gap: 8px; flex-wrap: wrap; align-items: baseline; }
.site-footer .foot-dist a { color: var(--on-dark-62); border-bottom: 1px solid transparent; }
.site-footer .foot-dist a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.site-footer .foot-authority a { font-size: 12px; color: var(--on-dark-62); border-bottom: 1px solid transparent; }
.site-footer .foot-authority a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.auth-list { margin: 10px 0 6px; padding-left: 22px; }
.auth-list li { margin: 6px 0; line-height: 1.75; color: var(--ink-2); }
.disclaimer {
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  color: var(--on-dark-48);
}

/* ==========================================================================
   响应式
   ========================================================================== */
/* 站点地图枢纽页（sitemap.html） */
.sitemap-cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 12px;
}
.sitemap-group h2 {
  font-size: 17px;
  color: var(--burgundy);
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  margin: 0 0 12px;
}
.sitemap-group ul { list-style: none; margin: 0; padding: 0; }
.sitemap-group li { padding: 7px 0; border-bottom: 1px solid var(--line); }
.sitemap-group li a { color: var(--ink); }
.sitemap-group li a:hover { color: var(--burgundy); text-decoration: none; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-photo { max-width: 340px; }
  .hero h1 { font-size: 58px; }
  .practice-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 834px) {
  .nav-toggle { display: inline-flex; }
  .menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 12px;
    right: 12px;
    flex-direction: column;
    gap: 2px;
    background: var(--ink);
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .35);
    z-index: 101;
  }
  .menu.open { display: flex; }
  .menu a { padding: 12px 14px; border-radius: 9px; color: var(--on-dark-80); }
  .menu a:hover { background: rgba(255, 255, 255, .07); color: var(--gold); text-decoration: none; }
  .section { padding: 68px 0; }
  .sec-title { font-size: 32px; }
  .lead { font-size: 19px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .two-col, .firm { grid-template-columns: 1fr; }
  .post-hero h1 { font-size: 32px; letter-spacing: 0.3px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding: 56px 0 60px; }
  .hero h1 { font-size: 42px; letter-spacing: 0.5px; }
  .hero h1 span { font-size: 22px; vertical-align: 8px; }
  .hero-role { font-size: 20px; }
  .hero-stats { gap: 30px; }
  .hero-stats strong { font-size: 30px; }
  .practice-grid, .cat-grid { grid-template-columns: 1fr; }
  .sec-title { font-size: 28px; }
  .group-title { font-size: 23px; }
  .practice-card, .cat-card { padding: 28px 22px; }
  .case { padding: 24px 22px; }
  .faq-grid { grid-template-columns: 1fr; gap: 14px; }
  .faq-card { padding: 18px 18px; gap: 13px; }
  .faq-ic { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 10px; }
  .faq-ic svg { width: 22px; height: 22px; }
  .faq-q { font-size: 17px; }
  .faq-a { font-size: 14.5px; }
  .faq-group-title { font-size: 20px; margin-top: 30px; }
  .contact-list span { flex-basis: 88px; }
  .hero-cta { gap: 10px; }
  .btn-primary, .btn-ghost { font-size: 16px; padding: 11px 20px; }
}

/* ==========================================================================
   GEO 增强模块 · 2026-08-05
   跳转链接 / 站内搜索 / 目录 / 相关阅读 / 问题索引 / 标准表 / 回顶
   ========================================================================== */

/* --- 无障碍：跳到主要内容 + 屏幕阅读器专用 --- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--burgundy); color: #fff;
  padding: 10px 18px; border-radius: 0 0 var(--r-md) 0;
  font-size: 15px; text-decoration: none;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 3px; }

/* --- 站内搜索（头部） --- */
.site-search { padding-top: 0; padding-bottom: 12px; position: relative; }
.ss-form { display: flex; gap: 8px; align-items: center; }
.ss-form input[type="search"] {
  flex: 1 1 auto; min-width: 0;
  background: var(--paper); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 9px 18px; font-size: 15px;
  font-family: inherit; -webkit-appearance: none; appearance: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.ss-form input[type="search"]::placeholder { color: var(--text-48); }
.ss-form input[type="search"]:focus {
  outline: none; border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(122, 46, 46, 0.12);
}
.ss-form button {
  flex: 0 0 auto; cursor: pointer;
  background: var(--burgundy); color: #fff; border: 0;
  border-radius: var(--r-pill); padding: 9px 20px;
  font-size: 15px; font-family: inherit;
  transition: background .18s ease;
}
.ss-form button:hover { background: var(--burgundy-dark); }
.ss-form.big input[type="search"] { padding: 13px 22px; font-size: 17px; }
.ss-form.big button { padding: 13px 28px; font-size: 17px; }

.ss-result {
  position: absolute; left: 22px; right: 22px; top: 100%;
  z-index: 60; max-height: 62vh; overflow-y: auto;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-card);
  padding: 8px;
}
.ss-result a {
  display: block; padding: 10px 14px; border-radius: var(--r-sm);
  color: var(--text); text-decoration: none; line-height: 1.5;
}
.ss-result a:hover { background: var(--cream-2); }
.ss-result .ss-kind {
  display: inline-block; margin-right: 8px; font-size: 12px;
  color: var(--burgundy); border: 1px solid rgba(122,46,46,.28);
  border-radius: var(--r-pill); padding: 1px 8px; vertical-align: 1px;
}
.ss-result .ss-empty { padding: 14px; color: var(--text-62); font-size: 14.5px; }

/* --- 搜索结果页 --- */
.search-out { margin-top: 26px; }
.search-out .so-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.search-out .so-item:last-child { border-bottom: 0; }
.search-out .so-item h3 { font-size: 19px; margin: 0 0 6px; line-height: 1.45; }
.search-out .so-item h3 a { color: var(--ink); text-decoration: none; }
.search-out .so-item h3 a:hover { color: var(--burgundy); }
.search-out .so-item p { margin: 0; color: var(--text-62); font-size: 15px; line-height: 1.7; }
.search-out .so-kind {
  display: inline-block; margin-bottom: 6px; font-size: 12.5px;
  color: var(--burgundy); border: 1px solid rgba(122,46,46,.28);
  border-radius: var(--r-pill); padding: 2px 10px;
}
.search-out mark { background: rgba(176,141,76,.28); color: inherit; padding: 0 2px; }

/* --- 文章内目录 --- */
.post-toc {
  background: var(--cream-2); border: 1px solid var(--line);
  border-left: 3px solid var(--burgundy);
  border-radius: var(--r-md);
  padding: 20px 24px; margin: 0 0 32px;
}
.post-toc > strong {
  display: block; font-family: var(--font-display);
  font-size: 16px; color: var(--ink); margin-bottom: 10px;
  letter-spacing: .02em;
}
.post-toc ol { margin: 0; padding-left: 20px; }
.post-toc li { margin: 5px 0; line-height: 1.6; }
.post-toc a { color: var(--text-80); text-decoration: none; font-size: 15.5px; }
.post-toc a:hover { color: var(--burgundy); text-decoration: underline; }

/* --- 标题锚点 --- */
.anchor-link {
  margin-left: 8px; color: var(--text-48);
  text-decoration: none; font-size: .68em; font-weight: 400;
  opacity: 0; transition: opacity .16s ease;
}
h2:hover > .anchor-link, h3:hover > .anchor-link,
.faq-q:hover > .anchor-link { opacity: 1; }
.anchor-link:hover { color: var(--burgundy); }
:target { scroll-margin-top: 90px; }

/* --- 相关阅读 --- */
.related { margin: 40px 0 8px; }
.related h2 {
  font-family: var(--font-display); font-size: 22px; color: var(--ink);
  margin: 0 0 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.rl-list { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 24px; }
.rl-list li { line-height: 1.55; }
.rl-list a {
  display: flex; align-items: baseline; gap: 8px;
  color: var(--text-80); text-decoration: none; font-size: 15.5px;
  padding: 8px 0; border-bottom: 1px dashed var(--line);
}
.rl-list a:hover { color: var(--burgundy); }
.rl-cat {
  flex: 0 0 auto; font-size: 12px; color: var(--burgundy);
  border: 1px solid rgba(122,46,46,.26); border-radius: var(--r-pill);
  padding: 1px 8px;
}

/* --- FAQ 问题索引 --- */
.q-index {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px 28px; margin: 0 0 44px;
  box-shadow: var(--shadow-card);
}
.q-index > strong {
  display: block; font-family: var(--font-display); font-size: 17px;
  color: var(--ink); margin-bottom: 12px;
}
.q-index ul { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 6px 26px; }
.q-index li { line-height: 1.55; }
.q-index a {
  display: block; color: var(--text-80); text-decoration: none;
  font-size: 15px; padding: 6px 0;
}
.q-index a:hover { color: var(--burgundy); text-decoration: underline; }

/* --- 数据表（赔偿标准 / 文章内表格） --- */
.std-table {
  width: 100%; border-collapse: collapse; margin: 20px 0 28px;
  background: var(--paper); font-size: 15.5px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden;
}
.std-table caption {
  caption-side: top; text-align: left; padding: 0 0 10px;
  color: var(--text-62); font-size: 14px;
}
.std-table th, .std-table td {
  border-bottom: 1px solid var(--line); padding: 12px 16px;
  text-align: left; line-height: 1.6; vertical-align: top;
}
.std-table thead th {
  background: var(--ink); color: var(--cream);
  font-weight: 600; font-size: 15px; letter-spacing: .02em;
}
.std-table tbody tr:nth-child(even) { background: var(--cream); }
.std-table tbody tr:last-child td { border-bottom: 0; }
.std-table .hl { color: var(--burgundy); font-weight: 700; }
.geo-note { color: var(--ink-60, #6a5a4a); font-size: 13px; line-height: 1.7; margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); }
.a-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15.5px; }
.a-body th, .a-body td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.a-body thead th { background: var(--cream-2); font-weight: 600; }

/* --- 通用工具类 --- */
.wrap.narrow { max-width: 820px; }
.center { text-align: center; }
.note {
  background: var(--cream-2); border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px; margin: 24px 0;
  font-size: 14.8px; color: var(--text-62); line-height: 1.75;
}
.note strong { color: var(--text); }
.about-lead { max-width: 760px; }

/* --- 回到顶部 --- */
.to-top {
  position: fixed; right: 22px; bottom: 24px; z-index: 50;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--cream);
  text-decoration: none; font-size: 19px; line-height: 1;
  box-shadow: var(--shadow-card);
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, background .18s ease;
}
.to-top.show { opacity: .9; pointer-events: auto; }
.to-top:hover { background: var(--burgundy); opacity: 1; }

@media (max-width: 834px) {
  .site-search { padding-bottom: 10px; }
  .ss-form button { padding: 9px 15px; font-size: 14.5px; }
  .rl-list, .q-index ul { grid-template-columns: 1fr; }
  .post-toc { padding: 16px 18px; }
  .q-index { padding: 18px 20px; }
  .std-table { font-size: 14.5px; display: block; overflow-x: auto; }
  .std-table td, .std-table th { padding: 10px 12px; }
  .to-top { right: 14px; bottom: 16px; width: 40px; height: 40px; }
}

@media print {
  .site-header, .site-footer, .to-top, .post-cta, .site-search,
  .related, .nav-toggle { display: none !important; }
  body { background: #fff; }
  .post-body a::after { content: " (" attr(href) ")"; font-size: 11px; color: #666; }
}

/* 数据表脚注 · 标注口径与出处，AI 引用时可一并抓取 */
.tbl-note {
  margin: -12px 0 26px; padding: 10px 14px;
  font-size: 14.5px; line-height: 1.75; color: var(--ink-3, #5b5b5b);
  background: var(--cream, #faf7f2); border-left: 3px solid var(--gold, #b08d4f);
  border-radius: 0 6px 6px 0;
}
.a-body table + .tbl-note { margin-top: -14px; }

/* 全站内容索引（search.html）· 给爬虫一条抵达全部深层页的最短路径 */
.idx-wrap { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.idx-group {
  background: #fff; border: 1px solid var(--line, #e6e1d8);
  border-radius: 10px; padding: 22px 24px 18px;
}
.idx-group h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: .3px; }
.idx-group h3 a { color: var(--burgundy, #7a2230); text-decoration: none; }
.idx-group h3 a:hover { text-decoration: underline; }
.idx-n { display: block; margin-top: 4px; font-size: 13px; font-weight: 400; color: var(--ink-3, #7a7a7a); }
.idx-list { list-style: none; margin: 12px 0 0; padding: 0; }
.idx-list li { margin: 0 0 8px; padding-left: 14px; position: relative; line-height: 1.6; }
.idx-list li::before { content: ""; position: absolute; left: 0; top: .68em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold, #b08d4f); }
.idx-list a { color: var(--ink, #24211d); text-decoration: none; font-size: 15px; }
.idx-list a:hover { color: var(--burgundy, #7a2230); text-decoration: underline; }
.idx-list.q { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line, #e6e1d8); }
.idx-list.q a { font-size: 14.5px; color: var(--ink-2, #4a463f); }
.idx-list.q li::before { background: var(--ink-3, #b5b0a6); }
@media (max-width: 834px) { .idx-wrap { grid-template-columns: 1fr; } }

/* ---------- 每日精选（前端按日期轮换，零新内容，GEO 安全） ---------- */
.daily-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 22px; }
.daily-col { min-height: 120px; }
.daily-badge {
  display: inline-block; margin-bottom: 8px; padding: 2px 10px;
  font-size: 12px; letter-spacing: .04em; color: #fff;
  background: var(--burgundy, #7a2e2e); border-radius: 2px;
}
/* 新鲜度标签：与 daily-badge 同行，金色系，每日自动轮换文案 */
.fresh-label {
  display: inline-block; margin-left: 6px; margin-bottom: 8px; padding: 2px 8px;
  font-size: 11px; letter-spacing: .03em; color: #fff;
  background: var(--gold, #b08d4c); border-radius: 2px;
  vertical-align: middle; opacity: .9;
}
/* post-meta 内的 time 元素：相对时间样式 */
.post-meta time { color: var(--burgundy, #7a2e2e); font-weight: 500; }
.daily-col .post-card, .daily-col .faq-card { position: relative; }
.daily-col .faq-q { margin-top: 6px; }
.daily-col .faq-a { margin: 8px 0 10px; }
@media (max-width: 720px) { .daily-grid { grid-template-columns: 1fr; } }

/* ---------- 人身损害独立板块（GEO 友好） ---------- */
.inj-pillar { margin: 26px 0 6px; }
.inj-pillar h2 { margin: 30px 0 12px; font-size: 22px; letter-spacing: .3px; color: var(--ink, #24211d); border-left: 4px solid var(--burgundy, #7a2e2e); padding-left: 14px; }
.inj-pillar h2:first-child { margin-top: 6px; }
.inj-pillar p { line-height: 1.85; color: var(--ink-2, #4a463f); margin: 0 0 14px; }
.inj-pillar strong { color: var(--burgundy, #7a2e2e); }
.inj-pillar a { color: var(--burgundy, #7a2e2e); }
.inj-type-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin: 6px 0 10px; }
.inj-type { display: block; background: var(--cream-2, #f5f1ea); border: 1px solid var(--line, #e6e1d8); border-radius: var(--r-lg, 14px); padding: 18px 20px; color: inherit; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.inj-type:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-card, 0 8px 22px rgba(40,30,20,.10)); border-color: var(--burgundy, #7a2e2e); }
.inj-type h4 { margin: 0 0 6px; font-size: 17px; color: var(--burgundy, #7a2e2e); }
.inj-type p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--ink-3, #7a7a7a); }
.inj-judge { list-style: none; margin: 8px 0 6px; padding: 0; }
.inj-judge li { position: relative; padding: 10px 14px 10px 40px; margin-bottom: 10px; background: var(--cream, #faf7f2); border: 1px solid var(--line, #e6e1d8); border-radius: var(--r-md, 10px); line-height: 1.7; }
.inj-judge li::before { content: ""; position: absolute; left: 16px; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold, #b08d4c); }
.inj-judge a { color: var(--burgundy, #7a2e2e); font-weight: 600; text-decoration: none; }
.inj-judge a:hover { text-decoration: underline; }
@media (max-width: 720px) { .inj-type-grid { grid-template-columns: 1fr; } .inj-pillar h2 { font-size: 20px; } }

/* ---------- 关于律所页面（firm.html） ---------- */
.firm-overview { margin-bottom: 28px; }
.firm-overview .lead { font-size: 20px; line-height: 1.6; color: var(--ink, #24211d); margin-bottom: 18px; }
.firm-hero-image { margin: 24px 0; border-radius: var(--r-md, 10px); overflow: hidden; background: var(--cream, #faf7f2); border: 1px solid var(--line, #e6e1d8); }
.firm-hero-image img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 400px; }

/* 服务特色定义列表 */
.std-dl { margin: 18px 0; }
.std-dl dt { font-weight: 700; color: var(--burgundy, #7a2e2e); margin-top: 16px; font-size: 16px; }
.std-dl dd { margin: 4px 0 12px 20px; line-height: 1.75; color: var(--ink, #24211d); padding-left: 14px; border-left: 3px solid var(--gold, #b08d4c); }

/* ---------- 导航下拉菜单（关于我们） ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-arrow { font-size: 11px; transition: transform .2s ease; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: -8px;
  min-width: 160px;
  background: var(--cream, #faf8f3);
  border: 1px solid var(--line, #e6e1d8);
  border-radius: var(--r-md, 10px);
  box-shadow: var(--shadow-card, 0 8px 22px rgba(40,30,20,.12));
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  color: var(--ink-2, #4a463f);
  white-space: nowrap;
  border-radius: 0;
}
.nav-dropdown-menu a:hover {
  background: rgba(122,46,46,.06);
  color: var(--burgundy, #7a2e2e);
}
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

/* 律所图片占位符（图片待补充时优雅降级） */
.firm-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: linear-gradient(135deg, #f5f1ea 0%, #ebe5d9 100%);
  border: 2px dashed var(--line, #e6e1d8);
  color: var(--ink-3, #8a857d);
  text-align: center;
  padding: 30px;
}
.firm-image-placeholder span { font-size: 20px; font-weight: 700; color: var(--burgundy, #7a2e2e); margin-bottom: 8px; }
.firm-image-placeholder small { font-size: 13px; }
