:root {
  --gold: #d8b46c;
  --gold-dark: #a4813c;
  --brown: #190f07;
  --ink: #222;
  --text: #555;
  --muted: #8b8b8b;
  --line: #e8e8e8;
  --paper: #f6f6f6;
  --white: #fff;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: Arial, Helvetica, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all .3s;
}

a:hover {
  color: #005caf;
}

.container {
  width: 1200px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  transition: all .45s;
}

.header.is-solid,
.header:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.14);
}

.header-inner {
  width: 96%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: grid;
  align-content: center;
  min-width: 184px;
  color: #fff;
  line-height: 1.25;
}

.text-logo {
  gap: 4px;
}

.logo-title {
  display: block;
  color: inherit;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo-subtitle {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.header.is-solid .logo,
.header:hover .logo {
  color: #222;
}

.header.is-solid .logo-subtitle,
.header:hover .logo-subtitle {
  color: #777;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
}

.nav a {
  position: relative;
  display: block;
  padding: 39px 6px;
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
}

.header.is-solid .nav a,
.header:hover .nav a {
  color: #333;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .28s;
}

.nav a:hover::after,
.nav a.active::after {
  width: 38px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  min-width: 118px;
  padding: 10px 8px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  background: rgba(216, 180, 108, .94);
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.header.is-solid .menu-button span,
.header:hover .menu-button span {
  background: #333;
}

.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  background: #140e09;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 76% 42%, rgba(216, 180, 108, .16), transparent 30%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 15, 7, .92), rgba(25, 15, 7, .68), rgba(25, 15, 7, .28));
}

.hero-slide-lawyer {
  background-image: url("../site/hero-warm-documents.jpg");
  background-position: center;
}

.hero-slide-lawyer::before {
  background: linear-gradient(90deg, rgba(25, 15, 7, .46), rgba(25, 15, 7, .22), rgba(25, 15, 7, .08));
}

.hero-slide-process {
  background-image: url("../site/hero-process-flowers.jpg");
  background-position: center 58%;
}

.hero-slide-process .hero-copy {
  max-width: 1120px;
}

.hero-slide-process h2 {
  white-space: nowrap;
  letter-spacing: 3px;
}

.hero-slide-evidence {
  background-image: url("../site/hero-legal-bg.png");
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 1200px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding-top: 88px;
  color: #fff;
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero h1,
.hero h2 {
  margin-bottom: 22px;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 6px;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  line-height: 1.9;
}

.hero-subtitle {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .94);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 46px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  padding: 0 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.btn.gold {
  color: #fff;
  background: var(--gold);
}

.btn:hover {
  color: #fff;
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dots button {
  display: block;
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  cursor: pointer;
  transition: all .25s;
}

.hero-dots button.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 180, 108, .62);
  border-radius: 50%;
  color: #fff;
  background: rgba(25, 15, 7, .26);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .25s, border-color .25s, color .25s;
}

.hero-arrow:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

.section {
  padding: 70px 0;
  overflow: hidden;
}

.section.gray {
  background: var(--paper);
}

.section.dark {
  background:
    linear-gradient(rgba(25,15,7,.88), rgba(25,15,7,.88)),
    url("../site/pattern-building.jpg") center / cover no-repeat;
  color: #fff;
}

.title {
  margin-bottom: 44px;
  text-align: center;
}

.title h2 {
  position: relative;
  margin-bottom: 26px;
  color: #333;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 2px;
}

.dark .title h2 {
  color: #fff;
}

.title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 60px;
  height: 2px;
  margin-left: -30px;
  background: var(--gold);
}

.title p {
  color: #777;
  font-size: 16px;
}

.dark .title p {
  color: rgba(255,255,255,.72);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  gap: 62px;
  align-items: center;
}

.about-title {
  margin-bottom: 24px;
}

.about-title h2 {
  color: #333;
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 2px;
}

.about-title h3 {
  margin-top: 8px;
  color: var(--gold-dark);
  font-size: 20px;
  font-weight: 700;
}

.license-line {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 12px;
  padding: 0 12px;
  color: #6a5422;
  border: 1px solid #e5d6b0;
  background: #fbf8f0;
  font-size: 14px;
}

.about-lead {
  color: var(--gold-dark);
  font-size: 18px;
  line-height: 2;
}

.about-text {
  margin-top: 16px;
  color: #333;
  font-size: 16px;
}

.career-line {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  padding: 9px 14px;
  border: 1px solid #e5d6b0;
  color: #6a5422;
  background: #fbf8f0;
  font-size: 14px;
}

.career-line strong {
  color: #333;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: var(--shadow);
}

.team-section {
  background: linear-gradient(180deg, #fbf8f0 0%, #fff 100%);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 42px;
  align-items: center;
  padding: 34px 0 30px;
  border-top: 1px solid #e8d8af;
  border-bottom: 1px solid #e8d8af;
}

.team-story {
  max-width: 900px;
}

.team-story h3 {
  margin: 8px 0 18px;
  color: #333;
  font-size: 34px;
  line-height: 1.3;
}

.team-story p {
  color: #555;
  font-size: 18px;
  line-height: 2;
}

.team-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.team-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #e5d6b0;
  color: #6a5422;
  background: #fff;
  font-size: 14px;
}

.team-profile {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid #e5d6b0;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.team-profile img {
  display: block;
  width: 190px;
  height: 240px;
  object-fit: cover;
  object-position: center 16%;
}

.team-profile h3 {
  margin: 6px 0 8px;
  color: #333;
  font-size: 24px;
  line-height: 1.3;
}

.team-profile p {
  color: #555;
  font-size: 14px;
  line-height: 1.75;
}

.team-profile .license-line {
  display: block;
  margin-top: 10px;
  padding: 7px 10px;
  line-height: 1.6;
  word-break: break-all;
}

.team-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid #e5d6b0;
  border-bottom: 1px solid #eee;
}

