:root {
  color-scheme: light;
  --ink: #181816;
  --muted: #66645f;
  --paper: #ffffff;
  --warm: #f5f3ee;
  --line: #dedbd3;
  --red: #a72b30;
  --teal: #156c68;
  --gold: #c99428;
  --header-height: 72px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(21, 108, 104, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: -80px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.shell {
  width: min(calc(100% - 48px), var(--content-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(222, 219, 211, 0.85);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  min-width: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-mark {
  width: 7px;
  height: 31px;
  margin-right: 11px;
  background: var(--red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding-block: 24px;
  color: #3d3c38;
  white-space: nowrap;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--red);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  place-items: center;
}

.icon-button:hover {
  border-color: var(--ink);
  background: var(--warm);
}

.icon-button svg,
.button svg,
.text-link svg,
.source-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
  cursor: pointer;
}

.button:hover {
  background: #33322f;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(0, 0, 0, 0.5);
}

.button-light {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--ink);
  background: var(--warm);
}

.button-small {
  min-height: 40px;
  padding: 8px 14px;
}

.hero {
  position: relative;
  display: flex;
  height: calc(100svh - 116px);
  min-height: 590px;
  max-height: 760px;
  align-items: flex-end;
  overflow: hidden;
  background: #272724 url("/assets/images/li-hao-portrait.jpg") 68% 28% / cover no-repeat;
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 48px), var(--content-width));
  margin-inline: auto;
  grid-template-columns: minmax(0, 720px) 1fr;
  gap: 40px;
  align-items: end;
  padding-block: 70px 60px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: currentColor;
  content: "";
}

.hero .eyebrow {
  color: #f1c25a;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 64px;
  font-weight: 850;
  line-height: 1.08;
}

.hero-statement {
  max-width: 700px;
  margin: 18px 0 0;
  color: #fff;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-hero {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-hero:hover {
  border-color: #fff;
  background: #eceae4;
}

.hero-proof {
  align-self: end;
  justify-self: end;
  width: 260px;
  padding: 18px 0 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.56);
  border-left: 4px solid #f1c25a;
}

.hero-proof strong {
  display: block;
  margin-bottom: 2px;
  font-size: 30px;
  line-height: 1.2;
}

.hero-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.hero-proof > div + div {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.identity-band {
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.identity-inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.identity-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 17px 24px;
  border-right: 1px solid var(--line);
  color: #44423e;
  font-size: 13px;
}

.identity-item:first-child {
  padding-left: 0;
}

.identity-item:last-child {
  border-right: 0;
}

.identity-item svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--teal);
}

.section {
  padding-block: 84px;
}

.section-compact {
  padding-block: 58px;
}

.section-warm {
  border-block: 1px solid var(--line);
  background: var(--warm);
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head h2,
.split-copy h2,
.report-intro h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
}

.section-head p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.text-link,
.source-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 750;
}

.text-link:hover,
.source-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.split-media {
  position: relative;
  height: 570px;
  overflow: hidden;
  background: #d9d6cf;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.split-media-note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px 18px;
  background: rgba(24, 24, 22, 0.86);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.split-copy > p {
  color: #494742;
  font-size: 17px;
}

.point-list {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}

.point-number {
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
}

.point strong {
  display: block;
  margin-bottom: 3px;
}

.point p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.profile-story-section {
  position: relative;
  overflow: visible;
  background: #fff;
}

.profile-story {
  display: grid;
  grid-template-columns: minmax(310px, 0.76fr) minmax(0, 1.24fr);
  gap: 84px;
  align-items: start;
}

.profile-sticky {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  min-width: 0;
}

.profile-card {
  --profile-progress: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid #cfcac0;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 22px 55px rgba(24, 24, 22, 0.14);
}

.profile-card::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 74px;
  height: 5px;
  background: var(--red);
  content: "";
}

.profile-progress {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.profile-progress span {
  display: block;
  width: calc(var(--profile-progress) * 100%);
  height: 100%;
  background: #f1c25a;
  transition: width 80ms linear;
}

.profile-card-media {
  position: relative;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  background: #d9d6cf;
}

.profile-card-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: rgba(24, 24, 22, 0.18);
  content: "";
}

.profile-card-media img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center 22%;
  transform: translateY(calc(var(--profile-progress) * -5%)) scale(1.025);
  transition: transform 120ms linear;
}

.profile-card-body {
  padding: 22px 24px 25px;
}

