:root {
  color-scheme: light dark;
  --bg: #f2f4f7;
  --surface: #fbfcfd;
  --surface-muted: #e7ebf0;
  --text: #111820;
  --text-soft: #25313b;
  --line: #d2d9e1;
  --accent: #153b5b;
  --accent-strong: #0a2942;
  --accent-soft: #e3eaf1;
  --on-accent: #f8fafc;
  --shadow: 0 14px 34px rgba(15, 42, 66, 0.12);
  --radius: 2px;
  --shell: 1280px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b131c;
    --surface: #111d29;
    --surface-muted: #192837;
    --text: #edf2f7;
    --text-soft: #aab6c3;
    --line: #2d3e50;
    --accent: #88a9c7;
    --accent-strong: #b4c9dc;
    --accent-soft: #1b3349;
    --on-accent: #081723;
    --shadow: 0 14px 34px rgba(2, 10, 18, 0.34);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}
body, button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a, input, textarea { border-radius: var(--radius); }
button, a { -webkit-tap-highlight-color: transparent; }
button:active, .button:active { transform: translateY(1px); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.shell-reading { width: min(calc(100% - 48px), 860px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 30; padding: 8px 12px; background: var(--accent); color: var(--on-accent); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.header-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }

.site-header {
  --surface: #ffffff;
  --text: #111820;
  --text-soft: #25313b;
  --line: #d2d9e1;
  --accent: #153b5b;
  --on-accent: #f8fafc;
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: rgba(21, 59, 91, 0.12);
  background: rgba(230, 233, 236, 0.88);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  backdrop-filter: blur(14px) saturate(115%);
  box-shadow: 0 7px 20px rgba(12, 38, 60, 0.08);
}
.header-inner { min-height: 73px; display: flex; align-items: center; gap: 24px; transition: min-height 220ms ease; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; border-radius: 0; }
.brand-mark { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; transition: width 220ms ease, height 220ms ease; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.15; text-align: center; }
.brand-copy strong { font-size: 16px; white-space: nowrap; }
.brand-copy small { margin-top: 5px; color: var(--text-soft); font-size: 8px; font-weight: 700; letter-spacing: 1.1px; white-space: nowrap; }
.site-nav { margin-left: auto; display: flex; align-items: center; justify-content: flex-end; gap: 15px; white-space: nowrap; }
.site-nav > a, .nav-parent { position: relative; z-index: 0; isolation: isolate; min-height: 40px; display: inline-flex; align-items: center; margin-inline: -10px; padding: 8px 10px; color: var(--text-soft); font-size: 13px; font-weight: 600; line-height: 24px; border-radius: 0; transition: none; }
.site-nav > a:hover, .site-nav > a:focus-visible, .nav-parent:hover, .nav-parent:focus-visible {
  background: #e9ecef;
  color: var(--text);
}
.site-nav > a.is-current, .nav-parent.is-current {
  background: #e9ecef;
  color: var(--text);
}
.nav-group { position: relative; align-self: stretch; display: flex; align-items: center; }
.nav-parent { border: 0; background: transparent; white-space: nowrap; }
.nav-parent:active { transform: none; }
.nav-submenu { position: absolute; top: calc(100% - 1px); left: 50%; width: max-content; min-width: 100%; max-width: calc(100vw - 32px); display: grid; grid-template-columns: repeat(2, max-content); gap: 2px 10px; padding: 10px; border: 1px solid var(--line); background: #ffffff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 8px); transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease; }
.nav-submenu-law, .nav-submenu-locations { width: max-content; min-width: 100%; max-width: calc(100vw - 32px); grid-template-columns: 1fr; }
.nav-submenu a { display: block; padding: 10px 12px; color: var(--text-soft); font-size: 13px; line-height: 1.5; border-radius: 0; white-space: nowrap; }
.nav-submenu a:hover, .nav-submenu a:focus-visible, .nav-submenu a.is-current { background: var(--accent-soft); color: var(--accent); }
.nav-group:hover .nav-submenu, .nav-group:focus-within .nav-submenu, .nav-group.is-open .nav-submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-group.is-escape-closed .nav-submenu { opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 8px); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); background: var(--surface); }
.nav-toggle > span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--text); transition: transform 180ms ease, opacity 180ms ease; }
.nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--surface); }
.hero-track { position: relative; }
.hero-slide { position: relative; display: none; }
.hero-slide:first-child { display: block; }
.hero-carousel.is-ready .hero-slide:first-child { display: none; }
.hero-carousel.is-ready .hero-slide.is-active { display: block; }
.hero-media { position: relative; height: clamp(360px, 42vw, 500px); display: block; overflow: hidden; border-radius: 0; background: var(--surface-muted); }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.96) 0%, rgba(248, 250, 252, 0.86) 30%, rgba(248, 250, 252, 0.34) 54%, rgba(248, 250, 252, 0) 72%);
  pointer-events: none;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 49%; }
