:root {
  --red: #8c1f1f;
  --red-dark: #751818;
  --gold: #d4af37;
  --ink: #161413;
  --muted: #76706a;
  --paper: #f7f4ee;
  --warm: #f1ede5;
  --line: #d8d1c5;
  --white: #fff;
  --shadow: 0 12px 32px -8px rgba(22, 20, 19, .14);
  --serif: "Noto Serif SC", "Songti SC", SimSun, serif;
  --sans: "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: #fff; font-family: var(--sans); font-size: 14px; line-height: 2; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
.shell { width: min(1280px, calc(100% - 80px)); margin-inline: auto; }
.section { padding: 96px 0; }
.paper-section { background: var(--paper); }
.eyebrow { margin: 0 0 14px; color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .8px; line-height: 1.5; text-transform: uppercase; }
.section-title { margin: 0; font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); font-weight: 600; line-height: 1.3; letter-spacing: -1px; }
.red-text { color: var(--red); }
.gold-text { color: var(--gold); }
.lead { font-size: 17px; font-weight: 600; }
.section-intro { max-width: 680px; color: var(--muted); }
.outline-button { display: inline-flex; align-items: center; gap: 24px; margin-top: 24px; padding: 10px 18px; border: 1px solid var(--red); color: var(--red); font-weight: 600; line-height: 1.5; transition: 160ms ease; }
.outline-button:hover, .outline-button:focus-visible { color: #fff; background: var(--red); }

.site-header { position: relative; z-index: 20; height: 96px; border-top: 3px solid var(--red); background: #fff; }
.site-header__inner { height: 93px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 290px; max-height: 58px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: stretch; height: 100%; gap: 4px; }
.site-nav a { position: relative; display: grid; place-items: center; min-width: 106px; padding: 0 16px; font-weight: 600; transition: color 160ms ease; }
.site-nav a::after { content: ""; position: absolute; left: 20px; right: 20px; bottom: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform 160ms ease; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.is-active { color: var(--red); }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.is-active::after { transform: scaleX(1); }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--red); font-size: 26px; }

.page-banner, .article-banner { width: 100%; overflow: hidden; background: var(--warm); }
.page-banner { height: 360px; }
.page-banner--home { height: 560px; }
.page-banner img, .article-banner img { width: 100%; height: 100%; object-fit: cover; }
.article-banner { height: 400px; }

/* Banner artwork is managed as a background-only image. All copy remains real HTML. */
.visual-banner, .article-hero { position: relative; width: 100%; overflow: hidden; color: #fff; background: #312d2a; }
.visual-banner { height: 360px; }
.visual-banner--home { height: 560px; }
.visual-banner--about { height: 520px; }
.visual-banner__image, .article-hero__image { position: absolute; inset: 0; background-image: var(--banner-image); background-repeat: no-repeat; background-position: center; background-size: cover; }
.visual-banner:not(.visual-banner--home)::after, .article-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(100deg, rgba(24,22,20,.04) 35%, rgba(24,22,20,.28) 68%, rgba(24,22,20,.64) 100%); }
.visual-banner__inner { position: relative; z-index: 1; display: flex; width: min(1280px, calc(100% - 160px)); height: 100%; margin-inline: auto; align-items: center; justify-content: space-between; gap: 72px; }
.visual-banner:not(.visual-banner--home) .visual-banner__inner { display: grid; grid-template-columns: minmax(0, 760px) minmax(320px, 420px); align-content: center; align-items: start; }
.visual-banner__copy { width: min(760px, 62%); color: var(--ink); }
.visual-banner:not(.visual-banner--home) .visual-banner__copy { width: auto; }
.visual-banner__kicker { margin: 0 0 16px; color: var(--red); font-size: 14px; font-weight: 500; letter-spacing: .8px; line-height: 20px; }
.visual-banner__copy h1 { margin: 0; font-family: var(--serif); font-size: 64px; font-weight: 600; letter-spacing: -1px; line-height: 80px; }
.visual-banner__lead { margin: 20px 0 0; font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 36px; }
.visual-banner--home .visual-banner__lead { margin-top: 24px; font-family: var(--sans); font-size: 18px; line-height: 32px; }
.visual-banner__summary { width: 420px; align-self: start; margin: 36px 0 0; padding-left: 24px; border-left: 2px solid rgba(212,175,55,.8); }
.visual-banner__summary strong { display: block; margin-bottom: 10px; color: var(--gold); font-size: 14px; font-weight: 500; letter-spacing: .8px; line-height: 20px; }
.visual-banner__summary p { margin: 0; color: rgba(255,255,255,.9); font-size: 14px; line-height: 28px; }

.article-hero { height: 400px; }
.article-hero__inner { position: relative; z-index: 1; display: flex; height: 100%; padding-bottom: 72px; align-items: flex-end; justify-content: space-between; gap: 64px; }
.article-hero__heading { width: min(880px, 75%); color: var(--ink); }
.article-hero__heading p { margin: 0 0 16px; color: var(--red); font-size: 14px; font-weight: 500; letter-spacing: .8px; line-height: 20px; }
.article-hero__heading h1 { margin: 0; font-family: var(--serif); font-size: 48px; font-weight: 600; line-height: 68px; }
.article-hero__meta { width: 280px; padding-left: 24px; border-left: 2px solid rgba(212,175,55,.8); }
.article-hero__meta span { display: block; color: var(--gold); font-size: 12px; letter-spacing: .8px; line-height: 20px; }
.article-hero__meta time { display: block; margin-top: 8px; color: #fff; font-size: 18px; line-height: 36px; }

.about-overview { display: grid; grid-template-columns: 1.1fr .9fr; gap: 120px; }
.about-overview > div > p:not(.eyebrow, .lead) { max-width: 610px; color: var(--muted); }
.strength-list { list-style: none; padding: 0; margin: 0; }
.strength-list li { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.strength-list li > span { color: var(--red); font-weight: 700; }
.strength-list h3, .strength-list p { margin: 0; }
.strength-list h3 { font-family: var(--serif); font-size: 24px; }
.strength-list p { color: var(--muted); }
.strength-list.compact li { padding: 14px 0; }

.practice-section { color: #fff; background: var(--red); }
.section-heading, .updates-heading, .directory-heading, .listing-heading { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 48px; }
.section-heading.inverse .eyebrow { color: var(--gold); }
.section-heading.inverse > p { opacity: .8; }
.practice-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.practice-grid article { min-width: 0; padding: 12px 24px 6px; border-left: 2px solid rgba(212,175,55,.56); }
.practice-grid article:first-child { padding-left: 0; border-left: 0; }
.practice-grid span { color: var(--gold); font-size: 12px; }
.practice-grid h3 { display: flex; min-height: 3.1em; margin: 12px 0 4px; align-items: flex-start; font-family: var(--serif); font-size: 20px; line-height: 1.55; }
.practice-grid p { margin: 0; opacity: .72; line-height: 1.7; }
.practice-grid.six { grid-template-columns: repeat(6, 1fr); }

.lawyer-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px; margin-top: 48px; }
.team-carousel { margin-top: 48px; }
.team-carousel__viewport { overflow: hidden; }
.team-carousel__track { position: relative; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: calc((100% - 128px) / 3); width: 100%; margin-top: 0; transform: translate3d(0, 0, 0); transition: transform 320ms ease; }
.lawyer-preview-card { background: #fff; border: 1px solid transparent; transition: transform 160ms ease, box-shadow 160ms ease; }
.lawyer-preview-card:hover, .lawyer-preview-card:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow); }
.lawyer-preview-card img { width: 100%; aspect-ratio: 1.02; object-fit: cover; object-position: top center; }
.lawyer-preview-card > div { padding: 20px 24px 24px; }
.lawyer-preview-card h3 { margin: 0 0 16px; font-family: var(--serif); font-size: 30px; }
.lawyer-preview-card strong { color: var(--red); font-size: 12px; }
.lawyer-preview-card p { margin: 0; color: var(--muted); }
.carousel-controls { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin-top: 24px; }
.carousel-controls a, .carousel-controls button { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line); color: var(--muted); background: transparent; transition: 160ms ease; }
.carousel-controls a:hover, .carousel-controls button:hover { color: #fff; border-color: var(--red); background: var(--red); }
.carousel-controls button:disabled { cursor: default; opacity: .35; color: var(--muted); border-color: var(--line); background: transparent; }
.carousel-controls span { margin-right: 8px; color: var(--muted); font-size: 12px; }

.updates-home { background: #fff; }
.updates-home .updates-heading { margin-bottom: 42px; padding-bottom: 20px; border-bottom: 1px solid var(--red); }
.updates-more { margin-top: 0; }
.mini-categories { display: flex; gap: 30px; color: var(--muted); }
.mini-categories a:hover { color: var(--red); }
.home-updates-grid { display: grid; grid-template-columns: 1.083fr 1fr; gap: 70px; }
.featured-update { min-height: 440px; display: flex; flex-direction: column; padding: 24px; border: 1px solid transparent; background: var(--paper); transition: transform 160ms ease, box-shadow 160ms ease; }
.featured-update:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.featured-update__meta { display: flex; justify-content: space-between; }
.featured-update__meta > span { display: flex; gap: 22px; align-items: center; }
.featured-update__meta strong { color: var(--red); }
.featured-update__meta small, .featured-update__meta time { color: var(--muted); }
.featured-update h3 { margin: 28px 0; font-family: var(--serif); font-size: 31px; line-height: 1.4; }
.featured-update p { margin-top: auto; color: var(--muted); }
.featured-update b { color: var(--red); font-size: 12px; }
.latest-list > .eyebrow { margin-bottom: 64px; }
.latest-list > a { display: grid; grid-template-columns: 130px 1fr auto; gap: 20px; align-items: center; min-height: 88px; padding: 12px 16px; border-bottom: 1px solid var(--line); transition: 160ms ease; }
.latest-list > a:hover { color: #fff; background: var(--red); }
.latest-list > a:hover strong { color: var(--gold); }
.latest-list strong { display: block; color: var(--red); }
.latest-list small, .latest-list time { color: var(--muted); }
.latest-list > a:hover small, .latest-list > a:hover time { color: rgba(255,255,255,.7); }
.latest-list h3 { margin: 0; overflow: hidden; font-family: var(--serif); font-size: 20px; white-space: nowrap; text-overflow: ellipsis; }
.ink { color: var(--ink); }

.contact-section { background: var(--paper); }
.contact-subtitle { color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: 1fr .85fr 280px; gap: 56px; align-items: start; }
.join-row { display: flex; align-items: center; justify-content: space-between; margin-top: 56px; }
.join-row p { margin: 0; }
.contact-facts section { padding: 22px 0; border-top: 1px solid var(--line); }
.contact-facts strong { color: var(--red); }
.contact-facts p { color: var(--muted); }
.qr-card { padding: 26px; border: 1px solid var(--line); background: #fff; text-align: center; transition: box-shadow 160ms ease; }
.qr-card:hover { box-shadow: var(--shadow); }
.qr-card h3 { font-family: var(--serif); }
.qr-card img { width: 132px; height: 132px; margin: 20px auto; object-fit: contain; }
.qr-card small { color: var(--muted); }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.reading-copy { color: var(--muted); }
.muted-heading { color: var(--muted); }
.quote-strip { margin-top: 48px; padding: 20px 24px; background: var(--paper); }
.service-heading { margin-bottom: 48px; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-grid article { padding: 24px; background: var(--paper); }
.service-grid span, .three-column-values span { color: var(--red); }
.service-grid h3 { font-family: var(--serif); font-size: 20px; }
.service-grid p { color: var(--muted); }
.three-column-values { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 56px; }
.three-column-values article { padding: 0 32px; border-left: 2px solid var(--gold); }
.three-column-values article:first-child { padding-left: 0; border-left: 0; }
.experience-columns { display: grid; grid-template-columns: repeat(2,1fr); gap: 80px; }
.experience-columns p { color: var(--muted); }
.principle-section { color: #fff; background: var(--red); }
.principle-section h2 { max-width: 600px; margin: 0; font-family: var(--serif); font-size: 36px; }
.principle-section p { opacity: .78; }
.about-contact { grid-template-columns: 1fr 1fr 280px; }
.careers-heading { margin-bottom: 48px; }
.career-list article { display: grid; grid-template-columns: 1fr .7fr 1fr; gap: 32px; padding: 24px; border: 1px solid var(--line); margin-top: 16px; }
.career-list h3, .career-list p { margin: 0; }
.career-list p { color: var(--muted); }

.lawyer-directory-section { padding: 48px 0; }
.directory-heading { min-height: 88px; margin-bottom: 24px; }
.directory-controls { margin-top: 0; }
.lawyer-tabs { display: grid; grid-template-columns: repeat(7, 152px); justify-content: space-between; gap: 0; height: 72px; padding: 4px; overflow: hidden; background: var(--paper); }
.lawyer-tabs.has-overflow { display: flex; justify-content: flex-start; gap: 34px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; }
.lawyer-tabs.has-overflow::-webkit-scrollbar { display: none; }
.lawyer-tabs a { display: flex; flex: 0 0 152px; width: 152px; min-height: 64px; flex-direction: column; justify-content: center; align-items: center; border: 1px solid var(--line); color: var(--ink); background: #fff; line-height: 1.45; transition: color 160ms ease, border-color 160ms ease, background 160ms ease; }
.lawyer-tabs a strong { font-size: 15px; font-weight: 500; }
.lawyer-tabs a span { color: var(--red); font-size: 12px; }
.lawyer-tabs a:hover, .lawyer-tabs a.is-active { color: #fff; border-color: var(--red); background: var(--red); }
.lawyer-tabs a:hover span, .lawyer-tabs a.is-active span { color: var(--gold); }
.lawyer-profile-section { padding: 80px 0; }
.lawyer-profile-card { height: 920px; margin-top: 40px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.profile-top { display: grid; grid-template-columns: 400px 1fr; height: 460px; }
.portrait-panel { overflow: hidden; background: var(--warm); }
.portrait-panel img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.profile-meta { min-width: 0; padding: 40px 56px; }
.profile-meta h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 48px; }
.profile-meta > p { color: var(--muted); }
.profile-meta dl { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; margin-top: 20px; border-top: 1px solid var(--line); }
.profile-meta dl div { min-width: 0; padding: 14px 20px 4px 0; }
.profile-meta dt { color: var(--red); font-size: 12px; font-weight: 700; }
.profile-meta dd { margin: 4px 0 0; overflow-wrap: anywhere; }
.profile-columns { display: grid; grid-template-columns: 400px 1fr 1fr; height: 460px; }
.profile-columns--2 { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
.profile-columns--1 { grid-template-columns: 1fr; }
.profile-columns > section { position: relative; display: flex; flex-direction: column; gap: 18px; min-width: 0; height: 460px; padding: 40px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.profile-columns > section:first-child { border-left: 0; }
.profile-columns .eyebrow { margin-bottom: 0; }
.profile-columns h3 { margin: 0; font-family: var(--serif); font-size: 24px; line-height: 1.5; }
.profile-columns ul { margin: 0; padding: 0; list-style: none; color: var(--muted); }
.profile-columns li { margin-bottom: 10px; line-height: 1.7; }
.bio-scroll { height: 288px; overflow-y: auto; padding-right: 12px; color: var(--muted); scrollbar-color: var(--red) var(--paper); scrollbar-width: thin; }
.bio-scroll p:first-child { margin-top: 0; }
.text-link { margin-top: auto; color: var(--red); font-weight: 700; line-height: 20px; }

.category-bar { padding: 40px 0; background: #fff; }
.category-layout { display: grid; grid-template-columns: 360px 1fr; align-items: center; }
.category-layout h2 { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 36px; }
.category-layout nav { display: flex; width: max-content; max-width: 100%; height: 56px; margin-left: auto; padding: 4px; gap: 8px; overflow-x: auto; background: var(--paper); scrollbar-width: thin; }
.category-layout nav a { display: grid; width: 144px; min-width: 144px; min-height: 48px; place-items: center; padding: 0 12px; font-weight: 500; transition: 160ms ease; }
.category-layout nav a:hover, .category-layout nav a.is-active { color: #fff; background: var(--red); }
.listing-heading { align-items: center; }
.filter-form { display: flex; gap: 16px; }
.sort-button, .search-field { display: inline-flex; height: 48px; align-items: center; border: 1px solid var(--line); background: #fff; }
.sort-button { gap: 16px; padding: 0 16px; color: rgba(22,20,19,.62); font-size: 14px; font-weight: 500; letter-spacing: .8px; line-height: 20px; transition: 160ms ease; }
.sort-button:hover, .sort-button:focus-visible, .sort-button.is-current { color: var(--red); border-color: var(--red); }
.sort-button img { flex: 0 0 18px; width: 18px; height: 18px; }
.search-field svg { flex: 0 0 18px; width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.search-field { width: 240px; gap: 12px; padding: 0 16px; color: var(--muted); }
.search-field:focus-within { color: var(--red); border-color: var(--red); }
.search-field input { min-width: 0; width: 100%; border: 0; outline: none; color: var(--ink); background: transparent; font-size: 14px; line-height: 24px; }
.search-field button { display: grid; flex: 0 0 24px; width: 24px; height: 32px; place-items: center; padding: 0; border: 0; color: inherit; background: transparent; }
.tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 36px; }
.content-tile { min-height: 136px; display: grid; grid-template-columns: 52px 1fr; grid-template-rows: 1fr auto; gap: 8px 18px; padding: 28px; border: 1px solid var(--line); background: #fff; transition: 160ms ease; }
.content-tile:hover { color: #fff; border-color: var(--red); background: var(--red); }
.tile-icon { grid-row: 1 / 3; display: block; width: 48px; height: 48px; object-fit: contain; }
.content-tile h2 { margin: 0; font-family: var(--serif); font-size: 23px; line-height: 1.45; }
.content-tile > div:last-child { grid-column: 2; display: flex; justify-content: space-between; color: var(--muted); }
.content-tile strong { color: var(--red); }
.content-tile:hover strong { color: var(--gold); }
.content-tile:hover > div:last-child { color: rgba(255,255,255,.72); }
.case-tiles .content-tile { display: flex; flex-direction: column; min-height: 150px; }
.case-tiles .content-tile > div:last-child { display: flex; justify-content: space-between; margin-top: auto; }
.scroll-cue { display: grid; grid-template-columns: 32px 1fr; column-gap: 14px; width: max-content; margin: 80px auto 0; color: var(--red); }
.scroll-cue > img { grid-row: 1 / 3; width: 32px; height: 44px; }
.scroll-cue > span { grid-column: 2; color: var(--muted); }
.empty-state, .error-state { padding: 100px 40px; text-align: center; }
.tile-grid > .empty-state { grid-column: 1 / -1; display: grid; width: 100%; min-height: 320px; padding: 40px; place-content: center; place-items: center; }
.tile-grid > .empty-state h2, .tile-grid > .empty-state p { margin: 0; }
.tile-grid > .empty-state p { margin-top: 10px; color: var(--muted); }
.pagination { display: flex; margin: 48px 0 0; align-items: center; justify-content: center; gap: 8px; }
.pagination a, .pagination > span { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); background: #fff; line-height: 1; }
.pagination a:hover, .pagination .is-current { color: #fff; border-color: var(--red); background: var(--red); }
.pagination .is-disabled { opacity: .35; }
.pagination .pagination__ellipsis { border-color: transparent; background: transparent; }

.article-main { padding: 72px 0 96px; background: var(--paper); }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 72px; align-items: start; }
.article-content { padding: 54px 58px; background: rgba(255,255,255,.5); }
.article-content h1 { margin: 0 0 36px; font-family: var(--serif); font-size: 40px; line-height: 1.35; }
.article-content h2 { margin-top: 46px; font-family: var(--serif); font-size: 26px; }
.article-content p, .article-content li { color: #5f5a55; }
.article-meta { color: var(--red) !important; }
.author-card { position: sticky; top: 24px; border: 1px solid var(--line); background: #fff; }
.author-card > img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top center; }
.author-card > div { padding: 28px; }
.author-card h2 { margin: 0; font-family: var(--serif); font-size: 34px; }
.author-card strong { color: var(--red); font-size: 12px; }
.author-card p { color: var(--muted); }

.site-footer { padding: 70px 0 24px; color: rgba(255,255,255,.74); background: var(--red); border-top: 2px solid var(--gold); }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; }
.footer-brand img { width: 280px; max-height: 62px; object-fit: contain; object-position: left; }
.footer-brand img { filter: brightness(0) invert(1); }
.footer-brand p { color: var(--gold); letter-spacing: 4px; }
.wechat-trigger { display: inline-flex; width: max-content; max-width: 100%; margin-top: 42px; padding: 0; align-items: center; gap: 10px; border: 0; color: #fff; background: transparent; white-space: nowrap; }
.wechat-trigger img { flex: 0 0 20px; width: 20px; height: 20px; }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.footer-links strong, .footer-links a { display: block; }
.footer-links strong { color: #fff; font-size: 13px; }
.footer-links a { font-size: 12px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 32px; margin-top: 68px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); font-size: 12px; }
.footer-bottom a:hover { color: var(--gold); }
.qr-dialog { position: fixed; inset: 50% auto auto 50%; width: min(360px, calc(100% - 40px)); margin: 0; padding: 36px; transform: translate(-50%,-50%); border: 1px solid var(--line); text-align: center; }
.qr-dialog::backdrop { background: rgba(22,20,19,.62); }
.qr-dialog img { width: 190px; height: 190px; margin: 22px auto; object-fit: contain; }
.qr-dialog h3 { font-family: var(--serif); }
.qr-dialog__close { position: absolute; top: 10px; right: 12px; border: 0; background: transparent; font-size: 28px; }

/*
 * Wide-screen proportional adaptation
 * -----------------------------------
 * 1440px is the Figma baseline. Between 1440px and 2560px, layout geometry
 * grows up to 1.78x while type grows more conservatively (about 1.25x at
 * 2560px). Banner artwork keeps its authored aspect ratio, so a 1440x360 or
 * 1440x400 upload remains complete and undistorted on a 2560px-wide screen.
 */
@media (min-width: 1441px) {
  /* Keep the 1440px design proportions, but cap 2K/4K enlargement at 1.25x. */
  :root {
    --wide-type-12: clamp(12px, calc(8.1429px + .2679vw), 15px);
    --wide-type-13: clamp(13px, calc(8.8214px + .2902vw), 16.25px);
    --wide-type-14: clamp(14px, calc(9.5px + .3125vw), 17.5px);
    --wide-type-15: clamp(15px, calc(10.1786px + .3348vw), 18.75px);
    --wide-type-17: clamp(17px, calc(11.5357px + .3795vw), 21.25px);
    --wide-type-18: clamp(18px, calc(12.2143px + .4018vw), 22.5px);
    --wide-type-20: clamp(20px, calc(13.5714px + .4464vw), 25px);
    --wide-type-23: clamp(23px, calc(15.6071px + .5134vw), 28.75px);
    --wide-type-24: clamp(24px, calc(16.2857px + .5357vw), 30px);
    --wide-type-26: clamp(26px, calc(17.6429px + .5804vw), 32.5px);
    --wide-type-30: clamp(30px, calc(20.3571px + .6696vw), 37.5px);
    --wide-type-31: clamp(31px, calc(21.0357px + .692vw), 38.75px);
    --wide-type-34: clamp(34px, calc(23.0714px + .7589vw), 42.5px);
    --wide-type-36: clamp(36px, calc(24.4286px + .8036vw), 45px);
    --wide-type-40: clamp(40px, calc(27.1429px + .8929vw), 50px);
    --wide-type-48: clamp(48px, calc(32.5714px + 1.0714vw), 60px);
    --wide-type-52: clamp(52px, calc(35.2857px + 1.1607vw), 65px);
    --wide-type-64: clamp(64px, calc(43.4286px + 1.4286vw), 80px);
  }

  body { font-size: var(--wide-type-14); }
  .shell { width: min(88.8889vw, 1600px); }
  .section { padding: clamp(96px, 6.6667vw, 120px) 0; }

  .eyebrow,
  .practice-grid span,
  .lawyer-preview-card strong,
  .carousel-controls span,
  .featured-update b,
  .profile-meta dt,
  .article-hero__meta span,
  .footer-links a,
  .footer-bottom { font-size: var(--wide-type-12); }
  .footer-links strong { font-size: var(--wide-type-13); }
  .visual-banner__kicker,
  .visual-banner__summary strong,
  .visual-banner__summary p,
  .article-hero__heading p,
  .sort-button,
  .search-field input { font-size: var(--wide-type-14); }
  .lawyer-tabs a strong { font-size: var(--wide-type-15); }
  .lead { font-size: var(--wide-type-17); }
  .visual-banner--home .visual-banner__lead,
  .article-hero__meta time { font-size: var(--wide-type-18); }
  .practice-grid h3,
  .latest-list h3,
  .service-grid h3 { font-size: var(--wide-type-20); }
  .content-tile h2 { font-size: var(--wide-type-23); }
  .visual-banner__lead,
  .strength-list h3,
  .profile-columns h3,
  .category-layout h2 { font-size: var(--wide-type-24); }
  .article-content h2 { font-size: var(--wide-type-26); }
  .lawyer-preview-card h3 { font-size: var(--wide-type-30); }
  .featured-update h3 { font-size: var(--wide-type-31); }
  .author-card h2 { font-size: var(--wide-type-34); }
  .principle-section h2 { font-size: var(--wide-type-36); }
  .article-content h1 { font-size: var(--wide-type-40); }
  .profile-meta h2,
  .article-hero__heading h1 { font-size: var(--wide-type-48); }
  .section-title { font-size: var(--wide-type-52); }
  .visual-banner__copy h1 { font-size: var(--wide-type-64); }

  .site-header { height: clamp(96px, 6.6667vw, 120px); border-top-width: clamp(3px, .2083vw, 3.75px); }
  .site-header__inner { height: calc(100% - clamp(3px, .2083vw, 3.75px)); }
  .brand img { width: clamp(290px, 20.1389vw, 362.5px); max-height: clamp(58px, 4.0278vw, 72.5px); }
  .site-nav { gap: clamp(4px, .2778vw, 5px); }
  .site-nav a { min-width: clamp(106px, 7.3611vw, 132.5px); padding-inline: clamp(16px, 1.1111vw, 20px); }
  .site-nav a::after { left: clamp(20px, 1.3889vw, 25px); right: clamp(20px, 1.3889vw, 25px); }

  .visual-banner--home { height: clamp(560px, 38.8889vw, 700px); }
  .visual-banner--about { height: clamp(520px, 36.1111vw, 650px); }
  .visual-banner--team,
  .visual-banner--updates,
  .visual-banner--cases { height: clamp(360px, 25vw, 450px); }
  .article-hero { height: clamp(400px, 27.7778vw, 500px); }
  .visual-banner__inner { width: min(88.8889vw, 1600px); gap: clamp(72px, 5vw, 90px); }
  .visual-banner:not(.visual-banner--home) .visual-banner__inner { grid-template-columns: minmax(0, clamp(760px, 52.7778vw, 950px)) minmax(clamp(320px, 22.2222vw, 400px), clamp(420px, 29.1667vw, 525px)); }
  .visual-banner__copy { width: min(clamp(760px, 52.7778vw, 950px), 62%); }
  .visual-banner__kicker { margin-bottom: clamp(16px, 1.1111vw, 20px); line-height: 1.43; }
  .visual-banner__copy h1 { line-height: 1.25; }
  .visual-banner__lead { margin-top: clamp(20px, 1.3889vw, 25px); line-height: 1.5; }
  .visual-banner--home .visual-banner__lead { margin-top: clamp(24px, 1.6667vw, 30px); line-height: 1.78; }
  .visual-banner__summary { width: clamp(420px, 29.1667vw, 525px); margin-top: clamp(36px, 2.5vw, 45px); padding-left: clamp(24px, 1.6667vw, 30px); }
  .visual-banner__summary strong { margin-bottom: clamp(10px, .6944vw, 12.5px); line-height: 1.43; }
  .visual-banner__summary p { line-height: 2; }

  .article-hero__inner { padding-bottom: clamp(72px, 5vw, 90px); gap: clamp(64px, 4.4444vw, 80px); }
  .article-hero__heading { width: min(clamp(880px, 61.1111vw, 1100px), 75%); }
  .article-hero__heading p { margin-bottom: clamp(16px, 1.1111vw, 20px); line-height: 1.43; }
  .article-hero__heading h1 { line-height: 1.42; }
  .article-hero__meta { width: clamp(280px, 19.4444vw, 350px); padding-left: clamp(24px, 1.6667vw, 30px); }
  .article-hero__meta span { line-height: 1.67; }
  .article-hero__meta time { margin-top: clamp(8px, .5556vw, 10px); line-height: 2; }

  .about-overview { gap: clamp(120px, 8.3333vw, 150px); }
  .about-overview > div > p:not(.eyebrow, .lead) { max-width: clamp(610px, 42.3611vw, 762.5px); }
  .section-intro { max-width: clamp(680px, 47.2222vw, 850px); }
  .strength-list li { grid-template-columns: clamp(44px, 3.0556vw, 55px) 1fr; gap: clamp(12px, .8333vw, 15px); padding: clamp(20px, 1.3889vw, 25px) 0; }
  .strength-list.compact li { padding: clamp(14px, .9722vw, 17.5px) 0; }
  .section-heading,
  .updates-heading,
  .directory-heading,
  .listing-heading { gap: clamp(48px, 3.3333vw, 60px); margin-bottom: clamp(48px, 3.3333vw, 60px); }

  .practice-grid article { padding: clamp(12px, .8333vw, 15px) clamp(24px, 1.6667vw, 30px) clamp(6px, .4167vw, 7.5px); }
  .lawyer-card-grid { gap: clamp(64px, 4.4444vw, 80px); margin-top: clamp(48px, 3.3333vw, 60px); }
  .team-carousel { margin-top: clamp(48px, 3.3333vw, 60px); }
  .team-carousel__track { grid-auto-columns: calc((100% - clamp(128px, 8.8889vw, 160px)) / 3); }
  .lawyer-preview-card > div { padding: clamp(20px, 1.3889vw, 25px) clamp(24px, 1.6667vw, 30px) clamp(24px, 1.6667vw, 30px); }
  .lawyer-preview-card h3 { margin-bottom: clamp(16px, 1.1111vw, 20px); }
  .carousel-controls { gap: clamp(10px, .6944vw, 12.5px); margin-top: clamp(24px, 1.6667vw, 30px); }
  .carousel-controls a,
  .carousel-controls button { width: clamp(48px, 3.3333vw, 60px); height: clamp(48px, 3.3333vw, 60px); }
  .carousel-controls span { margin-right: clamp(8px, .5556vw, 10px); }

  .updates-home .updates-heading { margin-bottom: clamp(42px, 2.9167vw, 52.5px); padding-bottom: clamp(20px, 1.3889vw, 25px); }
  .home-updates-grid { gap: clamp(70px, 4.8611vw, 87.5px); }
  .featured-update { min-height: clamp(440px, 30.5556vw, 550px); padding: clamp(24px, 1.6667vw, 30px); }
  .featured-update__meta > span { gap: clamp(22px, 1.5278vw, 27.5px); }
  .featured-update h3 { margin: clamp(28px, 1.9444vw, 35px) 0; }
  .latest-list > .eyebrow { margin-bottom: clamp(64px, 4.4444vw, 80px); }
  .latest-list > a { grid-template-columns: clamp(130px, 9.0278vw, 162.5px) 1fr auto; gap: clamp(20px, 1.3889vw, 25px); min-height: clamp(88px, 6.1111vw, 110px); padding: clamp(12px, .8333vw, 15px) clamp(16px, 1.1111vw, 20px); }

  .contact-grid { grid-template-columns: 1fr .85fr clamp(280px, 19.4444vw, 350px); gap: clamp(56px, 3.8889vw, 70px); }
  .join-row { margin-top: clamp(56px, 3.8889vw, 70px); }
  .contact-facts section { padding: clamp(22px, 1.5278vw, 27.5px) 0; }
  .qr-card { padding: clamp(26px, 1.8056vw, 32.5px); }
  .qr-card img { width: clamp(132px, 9.1667vw, 165px); height: clamp(132px, 9.1667vw, 165px); margin: clamp(20px, 1.3889vw, 25px) auto; }
  .split-section { gap: clamp(96px, 6.6667vw, 120px); }
  .quote-strip { margin-top: clamp(48px, 3.3333vw, 60px); padding: clamp(20px, 1.3889vw, 25px) clamp(24px, 1.6667vw, 30px); }
  .service-heading { margin-bottom: clamp(48px, 3.3333vw, 60px); }
  .service-grid { gap: clamp(18px, 1.25vw, 22.5px); }
  .service-grid article { padding: clamp(24px, 1.6667vw, 30px); }
  .three-column-values { margin-top: clamp(56px, 3.8889vw, 70px); }
  .three-column-values article { padding-inline: clamp(32px, 2.2222vw, 40px); }
  .experience-columns { gap: clamp(80px, 5.5556vw, 100px); }
  .principle-section h2 { max-width: clamp(600px, 41.6667vw, 750px); }
  .about-contact { grid-template-columns: 1fr 1fr clamp(280px, 19.4444vw, 350px); }
  .careers-heading { margin-bottom: clamp(48px, 3.3333vw, 60px); }
  .career-list article { gap: clamp(32px, 2.2222vw, 40px); padding: clamp(24px, 1.6667vw, 30px); margin-top: clamp(16px, 1.1111vw, 20px); }

  .lawyer-directory-section { padding: clamp(48px, 3.3333vw, 60px) 0; }
  .directory-heading { min-height: clamp(88px, 6.1111vw, 110px); margin-bottom: clamp(24px, 1.6667vw, 30px); }
  .lawyer-tabs { grid-template-columns: repeat(7, clamp(152px, 10.5556vw, 190px)); height: clamp(72px, 5vw, 90px); padding: clamp(4px, .2778vw, 5px); }
  .lawyer-tabs.has-overflow { gap: clamp(34px, 2.3611vw, 42.5px); }
  .lawyer-tabs a { flex-basis: clamp(152px, 10.5556vw, 190px); width: clamp(152px, 10.5556vw, 190px); min-height: clamp(64px, 4.4444vw, 80px); }
  .lawyer-profile-section { padding: clamp(80px, 5.5556vw, 100px) 0; }
  .lawyer-profile-card { height: clamp(920px, 63.8889vw, 1150px); margin-top: clamp(40px, 2.7778vw, 50px); }
  .profile-top { grid-template-columns: clamp(400px, 27.7778vw, 500px) 1fr; height: clamp(460px, 31.9444vw, 575px); }
  .profile-meta { padding: clamp(40px, 2.7778vw, 50px) clamp(56px, 3.8889vw, 70px); }
  .profile-meta h2 { margin-bottom: clamp(8px, .5556vw, 10px); }
  .profile-meta dl { gap: 0 clamp(24px, 1.6667vw, 30px); margin-top: clamp(20px, 1.3889vw, 25px); }
  .profile-meta dl div { padding: clamp(14px, .9722vw, 17.5px) clamp(20px, 1.3889vw, 25px) clamp(4px, .2778vw, 5px) 0; }
  .profile-columns { grid-template-columns: clamp(400px, 27.7778vw, 500px) 1fr 1fr; height: clamp(460px, 31.9444vw, 575px); }
  .profile-columns.profile-columns--2 { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
  .profile-columns.profile-columns--1 { grid-template-columns: 1fr; }
  .profile-columns > section { gap: clamp(18px, 1.25vw, 22.5px); height: clamp(460px, 31.9444vw, 575px); padding: clamp(40px, 2.7778vw, 50px); }
  .profile-columns li { margin-bottom: clamp(10px, .6944vw, 12.5px); }
  .bio-scroll { height: clamp(288px, 20vw, 360px); padding-right: clamp(12px, .8333vw, 15px); }

  .category-bar { padding: clamp(40px, 2.7778vw, 50px) 0; }
  .category-layout { grid-template-columns: clamp(360px, 25vw, 450px) 1fr; }
  .category-layout nav { height: clamp(56px, 3.8889vw, 70px); padding: clamp(4px, .2778vw, 5px); gap: clamp(8px, .5556vw, 10px); }
  .category-layout nav a { width: clamp(144px, 10vw, 180px); min-width: clamp(144px, 10vw, 180px); min-height: clamp(48px, 3.3333vw, 60px); padding-inline: clamp(12px, .8333vw, 15px); }
  .filter-form { gap: clamp(16px, 1.1111vw, 20px); }
  .sort-button,
  .search-field { height: clamp(48px, 3.3333vw, 60px); }
  .sort-button { gap: clamp(16px, 1.1111vw, 20px); padding-inline: clamp(16px, 1.1111vw, 20px); }
  .sort-button img,
  .search-field svg { width: clamp(18px, 1.25vw, 22.5px); height: clamp(18px, 1.25vw, 22.5px); }
  .search-field { width: clamp(240px, 16.6667vw, 300px); gap: clamp(12px, .8333vw, 15px); padding-inline: clamp(16px, 1.1111vw, 20px); }
  .search-field button { flex-basis: clamp(24px, 1.6667vw, 30px); width: clamp(24px, 1.6667vw, 30px); height: clamp(32px, 2.2222vw, 40px); }
  .tile-grid { gap: clamp(24px, 1.6667vw, 30px) clamp(36px, 2.5vw, 45px); }
  .content-tile { min-height: clamp(136px, 9.4444vw, 170px); grid-template-columns: clamp(52px, 3.6111vw, 65px) 1fr; gap: clamp(8px, .5556vw, 10px) clamp(18px, 1.25vw, 22.5px); padding: clamp(28px, 1.9444vw, 35px); }
  .tile-icon { width: clamp(48px, 3.3333vw, 60px); height: clamp(48px, 3.3333vw, 60px); }
  .case-tiles .content-tile { min-height: clamp(150px, 10.4167vw, 187.5px); }
  .scroll-cue { grid-template-columns: clamp(32px, 2.2222vw, 40px) 1fr; column-gap: clamp(14px, .9722vw, 17.5px); margin-top: clamp(80px, 5.5556vw, 100px); }
  .scroll-cue > img { width: clamp(32px, 2.2222vw, 40px); height: clamp(44px, 3.0556vw, 55px); }
  .pagination { margin-top: clamp(48px, 3.3333vw, 60px); gap: clamp(8px, .5556vw, 10px); }
  .pagination a,
  .pagination > span { width: clamp(40px, 2.7778vw, 50px); height: clamp(40px, 2.7778vw, 50px); }

  .article-main { padding: clamp(72px, 5vw, 90px) 0 clamp(96px, 6.6667vw, 120px); }
  .article-layout { grid-template-columns: minmax(0, 1fr) clamp(340px, 23.6111vw, 425px); gap: clamp(72px, 5vw, 90px); }
  .article-content { padding: clamp(54px, 3.75vw, 67.5px) clamp(58px, 4.0278vw, 72.5px); }
  .article-content h1 { margin-bottom: clamp(36px, 2.5vw, 45px); }
  .article-content h2 { margin-top: clamp(46px, 3.1944vw, 57.5px); }
  .author-card { top: clamp(24px, 1.6667vw, 30px); }
  .author-card > div { padding: clamp(28px, 1.9444vw, 35px); }

  .site-footer { padding: clamp(70px, 4.8611vw, 87.5px) 0 clamp(24px, 1.6667vw, 30px); }
  .site-footer__grid { gap: clamp(80px, 5.5556vw, 100px); }
  .footer-brand img { width: clamp(280px, 19.4444vw, 350px); max-height: clamp(62px, 4.3056vw, 77.5px); }
  .wechat-trigger { margin-top: clamp(42px, 2.9167vw, 52.5px); gap: clamp(10px, .6944vw, 12.5px); }
  .wechat-trigger img { flex-basis: clamp(20px, 1.3889vw, 25px); width: clamp(20px, 1.3889vw, 25px); height: clamp(20px, 1.3889vw, 25px); }
  .footer-links { gap: clamp(26px, 1.8056vw, 32.5px); }
  .footer-bottom { gap: clamp(32px, 2.2222vw, 40px); margin-top: clamp(68px, 4.7222vw, 85px); padding-top: clamp(24px, 1.6667vw, 30px); }
}

@media (max-width: 1050px) {
  .shell { width: min(900px, calc(100% - 40px)); }
  .site-header { height: 78px; }
  .site-header__inner { height: 75px; }
  .brand img { width: 230px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 0; right: 0; top: 78px; display: none; height: auto; flex-direction: column; padding: 12px 20px 20px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { min-height: 48px; }
  .page-banner--home { height: auto; aspect-ratio: 1440 / 560; }
  .page-banner { height: auto; aspect-ratio: 4 / 1; }
  .article-banner { height: auto; aspect-ratio: 3.6 / 1; }
  .visual-banner__inner { width: min(900px, calc(100% - 80px)); gap: 40px; }
  .visual-banner:not(.visual-banner--home) .visual-banner__inner { grid-template-columns: minmax(0, 60%) minmax(0, 36%); }
  .visual-banner__copy { width: 60%; }
  .visual-banner__copy h1 { font-size: 52px; line-height: 66px; }
  .visual-banner__summary { width: auto; margin-top: 36px; }
  .article-hero__inner { padding-bottom: 52px; }
  .article-hero__heading h1 { font-size: 40px; line-height: 56px; }
  .about-overview, .split-section, .home-updates-grid { grid-template-columns: 1fr; gap: 48px; }
  .practice-grid, .practice-grid.six { grid-template-columns: repeat(2,1fr); gap: 22px 0; }
  .lawyer-card-grid { gap: 24px; }
  .team-carousel__track { grid-auto-columns: calc((100% - 24px) / 2); }
  .lawyer-tabs { display: flex; justify-content: flex-start; gap: 16px; overflow-x: auto; scrollbar-width: none; }
  .lawyer-tabs::-webkit-scrollbar { display: none; }
  .lawyer-profile-card { height: auto; }
  .profile-top { grid-template-columns: 340px 1fr; height: auto; min-height: 460px; }
  .profile-meta { padding-inline: 36px; }
  .profile-columns, .profile-columns--2, .profile-columns--1 { height: auto; grid-template-columns: 1fr 1fr; overflow: visible; }
  .profile-columns > .profile-bio { grid-column: 1 / 3; }
  .profile-columns > section { height: 430px; }
  .profile-columns > section:first-child { height: 390px; }
  .bio-scroll { height: 240px; }
  .category-layout { grid-template-columns: 1fr; gap: 20px; }
  .category-layout nav { max-width: 100%; margin-left: 0; }
  .contact-grid, .about-contact { grid-template-columns: 1fr 1fr; }
  .contact-grid > :first-child, .about-contact > :first-child { grid-column: 1 / -1; }
  .article-layout { grid-template-columns: minmax(0,1fr) 280px; gap: 36px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  .shell { width: calc(100% - 32px); }
  .section { padding: 64px 0; }
  .brand img { width: 210px; }
  .page-banner { aspect-ratio: 4 / 1.25; }
  .page-banner--home { aspect-ratio: 4 / 1.75; }
  .page-banner img { object-fit: cover; }
  .visual-banner, .visual-banner--about { height: 400px; }
  .visual-banner--home { height: 440px; }
  .visual-banner__inner { width: calc(100% - 48px); align-items: flex-start; justify-content: center; flex-direction: column; }
  .visual-banner:not(.visual-banner--home) .visual-banner__inner { display: flex; }
  .visual-banner__copy { width: 78%; }
  .visual-banner__copy h1 { font-size: 42px; line-height: 54px; }
  .visual-banner__lead { margin-top: 14px; font-size: 18px; line-height: 30px; }
  .visual-banner__summary { display: none; }
  .article-hero { height: 420px; }
  .article-hero__inner { padding-bottom: 44px; align-items: flex-start; justify-content: flex-end; flex-direction: column; gap: 20px; }
  .article-hero__heading { width: 100%; }
  .article-hero__heading h1 { font-size: 32px; line-height: 44px; }
  .article-hero__meta { width: 100%; padding: 0; border: 0; }
  .section-heading, .updates-heading, .directory-heading, .listing-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .practice-grid, .practice-grid.six, .lawyer-card-grid, .service-grid, .three-column-values, .tile-grid, .footer-links, .site-footer__grid, .career-list article { grid-template-columns: 1fr; }
  .team-carousel__track { grid-template-columns: none; grid-auto-columns: 100%; gap: 16px; }
  .practice-grid article { padding: 18px 0; border-left: 0; border-top: 2px solid rgba(212,175,55,.56); }
  .three-column-values article {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 2px solid var(--gold);
  }
  .three-column-values article:first-child { padding-left: 0; border-left: 0; }
  .three-column-values article:last-child { border-bottom: 0; }
  .lawyer-directory-section { padding: 40px 0; }
  .lawyer-tabs { display: flex; height: 72px; overflow-x: auto; }
  .lawyer-tabs a { min-width: 145px; }
  .lawyer-profile-section { padding: 56px 0; }
  .lawyer-profile-card { height: auto; }
  .profile-top { height: auto; grid-template-columns: 1fr; }
  .portrait-panel { height: 430px; }
  .profile-meta { padding: 30px 24px; }
  .profile-meta dl { grid-template-columns: 1fr; }
  .profile-columns, .profile-columns--2, .profile-columns--1 { height: auto; grid-template-columns: 1fr; overflow: visible; }
  .profile-columns > .profile-bio { grid-column: auto; }
  .profile-columns > section, .profile-columns > section:first-child { height: auto; min-height: 400px; border-left: 0; }
  .bio-scroll { height: 280px; }
  .category-layout nav { display: flex; width: 100%; overflow-x: auto; }
  .category-layout nav a { min-width: 128px; width: 128px; }
  .filter-form { width: 100%; flex-wrap: wrap; }
  .search-field { width: 100%; }
  .article-layout { grid-template-columns: minmax(0,1fr); gap: 32px; }
  .article-content { width: 100%; min-width: 0; padding: 34px 24px; }
  .article-content h1 { font-size: 30px; }
  .author-card { position: static; width: 100%; }
  .contact-grid, .about-contact { grid-template-columns: 1fr; }
  .contact-grid > :first-child, .about-contact > :first-child { grid-column: auto; }
  .qr-card { width: 100%; }
  .latest-list > a { grid-template-columns: 92px minmax(0,1fr); }
  .latest-list > .eyebrow { margin-bottom: 32px; }
  .latest-list time { display: none; }
  .updates-heading .mini-categories { width: 100%; overflow-x: auto; padding-bottom: 8px; }
  .mini-categories a { flex: 0 0 auto; }
  .site-footer { padding-top: 52px; }
  .site-footer__grid { gap: 40px; }
  .footer-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
  .footer-links > div { min-width: 0; }
  .footer-links a { white-space: nowrap; }
  .footer-links strong { margin-bottom: 4px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .brand img { width: 180px; }
  .section-title { font-size: 34px; }
  .profile-meta h2 { font-size: 40px; }
  .profile-meta dl { grid-template-columns: 1fr; }
  .portrait-panel { height: 390px; }
  .profile-columns > section { padding: 30px 24px; }
  .content-tile { grid-template-columns: 44px 1fr; padding: 22px 18px; }
  .article-content { padding-inline: 20px; }
  .footer-brand img { width: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