.team-process article {
  position: relative;
  padding: 28px 34px 26px 0;
}

.team-process article + article {
  padding-left: 34px;
  border-left: 1px solid #eee;
}

.team-process b {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.team-process h4 {
  margin-bottom: 10px;
  color: #333;
  font-size: 20px;
}

.team-process p {
  color: #666;
  font-size: 15px;
  line-height: 1.9;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.number strong {
  display: block;
  color: var(--gold-dark);
  font-size: 46px;
  line-height: 1;
}

.number span {
  display: block;
  margin-top: 12px;
  color: #222;
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-grid-five {
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  display: block;
  min-height: 260px;
  padding: 30px 24px 26px;
  color: #fff;
  background: #c29e57;
  border-radius: 8px;
  text-align: center;
  transition: all .45s;
}

.service-card:nth-child(n+3) {
  min-height: 240px;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 34px;
  font-weight: 700;
  transition: all .45s;
}

.service-card:hover {
  color: #333;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(12px);
}

.service-card:hover .service-icon {
  color: var(--gold);
  background: #fff;
  border-color: var(--gold);
  transform: rotateY(360deg);
}

.service-card h3 {
  margin-bottom: 16px;
  color: inherit;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 1px;
}

.service-card p {
  color: inherit;
  font-size: 15px;
  line-height: 1.9;
}

.area-grid,
.entry-grid,
.court-grid,
.topic-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.area-card,
.entry-card,
.court-card,
.topic-card,
.faq-card {
  min-height: 190px;
  padding: 26px 24px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
  transition: all .35s;
}

.area-card:hover,
.entry-card:hover,
.court-card:hover,
.topic-card:hover,
.faq-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.area-card h3,
.entry-card h3,
.court-card h3,
.topic-card h3,
.faq-card h3 {
  margin-bottom: 12px;
  color: #333;
  font-size: 21px;
  line-height: 1.4;
}

.area-card p,
.entry-card p,
.court-card p,
.topic-card p,
.faq-card p {
  color: #666;
}

.tag-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-line span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: #6a5422;
  background: #f7efd9;
  border-radius: 999px;
  font-size: 13px;
}

.entry-card {
  position: relative;
  padding-top: 32px;
}

.entry-card[href^="#"] {
  cursor: pointer;
}

.entry-card b,
.topic-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: 18px;
}

.court-card {
  background: #fbfbfb;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-left: 18px;
}

.detail-list li {
  color: #666;
  line-height: 1.8;
}

.wide-panel {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
}

.wide-panel + .wide-panel {
  margin-top: 24px;
}

.wide-panel h2,
.wide-panel h3 {
  margin-bottom: 14px;
  color: #333;
}

.wide-panel h2 {
  font-size: 26px;
}

.wide-panel h3 {
  font-size: 21px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 22px;
  counter-reset: process;
}

.process-list li {
  list-style: none;
  position: relative;
  padding: 16px 18px 16px 54px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fbfbfb;
  color: #555;
}

.process-list li::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 15px;
  color: var(--gold-dark);
  font-weight: 700;
}