.hero-inner { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; pointer-events: none; }
.hero-panel {
  width: min(620px, 54%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 54px 0;
  background: transparent;
  color: #111820;
  pointer-events: none;
}
.eyebrow, .section-kicker { margin: 0 0 16px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: 2px; }
.hero .eyebrow { margin-bottom: 12px; color: #153b5b; }
.hero-panel h2 { margin: 0; font-size: clamp(42px, 4.1vw, 62px); line-height: 1.15; font-weight: 600; letter-spacing: 0; }
.hero-lead { max-width: 590px; margin: 20px 0 0; color: #25313b; font-size: 17px; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; pointer-events: auto; }
.hero-controls { position: absolute; right: max(24px, calc((100vw - var(--shell)) / 2)); bottom: 18px; z-index: 4; display: flex; align-items: center; gap: 10px; }
.hero-controls[hidden] { display: none; }
.hero-arrow { width: 40px; height: 40px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(17, 24, 32, 0.18); background: rgba(255, 255, 255, 0.94); color: #111820; font-size: 20px; line-height: 1; box-shadow: 0 6px 18px rgba(7, 29, 48, 0.12); cursor: pointer; }
.hero-arrow:hover, .hero-arrow:focus-visible { border-color: var(--accent); color: var(--accent); }
.hero-dots { min-height: 40px; display: flex; align-items: center; gap: 8px; padding: 0 4px; }
.hero-dot { width: 10px; height: 10px; padding: 0; border: 1px solid rgba(17, 24, 32, 0.42); border-radius: 50%; background: rgba(255, 255, 255, 0.82); cursor: pointer; }
.hero-dot.is-current { border-color: #ffffff; background: var(--accent); box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9); }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 10px 22px; border: 1px solid transparent; font-weight: 700; white-space: nowrap; transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 140ms ease; }
.button-primary { background: var(--accent); color: var(--on-accent); }
.button-primary:hover { background: var(--accent-strong); }
.button-secondary { border-color: var(--line); background: var(--surface); color: var(--text); }
.button-secondary:hover { border-color: var(--accent); color: var(--accent); }
.button-light { background: #ffffff; color: #153b5b; }
.button-light:hover { background: #e3eaf1; }
.button-ghost { border-color: rgba(255, 255, 255, 0.5); color: #ffffff; }
.button-ghost:hover { border-color: #ffffff; background: rgba(255, 255, 255, 0.1); }

.portal-band { background: var(--accent); color: var(--on-accent); }
.portal-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.portal-grid a { position: relative; min-height: 126px; display: grid; align-content: center; padding: 20px 30px 20px 56px; border-right: 1px solid color-mix(in srgb, var(--on-accent) 18%, transparent); border-radius: 0; transition: background-color 180ms ease, transform 180ms ease; }
.portal-grid a:first-child { border-left: 1px solid color-mix(in srgb, var(--on-accent) 18%, transparent); }
.portal-grid a:hover { background: color-mix(in srgb, var(--on-accent) 9%, transparent); }
.portal-grid span { position: absolute; top: 28px; left: 22px; color: color-mix(in srgb, var(--on-accent) 46%, transparent); font-size: 11px; }
.portal-grid strong { font-size: 18px; font-weight: 600; }
.portal-grid small { color: color-mix(in srgb, var(--on-accent) 68%, transparent); font-size: 12px; }
.portal-grid a::after { content: "+"; position: absolute; top: 50%; right: 22px; font-size: 18px; font-weight: 300; transform: translateY(-50%); }

.service-band, .team-band, .content-section { padding: 92px 0; }
.service-layout { display: grid; grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.75fr); gap: 8vw; }
.section-intro h2, .about-copy h2 { margin: 0; font-size: clamp(31px, 3.1vw, 46px); line-height: 1.25; font-weight: 600; }
.section-intro > p:not(.section-kicker), .about-copy > p { max-width: 610px; margin: 18px 0 0; color: var(--text-soft); }
.section-kicker { margin-bottom: 12px; }
.section-intro .text-link { margin-top: 26px; }
.service-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-list a { position: relative; min-height: 190px; display: flex; flex-direction: column; padding: 28px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.service-list a > span { margin-bottom: 24px; color: var(--text-soft); font-size: 11px; }
.service-list strong { display: block; margin-bottom: 7px; font-size: 20px; font-weight: 600; }
.service-list small { display: block; margin-top: auto; color: var(--text-soft); font-size: 13px; line-height: 1.65; }
.service-list a::after { content: "+"; position: absolute; top: 24px; right: 24px; color: var(--accent); }
.service-list a:hover { background: var(--accent); color: var(--on-accent); }
.service-list a:hover span, .service-list a:hover small, .service-list a:hover::after { color: color-mix(in srgb, var(--on-accent) 76%, transparent); }

.about-band { padding: 100px 0; background: var(--surface); }
.about-grid { display: grid; grid-template-columns: minmax(420px, 1.18fr) minmax(0, 0.82fr); gap: 6vw; align-items: center; }
.about-figure { position: relative; aspect-ratio: 2200 / 1240; overflow: hidden; background: var(--surface-muted); }
.about-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.rich-summary { margin: 26px 0; color: var(--text-soft); line-height: 2; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--accent); font-weight: 700; border-radius: 0; }
.text-link::after { content: "→"; transition: transform 160ms ease; }
.text-link:hover::after { transform: translateX(4px); }

.founder-band { padding: 96px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface-muted); }
.founder-layout { display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr); gap: 7vw; align-items: center; }
.founder-portrait { width: 100%; max-width: 500px; margin: 0; overflow: hidden; aspect-ratio: 869 / 1000; background: var(--surface); }
.founder-portrait a { display: block; height: 100%; border-radius: 0; }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 240ms ease; }
.founder-copy { min-width: 0; }
.founder-copy h2 { max-width: 10em; margin: 0; font-size: clamp(34px, 3.5vw, 50px); line-height: 1.24; font-weight: 600; }
.founder-identity { margin-top: 28px; padding-top: 22px; border-top: 1px solid color-mix(in srgb, var(--accent) 32%, var(--line)); }
.founder-identity h3 { margin: 0; font-size: 25px; line-height: 1.4; font-weight: 600; }
.founder-identity p { margin: 5px 0 0; color: var(--accent); font-size: 15px; font-weight: 600; }
.founder-summary { max-width: 70ch; margin: 22px 0 0; color: var(--text-soft); line-height: 1.95; }
.founder-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 30px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder-facts > div { min-width: 0; padding: 18px 20px 19px 0; }
.founder-facts > div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.founder-facts dt { color: var(--accent); font-size: 22px; line-height: 1.35; font-weight: 700; }
.founder-facts dd { margin: 5px 0 0; color: var(--text-soft); font-size: 12px; }
.founder-actions { display: flex; flex-wrap: wrap; align-items: stretch; gap: 16px; margin-top: 30px; }
.founder-phone { display: grid; align-content: center; gap: 1px; padding: 3px 2px; border-radius: 0; }
.founder-phone span { color: var(--text-soft); font-size: 11px; }
.founder-phone strong { color: var(--accent); font-size: 16px; font-variant-numeric: tabular-nums; }

.team-band { background: var(--bg); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 38px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.section-intro-wide { margin: 0; }
.section-heading-row .text-link { flex: 0 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.team-carousel { min-width: 0; }
.team-carousel-viewport { min-width: 0; overflow: hidden; }
.team-carousel-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.team-carousel.is-ready .team-carousel-track { display: flex; align-items: stretch; will-change: transform; }
.team-carousel.is-ready .person-card { flex: 0 0 calc((100% - 72px) / 4); max-width: none; margin: 0; }
.person-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 0; background: var(--surface); transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease; }
.person-card a { display: flex; height: 100%; flex-direction: column; border-radius: 0; }
.person-card img { width: 100%; height: auto; aspect-ratio: 1 / 1.15; object-fit: cover; object-position: center top; background: var(--surface-muted); transition: transform 260ms ease; }
.person-card.has-no-photo img { display: none; }
.person-card.has-no-photo a::before { content: "运策律师"; width: 100%; aspect-ratio: 1 / 1.15; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-size: 22px; font-weight: 700; }
.person-card:hover { border-color: color-mix(in srgb, var(--accent) 36%, var(--line)); }
.person-card:hover img { transform: scale(1.018); }
.person-card h2, .person-card h3 { margin: 0; padding: 17px 18px 0; font-size: 18px; line-height: 1.45; font-weight: 600; }
.person-card a > div h3 { border: 0; }
.person-card p { display: -webkit-box; margin: 7px 18px 20px; overflow: hidden; color: var(--text-soft); font-size: 13px; line-height: 1.8; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }

.awards-band { padding: 92px 0; background: var(--surface); border-top: 1px solid var(--line); }
.awards-heading { margin-bottom: 24px; }
.awards-carousel, .awards-viewport { min-width: 0; }
.awards-viewport { overflow: hidden; }
.awards-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.awards-carousel:not(.is-ready) .award-item.is-clone { display: none; }
.awards-carousel.is-ready .awards-grid { display: flex; align-items: stretch; will-change: transform; }
.awards-carousel.is-ready .award-item { flex: 0 0 calc((100% - 72px) / 4); max-width: none; }
.award-item { min-width: 0; }
.award-item a { display: block; height: 100%; border-radius: 0; }
.award-visual { aspect-ratio: 16 / 11; display: grid; place-items: center; overflow: hidden; background: var(--surface-muted); }
.award-visual img { width: 100%; height: 100%; object-fit: contain; transition: transform 240ms ease, filter 240ms ease; }
.award-visual-placeholder { color: var(--accent); font-size: 20px; font-weight: 700; }
.award-copy { display: block; padding: 18px 0 4px; text-align: center; }
.award-copy time { display: block; margin-bottom: 7px; color: var(--text-soft); font-size: 12px; font-variant-numeric: tabular-nums; }
.award-copy strong { display: block; font-size: 18px; line-height: 1.55; font-weight: 600; }
.award-copy small { display: -webkit-box; margin-top: 8px; overflow: hidden; color: var(--text-soft); font-size: 13px; line-height: 1.75; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.award-item:hover .award-visual img { transform: scale(1.018); filter: saturate(1.04); }
.award-item:hover .award-copy strong { color: var(--accent); }
.awards-band + .insight-band { border-top: 1px solid var(--line); }

.insight-band { padding: 96px 0; background: var(--surface); }
.insight-grid { display: grid; grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.55fr); gap: 8vw; }
.insight-list { border-top: 2px solid var(--accent); }
.insight-list article, .article-list article { display: grid; grid-template-columns: 112px 1fr; gap: 26px; padding: 24px 0; border-bottom: 1px solid var(--line); transition: background-color 180ms ease, transform 180ms ease; }
.insight-list time, .article-list time { color: var(--text-soft); font-size: 13px; font-variant-numeric: tabular-nums; }
.insight-list h3, .article-list h2 { margin: 0; font-size: 19px; line-height: 1.5; font-weight: 600; }
.insight-list h3 a:hover, .article-list h2 a:hover { color: var(--accent); }
.insight-list p, .article-list p { margin: 7px 0 0; color: var(--text-soft); font-size: 13px; }


.page-head { padding: 66px 0 52px; background: var(--accent); color: var(--on-accent); }
.page-head h1, .article-head h1, .profile-copy h1, .not-found h1 { max-width: 960px; margin: 12px 0 0; font-size: clamp(35px, 4.1vw, 56px); line-height: 1.25; font-weight: 600; }
.page-head > .shell > p:last-child { max-width: 680px; margin-bottom: 0; color: color-mix(in srgb, var(--on-accent) 72%, transparent); }
.contact-page-head { position: relative; isolation: isolate; min-height: clamp(300px, 26vw, 420px); display: grid; align-items: center; overflow: hidden; padding: 0; background: #153b5b; }
.contact-page-head::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7, 29, 48, 0.7) 0%, rgba(7, 29, 48, 0.38) 48%, rgba(7, 29, 48, 0.12) 100%); pointer-events: none; }
.contact-page-head-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.contact-page-head > .shell { position: relative; z-index: 1; }
.contact-page-head h1 { color: #ffffff; text-shadow: 0 2px 14px rgba(7, 29, 48, 0.32); }
.news-page-head { position: relative; isolation: isolate; min-height: clamp(300px, 26vw, 420px); display: grid; align-items: center; overflow: hidden; padding: 0; background: #153b5b; }
.news-page-head::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7, 29, 48, 0.58) 0%, rgba(7, 29, 48, 0.22) 46%, rgba(7, 29, 48, 0.03) 72%); pointer-events: none; }
.news-page-head-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.news-page-head > .shell { position: relative; z-index: 1; }
.news-page-head h1 { color: #ffffff; text-shadow: 0 2px 14px rgba(7, 29, 48, 0.34); }
.news-page-head > .shell > p:last-child { color: rgba(255, 255, 255, 0.82); text-shadow: 0 1px 8px rgba(7, 29, 48, 0.28); }
.team-page-head { position: relative; isolation: isolate; min-height: clamp(300px, 26vw, 420px); display: grid; align-items: center; overflow: hidden; padding: 0; background: #153b5b; }
.team-page-head::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7, 29, 48, 0.56) 0%, rgba(7, 29, 48, 0.24) 44%, rgba(7, 29, 48, 0.03) 70%); pointer-events: none; }
.team-page-head-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.team-page-head > .shell { position: relative; z-index: 1; }
.team-page-head h1 { color: #ffffff; text-shadow: 0 2px 14px rgba(7, 29, 48, 0.34); }
.team-page-head > .shell > p:last-child { color: rgba(255, 255, 255, 0.84); text-shadow: 0 1px 8px rgba(7, 29, 48, 0.28); }
.content-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 76px; align-items: start; }
.topic-nav { position: sticky; top: 102px; display: grid; border-top: 2px solid var(--accent); }
.topic-nav h2 { margin: 0; padding: 18px 0 12px; font-size: 16px; }
.topic-nav a { padding: 10px 0; color: var(--text-soft); border-bottom: 1px solid var(--line); border-radius: 0; }
.topic-nav a:hover { color: var(--accent); }
.practice-page-body { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "overview lawyers" "articles lawyers"; column-gap: 44px; align-items: start; }
.practice-overview-region { min-width: 0; grid-area: overview; margin-bottom: 52px; }
.practice-overview { padding: 4px 0 2px; }
.practice-overview h2 { margin: 0 0 24px; padding-left: 18px; border-left: 3px solid var(--accent); font-size: 27px; line-height: 1.35; font-weight: 600; }
.practice-overview-copy { max-width: 850px; color: var(--text-soft); font-size: 15px; line-height: 2.05; text-align: justify; text-justify: inter-ideograph; white-space: pre-line; }
.practice-services { max-width: 850px; margin-top: 28px; padding-top: 22px; border-top: 1px solid #d9dde0; }
.practice-services h3 { display: flex; gap: 10px; align-items: center; margin: 0 0 10px; color: var(--text); font-size: 15px; line-height: 1.6; font-weight: 600; }
.practice-services h3::before { width: 22px; height: 2px; flex: 0 0 auto; background: var(--accent); content: ""; }
.practice-services p { margin: 0; color: var(--text-soft); font-size: 14px; line-height: 1.95; }
.practice-articles { min-width: 0; grid-area: articles; }
.article-list { border-top: 2px solid var(--accent); }
.practice-lawyers { width: 240px; grid-area: lawyers; display: grid; align-content: start; border-top: 2px solid var(--accent); }
.practice-lawyers h2 { margin: 0; padding: 18px 0 14px; font-size: 16px; line-height: 1.5; font-weight: 600; }
.practice-lawyer-list { display: grid; }
.practice-lawyer { min-width: 0; display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.practice-lawyer img { width: 68px; height: auto; aspect-ratio: 1 / 1.15; object-fit: cover; object-position: center top; background: var(--surface-muted); filter: saturate(0.88); }
.practice-lawyer span { min-width: 0; display: grid; gap: 4px; }
.practice-lawyer strong { overflow-wrap: anywhere; font-size: 15px; line-height: 1.45; font-weight: 600; }
.practice-lawyer small { color: var(--text-soft); font-size: 12px; line-height: 1.55; }
.practice-lawyer:not(.is-static):hover strong { color: var(--accent); }
.practice-lawyers-all { justify-self: start; margin-top: 18px; }

.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 40px; }
.pagination a, .pagination span { min-width: 40px; min-height: 40px; display: inline-grid; place-items: center; padding: 5px 11px; border: 1px solid var(--line); background: var(--surface); }
.pagination a:hover, .pagination .page-num-current { border-color: var(--accent); background: var(--accent); color: var(--on-accent); }
.empty-state { padding: 62px 28px; text-align: center; background: var(--surface); border-top: 2px solid var(--accent); }
.empty-state h2 { margin-top: 0; }
.empty-state p { color: var(--text-soft); }

.article-page { padding: 70px 0 96px; background: var(--surface); }
.article-head { padding-bottom: 34px; border-bottom: 2px solid var(--accent); }
.article-head h1 { font-size: clamp(32px, 3.6vw, 50px); }
.article-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 22px; color: var(--text-soft); font-size: 13px; }
.rich-content { padding-top: 42px; padding-bottom: 42px; font-size: 17px; line-height: 2; overflow-wrap: anywhere; }
.rich-content p { margin: 0 0 1.25em; }
.rich-content h2, .rich-content h3 { margin: 1.8em 0 0.7em; line-height: 1.5; }
.rich-content ul { display: grid; gap: 7px; margin: 0 0 1.5em; padding-left: 1.35em; }
.rich-content li { padding-left: 0.2em; }
.rich-content li::marker { color: var(--accent); }
.rich-content img { height: auto !important; margin: 26px auto; }
.rich-content table { width: 100% !important; display: block; overflow-x: auto; border-collapse: collapse; }
.rich-content td, .rich-content th { padding: 8px; border: 1px solid var(--line); }
.rich-content a { color: var(--accent); text-decoration: underline; }

.about-page-head {
  position: relative;
  isolation: isolate;
  min-height: clamp(300px, 26vw, 420px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: #153b5b;
}
.about-page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 29, 48, 0.76) 0%, rgba(7, 29, 48, 0.56) 34%, rgba(7, 29, 48, 0.12) 68%, rgba(7, 29, 48, 0.04) 100%);
  pointer-events: none;
}
.about-page-head-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 51%;
}
.about-page-head h1 { color: #ffffff; text-shadow: 0 2px 14px rgba(7, 29, 48, 0.32); }
.about-content-section { padding: 0 0 112px; background: var(--surface); }
.about-document { max-width: 1180px; display: flex; flex-direction: column; }
.about-document > .about-lead { order: 1; }
.about-document > .about-facts { order: 2; }
.about-document > .about-team-figure { order: 3; }
.about-document > .about-main-layout { order: 4; }
.about-lead {
  display: grid;
  grid-template-columns: minmax(380px, 0.68fr) minmax(0, 1.32fr);
  gap: 44px 56px;
  padding: 84px 0 76px;
  align-items: stretch;
}
.about-lead-heading { align-self: center; padding: 24px 0; }
.about-lead-heading h2 {
  max-width: none;
  margin: 0;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 600;
  white-space: nowrap;
}
.about-lead-heading p {
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  color: var(--text-soft);
  font-size: 14px;
}
.about-lead-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 8.4;
  background: var(--surface-muted);
}
.about-lead-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.about-lead-copy {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  max-width: none;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.about-lead-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 2.05;
}
.about-lead-copy p:first-child { color: var(--text); font-size: 17px; }
.about-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-facts > div {
  min-width: 0;
  padding: 28px 30px 30px;
  border-left: 1px solid var(--line);
}
.about-facts > div:first-child { border-left: 0; }
.about-facts dt {
  color: var(--accent);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.about-facts dd { margin: 9px 0 0; color: var(--text-soft); font-size: 13px; }
.about-team-figure {
  margin: 72px 0 0;
  background: var(--surface-muted);
}
.about-team-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}
.about-team-figure figcaption {
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
  font-size: 13px;
  text-align: center;
}
.about-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  padding-top: 104px;
}
.about-index {
  display: none;
}
.about-index-title {
  margin: 0;
  padding: 17px 0 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}
