: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: 210px;
  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;
}

.case-home-card .article-img img,
.article-img img[src*="cover"],
.article-img img[src*="document-1"],
.case-thumb[src*="cover"] {
  object-position: center top;
}

.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;
  object-position: center top;
  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-carousel {
  position: relative;
}

#trust {
  scroll-margin-top: 110px;
}

.trust-viewport {
  overflow: hidden;
  padding: 4px 0 14px;
}

.trust-track {
  --trust-per-view: 4;
  display: flex;
  gap: 28px;
  transition: transform .45s ease;
  will-change: transform;
}

.trust-card {
  flex: 0 0 calc((100% - 84px) / 4);
  min-width: 0;
  padding: 0;
  text-align: center;
}

.trust-gallery {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}

.trust-image-track {
  display: flex;
  transition: transform .35s ease;
}

.trust-image-track img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.trust-image-dots {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
}

.trust-image-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #cfcfcf;
  cursor: pointer;
}

.trust-image-dots button.is-active {
  background: var(--gold-dark);
}

.trust-body {
  padding: 18px 18px 24px;
}

.trust-card .trust-type {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 14px;
}

.trust-card h3 {
  margin-bottom: 10px;
  color: #333;
  font-size: 21px;
  line-height: 1.45;
}

.trust-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
}

.trust-arrow {
  position: absolute;
  top: 220px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #4b4b4b;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
  font-size: 42px;
  line-height: 40px;
  cursor: pointer;
}

.trust-prev {
  left: -24px;
}

.trust-next {
  right: -24px;
}

.trust-arrow:hover {
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.trust-arrow:disabled {
  opacity: .28;
  cursor: default;
  transform: none;
}

.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 {
  padding: 72px 0;
  scroll-margin-top: 104px;
  background: #16100b;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(330px, .68fr) minmax(0, 1.32fr);
  gap: 42px;
  align-items: center;
}

.contact-grid h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 34px;
  line-height: 1.25;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 410px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 26px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
}

.contact-qr-group {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 14px;
  justify-content: start;
  align-items: end;
  margin-top: 34px;
}

.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 152px;
  padding: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  text-align: center;
}

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

.contact-map-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(216,180,108,.42);
  border-radius: 8px;
  background: #e9e3d7;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.contact-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 30%),
    linear-gradient(0deg, rgba(22,16,11,.14), rgba(22,16,11,0) 40%);
}

.contact-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(.98);
}

.contact-map-pin {
  position: absolute;
  left: 39%;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  background: #df4b3e;
  border: 7px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 16px 34px rgba(110, 35, 26, .38);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-map-pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact-map-office,
.contact-map-traffic,
.contact-map-route {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(216,180,108,.44);
  border-radius: 6px;
}

.contact-map-office,
.contact-map-traffic {
  color: #2b2b2b;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 26px rgba(41, 31, 20, .13);
}

.contact-map-office {
  top: 24px;
  left: 24px;
  width: 274px;
  padding: 14px 18px;
}

.contact-map-traffic {
  top: 24px;
  right: 24px;
  width: 286px;
  padding: 17px 19px;
}

.contact-map-office span {
  display: block;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 700;
}

.contact-map-office strong,
.contact-map-traffic strong {
  display: block;
  color: #202020;
  line-height: 1.3;
}

.contact-map-office strong {
  margin-top: 4px;
  font-size: 26px;
}

.contact-map-traffic strong {
  font-size: 22px;
}

.contact-map-office p,
.contact-map-traffic p {
  color: rgba(31,31,31,.72);
}

.contact-map-office p {
  margin-top: 2px;
  font-size: 15px;
}

.contact-map-traffic p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.contact-map-route {
  left: 24px;
  bottom: 22px;
  width: 332px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(24, 20, 16, .9);
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
}

.contact-map-route span {
  display: block;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.contact-map-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #251d12;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-size: 15px;
  font-weight: 700;
}

.contact-map-actions a:hover {
  color: #2a2113;
  background: #fff;
  border-color: #fff;
}

.footer {
  color: rgba(255,255,255,.72);
  background: #303030;
  font-size: 14px;
  text-align: center;
}

.footer-top {
  min-height: 86px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px 32px;
  background: #444;
}

.footer-consult-link {
  color: rgba(255,255,255,.88);
  font-size: 15px;
}

.footer-consult-link:hover,
.footer-record:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 28px 18px 30px;
  background: #303030;
}

.footer-copyright {
  color: rgba(255,255,255,.96);
  font-size: 16px;
  letter-spacing: .5px;
}