.faq-card {
  min-height: 250px;
}

.faq-card ul {
  padding-left: 18px;
}

.faq-card li {
  color: #666;
  margin: 5px 0;
  line-height: 1.65;
}

.faq-anchor-bar {
  position: sticky;
  z-index: 2;
  top: 100px;
  padding: 12px 0;
  background: #fff;
}

.faq-anchor-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #e5d6b0;
  border-radius: 999px;
  color: var(--gold-dark);
  background: #fff;
}

.faq-section {
  margin-top: 34px;
}

.faq-section h2 {
  margin-bottom: 18px;
  color: #333;
  font-size: 28px;
  line-height: 1.35;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
}

.faq-item h3 {
  margin-bottom: 12px;
  color: #333;
  font-size: 20px;
  line-height: 1.45;
}

.faq-item p + p {
  margin-top: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card,
.trust-card,
.feature-card,
.page-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: all .35s;
}

.article-card:hover,
.trust-card:hover,
.feature-card:hover,
.page-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.article-img {
  height: 180px;
  background:
    linear-gradient(135deg, rgba(25,15,7,.68), rgba(216,180,108,.42)),
    url("../site/office-bg.jpg") center / cover no-repeat;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 22px;
}

.meta {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 13px;
}

.article-card h3,
.page-card h3 {
  margin-bottom: 10px;
  color: #333;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.article-card p,
.page-card p {
  color: #666;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 56px;
}

.case-list-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid #eee;
  color: inherit;
}

.case-list-item:hover {
  color: inherit;
}

.case-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid #eee;
  background: #fff;
}

.case-list-copy h2 {
  margin: 8px 0 18px;
  color: #222;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
}

.case-list-copy p {
  margin-bottom: 18px;
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

.case-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #444;
  font-size: 17px;
}

.clock-icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid #222;
  border-radius: 50%;
}

.clock-icon::before,
.clock-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  background: #222;
  transform-origin: bottom center;
}

.clock-icon::before {
  height: 7px;
  transform: translate(-50%, -100%) rotate(0deg);
}

.clock-icon::after {
  height: 6px;
  transform: translate(-50%, -100%) rotate(125deg);
}

.case-list-placeholder {
  min-height: 220px;
  padding: 24px;
  border: 1px dashed #d9c28b;
  background: #fbf8f0;
}

.case-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  border: 1px dashed #e5d6b0;
  color: var(--gold-dark);
  background: #fff;
  font-size: 16px;
}

.case-detail-content {
  max-width: 1080px;
}

.case-detail-lead {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid #e6d3a1;
  background: #fbf8f0;
}

.case-detail-lead img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid #eee;
  background: #fff;
}

.case-note {
  margin-top: 10px;
  color: #8a6a2c;
}

.case-keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0 26px;
}

.case-keyword-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #6a5422;
  background: #f7efd9;
  font-size: 13px;
}

.case-document-figure {
  margin: 18px auto 28px;
  padding: 22px;
  border: 1px solid #eee;
  background: #fbfbfb;
  text-align: center;
}

.case-document-figure img {
  width: min(100%, 760px);
  margin: 0 auto;
  border: 1px solid #e8e8e8;
  background: #fff;
}

.case-document-figure figcaption {
  margin-top: 12px;
  color: #777;
  font-size: 13px;
}

.case-related-links {
  margin-top: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  min-height: 250px;
  padding: 28px 22px;
  text-align: center;
}

.feature-card b {
  display: block;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: 25px;
  line-height: 66px;
}

.feature-card h3 {
  margin-bottom: 14px;
  color: #333;
  font-size: 20px;
  font-weight: 700;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.trust-card {
  min-height: 210px;
  padding: 22px;
  text-align: center;
}

.trust-card .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  margin-bottom: 18px;
  border: 1px dashed #d9c28b;
  color: var(--gold-dark);
  background: #fbf8f0;
}

.trust-card h3 {
  color: #333;
  font-size: 18px;
  line-height: 1.5;
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
}

.steps,
.method-box,
.aftercare {
  padding: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  padding-left: 20px;
}

.steps li,
.method-box li,
.aftercare li {
  color: rgba(255,255,255,.84);
  line-height: 1.8;
}

