:root {
  --navy: #111c2f;
  --navy-soft: #1d2d47;
  --bronze: #a8733e;
  --bronze-dark: #7e5228;
  --paper: #f7f4ee;
  --paper-deep: #ece5da;
  --white: #ffffff;
  --ink: #172033;
  --muted: #596477;
  --line: #ddd5c8;
  --success: #2d654e;
  --shadow: 0 22px 70px rgba(17, 28, 47, 0.12);
  --radius: 6px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.78 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: #315a85; text-underline-offset: 3px; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(221, 213, 200, .9);
  background: rgba(247, 244, 238, .94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.15;
}
.brand strong {
  font: 700 21px/1.1 Georgia, "Songti SC", "STSong", serif;
  letter-spacing: .05em;
}
.brand span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--bronze-dark); }

.nav-cta {
  padding: 9px 15px;
  color: var(--white) !important;
  border-radius: 3px;
  background: var(--navy);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--navy);
  background: transparent;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--bronze-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  color: var(--navy);
  font-family: Georgia, "Songti SC", "STSong", serif;
  line-height: 1.28;
}
h1 { margin: 0 0 22px; font-size: clamp(42px, 6vw, 74px); font-weight: 600; }
h2 { margin: 0 0 22px; font-size: clamp(30px, 4vw, 44px); font-weight: 600; }
h3 { margin: 0 0 12px; font-size: 23px; }
h4 { margin: 22px 0 8px; font-size: 18px; }
p { margin: 0 0 1em; }

.hero {
  overflow: hidden;
  padding: 76px 0 66px;
  background:
    radial-gradient(circle at 82% 30%, rgba(168, 115, 62, .12), transparent 31%),
    linear-gradient(180deg, #faf8f4 0%, var(--paper) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center;
  gap: 64px;
}
.hero-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: #3c485c;
  font-size: clamp(19px, 2.2vw, 23px);
}
.hero-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}
.hero-actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid var(--navy);
  border-radius: 3px;
  color: var(--navy);
  background: transparent;
  font-weight: 750;
  text-decoration: none;
}
.button.primary { color: var(--white); background: var(--navy); }
.button.bronze { color: var(--white); border-color: var(--bronze-dark); background: var(--bronze-dark); }
.button:hover { transform: translateY(-1px); }

.portrait-shell {
  position: relative;
  max-width: 440px;
  margin-left: auto;
}
.portrait-shell::before {
  content: "";
  position: absolute;
  inset: 28px -24px -24px 28px;
  border: 1px solid rgba(168,115,62,.55);
}
.portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.portrait-caption {
  position: relative;
  z-index: 2;
  width: calc(100% - 34px);
  margin: -32px auto 0;
  padding: 18px 20px;
  color: var(--white);
  background: var(--navy);
}
.portrait-caption strong { display: block; font-size: 18px; }
.portrait-caption span { color: #d9dfeb; font-size: 13px; }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item span { display: block; color: var(--muted); font-size: 12px; }
.trust-item strong { color: var(--navy); font-family: Georgia, "Songti SC", serif; font-size: 18px; }

.section { padding: 78px 0; }
.section.alt { background: var(--white); }
.section.deep { color: var(--white); background: var(--navy); }
.section.deep h2, .section.deep h3 { color: var(--white); }
.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-head p { color: var(--muted); font-size: 18px; }
.section.deep .section-head p { color: #ccd4e1; }
.section.deep .eyebrow, .contact-band .eyebrow { color: #e0b784; }

.split {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 58px;
}
.prose { max-width: 820px; }
.prose p, .prose li { color: #3d495d; }
.prose ul, .prose ol { padding-left: 1.35em; }
.prose li { margin-bottom: .55em; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.68);
}
.card p { color: var(--muted); }
.card-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--bronze-dark);
  font-weight: 800;
}
.card-link { font-weight: 750; }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-item {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}
.service-item p { color: #ccd4e1; }

.steps { counter-reset: step; }
.step {
  position: relative;
  padding: 0 0 30px 76px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--bronze-dark);
  font: 700 25px/1 Georgia, serif;
}
.step::after {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 10px;
  left: 17px;
  width: 1px;
  background: var(--line);
}
.step:last-child::after { display: none; }

.notice {
  padding: 19px 22px;
  border-left: 4px solid var(--bronze);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--paper-deep);
}
.notice strong { color: var(--navy); }

