@font-face {
  font-family: "Noto Serif SC Video";
  src: url("public/fonts/hbq-serif.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

/* 2026-07-18：统一非首页首屏的文字层级与版面高度 */
.about-hero {
  min-height: 0;
  height: clamp(500px, 42vw, 620px);
  overflow: hidden;
  background: #070707;
}

.about-hero-copy {
  background: linear-gradient(90deg, #070707 0%, #080808 78%, rgba(8, 8, 8, 0.72) 100%);
  color: #f4efe6;
  padding: clamp(36px, 4.6vw, 64px) 5vw;
}

.about-eyebrow {
  margin-bottom: clamp(22px, 2.8vw, 40px);
  color: #d9a08f;
  font-size: 14px;
  letter-spacing: 0.15em;
}

.about-hero h1 {
  color: #f7f2e8;
  font-size: clamp(37px, 3.9vw, 61px);
  line-height: 1.14;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.about-hero h1 em {
  color: #d7a090;
}

.about-role {
  margin-top: clamp(18px, 2vw, 26px);
  color: rgba(244, 239, 230, 0.78);
  font-size: clamp(13px, 0.95vw, 16px);
  letter-spacing: 0.12em;
}

.about-lead {
  max-width: 520px;
  margin-top: clamp(24px, 2.6vw, 36px);
  color: rgba(244, 239, 230, 0.78);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.75;
}

.about-hero-image {
  background: #070707;
  overflow: hidden;
  border: 0;
  outline: 0;
  box-shadow: none;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-image::after {
  display: none;
  content: none;
}

.about-hero-image img {
  display: block;
  width: min(78%, 620px);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  object-position: center;
  transform: none;
  transform-origin: center center;
  border: 0;
  outline: 0;
  box-shadow: none;
}

@media (max-width: 760px) {
  .about-hero {
    height: auto;
  }

  .about-hero-copy {
    min-height: 0;
    padding: 64px 22px 46px;
    background: #070707;
  }

  .about-hero h1 {
    white-space: normal;
    font-size: clamp(40px, 11vw, 58px);
  }

  .about-hero-image img {
    width: 86%;
    height: auto;
    max-height: none;
  }
}

/* 将荣誉与社会职务集中到大师简介页，采用紧凑的双栏档案排版。 */
.about-credentials {
  padding-top: clamp(60px, 7vw, 112px);
  padding-bottom: clamp(64px, 7vw, 112px);
  border-top: 1px solid var(--about-line);
}

.about-credentials-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(32px, 6vw, 100px);
  align-items: end;
  margin-bottom: 42px;
}

.about-credentials-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1.18;
}

.about-credentials-intro p {
  max-width: 620px;
  margin: 0;
  color: var(--about-soft);
  font-size: 16px;
  line-height: 1.8;
}

.about-credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
}

.about-credentials-card {
  border-top: 1px solid var(--about-line);
  padding-top: 22px;
}

.about-credentials-label {
  margin: 0 0 22px;
  color: var(--about-red);
  font-size: 16px;
  letter-spacing: 0.12em;
}

.about-credentials-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-credentials-card li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid var(--about-line);
  padding: 15px 0;
}

.about-credentials-card li span {
  color: var(--about-red);
  font-size: 13px;
}

.about-credentials-card li strong {
  color: var(--about-ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.about-credentials-card li small {
  grid-column: 2;
  color: var(--about-soft);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .about-credentials-intro,
  .about-credentials-grid {
    grid-template-columns: 1fr;
  }

  .about-credentials-intro {
    gap: 18px;
    margin-bottom: 30px;
  }

  .about-credentials-card li {
    grid-template-columns: 78px minmax(0, 1fr);
  }
}

:root {
  --about-paper: #f1ede4;
  --about-paper-deep: #e6dfd3;
  --about-ink: #191816;
  --about-soft: #69635b;
  --about-red: #963326;
  --about-dark: #181817;
  --about-line: rgba(25, 24, 22, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.about-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--about-paper);
  color: var(--about-ink);
}

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

.about-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-right: 5vw;
  padding-left: 5vw;
}

.about-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--about-line);
  background: rgba(241, 237, 228, 0.97);
}