.method-box h3,
.aftercare h3,
.steps h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 22px;
}

.method-box ul,
.aftercare ul {
  padding-left: 18px;
}

.contact-section {
  background: #16100b;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px 160px;
  gap: 34px;
  align-items: center;
}

.contact-grid h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 30px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  color: rgba(255,255,255,.78);
}

.qr-card {
  text-align: center;
}

.qr-card img {
  width: 136px;
  height: 136px;
  object-fit: cover;
  margin: 0 auto 8px;
  padding: 6px;
  background: #fff;
}

.footer {
  padding: 22px 0;
  color: rgba(255,255,255,.58);
  background: #0d0906;
  font-size: 13px;
  text-align: center;
}

.page-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(25,15,7,.88), rgba(25,15,7,.42)),
    url("../site/hero-legal-bg.png") center / cover no-repeat;
}

.page-hero .container {
  padding-top: 90px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: 44px;
  letter-spacing: 4px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.compact-hero {
  min-height: 300px;
}

.compact-hero .container {
  padding-top: 76px;
}

.faq-page-section {
  padding-top: 42px;
  overflow: visible;
}

.faq-page-section .faq-anchor-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 12px 0 14px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(229, 214, 176, .58);
  -webkit-overflow-scrolling: touch;
}

.faq-page-section .faq-anchor-bar a {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  font-size: 16px;
  white-space: nowrap;
}

.faq-page-section .faq-section {
  margin-top: 48px;
  padding-top: 8px;
  scroll-margin-top: 174px;
}

.faq-page-section .faq-section:first-of-type {
  margin-top: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #e5d6b0;
  border-radius: 999px;
  color: var(--gold-dark);
  background: #fff;
}

.empty-card {
  border: 1px dashed #d9c28b;
  background: #fbf8f0;
  padding: 28px;
  color: #6a5a33;
}

.upload-list {
  margin-top: 18px;
  padding-left: 20px;
}

.upload-list li {
  margin: 4px 0;
}

.site-map-list {
  padding-left: 20px;
}

.center-more {
  margin-top: 28px;
  text-align: center;
}

.service-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.article-layout {
  display: block;
}

.service-sidebar,
.article-aside {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.service-sidebar strong,
.article-aside strong {
  color: #333;
  font-size: 18px;
}

.service-sidebar a:not(.btn),
.related-links a {
  color: #6a5422;
}

.service-sidebar a:not(.btn):hover,
.related-links a:hover {
  color: var(--gold-dark);
}

.service-main {
  display: grid;
  gap: 24px;
}

.team-inline-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 20px 0 26px;
  padding: 18px;
  border: 1px solid #e7d7af;
  border-radius: 8px;
  background: #fbf8f0;
}

.team-inline-card img {
  width: 150px;
  height: 190px;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 6px;
}

.team-inline-card h4 {
  margin: 6px 0 10px;
  color: #333;
  font-size: 22px;
}

.team-inline-card p {
  margin: 0;
}

.fee-panel {
  background: #fbf8f0;
  border-color: #e6d3a1;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #e5d6b0;
  border-radius: 999px;
  background: #fff;
}

.article-content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
}

.system-article {
  max-width: 1080px;
}

.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5 {
  margin: 28px 0 14px;
  color: #333;
  line-height: 1.45;
}

.article-content h2 {
  font-size: 28px;
}

.article-content h3 {
  font-size: 23px;
}

.article-content h4,
.article-content h5 {
  font-size: 19px;
}

.article-content p,
.article-content li {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin: 10px 0;
}

.article-content blockquote {
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: #fbf8f0;
}

.article-content hr {
  height: 1px;
  margin: 28px 0;
  border: 0;
  background: #eee;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  margin: 18px 0;
  border: 1px solid #eee;
}

.article-content table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}

.article-content th,
.article-content td {
  padding: 12px 14px;
  border: 1px solid #eee;
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: #333;
  background: #fbf8f0;
}

.evidence-content h4[id] {
  scroll-margin-top: 118px;
}

.evidence-detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.evidence-menu {
  align-content: start;
}

.evidence-detail-content {
  max-width: none;
}

.material-group {
  padding: 26px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
}

.material-group + .material-group,
.evidence-subtitle + .material-group,
.evidence-intro + .material-group {
  margin-top: 18px;
}