.contact-band { padding: 64px 0; color: var(--white); background: var(--navy-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.contact-band h2 { color: var(--white); }
.contact-band p { color: #d5dce7; }

.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.contact-card { padding: 26px; border: 1px solid var(--line); background: var(--white); }
.contact-card .label { color: var(--muted); font-size: 13px; }
.contact-card .value { display: block; margin: 6px 0 12px; color: var(--navy); font-size: 20px; font-weight: 800; word-break: break-all; }

.page-hero { padding: 68px 0 54px; border-bottom: 1px solid var(--line); background: #faf8f4; }
.page-hero h1 { max-width: 950px; font-size: clamp(38px,5vw,62px); }
.page-hero p { max-width: 780px; color: var(--muted); font-size: 19px; }

.breadcrumbs { margin-bottom: 22px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: inherit; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 790px) minmax(240px, 1fr);
  gap: 54px;
  align-items: start;
}
.article-body { padding: 0; }
.article-body h2 { margin-top: 48px; font-size: 32px; }
.article-body h3 { margin-top: 30px; }
.article-body p, .article-body li { color: #374357; }
.article-body li { margin-bottom: .55em; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 18px 0 32px; color: var(--muted); font-size: 13px; }
.summary-box { padding: 25px; border: 1px solid #d5c4ad; background: #f2eadf; }
.summary-box p:last-child { margin-bottom: 0; }
.article-aside { position: sticky; top: 104px; }
.aside-box { margin-bottom: 18px; padding: 24px; border: 1px solid var(--line); background: var(--white); }
.aside-box ul { margin: 0; padding-left: 1.15em; }
.aside-box li { margin-bottom: 8px; }

.faq { border-top: 1px solid var(--line); }
.faq details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; color: var(--navy); font-weight: 800; }
.faq details p { margin-top: 14px; }

.site-footer { padding: 54px 0 30px; color: #cbd3df; background: #0d1626; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 46px; }
.site-footer h3 { color: var(--white); font-size: 18px; }
.site-footer a { color: #d6deea; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom { margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); font-size: 12px; }

.copy-status { color: var(--success); font-size: 13px; }
.muted { color: var(--muted); }
.only-criminal { color: var(--bronze-dark); font-weight: 800; }

.topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}
.topic-nav a {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.topic-nav a:hover { border-color: var(--bronze); color: var(--bronze-dark); }

.article-group { margin-top: 54px; }
.article-group:first-child { margin-top: 0; }
.article-group-head { max-width: 800px; margin-bottom: 24px; }
.article-group-head h2 { margin-bottom: 10px; font-size: 32px; }
.article-group-head p { color: var(--muted); }

.answer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.answer-item {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}
.answer-item h3 { font-size: 20px; }
.answer-item p:last-child { margin-bottom: 0; }

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.fact-item { padding: 18px; border: 1px solid var(--line); background: var(--white); }
.fact-item span { display: block; color: var(--muted); font-size: 12px; }
.fact-item strong { color: var(--navy); }

@media (max-width: 900px) {
  .hero-grid, .split, .article-layout, .contact-grid { grid-template-columns: 1fr; }
  .portrait-shell { width: min(440px, calc(100% - 24px)); margin: 10px auto 0; }
  .cards, .trust-grid, .contact-cards { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .article-aside { position: static; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { min-height: 66px; }
  .menu-button { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 66px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .hero { padding-top: 52px; }
  .hero-grid { gap: 42px; }
  .section { padding: 60px 0; }
  .cards, .service-list, .trust-grid, .contact-cards, .footer-grid, .answer-list, .fact-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .contact-grid .button-row { margin-top: 0; }
}

@media print {
  .site-header, .contact-band, .site-footer, .article-aside, .button-row, .hero-actions { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .page-hero { padding: 24px 0; }
  a { color: #000; text-decoration: none; }
}