.profile-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.profile-card-heading > div {
  display: grid;
}

.profile-card-heading span {
  font-size: 25px;
  font-weight: 850;
  line-height: 1.2;
}

.profile-card-heading strong {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 650;
}

.profile-card-heading .profile-live {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 7px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.profile-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60b49e;
  box-shadow: 0 0 0 4px rgba(96, 180, 158, 0.12);
}

.profile-card-line {
  margin: 17px 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 17px;
}

.profile-focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.profile-focus span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.profile-focus strong {
  color: #f1c25a;
  font-size: 14px;
  text-align: right;
}

.profile-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 17px;
}

.profile-card-stats > div {
  min-width: 0;
  padding-right: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.profile-card-stats > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.profile-card-stats strong,
.profile-card-stats span {
  display: block;
}

.profile-card-stats strong {
  font-size: 18px;
  line-height: 1.2;
}

.profile-card-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.45;
}

.profile-story-copy {
  min-width: 0;
  padding-top: 15px;
}

.profile-story-copy > h2 {
  max-width: 720px;
  margin: 0;
  font-size: 40px;
  line-height: 1.35;
}

.self-intro {
  max-width: 720px;
  margin: 25px 0 34px;
  color: #3e3d38;
  font-family: "STKaiti", "KaiTi", "Microsoft YaHei", sans-serif;
  font-size: 21px;
  line-height: 1.85;
}

.self-intro p {
  margin: 0 0 14px;
}

.trait-list {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
}

.trait {
  display: grid;
  min-height: 172px;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-content: center;
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, padding 180ms ease;
}

.trait.is-active {
  padding-left: 18px;
  background: var(--warm);
}

.trait > svg {
  width: 28px;
  height: 28px;
  margin-top: 4px;
  color: var(--red);
}

.trait span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.trait h3 {
  margin: 4px 0 7px;
  font-size: 22px;
  line-height: 1.4;
}

.trait p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.profile-closing {
  margin-top: 32px;
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: #fff8e6;
}

.profile-closing p {
  margin: 0 0 13px;
  color: #4a4539;
}

.profile-cover {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.profile-cover-grid {
  width: 100%;
}

.profile-cover-media {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-height) - 88px);
  min-height: 520px;
  max-height: 700px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #d9dfe6;
}

.profile-cover-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.profile-cover-photo-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(24, 24, 22, 0.92);
  color: #fff;
}

.profile-cover-photo-label strong {
  font-size: 19px;
}

.profile-cover-photo-label span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.profile-cover-content {
  display: flex;
  width: min(calc(100% - 48px), var(--content-width));
  min-width: 0;
  margin-inline: auto;
  flex-direction: column;
  justify-content: center;
  padding: 54px 0 66px;
}

.profile-cover-copy h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 850;
  line-height: 1.08;
}

.profile-cover-copy {
  min-width: 0;
}

.profile-cover-statement {
  width: 100%;
  max-width: 680px;
  margin: 18px 0 0;
  font-family: "STKaiti", "KaiTi", "Microsoft YaHei", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.profile-cover-intro {
  max-width: 780px;
  margin-top: 14px;
  color: #4c4942;
  font-size: 16px;
  line-height: 1.85;
}

.profile-cover-intro p {
  margin: 0;
}

.profile-cover .hero-actions {
  margin-top: 22px;
}

.profile-cover-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 12px;
}

.profile-cover-social span {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.profile-cover-social strong {
  color: var(--ink);
  font-size: 16px;
}

.profile-cover-traits {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-cover-traits > div {
  display: grid;
  min-width: 0;
  min-height: 78px;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  padding: 13px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-cover-traits svg {
  width: 19px;
  height: 19px;
  grid-row: 1 / 3;
  margin-top: 3px;
  color: var(--red);
}

.profile-cover-traits strong {
  font-size: 14px;
  line-height: 1.35;
}

.profile-cover-traits span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.profile-panel-section {
  background: #fff;
}

.profile-panel {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #cfcbc2;
  border-radius: 4px;
  background: var(--warm);
  box-shadow: 0 18px 48px rgba(24, 24, 22, 0.1);
}

.profile-panel-media {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: #d9d6cf;
}

.profile-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 420ms ease;
}

.profile-panel:hover .profile-panel-media img {
  transform: scale(1.025);
}

.profile-panel-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 18px 20px;
  background: rgba(24, 24, 22, 0.92);
  color: #fff;
}

.profile-panel-stats span {
  display: grid;
  min-width: 0;
  padding-inline: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  line-height: 1.45;
}

.profile-panel-stats span:first-child {
  padding-left: 0;
}

.profile-panel-stats span:last-child {
  padding-right: 0;
  border-right: 0;
}

.profile-panel-stats strong {
  color: #fff;
  font-size: 18px;
}

.profile-panel-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 42px 46px;
}