.about-index a {
  padding: 8px 12px;
  color: var(--text-soft);
  font-size: 14px;
  border-radius: 0;
  border-left: 1px solid var(--line);
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}
.about-index a:hover, .about-index a:focus-visible { border-left-color: var(--accent); background: var(--accent-soft); color: var(--accent); }
.about-section {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(0, 1.62fr);
  gap: 5vw;
  padding-bottom: 72px;
  margin-bottom: 0;
  scroll-margin-top: 104px;
}
.about-section:last-child { padding-bottom: 0; }
.about-section > h2 {
  margin: 0;
  padding-top: 13px;
  border-top: 2px solid var(--accent);
  color: var(--text);
  font-size: 23px;
  line-height: 1.45;
  font-weight: 600;
}
.about-section-body { min-width: 0; padding-top: 12px; border-top: 1px solid var(--line); }
.about-section-body p {
  max-width: none;
  margin: 0 0 1.2em;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 2;
}
.about-section-body p:last-child { margin-bottom: 0; }
.about-office-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-office-list li {
  min-width: 0;
  padding-top: 18px;
  border-top: 2px solid var(--accent);
}
.about-office-list strong { display: block; margin-bottom: 9px; font-size: 16px; }
.about-office-list span { display: block; min-width: 0; color: var(--text-soft); font-size: 13px; line-height: 1.75; overflow-wrap: anywhere; }
.about-practice-list {
  margin: 14px 0 0;
  padding-left: 1.35em;
  list-style: disc;
}
.about-practice-list li {
  margin: 0 0 8px;
  padding-left: 3px;
  color: var(--text-soft);
  line-height: 1.8;
}
.about-practice-list li:last-child { margin-bottom: 0; }
.about-section-emphasis .about-section-body {
  padding-left: 0;
  border-left: 0;
}
.about-founder-section .about-section-body { padding-bottom: 8px; }
.about-founder-profile { display: grid; grid-template-columns: minmax(210px, 0.58fr) minmax(0, 1.42fr); gap: 42px; align-items: center; margin-bottom: 34px; }
.about-founder-profile figure { width: 100%; margin: 0; overflow: hidden; aspect-ratio: 869 / 1000; background: var(--surface-muted); }
.about-founder-profile figure a { display: block; height: 100%; border-radius: 0; }
.about-founder-profile img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 240ms ease; }
.about-founder-intro { min-width: 0; }
.about-founder-intro h3 { margin: 0; font-size: 29px; line-height: 1.35; font-weight: 600; }
.about-founder-role { margin-top: 7px !important; color: var(--accent) !important; font-weight: 600; line-height: 1.75 !important; }
.about-founder-details { margin: 25px 0 0; border-top: 1px solid var(--line); }
.about-founder-details > div { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.about-founder-details dt { color: var(--text-soft); font-size: 13px; }
.about-founder-details dd { min-width: 0; margin: 0; overflow-wrap: anywhere; font-size: 14px; font-weight: 600; }
.about-founder-details a { color: var(--accent); }
.criminal-service-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px; margin-top: 34px; }
.criminal-service-groups > section { min-width: 0; padding-top: 18px; border-top: 2px solid var(--accent); }
.criminal-service-groups h3 { margin: 0 0 16px; font-size: 18px; line-height: 1.45; }
.criminal-service-groups dl { margin: 0; }
.criminal-service-groups dl > div { padding: 0 0 15px; }
.criminal-service-groups dt { margin-bottom: 3px; font-size: 14px; font-weight: 700; }
.criminal-service-groups dd { margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.8; }
.about-founder-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-neighbors { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding-top: 28px; border-top: 1px solid var(--line); }
.article-neighbors div { display: grid; gap: 7px; }
.article-neighbors span { color: var(--text-soft); font-size: 12px; }