.about-brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.about-brand span {
  color: var(--about-red);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.about-brand strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.about-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.about-header a,
.about-footer a {
  color: inherit;
  text-decoration: none;
}

.about-header nav a,
.about-home-link,
.about-footer a {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.about-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: clamp(560px, 47vw, 700px);
  min-height: 0;
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 76px) 5vw;
}

.about-eyebrow,
.about-kicker {
  margin: 0;
  color: var(--about-red);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.about-eyebrow {
  margin-bottom: clamp(34px, 4vw, 64px);
}

.about-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 4.8vw, 76px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.28;
  white-space: nowrap;
}

.about-hero h1 span,
.about-hero h1 em {
  display: inline;
}

.about-hero h1 em {
  color: var(--about-red);
  font-style: normal;
}

.about-role {
  margin: 30px 0 0;
  color: var(--about-soft);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.about-lead {
  max-width: 470px;
  margin: clamp(34px, 4vw, 60px) 0 0;
  color: var(--about-soft);
  font-family: var(--serif);
  font-size: clamp(18px, 1.3vw, 23px);
  line-height: 1.8;
}

.about-scroll-link {
  align-self: flex-start;
  margin-top: 48px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--about-ink);
  color: inherit;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.about-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #080808;
}

.about-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 19, 17, 0.08), transparent 28%);
  content: "";
  pointer-events: none;
}

.about-hero-image img {
  width: 80%;
  height: 80%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.about-hero-image figcaption,
.about-young-photo figcaption,
.about-carving-photo figcaption {
  color: var(--about-soft);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.about-hero-image figcaption {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
}

.about-facts article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 126px;
  padding: 26px 5vw;
  border-right: 1px solid var(--about-line);
}

.about-facts article:last-child {
  border-right: 0;
}

.about-facts strong {
  color: var(--about-red);
  font-family: var(--serif);
  font-size: clamp(31px, 2.5vw, 43px);
  font-weight: 400;
  line-height: 1;
}

.about-facts span {
  margin-top: 14px;
  color: var(--about-soft);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.about-life,
.about-language,
.about-contribution {
  padding-top: clamp(58px, 5.4vw, 84px);
  padding-bottom: clamp(62px, 5.8vw, 92px);
}

/* 压缩人物生平与艺术语言之间的交界留白，让页面阅读更紧凑。 */
.about-life {
  padding-bottom: clamp(24px, 2.2vw, 34px);
}

.about-language {
  padding-top: clamp(46px, 3.6vw, 58px);
}

.about-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(36px, 4.2vw, 58px);
}

.about-section-heading > p:first-child {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0;
}

.about-section-heading > p:first-child span {
  font-family: var(--serif);
  font-size: clamp(23px, 1.7vw, 29px);
  font-weight: 400;
  line-height: 1;
}

.about-section-heading > p:first-child span:first-child {
  color: var(--about-red);
}

.about-section-note {
  margin: 0;
  color: var(--about-soft);
  font-family: var(--serif);
  font-size: clamp(15px, 1.1vw, 18px);
  letter-spacing: 0.06em;
}

.about-life-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(42px, 5.5vw, 86px);
  align-items: stretch;
}

.about-young-photo {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.about-young-photo img {
  width: 100%;
  height: calc(100% - 32px);
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.03);
}

.about-young-photo figcaption,
.about-carving-photo figcaption {
  margin-top: 14px;
}

.about-life-copy h2,
.about-film-copy h2,
.about-contribution-lead h2 {
  margin: 24px 0 34px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.35;
}

.about-life-copy h2 {
  margin-top: 20px;
  margin-bottom: 26px;
  font-size: clamp(28px, 2.55vw, 40px);
  line-height: 1.32;
}

.about-life-copy > p:not(.about-kicker) {
  margin-bottom: 17px;
  line-height: 1.78;
}

.about-life-copy > p:not(.about-kicker),
.about-language-intro > p,
.about-film-copy > p:not(.about-kicker),
.about-contribution-lead > p {
  margin: 0 0 22px;
  color: var(--about-soft);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.88;
}