.profile-panel-name {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.profile-panel-name .eyebrow {
  margin-bottom: 3px;
}

.profile-panel-name > div > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.profile-panel-name .profile-live {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 4px 9px;
  border: 1px solid #c9c5bc;
  border-radius: 2px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.profile-panel-copy > h2 {
  margin: 18px 0 0;
  font-size: 35px;
  line-height: 1.35;
}

.profile-panel-copy .self-intro {
  margin: 18px 0 20px;
  font-size: 17px;
  line-height: 1.8;
}

.profile-qualities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #d3cfc6;
  border-left: 1px solid #d3cfc6;
}

.profile-quality {
  display: grid;
  min-height: 126px;
  grid-template-columns: 29px 1fr;
  gap: 12px;
  align-content: start;
  padding: 17px;
  border-right: 1px solid #d3cfc6;
  border-bottom: 1px solid #d3cfc6;
  background: rgba(255, 255, 255, 0.5);
}

.profile-quality > svg {
  width: 23px;
  height: 23px;
  margin-top: 2px;
  color: var(--red);
}

.profile-quality strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.profile-quality p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.profile-panel-foot {
  min-height: 25px;
  margin-top: 18px;
}

.rail-head-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 20px;
}

.rail-controls {
  display: flex;
  gap: 7px;
}

.content-rail {
  display: flex;
  max-width: 100%;
  gap: 24px;
  padding: 3px 2px 20px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: #aaa69d transparent;
  scrollbar-width: thin;
}

.content-rail::-webkit-scrollbar {
  height: 7px;
}

.content-rail::-webkit-scrollbar-track {
  background: transparent;
}

.content-rail::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #aaa69d;
}

.content-rail > article {
  scroll-snap-align: start;
}

.content-rail.work-grid .work-card {
  flex: 0 0 calc((100% - 48px) / 3);
}

.content-rail.article-grid .article-card {
  flex: 0 0 calc((100% - 20px) / 2);
}

.work-grid.content-rail,
.article-grid.content-rail {
  display: flex;
}

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

.work-card,
.article-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.work-card:hover,
.article-card:hover {
  border-color: #a9a59c;
  box-shadow: 0 16px 36px rgba(24, 24, 22, 0.08);
  transform: translateY(-2px);
}

.work-card,
.article-card,
.area-link {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.work-cover {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd9d0;
}

.work-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-platform {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 2px;
  background: rgba(24, 24, 22, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
}

.work-platform svg {
  width: 14px;
  height: 14px;
}

.work-body,
.article-card-body {
  padding: 20px;
}

.work-body h3,
.article-card h3 {
  margin: 8px 0 12px;
  font-size: 19px;
  line-height: 1.45;
}

.card-meta,
.article-meta,
.source-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 12px;
}

.source-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid #c7d9d7;
  border-radius: 2px;
  background: #edf6f5;
  color: #0e5b57;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.source-badge.editorial {
  border-color: #e4d39d;
  background: #fff7da;
  color: #745512;
}

.source-badge svg {
  width: 14px;
  height: 14px;
}

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