.related-section { margin-top: 18px; padding-top: 42px; padding-bottom: 42px; border-top: 1px solid var(--line); }
.related-heading { display: grid; gap: 8px; margin-bottom: 24px; }
.related-heading .section-kicker { margin: 0; }
.related-heading h2 { margin: 0; font-size: 25px; line-height: 1.35; font-weight: 600; }
.related-lawyer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 32px; border-top: 2px solid var(--accent); }
.related-lawyer { min-width: 0; display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); border-radius: 0; transition: background-color 180ms ease, transform 180ms ease; }
.related-lawyer img { width: 96px; height: auto; aspect-ratio: 1 / 1.15; object-fit: cover; object-position: center top; background: var(--surface-muted); }
.related-lawyer > span { min-width: 0; display: grid; gap: 7px; }
.related-lawyer strong { font-size: 17px; line-height: 1.45; }
.related-lawyer small { max-height: 3.4em; overflow: hidden; color: var(--text-soft); font-size: 12px; line-height: 1.7; }
.related-lawyer em { color: var(--accent); font-size: 12px; font-style: normal; font-weight: 700; }
.related-lawyer:not(.is-static):hover strong { color: var(--accent); }
.related-article-list { border-top: 2px solid var(--accent); }
.related-article { min-width: 0; display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 24px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--line); border-radius: 0; transition: background-color 180ms ease, transform 180ms ease; }
.related-article > span { display: flex; flex-wrap: wrap; gap: 7px 12px; color: var(--text-soft); font-size: 12px; }
.related-article > span small { color: var(--accent); font-size: inherit; }
.related-article strong { min-width: 0; font-size: 16px; line-height: 1.6; font-weight: 600; }
.related-article:hover strong { color: var(--accent); }