.about-workshop {
  position: relative;
  height: min(42vw, 620px);
  min-height: 520px;
  overflow: hidden;
  background: var(--about-dark);
}

.about-workshop::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 12, 0.83) 0%, rgba(13, 13, 12, 0.36) 47%, rgba(13, 13, 12, 0.08) 80%);
  content: "";
}

.about-workshop > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-workshop-copy {
  position: absolute;
  top: 50%;
  left: 5vw;
  z-index: 1;
  width: min(44vw, 720px);
  color: #f4efe6;
  transform: translateY(-50%);
}

.about-workshop-copy p {
  margin: 0 0 26px;
  color: #d6a18c;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.about-workshop-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.75vw, 44px);
  font-weight: 400;
  line-height: 1.45;
}

.about-language-intro {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 4vw, 62px);
  align-items: start;
  margin-bottom: clamp(22px, 2.4vw, 34px);
}

.about-language-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 2.9vw, 48px);
  font-weight: 400;
  line-height: 1.16;
  white-space: nowrap;
}

.about-language-intro > p {
  max-width: 720px;
  margin: 0;
}

.about-language-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(34px, 4vw, 62px);
  align-items: start;
}

.about-process-carousel {
  min-width: 0;
  align-self: start;
}

.about-process-stage figure {
  margin: 0;
}

.about-process-stage figure[hidden] {
  display: none;
}

.about-process-stage img {
  width: 100%;
  aspect-ratio: 1080 / 525;
  object-fit: cover;
  background: #242321;
}

.about-process-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.about-process-controls > span {
  color: var(--about-soft);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.about-process-controls > div {
  display: flex;
  gap: 8px;
}

.about-process-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--about-line);
  border-radius: 50%;
  background: transparent;
  color: var(--about-ink);
  cursor: pointer;
  font-size: 18px;
}

.about-process-controls button:hover,
.about-process-controls button:focus-visible {
  border-color: var(--about-ink);
  background: rgba(255, 255, 255, 0.35);
}

.about-method-list {
  display: grid;
  grid-template-rows: none;
  align-self: start;
  border-top: 1px solid var(--about-line);
}

.about-method-list article {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: baseline;
  min-height: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--about-line);
}

.about-method-list span {
  color: var(--about-red);
  font-family: var(--serif);
  font-size: clamp(22px, 1.65vw, 27px);
}

.about-method-list p {
  margin: 0;
  color: var(--about-soft);
  font-size: 15px;
  line-height: 1.5;
}

.about-carving-photo {
  margin: 0;
}

.about-carving-photo img {
  width: 100%;
  height: calc(100% - 30px);
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.about-film {
  padding-top: clamp(58px, 5.5vw, 86px);
  padding-bottom: clamp(62px, 5.8vw, 92px);
  background: var(--about-dark);
  color: var(--about-paper);
}

.about-section-heading-light > p:first-child span:first-child,
.about-film .about-kicker {
  color: #d6a18c;
}

.about-film-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1fr);
  gap: clamp(42px, 5.5vw, 84px);
  align-items: center;
}

.about-film-copy h2 {
  font-size: clamp(28px, 2.8vw, 44px);
}

.about-film-copy > p:not(.about-kicker) {
  color: #aaa49a;
}

.about-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050505;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.about-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #d8d0c2;
  color: var(--about-ink);
  cursor: pointer;
}

.about-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video-copy {
  position: absolute;
  top: 27%;
  right: 3.5%;
  display: flex;
  width: 32%;
  flex-direction: column;
  align-items: center;
  color: #201f1c;
  text-align: center;
}

.about-video-slogan {
  font-family: "HBQ Serif", var(--serif);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.48;
}

.about-video-slogan strong {
  font-size: 1.25em;
  font-weight: 500;
}

.about-video-hint {
  margin-top: 18px;
  color: #5f584f;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.about-video-play {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 24px;
  padding-left: 4px;
  place-items: center;
  border: 1px solid rgba(25, 24, 22, 0.62);
  border-radius: 50%;
  background: rgba(241, 237, 228, 0.72);
  font-size: 17px;
  transition: background 180ms ease, transform 180ms ease;
}