.article-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.article-card-body {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.article-card h3 {
  font-size: 23px;
}

.article-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.article-card .text-link {
  margin-top: auto;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.area-link {
  min-height: 190px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.area-link:hover {
  background: #2f2f2c;
}

.area-link h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.area-link p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.area-link span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: #f1c25a;
  font-size: 13px;
  font-weight: 750;
}

.area-link svg {
  width: 16px;
  height: 16px;
}

.report-band {
  border-top: 5px solid var(--red);
  background: #eceae4;
}

.report-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding-block: 48px;
}

.report-band h2 {
  margin: 0 0 7px;
  font-size: 28px;
  line-height: 1.3;
}

.report-band p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.page-header {
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.page-header-inner {
  padding-block: 64px 58px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.page-header h1 {
  max-width: 880px;
  margin: 0;
  font-size: 44px;
  line-height: 1.25;
}

.page-header p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.page-header .source-badge-row {
  margin-top: 20px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  color: #41403c;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

[data-filter-item][hidden] {
  display: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 70px;
  align-items: start;
}

.article-body {
  min-width: 0;
  font-size: 17px;
  line-height: 1.85;
}

.answer-box {
  margin: 0 0 38px;
  padding: 22px 24px;
  border-left: 5px solid var(--teal);
  background: #edf6f5;
}

.answer-box strong {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 13px;
}

.answer-box p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.article-body h2 {
  margin: 48px 0 14px;
  font-size: 27px;
  line-height: 1.4;
}

.article-body p {
  margin: 0 0 21px;
}

.article-lead {
  margin-bottom: 34px !important;
  color: #34332f;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.75;
}

.article-callout {
  margin-block: 30px;
  padding: 22px 24px;
  border: 1px solid #dcc781;
  border-left: 5px solid var(--gold);
  background: #fff9e6;
}

.article-callout strong {
  display: block;
  margin-bottom: 6px;
  color: #6a4a08;
}

.article-checklist {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  position: relative;
  padding: 13px 0 13px 34px;
  border-bottom: 1px solid var(--line);
}

.article-checklist li::before {
  position: absolute;
  top: 17px;
  left: 4px;
  width: 13px;
  height: 7px;
  border-bottom: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
  content: "";
  transform: rotate(-45deg);
}

.article-note {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.article-side {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: grid;
  gap: 22px;
}

.side-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.side-panel h2,
.side-panel h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.side-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-block;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--warm);
  color: #494742;
  font-size: 12px;
}

.source-ledger {
  display: grid;
  gap: 22px;
}

.ledger-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.ledger-row h2,
.ledger-row h3 {
  margin: 0;
  font-size: 18px;
}

.ledger-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid #bdd5d2;
  border-radius: 2px;
  background: #edf6f5;
  color: #0e5b57;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.status.pending {
  border-color: #ddd7ca;
  background: var(--warm);
  color: var(--muted);
}

.search-panel {
  max-width: 860px;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 54px;
  border: 2px solid var(--ink);
  background: #fff;
}

.search-box input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-box button {
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  place-items: center;
}

.search-box svg {
  width: 20px;
  height: 20px;
}

.search-status {
  min-height: 28px;
  margin: 16px 0 6px;
  color: var(--muted);
  font-size: 14px;
}

.search-results {
  display: grid;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.search-result {
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.search-result h2 {
  margin: 7px 0;
  font-size: 21px;
}

.search-result p {
  margin: 0;
  color: var(--muted);
}

.search-empty {
  padding-block: 42px;
  color: var(--muted);
}

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

.topic-link {
  display: block;
  min-height: 200px;
  padding: 25px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 4px;
}

.topic-link:nth-child(2n) {
  border-left-color: var(--gold);
}

.topic-link h2,
.topic-link h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.topic-link p {
  margin: 0;
  color: var(--muted);
}

.topic-link .text-link {
  margin-top: 18px;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.report-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.report-intro > p {
  color: var(--muted);
}

.privacy-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-points li {
  display: flex;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.privacy-points svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--teal);
}

.report-form {
  display: grid;
  gap: 26px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.form-section {
  display: grid;
  gap: 16px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.form-section h2 {
  margin: 0;
  font-size: 18px;
}

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

.field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field > span {
  font-size: 13px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #bab7af;
  border-radius: 3px;
  background: #fff;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(21, 108, 104, 0.18);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice label {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--warm);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.choice input:checked + label {
  border-color: var(--teal);
  background: #edf6f5;
  color: #0e5b57;
}

.choice input:focus-visible + label {
  outline: 3px solid rgba(21, 108, 104, 0.35);
  outline-offset: 2px;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.form-state {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-state.error {
  color: var(--red);
}

.report-preview {
  padding: 24px;
  border: 1px solid #bcd2cf;
  border-left: 5px solid var(--teal);
  background: #edf6f5;
}

.report-preview[hidden] {
  display: none;
}

.report-preview h2 {
  margin: 0 0 12px;
  font-size: 21px;
}

.report-preview p {
  margin: 8px 0;
}

.report-preview strong {
  color: #0e5b57;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: center;
  min-height: 72px;
  padding: 17px 4px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  transition: transform 180ms ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-item > div {
  max-width: 900px;
  padding: 0 48px 22px 4px;
}

.faq-item p {
  margin: 0 0 10px;
  color: #3f3e39;
  line-height: 1.9;
}

.faq-item span {
  color: var(--muted);
  font-size: 12px;
}

.faq-hub .filter-bar {
  margin-bottom: 22px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 64px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.contact-panel.compact {
  max-width: 920px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 44px;
  padding: 32px;
}

.contact-copy h2 {
  max-width: 720px;
  margin: 8px 0 14px;
  font-size: 31px;
  line-height: 1.28;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.contact-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-lines > div {
  display: flex;
  min-width: 0;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border-block: 1px solid var(--line);
}

.contact-lines svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--red);
}

.contact-lines span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.contact-lines small {
  color: var(--muted);
  font-size: 11px;
}

.contact-lines a,
.contact-lines strong {
  overflow-wrap: anywhere;
  font-size: 17px;
}

.contact-actions,
.report-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.report-band-actions {
  margin-top: 0;
}

.contact-qr {
  margin: 0;
  text-align: center;
}

.contact-qr img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-qr figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.contact-prep {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}

.contact-prep h2 {
  margin: 8px 0 0;
  font-size: 28px;
}

.contact-prep ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: contact-step;
}

.contact-prep li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 2px 10px;
  padding: 14px 18px;
  border-left: 1px solid var(--line);
  counter-increment: contact-step;
}

.contact-prep li::before {
  grid-row: 1 / 3;
  color: var(--red);
  font-weight: 850;
  content: counter(contact-step, decimal-leading-zero);
}

.contact-prep li span {
  color: var(--muted);
  font-size: 12px;
}

.legal-copy {
  max-width: 780px;
}

.legal-copy h2 {
  margin: 40px 0 12px;
  font-size: 24px;
}

.legal-copy p,
.legal-copy li {
  color: #484640;
}

.legal-copy li {
  margin-bottom: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f7f7f5;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 60px;
  padding-block: 54px;
}

.footer-brand {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 850;
}

.footer-main p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-column h2 {
  margin: 0 0 13px;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.share-tools {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 12px 16px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.toast[hidden] {
  display: none;
}

.no-results {
  padding: 30px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-grid;
  }

  .site-nav {
    position: absolute;
    z-index: 110;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    width: 100%;
    height: calc(100svh - var(--header-height));
    align-content: start;
    padding: 18px 24px;
    background: #fff;
    overflow-y: auto;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .header-report {
    display: none;
  }

  .profile-cover-grid {
    width: 100%;
  }

  .profile-cover-content {
    padding: 44px 0 54px;
  }

  .profile-cover-copy h1 {
    font-size: 42px;
  }

  .profile-cover-statement {
    font-size: 24px;
  }

  .profile-cover-traits > div {
    grid-template-columns: 26px 1fr;
    padding: 12px;
  }

  .profile-cover-traits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    justify-self: start;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-panel {
    min-height: 700px;
    grid-template-columns: minmax(310px, 0.88fr) minmax(0, 1.12fr);
  }

  .profile-panel-copy {
    padding: 30px;
  }

  .profile-panel-copy > h2 {
    font-size: 30px;
  }

  .profile-qualities {
    grid-template-columns: 1fr;
  }

  .profile-quality {
    min-height: 0;
  }

  .content-rail.work-grid .work-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .content-rail.article-grid .article-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .split,
  .article-layout,
  .report-layout {
    grid-template-columns: 1fr;
  }

  .profile-story {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 44px;
  }

  .profile-card-body {
    padding: 18px;
  }

  .profile-card-stats {
    grid-template-columns: 1fr 1fr;
  }

  .profile-card-stats > div:nth-child(2) {
    border-right: 0;
  }

  .profile-card-stats > div:last-child {
    grid-column: 1 / -1;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .split {
    gap: 42px;
  }

  .article-side,
  .report-intro {
    position: static;
  }

  .contact-prep {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .brand {
    max-width: 220px;
    font-size: 17px;
  }

  .brand-mark {
    width: 6px;
    height: 27px;
    margin-right: 9px;
  }

  .header-search {
    display: none;
  }

  .profile-cover {
    min-height: 0;
  }

  .profile-cover-grid {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .profile-cover-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .profile-cover-photo-label {
    display: none;
  }

  .profile-cover-content {
    width: min(calc(100% - 32px), var(--content-width));
    padding: 30px 20px 36px;
  }

  .profile-cover-copy h1 {
    font-size: 38px;
  }

  .profile-cover-copy,
  .profile-cover-intro,
  .profile-cover-statement {
    max-width: calc(100vw - 72px);
  }

  .profile-cover-statement {
    margin-top: 14px;
    font-size: 23px;
  }

  .profile-cover-intro {
    font-size: 15px;
  }

  .profile-cover .hero-actions .button {
    flex: 1 1 145px;
  }

  .profile-cover-traits {
    grid-template-columns: 1fr;
  }

  .hero {
    height: calc(100svh - 104px);
    min-height: 520px;
    max-height: 690px;
    background-position: 58% 24%;
  }

  .hero::before {
    background: rgba(0, 0, 0, 0.56);
  }

  .hero-content {
    width: min(calc(100% - 32px), var(--content-width));
    gap: 24px;
    padding-block: 44px 38px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .hero-proof {
    width: auto;
    padding-top: 12px;
  }

  .hero-proof strong {
    font-size: 24px;
  }

  .identity-inner {
    grid-template-columns: 1fr;
  }

  .identity-item,
  .identity-item:first-child {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .identity-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 58px;
  }

  .section-compact {
    padding-block: 44px;
  }

  .section-head {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
  }

  .rail-head-actions {
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
  }

  .rail-controls .icon-button {
    width: 40px;
    height: 40px;
  }

  .section-head h2,
  .split-copy h2,
  .report-intro h2 {
    font-size: 29px;
  }

  .split-media {
    height: 470px;
  }

  .profile-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .profile-panel-media {
    min-height: 410px;
  }

  .profile-panel-copy {
    padding: 26px 20px;
  }

  .profile-panel-name {
    gap: 12px;
  }

  .profile-panel-copy > h2 {
    font-size: 28px;
  }

  .profile-panel-copy .self-intro {
    font-size: 16px;
  }

  .profile-qualities {
    grid-template-columns: 1fr;
  }

  .profile-quality {
    min-height: 0;
  }

  .profile-story {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .profile-sticky {
    position: relative;
    top: auto;
  }

  .profile-card-media {
    aspect-ratio: 4 / 3.4;
  }

  .profile-card-media img {
    object-position: center 27%;
  }

  .profile-card-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-card-stats > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .profile-card-stats > div:last-child {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
  }

  .profile-story-copy {
    padding-top: 0;
  }

  .profile-story-copy > h2 {
    font-size: 30px;
  }

  .self-intro {
    font-size: 18px;
  }

  .trait {
    min-height: 0;
    grid-template-columns: 34px 1fr;
    gap: 13px;
    padding-block: 21px;
  }

  .trait.is-active {
    padding-left: 12px;
  }

  .trait > svg {
    width: 24px;
    height: 24px;
  }

  .trait h3 {
    font-size: 19px;
  }

  .work-grid,
  .article-grid,
  .topic-grid,
  .area-grid,
  .form-grid,
  .choice-grid,
  .article-side {
    grid-template-columns: 1fr;
  }

  .content-rail.work-grid .work-card {
    flex-basis: min(82vw, 320px);
  }

  .content-rail.article-grid .article-card {
    flex-basis: min(88vw, 340px);
  }

  .work-cover {
    aspect-ratio: 16 / 12;
  }

  .area-grid {
    border-left: 0;
  }

  .area-link {
    min-height: 150px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  .report-band-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .report-band-inner .button {
    width: 100%;
  }

  .report-band-actions {
    display: grid;
    width: 100%;
  }

  .faq-item summary {
    min-height: 66px;
    gap: 12px;
    font-size: 16px;
  }

  .faq-item > div {
    padding-right: 4px;
  }

  .contact-panel,
  .contact-panel.compact {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 22px 16px;
  }

  .contact-copy h2 {
    font-size: 27px;
  }

  .contact-lines {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: grid;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-qr {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .contact-prep ol {
    grid-template-columns: 1fr;
  }

  .contact-prep li {
    padding-inline: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .page-header-inner {
    padding-block: 42px 38px;
  }

  .page-header h1 {
    font-size: 34px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-lead {
    font-size: 18px;
  }

  .article-body h2 {
    font-size: 23px;
  }

  .ledger-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .report-form {
    padding: 20px 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-main > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .share-tools,
  .report-band,
  .button,
  .icon-button {
    display: none !important;
  }

  .section {
    padding-block: 20px;
  }

  .article-layout,
  .report-layout {
    display: block;
  }
}