.team-grid-full { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px 22px; }
.team-grid-full .person-card h2 { display: -webkit-box; min-height: 3.9em; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.team-search-area { margin-bottom: 32px; padding: 22px; border: 1px solid var(--line); border-top: 2px solid var(--accent); background: var(--surface); }
.team-search-form { display: grid; grid-template-columns: minmax(260px, 1.15fr) minmax(220px, 0.85fr) 160px; gap: 14px; align-items: center; }
.team-search-form input[type="search"], .team-search-form select { width: 100%; min-width: 0; height: 54px; padding: 12px 16px; border: 1px solid var(--line); background: var(--bg); color: var(--text); box-shadow: none; }
.team-search-form input[type="search"]::placeholder { color: color-mix(in srgb, var(--text-soft) 72%, transparent); }
.team-search-form select { cursor: pointer; }
.team-search-form input[type="search"]:hover, .team-search-form select:hover { border-color: color-mix(in srgb, var(--accent) 48%, var(--line)); }
.team-search-form input[type="search"]:focus, .team-search-form select:focus { border-color: var(--accent); background: var(--surface); box-shadow: 0 0 0 1px var(--accent); }
.team-search-form .button { width: 160px; min-height: 54px; padding-inline: 18px; }
.team-search-result-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 16px; color: var(--text-soft); }
.team-search-result-meta p { margin: 0; }
.team-search-result-meta strong { color: var(--text); }
.profile-section { padding: 0 0 96px; background: var(--surface); }
.profile-hero { padding: 56px 0 62px; border-bottom: 1px solid var(--line); background: var(--bg); }
.profile-hero-grid { display: grid; grid-template-columns: minmax(300px, 420px) minmax(0, 1fr); gap: clamp(48px, 7vw, 96px); align-items: center; }
.profile-photo { width: 100%; max-width: 420px; margin: 0; aspect-ratio: 1 / 1.14; overflow: hidden; border: 1px solid var(--line); background: var(--surface-muted); }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.profile-copy { min-width: 0; padding-top: 22px; border-top: 2px solid var(--accent); }
.profile-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--accent); font-size: 13px; font-weight: 700; border-radius: 0; }
.profile-back::before { content: "←"; font-size: 16px; line-height: 1; }
.profile-back:hover { color: var(--accent-strong); }
.profile-copy h1 { margin: 0; font-size: clamp(40px, 4vw, 56px); line-height: 1.16; font-weight: 600; }
.profile-role { max-width: 34em; margin: 12px 0 0; color: var(--accent); font-size: 19px; line-height: 1.6; font-weight: 600; }
.profile-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 34px; margin: 30px 0 0; border-top: 1px solid var(--line); }
.profile-facts > div { min-width: 0; display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.profile-facts > .profile-fact-wide { grid-column: 1 / -1; }
.profile-facts dt { color: var(--text-soft); font-size: 13px; }
.profile-facts dd { min-width: 0; margin: 0; overflow-wrap: anywhere; font-size: 14px; font-weight: 600; }
.profile-facts dd a { color: var(--accent); border-radius: 0; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.profile-document { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: clamp(54px, 7vw, 92px); align-items: start; padding-top: 72px; }
.profile-index { position: sticky; top: 102px; display: grid; border-top: 2px solid var(--accent); }
.profile-index > p { margin: 0; padding: 17px 0 10px; font-size: 15px; font-weight: 700; }
.profile-index > a { padding: 9px 0; color: var(--text-soft); font-size: 14px; border-radius: 0; }
.profile-index > a:hover { color: var(--accent); }
.profile-office-contact { display: grid; gap: 5px; margin-top: 22px; padding-top: 19px; border-top: 1px solid var(--line); }
.profile-office-contact span { color: var(--text-soft); font-size: 12px; }
.profile-office-contact a { color: var(--accent); font-size: 16px; font-weight: 700; border-radius: 0; }
.profile-office-phones { display: grid; gap: 3px; justify-items: start; }
.profile-overview { min-width: 0; max-width: 960px; scroll-margin-top: 104px; }
.profile-content-heading { padding-bottom: 18px; border-bottom: 2px solid var(--accent); }
.profile-content-heading h2 { margin: 0; font-size: 28px; line-height: 1.35; font-weight: 600; }
.profile-body {
  max-width: none;
  padding-top: 32px;
  padding-bottom: 18px;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: normal;
  overflow-wrap: break-word;
}
.profile-body p { margin-bottom: 1em; }
.profile-body a { color: #0675c1; text-decoration: none; }
.profile-body a:hover, .profile-body a:focus { color: #0675c1; text-decoration: none; }
.profile-body blockquote { margin: 0 0 18px; padding: 0 0 0 15px; border-left: 5px solid var(--line); }
.profile-body img { display: inline; max-width: 100%; height: auto; margin: 0; }
.profile-body img + br { display: block; padding: 4px 0; content: " "; }
.profile-body iframe, .profile-body video { max-width: 100%; border: 0; }
.profile-body table { max-width: 100%; }
.profile-body pre { margin: 0.5em 0; padding: 0.4em 0.6em; border-radius: 8px; background: #f8f8f8; color: #111820; line-height: 1.5; white-space: pre-wrap; }

.consult-grid { display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr); gap: 8vw; align-items: start; }
.consult-note { border-top: 2px solid var(--accent); padding-top: 20px; }
.consult-note h2 { margin-top: 0; }
.consult-note > p { color: var(--text-soft); }
.direct-contact { display: grid; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.direct-contact span { color: var(--text-soft); font-size: 12px; }
.direct-contact a { color: var(--accent); font-size: 25px; font-weight: 700; }
.direct-contact-phones { display: grid; gap: 2px; justify-items: start; font-variant-numeric: tabular-nums; }
.consult-form { padding: 32px; background: var(--surface); box-shadow: var(--shadow); }
.contact-page-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr); gap: 7vw; align-items: start; }
.contact-directory > h2 { margin: 0; font-size: 34px; }
.contact-offices { margin-top: 28px; border-bottom: 1px solid var(--line); }
.office-entry { display: grid; grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr); gap: 14px 32px; padding: 25px 20px; border-top: 1px solid var(--line); }
.office-entry:first-child { border-top: 2px solid var(--accent); }
.office-entry h3 { grid-column: 1 / -1; margin: 0; font-size: 20px; }
.office-entry p { display: grid; gap: 4px; margin: 0; color: var(--text-soft); line-height: 1.75; }
.office-entry strong { color: var(--text); font-size: 12px; }
.office-entry a { color: var(--accent); font-size: 17px; font-weight: 700; }
.office-phone-list { display: grid; gap: 3px; justify-items: start; }
.office-entry.is-interactive { position: relative; cursor: pointer; transition: background-color 180ms ease; }
.office-entry.is-interactive::before { position: absolute; top: 20px; bottom: 20px; left: 0; width: 2px; background: var(--accent); content: ""; transform: scaleY(0); transform-origin: center; transition: transform 180ms ease; }
.office-entry.is-interactive:hover,
.office-entry.is-interactive:focus-visible,
.office-entry.is-interactive.is-selected { background: rgba(26, 34, 45, 0.045); }
.office-entry.is-interactive:hover::before,
.office-entry.is-interactive:focus-visible::before,
.office-entry.is-interactive.is-selected::before { transform: scaleY(1); }
.office-entry.is-interactive:focus { outline: none; }
.office-entry.is-interactive:focus-visible { outline: 1px solid rgba(21, 71, 115, 0.38); outline-offset: -1px; }
@media (prefers-reduced-motion: reduce) {
  .office-entry.is-interactive,
  .office-entry.is-interactive::before { transition: none; }
}
.office-scope { margin: 26px 0 0; padding-left: 18px; border-left: 2px solid var(--accent); color: var(--text-soft); line-height: 1.8; }
.office-scope strong { display: block; margin-bottom: 4px; color: var(--text); }
.contact-form { position: sticky; top: 96px; }
.contact-lawyer-band { padding: 88px 0; border-top: 1px solid var(--line); background: var(--surface-muted); }
.contact-lawyer-layout { display: grid; grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr); gap: 7vw; align-items: center; }
.contact-lawyer-portrait { width: 100%; max-width: 440px; margin: 0; overflow: hidden; aspect-ratio: 810 / 1000; background: var(--surface); }
.contact-lawyer-portrait a { display: block; height: 100%; border-radius: 0; }
.contact-lawyer-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 240ms ease; }
.contact-lawyer-copy { min-width: 0; padding-top: 22px; border-top: 2px solid var(--accent); }
.contact-lawyer-copy h2 { margin: 0; font-size: clamp(34px, 3.7vw, 52px); line-height: 1.2; font-weight: 600; }
.contact-lawyer-role { max-width: 760px; margin: 13px 0 0; color: var(--accent); font-size: 17px; line-height: 1.8; font-weight: 600; }
.contact-lawyer-summary { max-width: 72ch; margin: 24px 0 0; color: var(--text-soft); line-height: 1.95; }
.contact-lawyer-actions { display: flex; flex-wrap: wrap; align-items: stretch; gap: 20px; margin-top: 30px; }
.contact-lawyer-phone { display: grid; align-content: center; gap: 1px; border-radius: 0; }
.contact-lawyer-phone span { color: var(--text-soft); font-size: 11px; }
.contact-lawyer-phone strong { color: var(--accent); font-size: 17px; font-variant-numeric: tabular-nums; }
.location-band { padding: 88px 0 96px; border-top: 1px solid var(--line); background: var(--bg); }
.location-band-contact { padding-top: 58px; background: var(--surface); }
.location-heading { display: grid; grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr); gap: 7vw; align-items: end; margin-bottom: 34px; }
.location-heading h2 { margin: 0; font-size: clamp(32px, 3.4vw, 48px); line-height: 1.2; font-weight: 600; }
.location-heading > p { max-width: 620px; margin: 0; color: var(--text-soft); font-size: 16px; line-height: 1.9; }
.location-layout { display: grid; grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1.58fr); gap: 34px; align-items: stretch; }
.location-tabs { display: grid; align-content: start; border-top: 2px solid var(--accent); }
.location-tab { width: 100%; min-height: 96px; display: grid; gap: 7px; align-content: center; padding: 18px 20px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--text); text-align: left; cursor: pointer; transition: background-color 180ms ease, color 180ms ease; }
.location-tab strong { font-size: 17px; line-height: 1.4; }
.location-tab span { color: var(--text-soft); font-size: 13px; line-height: 1.6; }
.location-tab:hover,
.location-tab:focus-visible { background: var(--accent-soft); }
.location-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.location-tab.is-active { background: var(--accent); color: var(--on-accent); }
.location-tab.is-active span { color: color-mix(in srgb, var(--on-accent) 76%, transparent); }
.office-map { min-width: 0; background: var(--surface); border: 1px solid var(--line); }
.office-map-viewport { position: relative; min-height: 0; aspect-ratio: 16 / 9; overflow: hidden; background: #dfe8ef; }
.baidu-map-launch { width: 100%; height: 100%; min-height: inherit; display: grid; place-content: center; justify-items: center; gap: 13px; padding: 36px; background: #e9edef; color: var(--text); text-align: center; }
.baidu-map-launch strong { font-size: clamp(27px, 3vw, 40px); line-height: 1.2; font-weight: 600; }
.baidu-map-launch > span:not(.text-link) { max-width: 42em; color: var(--text-soft); font-size: 15px; line-height: 1.8; }
.office-map .baidu-map-launch { position: relative; display: block; overflow: hidden; padding: 0; }
.office-map-preview { width: 100%; height: 100%; display: block; object-fit: cover; opacity: 0; transform: scale(1.005); transition: opacity 180ms ease, transform 260ms ease; }
.baidu-map-launch.has-map-preview .office-map-preview { opacity: 1; }
.baidu-map-launch.has-map-preview:hover .office-map-preview { transform: scale(1.015); }
.baidu-map-fallback { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 13px; padding: 36px; transition: opacity 180ms ease, visibility 180ms ease; }
.baidu-map-fallback > span:not(.text-link) { max-width: 42em; color: var(--text-soft); font-size: 15px; line-height: 1.8; }
.baidu-map-launch.has-map-preview .baidu-map-fallback { opacity: 0; visibility: hidden; }
.baidu-map-launch:hover, .baidu-map-launch:focus-visible { background: #e3e7e9; }
.baidu-map-launch:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.locations-page-head .section-kicker { margin: 0 0 8px; color: rgba(255, 255, 255, 0.76); }
.locations-page-head h1 { margin-top: 0; }
.locations-intro-band { padding: 72px 0; background: var(--surface); border-bottom: 1px solid var(--line); }
.locations-intro { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: 8vw; align-items: start; }
.locations-intro h2, .locations-directory-heading h2 { margin: 0; font-size: clamp(30px, 3.1vw, 44px); line-height: 1.25; font-weight: 600; }
.locations-intro > p { max-width: 760px; margin: 0; color: var(--text-soft); font-size: 17px; line-height: 2; }
.locations-directory { padding: 84px 0 100px; }
.locations-directory-heading { margin-bottom: 28px; }
.locations-grid { border-top: 2px solid var(--accent); }
.institution-card { min-width: 0; border-bottom: 1px solid var(--line); }
.institution-copy { min-width: 0; display: grid; grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.65fr) 112px; gap: 34px; align-items: center; min-height: 168px; padding: 30px 8px 30px 0; color: inherit; cursor: pointer; transition: background-color 140ms ease; }
.institution-card:hover .institution-copy { background: rgba(21, 59, 91, 0.035); }
.institution-copy:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.institution-english { margin: 0 0 9px; color: var(--accent); font-size: 11px; line-height: 1.4; font-weight: 700; letter-spacing: 0; }
.institution-heading { min-width: 0; padding-left: 24px; border-left: 3px solid var(--accent); }
.institution-copy h3 { margin: 0 0 8px; font-size: 24px; line-height: 1.35; font-weight: 600; }
.institution-heading > strong, .institution-detail-copy > strong { display: block; color: var(--text-soft); font-size: 14px; line-height: 1.6; font-weight: 400; }
.institution-copy dl, .institution-detail-copy dl { margin: 0; }
.institution-copy dl > div, .institution-detail-copy dl > div { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 14px; padding: 8px 0; }
.institution-copy dl > div + div { border-top: 1px solid var(--line); }
.institution-copy dt, .institution-detail-copy dt { color: var(--text-soft); font-size: 13px; }
.institution-copy dd, .institution-detail-copy dd { min-width: 0; margin: 0; font-size: 14px; line-height: 1.7; overflow-wrap: anywhere; }
.institution-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 22px; }
.institution-copy .institution-actions { justify-content: flex-end; margin: 0; }
.institution-copy .institution-actions .text-link { gap: 9px; font-size: 14px; white-space: nowrap; }
.institution-copy .institution-actions .text-link::after { transition: none; }
.institution-copy .institution-actions .text-link:hover::after { transform: none; }
.institution-detail-section { padding: 88px 0 104px; background: var(--surface); }
.institution-detail { display: grid; grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr); gap: 7vw; align-items: center; }
.institution-back { display: inline-block; margin-bottom: 44px; color: var(--text-soft); font-size: 14px; }
.institution-back::before { content: "\2190"; margin-right: 8px; }
.institution-detail-copy h2 { margin: 0 0 10px; font-size: clamp(34px, 4vw, 52px); line-height: 1.25; font-weight: 600; }
.institution-detail-copy dl { margin-top: 34px; border-top: 1px solid var(--line); }
.institution-detail-copy dl > div { grid-template-columns: 76px minmax(0, 1fr); padding: 17px 0; border-bottom: 1px solid var(--line); }
.institution-detail-copy dd { font-size: 16px; }
.institution-detail-photo { min-width: 0; margin: 0; background: var(--surface-muted); overflow: hidden; }
.institution-detail-photo img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.institution-intro-section { padding: 82px 0 90px; border-top: 1px solid var(--line); background: var(--bg); }
.institution-intro-layout { display: grid; grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr); gap: 7vw; align-items: start; }
.institution-intro-heading { position: sticky; top: 108px; padding-top: 18px; border-top: 2px solid var(--accent); }
.institution-intro-heading h2 { margin: 0; font-size: clamp(28px, 2.8vw, 40px); line-height: 1.3; font-weight: 600; }
.institution-intro-content { min-width: 0; max-width: 850px; }
.institution-intro-content > p { margin: 0; color: var(--text); font-size: 16px; line-height: 2.05; text-align: justify; }
.institution-intro-content > p + p { margin-top: 20px; }
.institution-intro-content > p strong { color: var(--accent); font-weight: 700; }
.institution-intro-facts { margin: 34px 0 0; border-top: 1px solid var(--line); }
.institution-intro-facts > div { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 22px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.institution-intro-facts dt { color: var(--text-soft); font-size: 14px; }
.institution-intro-facts dd { min-width: 0; margin: 0; font-size: 15px; line-height: 1.7; overflow-wrap: anywhere; }
.institution-intro-facts a { color: var(--accent); }
.institution-lawyers { padding: 80px 0 92px; border-top: 1px solid var(--line); background: var(--bg); }
.institution-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid var(--accent); }
.institution-section-heading h2 { margin: 0; font-size: clamp(28px, 2.8vw, 40px); line-height: 1.3; font-weight: 600; }
.institution-section-heading p { max-width: 680px; margin: 0; color: var(--text-soft); font-size: 14px; line-height: 1.8; }
.institution-lawyer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px 24px; }
.institution-lawyer { min-width: 0; display: block; border-bottom: 1px solid var(--line); }
.institution-lawyer img { width: 100%; height: auto; aspect-ratio: 1 / 1.15; object-fit: cover; object-position: center top; background: var(--surface-muted); filter: saturate(0.9); }
.institution-lawyer > span { display: block; padding: 16px 0 18px; }
.institution-lawyer strong { display: block; font-size: 18px; line-height: 1.45; font-weight: 600; }
.institution-lawyer small { display: block; max-height: 3.4em; margin-top: 6px; overflow: hidden; color: var(--text-soft); font-size: 13px; line-height: 1.7; }
.institution-lawyer:not(.is-static):hover strong { color: var(--accent); }