.about-video-poster:hover .about-video-play,
.about-video-poster:focus-visible .about-video-play {
  background: var(--about-paper);
  transform: scale(1.06);
}

.about-video-frame iframe[hidden],
.about-video-poster[hidden] {
  display: none;
}

.about-contribution-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: clamp(38px, 4.5vw, 62px);
}

.about-contribution-lead h2 {
  margin: 0;
  white-space: nowrap;
}

.about-contribution-lead > p {
  max-width: none;
  margin: 18px 0 0;
  white-space: nowrap;
}

.about-impact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.78fr);
  gap: clamp(34px, 4vw, 62px);
  align-items: stretch;
}

.about-impact-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(28px, 3vw, 48px);
  min-height: 480px;
  padding: clamp(38px, 4vw, 62px);
  overflow: hidden;
  background: #171715;
  color: var(--about-paper);
}

.about-impact-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.about-impact-copy > p:first-child,
.about-impact-aside article > p:first-child {
  margin: 0 0 26px;
  color: #d6a18c;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.about-impact-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 2.5vw, 42px);
  font-weight: 400;
  line-height: 1.45;
}

.about-impact-copy > p:last-child {
  max-width: 590px;
  margin: 30px 0 0;
  color: #aaa49a;
  font-size: 15px;
  line-height: 1.95;
}

.about-book-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  min-height: 360px;
  gap: 0;
}

.about-book-row img {
  width: 42%;
  max-height: 340px;
  border: 0;
  object-fit: contain;
  filter: saturate(0.92);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.about-book-row img:nth-child(1) {
  transform: translate(16%, -4px) rotate(-5deg);
}

.about-book-row img:nth-child(2) {
  z-index: 2;
  width: 45%;
  transform: translateY(-18px);
}

.about-book-row img:nth-child(3) {
  transform: translate(-16%, -2px) rotate(5deg);
}

.about-impact-aside {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.about-impact-aside article {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3vw, 48px) 0;
  border-top: 1px solid var(--about-line);
}

.about-impact-aside article:last-child {
  border-bottom: 1px solid var(--about-line);
}

.about-impact-aside article > p:first-child span {
  margin-right: 15px;
  color: var(--about-soft);
  font-family: var(--serif);
  letter-spacing: 0;
}

.about-impact-aside h3 {
  max-width: 470px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(23px, 1.75vw, 30px);
  font-weight: 400;
  line-height: 1.6;
}

.about-impact-aside article > p:last-child {
  max-width: 510px;
  margin: 22px 0 0;
  color: var(--about-soft);
  font-size: 15px;
  line-height: 1.85;
}

.about-quote {
  padding: clamp(62px, 6.5vw, 98px) 5vw clamp(70px, 7vw, 110px);
  background: var(--about-paper-deep);
  text-align: left;
}

.about-quote-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
  max-width: 1560px;
  margin: 0 auto clamp(46px, 5vw, 78px);
}

.about-quote-heading > p {
  margin: 8px 0 0;
  color: var(--about-red);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.about-quote-heading h2 {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 57px);
  font-weight: 400;
  line-height: 1.32;
}

.about-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.62fr);
  gap: clamp(48px, 6vw, 96px);
  max-width: 1560px;
  margin: 0 auto;
}

.about-quote blockquote {
  margin: 0;
}

.about-quote blockquote p {
  position: relative;
  margin: 0;
  padding: clamp(26px, 2.5vw, 38px) 0 clamp(28px, 2.7vw, 42px) 72px;
  border-top: 1px solid var(--about-line);
  font-family: var(--serif);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.95;
}

.about-quote blockquote p:last-child {
  border-bottom: 1px solid var(--about-line);
}