.footer-record {
  color: rgba(255,255,255,.92);
}

.footer-note {
  margin-top: 8px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.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;
}

.publish-date {
  margin: 0 0 22px;
  color: #9a7838;
  font-size: 15px;
  line-height: 1.6;
}

.publish-date time,
.card-date time {
  font: inherit;
}

.card-date {
  display: block;
  margin: 8px 0 0;
  color: #9a7838;
  font-size: 14px;
  line-height: 1.6;
}

.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-figure {
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid #ead9ad;
  border-radius: 6px;
  background: #fbf8f0;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.article-figure figcaption {
  padding: 10px 14px;
  border-top: 1px solid #ead9ad;
  background: #fffaf0;
  color: #7a6230;
  font-size: 14px;
  line-height: 1.7;
}

.article-hero-figure {
  margin-top: 20px;
}

.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-text-mark {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px solid rgba(177, 143, 62, 0.34);
  border-radius: 6px;
  background: linear-gradient(135deg, #fffdf8, #f7f1e2);
  color: rgba(177, 143, 62, 0.9);
  font-family: var(--font-title);
  font-size: 58px;
  font-weight: 700;
}

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

.honor-card .text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.honor-card .text-link:hover {
  color: var(--gold);
}

.share-hero {
  background:
    linear-gradient(90deg, rgba(25,15,7,.9), rgba(25,15,7,.5)),
    url("../site/hero-warm-documents.jpg") center / cover no-repeat;
}

.share-page {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.share-hero .container {
  padding-top: 76px;
  padding-bottom: 58px;
}

.share-hero p {
  max-width: 760px;
}

.share-hero h1 {
  letter-spacing: 0;
}

.share-hero h1 span {
  display: inline-block;
}

.share-hero h1 span + span {
  margin-left: .35em;
}

.share-page-section {
  background: linear-gradient(180deg, #fff, #f8f6f1);
}

.share-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: start;
}

.share-article {
  padding: 42px;
  border: 1px solid rgba(177, 143, 62, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.share-intro {
  margin-bottom: 34px;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: #fbf7ed;
}

.share-intro p,
.share-block p,
.share-block li,
.share-alert,
.share-signoff p {
  color: #4f4f4f;
  font-size: 17px;
  line-height: 2;
}

.share-block {
  position: relative;
  padding: 34px 0;
  border-top: 1px solid #eee;
}

.share-block h2 {
  margin-bottom: 22px;
  color: #2c2c2c;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 30px;
  line-height: 1.35;
}

.share-block h3 {
  margin: 20px 0 10px;
  color: #333;
  font-size: 21px;
}

.share-block ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.share-step {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-weight: 700;
}

.share-subblock {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
}

.share-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.share-info-grid > div {
  padding: 24px;
  border: 1px solid rgba(177, 143, 62, 0.26);
  border-radius: 6px;
  background: #fffdf8;
}

.share-alert {
  margin-top: 12px;
  padding: 24px 28px;
  border: 1px solid rgba(177, 143, 62, 0.34);
  border-radius: 6px;
  background: #2a1b10;
  color: rgba(255,255,255,.9);
}

.share-alert strong {
  color: #fff;
}

.share-signoff {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.share-signoff p:last-child {
  color: var(--gold-dark);
  font-weight: 700;
}

.share-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.share-sidebar-card {
  padding: 24px;
  border: 1px solid rgba(177, 143, 62, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.share-sidebar-card a:not(.btn) {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #444;
  font-weight: 700;
}

.share-sidebar-card a:not(.btn):hover {
  color: var(--gold-dark);
}

.share-sidebar-card.dark {
  color: rgba(255,255,255,.86);
  background: #24160c;
}

.share-sidebar-card.dark strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
}

.share-sidebar-card.dark p {
  margin-bottom: 18px;
}

.share-mobile-cta {
  display: none;
}

.credential-verification {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(177, 143, 62, 0.32);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffdf8, #f7f3e9);
}

.credential-verification-copy {
  max-width: 820px;
}

.credential-verification-copy h2 {
  margin: 8px 0 12px;
  color: #2d2d2d;
  font-size: 26px;
}

.credential-verification-copy p,
.verification-note {
  color: #666;
  line-height: 1.8;
}

.verification-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.verification-link-card {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid #e4ddcd;
  border-radius: 6px;
  background: #fff;
  color: #333;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.verification-link-card:hover {
  transform: translateY(-3px);
  border-color: #b18f3e;
  box-shadow: 0 10px 24px rgba(45, 38, 22, 0.09);
}

.verification-link-card span {
  color: #9a7627;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.verification-link-card strong {
  margin: 8px 0;
  font-size: 19px;
}

.verification-link-card small {
  color: #777;
  line-height: 1.65;
}

.verification-link-card.third-party {
  border-style: dashed;
}

.verification-note {
  margin: 18px 0 0;
  font-size: 13px;
}

@media (max-width: 820px) {
  .verification-link-grid {
    grid-template-columns: 1fr;
  }

  .credential-verification {
    padding: 24px 20px;
  }

  .verification-link-card {
    min-height: auto;
  }
}

.honor-subtitle {
  margin: 42px auto 22px;
  max-width: 780px;
  text-align: center;
}

.honor-subtitle h3 {
  margin: 8px 0 10px;
  color: #333;
  font-size: 28px;
}

.honor-subtitle p {
  color: #666;
}

.banner-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-bottom: 30px;
}

.banner-card {
  overflow: hidden;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.banner-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  background: #fbfbfb;
}

.banner-card div {
  padding: 18px 20px 20px;
}

.banner-card h3 {
  margin: 0;
  color: #333;
  font-size: 20px;
}

@media (max-width: 1024px) {
  .trust-track {
    --trust-per-view: 2;
  }

  .trust-card {
    flex-basis: calc((100% - 28px) / 2);
  }

  .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;
  }

  .contact-map-card {
    min-height: 360px;
  }

  .contact-qr-group {
    grid-template-columns: repeat(2, 150px);
  }
}

@media (max-width: 640px) {
  .trust-track {
    --trust-per-view: 1;
  }

  .trust-card {
    flex-basis: 100%;
  }

  .trust-arrow {
    top: 170px;
    width: 38px;
    height: 38px;
    font-size: 34px;
    line-height: 32px;
  }

  .trust-prev {
    left: -10px;
  }

  .trust-next {
    right: -10px;
  }

  .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: left;
  }

  .contact-section {
    scroll-margin-top: 82px;
  }

  .contact-grid h2 {
    font-size: 28px;
    text-align: center;
  }

  .contact-info {
    min-height: 0;
  }

  .contact-map-card {
    min-height: 320px;
  }

  .contact-map-office {
    top: 14px;
    left: 14px;
    right: 14px;
    width: auto;
    padding: 12px 14px;
  }

  .contact-map-office strong {
    font-size: 22px;
  }

  .contact-map-office p {
    font-size: 14px;
  }

  .contact-map-traffic {
    display: none;
  }

  .contact-map-route {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 12px 14px;
  }

  .contact-map-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-map-pin {
    left: 41%;
    top: 53%;
    width: 44px;
    height: 44px;
    border-width: 6px;
  }

  .contact-qr-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .qr-card {
    min-height: 126px;
  }

  .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;
  }

  .share-layout {
    grid-template-columns: 1fr;
  }

  .share-page {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .share-page-section {
    padding: 28px 0 40px;
  }

  .share-hero {
    min-height: 220px;
  }

  .share-hero .container {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .share-hero .hero-kicker {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .share-hero h1 {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .share-hero h1 span {
    display: block;
  }

  .share-hero h1 span + span {
    margin-left: 0;
  }

  .share-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .share-article {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .share-intro {
    margin-bottom: 24px;
    padding: 18px 16px;
  }

  .share-intro p,
  .share-block p,
  .share-block li,
  .share-alert,
  .share-signoff p {
    font-size: 15px;
    line-height: 1.8;
  }

  .share-block {
    padding: 28px 0;
  }

  .share-step {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .share-block ul {
    gap: 4px;
    margin-top: 8px;
  }

  .share-block h3 {
    margin: 0 0 8px;
    font-size: 19px;
  }

  .share-info-grid {
    grid-template-columns: 1fr;
  }

  .share-sidebar {
    display: none;
  }

  .share-block h2 {
    margin-bottom: 16px;
    font-size: 23px;
  }

  .share-subblock {
    margin-top: 12px;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid #eee;
    border-radius: 0;
    background: transparent;
  }

  .share-info-grid > div {
    padding: 18px 0;
    border: 0;
    border-top: 1px solid #eee;
    border-radius: 0;
    background: transparent;
  }

  .share-alert {
    margin-top: 24px;
    padding: 18px;
  }

  .share-toc-card {
    display: none;
  }

  .share-mobile-cta {
    position: fixed;
    z-index: 70;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 4px;
    color: #1d1208;
    background: var(--gold);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  }

  .share-mobile-cta:hover {
    color: #1d1208;
  }
}
