:root {
  --paper: #fafbfc;
  --paper-2: #eef2f5;
  --ink: #10161a;
  --ink-soft: #33424d;
  --muted: #6b7c88;
  --line: rgba(16, 22, 26, 0.10);
  --line-strong: rgba(16, 22, 26, 0.22);
  --white: #ffffff;
  --wine: #6b1f2a;
  --wine-deep: #43141d;
  --gold: #a67c3d;
  --gold-soft: #d9c9a8;
  --gold-text: #7a5f2e;
  --gold-deep: #6e5223;
  --navy: #1f4a5f;
  --navy-deep: #152f3d;
  --blue: #2c5f77;
  --shadow: 0 30px 80px rgba(16, 22, 26, 0.07);
  --shadow-lift: 0 24px 60px rgba(16, 22, 26, 0.11);
  --max: 1240px;
  --serif: Georgia, "Songti SC", "Source Han Serif SC", "Noto Serif CJK SC", "Microsoft YaHei", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color-scheme: only light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
}
a { color: inherit; text-decoration: none; }
::selection { color: var(--white); background: var(--wine); }
body::before {
  content: "";
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: 2px;
  background: linear-gradient(90deg, var(--wine) 0%, var(--gold) 50%, var(--navy) 100%);
  pointer-events: none;
}
.skip-link { position: absolute; left: 12px; top: -6em; z-index: 30; padding: 10px 16px; color: var(--white); background: var(--wine); border-radius: 0 0 4px 4px; font-size: 14px; }
.skip-link:focus-visible { top: 0; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 14px; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin: 16px max(24px, calc((100vw - var(--max)) / 2 - 10px)) 0;
  padding: 10px 12px 10px 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(16, 22, 26, 0.08);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
}
.site-header-cta {
  display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto;
  padding: 9px 20px; color: var(--wine); border: 1px solid currentColor; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.site-header-cta::after { content: "↗"; font-size: 13px; line-height: 1; }
.site-header-cta:hover, .site-header-cta:focus-visible { background: var(--wine); color: var(--white); }
.site-header-cta:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-text strong, .brand-text small { display: block; line-height: 1.2; }
.brand-text strong { font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: 0.01em; }
.brand-text small { margin-top: 3px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; }
.site-nav { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--ink-soft); }
.site-nav a { position: relative; padding: 8px 10px; transition: color 0.2s ease; }
.site-nav a::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: 4px; height: 1px; background: var(--wine); transform: scaleX(0); transform-origin: left center; transition: transform 0.25s ease; }
.site-nav a:hover { color: var(--wine); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.site-nav a:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; color: var(--wine); }

/* language toggle */
.lang-toggle {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--navy); background: transparent; border: 1px solid rgba(31, 74, 95, 0.35); border-radius: 999px;
  cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.lang-toggle:hover, .lang-toggle:focus-visible { background: var(--navy); color: var(--white); border-color: var(--navy); }
.lang-toggle:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

/* ===== Hero ===== */
.hero {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr); gap: 72px; align-items: center;
  max-width: none; margin: 0; padding: 112px max(32px, calc((100vw - var(--max)) / 2)) 96px;
  min-height: calc(100svh - 76px);
}
.hero-copy { max-width: 760px; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero-copy > * { animation: hero-rise 0.65s cubic-bezier(0.2, 0.6, 0.2, 1) backwards; }
.hero-copy > *:nth-child(2) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.24s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.32s; }
.hero-copy > *:nth-child(6) { animation-delay: 0.4s; }
.hero .portrait-card { animation: hero-rise 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) 0.25s backwards; }

.eyebrow, .section-kicker {
  margin: 0 0 16px; display: inline-flex; align-items: center; gap: 10px;
  color: var(--wine); font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}
