:root {
  --ink: #171a1a;
  --muted: #5f6766;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --soft: #ecefed;
  --line: #d7dcda;
  --teal: #2f7d87;
  --teal-dark: #1e5b63;
  --warm: #bb6659;
  --dark: #1b2324;
  --hero: #888890;
  --header-height: 72px;
  --content: 1180px;
  --side: 28px;
  --radius: 4px;
  --shadow: 0 24px 70px rgba(20, 27, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open,
body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(47, 125, 135, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--dark);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - (var(--side) * 2)), var(--content));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(247, 248, 246, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 246, 0.96);
  box-shadow: 0 8px 28px rgba(20, 26, 26, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 20px;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
}

.brand-note {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav > a:not(.button) {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav > a:not(.button):hover::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--teal-dark);
}

.button-primary:hover {
  background: #15494f;
}

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

.button-outline {
  border-color: currentColor;
  background: transparent;
}

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

.button-link {
  min-height: auto;
  padding: 0 0 4px;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: var(--teal-dark);
  background: transparent;
}

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

.hero {
  position: relative;
  display: flex;
  min-height: 690px;
  height: 84svh;
  max-height: 900px;
  align-items: center;
  overflow: hidden;
  background-color: var(--hero);
  background-image: url("assets/he-peng-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(54%, 660px);
  padding-top: var(--header-height);
}

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

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.hero-role {
  margin: 16px 0 0;
  font-size: 19px;
  font-weight: 700;
}

.hero-description {
  max-width: 600px;
  margin: 22px 0 0;
  color: #2c3131;
  font-size: 18px;
  line-height: 1.9;
}

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

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  color: #39403f;
  font-size: 13px;
}

.trust-strip {
  color: #fff;
  background: var(--dark);
}