.person-card-static a[aria-disabled="true"],
.founder-portrait.is-static a[aria-disabled="true"],
.contact-lawyer-portrait.is-static a[aria-disabled="true"],
.practice-lawyer.is-static,
.institution-lawyer.is-static,
.related-lawyer.is-static { cursor: default; }
.institution-articles { padding: 80px 0 92px; border-top: 1px solid var(--line); background: var(--surface); }
.institution-article-grid { display: grid; grid-template-columns: minmax(0, 1fr); }
.institution-article { min-width: 0; border-bottom: 1px solid var(--line); }
.institution-article > a { display: block; padding: 24px 0; color: inherit; }
.institution-article-copy { min-width: 0; display: block; }
.institution-article-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 9px; color: var(--text-soft); font-size: 12px; line-height: 1.5; }
.institution-article-meta small { color: var(--accent); font: inherit; font-weight: 700; }
.institution-article-copy > strong { display: block; font-size: 18px; line-height: 1.55; font-weight: 600; }
.institution-article-description { display: -webkit-box; margin-top: 8px; overflow: hidden; color: var(--text-soft); font-size: 13px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.institution-article > a:hover .institution-article-copy > strong { color: var(--accent); }
.institution-article > a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.institution-map-section { padding: 84px 0 104px; border-top: 1px solid var(--line); background: var(--surface); }
.institution-location-map { max-width: 1040px; margin: 0 auto; border: 1px solid var(--line); background: #dfe8ef; }
.institution-location-map .baidu-map-launch { position: relative; min-height: 0; aspect-ratio: 16 / 9; display: block; overflow: hidden; padding: 0; }
.form-heading { margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-heading h2 { margin: 0; font-size: 28px; }
.form-heading > p:last-child { margin: 8px 0 0; color: var(--text-soft); }
.field { display: grid; gap: 7px; margin-bottom: 20px; }
.field label, .search-form label { font-weight: 700; }
.field small { color: var(--text-soft); }
input, textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); background: var(--bg); color: var(--text); transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
input:focus, textarea:focus { border-color: var(--accent); outline: 0; box-shadow: 0 0 0 3px var(--accent-soft); background: var(--surface); }
input:user-invalid, textarea:user-invalid { border-color: #a53b3b; }
.code-field > div { display: grid; grid-template-columns: 1fr 140px; gap: 10px; }
.code-image { width: 140px; height: 48px; object-fit: cover; border: 1px solid var(--line); cursor: pointer; }
.form-status { min-height: 28px; margin: 0 0 12px; padding-left: 11px; border-left: 2px solid transparent; font-size: 14px; }
.form-status:empty { padding-left: 0; }
.form-status.is-loading { border-left-color: var(--line); color: var(--text-soft); }
.form-status.is-success { border-left-color: #287a48; color: #287a48; }
.form-status.is-error { border-left-color: #b23a3a; color: #b23a3a; }
.dialog-feedback-ready .form-status {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.feedback-dialog {
  width: min(calc(100% - 32px), 440px);
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  overflow: visible;
}
.feedback-dialog::backdrop { background: rgba(12, 24, 34, 0.48); }
.feedback-dialog-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(7, 29, 48, 0.2);
}
.feedback-dialog-heading {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 16px 0 22px;
  border-bottom: 1px solid var(--line);
}
.feedback-dialog-heading h2 {
  position: relative;
  margin: 0;
  padding-left: 12px;
  font-size: 19px;
  line-height: 1.4;
}
.feedback-dialog-heading h2::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 3px;
  background: var(--accent);
}
.feedback-dialog-content { min-width: 0; padding: 24px 22px 27px; }
.feedback-dialog-content p { margin: 0; color: var(--text-soft); line-height: 1.75; overflow-wrap: anywhere; }
.feedback-dialog-close {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.feedback-dialog-close:hover { background: var(--surface-muted); color: var(--text); }
.feedback-dialog-footer {
  display: flex;
  justify-content: flex-end;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.feedback-dialog-action { min-width: 96px; min-height: 42px; padding: 8px 20px; cursor: pointer; }
.consult-form .field { transition: opacity 180ms ease; }
.consult-form.is-submitting .field { opacity: 0.72; }
button:disabled { cursor: wait; opacity: 0.65; }

.search-form { margin-bottom: 42px; padding-top: 18px; border-top: 2px solid var(--accent); }
.search-form > div { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 8px; }
.search-results { margin-top: 20px; }
.not-found { min-height: 65dvh; display: grid; align-items: center; padding: 80px 0; }
.not-found p:not(.eyebrow) { color: var(--text-soft); }

.site-footer {
  --footer-text: rgba(248, 250, 252, 0.76);
  --footer-muted: rgba(248, 250, 252, 0.55);
  --footer-line: rgba(248, 250, 252, 0.15);
  background: #0b2941;
  color: #f8fafc;
}
.footer-main { padding: 52px 0 22px; border-top: 1px solid var(--footer-line); background: #071d30; }
.footer-grid { display: grid; grid-template-columns: minmax(250px, 1.35fr) minmax(250px, 1.25fr) minmax(210px, 0.95fr) minmax(110px, 0.55fr); gap: 56px; }
.footer-sign { display: flex; align-items: center; gap: 13px; width: fit-content; color: #f8fafc; }
.footer-logo-mark { width: 50px; height: 50px; display: grid; place-items: center; flex: 0 0 auto; }
.footer-logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-sign strong { display: grid; color: #f8fafc; font-size: 17px; line-height: 1.2; }
.footer-sign small { margin-top: 5px; color: var(--footer-muted); font-size: 8px; letter-spacing: 1.1px; white-space: nowrap; }
.site-footer h2 { margin: 0 0 15px; color: #f8fafc; font-size: 14px; font-weight: 700; }
.footer-brand > p { max-width: 310px; margin: 17px 0 0; color: var(--footer-text); font-size: 13px; }
.footer-office > p { margin: 0 0 8px; color: var(--footer-text); font-size: 13px; line-height: 1.7; }
.footer-office > p:last-child { margin-bottom: 0; }
.footer-office-main > p { max-width: 280px; }
.footer-office a { color: var(--footer-text); font-size: 13px; }
.footer-office-phones { display: grid; gap: 2px; justify-items: start; margin-top: 8px; font-variant-numeric: tabular-nums; }
.footer-office:not(.footer-office-main) .footer-office-phones { margin-top: 0; }
.footer-office:not(.footer-office-main) p { display: grid; grid-template-columns: 66px minmax(0, 1fr); gap: 9px; }
.footer-office:not(.footer-office-main) span { color: var(--footer-muted); }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; }
.footer-nav a { display: block; margin: 0 0 6px; color: var(--footer-text); font-size: 13px; }
.site-footer a:hover { color: #f8fafc; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 18px; border-top: 1px solid var(--footer-line); color: var(--footer-muted); font-size: 12px; }
.footer-bottom a { color: inherit; }
.mobile-actions { display: none; }

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(15, 42, 66, 0.12); }
  .portal-grid a:hover { transform: translateY(-2px); }
  .service-list a:hover { z-index: 1; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(15, 42, 66, 0.12); }
  .person-card:not(.person-card-static):hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(15, 42, 66, 0.13); }
  .person-card-static:hover { border-color: var(--line); transform: none; box-shadow: none; }
  .person-card-static:hover img { transform: none; }
  .founder-portrait:not(.is-static) a:hover img, .about-founder-profile figure a:hover img, .contact-lawyer-portrait:not(.is-static) a:hover img { transform: scale(1.018); }
  .insight-list article:hover, .article-list article:hover, .related-lawyer:not(.is-static):hover, .related-article:hover { transform: translateX(4px); }
  button:active, .button:active { transform: translateY(1px); box-shadow: none; }
}

@media (min-width: 1181px) {
  .site-header.is-scrolled { min-height: 68px; }
  .site-header.is-scrolled .header-inner { min-height: 65px; }
  .site-header.is-scrolled .brand-mark { width: 44px; height: 44px; }
  .site-header.is-scrolled .site-nav > a, .site-header.is-scrolled .nav-parent { padding-block: 8px; }
}

@media (max-width: 1180px) {
  body.nav-open { overflow: hidden; }
  .header-inner { justify-content: space-between; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav { position: absolute; top: 73px; left: 0; right: 0; display: none; max-height: calc(100dvh - 73px); overflow-y: auto; padding: 18px 24px 28px; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
  .site-nav > a, .nav-parent { width: 100%; margin-inline: 0; padding: 12px; border: 0; border-bottom: 1px solid var(--line); }
  .site-nav > a.is-current, .nav-parent.is-current { background: #e9ecef; }
  .nav-group { display: block; align-self: auto; }
  .nav-parent { justify-content: space-between; }
  .nav-submenu { position: static; width: 100%; display: none; grid-template-columns: 1fr; gap: 0; padding: 6px 0 12px; border: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: none; }
  .nav-submenu a { padding: 9px 14px; border-left: 2px solid var(--line); white-space: normal; }
  .nav-group:hover .nav-submenu { transform: none; }
  .nav-group.is-open > .nav-submenu { display: grid; transform: none; }
}

@keyframes nav-submenu-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .hero-media { height: clamp(460px, 68vw, 560px); }
  .hero-media::after { background: linear-gradient(180deg, rgba(7, 29, 48, 0.08) 18%, rgba(7, 29, 48, 0.3) 52%, rgba(7, 29, 48, 0.9) 100%); }
  .hero-media img { object-position: 66% center; }
  .hero-inner { align-items: flex-end; }
  .hero-panel {
    width: min(620px, 88%);
    padding: 36px 0 40px;
    color: #f8fafc;
  }
  .hero .eyebrow { margin-bottom: 10px; color: rgba(248, 250, 252, 0.78); }
  .hero-lead { max-width: 600px; margin-top: 16px; color: rgba(248, 250, 252, 0.88); }
  .hero .button-primary { background: #ffffff; color: #153b5b; }
  .hero .button-primary:hover { background: #e3eaf1; }
  .service-layout, .about-grid, .insight-grid, .content-layout, .profile-hero-grid, .consult-grid, .contact-page-grid { grid-template-columns: 1fr; gap: 46px; }
  .contact-lawyer-layout { grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr); gap: 48px; }
  .founder-layout { grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr); gap: 48px; }
  .founder-facts { grid-template-columns: 1fr; }
  .founder-facts > div { padding: 13px 0; }
  .founder-facts > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .contact-form { position: static; }
  .location-layout { grid-template-columns: 1fr; }
  .institution-copy { grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.35fr) 96px; gap: 24px; }
  .institution-detail { grid-template-columns: 1fr; gap: 44px; }
  .institution-lawyer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .location-tab { min-height: 88px; }
  .service-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topic-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
  .topic-nav h2 { grid-column: 1 / -1; }
  .team-grid, .team-grid-full { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-carousel-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-carousel.is-ready .person-card { flex-basis: calc((100% - 24px) / 2); }
  .awards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
  .awards-carousel.is-ready .award-item { flex-basis: calc((100% - 24px) / 2); }
  .about-figure, .profile-photo { max-width: 620px; width: 100%; }
  .profile-photo { max-width: 420px; }
  .about-lead { grid-template-columns: 1fr; gap: 32px; }
  .about-lead-heading { padding: 0; }
  .about-lead-heading h2 { font-size: 36px; }
  .about-lead-image { aspect-ratio: 3 / 2; }
  .profile-document { grid-template-columns: 1fr; gap: 42px; }
  .profile-index { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
  .profile-index > p, .profile-office-contact { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 54px; }
  .portal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portal-grid a:nth-child(3) { border-left: 1px solid color-mix(in srgb, var(--on-accent) 18%, transparent); border-top: 1px solid color-mix(in srgb, var(--on-accent) 18%, transparent); }
  .portal-grid a:nth-child(4) { border-top: 1px solid color-mix(in srgb, var(--on-accent) 18%, transparent); }
  .about-main-layout { grid-template-columns: 1fr; }
  .about-index { display: none; }
}

@media (max-width: 640px) {
  .shell, .shell-reading { width: min(calc(100% - 28px), var(--shell)); }
  .site-header { min-height: 70px; }
  .header-inner { min-height: 67px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { display: none; }
  .site-nav { top: 67px; }
  .site-nav.is-open { grid-template-columns: 1fr; }
  .hero-media { height: 500px; aspect-ratio: auto; }
  .hero-media img { object-position: 68% center; }
  .hero-panel { width: 100%; padding: 30px 0 34px; }
  .hero-panel h2 { max-width: 10em; font-size: 36px; }
  .hero-lead { max-width: 31em; margin-top: 15px; font-size: 15px; line-height: 1.75; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .button { min-width: 118px; }
  .hero-controls { right: 16px; bottom: 14px; gap: 8px; }
  .hero-arrow { width: 36px; height: 36px; font-size: 18px; }
  .hero-dots { min-height: 36px; gap: 7px; }
  .portal-grid a { min-height: 108px; padding: 18px 22px 18px 44px; }
  .portal-grid span { top: 24px; left: 15px; }
  .portal-grid a::after { display: none; }
  .portal-grid strong { font-size: 16px; }
  .portal-grid small { font-size: 11px; }
  .service-band, .team-band, .awards-band, .content-section, .about-band, .founder-band, .insight-band { padding: 64px 0; }
  .founder-layout { grid-template-columns: 1fr; gap: 34px; }
  .founder-portrait { max-width: 440px; margin-inline: auto; }
  .founder-copy h2 { font-size: 32px; }
  .founder-identity { margin-top: 22px; padding-top: 18px; }
  .founder-identity h3 { font-size: 22px; }
  .founder-actions { align-items: flex-start; flex-direction: column; }
  .service-list { grid-template-columns: 1fr; }
  .service-list a { min-height: 152px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; gap: 16px; }
  .team-grid, .team-grid-full { grid-template-columns: 1fr; }
  .team-grid-full { gap: 14px; }
  .team-search-area { margin-bottom: 24px; padding: 16px; }
  .team-search-form { grid-template-columns: 1fr; gap: 10px; }
  .team-search-form .button { width: 100%; min-height: 52px; padding-inline: 12px; }
  .team-search-result-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
  .team-carousel-track { grid-template-columns: 1fr; }
  .team-carousel.is-ready .person-card { flex-basis: 100%; max-width: none; margin: 0; }
  .person-card { max-width: 440px; width: 100%; margin-inline: auto; }
  .team-grid-full .person-card { max-width: none; margin-inline: 0; }
  .team-grid-full .person-card a { display: grid; grid-template-columns: 112px minmax(0, 1fr); grid-template-rows: auto 1fr; min-height: 146px; }
  .team-grid-full .person-card img { grid-row: 1 / 3; width: 112px; height: 100%; aspect-ratio: auto; }
  .team-grid-full .person-card.has-no-photo a::before { grid-row: 1 / 3; width: 112px; height: 100%; aspect-ratio: auto; font-size: 15px; }
  .team-grid-full .person-card h2 { grid-column: 2; min-height: 0; padding: 14px 14px 0; font-size: 16px; line-height: 1.45; }
  .team-grid-full .person-card p { grid-column: 2; margin: 6px 14px 13px; font-size: 12px; line-height: 1.7; -webkit-line-clamp: 3; }
  .awards-grid { grid-template-columns: 1fr; gap: 30px; }
  .awards-carousel.is-ready .award-item { flex-basis: 100%; max-width: none; margin: 0; }
  .award-copy strong { font-size: 17px; }
  .insight-list article, .article-list article { grid-template-columns: 1fr; gap: 7px; }
  .practice-page-body { grid-template-columns: 1fr; grid-template-areas: "overview" "lawyers" "articles"; }
  .practice-overview-region { margin-bottom: 36px; }
  .practice-overview { padding: 0; }
  .practice-overview h2 { margin-bottom: 20px; padding-left: 14px; font-size: 23px; }
  .practice-overview-copy { line-height: 1.9; text-align: left; }
  .practice-services { margin-top: 24px; padding-top: 18px; }
  .practice-lawyers { width: 100%; margin-bottom: 38px; }
  .practice-lawyer { grid-template-columns: 76px minmax(0, 1fr); }
  .practice-lawyer img { width: 76px; }
  .page-head { padding: 48px 0 40px; }
  .contact-page-head { min-height: 260px; padding: 0; }
  .contact-page-head::after { background: linear-gradient(90deg, rgba(7, 29, 48, 0.68), rgba(7, 29, 48, 0.3)); }
  .contact-page-head-image { object-position: center center; }
  .news-page-head { min-height: 260px; padding: 0; }
  .news-page-head::after { background: linear-gradient(90deg, rgba(7, 29, 48, 0.58), rgba(7, 29, 48, 0.14)); }
  .news-page-head-image { object-position: 64% center; }
  .team-page-head { min-height: 260px; padding: 0; }
  .team-page-head::after { background: linear-gradient(90deg, rgba(7, 29, 48, 0.58), rgba(7, 29, 48, 0.16)); }
  .team-page-head-image { object-position: 64% center; }
  .about-page-head { min-height: 260px; padding: 0; }
  .about-page-head::after { background: linear-gradient(90deg, rgba(7, 29, 48, 0.82) 0%, rgba(7, 29, 48, 0.56) 52%, rgba(7, 29, 48, 0.16) 100%); }
  .about-page-head-image { object-position: 50% center; }
  .article-page { padding-top: 46px; }
  .profile-hero { padding: 34px 0 42px; }
  .profile-hero-grid { gap: 34px; }
  .profile-photo { max-width: 300px; margin-inline: auto; }
  .profile-copy { padding-top: 18px; }
  .profile-copy h1 { font-size: 39px; }
  .profile-role { font-size: 18px; }
  .profile-facts { grid-template-columns: 1fr; margin-top: 28px; }
  .profile-facts > div { grid-template-columns: 80px minmax(0, 1fr); }
  .profile-actions { display: none; }
  .profile-document { padding-top: 48px; }
  .profile-index { display: none; }
  .profile-content-heading h2 { font-size: 25px; }
  .profile-body { padding-top: 27px; }
  .article-head h1 { font-size: 32px; }
  .article-neighbors { grid-template-columns: 1fr; }
  .related-lawyer-grid { grid-template-columns: 1fr; }
  .related-article { grid-template-columns: 1fr; gap: 8px; }
  .consult-form { padding: 22px; }
  .office-entry { grid-template-columns: 1fr; gap: 12px; }
  .contact-lawyer-band { padding: 64px 0; }
  .contact-lawyer-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-lawyer-portrait { max-width: 440px; margin-inline: auto; }
  .contact-lawyer-copy { padding-top: 18px; }
  .contact-lawyer-copy h2 { font-size: 34px; }
  .contact-lawyer-role { font-size: 16px; }
  .contact-lawyer-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .location-band { padding: 64px 0; }
  .locations-intro-band { padding: 54px 0; }
  .locations-intro { grid-template-columns: 1fr; gap: 22px; }
  .locations-intro > p { font-size: 15px; }
  .locations-directory { padding: 58px 0 70px; }
  .locations-directory-heading { margin-bottom: 24px; }
  .institution-copy { grid-template-columns: 1fr; gap: 18px; min-height: 0; padding: 25px 0 27px; }
  .institution-card:hover .institution-copy { background: transparent; }
  .institution-heading { padding-left: 15px; }
  .institution-copy h3 { font-size: 22px; }
  .institution-copy dl > div { padding: 8px 0; }
  .institution-copy .institution-actions { justify-content: flex-start; }
  .institution-detail-section { padding: 58px 0 70px; }
  .institution-back { margin-bottom: 30px; }
  .institution-intro-section, .institution-lawyers, .institution-articles, .institution-map-section { padding: 58px 0 70px; }
  .institution-intro-layout { grid-template-columns: 1fr; gap: 28px; }
  .institution-intro-heading { position: static; padding-top: 14px; }
  .institution-intro-content > p { font-size: 15px; line-height: 1.95; text-align: left; }
  .institution-intro-facts > div { grid-template-columns: 1fr; gap: 5px; padding: 14px 0; }
  .institution-section-heading { align-items: flex-start; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .institution-section-heading h2 { font-size: 28px; }
  .institution-lawyer-grid { grid-template-columns: 1fr; gap: 26px; }
  .institution-lawyer { max-width: 440px; width: 100%; margin-inline: auto; }
  .institution-article-grid { grid-template-columns: 1fr; }
  .institution-article > a { padding: 20px 0; }
  .institution-article-copy > strong { font-size: 16px; }
  .institution-article-description { display: none; }
  .institution-location-map .baidu-map-launch { min-height: 0; aspect-ratio: 16 / 9; }
  .location-heading { grid-template-columns: 1fr; gap: 14px; margin-bottom: 26px; }
  .location-heading h2 { font-size: 32px; }
  .location-heading > p { font-size: 15px; line-height: 1.8; }
  .location-layout { gap: 22px; }
  .location-tabs { grid-template-columns: 1fr; }
  .location-tab { min-height: 76px; padding: 14px 16px; }
  .office-map-viewport { min-height: 0; aspect-ratio: 16 / 9; }
  .code-field > div { grid-template-columns: 1fr; }
  .feedback-dialog { width: min(calc(100% - 24px), 440px); }
  .feedback-dialog-heading { min-height: 56px; padding-left: 18px; }
  .feedback-dialog-content { padding: 21px 18px 24px; }
  .feedback-dialog-footer { padding: 12px 18px; }
  .footer-main { padding-top: 42px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-office, .footer-nav { padding-top: 25px; border-top: 1px solid var(--footer-line); }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; margin-top: 34px; }
  .mobile-actions { position: fixed; z-index: 19; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); background: var(--surface); }
  .mobile-actions a { min-height: 52px; display: grid; place-items: center; font-weight: 800; }
  .mobile-actions a:first-child { background: var(--accent); color: var(--on-accent); }
  .site-footer { padding-bottom: 62px; }
  .about-content-section { padding-bottom: 76px; }
  .about-lead { grid-template-columns: 1fr; gap: 28px; padding: 58px 0 50px; }
  .about-lead-heading { padding: 0; }
  .about-lead-heading h2 { font-size: 28px; }
  .about-lead-image { aspect-ratio: 3 / 2; }
  .about-lead-copy { grid-column: auto; grid-template-columns: 1fr; gap: 18px; padding-top: 26px; }
  .about-lead-copy p, .about-lead-copy p:first-child { font-size: 16px; line-height: 1.95; }
  .about-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-facts > div { padding: 22px 18px 24px; }
  .about-facts > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .about-facts > div:nth-child(4) { border-top: 1px solid var(--line); }
  .about-team-figure { width: calc(100% + 28px); margin: 52px -14px 0; }
  .about-team-figure figcaption { padding: 13px 14px 0; }
  .about-main-layout { padding-top: 72px; }
  .about-section { grid-template-columns: 1fr; gap: 18px; padding-bottom: 52px; margin-bottom: 0; }
  .about-section > h2 { font-size: 22px; }
  .about-section-body { padding-top: 0; border-top: 0; }
  .about-office-list { grid-template-columns: 1fr; gap: 22px; }
  .about-section-emphasis .about-section-body { padding-left: 20px; }
  .about-founder-section .about-section-body { padding-left: 0; }
  .about-founder-profile { grid-template-columns: 1fr; gap: 26px; margin-bottom: 28px; }
  .about-founder-profile figure { max-width: 440px; margin-inline: auto; }
  .about-founder-intro h3 { font-size: 25px; }
  .criminal-service-groups { grid-template-columns: 1fr; gap: 30px; }
  .about-founder-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
}

@media (max-width: 360px) {
  .about-lead-heading h2 { font-size: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--surface); backdrop-filter: none; }
  .site-header.is-scrolled { background: #e6e9ec; -webkit-backdrop-filter: none; backdrop-filter: none; }
}