.section-kicker::before, .eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--wine); opacity: 0.85; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.1; text-wrap: balance; font-synthesis: none; letter-spacing: 0.01em; }
h1 { margin-bottom: 18px; font-size: clamp(54px, 7.6vw, 108px); letter-spacing: 0.05em; color: var(--ink); }
h2 { margin-bottom: 18px; font-size: clamp(34px, 4.4vw, 56px); color: var(--ink); }
h3 { margin-bottom: 10px; font-size: clamp(20px, 1.8vw, 24px); line-height: 1.3; }
.hero-statement { margin: 0 0 28px; font-family: var(--serif); font-weight: 600; font-size: clamp(25px, 2.7vw, 40px); line-height: 1.25; letter-spacing: 0.04em; max-width: 22ch; }
.hero-statement span { white-space: nowrap; }
.hero-statement .sw { color: var(--wine); }
.hero-statement .sn { color: var(--navy); }
.hero-statement .sg { color: var(--gold-deep); }
.lead { max-width: 54ch; color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 36px 0 44px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; border-radius: 2px; font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }
.button:active { transform: translateY(1px); }
.button.primary { color: var(--white); background: var(--wine); border: 1px solid var(--wine); }
.button.primary:hover, .button.primary:focus-visible { background: var(--wine-deep); border-color: var(--wine-deep); transform: translateY(-1px); }
.button.secondary { color: var(--ink); background: transparent; border: 1px solid var(--line-strong); }
.button.secondary:hover, .button.secondary:focus-visible { border-color: var(--wine); color: var(--wine); }
.button:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin: 0; padding-top: 24px; border-top: 1px solid var(--line-strong); }
.hero-facts div { min-width: 0; padding: 4px 20px 4px 0; }
.hero-facts div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-facts dt { margin-bottom: 8px; color: var(--muted); font-family: var(--mono); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; }
.hero-facts dd { margin: 0; font-family: var(--serif); font-size: 17px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.nobr { white-space: nowrap; }
.portrait-card { position: relative; margin: 0; padding: 18px 18px 24px; background: var(--white); border: 1px solid var(--line); border-radius: 2px; box-shadow: var(--shadow); }
.portrait-card::before { content: ""; position: absolute; inset: 22px -16px -16px 22%; border: 1px solid var(--gold); border-radius: 2px; z-index: -1; opacity: 0.6; }
.portrait-card .portrait-img { display: block; width: 100%; height: auto; border-radius: 2px; }
.portrait-card figcaption { display: grid; gap: 10px; padding: 22px 4px 4px; }
.portrait-card figcaption > span { display: inline-block; color: var(--gold-text); font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.portrait-card figcaption strong { color: var(--ink); font-family: var(--serif); font-size: 17px; line-height: 1.5; font-weight: 600; font-style: normal; }

/* ===== Sections ===== */
.section { position: relative; max-width: none; margin: 0; padding: 112px max(32px, calc((100vw - var(--max)) / 2)); border-top: 1px solid var(--line); scroll-margin-top: 24px; }
.section[data-wm] > * { position: relative; z-index: 1; }
.section[data-wm]::before { content: attr(data-wm); position: absolute; z-index: 0; top: 56px; left: max(32px, calc((100vw - var(--max)) / 2)); max-width: calc(100% - 48px); overflow: hidden; color: rgba(16, 22, 26, 0.022); font-family: var(--serif); font-size: clamp(64px, 9.5vw, 144px); font-weight: 700; letter-spacing: 0.14em; line-height: 1; white-space: nowrap; pointer-events: none; user-select: none; }

.quote-band { position: relative; overflow: hidden; padding: 150px max(32px, calc((100vw - var(--max)) / 2)); border-top: 1px solid var(--line); background: var(--white); text-align: center; }
.quote-line { position: relative; z-index: 1; margin: 0 auto; max-width: 30em; font-family: var(--serif); font-size: clamp(22px, 2.6vw, 36px); font-weight: 600; line-height: 1.9; letter-spacing: 0.08em; color: var(--ink); text-wrap: balance; }

.two-column { display: grid; grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.32fr); gap: 72px; align-items: start; }
.two-column h2 { font-size: clamp(30px, 3.4vw, 44px); }
.profile-copy { color: var(--ink-soft); font-size: 18px; line-height: 1.85; }
.profile-copy p { margin-bottom: 22px; }

.section-heading { max-width: 760px; margin-bottom: 64px; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading > p:not(.section-kicker) { max-width: 42em; color: var(--ink-soft); font-size: 16px; margin: 0; }

.practice-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.practice-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.practice-grid article { position: relative; min-width: 0; padding: 34px 26px 30px; background: var(--white); border: 1px solid var(--line); border-radius: 3px; box-shadow: 0 2px 10px rgba(26, 22, 18, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.practice-grid article:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(26, 22, 18, 0.10); border-color: rgba(80, 34, 35, 0.28); }
.practice-grid article::before { content: ""; position: absolute; left: 26px; top: 0; width: 32px; height: 3px; background: var(--wine); transition: width 0.35s ease; }
.practice-grid article:hover::before { width: 56px; }
.practice-grid article span { display: block; margin-bottom: 30px; color: var(--wine); font-family: var(--serif); font-style: normal; font-size: 15px; font-weight: 600; }
.practice-grid article h3 { margin-bottom: 12px; }
.practice-grid article p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }

.approach { max-width: none; background: var(--paper-2); border-top: 0; }
.approach-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line); }
.approach-list div { min-width: 0; padding: 36px 28px 36px 0; }
.approach-list div + div { padding-left: 28px; border-left: 1px solid var(--line); }
.approach-list div > span { display: inline-grid; width: 40px; height: 40px; place-items: center; margin-bottom: 22px; color: var(--white); background: var(--navy); border: 1px solid var(--navy); border-radius: 50%; font-family: var(--serif); font-style: normal; font-size: 16px; font-weight: 600; }
.approach-list h3 { margin-bottom: 12px; }
.approach-list p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }

.case-heading { display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr); gap: 56px; align-items: end; margin-bottom: 56px; }
.case-groups { display: grid; gap: 64px; }
.case-group { position: relative; display: grid; grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr); gap: 56px; padding-top: 36px; border-top: 1px solid var(--line-strong); }
.case-group-heading { position: sticky; top: 96px; align-self: start; }
.case-group-heading > span { display: inline-block; margin-bottom: 20px; color: var(--navy); font-family: var(--serif); font-style: normal; font-size: 14px; font-weight: 700; }
.case-group-heading h3 { margin-bottom: 14px; font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; text-wrap: balance; letter-spacing: 0.01em; }
.case-group-heading p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }
.case-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 36px; }
.case-items article { min-width: 0; padding: 24px 12px; margin: 0 -12px; border-bottom: 1px solid var(--line); border-radius: 3px; transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease; }
.case-items article:hover { background: var(--white); border-bottom-color: transparent; transform: translateY(-3px); box-shadow: 0 14px 32px rgba(16, 22, 26, 0.09); }
.case-items article:nth-last-child(1), .case-items article:nth-last-child(2):nth-child(odd) { border-bottom-color: transparent; }
.case-items article > span { display: inline-block; margin-bottom: 12px; color: var(--wine); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.case-items h4 { margin: 0 0 12px; color: var(--ink); font-family: var(--serif); font-size: 19px; font-weight: 700; line-height: 1.35; letter-spacing: 0.01em; }
.case-items p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

/* ===== FAQ ===== */
.faq { max-width: none; background: var(--paper-2); }
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 36px; border-top: 1px solid var(--line-strong); }
.faq-item { padding: 28px 0 24px; border-bottom: 1px solid var(--line); }
.faq-item:nth-last-child(1), .faq-item:nth-last-child(2):nth-child(odd) { border-bottom-color: transparent; }
.faq-item summary { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; list-style: none; cursor: pointer; font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: 0.01em; line-height: 1.4; padding: 4px 0; transition: color 0.2s ease; }
.faq-item summary:hover { color: var(--wine); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { margin: 0; font: inherit; letter-spacing: inherit; }
.faq-item summary::after { flex: 0 0 auto; content: "+"; color: var(--wine); font-family: var(--serif); font-size: 22px; font-weight: 300; transition: transform 0.25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 2px solid var(--wine); outline-offset: 4px; border-radius: 2px; }
.faq-item p { margin: 14px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }

/* ===== Contact ===== */
.contact { padding-bottom: 128px; }
.contact-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr); gap: 64px; align-items: end; padding: 56px 48px; color: var(--white); background: var(--ink); border-radius: 2px; box-shadow: var(--shadow-lift); position: relative; overflow: hidden; }
.contact-panel::after { content: ""; position: absolute; inset: auto 0 0 0; height: 4px; background: linear-gradient(90deg, var(--wine) 0%, var(--gold) 50%, var(--navy) 100%); }
.contact-panel .section-kicker { color: var(--gold-soft); }
.contact-panel .section-kicker::before { background: var(--gold-soft); }
.contact-panel p { color: rgba(255, 253, 249, 0.78); font-size: 16px; line-height: 1.7; }
.contact-panel h2 { color: var(--white); }
address.contact-list { display: grid; gap: 12px; font-style: normal; }
.contact-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; padding: 14px 16px; background: rgba(255, 253, 249, 0.04); border: 1px solid rgba(255, 253, 249, 0.12); border-radius: 2px; overflow-wrap: anywhere; transition: background 0.2s ease, border-color 0.2s ease; }
.contact-row:hover { background: rgba(255, 253, 249, 0.08); border-color: rgba(255, 253, 249, 0.22); }
.contact-label { min-width: 36px; color: rgba(255, 253, 249, 0.6); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-value { display: flex; flex: 1 1 auto; flex-wrap: wrap; align-items: center; gap: 10px; min-width: 0; color: var(--white); font-family: var(--serif); font-size: 16px; }
.contact-value .contact-link { color: var(--white); text-decoration: none; }
.contact-value .contact-link:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }

/* ===== Footer ===== */
.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: none; margin: 0; padding: 36px max(32px, calc((100vw - var(--max)) / 2)) 56px; color: var(--muted); border-top: 1px solid var(--line); font-size: 13px; }
.site-footer p { margin: 0; }
.site-footer > p:nth-child(2) { text-align: right; color: var(--ink-soft); font-family: var(--serif); font-style: normal; }
.site-footer .license-info { grid-column: 1 / -1; opacity: 0.72; font-size: 12px; }

/* ===== Bilingual ===== */
.lang-zh .en { display: none; }
.lang-en .zh { display: none; }
.zh, .en { display: inline; }

/* ===== Scroll fade-in ===== */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.is-visible { opacity: 1; transform: none; }
.fade-in .practice-grid article, .fade-in .approach-list > div, .fade-in .faq-item { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.is-visible .practice-grid article, .fade-in.is-visible .approach-list > div, .fade-in.is-visible .faq-item { opacity: 1; transform: none; }
.fade-in.is-visible .practice-grid article:nth-child(2), .fade-in.is-visible .approach-list > div:nth-child(2), .fade-in.is-visible .faq-item:nth-child(2) { transition-delay: 0.08s; }
.fade-in.is-visible .practice-grid article:nth-child(3), .fade-in.is-visible .approach-list > div:nth-child(3), .fade-in.is-visible .faq-item:nth-child(3) { transition-delay: 0.16s; }
.fade-in.is-visible .practice-grid article:nth-child(4), .fade-in.is-visible .approach-list > div:nth-child(4), .fade-in.is-visible .faq-item:nth-child(4) { transition-delay: 0.24s; }
.fade-in.is-visible .faq-item:nth-child(5) { transition-delay: 0.32s; }
.fade-in.is-visible .faq-item:nth-child(6) { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero { padding-top: 80px; padding-bottom: 76px; min-height: auto; }
  .portrait-card { max-width: 420px; }
  .section { padding: 80px 28px; }
  .two-column { grid-template-columns: 1fr; gap: 40px; }
  .case-heading { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .case-group { grid-template-columns: 1fr; gap: 24px; }
  .case-group-heading { position: static; }
  .contact-panel { grid-template-columns: 1fr; gap: 36px; padding: 40px 32px; }
}
@media (max-width: 760px) {
  .site-header { top: 10px; margin: 10px 12px 0; padding: 8px 8px 8px 14px; gap: 8px; }
  .brand-text strong { font-size: 14px; white-space: nowrap; }
  .brand-text small { display: none; }
  .site-nav { display: flex; gap: 0; font-size: 11px; flex-wrap: nowrap; margin-left: auto; }
  .site-nav a { padding: 4px 4px; white-space: nowrap; }
  .site-header.is-home .brand-text { display: none; }
  .site-header.is-home .site-nav { margin-left: 0; }
  .lang-toggle { padding: 6px 10px; font-size: 11px; }
  .site-header-cta { padding: 6px 12px; font-size: 12px; }
  .site-header-cta::after { display: none; }
  .hero, .section { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 40px; padding-bottom: 56px; grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: none; }
  .hero-statement { max-width: none; }
  h1 { font-size: clamp(38px, 12vw, 60px); }
  h2 { font-size: clamp(24px, 6.5vw, 36px); }
  .hero-statement { font-size: 20px; }
  .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div, .hero-facts div + div { padding: 12px 0; border-left: 0; }
  .hero-facts div + div { border-top: 1px solid var(--line); }
  .practice-grid, .practice-grid.cols-3, .approach-list, .case-items, .faq-list { grid-template-columns: 1fr; }
  .practice-grid article, .practice-grid article:last-child { padding: 24px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .practice-grid article::before { left: 20px; }
  .practice-grid article:last-child { border-bottom: 0; }
  .practice-grid article:hover { padding-left: 24px; }
  .approach-list div, .approach-list div + div { padding: 24px 20px; border-left: 0; border-bottom: 1px solid var(--line); }
  .approach-list { border-bottom: 0; }
  .case-items { gap: 0; }
  .case-items article, .case-items article:nth-last-child(1), .case-items article:nth-last-child(2):nth-child(odd) { padding: 22px 20px; margin: 0; border-bottom: 1px solid var(--line); }
  .contact { padding-bottom: 80px; }
  .contact-panel { padding: 28px 24px; }
  .section[data-wm]::before { top: 24px; left: 20px; max-width: calc(100% - 40px); font-size: 64px; }
  .quote-band { padding: 88px 20px; }
  .site-footer { grid-template-columns: 1fr; gap: 16px; padding: 28px 20px 40px; }
  .site-footer > p:nth-child(2) { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-delay: 0ms !important; transition-duration: 0.001ms !important; }
  .fade-in, .fade-in .practice-grid article, .fade-in .approach-list > div, .fade-in .faq-item { opacity: 1; transform: none; }
}
@media print {
  .site-nav, .hero-actions, .lang-toggle, .site-header-cta, .skip-link { display: none; }
  body::before, .section[data-wm]::before { display: none; }
  .site-header { position: static; box-shadow: none; backdrop-filter: none; }
  .hero { min-height: auto; padding-top: 32px; padding-bottom: 32px; }
  .case-group-heading { position: static; }
  .portrait-card, .practice-grid article, .contact-panel { box-shadow: none; }
  .contact-panel { color: var(--ink); background: none; border: 1px solid var(--line); }
  .contact-panel h2 { color: var(--ink); }
  .contact-panel .section-kicker, .contact-panel p, .contact-label { color: var(--muted); }
  .contact-row { background: none; border-color: var(--line); }
  .contact-value .contact-link { color: var(--ink); }
  .faq-item p { display: block !important; }
  .faq-item summary::after { display: none; }
  .fade-in, .fade-in .practice-grid article, .fade-in .approach-list > div, .fade-in .faq-item { opacity: 1; transform: none; }
}