.trust-grid {
  display: grid;
  min-height: 138px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 26px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-value {
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.trust-label {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.section {
  padding: 108px 0;
}

.section-compact {
  padding: 76px 0;
}

.section-white {
  background: var(--surface);
}

.section-soft {
  background: var(--soft);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
  margin-bottom: 54px;
}

.section-kicker {
  margin: 0;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.section-title {
  margin: 0;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 42px;
  line-height: 1.35;
  letter-spacing: 0;
}

.section-lead {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.statement h2 {
  max-width: 820px;
  margin: 0;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 46px;
  line-height: 1.45;
  letter-spacing: 0;
}

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

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

.service-row {
  display: grid;
  grid-template-columns: 74px minmax(210px, 0.72fr) minmax(0, 1.3fr) 30px;
  gap: 30px;
  align-items: center;
  min-height: 170px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: color 160ms ease, padding 160ms ease;
}

.service-row:hover {
  padding-right: 8px;
  color: var(--teal-dark);
}

.service-number {
  color: var(--warm);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 22px;
}

.service-row h3 {
  margin: 0;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 28px;
  line-height: 1.35;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 88px;
  align-items: center;
}

.portrait-frame {
  position: relative;
  margin: 0;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 50% 22%;
}

.portrait-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.about-copy h2 {
  margin: 0 0 24px;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 44px;
  line-height: 1.35;
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.fact {
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--line);
}

.fact:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.fact:nth-child(even) {
  padding-left: 22px;
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  font-size: 15px;
}

.fact span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.method-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.method-line li {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.method-line li:not(:last-child)::after {
  width: 4px;
  height: 4px;
  margin: 0 12px;
  border-radius: 50%;
  background: var(--warm);
  content: "";
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step {
  min-height: 230px;
  padding: 30px 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step .step-number {
  color: #71aab1;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 18px;
}

.process-step h3 {
  margin: 46px 0 12px;
  font-size: 18px;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.boundary-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.boundary-grid h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 38px;
  line-height: 1.4;
}

.boundary-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.boundary-list li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.boundary-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.boundary-list svg {
  position: absolute;
  top: 22px;
  left: 0;
  color: var(--teal-dark);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

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

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

.faq-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 160ms ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 820px;
  padding: 0 60px 26px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.contact-band {
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.contact-grid h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 48px;
  line-height: 1.35;
}

.contact-grid p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.site-footer {
  padding: 34px 0;
  color: #596160;
  background: #111616;
  font-size: 11px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background-color: var(--dark);
  background-image: url("assets/he-peng-hero.webp");
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(13, 18, 18, 0.54);
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 150px 0 72px;
}

.page-hero .eyebrow {
  color: #9bc5ca;
}

.page-hero h1 {
  font-size: 54px;
}

.page-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.profile-hero {
  display: grid;
  min-height: 650px;
  padding-top: var(--header-height);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  color: #fff;
  background: var(--dark);
}

.profile-hero-copy {
  display: flex;
  align-items: flex-end;
  padding: 96px clamp(42px, 5vw, 92px) 76px max(var(--side), calc((100vw - var(--content)) / 2));
}

.profile-hero-copy-inner {
  max-width: 660px;
}

.profile-hero .eyebrow {
  color: #9bc5ca;
}

.profile-hero h1 {
  margin-top: 18px;
  color: #fff;
  font-size: 54px;
}

.profile-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.profile-hero-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #c9c9cc;
}

.profile-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(0, 1.38fr);
  gap: 84px;
}

.page-aside {
  align-self: start;
  position: sticky;
  top: 105px;
}

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

.page-content h2 {
  margin: 0 0 22px;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 36px;
  line-height: 1.4;
}

.page-content h3 {
  margin: 42px 0 14px;
  font-size: 20px;
}

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

.page-content section + section {
  margin-top: 76px;
  padding-top: 76px;
  border-top: 1px solid var(--line);
}

.issue-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.issue-item {
  min-height: 138px;
  padding: 22px 22px 22px 0;
  border-bottom: 1px solid var(--line);
}

.issue-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.issue-item:nth-child(even) {
  padding-left: 24px;
}

.issue-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.issue-item p {
  margin: 0;
  font-size: 13px;
}

.quote-block {
  margin: 38px 0;
  padding: 30px 0 30px 28px;
  border-left: 3px solid var(--warm);
  color: var(--ink);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 25px;
  line-height: 1.65;
}

.info-table {
  width: 100%;
  margin-top: 26px;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 170px;
  font-size: 13px;
}

.info-table td {
  color: var(--muted);
}

.credential-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.credential-list strong {
  font-size: 14px;
}

.credential-list span {
  color: var(--muted);
}

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

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

.booking-panel img {
  width: min(100%, 280px);
  margin-inline: auto;
}

.booking-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.notice {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 3px solid var(--teal);
  color: var(--muted);
  background: var(--soft);
  font-size: 13px;
}

.booking-dialog {
  width: min(calc(100% - 36px), 760px);
  max-height: calc(100svh - 36px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-dialog::backdrop {
  background: rgba(10, 14, 14, 0.68);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.dialog-head h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 26px;
}

.dialog-body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  padding: 30px;
}

.dialog-qr {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dialog-qr img {
  width: 100%;
}

.dialog-info h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.dialog-info p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  :root {
    --side: 22px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 99;
    padding: 26px var(--side) 40px;
    overflow-y: auto;
    background: rgba(247, 248, 246, 0.98);
  }

  .mobile-nav.is-open {
    display: flex;
    flex-direction: column;
  }

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

  .mobile-nav .button {
    margin-top: 24px;
    border-bottom: 0;
  }

  .hero {
    min-height: 720px;
    height: 86svh;
    max-height: 880px;
  }

  .hero-content {
    width: 57%;
  }

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

  .section-head,
  .statement,
  .boundary-grid,
  .contact-grid,
  .page-layout,
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-grid {
    gap: 54px;
  }

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

  .process-step:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .page-aside {
    position: static;
  }
}

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

  body {
    font-size: 15px;
  }

  .brand-note {
    display: none;
  }

  .hero {
    min-height: 660px;
    height: 84svh;
    max-height: 790px;
    align-items: flex-end;
    color: #fff;
    background-image: url("assets/he-peng-portrait.webp");
    background-position: 50% 17%;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(13, 17, 18, 0.55);
    content: "";
  }

  .hero-content {
    width: 100%;
    padding: 120px 0 46px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    color: #a8d4d9;
  }

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

  .hero-role {
    margin-top: 10px;
    font-size: 16px;
  }

  .hero-description {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-location {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
  }

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

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

  .hero .button-outline {
    color: #fff;
  }

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

  .trust-item {
    min-height: 120px;
    padding: 22px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-item:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .trust-value {
    font-size: 27px;
  }

  .section {
    padding: 76px 0;
  }

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

  .section-title,
  .statement h2,
  .about-copy h2,
  .contact-grid h2 {
    font-size: 34px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .service-row {
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    gap: 14px;
    min-height: 0;
    padding: 26px 0;
  }

  .service-row p {
    grid-column: 2 / 4;
  }

  .service-row h3 {
    font-size: 23px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .portrait-frame {
    width: min(100%, 460px);
  }

  .about-copy p {
    font-size: 15px;
  }

  .fact-list {
    grid-template-columns: 1fr;
  }

  .fact:nth-child(odd) {
    border-right: 0;
  }

  .fact:nth-child(even) {
    padding-left: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:first-child,
  .process-step:nth-child(3) {
    min-height: 0;
    padding: 24px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .process-step h3 {
    margin: 24px 0 8px;
  }

  .faq-item summary {
    min-height: 76px;
    font-size: 15px;
  }

  .contact-actions {
    align-items: stretch;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    min-height: 500px;
    background-image: url("assets/he-peng-portrait.webp");
    background-position: 50% 18%;
  }

  .page-hero-content {
    padding: 130px 0 54px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .profile-hero {
    display: flex;
    min-height: 0;
    padding-top: var(--header-height);
    flex-direction: column;
  }

  .profile-hero-media {
    order: -1;
    min-height: 0;
    height: min(112vw, 520px);
  }

  .profile-hero-media img {
    object-position: center 18%;
  }

  .profile-hero-copy {
    padding: 44px var(--side) 48px;
  }

  .profile-hero h1 {
    font-size: 36px;
  }

  .profile-hero p {
    font-size: 15px;
  }

  .page-content h2 {
    font-size: 30px;
  }

  .issue-list {
    grid-template-columns: 1fr;
  }

  .issue-item:nth-child(odd) {
    border-right: 0;
  }

  .issue-item:nth-child(even) {
    padding-left: 0;
  }

  .credential-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .info-table th,
  .info-table td {
    padding: 2px 0;
    border-bottom: 0;
  }

  .dialog-body {
    grid-template-columns: 1fr;
    padding: 22px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