.about-quote blockquote p::before {
  position: absolute;
  top: clamp(30px, 2.8vw, 43px);
  left: 0;
  color: var(--about-red);
  content: attr(data-index);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.about-critic {
  align-self: start;
  padding: 34px 0 0;
  border-top: 1px solid var(--about-ink);
}

.about-critic > p:first-child {
  margin: 0 0 24px;
  color: var(--about-red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.about-critic h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 400;
}

.about-critic p {
  margin: 20px 0 0;
  color: var(--about-soft);
  font-size: 14px;
  line-height: 1.9;
}

.about-critic .about-critic-role {
  margin-top: 12px;
  color: var(--about-ink);
  font-size: 16px;
  line-height: 1.75;
}

.about-next {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(50px, 5.5vw, 78px) 5vw;
  background: var(--about-dark);
  color: var(--about-paper);
}

.about-next p {
  margin: 0;
  color: #aaa49a;
  font-size: 15px;
  letter-spacing: 0.14em;
}

.about-next a {
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(30px, 3.7vw, 58px);
  text-decoration: none;
}

.about-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 5vw;
  border-top: 1px solid rgba(241, 237, 228, 0.16);
  background: var(--about-dark);
  color: var(--about-paper);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.about-footer div {
  display: flex;
  gap: 28px;
}

@media (max-width: 1050px) {
  .about-header nav {
    display: none;
  }

  .about-header {
    grid-template-columns: 1fr auto;
  }

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

  .about-facts article {
    padding-right: 3vw;
    padding-left: 3vw;
  }

  .about-life-grid,
  .about-language-intro,
  .about-contribution-lead {
    gap: 6vw;
  }

  .about-young-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .about-film-grid {
    grid-template-columns: 1fr;
  }

  .about-impact-layout {
    grid-template-columns: 1fr;
  }

  .about-impact-aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 38px;
  }

  .about-impact-aside article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .about-shell {
    padding-right: 22px;
    padding-left: 22px;
  }

  .about-header {
    min-height: 70px;
    padding: 0 22px;
  }

  .about-brand span,
  .about-home-link span {
    display: none;
  }

  .about-brand strong {
    font-size: 17px;
  }

  .about-home-link {
    font-size: 13px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .about-hero-copy {
    min-height: 480px;
    padding: 68px 22px 52px;
  }

  .about-hero h1 {
    font-size: clamp(46px, 13vw, 62px);
    white-space: normal;
  }

  .about-role {
    font-size: 15px;
    line-height: 1.55;
  }

  .about-lead {
    margin-top: 30px;
    font-size: 19px;
  }

  .about-scroll-link {
    margin-top: 32px;
  }

  .about-hero-image {
    min-height: 82vw;
  }

  .about-hero-image img {
    width: 100%;
    height: 100%;
  }

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

  .about-facts article {
    min-height: 132px;
    padding: 24px 22px;
    border-bottom: 1px solid var(--about-line);
  }

  .about-facts article:nth-child(2) {
    border-right: 0;
  }

  .about-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }

  .about-section-heading > p:first-child span {
    font-size: 22px;
  }

  .about-life-grid,
  .about-language-intro,
  .about-language-grid,
  .about-contribution-lead,
  .about-impact-layout,
  .about-impact-feature {
    grid-template-columns: 1fr;
  }

  .about-life-grid,
  .about-language-grid {
    gap: 48px;
  }

  .about-life-copy h2,
  .about-film-copy h2,
  .about-contribution-lead h2 {
    font-size: 30px;
  }

  .about-workshop,
  .about-workshop > img {
    height: 82vw;
    min-height: 0;
  }

  .about-workshop > img {
    object-position: 62% center;
  }

  .about-workshop::after {
    background: linear-gradient(180deg, rgba(13, 13, 12, 0.18) 0%, rgba(13, 13, 12, 0.78) 78%, rgba(13, 13, 12, 0.94) 100%);
  }

  .about-workshop-copy {
    top: auto;
    right: 22px;
    bottom: 46px;
    left: 22px;
    width: auto;
    transform: none;
  }

  .about-workshop-copy h2 {
    font-size: 30px;
  }

  .about-language-intro {
    align-items: start;
    gap: 34px;
  }

  .about-language-intro h2 {
    font-size: 40px;
    white-space: normal;
  }

  .about-method-list article {
    grid-template-columns: 112px 1fr;
  }

  .about-carving-photo img {
    min-height: 76vw;
  }

  .about-video-copy {
    top: 15%;
    right: 3%;
    width: 43%;
  }

  .about-video-slogan {
    font-size: 18px;
    line-height: 1.45;
  }

  .about-video-hint {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .about-video-play {
    width: 46px;
    height: 46px;
    margin-top: 14px;
    font-size: 14px;
  }

  .about-contribution-lead {
    align-items: flex-start;
    gap: 0;
  }

  .about-contribution-lead h2,
  .about-contribution-lead > p {
    white-space: normal;
  }

  .about-impact-feature {
    min-height: 0;
    padding: 34px 26px 26px;
  }

  .about-impact-copy h3 {
    font-size: 30px;
  }

  .about-impact-copy > p:last-child {
    margin-top: 22px;
    font-size: 14px;
  }

  .about-book-row {
    min-height: 250px;
    max-width: 560px;
  }

  .about-book-row img {
    max-height: 230px;
  }

  .about-impact-aside {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }

  .about-impact-aside article,
  .about-impact-aside article:last-child {
    padding: 30px 0 34px;
    border-bottom: 1px solid var(--about-line);
  }

  .about-quote {
    padding-right: 24px;
    padding-left: 24px;
  }

  .about-quote-heading,
  .about-quote-layout {
    grid-template-columns: 1fr;
  }

  .about-quote-heading {
    gap: 24px;
    margin-bottom: 38px;
  }

  .about-quote-heading h2 {
    font-size: 33px;
  }

  .about-quote-layout {
    gap: 48px;
  }

  .about-quote blockquote p {
    padding-left: 46px;
    font-size: 17px;
    line-height: 1.9;
  }

  .about-critic h3 {
    font-size: 36px;
  }

  .about-next {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 22px;
    padding-left: 22px;
  }

  .about-next a {
    font-size: 31px;
    line-height: 1.5;
  }

  .about-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 28px 22px;
  }
}

/* 2026-07-18：最终覆盖——统一非首页首屏的文字格式 */
.about-hero {
  min-height: 0;
  height: clamp(500px, 42vw, 620px);
  overflow: hidden;
  background: #070707;
}

.about-hero-copy {
  background: linear-gradient(90deg, #070707 0%, #080808 78%, rgba(8, 8, 8, 0.72) 100%);
  color: #f4efe6;
  padding: clamp(36px, 4.6vw, 64px) 5vw;
}

.about-eyebrow {
  margin-bottom: clamp(22px, 2.8vw, 40px);
  color: #d9a08f;
  font-size: 14px;
  letter-spacing: 0.15em;
}

.about-hero h1 {
  color: #f7f2e8;
  font-size: clamp(37px, 3.9vw, 61px);
  line-height: 1.14;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.about-hero h1 em {
  color: #d7a090;
}

.about-role {
  margin-top: clamp(18px, 2vw, 26px);
  color: rgba(244, 239, 230, 0.78);
  font-size: clamp(13px, 0.95vw, 16px);
  letter-spacing: 0.12em;
}

.about-lead {
  max-width: 520px;
  margin-top: clamp(24px, 2.6vw, 36px);
  color: rgba(244, 239, 230, 0.78);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.75;
}

.about-hero-image {
  background: #070707;
  overflow: hidden;
  border: 0;
  outline: 0;
  box-shadow: none;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-image::after {
  display: none;
  content: none;
}

.about-hero-image img {
  display: block;
  width: min(78%, 620px);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  object-position: center;
  transform: none;
  transform-origin: center center;
  border: 0;
  outline: 0;
  box-shadow: none;
}

@media (max-width: 760px) {
  .about-hero {
    height: auto;
  }

  .about-hero-copy {
    min-height: 0;
    padding: 64px 22px 46px;
    background: #070707;
  }

  .about-hero h1 {
    white-space: normal;
    font-size: clamp(40px, 11vw, 58px);
  }

  .about-hero-image img {
    width: 86%;
    height: auto;
    max-height: none;
  }
}