.material-group h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.evidence-content h4 {
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.evidence-content h4:first-of-type {
  border-top: 0;
}

.evidence-content ul ul,
.evidence-content ol ul,
.evidence-content ul ol,
.evidence-content ol ol {
  margin-top: 6px;
}

.honor-gallery {
  display: grid;
  gap: 28px;
}

.honor-card {
  display: grid;
  grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
}

.honor-card img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  background: #fbfbfb;
}

.honor-card h2 {
  margin-bottom: 12px;
  color: #333;
  font-size: 26px;
}

@media (max-width: 1024px) {
  .header,
  .header-inner {
    height: 76px;
  }

  .header {
    background: rgba(25, 15, 7, .95);
  }

  .header.is-solid {
    background: rgba(255,255,255,.96);
  }

  .logo {
    min-width: auto;
  }

  .logo img {
    width: 190px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(25, 15, 7, .96);
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .header.is-solid .nav a,
  .header:hover .nav a {
    padding: 14px 24px;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .nav a::after {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .compact-hero {
    min-height: 280px;
  }

  .compact-hero .container {
    padding-top: 74px;
  }

  .faq-page-section .faq-anchor-bar {
    top: 76px;
  }

  .faq-page-section .faq-section {
    scroll-margin-top: 142px;
  }

  .about-grid,
  .team-layout,
  .team-inline-card,
  .system-grid,
  .contact-grid,
  .service-layout,
  .evidence-detail-layout,
  .honor-card {
    grid-template-columns: 1fr;
  }

  .service-sidebar,
  .article-aside {
    position: static;
  }

  .service-grid,
  .team-process,
  .card-grid,
  .feature-grid,
  .trust-grid,
  .area-grid,
  .entry-grid,
  .court-grid,
  .topic-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid-five {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-list {
    grid-template-columns: 1fr;
  }

  .case-detail-lead {
    grid-template-columns: 1fr;
  }

  .team-layout {
    gap: 24px;
  }

  .team-profile {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 52px 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: 3px;
  }

  .hero h2 {
    font-size: 34px;
    letter-spacing: 2px;
  }

  .hero-slide-process h2 {
    white-space: normal;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero-slide::before,
  .hero-slide-lawyer::before {
    background: linear-gradient(90deg, rgba(25, 15, 7, .92), rgba(25, 15, 7, .74));
  }

  .hero-arrow {
    top: auto;
    bottom: 22px;
    width: 38px;
    height: 38px;
    font-size: 28px;
    transform: none;
  }

  .hero-prev {
    left: 20px;
  }

  .hero-next {
    right: 20px;
  }

  .title h2,
  .about-title h2 {
    font-size: 26px;
  }

  .numbers,
  .service-grid,
  .service-grid-five,
  .team-process,
  .card-grid,
  .feature-grid,
  .trust-grid,
  .area-grid,
  .entry-grid,
  .court-grid,
  .topic-grid,
  .faq-grid,
  .process-list,
  .steps ol,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    text-align: center;
  }

  .team-layout {
    padding: 24px 0;
  }

  .team-story h3 {
    font-size: 26px;
  }

  .team-story p {
    font-size: 16px;
  }

  .team-keywords {
    justify-content: center;
  }

  .team-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-profile img {
    width: 220px;
    height: 270px;
    margin: 0 auto;
  }

  .team-process {
    border-top: 1px solid #e5d6b0;
  }

  .team-process article,
  .team-process article + article {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid #eee;
  }

  .team-inline-card img {
    width: 100%;
    height: 260px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .compact-hero {
    min-height: 240px;
  }

  .compact-hero .container {
    padding-top: 68px;
  }

  .faq-hero h1 {
    font-size: 30px;
    letter-spacing: 2px;
  }

  .faq-hero p {
    font-size: 15px;
  }

  .faq-page-section {
    padding-top: 28px;
  }

  .faq-page-section .faq-anchor-bar {
    margin-right: -16px;
    margin-left: -16px;
    padding: 10px 16px 12px;
  }

  .faq-page-section .faq-anchor-bar a {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .faq-page-section .faq-section {
    margin-top: 36px;
    scroll-margin-top: 130px;
  }

  .faq-page-section .faq-section h2 {
    font-size: 24px;
  }

  .case-list-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-list-copy h2 {
    font-size: 21px;
  }

  .case-date {
    font-size: 15px;
  }

  .case-detail-lead {
    padding: 18px;
  }

  .case-document-figure {
    padding: 12px;
  }
}
