:root {
  --ink: #11110f;
  --muted: #69645c;
  --paper: #f4f4ef;
  --panel: #ffffff;
  --line: rgba(17, 17, 15, 0.14);
  --accent: #b5482f;
  --gold: #b49a63;
  --green: #2f594e;
  --blue: #243b53;
  --shadow: 0 24px 80px rgba(16, 14, 12, 0.18);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header[data-elevated="true"],
.site-header.open {
  color: var(--ink);
  background: rgba(244, 244, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  font-size: 12px;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(10px, 1.35vw, 20px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: stretch;
  overflow: hidden;
  padding-top: 82px;
  background: #050505;
  color: #fff;
}

.hero::after {
  content: none;
}

.hero-media {
  position: relative;
  display: grid;
  min-height: calc(100vh - 82px);
  place-items: center;
  padding: clamp(18px, 3vw, 46px);
  background: #050505;
}

.hero-media img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.hero-media.has-work-number,
.pingyao-hero-media.has-work-number,
.testimony-hero-media.has-work-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
}

.hero-media.has-work-number .work-number-badge,
.pingyao-hero-media.has-work-number .work-number-badge,
.testimony-hero-media.has-work-number .work-number-badge {
  align-self: flex-start;
  margin-bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: auto;
  max-width: 720px;
  margin: 0;
  padding: clamp(40px, 6vw, 92px) clamp(22px, 5vw, 78px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.en,
.en-line {
  display: block;
  margin-top: 8px;
  color: inherit;
  font-size: 0.72em;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0.72;
}

p .en,
li .en,
figcaption .en,
small .en {
  font-size: 0.92em;
}

.site-nav small,
.button small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  opacity: 0.7;
  text-transform: uppercase;
}

.button {
  flex-direction: column;
  gap: 1px;
}

.hero .eyebrow {
  color: #b88368;
}

.hero-content h1 {
  color: #d8c6a3;
}

.hero-content h1 span {
  color: #b9a98c;
  opacity: 0.9;
}

.hero-award {
  margin: 22px 0 18px;
  padding: 16px 18px;
  border-left: 4px solid #d8b15d;
  background: rgba(216, 177, 93, 0.1);
  color: #f7ead0;
}

.hero-award span,
.hero-award small {
  display: block;
}

.hero-award span {
  margin-bottom: 5px;
  color: #d8b15d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-award strong {
  display: block;
  color: #fff7e5;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.18;
}

.hero-award small {
  margin-top: 8px;
  color: rgba(255, 248, 236, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.english-global-home .zh-assist {
  display: block;
  margin-top: 7px;
  color: inherit;
  font-size: 0.58em;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.58;
}

.english-global-home p.zh-assist,
.english-global-home .pingyao-caption .zh-assist {
  font-size: 0.82rem;
}

.home-audio-status {
  display: inline-flex;
  position: absolute;
  top: 12px;
  left: clamp(10px, 1.4vw, 22px);
  z-index: 6;
  max-width: min(240px, calc(100% - 28px));
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 5px 8px;
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.46);
  color: rgba(255, 248, 236, 0.76);
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  box-shadow: none;
}

.home-audio-status::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #d03a2f;
  box-shadow: 0 0 0 3px rgba(208, 58, 47, 0.16);
  content: "";
}

.home-audio-status:hover,
.home-audio-status:focus-visible {
  color: #fff7e5;
  border-color: rgba(255, 248, 236, 0.42);
  background: rgba(15, 14, 12, 0.62);
}

.home-audio-blocked .home-audio-status {
  color: #fff7e5;
  border-color: rgba(216, 177, 93, 0.58);
  background: rgba(15, 14, 12, 0.58);
}

.english-global-home .hero-content h1 .zh-assist {
  font-size: 0.34em;
}

.english-global-home .hero-award .zh-assist {
  font-size: 13px;
}

.english-global-home .global-gateway,
.english-global-home .pingyao-gallery,
.english-global-home .front-proof,
.english-global-home .works-first,
.english-global-home .official-proof,
.english-global-home .contact,
.english-global-home #home-greens,
.english-global-home #home-taxes {
  display: none;
}

.english-global-home .ambient-sound-control {
  display: none;
}

.english-global-home .site-header {
  display: none;
}

.english-global-home .hero {
  grid-template-columns: minmax(0, 2.05fr) minmax(330px, 0.95fr);
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 0;
  background: #050505;
}

.english-global-home .hero-media {
  min-height: 100vh;
  min-height: 100svh;
  align-content: start;
  padding: clamp(6px, 1.2vw, 18px) clamp(8px, 1.8vw, 28px) clamp(8px, 1.4vw, 20px);
}

.english-global-home .hero-media img {
  width: 100%;
  height: calc(100vh - 26px);
  height: calc(100svh - 26px);
  max-height: none;
  object-fit: contain;
  object-position: center top;
}

.english-global-home .hero-content {
  max-width: 520px;
  padding: clamp(28px, 4vw, 66px) clamp(20px, 3.3vw, 48px);
}

.english-global-home .hero-content h1 {
  font-size: clamp(36px, 4.6vw, 72px);
}

.english-global-home .hero-lede {
  max-width: 520px;
  color: rgba(255, 248, 236, 0.84);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.58;
}

.english-global-home .hero-award {
  margin-top: 24px;
  background: transparent;
}

.english-global-home .hero-note {
  display: none;
}

.english-global-home .hero-actions .button {
  border-radius: 0;
}

.english-global-home .hero[data-active-story="wangsha"] .hero-award {
  border-left-color: #b88368;
}

.english-global-home .hero[data-active-story="ticket-note"] .hero-award {
  border-left-color: #d8b15d;
}

.home-story-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-story-card.is-speaking {
  border-color: rgba(216, 177, 93, 0.7);
  box-shadow: 0 22px 70px rgba(57, 36, 16, 0.18);
  transform: translateY(-2px);
}

#home-school.pingyao-work-card {
  grid-template-columns: minmax(390px, 1.15fr) minmax(0, 0.85fr);
}

.home-wangsha-image-stack {
  display: grid;
  gap: 12px;
  align-self: start;
}

.home-wangsha-image-stack .pingyao-work-image {
  margin: 0;
}

#home-school .home-wangsha-image-stack .pingyao-work-image img {
  max-height: 70vh;
}

#home-school .home-wangsha-room-photo img {
  max-height: 48vh;
}

.hero-lede {
  color: rgba(218, 206, 184, 0.76);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 500;
}

h1 span,
h2 span {
  display: block;
  color: inherit;
  font-size: 0.42em;
  opacity: 0.82;
}

h2 {
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 500;
}

h3 {
  font-size: 22px;
}

.hero-lede {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(17px, 1.7vw, 21px);
}

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

.home-paypal-form {
  display: flex;
  margin: 0;
}

.home-paypal-button {
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.home-paywall-callout {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(216, 177, 93, 0.38);
  background: #17130f;
  color: #fff7e5;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.home-paywall-callout.is-speaking {
  border-color: rgba(216, 177, 93, 0.74);
  box-shadow: 0 22px 70px rgba(57, 36, 16, 0.24);
}

.home-paywall-callout h2 {
  max-width: 760px;
  margin-bottom: 16px;
}

.home-paywall-callout p {
  max-width: 760px;
  color: rgba(255, 248, 236, 0.78);
}

.home-author-ticket-note {
  max-width: 860px;
  margin: 4px 0 22px;
  padding-left: 18px;
  border-left: 2px solid rgba(216, 177, 93, 0.66);
}

.home-author-ticket-note p {
  margin: 0 0 13px;
  color: rgba(255, 248, 236, 0.84);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.58;
}

.home-author-ticket-note p:first-child {
  color: #fff7e5;
  font-weight: 700;
}

.home-author-ticket-note .zh-assist {
  margin-top: 16px;
  color: rgba(255, 248, 236, 0.66);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 0.9rem;
  line-height: 1.72;
}

.home-paywall-callout .home-paypal-form {
  margin-top: 20px;
}

.home-voluntary-note {
  margin-top: 14px;
  font-size: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.international-note {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 18px 20px;
  background: rgba(47, 89, 78, 0.09);
  border: 1px solid rgba(47, 89, 78, 0.18);
  color: var(--green);
  font-weight: 800;
}

.evidence-chain {
  background: #fff;
}

.official-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.official-proof-alt {
  background: #f8f4ec;
}

.official-proof-media {
  max-width: 620px;
  justify-self: end;
  padding: 18px;
  background: #f4efe6;
  border: 1px solid rgba(181, 72, 47, 0.24);
  box-shadow: 0 28px 90px rgba(16, 14, 12, 0.18);
}

.official-proof-media img {
  width: 100%;
  max-height: 880px;
  object-fit: contain;
  background: #efe8dc;
}

.proof-pair-media {
  max-width: 760px;
}

.proof-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-image-pair figure {
  display: grid;
  gap: 8px;
  margin: 0;
}

.proof-image-pair figcaption {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.proof-linked-set .proof-pair-media {
  align-self: start;
}

.proof-transcript-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.proof-transcript-pair article {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.proof-transcript-pair h3,
.proof-transcript-pair h4 {
  margin: 0 0 10px;
}

.proof-transcript-pair h4 {
  font-size: 15px;
}

.proof-transcript-pair p {
  margin: 0 0 12px;
}

.proof-transcript-pair blockquote {
  margin: 10px 0;
  padding: 12px 14px;
  background: var(--paper);
  border-left: 4px solid var(--accent);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.7;
}

.proof-transcript-note {
  color: var(--muted);
  font-size: 13px;
}

.proof-translation {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.proof-translation p {
  color: var(--muted);
}

@media (max-width: 760px) {
  .proof-image-pair,
  .proof-transcript-pair {
    grid-template-columns: 1fr;
  }
}

.proof-lead-card {
  display: grid;
  min-height: 320px;
  place-content: center;
  gap: 10px;
  padding: 32px;
  background: #171714;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-lead-card strong,
.proof-lead-card span {
  display: block;
}

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

.proof-lead-card span {
  color: rgba(255, 255, 255, 0.72);
}

.official-proof-copy {
  max-width: 680px;
}

.official-proof-copy h2 {
  max-width: 660px;
}

.official-proof-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.official-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.official-proof-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: #7d2e1f;
  background: rgba(181, 72, 47, 0.08);
  border: 1px solid rgba(181, 72, 47, 0.22);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.translation-block {
  padding: 24px;
  background: #f6f1e8;
  border: 1px solid var(--line);
}

.translation-block h3 {
  margin-bottom: 18px;
}

.translation-block p {
  color: var(--muted);
  font-size: 14px;
}

.cultural-diplomacy {
  background: #f6f1e8;
}

.proof-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.proof-grid article {
  min-height: 300px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.proof-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  background: #f4efe6;
  border: 1px solid var(--line);
}

.proof-grid span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  color: var(--green);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-grid h3 {
  margin-top: 20px;
}

.proof-grid p {
  color: var(--muted);
}

.proof-source {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.press-index {
  background: #fff;
}

.press-index-table {
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--paper);
}

.press-index-table table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

.press-index-table th,
.press-index-table td {
  width: 20%;
  padding: 18px;
  vertical-align: top;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.press-index-table th {
  background: rgba(47, 89, 78, 0.1);
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.press-index-table td {
  color: var(--muted);
  font-size: 14px;
}

.press-index-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.press-proof-cards {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.press-proof-cards article {
  min-height: 250px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.press-proof-cards h3 {
  margin-top: 18px;
}

.press-proof-cards p {
  color: var(--muted);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.button-secondary {
  background: transparent;
}

.hero-note {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr) minmax(220px, 0.35fr);
  gap: 14px;
  align-items: center;
  max-width: none;
  padding: 18px clamp(18px, 5vw, 70px);
  border-top: 1px solid rgba(196, 179, 149, 0.42);
  border-left: 0;
  background: #e6ded0;
  color: #1f2428;
}

.hero-note strong {
  color: #1f2428;
  font-size: 18px;
}

.hero-note span {
  font-size: 14px;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.hero-proof-strip img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  background: #f7f3ec;
  border: 1px solid rgba(95, 82, 61, 0.28);
}

.section-pad {
  padding: clamp(72px, 9vw, 130px) clamp(18px, 5vw, 70px);
}

.section-heading {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  margin: 0 auto 46px;
}

.section-heading.wide {
  display: block;
}

.section-heading.wide h2 {
  max-width: 980px;
}

.section-heading > p,
.section-heading div + p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.thesis {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: end;
  margin: 0 auto;
}

.thesis.section-pad {
  padding-bottom: 64px;
}

.front-proof,
.evidence-priority {
  background: #fff;
}

.front-proof-grid,
.priority-proof-grid {
  display: grid;
  max-width: 1320px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px auto 0;
}

.front-proof-grid figure,
.priority-proof-grid figure {
  margin: 0;
  background: #f7f3ec;
  border: 1px solid var(--line);
  box-shadow: 0 16px 54px rgba(16, 14, 12, 0.09);
}

.front-proof-grid img,
.priority-proof-grid img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  background: #ece6da;
}

.front-proof-primary,
.priority-proof-work {
  grid-column: span 2;
}

.front-proof-primary img,
.priority-proof-work img {
  height: 560px;
  background: #11110f;
}

.front-proof-grid figcaption,
.priority-proof-grid figcaption {
  display: grid;
  gap: 5px;
  padding: 14px 16px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.priority-proof-grid figcaption span {
  color: var(--muted);
  font-weight: 500;
}

.poverty-evidence-suite,
.poverty-cover-hero {
  display: grid;
  max-width: 1320px;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin: 44px auto 0;
}

.poverty-cover-hero {
  margin-top: 0;
  background: #151412;
  color: #fff;
}

.poverty-cover-hero figure,
.poverty-evidence-suite figure {
  margin: 0;
}

.poverty-cover-hero img,
.poverty-evidence-suite img {
  width: 100%;
  max-height: 920px;
  object-fit: contain;
  background: #070706;
  box-shadow: 0 28px 90px rgba(16, 14, 12, 0.28);
}

.poverty-cover-hero figcaption,
.poverty-evidence-suite figcaption {
  display: grid;
  gap: 8px;
  padding: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.poverty-evidence-suite figcaption {
  color: var(--muted);
}

.poverty-cover-copy {
  align-self: center;
  max-width: 720px;
}

.poverty-cover-copy .eyebrow {
  color: #e8b396;
}

.poverty-cover-copy h1 {
  max-width: 720px;
}

.poverty-cover-copy > p,
.poverty-cover-copy .topic-tags .en {
  color: rgba(255, 255, 255, 0.72);
}

.poverty-cover-evidence,
.poverty-cover-text {
  background: #f7f3ec;
}

.poverty-proof-grid,
.cover-transcript-grid {
  display: grid;
  max-width: 1320px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px auto 0;
}

.poverty-proof-grid article,
.cover-transcript-grid article {
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(16, 14, 12, 0.07);
}

.poverty-proof-grid article > span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
}

.poverty-proof-grid p,
.cover-transcript-grid p,
.poverty-evidence-suite p {
  color: var(--muted);
}

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

.cover-transcript-grid blockquote {
  margin: 0 0 20px;
  color: #8f3a29;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
}

.poverty-cover-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: #ede7dc;
  border: 1px solid var(--line);
}

.readable-proof-grid {
  display: grid;
  max-width: 1320px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 34px auto 0;
}

.readable-proof-item {
  margin: 0;
  background: #f7f3ec;
  border: 1px solid var(--line);
  box-shadow: 0 18px 58px rgba(16, 14, 12, 0.1);
}

.readable-proof-item img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
  max-height: 760px;
  object-fit: contain;
  background: #ece6da;
}

.readable-proof-work {
  grid-column: 1 / -1;
}

.readable-proof-work img {
  max-height: 820px;
  background: #11110f;
}

.compact-proof img {
  min-height: 320px;
  max-height: 520px;
}

.readable-proof-item figcaption {
  display: grid;
  gap: 7px;
  padding: 16px 18px 18px;
  color: var(--ink);
  font-size: 15px;
}

.readable-proof-item figcaption strong {
  font-size: 16px;
}

.readable-proof-item figcaption span {
  color: var(--muted);
}

.readable-proof-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1320px;
  margin: 22px auto 0;
}

.newspaper-readout {
  max-width: 1320px;
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 42px);
  background: #f8f3ea;
  border: 1px solid var(--line);
}

.newspaper-readout h3 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.14;
}

.newspaper-readout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.newspaper-readout-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.newspaper-readout-grid article > span {
  display: block;
  margin-bottom: 12px;
  color: #8b5137;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newspaper-readout-grid h4 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.25;
}

.newspaper-readout-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.newspaper-readout-grid p + p {
  margin-top: 14px;
}

.thesis p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.visitor-paths {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.path-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.path-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.path-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.path-grid h3 {
  margin-top: 22px;
}

.path-grid p {
  color: var(--muted);
}

.text-link {
  margin-top: auto;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.text-link::after {
  content: " →";
}

.action-strip,
.evidence-brief,
.email-template {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.action-grid,
.brief-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.action-grid a,
.brief-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.action-grid a:hover {
  border-color: var(--accent);
}

.action-grid strong,
.brief-grid strong {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.18;
}

.action-grid span,
.brief-grid p {
  color: var(--muted);
}

.brief-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.template-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.template-box p {
  margin: 0 0 10px;
  color: var(--ink);
}

.today-upgrade {
  background: #eef3ef;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.today-upgrade-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.today-upgrade-grid a,
.today-upgrade-grid article {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.today-upgrade-grid a:hover,
.today-upgrade-grid a:focus-visible {
  border-color: var(--accent);
}

.today-upgrade-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.today-upgrade-grid strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.12;
}

.today-upgrade-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.works-first {
  background: #11110f;
  color: #fff;
}

.works-first .eyebrow {
  color: #e8b396;
}

.works-first .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.work-grid.compact {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.work-card {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.work-card:hover,
.work-card:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(231, 191, 128, 0.7);
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: contain;
  background: #050505;
  border-radius: 6px;
}

.work-card strong {
  display: grid;
  gap: 4px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.22;
}

.work-card > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.work-card .en {
  display: block;
}

.work-card .work-card-cta {
  color: #f2d394;
  font-size: 14px;
  font-weight: 900;
}

.work-card-cta::after {
  content: " →";
}

.works-first-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.works-first-grid figure {
  min-height: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.works-first-grid figure.signature {
  grid-column: span 2;
  grid-row: span 2;
}

.works-first-grid img {
  width: 100%;
  height: 270px;
  display: block;
  object-fit: contain;
  background: #050505;
}

.works-first-grid figure.signature img {
  height: 620px;
}

.works-first-grid figcaption {
  display: grid;
  gap: 8px;
  padding: 16px 16px 18px;
}

.works-first-grid strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.works-first-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.asia-statement {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.asia-statement > div:last-child {
  max-width: 980px;
}

.asia-statement .eyebrow {
  color: var(--accent);
}

.asia-statement h2 {
  font-size: clamp(28px, 3.8vw, 48px);
}

.asia-statement p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.statement-mark {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.92;
  opacity: 0.28;
}

.metrics {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 auto;
  padding-top: 0;
}

.metrics div {
  min-height: 150px;
  padding: 28px;
  background: var(--ink);
  color: #fff;
}

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

.metrics strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.metrics span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.impact {
  background: #e2ebe6;
}

.impact-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.impact-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--paper);
}

.impact-grid span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.impact-grid h3 {
  margin-top: 28px;
}

.impact-grid p {
  color: var(--muted);
}

.topic-index {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topic-index-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.topic-index-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.topic-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 8px;
}

.topic-strip img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #11110f;
}

.topic-strip img:first-child {
  height: 190px;
  grid-row: span 2;
}

.topic-index-grid h3 {
  margin-top: 4px;
}

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

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.topic-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(181, 72, 47, 0.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.planet {
  background: #121210;
  color: #fff;
}

.feature-layout {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  margin: 0 auto;
}

.feature-copy .eyebrow {
  color: #e8b396;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.fact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.fact-list li {
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.art-summary {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid #e8b396;
}

.art-evaluation {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  background: #fff;
}

.art-evaluation-media {
  width: min(100%, 640px);
  margin: 0;
  justify-self: end;
  background: #11110f;
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(16, 14, 12, 0.18);
}

.art-evaluation-media img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  background: #050505;
}

.art-evaluation-media figcaption {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.art-evaluation-copy {
  max-width: 760px;
}

.art-evaluation-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.art-evaluation-copy .en {
  color: var(--green);
}

.feature-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-gallery img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #11110f;
}

.feature-gallery .large {
  grid-column: span 2;
  height: 430px;
}

.official-entry {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.official-entry-media {
  max-width: 500px;
  justify-self: end;
  padding: 14px;
  background: #f4efe6;
  border: 1px solid rgba(181, 72, 47, 0.24);
  box-shadow: 0 20px 64px rgba(16, 14, 12, 0.16);
}

.official-entry-media img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.official-entry-media-stack {
  display: grid;
  gap: 12px;
}

.official-entry-media-stack img {
  max-height: 360px;
  background: #efe8dc;
}

.official-entry-copy {
  max-width: 680px;
}

.official-entry-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.commercial-entry {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.commercial-entry-media {
  width: min(100%, 620px);
  margin: 0;
  justify-self: end;
  background: #0b0b0a;
  border: 1px solid rgba(17, 17, 15, 0.22);
  box-shadow: 0 24px 72px rgba(16, 14, 12, 0.16);
}

.commercial-entry-media img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  background: #050505;
}

.commercial-entry-media figcaption {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.commercial-entry-copy {
  max-width: 760px;
}

.commercial-entry-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.product-hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding-top: 128px;
  background: #121210;
  color: #fff;
}

.product-hero-copy {
  min-width: 0;
  max-width: 820px;
}

.product-hero-copy .eyebrow {
  color: #e8b396;
}

.product-hero-copy h1 {
  min-width: 0;
  max-width: 820px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-hero-copy h1 span {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(22px, 3vw, 38px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.product-hero-media {
  margin: 0;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.34);
}

.product-hero-media img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: #050505;
}

.product-hero-media figcaption {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.product-status {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  background: #e3ece7;
}

.product-status > div:first-child {
  max-width: 520px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.status-grid article {
  min-height: 260px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(47, 89, 78, 0.22);
}

.status-grid span,
.product-map-grid article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-grid h3,
.product-map-grid h3 {
  margin-top: 16px;
}

.status-grid p,
.product-map-grid p {
  color: var(--muted);
}

.product-map {
  background: #fff;
}

.product-map-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.product-map-grid article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 460px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.product-map-grid figure {
  margin: 0 0 18px;
  background: #11110f;
}

.product-map-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #11110f;
}

.preview-wall {
  background: #121210;
  color: #fff;
}

.preview-wall .eyebrow {
  color: #e8b396;
}

.preview-wall .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.preview-wall-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.preview-wall-grid figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.preview-wall-grid .calendar-preview {
  grid-column: span 2;
}

.preview-wall-grid img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #050505;
}

.preview-wall-grid .calendar-preview img {
  height: 430px;
}

.preview-wall-grid figcaption {
  padding: 14px 16px;
}

.preview-wall-grid figcaption strong,
.preview-wall-grid figcaption span {
  display: block;
}

.preview-wall-grid figcaption strong {
  color: #fff;
  font-size: 15px;
}

.preview-wall-grid figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.calendar-archive {
  background: #f1f4ef;
}

.calendar-archive-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0 auto;
}

.calendar-archive-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(17, 17, 15, 0.12);
}

.calendar-archive-grid img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  background: #f8f8f6;
}

.calendar-archive-grid figcaption {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.rights-system {
  background: #f7f1e7;
}

.rights-table {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.18);
  background: #fff;
}

.rights-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(160px, 0.65fr) minmax(220px, 1fr) minmax(260px, 1.35fr);
}

.rights-table [role="row"] + [role="row"] {
  border-top: 1px solid rgba(17, 17, 15, 0.12);
}

.rights-table strong,
.rights-table span {
  padding: 16px 18px;
}

.rights-table strong {
  background: #2f594e;
  color: #fff;
  font-size: 14px;
}

.rights-table span {
  color: var(--muted);
}

.rights-table span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.security-note {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 68px);
  background: #fff;
}

.security-note > div {
  max-width: 560px;
}

.security-note ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-note li {
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.commercial-hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  padding-top: 130px;
  background: #11110f;
  color: #fff;
}

.commercial-hero-media {
  width: min(100%, 660px);
  margin: 0;
  justify-self: end;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.commercial-hero-media img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050505;
}

.commercial-hero-media figcaption {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.commercial-hero-copy {
  max-width: 780px;
}

.commercial-hero-copy .eyebrow {
  color: #e8b396;
}

.commercial-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.commercial-hero {
  background: #f6f1e8;
  color: #312a22;
}

.commercial-hero .commercial-hero-media {
  background: #11110f;
  border-color: rgba(17, 17, 15, 0.22);
  box-shadow: 0 18px 60px rgba(20, 18, 15, 0.16);
}

.commercial-hero .commercial-hero-media figcaption {
  background: #fffaf1;
  color: #5e5a52;
}

.commercial-hero .commercial-hero-copy .eyebrow {
  color: #8b5137;
}

.commercial-hero .commercial-hero-copy h1,
.commercial-hero .commercial-hero-copy h1 .en {
  color: #332b23;
}

.commercial-hero .commercial-hero-copy p:not(.eyebrow) {
  color: #4f5a60;
}

.commercial-hero .commercial-hero-points span {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(116, 93, 66, 0.22);
  color: #4f4437;
}

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

.commercial-hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 26px;
}

.commercial-hero-points span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.commercial-evaluation {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
  background: #fff;
}

.commercial-work-image {
  position: sticky;
  top: 110px;
  width: min(100%, 650px);
  margin: 0;
  justify-self: end;
  background: #050505;
  border: 1px solid var(--line);
  box-shadow: 0 24px 76px rgba(16, 14, 12, 0.16);
}

.commercial-work-image img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  background: #050505;
}

.commercial-work-image figcaption {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.commercial-evaluation-copy {
  max-width: 820px;
}

.commercial-evaluation-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.commercial-evaluation-copy .en {
  color: var(--green);
}

.commercial-proof-strip {
  background: var(--paper);
}

.commercial-proof-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.commercial-proof-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.commercial-proof-grid img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #f4efe6;
}

.commercial-proof-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.purchase-menu {
  background: #f4f4ef;
}

.purchase-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.purchase-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.purchase-grid strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.16;
}

.purchase-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.purchase-grid em {
  margin-top: auto;
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.5;
}

.productized-offers {
  background: #f7f4ee;
}

.offer-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.offer-grid article,
.package-link-panel,
.inquiry-field-grid article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.offer-grid article > span,
.inquiry-field-grid strong {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-grid h3,
.package-link-panel h3 {
  margin: 10px 0;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
}

.offer-grid p,
.offer-grid li,
.package-link-panel p,
.package-link-grid span,
.inquiry-field-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.offer-grid ul {
  margin: 14px 0 16px;
  padding-left: 1.1rem;
}

.package-link-panel {
  max-width: 1180px;
  margin: 22px auto 0;
}

.package-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.package-link-grid a {
  display: grid;
  min-height: 116px;
  gap: 7px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  background: #fbfaf6;
  border: 1px solid var(--line);
}

.package-link-grid strong {
  font-size: 1rem;
}

.inquiry-workflow {
  background: #f2f5f4;
}

.inquiry-field-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto;
}

.inquiry-field-grid article {
  display: grid;
  gap: 8px;
}

.rights-market {
  background: #e2ebe6;
}

.rights-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.rights-grid article {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 89, 78, 0.2);
}

.rights-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rights-grid h3 {
  margin-top: 22px;
}

.rights-grid p {
  color: var(--muted);
}

.edition-market {
  background: #fff;
}

.deal-process {
  background: var(--paper);
}

.deal-process-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.deal-process-grid article {
  min-height: 240px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.deal-process-grid span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.deal-process-grid h3 {
  margin-top: 22px;
}

.deal-process-grid p {
  color: var(--muted);
}

.edition-table-wrap {
  max-width: 1180px;
  overflow-x: auto;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #fff;
}

.edition-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

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

.edition-table th {
  background: #11110f;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.edition-table tr:last-child td {
  border-bottom: 0;
}

.security-commerce {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.security-commerce > div:first-child {
  max-width: 520px;
  justify-self: end;
}

.security-commerce .eyebrow {
  color: #e8b396;
}

.security-list {
  display: grid;
  max-width: 780px;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.security-list li {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #fff;
}

.inquiry > div:first-child {
  max-width: 520px;
  justify-self: end;
}

.inquiry-panel {
  max-width: 820px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.inquiry-panel p {
  margin-top: 0;
  color: var(--muted);
  font-size: 17px;
}

.farmers {
  background: #fff;
}

.steam-home {
  background: #f6f1e8;
}

.photo-first {
  background: #f6f1e8;
}

.farmer-work-wall {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.farmer-work-wall figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(16, 14, 12, 0.08);
}

.farmer-work-wall img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  background: #11110f;
}

.farmer-work-wall figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.farmer-work-feature {
  grid-column: span 2;
}

.farmer-work-panorama {
  grid-column: span 4;
}

.farmer-work-panorama img {
  height: 430px;
  background: #050505;
}

.panorama-work {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  background: #121210;
  color: #fff;
}

.panorama-frame {
  position: sticky;
  top: 104px;
  padding: 16px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.panorama-frame img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #050505;
}

.panorama-copy {
  max-width: 760px;
}

.panorama-copy .eyebrow {
  color: #e8b396;
}

.panorama-copy .lead,
.curatorial-essay p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.curatorial-essay {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.curatorial-essay p {
  margin: 0;
}

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

.panorama-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.panorama-facts span {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.panorama-facts strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.giant-panorama-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(320px, 0.62fr);
  gap: clamp(22px, 3.6vw, 54px);
  align-items: start;
  min-height: min(860px, 100vh);
  padding: clamp(92px, 10vw, 136px) clamp(18px, 4vw, 58px) clamp(34px, 6vw, 78px);
  background: #050505;
  color: #fff;
}

.giant-panorama-hero figure {
  display: grid;
  margin: 0;
  place-items: center;
}

.giant-panorama-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.giant-panorama-hero figcaption {
  display: none;
}

.giant-panorama-copy {
  max-width: 720px;
  padding-left: clamp(18px, 2.6vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.giant-panorama-copy .eyebrow {
  color: #e8b396;
  letter-spacing: 0;
}

.giant-panorama-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(2.35rem, 5.2vw, 5.6rem);
  line-height: 0.98;
}

.giant-panorama-copy h1 span {
  display: block;
  margin-top: 10px;
  color: #e8b396;
  font-size: clamp(1.45rem, 3vw, 3rem);
  line-height: 1.08;
}

.giant-panorama-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.78;
}

.giant-panorama-note {
  margin: 0 0 20px;
  padding: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
}

.giant-fact-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #11100e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.giant-fact-band div {
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.giant-fact-band span,
.giant-fact-band strong {
  display: block;
}

.giant-fact-band span {
  color: #e8b396;
  font-size: 0.78rem;
  font-weight: 900;
}

.giant-fact-band strong {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.55rem);
  font-weight: 500;
  line-height: 1.06;
}

.giant-panorama-section {
  background: #141310;
  color: #fff;
}

.giant-panorama-section .section-heading div + p {
  color: rgba(255, 255, 255, 0.72);
}

.giant-panorama-section .eyebrow,
.giant-opportunity .eyebrow {
  color: #e8b396;
  letter-spacing: 0;
}

.giant-reading-grid,
.giant-opportunity-grid {
  display: grid;
  max-width: 1200px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 30px auto 0;
}

.giant-reading-grid article,
.giant-opportunity-grid article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #1d1b17;
  padding: 22px;
}

.giant-reading-grid span {
  color: #e8b396;
  font-size: 0.78rem;
  font-weight: 900;
}

.giant-reading-grid h3,
.giant-opportunity-grid h3 {
  margin: 12px 0 10px;
  font-size: 1.16rem;
}

.giant-reading-grid p,
.giant-opportunity-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.giant-exhibition-history {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #161511;
  color: #fff;
}

.giant-exhibition-history figure {
  margin: 0;
}

.giant-exhibition-history img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
}

.giant-exhibition-history .eyebrow {
  color: #e8b396;
}

.giant-exhibition-history p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  line-height: 1.76;
}

.giant-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.giant-proof-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.giant-opportunity {
  background: #11100e;
  color: #fff;
}

.giant-opportunity .section-heading div + p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .giant-panorama-hero,
  .giant-exhibition-history {
    grid-template-columns: 1fr;
  }

  .giant-panorama-copy {
    padding-left: 0;
    border-left: 0;
  }

  .giant-fact-band,
  .giant-reading-grid,
  .giant-opportunity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .giant-fact-band,
  .giant-reading-grid,
  .giant-opportunity-grid {
    grid-template-columns: 1fr;
  }
}

.split-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin: 0 auto;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mosaic img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: #11110f;
}

.mosaic img:nth-child(2),
.mosaic img:nth-child(4) {
  margin-top: 48px;
}

.text-panel {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.text-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.text-panel .panel-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-panel p + p {
  margin-top: 18px;
}

.farmers-feature-work {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #11110f;
  color: #fff;
}

.farmers-feature-work figure {
  margin: 0;
  justify-self: end;
  width: min(100%, 520px);
}

.farmers-feature-work img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  background: #050505;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.farmers-feature-work > div {
  max-width: 760px;
}

.farmers-feature-work .eyebrow {
  color: #e8b396;
}

.farmers-feature-work p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.mother-story-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  margin-top: 18px;
}

.mother-story-panel h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.05rem;
}

.mother-story-panel p {
  margin: 0;
}

.mother-story-panel p + p {
  margin-top: 12px;
}

.farmers-series {
  background: #f6f1e8;
}

.farmers-series-grid {
  display: grid;
  max-width: 1240px;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0 auto;
}

.farmers-series-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.farmers-series-grid img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #efe8dc;
}

.farmers-series-grid figcaption {
  padding: 8px 10px 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.farmer-evidence {
  background: #f4f4ef;
}

.farmer-evidence-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.farmer-evidence-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(16, 14, 12, 0.08);
}

.farmer-evidence-grid img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #f4efe6;
}

.farmer-evidence-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.films {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--blue);
  color: #fff;
}

.films-copy {
  max-width: 760px;
  justify-self: end;
}

.films-copy .eyebrow {
  color: #e8b396;
}

.films-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.film-card {
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.film-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #11110f;
}

.film-card div {
  padding: 28px;
}

.film-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.film-card strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.film-card p {
  color: var(--muted);
}

.documentary-hero {
  display: grid;
  min-height: 82vh;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding-top: 132px;
  background: #182a2f;
  color: #fff;
}

.documentary-hero-copy {
  max-width: 780px;
}

.documentary-hero .eyebrow {
  color: #e8b396;
}

.documentary-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.7vw, 20px);
}

.documentary-hero-media {
  margin: 0;
  padding: 16px;
  background: #101414;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.documentary-hero-media img,
.film-evidence-panel img,
.documentary-page-frames img {
  width: 100%;
  object-fit: contain;
  background: #0d0d0c;
}

.documentary-hero-media img {
  max-height: 520px;
}

.documentary-hero-media figcaption,
.film-evidence-panel figcaption,
.documentary-page-frames figcaption {
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.documentary-dossier,
.documentary-proof-strip {
  background: #fff;
}

.grassroots-election-section {
  background: #f0f3ee;
}

.election-meaning-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.election-meaning-grid article {
  min-width: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.election-meaning-grid article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.election-meaning-grid h3 {
  margin-top: 12px;
}

.election-meaning-grid p {
  color: var(--muted);
}

.election-process-note {
  max-width: 1180px;
  margin: 16px auto 0;
  padding: 26px;
  background: #11110f;
  color: #fff;
}

.election-process-note strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.election-process-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.film-dossier-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin: 0 auto;
}

.film-evidence-panel {
  margin: 0;
  padding: 16px;
  background: #11110f;
  color: #fff;
}

.film-evidence-panel img {
  max-height: 500px;
}

.film-evidence-panel strong,
.film-evidence-panel span {
  display: block;
}

.film-evidence-panel span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.broadcast-ledger {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.broadcast-ledger article,
.film-cluster-grid article,
.documentary-checklist article,
.documentary-package-grid article {
  min-width: 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.broadcast-ledger h3,
.film-cluster-grid h3,
.documentary-checklist h3,
.documentary-package-grid h3 {
  margin-top: 12px;
}

.broadcast-ledger p,
.film-cluster-grid p,
.documentary-checklist p,
.documentary-package-grid p {
  color: var(--muted);
}

.documentary-page-frames {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.documentary-page-frames figure {
  margin: 0;
  padding: 12px;
  background: #11110f;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.verification-section {
  background: #f6f1e8;
}

.public-response-section {
  background: #eef4f2;
}

.response-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.response-grid article {
  min-width: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.response-grid article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.response-grid h3 {
  margin-top: 12px;
}

.response-grid p,
.response-notes p {
  color: var(--muted);
}

.research-source-strip {
  max-width: 1180px;
  margin: 16px auto 0;
  padding: 26px;
  background: #f6f1e8;
  border: 1px solid var(--line);
}

.research-source-strip h3 {
  margin-top: 0;
}

.research-source-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.research-source-list article {
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.research-source-list article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.research-source-list p {
  color: var(--muted);
}

.response-notes {
  max-width: 1180px;
  margin: 16px auto 0;
  padding: 26px;
  background: #182a2f;
  color: #fff;
}

.response-notes h3 {
  margin-top: 0;
}

.response-notes p {
  color: rgba(255, 255, 255, 0.76);
}

.policy-law-panel {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: 22px;
  margin: 16px auto 0;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.policy-law-panel h3 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2.3vw, 2.25rem);
}

.policy-law-panel p {
  color: var(--muted);
}

.policy-law-timeline {
  display: grid;
  gap: 10px;
}

.policy-law-timeline article {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  background: #f6f1e8;
  border: 1px solid var(--line);
}

.policy-law-timeline span {
  color: var(--accent);
  font-weight: 900;
}

.policy-law-timeline p {
  margin: 0;
}

.policy-law-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

.documentary-checklist article > span,
.documentary-package-grid article > span,
.film-cluster-grid article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.film-cluster {
  background: #e2ebe6;
}

.film-cluster-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.documentary-visual-topics {
  background: #f3efe6;
}

.documentary-topic-card {
  display: grid;
  max-width: 1280px;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 28px);
  background: #fffdfa;
  border: 1px solid rgba(17, 17, 15, 0.12);
}

.documentary-topic-card + .documentary-topic-card {
  margin-top: 24px;
}

.documentary-topic-copy > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.documentary-topic-copy h3 {
  margin: 12px 0 14px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.documentary-topic-copy p {
  color: var(--muted);
}

.documentary-mini-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.documentary-mini-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #11110f;
  border: 1px solid rgba(17, 17, 15, 0.12);
}

.documentary-mini-gallery .wide {
  grid-column: span 2;
}

.documentary-mini-gallery img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #11110f;
}

.documentary-mini-gallery .wide img {
  height: 300px;
}

.documentary-sanyuan-gallery img {
  object-fit: contain;
}

.documentary-mini-gallery figcaption {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.documentary-mini-gallery figcaption .en {
  color: rgba(255, 255, 255, 0.56);
}

.documentary-mini-gallery figcaption .work-number-badge {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 650;
}

.documentary-lukou-card {
  scroll-margin-top: 118px;
  background: #fbfaf4;
}

.documentary-lukou-card .documentary-topic-copy > span {
  color: rgba(43, 38, 31, 0.48);
}

.lukou-story-facts {
  display: grid;
  gap: 0;
  margin: 22px 0;
  border-top: 1px solid rgba(17, 17, 15, 0.14);
  border-bottom: 1px solid rgba(17, 17, 15, 0.14);
}

.lukou-story-facts p {
  display: grid;
  grid-template-columns: minmax(110px, 0.22fr) minmax(0, 0.78fr);
  gap: 12px;
  margin: 0;
  padding: 13px 0;
  color: #2b261f;
  border-top: 1px solid rgba(17, 17, 15, 0.1);
}

.lukou-story-facts p:first-child {
  border-top: 0;
}

.lukou-story-facts strong {
  font-size: 13px;
  font-weight: 900;
}

.lukou-story-facts span {
  color: rgba(43, 38, 31, 0.74);
  font-size: 0.95rem;
  line-height: 1.55;
}

.lukou-story-facts .en {
  grid-column: 2;
  color: rgba(43, 38, 31, 0.58);
}

.lukou-original-lines {
  margin: 20px 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(17, 17, 15, 0.16);
}

.lukou-original-lines p {
  margin: 0 0 12px;
  color: #2b261f;
  font-weight: 900;
}

.lukou-original-lines p .en {
  display: block;
  margin-top: 3px;
  color: rgba(43, 38, 31, 0.54);
  font-size: 0.84rem;
}

.lukou-original-lines blockquote {
  margin: 10px 0;
  padding: 0 0 0 16px;
  color: #181511;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  border-left: 3px solid #826b3f;
}

.lukou-book-pages figure {
  background: #f6f3ea;
}

.lukou-book-pages img,
.lukou-book-pages .wide img {
  background: #f6f3ea;
}

.lukou-book-pages figcaption {
  background: #151410;
}

@media (max-width: 720px) {
  .lukou-story-facts p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lukou-story-facts .en {
    grid-column: auto;
  }
}

.documentary-raw-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.documentary-raw-ledger article {
  min-width: 0;
  padding: 20px;
  background: #121210;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.documentary-raw-ledger article > span {
  color: #e8b396;
  font-size: 12px;
  font-weight: 900;
}

.documentary-raw-ledger h4 {
  margin: 10px 0 10px;
  font-size: 20px;
}

.documentary-raw-ledger p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.documentary-package {
  background: var(--ink);
  color: #fff;
}

.documentary-package .section-heading p,
.documentary-package-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.documentary-package-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.earthquake {
  background: #ecefec;
}

.earthquake-hero .topic-hero-media img {
  background: #11110f;
}

.earthquake-ethics,
.earthquake-witness,
.earthquake-signature,
.earthquake-gallery {
  background: #fff;
}

.earthquake-signature {
  background: #181713;
  color: #f8f2e8;
}

.earthquake-signature-layout {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin: 0 auto;
}

.earthquake-signature-media {
  margin: 0;
}

.earthquake-signature-media img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  background: #060605;
}

.earthquake-signature-media figcaption {
  margin-top: 12px;
  color: rgba(248, 242, 232, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.earthquake-signature-copy h2 {
  margin: 0 0 18px;
  color: #fffaf2;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

.earthquake-signature-copy p {
  color: rgba(248, 242, 232, 0.78);
}

.earthquake-signature .en,
.earthquake-signature .en-line {
  color: rgba(248, 242, 232, 0.62);
}

.signature-facts {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.signature-facts article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.signature-facts span {
  color: #d0aa67;
  font-size: 12px;
  font-weight: 900;
}

.signature-facts h3 {
  margin: 8px 0 8px;
  color: #fffaf2;
}

.signature-facts p {
  margin: 0;
  color: rgba(248, 242, 232, 0.74);
}

.signature-actions {
  margin: 22px 0 0;
}

.standalone-work-page {
  background: #080807;
  color: #f8f2e8;
}

.dark-header {
  background: rgba(8, 8, 7, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: #f8f2e8;
}

.dark-header .site-nav a,
.dark-header .brand {
  color: #f8f2e8;
}

.single-work-hero {
  min-height: 100vh;
  padding: 108px clamp(16px, 4vw, 54px) 48px;
  background: #080807;
}

.single-work-hero > .eyebrow {
  max-width: 1320px;
  margin: 0 auto 16px;
  color: #d0aa67;
}

.single-work-frame {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1320px;
  background: #020202;
}

.single-work-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  height: min(72vh, 820px);
  object-fit: contain;
}

.single-work-copy {
  display: grid;
  max-width: 1320px;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  margin: 24px auto 0;
}

.single-work-copy h1 {
  margin: 0;
  color: #fffaf2;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(42px, 6.6vw, 106px);
  line-height: 0.95;
}

.single-work-copy p {
  margin: 0 0 14px;
  color: rgba(248, 242, 232, 0.78);
  font-size: 17px;
}

.single-work-copy .en,
.single-work-copy .en-line,
.single-work-ledger .en {
  color: rgba(248, 242, 232, 0.62);
}

.single-work-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.single-work-ledger {
  background: #14130f;
  color: #f8f2e8;
}

.single-work-ledger .section-heading h2,
.single-work-ledger .section-heading p,
.single-work-ledger .eyebrow {
  color: #f8f2e8;
}

.single-work-facts {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.single-work-facts article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.single-work-facts span {
  color: #d0aa67;
  font-size: 12px;
  font-weight: 900;
}

.single-work-facts h3 {
  margin: 10px 0;
  color: #fffaf2;
}

.single-work-facts p {
  color: rgba(248, 242, 232, 0.74);
}

.dark-footer {
  background: #080807;
  color: rgba(248, 242, 232, 0.72);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.dark-footer a {
  color: #f8f2e8;
}

.earthquake-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
  margin: 0 auto;
}

.earthquake-grid figure {
  margin: 0;
  background: #11110f;
  border: 1px solid var(--line);
}

.earthquake-grid img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  background: #11110f;
}

.earthquake-grid > img:first-child,
.earthquake-grid figure:first-child img {
  height: 520px;
}

.earthquake-grid figcaption {
  padding: 12px 14px 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.earthquake-complete-archive {
  background: #f7f2ea;
}

.earthquake-complete-grid,
.earthquake-related-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.earthquake-related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.earthquake-complete-grid figure,
.earthquake-related-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.earthquake-complete-grid a,
.earthquake-related-grid a {
  display: block;
  background: #10100e;
}

.earthquake-complete-grid img,
.earthquake-related-grid img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #10100e;
}

.earthquake-related-grid img {
  height: 320px;
}

.earthquake-complete-grid figcaption,
.earthquake-related-grid figcaption {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.earthquake-complete-grid figcaption strong,
.earthquake-related-grid figcaption strong {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.earthquake-complete-grid figcaption span,
.earthquake-related-grid figcaption span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.earthquake-protected-notice {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  background: #141414;
  color: #fff;
}

.earthquake-protected-notice p {
  color: rgba(255, 255, 255, 0.78);
}

.earthquake-protection-grid {
  display: grid;
  gap: 14px;
}

.earthquake-protection-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.earthquake-protection-grid strong {
  display: block;
  margin-bottom: 8px;
}

.single-work-ledger .earthquake-protection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.single-work-ledger .earthquake-protection-grid article {
  background: #fff;
  border-color: var(--line);
}

.earthquake-public-samples {
  background: #fff;
}

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

.earthquake-grid-protected figure {
  min-height: 0;
}

.source-path {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

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

.evidence .eyebrow {
  color: #e8b396;
}

.evidence .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.evidence-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.evidence-grid article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.evidence-grid img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  background: #efe8dc;
}

.evidence-grid img.full-scan {
  object-fit: contain;
  background: #efe8dc;
}

.evidence-grid h3,
.evidence-grid p {
  padding: 0 22px;
}

.evidence-grid h3 {
  margin-top: 22px;
}

.evidence-grid p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.evidence-translation {
  margin: 0 22px 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.evidence-translation h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.evidence-translation p {
  padding: 0;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.68;
}

.evidence-translation p:last-child {
  margin-bottom: 0;
}

.evidence-translation .translation-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.partner-evidence-grid article {
  background: #fbf7ed;
  border: 1px solid rgba(47, 37, 25, 0.16);
  box-shadow: 0 14px 42px rgba(30, 24, 17, 0.1);
}

.partner-evidence-grid h3 {
  color: #17120d;
}

.partner-evidence-grid p {
  color: #332a20;
}

.partner-evidence-grid .en {
  color: #5d5246;
}

.partner-evidence-grid .evidence-translation {
  border: 1px solid rgba(47, 37, 25, 0.18);
  background: #fffaf1;
}

.partner-evidence-grid .evidence-translation h4 {
  color: #17120d;
}

.partner-evidence-grid .evidence-translation p {
  color: #332a20;
}

.partner-evidence-grid .evidence-translation .translation-note {
  color: #5f3d2f;
  background: #efe5d4;
  border-left: 4px solid #8f3a29;
  padding: 10px 12px;
}

.international-proof-stack {
  display: grid;
  max-width: 1220px;
  gap: 26px;
  margin: 0 auto 34px;
}

.international-proof-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
  overflow: hidden;
  background: #fbf7ed;
  border: 1px solid rgba(47, 37, 25, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(30, 24, 17, 0.12);
}

.international-proof-panel figure {
  margin: 0;
  background: #efe8dc;
}

.international-proof-panel figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  background: #efe8dc;
}

.international-proof-panel figure.proof-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.international-proof-panel figure.proof-collage a {
  display: block;
  background: #efe8dc;
}

.international-proof-panel figure.proof-collage img {
  min-height: 460px;
}

.international-proof-panel figcaption {
  grid-column: 1 / -1;
  padding: 12px 14px 14px;
  color: #4f4a41;
  font-size: 0.9rem;
  line-height: 1.6;
  background: #efe8dc;
}

.international-proof-copy {
  padding: clamp(22px, 4vw, 36px);
  color: #201b14;
  background: #fbf7ed;
}

.international-proof-copy .eyebrow {
  color: #8f3a29;
}

.international-proof-copy h3 {
  margin: 0 0 18px;
  color: #17120d;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.25;
}

.international-proof-copy p {
  margin: 0 0 14px;
  color: #332a20;
  line-height: 1.78;
}

.international-proof-copy p strong {
  color: #17120d;
}

.international-proof-copy .en {
  color: #5d5246;
}

.international-proof-copy .proof-note {
  color: #5f3d2f;
  font-size: 0.92rem;
  background: #efe5d4;
  border-left: 4px solid #8f3a29;
  padding: 12px 14px;
}

.international-proof-copy .button {
  width: fit-content;
  margin-top: 10px;
}

.magazine-wall {
  background: #f6f1e8;
}

.magazine-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.magazine-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(16, 14, 12, 0.08);
}

.magazine-grid img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f4efe6;
}

.magazine-grid img.full-scan {
  object-fit: contain;
  background: #f4efe6;
}

.magazine-grid figcaption {
  min-height: 52px;
  padding: 12px 14px 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.strategy {
  background: #e2ebe6;
}

.strategy > h2,
.strategy > .eyebrow {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.strategy-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px auto 0;
}

.strategy-grid article {
  min-height: 220px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.strategy-grid span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.strategy-grid p {
  color: var(--muted);
}

.cooperation {
  background: #fff;
}

.cooperation-hero {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.92), rgba(17, 17, 15, 0.74)),
    url("assets/images/on-the-same-planet-panda-globe.jpg?v=20260526_fiximg") center / contain no-repeat #11110f;
}

.cooperation-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.cooperation-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.cooperation-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cooperation-grid h3 {
  margin-top: 24px;
}

.cooperation-grid p {
  color: var(--muted);
}

.kit-overview {
  background: #fff;
}

.kit-layout {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin: 0 auto;
}

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

.cooperation-checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.cooperation-checklist li {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
}

.kit-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kit-media img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #f4efe6;
}

.kit-media .wide {
  grid-column: span 2;
  height: 360px;
}

.cooperation-paths {
  background: #e2ebe6;
}

.cooperation-path-grid {
  grid-template-columns: repeat(3, 1fr);
}

.material-plan {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.material-plan > div:first-child {
  max-width: 520px;
  justify-self: end;
}

.material-plan .eyebrow {
  color: #e8b396;
}

.material-list {
  display: grid;
  max-width: 760px;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.material-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: #181817;
}

.material-list span {
  color: #e8b396;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.material-list h3 {
  margin: 0;
  color: #fff;
}

.material-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.submission-rule {
  background: #fff;
}

.photo-notes-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr) auto;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-notes-callout p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: #121210;
  color: #fff;
}

.contact .eyebrow {
  color: #e8b396;
}

.contact h2 {
  max-width: 850px;
}

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

.button-copy {
  color: #fff;
  background: transparent;
}

.copy-status {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 70px);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  font-weight: 800;
}

.work-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #080808;
  color: #fff;
}

.work-hero.no-overlay,
.topic-hero.no-overlay {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: 100vh;
  padding: 116px clamp(18px, 5vw, 70px) 54px;
}

.work-hero.no-overlay::after,
.topic-hero.no-overlay::after {
  display: none;
}

.work-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.55)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 54%);
  content: "";
}

.work-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.work-hero.no-overlay > img,
.topic-hero.no-overlay > img {
  display: none;
}

.work-hero-media,
.topic-hero-media {
  width: 100%;
  margin: 0;
  background: #050505;
}

.work-hero-media img,
.topic-hero-media img {
  width: 100%;
  max-height: calc(100vh - 190px);
  display: block;
  object-fit: contain;
  background: #050505;
}

.work-hero-media figcaption,
.topic-hero-media figcaption {
  padding: 10px 14px 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.work-hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 180px 0 120px;
}

.work-hero.no-overlay .work-hero-copy,
.topic-hero.no-overlay .topic-hero-copy {
  width: auto;
  padding: 0;
}

.work-hero-copy .eyebrow {
  color: #e8b396;
}

.work-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.7vw, 21px);
}

.planet-work-hero {
  background: #f6f1e8;
  color: #312a22;
}

.planet-work-hero .work-hero-media {
  background: #11110f;
  box-shadow: 0 18px 60px rgba(20, 18, 15, 0.16);
}

.planet-work-hero .work-hero-media figcaption {
  background: #fffaf1;
  color: #5e5a52;
}

.planet-work-hero .work-hero-copy .eyebrow {
  color: #8b5137;
}

.planet-work-hero .work-hero-copy h1,
.planet-work-hero .work-hero-copy h1 span {
  color: #332b23;
}

.planet-work-hero .work-hero-copy p:not(.eyebrow) {
  color: #4f5a60;
}

.work-intro {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin: 0 auto;
}

.work-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.record-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: #fff;
}

.record-band div {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.record-band span,
.record-band strong {
  display: block;
}

.record-band span {
  color: #e8b396;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.record-band strong {
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.1;
}

.work-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  background: #fff;
}

.work-story-copy {
  max-width: 760px;
  justify-self: end;
}

.work-story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.work-proof-card {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.work-proof-card ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: var(--muted);
}

.work-proof-card .button {
  margin-top: 14px;
}

.source-text {
  background: #f6f1e8;
}

.source-text-layout {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  margin: 0 auto;
}

.source-quote {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(16, 14, 12, 0.08);
}

.source-quote blockquote {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.18;
}

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

.source-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.source-points li {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--muted);
}

.source-transcript {
  max-width: 1180px;
  margin: 32px auto 0;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
}

.source-transcript h3 {
  margin: 0;
}

.source-note {
  max-width: 740px;
  margin: 10px 0 0;
  color: var(--muted);
}

.phoenix-ad-highlight {
  margin: 18px 0;
  padding: 24px;
  background: #182a2f;
  color: #fff;
}

.phoenix-ad-highlight h4 {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
}

.phoenix-ad-highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.phoenix-ad-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.phoenix-ad-points span {
  display: block;
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 800;
}

.transcript-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.source-original {
  margin: 0;
  padding: 22px;
  background: #11110f;
  color: #f6f1e8;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

.transcript-grid p {
  margin: 0;
  padding: 22px;
  background: #f6f1e8;
  color: var(--muted);
  line-height: 1.7;
}

.panda-stories-hero {
  display: grid;
  min-height: 88vh;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #11110f;
  color: #fff;
}

.panda-stories-hero-copy {
  max-width: 820px;
}

.panda-stories-hero-copy h1 {
  color: #fff;
}

.panda-stories-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.panda-stories-hero-media {
  margin: 0;
}

.panda-stories-hero-media img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #050505;
}

.panda-stories-hero-media figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.panda-prelude,
.panda-story-list {
  background: #fff;
}

.panda-story-index {
  background: var(--paper);
}

.panda-story-index-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.panda-story-index-grid a {
  min-height: 210px;
  padding: 22px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
}

.panda-story-index-grid span,
.panda-story-index-grid strong,
.panda-story-index-grid small,
.panda-story-index-grid em {
  display: block;
}

.panda-story-index-grid span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.panda-story-index-grid strong {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.25;
}

.panda-story-index-grid small {
  margin-top: 8px;
  color: var(--muted);
}

.panda-story-index-grid em {
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.panda-story-card {
  max-width: 1260px;
  margin: 0 auto 34px;
  padding: clamp(22px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.panda-story-card:last-child {
  margin-bottom: 0;
}

.panda-story-heading {
  max-width: 900px;
  margin-bottom: 24px;
}

.panda-story-heading h2 {
  margin-bottom: 12px;
}

.panda-story-heading p:not(.eyebrow) {
  color: var(--muted);
}

.panda-story-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.panda-story-columns.compact {
  max-width: 1260px;
  margin: 0 auto;
}

.panda-story-language {
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
}

.panda-story-language.translation {
  background: #f6f1e8;
}

.panda-story-language h3 {
  margin-top: 0;
  font-size: clamp(20px, 2vw, 28px);
}

.story-original-paragraph,
.story-translation-paragraph {
  margin: 0 0 16px;
  line-height: 1.78;
}

.story-original-paragraph {
  color: #3b3730;
  font-family: Georgia, "Times New Roman", serif;
}

.story-translation-paragraph {
  color: var(--ink);
}

.source-path code,
.panda-stories-hero code {
  overflow-wrap: anywhere;
}

.topic-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0d0d0c;
  color: #fff;
}

.topic-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.68)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 58%);
  content: "";
}

.topic-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.topic-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
  padding: 170px 0 118px;
}

.topic-hero-copy .eyebrow {
  color: #e8b396;
}

.topic-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.7vw, 21px);
}

.archive-hero {
  min-height: 40vh;
  display: grid;
  align-content: end;
  background: var(--ink);
  color: #fff;
}

.archive-hero .eyebrow,
.archive-hero h1,
.archive-hero p {
  width: min(1060px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.archive-hero .eyebrow {
  color: #e8b396;
}

.archive-hero p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.7vw, 20px);
}

.mimang-hero {
  display: grid;
  min-height: calc(100vh - 86px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: #121210;
  color: #f8f5ee;
}

.mimang-hero-copy {
  max-width: 760px;
}

.mimang-hero .eyebrow,
.mimang-gallery-section .eyebrow {
  color: #e8b396;
}

.mimang-hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.96;
}

.mimang-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.7vw, 20px);
}

.mimang-hero-frame {
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mimang-hero-frame img {
  display: block;
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  background: #050505;
}

.mimang-hero-frame figcaption {
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.mimang-context {
  background: #f1eee8;
}

.mimang-fact-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.mimang-fact-grid article {
  min-width: 0;
  min-height: 180px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(17, 17, 15, 0.12);
}

.mimang-fact-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.mimang-fact-grid h3 {
  margin: 12px 0 10px;
}

.mimang-fact-grid p {
  margin: 0;
  color: var(--muted);
}

.mimang-gallery-section {
  background: #11110f;
  color: #fff;
}

.mimang-gallery-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.mimang-gallery {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.mimang-gallery figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mimang-gallery .wide {
  grid-column: span 2;
}

.mimang-gallery img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #050505;
}

.mimang-gallery .wide img {
  height: 420px;
}

.mimang-gallery figcaption {
  display: flex;
  min-height: 54px;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.mimang-gallery figcaption .en {
  color: rgba(255, 255, 255, 0.54);
}

.evidence-ledger {
  background: #fff;
}

.ledger {
  display: grid;
  max-width: 1180px;
  gap: 12px;
  margin: 0 auto;
  min-width: 0;
}

.ledger article {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 22px;
  align-items: start;
  min-width: 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.ledger article > * {
  min-width: 0;
}

.ledger h3 {
  margin-top: 10px;
  font-size: 20px;
}

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

.ledger small {
  color: var(--muted);
  font-size: 13px;
}

.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-ready {
  color: var(--green);
}

.status-needs-doc {
  color: var(--accent);
}

.timeline-section {
  background: #e2ebe6;
}

.timeline {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline article {
  min-height: 260px;
  padding: 28px;
  background: #fff;
}

.timeline span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.timeline h3 {
  margin-top: 28px;
}

.timeline p {
  color: var(--muted);
}

.next-proof {
  background: #e2ebe6;
}

.next-proof > h2,
.next-proof > .eyebrow {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.section-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1180px;
  margin: 30px auto 0;
}

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

.section-actions.on-dark {
  color: #fff;
}

.planet-gallery {
  background: #121210;
  color: #fff;
}

.planet-gallery .eyebrow {
  color: #e8b396;
}

.planet-gallery-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.planet-gallery-grid figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.planet-gallery-grid .primary {
  grid-column: span 3;
}

.planet-gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #050505;
}

.planet-gallery-grid .primary img {
  height: 620px;
}

.planet-gallery-grid figcaption {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.note-hero {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.9), rgba(17, 17, 15, 0.72)),
    url("assets/images/on-the-same-planet-panda-globe.jpg?v=20260526_fiximg") center / contain no-repeat #11110f;
}

.note-system {
  background: #fff;
}

.note-system-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.note-system-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.note-system-grid span,
.caption-grid article span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-system-grid article > span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: 0;
}

.note-system-grid h3 {
  margin-top: 24px;
}

.note-system-grid p {
  color: var(--muted);
}

.note-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #121210;
  color: #fff;
}

.note-feature-media img {
  width: 100%;
  height: min(68vw, 680px);
  min-height: 420px;
  object-fit: contain;
  background: #050505;
}

.note-feature-copy {
  max-width: 680px;
}

.note-feature-copy .eyebrow {
  color: #e8b396;
}

.note-feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.caption-ledger {
  background: #e2ebe6;
}

.caption-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.caption-grid article {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 0.58fr);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(16, 14, 12, 0.08);
}

.caption-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  background: #f4efe6;
}

.caption-grid article div {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.caption-grid h3 {
  margin-top: 10px;
}

.caption-grid p {
  color: var(--muted);
}

.caption-grid small {
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.publication-notes {
  background: #f6f1e8;
}

.note-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note-strip > h2,
.note-strip > .eyebrow,
.note-strip > p,
.note-strip > .button {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.note-strip > p {
  color: var(--muted);
  font-size: 17px;
}

.collection-dossier,
.magazine-pitch {
  background: #f4f4ef;
}

.dossier-grid,
.pitch-layout,
.checklist-grid,
.lead-grid {
  display: grid;
  max-width: 1180px;
  margin: 34px auto 0;
  gap: 18px;
}

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

.dossier-grid article,
.pitch-copy,
.checklist-grid article,
.lead-grid article {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.dossier-grid span,
.lead-grid span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.dossier-grid h3,
.pitch-copy h3,
.lead-grid h3 {
  margin: 18px 0 10px;
}

.dossier-grid p,
.pitch-copy p,
.checklist-grid span,
.lead-grid p {
  margin: 0;
  color: var(--muted);
}

.institution-note {
  background: #141411;
  color: #fff;
}

.institution-note > .eyebrow,
.institution-note .en {
  color: #e8b396;
}

.institution-note > h2,
.institution-note > p,
.verification-leads > h2,
.verification-leads > p,
.verification-leads > .eyebrow {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.institution-note > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.verification-leads {
  background: #fff;
}

.verification-leads > p {
  color: var(--muted);
  font-size: 17px;
}

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

.lead-grid article {
  min-height: 240px;
}

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

.pitch-copy {
  min-height: 170px;
}

.pitch-copy p + p {
  margin-top: 8px;
}

.editor-package {
  background: #151512;
  color: #fff;
}

.editor-package > h2,
.editor-package > .eyebrow,
.editor-package > .checklist-grid {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.editor-package > .eyebrow {
  color: #e8b396;
}

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

.checklist-grid article {
  display: grid;
  gap: 10px;
  min-height: 150px;
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.14);
}

.checklist-grid strong {
  color: #fff;
}

.steam-hero .topic-hero-media img {
  background: #11110f;
}

.steam-package,
.steam-gallery-section,
.rights-route {
  background: #fff;
}

.story-package-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.story-package-grid article {
  min-height: 230px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.story-package-grid span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.story-package-grid h3 {
  margin-top: 22px;
}

.story-package-grid p {
  color: var(--muted);
}

.steam-gallery-section {
  background: #121210;
  color: #fff;
}

.steam-gallery-section .eyebrow {
  color: #e8b396;
}

.steam-gallery {
  display: grid;
  max-width: 1260px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.steam-gallery figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.steam-gallery .wide {
  grid-column: span 2;
}

.steam-gallery img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #050505;
}

.steam-gallery .wide img {
  height: 420px;
}

.steam-gallery figcaption {
  min-height: 54px;
  padding: 12px 14px 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.steam-complete-section {
  background: #f3efe5;
}

.complete-gallery-note {
  display: flex;
  max-width: 1260px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 18px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
}

.complete-gallery-note strong {
  flex: 0 0 auto;
  font-size: 1rem;
}

.complete-gallery-note span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.steam-complete-gallery {
  display: grid;
  max-width: 1260px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.steam-complete-gallery figure {
  display: grid;
  grid-template-rows: auto;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.steam-complete-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #0e0e0c;
}

.steam-complete-gallery figcaption {
  padding: 10px 11px 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.westnb-hero {
  position: relative;
  display: flex;
  min-height: calc(84vh - 72px);
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #18201b;
}

.westnb-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 14, 12, 0.78), rgba(10, 14, 12, 0.36) 58%, rgba(10, 14, 12, 0.16));
}

.westnb-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.westnb-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.westnb-hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: 150px 6vw 58px;
}

.westnb-hero-copy .eyebrow {
  color: #f4d2a1;
}

.westnb-hero-copy h1 {
  max-width: 920px;
  margin: 0;
  font-size: 5.2rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.westnb-hero-copy h1 .en {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  font-style: normal;
  line-height: 1.35;
}

.westnb-hero-copy p {
  max-width: 820px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.85;
}

.westnb-hero-actions,
.westnb-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.westnb-summary {
  background: #fff;
}

.westnb-fact-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.westnb-fact-grid article {
  min-height: 190px;
  padding: 24px;
  background: #f5f2ea;
  border: 1px solid var(--line);
}

.westnb-fact-grid span,
.westnb-gallery-heading span {
  color: #8a4b2b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.westnb-fact-grid h3,
.westnb-gallery-heading h3 {
  margin: 16px 0 10px;
}

.westnb-fact-grid p,
.westnb-gallery-heading p {
  color: var(--muted);
}

.westnb-galleries {
  background: #111711;
  color: #fff;
}

.westnb-galleries .eyebrow {
  color: #a8d9bd;
}

.westnb-galleries .section-heading p,
.westnb-galleries .section-heading .en {
  color: rgba(255, 255, 255, 0.76);
}

.westnb-gallery-block {
  max-width: 1260px;
  margin: 0 auto 42px;
}

.westnb-gallery-block:last-child {
  margin-bottom: 0;
}

.westnb-gallery-heading {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.westnb-gallery-heading span {
  color: #a8d9bd;
}

.westnb-gallery-heading h3 {
  margin-top: 0;
  color: #fff;
}

.westnb-gallery-heading p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.westnb-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.westnb-gallery-feature {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.westnb-gallery figure {
  display: grid;
  grid-template-rows: auto minmax(48px, auto);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.westnb-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #050605;
}

.westnb-gallery-feature img {
  aspect-ratio: 3 / 2;
}

.westnb-gallery figcaption {
  padding: 10px 11px 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.westnb-relation {
  background: #f5f2ea;
}

.westnb-link-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-right: auto;
  margin-left: auto;
}

.westnb-link-grid a {
  min-height: 146px;
  padding: 20px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
}

.westnb-link-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.westnb-link-grid span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .westnb-hero-copy h1 {
    font-size: 3.7rem;
  }

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

  .westnb-gallery,
  .westnb-gallery-feature {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .westnb-hero {
    min-height: auto;
  }

  .westnb-hero-copy {
    padding: 116px 20px 42px;
  }

  .westnb-hero-copy h1 {
    font-size: 2.75rem;
  }

  .westnb-fact-grid,
  .westnb-link-grid,
  .westnb-gallery,
  .westnb-gallery-feature {
    grid-template-columns: 1fr;
  }

  .westnb-gallery-heading {
    grid-template-columns: 1fr;
  }
}

.harbin-hero {
  position: relative;
  display: flex;
  min-height: calc(92vh - 72px);
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #141816;
}

.harbin-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.82), rgba(7, 9, 8, 0.46) 58%, rgba(7, 9, 8, 0.16)),
    linear-gradient(0deg, rgba(7, 9, 8, 0.42), rgba(7, 9, 8, 0));
}

.harbin-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.harbin-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.harbin-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  padding: 150px 6vw 64px;
}

.harbin-hero-copy .eyebrow {
  color: #f1bf68;
}

.harbin-hero-copy h1 {
  max-width: 980px;
  margin: 0;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.harbin-hero-copy h1 .en {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  font-style: normal;
  line-height: 1.35;
}

.harbin-hero-copy p {
  max-width: 900px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.87);
  font-weight: 700;
  line-height: 1.85;
}

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

.harbin-story,
.harbin-source-text,
.harbin-album {
  background: #fff;
}

.harbin-fact-grid {
  display: grid;
  max-width: 1220px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.harbin-fact-grid article {
  min-height: 172px;
  padding: 22px;
  background: #f5f1e8;
  border: 1px solid var(--line);
}

.harbin-fact-grid span,
.harbin-gallery-heading > span {
  color: #af3e2c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.harbin-fact-grid h3,
.harbin-gallery-heading h3 {
  margin: 14px 0 8px;
}

.harbin-fact-grid p,
.harbin-gallery-heading p {
  color: var(--muted);
}

.harbin-original-text,
.harbin-chapter-index {
  background: #f5f1e8;
}

.harbin-original-grid {
  display: grid;
  max-width: 1220px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.harbin-original-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.harbin-original-card h3 {
  margin: 4px 0 18px;
  font-size: 1.65rem;
}

.harbin-original-card h4 {
  margin: 22px 0 8px;
  color: #af3e2c;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.harbin-original-card p {
  color: #3d3933;
  font-weight: 700;
  line-height: 1.86;
}

.harbin-original-chapters {
  max-width: 1220px;
  margin: 18px auto 0;
  padding: 24px;
  background: #191f1c;
  color: #fff;
}

.harbin-original-chapters h3 {
  margin: 0 0 16px;
}

.harbin-original-chapters h3 .en {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.harbin-original-chapters div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.harbin-original-chapters span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.82rem;
  font-weight: 800;
}

.harbin-editorial {
  background: #202824;
  color: #fff;
}

.harbin-editorial .section-heading p,
.harbin-editorial .section-heading .en {
  color: rgba(255, 255, 255, 0.76);
}

.harbin-editorial .eyebrow {
  color: #f1bf68;
}

.harbin-editorial-grid {
  display: grid;
  max-width: 1220px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.harbin-editorial-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.harbin-editorial-grid p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.75;
}

.harbin-source-links {
  display: flex;
  max-width: 1220px;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 18px auto 0;
}

.harbin-source-links strong,
.harbin-source-links a {
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.82rem;
  font-weight: 800;
}

.harbin-source-links a {
  color: rgba(255, 255, 255, 0.82);
}

.harbin-chapter-grid {
  display: grid;
  max-width: 1220px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.harbin-chapter-grid a {
  min-height: 116px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.harbin-chapter-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.harbin-chapter-grid span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.harbin-galleries {
  background: #101412;
  color: #fff;
}

.harbin-galleries .eyebrow {
  color: #f1bf68;
}

.harbin-galleries .section-heading p,
.harbin-galleries .section-heading .en {
  color: rgba(255, 255, 255, 0.75);
}

.harbin-gallery-block {
  max-width: 1180px;
  margin: 0 auto 72px;
  scroll-margin-top: 110px;
}

.harbin-gallery-block:last-child {
  margin-bottom: 0;
}

.harbin-gallery-heading {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 26px;
  padding: 18px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.harbin-gallery-heading > span {
  color: #f1bf68;
}

.harbin-gallery-heading h3 {
  margin-top: 0;
  color: #fff;
}

.harbin-gallery-heading h3 .en {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 700;
}

.harbin-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 46px);
}

.harbin-gallery figure {
  display: grid;
  grid-template-rows: auto minmax(54px, auto);
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.harbin-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #050706;
}

.harbin-gallery figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .harbin-hero-copy h1 {
    font-size: 3.65rem;
  }

  .harbin-fact-grid,
  .harbin-original-grid,
  .harbin-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .harbin-chapter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .harbin-gallery {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .harbin-hero {
    min-height: auto;
  }

  .harbin-hero-copy {
    padding: 116px 20px 44px;
  }

  .harbin-hero-copy h1 {
    font-size: 2.7rem;
  }

  .harbin-fact-grid,
  .harbin-original-grid,
  .harbin-editorial-grid,
  .harbin-chapter-grid,
  .harbin-gallery {
    grid-template-columns: 1fr;
  }

  .harbin-gallery-heading {
    grid-template-columns: 1fr;
  }

  .harbin-gallery-block {
    margin-bottom: 54px;
    scroll-margin-top: 90px;
  }

}

.daigeng-hero {
  display: grid;
  min-height: calc(100vh - 86px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.daigeng-hero-copy {
  max-width: 760px;
}

.daigeng-hero-copy h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.96;
}

.daigeng-hero-copy h1 span:not(.en) {
  display: block;
  margin-top: 18px;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.15;
}

.daigeng-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.daigeng-hero-visual {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.daigeng-hero-visual img {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  object-fit: contain;
}

.daigeng-hero-visual figcaption,
.daigeng-gallery figcaption {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
}

.daigeng-fact-strip {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.daigeng-fact-strip article {
  min-height: 168px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.daigeng-fact-strip strong {
  display: block;
  margin-bottom: 12px;
  font-size: 19px;
}

.daigeng-fact-strip span {
  color: var(--muted);
}

.daigeng-gallery {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.daigeng-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.daigeng-gallery figure.wide {
  grid-column: span 2;
}

.daigeng-gallery img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: contain;
  image-orientation: from-image;
}

.daigeng-gallery figure.wide img {
  height: 360px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--panel);
    border: 1px solid var(--line);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

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

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    max-height: 72vh;
  }

  .hero-content {
    max-width: none;
    padding: 36px 18px 44px;
  }

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

  .thesis,
  .asia-statement,
    .panorama-work,
    .work-intro,
    .work-story,
    .official-proof,
    .official-entry,
    .commercial-entry,
    .commercial-hero,
    .daigeng-hero,
    .mimang-hero,
    .documentary-hero,
    .work-hero.no-overlay,
    .topic-hero.no-overlay,
    .commercial-evaluation,
    .security-commerce,
    .inquiry,
    .panda-stories-hero,
    .panda-story-columns,
    .art-evaluation,
    .section-heading,
    .international-proof-panel,
    .feature-layout,
    .split-grid,
    .films,
  .kit-layout,
  .material-plan,
  .contact,
    .photo-notes-callout,
    .note-feature,
    .source-text-layout,
    .earthquake-protected-notice,
    .earthquake-signature-layout,
    .single-work-copy,
    .phoenix-ad-points,
    .policy-law-panel,
    .transcript-grid,
    .documentary-topic-card,
    .film-dossier-grid,
    .dossier-grid,
    .pitch-layout,
    .checklist-grid,
    .lead-grid {
    grid-template-columns: 1fr;
  }

    .metrics,
    .impact-grid,
    .topic-index-grid,
    .farmer-evidence-grid,
    .path-grid,
    .action-grid,
    .brief-grid,
    .works-first-grid,
    .today-upgrade-grid,
    .cooperation-grid,
    .cooperation-path-grid,
    .proof-grid,
    .press-proof-cards,
    .record-band,
    .evidence-grid,
  .front-proof-grid,
  .priority-proof-grid,
  .newspaper-readout-grid,
  .commercial-proof-grid,
  .purchase-grid,
  .offer-grid,
  .package-link-grid,
  .inquiry-field-grid,
  .rights-grid,
  .deal-process-grid,
  .daigeng-fact-strip,
  .daigeng-gallery,
    .mimang-fact-grid,
    .mimang-gallery,
    .documentary-mini-gallery,
    .documentary-raw-ledger,
    .magazine-grid,
    .strategy-grid,
    .broadcast-ledger,
    .election-meaning-grid,
    .response-grid,
    .research-source-list,
    .documentary-page-frames,
    .film-cluster-grid,
    .timeline,
  .note-system-grid,
  .caption-grid,
  .panda-story-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .single-work-ledger .earthquake-protection-grid {
    grid-template-columns: 1fr;
  }

  .farmer-work-wall,
  .story-package-grid,
  .documentary-mini-gallery,
  .steam-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .steam-complete-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .farmer-work-panorama,
  .daigeng-gallery figure.wide,
  .mimang-gallery .wide,
  .documentary-mini-gallery .wide,
  .steam-gallery .wide {
    grid-column: span 2;
  }

  .panorama-frame {
    position: static;
  }

  .ledger article {
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .works-first-grid figure.signature {
    grid-column: span 2;
    grid-row: span 1;
  }

  .works-first-grid img,
  .works-first-grid figure.signature img {
    height: 360px;
  }

  .mosaic img {
    height: 300px;
  }

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

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

  .earthquake-related-grid {
    grid-template-columns: 1fr;
  }

  .earthquake-grid img,
  .earthquake-grid img:first-child {
    height: 360px;
  }

  .films-copy {
    justify-self: start;
  }

  .work-story-copy {
    justify-self: start;
  }

  .art-evaluation-media {
    justify-self: start;
  }

  .photo-notes-callout .button {
    justify-self: start;
  }

  .official-proof-media {
    justify-self: start;
  }

  .official-entry-media {
    justify-self: start;
  }

  .commercial-entry-media,
  .commercial-hero-media,
  .commercial-work-image,
  .panda-stories-hero-media {
    position: static;
    justify-self: start;
  }

  .security-commerce > div:first-child,
  .inquiry > div:first-child {
    justify-self: start;
  }

  .contact-actions {
    align-items: flex-start;
  }

  .international-proof-panel figure img,
  .international-proof-panel figure.proof-collage img {
    height: auto;
    min-height: 0;
  }

  .international-proof-panel figure.proof-collage {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .hero-content {
    width: auto;
    padding-top: 34px;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .single-work-hero {
    padding-top: 92px;
  }

  .single-work-frame img {
    height: min(64vh, 620px);
  }

  .single-work-actions {
    width: 100%;
  }

  .section-pad {
    padding: 64px 16px;
  }

  .policy-law-timeline article {
    grid-template-columns: 1fr;
  }

  .metrics,
  .impact-grid,
  .topic-index-grid,
  .farmer-evidence-grid,
  .path-grid,
  .action-grid,
  .brief-grid,
  .works-first-grid,
  .today-upgrade-grid,
  .cooperation-grid,
  .cooperation-path-grid,
  .daigeng-fact-strip,
  .daigeng-gallery,
  .mimang-fact-grid,
  .mimang-gallery,
  .documentary-topic-card,
  .documentary-mini-gallery,
  .documentary-raw-ledger,
  .proof-grid,
  .press-proof-cards,
  .record-band,
  .evidence-grid,
  .commercial-proof-grid,
  .newspaper-readout-grid,
  .purchase-grid,
  .offer-grid,
  .package-link-grid,
  .inquiry-field-grid,
  .rights-grid,
  .deal-process-grid,
  .magazine-grid,
  .strategy-grid,
  .film-cluster-grid,
  .election-meaning-grid,
  .response-grid,
  .research-source-list,
  .documentary-page-frames,
  .phoenix-ad-points,
  .policy-law-panel,
  .broadcast-ledger,
  .film-dossier-grid,
  .dossier-grid,
  .pitch-layout,
  .checklist-grid,
  .lead-grid,
  .timeline,
  .feature-gallery,
  .planet-gallery-grid,
  .note-system-grid,
  .caption-grid,
  .earthquake-signature-layout,
  .single-work-copy,
  .single-work-facts,
  .product-hero,
  .product-status,
  .status-grid,
  .product-map-grid,
  .preview-wall-grid,
  .calendar-archive-grid,
  .security-note,
  .caption-grid article {
    grid-template-columns: 1fr;
  }

  .farmer-work-wall,
  .story-package-grid,
  .panda-story-index-grid,
  .steam-gallery {
    grid-template-columns: 1fr;
  }

  .complete-gallery-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .steam-complete-gallery {
    grid-template-columns: 1fr;
  }

  .farmer-work-feature,
  .farmer-work-panorama,
  .daigeng-gallery figure.wide,
  .mimang-gallery .wide,
  .documentary-mini-gallery .wide,
  .steam-gallery .wide {
    grid-column: auto;
  }

  .farmer-work-wall img,
  .farmer-work-panorama img,
  .daigeng-gallery img,
  .daigeng-gallery figure.wide img,
  .mimang-gallery img,
  .mimang-gallery .wide img,
  .documentary-mini-gallery img,
  .documentary-mini-gallery .wide img,
  .steam-gallery img,
  .steam-gallery .wide img {
    height: 320px;
  }

  .topic-strip,
  .topic-strip img:first-child {
    grid-template-columns: 1fr;
    grid-row: auto;
  }

  .topic-strip img,
  .topic-strip img:first-child {
    height: 220px;
  }

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

  .material-plan > div:first-child {
    justify-self: start;
  }

  .commercial-hero {
    min-height: 0;
    padding-top: 110px;
  }

  .work-hero.no-overlay,
  .topic-hero.no-overlay {
    min-height: 0;
    padding: 108px 16px 48px;
  }

  .commercial-hero-media img,
  .commercial-work-image img,
  .commercial-entry-media img,
  .work-hero-media img,
  .topic-hero-media img {
    max-height: none;
  }

  .commercial-actions {
    width: 100%;
  }

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

  .inquiry-panel {
    padding: 20px;
  }

  .kit-media .wide {
    height: 280px;
  }

  .official-proof-media {
    padding: 10px;
  }

  .official-entry-media {
    padding: 10px;
  }

  .translation-block {
    padding: 18px;
  }

  .metrics div {
    min-height: 128px;
  }

  .statement-mark {
    font-size: 46px;
  }

  .feature-gallery .large {
    grid-column: auto;
  }

  .feature-gallery img,
  .feature-gallery .large {
    height: 300px;
  }

  .planet-gallery-grid .primary {
    grid-column: auto;
  }

  .planet-gallery-grid img,
  .planet-gallery-grid .primary img {
    height: 320px;
  }

  .product-hero {
    min-height: 0;
    width: 100%;
    max-width: 100vw;
    padding-top: 110px;
    overflow: hidden;
  }

  .product-hero,
  .product-status,
  .product-proof,
  .product-map,
  .preview-wall,
  .calendar-archive,
  .rights-system {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .product-hero > *,
  .product-status > *,
  .product-proof > *,
  .product-map > *,
  .preview-wall > *,
  .calendar-archive > *,
  .rights-system > *,
  .status-grid > *,
  .product-map-grid > *,
  .preview-wall-grid > *,
  .calendar-archive-grid > * {
    min-width: 0;
    max-width: 100%;
  }

  .product-hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-hero-copy h1 {
    width: min(100%, calc(100vw - 32px));
    max-width: 100%;
    font-size: 30px;
    line-height: 1.18;
    text-wrap: wrap;
    word-break: break-all;
  }

  .product-hero-copy h1 span {
    width: min(100%, calc(100vw - 32px));
    font-size: 16px;
    line-height: 1.32;
    text-wrap: wrap;
    word-break: break-all;
  }

  .product-hero-copy p:not(.eyebrow) {
    width: min(100%, calc(100vw - 32px));
    max-width: 100%;
    font-size: 15px;
    text-wrap: wrap;
    word-break: break-all;
  }

  .product-status h2,
  .product-status h3,
  .product-status p,
  .product-proof h2,
  .product-proof p,
  .product-map h2,
  .product-map h3,
  .product-map p,
  .preview-wall h2,
  .preview-wall p,
  .calendar-archive h2,
  .calendar-archive p,
  .rights-system h2,
  .rights-system p {
    text-wrap: wrap;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .product-hero-media img {
    max-height: none;
  }

  .product-hero-actions {
    width: 100%;
  }

  .product-map-grid article {
    min-height: 0;
  }

  .preview-wall-grid .calendar-preview {
    grid-column: auto;
  }

  .preview-wall-grid img,
  .preview-wall-grid .calendar-preview img {
    height: 320px;
  }

  .calendar-archive-grid img {
    height: 320px;
  }

  .rights-table {
    overflow: visible;
  }

  .rights-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .rights-table [role="row"] + [role="row"] {
    border-top: 8px solid var(--paper);
  }

  .note-feature-media img {
    height: 360px;
    min-height: 0;
  }

  .caption-grid img {
    height: 300px;
    min-height: 0;
  }

  .works-first-grid figure.signature {
    grid-column: auto;
  }

  .works-first-grid img,
  .works-first-grid figure.signature img {
    height: 330px;
  }

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

  .mosaic img,
  .mosaic img:nth-child(2),
  .mosaic img:nth-child(4) {
    height: 320px;
    margin-top: 0;
  }

  .evidence-grid img {
    height: 340px;
  }

  .front-proof-grid img,
  .priority-proof-grid img,
  .front-proof-primary img,
  .priority-proof-work img {
    height: auto;
    max-height: none;
  }

  .front-proof-primary,
  .priority-proof-work {
    grid-column: span 1;
  }

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

/* 档案图片与文字总览 */
.oldsite-hero strong { color: var(--ink); }
.oldsite-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.oldsite-stats span,
.oldsite-summary-grid a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
}
.oldsite-stats strong,
.oldsite-summary-grid strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}
.oldsite-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.oldsite-summary-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.4;
}
.oldsite-topic {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.oldsite-topic summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.25rem;
  font-weight: 700;
}
.oldsite-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.oldsite-card {
  border: 1px solid var(--line);
  background: #fff;
  min-width: 0;
}
.oldsite-image-link {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f3f1ec;
  overflow: hidden;
}
.oldsite-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.oldsite-card div {
  padding: 10px;
}
.oldsite-card p {
  margin: 6px 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.oldsite-card small,
.oldsite-card a {
  display: block;
  font-size: 0.76rem;
  line-height: 1.45;
}
.oldsite-text-topic {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
}
.oldsite-text-topic h2 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.oldsite-text-topic h2 span {
  font-size: 0.95rem;
  color: var(--muted);
}
.oldsite-text-card {
  border: 1px solid var(--line);
  background: #fff;
  margin: 10px 0;
  padding: 14px;
}
.oldsite-text-card summary {
  cursor: pointer;
}
.oldsite-text-card summary strong,
.oldsite-text-card summary small {
  display: block;
}
.oldsite-text-card summary small {
  color: var(--muted);
  margin-top: 4px;
  overflow-wrap: anywhere;
}
.oldsite-text-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.oldsite-text-card pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: inherit;
  line-height: 1.7;
  margin: 0;
  color: var(--ink);
}
@media (max-width: 1100px) {
  .oldsite-gallery,
  .oldsite-summary-grid,
  .oldsite-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .oldsite-gallery,
  .oldsite-summary-grid,
  .oldsite-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .oldsite-gallery,
  .oldsite-summary-grid,
  .oldsite-stats { grid-template-columns: 1fr; }
}

.farmers-interview-hero {
  background: #f4efe5;
}
.farmers-interview-section {
  border-top: 1px solid var(--line);
}
.farmers-interview-section .section-heading h2 span,
.farmers-supplement-section .section-heading h2 span {
  color: var(--muted);
  font-size: 0.95rem;
  margin-left: 10px;
}
.farmer-interview-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.farmer-interview-image {
  display: block;
  background: #f4f1ea;
  border: 1px solid var(--line);
  overflow: hidden;
}
.farmer-interview-image img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  display: block;
}
.farmer-interview-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.22;
}
.farmer-image-path {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}
.farmer-source-text {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
  margin: 12px 0;
}
.farmer-source-text summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}
.farmer-source-text pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: inherit;
  font-size: 0.98rem;
  line-height: 1.72;
  margin: 14px 0;
  color: var(--ink);
}
.farmer-source-text a {
  font-size: 0.86rem;
}
.farmers-supplement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.farmers-supplement-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}
.farmers-supplement-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f4f1ea;
  display: block;
}
.farmers-supplement-card p {
  margin: 8px 0 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.farmers-supplement-card small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .farmer-interview-card {
    grid-template-columns: 1fr;
  }
  .farmers-supplement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .farmers-supplement-grid {
    grid-template-columns: 1fr;
  }
}

.farmer-book-hero {
  background: #efe8dc;
}
.farmer-book-actions {
  margin-top: 22px;
}
.farmer-book-highlights,
.farmer-book-pages {
  border-top: 1px solid var(--line);
}
.farmer-book-highlight-grid {
  display: grid;
  gap: 22px;
}
.farmer-book-highlight,
.farmer-book-page,
.farmer-book-inline-callout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.farmer-book-inline-callout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: #f7f3ea;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}
.farmer-book-inline-callout h2,
.farmer-book-inline-callout p {
  margin: 0;
}
.farmer-book-inline-callout h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
}
.farmer-book-highlight-image,
.farmer-book-page-image {
  display: block;
  background: #f4f1ea;
  border: 1px solid var(--line);
  overflow: hidden;
}
.farmer-book-highlight-image img,
.farmer-book-page-image img {
  width: 100%;
  max-height: 780px;
  object-fit: contain;
  display: block;
  image-orientation: from-image;
}
.farmer-book-highlight h3,
.farmer-book-page-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.22;
}
.farmer-book-highlight pre,
.farmer-book-page-copy pre,
.farmer-book-source-text pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: inherit;
  font-size: 0.98rem;
  line-height: 1.72;
  margin: 12px 0 0;
  color: var(--ink);
}
.farmer-book-highlight pre,
.farmer-book-source-text {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
}
.farmer-book-source-text {
  margin-top: 22px;
}
.farmer-book-source-text summary {
  cursor: pointer;
  color: var(--muted);
  font-weight: 700;
}
.farmer-book-pages .section-heading h2 span {
  color: var(--muted);
  font-size: 0.95rem;
  margin-left: 10px;
}
@media (max-width: 900px) {
  .farmer-book-highlight,
  .farmer-book-page,
  .farmer-book-inline-callout {
    grid-template-columns: 1fr;
  }
}

.old-complete-hero {
  background: #eee9df;
}
.old-complete-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.old-complete-summary a,
.old-complete-topic-strip span {
  display: block;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 14px;
  text-decoration: none;
}
.old-complete-summary strong,
.old-complete-topic-strip strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
}
.old-complete-summary span,
.old-complete-summary small,
.old-complete-topic-strip span {
  overflow-wrap: anywhere;
}
.old-complete-summary small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}
.old-complete-topic-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.old-complete-source {
  border-top: 1px solid var(--line);
}
.old-complete-source .section-heading h2 span {
  color: var(--muted);
  font-size: 0.95rem;
  margin-left: 10px;
}
.old-complete-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.old-complete-card {
  border: 1px solid var(--line);
  background: #fff;
  min-width: 0;
}
.old-complete-card a {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f4f1ea;
  overflow: hidden;
}
.old-complete-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  image-orientation: from-image;
}
.old-complete-card div {
  padding: 10px;
}
.old-complete-card strong,
.old-complete-card span,
.old-complete-card small {
  display: block;
  overflow-wrap: anywhere;
}
.old-complete-card strong {
  font-size: 0.88rem;
  line-height: 1.35;
}
.old-complete-card span,
.old-complete-card small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
  margin-top: 4px;
}
@media (max-width: 1100px) {
  .old-complete-gallery,
  .old-complete-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .old-complete-topic-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .old-complete-gallery,
  .old-complete-summary,
  .old-complete-topic-strip {
    grid-template-columns: 1fr;
  }
}

/* 作品专题正文必须按大图阅读，不做缩略图墙。 */
.mimang-gallery,
.daigeng-gallery,
.steam-gallery,
.steam-complete-gallery,
.westnb-gallery,
.westnb-gallery-feature,
.harbin-gallery,
.documentary-mini-gallery,
.planet-gallery-grid,
.farmers-series-grid,
.calendar-archive-grid,
.earthquake-grid {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: clamp(26px, 4vw, 48px);
  max-width: min(1080px, calc(100vw - 48px));
  margin-right: auto;
  margin-left: auto;
}

.documentary-topic-card {
  grid-template-columns: 1fr;
  max-width: 1120px;
}

.mimang-gallery figure,
.daigeng-gallery figure,
.steam-gallery figure,
.steam-complete-gallery figure,
.westnb-gallery figure,
.harbin-gallery figure,
.documentary-mini-gallery figure,
.planet-gallery-grid figure,
.farmers-series-grid figure,
.calendar-archive-grid figure,
.earthquake-grid figure {
  grid-column: auto !important;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
}

.mimang-gallery img,
.mimang-gallery .wide img,
.daigeng-gallery img,
.daigeng-gallery figure.wide img,
.steam-gallery img,
.steam-gallery .wide img,
.steam-complete-gallery img,
.westnb-gallery img,
.westnb-gallery-feature img,
.harbin-gallery img,
.documentary-mini-gallery img,
.documentary-mini-gallery .wide img,
.planet-gallery-grid img,
.planet-gallery-grid .primary img,
.farmers-series-grid img,
.calendar-archive-grid img,
.earthquake-grid img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain !important;
  image-orientation: from-image;
}

.mimang-gallery figcaption,
.daigeng-gallery figcaption,
.steam-gallery figcaption,
.steam-complete-gallery figcaption,
.westnb-gallery figcaption,
.harbin-gallery figcaption,
.documentary-mini-gallery figcaption,
.planet-gallery-grid figcaption,
.farmers-series-grid figcaption,
.calendar-archive-grid figcaption,
.earthquake-grid figcaption {
  min-height: auto;
  padding: 14px 18px 18px;
  font-size: 0.96rem;
  line-height: 1.45;
  text-transform: none;
}

.mimang-gallery figcaption strong,
.daigeng-gallery figcaption strong,
.steam-gallery figcaption strong,
.steam-complete-gallery figcaption strong,
.westnb-gallery figcaption strong,
.harbin-gallery figcaption strong,
.documentary-mini-gallery figcaption strong,
.planet-gallery-grid figcaption strong,
.farmers-series-grid figcaption strong,
.calendar-archive-grid figcaption strong,
.earthquake-grid figcaption strong {
  display: block;
  margin-bottom: 6px;
  color: inherit;
  font-size: 1rem;
}

.mimang-gallery figcaption span,
.daigeng-gallery figcaption span,
.steam-gallery figcaption span,
.steam-complete-gallery figcaption span,
.westnb-gallery figcaption span,
.harbin-gallery figcaption span,
.documentary-mini-gallery figcaption span,
.planet-gallery-grid figcaption span,
.farmers-series-grid figcaption span,
.calendar-archive-grid figcaption span,
.earthquake-grid figcaption span {
  display: block;
  color: inherit;
  font-weight: 650;
  opacity: 0.82;
}

/* 《迷茫在镜头下再现》现有文件是网页级小图，按原像素附近展示，避免硬放大后发虚。 */
.mimang-gallery {
  max-width: min(680px, calc(100vw - 48px));
}

.mimang-gallery figure,
.mimang-gallery figure.wide {
  width: max-content;
  max-width: min(560px, 100%);
}

.mimang-gallery img,
.mimang-gallery .wide img {
  width: auto;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 640px) {
  .mimang-gallery,
  .daigeng-gallery,
  .steam-gallery,
  .steam-complete-gallery,
  .westnb-gallery,
  .westnb-gallery-feature,
  .harbin-gallery,
  .documentary-mini-gallery,
  .planet-gallery-grid,
  .farmers-series-grid,
  .calendar-archive-grid,
  .earthquake-grid {
    max-width: 100%;
    gap: 28px;
  }
}

.farmer-book-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.farmer-book-choice {
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
}
.farmer-book-choice h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
}
.farmer-book-choice p {
  color: var(--muted);
}
.english-book-image-stack {
  display: grid;
  gap: 12px;
  align-content: start;
}
.english-book-image-stack a {
  display: block;
  background: #f4f1ea;
}
.farmer-book-no-image {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  background: #f4f1ea;
}
@media (max-width: 860px) {
  .farmer-book-choice-grid {
    grid-template-columns: 1fr;
  }
}

.farmer-book-whole-page {
  border-top: 1px solid var(--line);
  padding: clamp(24px, 4vw, 42px) 0;
}
.farmer-book-page-caption {
  width: min(1060px, 100%);
  margin: 0 auto 16px;
}
.farmer-book-page-caption h3,
.farmer-book-page-caption p {
  margin: 0;
}
.farmer-book-page-caption h3 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}
.farmer-book-page-caption p {
  margin-top: 6px;
  color: var(--muted);
}
.farmer-book-full-image {
  display: block;
  width: min(1120px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
}
.farmer-book-full-image img {
  display: block;
  width: 100%;
  height: auto;
}
.farmer-pdf-viewer {
  display: block;
  width: min(1120px, 100%);
  height: min(82vh, 860px);
  min-height: 620px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #fff;
}

.farmer-book-page-note {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-weight: 600;
}

.forest-hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding-top: 112px;
  background: linear-gradient(135deg, #0d1612 0%, #21382f 48%, #f4f4ef 48%, #f4f4ef 100%);
}

.forest-hero-copy {
  color: #fff;
}

.forest-hero-copy h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(3.6rem, 8vw, 8.5rem);
  line-height: 0.9;
}

.forest-hero-copy h1 span {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.45rem, 2.8vw, 2.8rem);
  line-height: 1.15;
}

.forest-hero-copy h1 .en {
  max-width: 760px;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 600;
}

.forest-hero-copy p:not(.eyebrow) {
  max-width: 780px;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.forest-hero-media {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 12px;
}

.forest-hero-media img,
.forest-evaluation-image img {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.forest-hero-media figcaption {
  color: var(--muted);
  font-size: 0.92rem;
}

.forest-fact-grid,
.forest-sample-grid,
.forest-layer-grid,
.forest-ip-grid,
.forest-model-grid,
.forest-path-grid {
  display: grid;
  gap: 18px;
}

.forest-fact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.forest-fact-grid article {
  min-height: 188px;
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.forest-fact-grid span,
.forest-path-grid span {
  display: block;
  color: var(--muted);
}

.forest-fact-grid strong {
  display: block;
  margin: 10px 0;
  color: var(--green);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  line-height: 1;
}

.forest-project-map {
  background: #f4f4ef;
}

.forest-layer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.forest-layer-grid article {
  min-height: 288px;
  padding: clamp(20px, 2.6vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.forest-layer-grid article > span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

.forest-layer-grid h3,
.forest-model-grid h3 {
  margin: 0 0 10px;
  font-size: clamp(1.22rem, 1.8vw, 1.72rem);
  line-height: 1.22;
}

.forest-layer-grid p,
.forest-model-grid p {
  color: var(--muted);
}

.forest-ip-vision {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  background: #fff;
}

.forest-ip-copy h2 {
  margin-top: 0;
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  line-height: 1;
}

.forest-ip-copy p:not(.eyebrow) {
  max-width: 840px;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
}

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

.forest-ip-grid article {
  min-height: 198px;
  padding: 20px;
  background: #f4f4ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.forest-ip-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.forest-ip-grid p {
  margin: 0;
  color: var(--muted);
}

.forest-protection {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  background: #141414;
  color: #fff;
}

.forest-protection p,
.forest-protection-list {
  color: rgba(255, 255, 255, 0.78);
}

.forest-protection-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.forest-protection-list li {
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.forest-commercial {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  background: #fff;
}

.forest-commercial-copy h2 {
  margin-top: 0;
  font-size: clamp(2.2rem, 4.4vw, 5.2rem);
  line-height: 1;
}

.forest-commercial-copy p {
  max-width: 920px;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.forest-commercial-points {
  display: grid;
  gap: 14px;
}

.forest-commercial-points article {
  padding: 20px;
  background: #f4f4ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.forest-commercial-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.forest-commercial-points p {
  margin: 0;
  color: var(--muted);
}

.forest-commercial-models {
  background: #141414;
  color: #fff;
}

.forest-commercial-models .section-heading p,
.forest-commercial-models .forest-model-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.forest-model-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.forest-model-grid article {
  min-height: 276px;
  padding: clamp(20px, 2.5vw, 28px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.forest-model-grid strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.65;
}

.forest-access-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  background: #fff;
}

.forest-access-flow h2 {
  margin-top: 0;
}

.forest-access-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: access-step;
}

.forest-access-steps li {
  counter-increment: access-step;
  position: relative;
  min-height: 126px;
  padding: 20px 20px 20px 72px;
  background: #f4f4ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.forest-access-steps li::before {
  content: counter(access-step);
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.forest-access-steps strong {
  display: block;
  font-size: 1.08rem;
}

.forest-access-steps p {
  margin: 8px 0 0;
  color: var(--muted);
}

.forest-sample-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.forest-sample-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.forest-sample-grid a {
  display: block;
  aspect-ratio: 4 / 3.72;
  background: #ebe8df;
}

.forest-sample-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.forest-sample-grid figcaption {
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.forest-evaluations {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: #fff;
}

.forest-evaluation-image {
  margin: 0;
}

.forest-evaluation-copy h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  line-height: 1;
}

.forest-quote-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.forest-quote-list blockquote {
  margin: 0;
  padding: 18px;
  background: #f4f4ef;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-weight: 700;
}

.forest-next {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

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

.forest-path-grid a {
  min-height: 168px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.forest-path-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.25;
}

@media (max-width: 980px) {
  .forest-hero,
  .forest-commercial,
  .forest-ip-vision,
  .forest-access-flow,
  .forest-protection,
  .forest-evaluations,
  .forest-next {
    grid-template-columns: 1fr;
  }

  .forest-hero {
    background: #183229;
  }

  .forest-hero-media figcaption {
    color: rgba(255, 255, 255, 0.76);
  }

  .forest-fact-grid,
  .forest-sample-grid,
  .forest-layer-grid,
  .forest-ip-grid,
  .forest-model-grid,
  .forest-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .forest-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .forest-fact-grid,
  .forest-sample-grid,
  .forest-layer-grid,
  .forest-ip-grid,
  .forest-model-grid,
  .forest-path-grid {
    grid-template-columns: 1fr;
  }

  .forest-access-steps li {
    padding-left: 64px;
  }
}

.sanyuan-hero {
  background: #17221f;
  color: #fff;
}

.sanyuan-hero .topic-hero-media {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #080808;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.28);
}

.sanyuan-hero .topic-hero-media img {
  max-height: calc(100vh - 176px);
  background: #080808;
}

.sanyuan-hero .topic-hero-media a {
  display: block;
}

.sanyuan-hero .topic-hero-media figcaption {
  background: #0e1412;
  color: rgba(255, 255, 255, 0.76);
}

.sanyuan-hero .topic-hero-copy .eyebrow,
.sanyuan-board-section .eyebrow {
  color: #d8ba75;
}

.sanyuan-hero .topic-hero-copy h1,
.sanyuan-hero .topic-hero-copy h1 span {
  color: #fff;
}

.sanyuan-hero .topic-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.sanyuan-fact-section,
.sanyuan-sequence-section {
  background: #f4f4ef;
}

.sanyuan-concept-section,
.sanyuan-source-section {
  background: #ffffff;
}

.sanyuan-board-section {
  background: #11110f;
  color: #fff;
}

.sanyuan-board-section .section-heading p,
.sanyuan-board-section .section-heading .en {
  color: rgba(255, 255, 255, 0.76);
}

.sanyuan-fact-grid,
.sanyuan-concept-grid,
.sanyuan-source-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 34px auto 0;
}

.sanyuan-concept-grid,
.sanyuan-source-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sanyuan-fact-grid article,
.sanyuan-concept-grid article,
.sanyuan-source-grid article {
  min-height: 190px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sanyuan-concept-grid article {
  background: #f4f4ef;
}

.sanyuan-source-grid article {
  background: #f7f3ea;
}

.sanyuan-fact-grid article > span,
.sanyuan-concept-grid article > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #8f3a29;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.sanyuan-concept-grid article > span {
  color: #2f594e;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.sanyuan-fact-grid h3,
.sanyuan-concept-grid h3,
.sanyuan-source-grid h3 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.sanyuan-fact-grid p,
.sanyuan-concept-grid p,
.sanyuan-source-grid p {
  margin: 0;
  color: var(--muted);
}

.sanyuan-board-gallery,
.sanyuan-gallery {
  display: grid;
  max-width: 1120px;
  gap: clamp(24px, 4vw, 46px);
  margin: 36px auto 0;
}

.sanyuan-board-gallery figure,
.sanyuan-gallery figure {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(20, 18, 15, 0.12);
}

.sanyuan-board-gallery figure {
  background: #090909;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.36);
}

.sanyuan-board-gallery a,
.sanyuan-gallery a,
.sanyuan-gallery img {
  display: block;
}

.sanyuan-board-gallery img,
.sanyuan-gallery img {
  width: 100%;
  height: auto;
  background: #080808;
}

.sanyuan-board-gallery figcaption,
.sanyuan-gallery figcaption {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.sanyuan-board-gallery figcaption {
  color: rgba(255, 255, 255, 0.76);
  background: #0e0e0c;
}

.sanyuan-board-gallery figcaption strong,
.sanyuan-gallery figcaption strong {
  color: var(--ink);
  font-size: 1rem;
}

.sanyuan-board-gallery figcaption strong {
  color: #fff;
}

.sanyuan-sequence-group {
  display: grid;
  gap: 8px;
  padding: 18px 22px;
  background: #17221f;
  color: #fff;
  border-radius: 8px;
}

.sanyuan-sequence-group strong {
  font-size: clamp(1.18rem, 2.4vw, 1.7rem);
}

.sanyuan-sequence-group span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.open-large-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 4px;
  padding: 8px 12px;
  color: #fff;
  background: #8f3a29;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.open-large-link .en {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.open-large-link:hover {
  background: #6f2b1f;
}

.sanyuan-board-gallery .open-large-link {
  color: #11110f;
  background: #d8ba75;
}

.sanyuan-board-gallery .open-large-link:hover {
  background: #f1d48a;
}

.sanyuan-sequence-section .complete-gallery-note {
  background: #ffffff;
  border-left-color: #b5482f;
}

@media (max-width: 980px) {
  .sanyuan-fact-grid,
  .sanyuan-concept-grid,
  .sanyuan-source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sanyuan-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .sanyuan-fact-grid,
  .sanyuan-concept-grid,
  .sanyuan-source-grid {
    grid-template-columns: 1fr;
  }

  .sanyuan-board-gallery,
  .sanyuan-gallery {
    gap: 22px;
  }
}

.album-hero {
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-top: 112px;
  background: #10120f;
  color: #fff;
}

.album-hero-copy {
  max-width: 760px;
}

.album-hero-copy .eyebrow,
.album-proof-section .eyebrow,
.album-preface-section .eyebrow,
.album-print-section .eyebrow {
  color: #d7b96e;
}

.album-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.album-hero-copy h1 span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.5;
  font-weight: 500;
}

.album-hero-copy h1 .en,
.album-hero-copy p .en {
  color: rgba(255, 255, 255, 0.68);
}

.album-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.85;
}

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

.album-cover {
  width: min(100%, 460px);
  margin: 0 auto;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.42);
}

.album-cover a,
.album-cover img {
  display: block;
}

.album-cover img {
  width: 100%;
  height: auto;
}

.album-cover figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.72);
  background: #090a08;
  font-size: 0.92rem;
  line-height: 1.7;
}

.album-fact-strip,
.album-founder-section,
.album-preface-section,
.album-fee-award-section {
  background: #f4f1e9;
}

.album-proof-section,
.album-statement-section,
.album-status-section {
  background: #fff;
}

.album-print-section {
  background: #11110f;
  color: #fff;
}

.album-print-section .section-heading h2,
.album-print-section .section-heading p,
.album-print-section .section-heading .en {
  color: rgba(255, 255, 255, 0.82);
}

.album-fact-grid,
.album-founder-grid,
.album-status-grid,
.album-fee-award-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 34px auto 0;
}

.album-fee-award-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.album-fact-grid article,
.album-founder-grid article,
.album-status-grid article,
.album-fee-award-grid article {
  min-height: 190px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.album-fee-award-grid article {
  background: #11110f;
  color: #fff;
  border-color: rgba(215, 185, 110, 0.28);
}

.album-fact-grid article > span,
.album-founder-grid article > span,
.album-fee-award-grid article > span {
  display: inline-flex;
  color: #9f432f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.album-fee-award-grid article > span {
  color: #d7b96e;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0;
}

.album-founder-grid article {
  background: #11110f;
  color: #fff;
  border-color: rgba(215, 185, 110, 0.24);
}

.album-founder-grid article > span {
  color: #d7b96e;
}

.album-fact-grid h3,
.album-founder-grid h3,
.album-status-grid h3,
.album-fee-award-grid h3 {
  margin: 16px 0 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.album-fact-grid p,
.album-founder-grid p,
.album-status-grid p,
.album-fee-award-grid p {
  margin: 0;
  color: var(--muted);
}

.album-fee-award-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.album-founder-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.album-proof-grid,
.preface-image-pair {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  margin: 34px auto 0;
}

.album-proof-grid figure,
.preface-image-pair figure,
.album-statement-layout figure,
.album-print-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(22, 20, 17, 0.12);
}

.album-proof-grid a,
.album-proof-grid img,
.preface-image-pair img,
.album-statement-layout a,
.album-statement-layout img,
.album-print-gallery a,
.album-print-gallery img {
  display: block;
}

.album-proof-grid img,
.preface-image-pair img,
.album-statement-layout img,
.album-print-gallery img {
  width: 100%;
  height: auto;
}

.album-proof-grid figcaption,
.preface-image-pair figcaption,
.album-statement-layout figcaption,
.album-print-gallery figcaption {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.album-proof-grid figcaption strong,
.album-print-gallery figcaption strong {
  color: var(--ink);
}

.album-ledger {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.album-ledger div {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 18px;
  background: #faf8f1;
}

.album-ledger strong {
  color: #9f432f;
}

.album-ledger span {
  color: var(--muted);
  line-height: 1.55;
}

.preface-card {
  max-width: 1180px;
  margin: 34px auto 0;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(22, 20, 17, 0.08);
}

.preface-card + .preface-card {
  margin-top: 44px;
}

.preface-card-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.preface-card-heading h3 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  line-height: 1.25;
}

.preface-extract {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.preface-source,
.preface-translation {
  padding: clamp(18px, 3vw, 28px);
  background: #fbfaf6;
}

.preface-translation {
  background: #11110f;
  color: #fff;
}

.preface-source h4,
.preface-translation h4 {
  margin: 0 0 16px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.preface-source p,
.preface-translation p {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.9;
}

.preface-translation p {
  color: rgba(255, 255, 255, 0.78);
}

.preface-signature {
  color: #9f432f;
  font-weight: 700;
}

.preface-translation .preface-signature {
  color: #d7b96e;
}

.preface-image-pair {
  margin-top: 24px;
}

.album-statement-layout {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  margin: 34px auto 0;
}

.album-statement-layout blockquote {
  margin: 0;
  padding: clamp(24px, 5vw, 48px);
  background: #f4f1e9;
  border-left: 6px solid #9f432f;
  border-radius: 8px;
}

.album-statement-layout blockquote p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.8;
  font-weight: 700;
}

.album-statement-layout blockquote .en {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.album-statement-layout cite {
  color: #9f432f;
  font-style: normal;
  font-weight: 800;
}

.album-print-gallery {
  display: grid;
  max-width: 1120px;
  gap: clamp(24px, 4vw, 46px);
  margin: 36px auto 0;
}

.album-print-gallery figure {
  background: #070707;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.38);
}

.album-print-gallery figcaption {
  color: rgba(255, 255, 255, 0.76);
  background: #0d0d0b;
}

.album-print-gallery figcaption strong {
  color: #fff;
}

.album-status-grid article {
  min-height: 150px;
  background: #f8f5ee;
}

.album-status-grid strong {
  color: #9f432f;
  font-size: 1.04rem;
}

@media (max-width: 980px) {
  .album-hero,
  .album-statement-layout {
    grid-template-columns: 1fr;
  }

  .album-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .album-cover {
    width: min(100%, 540px);
  }

  .album-fact-grid,
  .album-founder-grid,
  .album-status-grid,
  .album-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .album-fee-award-grid,
  .album-proof-grid,
  .preface-image-pair,
  .preface-extract {
    grid-template-columns: 1fr;
  }

  .preface-card-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .album-fact-grid,
  .album-founder-grid,
  .album-status-grid,
  .album-ledger {
    grid-template-columns: 1fr;
  }

  .album-hero-copy h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .album-hero-actions {
    display: grid;
  }
}

/* Final readability override for the two certificate translations on international-partners.html. */
.readable-certificate-copy,
.international-proof-panel .readable-certificate-copy {
  color: #17120d !important;
  background: #fff8ea !important;
  border-left: 6px solid #8f3a29 !important;
}

.readable-certificate-copy .eyebrow,
.international-proof-panel .readable-certificate-copy .eyebrow {
  color: #8f3a29 !important;
}

.readable-certificate-copy h3,
.international-proof-panel .readable-certificate-copy h3,
.readable-certificate-copy h3 .en,
.international-proof-panel .readable-certificate-copy h3 .en {
  color: #17120d !important;
}

.readable-certificate-copy p,
.international-proof-panel .readable-certificate-copy p,
.readable-certificate-copy p .en,
.international-proof-panel .readable-certificate-copy p .en {
  color: #2c241b !important;
}

.readable-certificate-copy strong,
.international-proof-panel .readable-certificate-copy strong {
  color: #000 !important;
}

.readable-certificate-copy .proof-note,
.international-proof-panel .readable-certificate-copy .proof-note {
  color: #4a2e24 !important;
  background: #efe1ca !important;
  border-left: 4px solid #8f3a29 !important;
}

.readable-certificate-translation,
.partner-evidence-grid .readable-certificate-translation,
.evidence-grid .readable-certificate-translation {
  color: #17120d !important;
  background: #fff8ea !important;
  border: 1px solid rgba(47, 37, 25, 0.28) !important;
  border-left: 6px solid #8f3a29 !important;
}

.readable-certificate-translation h4,
.partner-evidence-grid .readable-certificate-translation h4,
.evidence-grid .readable-certificate-translation h4 {
  color: #17120d !important;
}

.readable-certificate-translation p,
.readable-certificate-translation p strong,
.partner-evidence-grid .readable-certificate-translation p,
.partner-evidence-grid .readable-certificate-translation p strong,
.evidence-grid .readable-certificate-translation p,
.evidence-grid .readable-certificate-translation p strong {
  color: #2c241b !important;
}

.readable-certificate-translation .translation-note,
.partner-evidence-grid .readable-certificate-translation .translation-note,
.evidence-grid .readable-certificate-translation .translation-note {
  color: #4a2e24 !important;
  background: #efe1ca !important;
  border-left: 4px solid #8f3a29 !important;
}

.album-thumb-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #17120d;
}

.album-thumb-strip a,
.album-thumb-strip img {
  display: block;
}

.album-thumb-strip img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #efe8dc;
}

.album-mini-proof-suite {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 16px;
  background: #fbf7ed;
  border: 1px solid rgba(47, 37, 25, 0.16);
  border-radius: 8px;
}

.album-mini-proof-images {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.album-mini-proof-images a,
.album-mini-proof-images img {
  display: block;
}

.album-mini-proof-images img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #efe8dc;
  border: 1px solid rgba(47, 37, 25, 0.12);
}

.album-mini-proof-copy {
  display: grid;
  gap: 10px;
}

.album-mini-proof-copy p {
  margin: 0;
  color: #332a20;
  font-size: 0.95rem;
  line-height: 1.7;
}

.album-mini-proof-copy .en {
  color: #5d5246;
}

.album-evidence-suite {
  display: grid;
  max-width: 1320px;
  gap: 28px;
  margin: 36px auto 0;
  padding: clamp(22px, 4vw, 42px);
  background: #fbf7ed;
  border: 1px solid rgba(47, 37, 25, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(30, 24, 17, 0.1);
}

.album-evidence-suite h3 {
  margin: 0;
  color: #17120d;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.22;
}

.album-evidence-suite > p {
  max-width: 980px;
  margin: 0;
  color: #332a20;
  line-height: 1.85;
}

.album-evidence-grid,
.album-print-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.album-evidence-grid figure,
.album-print-proof-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(47, 37, 25, 0.14);
  border-radius: 8px;
}

.album-evidence-grid a,
.album-evidence-grid img,
.album-print-proof-grid a,
.album-print-proof-grid img {
  display: block;
}

.album-evidence-grid img,
.album-print-proof-grid img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #efe8dc;
}

.album-print-proof-grid img {
  height: 260px;
  background: #11110f;
}

.album-evidence-grid figcaption,
.album-print-proof-grid figcaption {
  display: grid;
  gap: 6px;
  padding: 12px 14px 14px;
  color: #332a20;
  font-size: 0.92rem;
  line-height: 1.6;
}

.album-evidence-grid figcaption strong,
.album-print-proof-grid figcaption strong {
  color: #17120d;
}

.album-readable-prefaces {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.album-readable-prefaces article,
.album-author-poem-proof {
  padding: clamp(18px, 3vw, 28px);
  background: #fff;
  border: 1px solid rgba(47, 37, 25, 0.14);
  border-radius: 8px;
}

.album-readable-prefaces h4,
.album-author-poem-proof h4 {
  margin: 0 0 14px;
  color: #8f3a29;
  font-size: 1.05rem;
}

.album-readable-prefaces p,
.album-author-poem-proof p {
  margin: 0 0 12px;
  color: #332a20;
  line-height: 1.8;
}

.album-readable-prefaces .en,
.album-author-poem-proof .en {
  color: #5d5246;
}

.album-author-poem-proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.album-author-poem-proof img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #efe8dc;
}

@media (max-width: 980px) {
  .album-evidence-grid,
  .album-print-proof-grid,
  .album-readable-prefaces,
  .album-author-poem-proof {
    grid-template-columns: 1fr;
  }

  .album-mini-proof-images,
  .album-thumb-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .poverty-cover-hero,
  .poverty-evidence-suite,
  .poverty-proof-grid,
  .cover-transcript-grid {
    grid-template-columns: 1fr;
  }

  .poverty-cover-hero img,
  .poverty-evidence-suite img {
    max-height: 760px;
  }
}

.speech-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(92px, 12vw, 150px) clamp(22px, 5vw, 76px) clamp(44px, 7vw, 84px);
  background: #111713;
  color: #fff;
}

.speech-hero figure,
.speech-closing figure {
  margin: 0;
}

.speech-hero img,
.speech-closing img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.speech-hero figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.speech-hero .eyebrow {
  color: #e5bb78;
}

.speech-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1.02;
}

.speech-hero h1 span,
.speech-core h2 span,
.speech-bilingual h2 span,
.speech-closing h2 span {
  display: block;
}

.speech-hero h1 span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.35;
}

.speech-hero .lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.75;
}

.speech-audio-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.speech-audio-panel h2,
.speech-audio-panel p {
  margin: 0;
}

.speech-audio-panel p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.speech-audio-panel a:not(.button) {
  color: #f0c982;
}

.speech-audio-panel audio {
  width: 100%;
  min-width: 240px;
}

.speech-fact-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(22, 18, 12, 0.12);
  background: #efe8dc;
}

.speech-fact-strip div {
  min-height: 148px;
  padding: 24px;
  border-right: 1px solid rgba(22, 18, 12, 0.12);
}

.speech-fact-strip span,
.speech-fact-strip strong,
.speech-fact-strip small {
  display: block;
}

.speech-fact-strip span {
  color: #8f3a29;
  font-size: 13px;
  font-weight: 900;
}

.speech-fact-strip strong {
  margin-top: 14px;
  color: #17120d;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
}

.speech-fact-strip small {
  margin-top: 8px;
  color: #665d52;
  line-height: 1.4;
}

.speech-core {
  background: #fff;
}

.speech-quote-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.speech-quote-grid blockquote {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: clamp(24px, 4vw, 44px);
  background: #111713;
  color: #fff;
  border-left: 5px solid #d8a45c;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.speech-quote-grid blockquote.en {
  background: #26362f;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--sans);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
}

.speech-bilingual {
  background: #f6f0e5;
}

.speech-section {
  max-width: 1180px;
  margin: 0 auto 26px;
  padding: clamp(20px, 3vw, 34px);
  background: #fff;
  border: 1px solid rgba(47, 37, 25, 0.14);
  border-radius: 8px;
}

.speech-section h3 {
  margin: 0 0 20px;
  color: #8f3a29;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
}

.speech-section h3 .en {
  display: inline;
  margin-left: 10px;
  color: #665d52;
  font-family: var(--sans);
  font-size: 0.48em;
  font-weight: 800;
}

.speech-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
}

.speech-pair p {
  margin: 0 0 15px;
  color: #2a241d;
  font-size: 16px;
  line-height: 1.9;
}

.speech-pair .en-copy {
  padding-left: clamp(18px, 3vw, 32px);
  border-left: 1px solid rgba(47, 37, 25, 0.16);
}

.speech-pair .en-copy p {
  color: #5d5246;
}

.speech-pair .poem-line,
.speech-pair .signature-line {
  color: #8f3a29;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.speech-closing {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #fff;
}

.speech-closing img {
  max-height: 460px;
}

@media (max-width: 980px) {
  .speech-hero,
  .speech-pair,
  .speech-closing,
  .speech-quote-grid,
  .speech-audio-panel {
    grid-template-columns: 1fr;
  }

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

  .speech-pair .en-copy {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(47, 37, 25, 0.16);
    padding-top: 18px;
  }
}

@media (max-width: 620px) {
  .speech-hero {
    padding-top: 86px;
  }

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

  .speech-section {
    border-radius: 0;
  }
}

.for-my-children-page {
  background: #f4efe6;
  color: #1a1712;
}

.for-my-children-page .site-header {
  border-bottom: 1px solid rgba(246, 240, 229, 0.18);
  background: rgba(16, 15, 12, 0.9);
  color: #fff;
}

.for-my-children-page .site-header .brand,
.for-my-children-page .site-header .site-nav a {
  color: #fff;
}

.for-my-children-page .speech-hero {
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(300px, 0.56fr) minmax(0, 1fr);
  align-items: stretch;
  padding: clamp(104px, 11vw, 156px) clamp(22px, 5vw, 82px) clamp(56px, 7vw, 96px);
  background: #14130f;
  color: #f8f1e6;
}

.for-my-children-page .speech-hero figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-self: stretch;
  min-width: 0;
}

.for-my-children-page .speech-hero img {
  height: 100%;
  max-height: 760px;
  object-fit: contain;
  background: #090908;
  border: 1px solid rgba(248, 241, 230, 0.22);
}

.for-my-children-page .speech-hero figcaption {
  color: rgba(248, 241, 230, 0.68);
}

.for-my-children-page .speech-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.for-my-children-page .speech-hero .eyebrow,
.for-my-children-page .speech-audio-panel .eyebrow,
.for-my-children-page .speech-core .eyebrow,
.for-my-children-page .speech-bilingual .eyebrow,
.for-my-children-page .speech-closing .eyebrow {
  color: #c89d58;
}

.for-my-children-page .speech-hero h1 {
  max-width: 980px;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: 78px;
  font-weight: 500;
}

.for-my-children-page .speech-hero h1 span {
  color: rgba(248, 241, 230, 0.78);
  font-family: var(--sans);
}

.for-my-children-page .speech-hero h1 .en {
  max-width: 900px;
  color: #f2dfbd;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
}

.for-my-children-page .speech-hero .lead {
  max-width: 900px;
  color: rgba(248, 241, 230, 0.78);
  font-size: 22px;
}

.for-my-children-page .speech-hero .lead .en {
  display: block;
  margin-top: 12px;
  color: #f4e6c9;
  font-family: var(--serif);
  font-size: 1.08em;
  line-height: 1.7;
}

.for-my-children-page .speech-hero-actions {
  margin-top: 30px;
}

.for-my-children-page .speech-audio-panel {
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.5fr);
  margin-top: 30px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(248, 241, 230, 0.22);
  border-left: 5px solid #c89d58;
  background: #211e18;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.for-my-children-page .speech-audio-panel h2 {
  color: #fffaf0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.for-my-children-page .speech-audio-panel p {
  max-width: 700px;
  color: rgba(248, 241, 230, 0.76);
}

.for-my-children-page .speech-summary-pair {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(280px, 1.32fr);
  gap: 12px;
  align-items: start;
  margin-top: 14px;
}

.for-my-children-page .speech-summary-pair > div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(248, 241, 230, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.for-my-children-page .speech-summary-pair strong {
  display: block;
  margin-bottom: 8px;
  color: #f5c978;
  font-size: 13px;
  font-weight: 900;
}

.for-my-children-page .speech-summary-pair ul,
.for-my-children-page .speech-closing-cn-summary ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.for-my-children-page .speech-summary-pair li,
.for-my-children-page .speech-closing-cn-summary li {
  position: relative;
  padding-left: 13px;
  color: #fff5e4;
  font-size: 14.5px;
  line-height: 1.46;
}

.for-my-children-page .speech-summary-pair li::before,
.for-my-children-page .speech-closing-cn-summary li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 4px;
  height: 4px;
  background: #f5c978;
  border-radius: 50%;
  content: "";
}

.for-my-children-page .speech-summary-pair .en-copy p {
  margin: 0;
  color: rgba(248, 241, 230, 0.72);
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.58;
}

.for-my-children-page #english-narration .section-actions {
  grid-column: 1 / -1;
}

.for-my-children-page .speech-audio-panel audio {
  min-height: 42px;
}

.for-my-children-page .speech-fact-strip {
  background: #eee4d4;
}

.for-my-children-page .speech-fact-strip div {
  min-height: 136px;
}

.for-my-children-page .speech-fact-strip span,
.for-my-children-page .speech-section h3,
.for-my-children-page .speech-pair .poem-line,
.for-my-children-page .speech-pair .signature-line {
  color: #83502d;
}

.for-my-children-page .speech-core {
  background: #fbf8f2;
}

.for-my-children-page .speech-core .section-heading h2,
.for-my-children-page .speech-bilingual .section-heading h2,
.for-my-children-page .speech-closing h2 {
  color: #1b1711;
  font-family: var(--serif);
  font-weight: 500;
}

.for-my-children-page .speech-core .section-heading h2 .en,
.for-my-children-page .speech-bilingual .section-heading h2 .en,
.for-my-children-page .speech-closing h2 .en {
  margin-top: 12px;
  color: #5f4e3a;
  font-family: var(--serif);
  font-size: 0.78em;
  line-height: 1.35;
}

.for-my-children-page .speech-quote-grid blockquote {
  background: #161510;
  border-left-color: #c89d58;
}

.for-my-children-page .speech-quote-grid blockquote.en {
  background: #23352c;
  font-family: var(--serif);
  font-weight: 500;
}

.for-my-children-page .speech-bilingual {
  background: #efe6d8;
}

.for-my-children-page .speech-section {
  max-width: 1280px;
  margin-bottom: 30px;
  padding: clamp(24px, 3.5vw, 46px);
  background: #fffdf8;
  border: 1px solid rgba(52, 42, 30, 0.16);
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(43, 33, 20, 0.08);
}

.for-my-children-page .speech-section h3 {
  border-bottom: 1px solid rgba(52, 42, 30, 0.16);
  padding-bottom: 16px;
}

.for-my-children-page .speech-section h3 .en {
  color: #756650;
}

.for-my-children-page .speech-pair {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.12fr);
  gap: clamp(26px, 4.4vw, 56px);
}

.for-my-children-page .speech-pair p {
  color: #32291f;
}

.for-my-children-page .speech-pair .cn p {
  color: #574a3a;
  font-size: 15.5px;
  line-height: 1.9;
}

.for-my-children-page .speech-pair .en-copy {
  border-left: 2px solid rgba(131, 80, 45, 0.2);
}

.for-my-children-page .speech-pair .en-copy p {
  color: #211b14;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.78;
}

.for-my-children-page .speech-pair .en-copy .poem-line,
.for-my-children-page .speech-pair .en-copy .signature-line {
  color: #83502d;
  font-size: 24px;
}

.for-my-children-page .speech-closing {
  background: #15130f;
  color: #f8f1e6;
}

.for-my-children-page .speech-closing h2 {
  color: #fffaf0;
}

.for-my-children-page .speech-closing h2 .en {
  color: #f2dfbd;
}

.for-my-children-page .speech-closing p {
  color: rgba(248, 241, 230, 0.76);
}

.for-my-children-page .speech-closing img {
  max-height: 520px;
  object-fit: contain;
  background: #080807;
  border: 1px solid rgba(248, 241, 230, 0.2);
}

.for-my-children-page .speech-closing-cn-summary {
  display: block;
  margin-top: 12px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(248, 241, 230, 0.16);
  color: #fff5e4;
}

.for-my-children-page .speech-closing-cn-summary strong {
  display: block;
  margin-bottom: 8px;
  color: #f5c978;
  font-size: 13px;
  font-weight: 900;
}

.for-my-children-page .speech-closing-cn-summary li {
  font-size: 14px;
  line-height: 1.44;
}

@media (max-width: 1120px) {
  .for-my-children-page .speech-audio-panel {
    grid-template-columns: 1fr;
  }

  .for-my-children-page .speech-summary-pair {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .for-my-children-page .speech-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .for-my-children-page .speech-hero h1 {
    font-size: 60px;
  }

  .for-my-children-page .speech-hero h1 .en {
    font-size: 32px;
  }

  .for-my-children-page .speech-hero .lead {
    font-size: 20px;
  }

  .for-my-children-page .speech-audio-panel h2 {
    font-size: 34px;
  }

  .for-my-children-page .speech-pair .en-copy p {
    font-size: 19px;
  }

  .for-my-children-page .speech-hero img {
    max-height: 680px;
  }

  .for-my-children-page .speech-pair {
    grid-template-columns: 1fr;
  }

  .for-my-children-page .speech-pair .en-copy {
    padding-left: 0;
    border-left: 0;
    border-top: 2px solid rgba(131, 80, 45, 0.2);
    padding-top: 22px;
  }
}

@media (max-width: 620px) {
  .for-my-children-page .speech-hero {
    padding-top: 92px;
  }

  .for-my-children-page .speech-hero h1 {
    font-size: 42px;
    line-height: 1.05;
  }

  .for-my-children-page .speech-hero h1 .en {
    font-size: 24px;
  }

  .for-my-children-page .speech-hero .lead {
    font-size: 17px;
  }

  .for-my-children-page .speech-audio-panel h2 {
    font-size: 30px;
  }

  .for-my-children-page .speech-pair .en-copy p {
    font-size: 18px;
  }

  .for-my-children-page .speech-section {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.trailer-hero {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(94px, 12vw, 150px);
  background: #11110f;
  color: #fff;
}

.trailer-player {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.trailer-player video {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  background: #050505;
}

.trailer-copy .eyebrow {
  color: #d8a45c;
}

.trailer-copy h1,
.trailer-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 78px);
  line-height: 1.05;
}

.trailer-copy h1 span,
.trailer-copy h2 span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.35;
}

.trailer-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.trailer-facts {
  border-top: 0;
}

.trailer-reading {
  background: #f6f0e5;
}

.trailer-note-pair {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px);
  background: #fff;
  border: 1px solid rgba(47, 37, 25, 0.14);
  border-radius: 8px;
}

@media (max-width: 980px) {
  .trailer-hero {
    grid-template-columns: 1fr;
  }
}

.newspaper-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(94px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 84px);
  background: #11110f;
  color: #fff;
}

.newspaper-hero figure,
.newspaper-page figure,
.newspaper-related figure {
  margin: 0;
}

.newspaper-hero img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.newspaper-hero figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.newspaper-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 1.06;
}

.newspaper-hero h1 span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.35;
}

.newspaper-hero .lead {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.newspaper-fact-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(47, 37, 25, 0.12);
  border-bottom: 1px solid rgba(47, 37, 25, 0.12);
  background: #f6f0e5;
}

.newspaper-fact-strip div {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 30px);
  border-right: 1px solid rgba(47, 37, 25, 0.12);
}

.newspaper-fact-strip span,
.newspaper-fact-strip strong,
.newspaper-fact-strip small {
  display: block;
}

.newspaper-fact-strip span {
  color: #7a6c5a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.newspaper-fact-strip strong {
  color: #11110f;
  font-size: clamp(21px, 3vw, 34px);
  line-height: 1.15;
}

.newspaper-fact-strip small {
  color: #7a6c5a;
}

.newspaper-pages {
  background: #f8f5ed;
}

.newspaper-page {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto clamp(32px, 5vw, 64px);
  padding: clamp(18px, 3vw, 30px);
  background: #fff;
  border: 1px solid rgba(47, 37, 25, 0.14);
  border-radius: 8px;
}

.newspaper-page.wide {
  grid-template-columns: minmax(260px, 0.28fr) minmax(0, 1fr);
}

.newspaper-page-copy {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
}

.newspaper-page-copy > span {
  color: #9f432f;
  font-size: 13px;
  font-weight: 900;
}

.newspaper-page h3 {
  margin: 0;
  color: #11110f;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.18;
}

.newspaper-page h3 .en {
  display: block;
  margin-top: 6px;
  color: #706557;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.newspaper-page p {
  margin: 0;
  color: #51483c;
  line-height: 1.75;
}

.newspaper-page img {
  width: 100%;
  max-height: none;
  object-fit: contain;
  background: #f2eee6;
  border: 1px solid rgba(47, 37, 25, 0.16);
}

.newspaper-page a:focus-visible img,
.newspaper-hero a:focus-visible img,
.newspaper-related a:focus-visible img {
  outline: 3px solid #d8a45c;
  outline-offset: 4px;
}

.click-large {
  width: fit-content;
  margin-top: 6px;
  padding: 10px 12px;
  background: #11110f;
  color: #fff;
  border-radius: 6px;
}

.click-large .en {
  color: rgba(255, 255, 255, 0.72);
}

.newspaper-related {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #fff;
}

.newspaper-related img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #f2eee6;
  border: 1px solid rgba(47, 37, 25, 0.14);
}

@media (max-width: 980px) {
  .newspaper-hero,
  .newspaper-page,
  .newspaper-page.wide,
  .newspaper-related {
    grid-template-columns: 1fr;
  }

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

  .newspaper-page-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .newspaper-hero {
    padding-top: 86px;
  }

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

  .newspaper-page {
    border-radius: 0;
  }
}

.ppt-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(94px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 84px);
  background: #16140f;
  color: #fff;
}

.ppt-hero figure {
  margin: 0;
}

.ppt-hero img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ppt-hero figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.ppt-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.06;
}

.ppt-hero h1 span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.35;
}

.ppt-hero .lead {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.ppt-statement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ppt-statement-grid article {
  padding: clamp(18px, 2.4vw, 26px);
  background: #fff;
  border: 1px solid rgba(47, 37, 25, 0.14);
  border-radius: 8px;
}

.ppt-statement-grid article > span {
  color: #9f432f;
  font-size: 13px;
  font-weight: 900;
}

.ppt-statement-grid h3 {
  margin: 12px 0 10px;
  color: #11110f;
  font-size: 22px;
  line-height: 1.25;
}

.ppt-statement-grid h3 .en {
  display: block;
  margin-top: 6px;
  color: #756c60;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.ppt-statement-grid p {
  margin: 0;
  color: #51483c;
  line-height: 1.72;
}

.ppt-proof {
  background: #f8f5ed;
}

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

.ppt-proof-grid figure {
  display: grid;
  grid-template-rows: auto 1fr;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(47, 37, 25, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.ppt-proof-grid figure.primary {
  grid-column: span 2;
}

.ppt-proof-grid a {
  color: inherit;
  text-decoration: none;
}

.ppt-proof-grid img {
  width: 100%;
  height: clamp(260px, 36vw, 520px);
  object-fit: contain;
  background: #eee8dc;
}

.ppt-proof-grid figure.primary img {
  height: clamp(320px, 48vw, 640px);
}

.ppt-proof-grid figcaption {
  display: grid;
  gap: 8px;
  padding: 14px 16px 16px;
}

.ppt-proof-grid figcaption strong {
  color: #11110f;
  font-size: 18px;
}

.ppt-proof-grid figcaption span {
  color: #51483c;
  line-height: 1.6;
}

.ppt-archive-strip {
  background: #fff;
}

.ppt-archive-strip > div {
  max-width: 980px;
}

@media (max-width: 980px) {
  .ppt-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .ppt-hero {
    padding-top: 86px;
  }

  .ppt-statement-grid,
  .ppt-proof-grid {
    grid-template-columns: 1fr;
  }

  .ppt-proof-grid figure.primary {
    grid-column: auto;
  }
}

.pingyao-hero {
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(94px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 84px);
  background: #11110f;
  color: #fff;
}

.pingyao-hero-media img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pingyao-hero-copy h1,
.pingyao-hero-copy h2 {
  margin: 0;
  color: #dfcfae;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.06;
}

.pingyao-hero-copy h1 span,
.pingyao-hero-copy h2 span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
}

.pingyao-hero-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

.pingyao-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.pingyao-stats span {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.pingyao-stats strong {
  color: #dfcfae;
  font-size: 24px;
  line-height: 1;
}

.pingyao-preface {
  background: #f8f5ed;
}

.pingyao-preface-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.pingyao-preface-grid article {
  padding: clamp(20px, 3vw, 34px);
  background: #fff;
  border: 1px solid rgba(47, 37, 25, 0.14);
  border-radius: 8px;
}

.pingyao-preface-grid h3 {
  margin: 0 0 14px;
  color: #9f432f;
  font-size: 22px;
  line-height: 1.25;
}

.pingyao-preface-grid p {
  margin: 0 0 12px;
  color: #3f392f;
  line-height: 1.76;
}

.pingyao-work-list {
  display: grid;
  gap: clamp(22px, 3.4vw, 44px);
}

.pingyao-work-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 3.5vw, 46px);
  align-items: start;
  padding: clamp(18px, 3vw, 32px);
  background: #fff;
  border: 1px solid rgba(47, 37, 25, 0.14);
  border-radius: 8px;
}

.pingyao-work-image {
  display: block;
  background: #eee8dc;
}

.pingyao-work-image img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #eee8dc;
}

.pingyao-work-copy h2 {
  margin: 0 0 8px;
  color: #11110f;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.15;
}

.pingyao-work-copy small {
  display: block;
  margin-bottom: 16px;
  color: #756c60;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.pingyao-caption {
  display: grid;
  gap: 10px;
  color: #3f392f;
}

.pingyao-caption .caption-number {
  width: fit-content;
  padding: 5px 9px;
  color: #fff;
  background: #9f432f;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pingyao-caption h3 {
  margin: 0;
  color: #2f594e;
  font-size: 20px;
  line-height: 1.35;
}

.pingyao-caption p {
  margin: 0;
  line-height: 1.76;
}

.caption-note {
  padding: 10px 12px;
  color: #6a4f2a;
  background: #f7eddc;
  border-left: 3px solid #b49a63;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.65;
}

.pingyao-afterword {
  background: #f8f5ed;
}

@media (max-width: 980px) {
  .pingyao-hero,
  .pingyao-work-card,
  .pingyao-preface-grid {
    grid-template-columns: 1fr;
  }

  .pingyao-work-image img {
    max-height: 76vh;
  }
}

@media (max-width: 620px) {
  .pingyao-hero {
    min-height: auto;
    padding-top: 86px;
  }

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

  .pingyao-work-card {
    padding: 14px;
    border-radius: 0;
  }
}


.miners-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.55fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: stretch;
  min-height: 100vh;
  padding: calc(82px + clamp(18px, 3vw, 34px)) clamp(16px, 4vw, 56px) clamp(26px, 4vw, 56px);
  color: #f7f2e8;
  background: #11110f;
}

.miners-hero figure,
.miners-commercial figure {
  margin: 0;
}

.miners-hero figure {
  display: grid;
  align-content: center;
  gap: 12px;
}

.miners-hero img,
.miners-panorama-image img,
.miners-commercial img {
  width: 100%;
  background: #050505;
  border-radius: 8px;
}

.miners-hero figcaption {
  color: rgba(247, 242, 232, 0.72);
  font-size: 13px;
}

.miners-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.miners-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.98;
}

.miners-hero-copy h1 span {
  display: block;
  margin-top: 12px;
  color: #d8c49a;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.2;
}

.miners-hero-copy p {
  margin: 0;
  color: rgba(247, 242, 232, 0.82);
}

.miners-fact-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 15, 0.12);
  border-bottom: 1px solid rgba(17, 17, 15, 0.12);
  background: #fff;
}

.miners-fact-band div {
  padding: clamp(16px, 2.6vw, 30px);
  border-right: 1px solid rgba(17, 17, 15, 0.12);
}

.miners-fact-band div:last-child {
  border-right: 0;
}

.miners-fact-band span {
  display: block;
  color: #69645c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.miners-fact-band strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.15;
}

.miners-story {
  background: #f4f4ef;
}

.miners-reading-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.miners-reading-grid article {
  padding: clamp(18px, 2.4vw, 28px);
  background: #fff;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 8px;
}

.miners-reading-grid span {
  display: block;
  color: #b5482f;
  font-weight: 900;
}

.miners-reading-grid h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.miners-reading-grid p {
  margin: 0;
  color: #4e4941;
}

.miners-panorama {
  background: #11110f;
  color: #f7f2e8;
}

.miners-panorama .section-heading p,
.miners-panorama .eyebrow {
  color: rgba(247, 242, 232, 0.76);
}

.miners-panorama-image {
  display: block;
  margin-top: clamp(18px, 3vw, 34px);
}

.miners-commercial {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  background: #f8f5ed;
}

.miners-commercial h2 {
  margin-top: 0;
}

@media (max-width: 980px) {
  .miners-hero,
  .miners-commercial {
    grid-template-columns: 1fr;
  }

  .miners-fact-band,
  .miners-reading-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .miners-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .miners-fact-band,
  .miners-reading-grid {
    grid-template-columns: 1fr;
  }

  .miners-fact-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 15, 0.12);
  }
}


.yaqing-page {
  background: #f6f1e8;
  color: #171512;
}

.yaqing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.72fr);
  min-height: 100vh;
  gap: clamp(24px, 4.5vw, 68px);
  align-items: center;
  padding: calc(82px + clamp(18px, 3vw, 34px)) clamp(18px, 5vw, 72px) clamp(30px, 5vw, 72px);
  color: #f8f1e6;
  background:
    linear-gradient(135deg, rgba(21, 17, 13, 0.95), rgba(43, 23, 27, 0.88)),
    #171512;
}

.yaqing-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.yaqing-hero-media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(76vh, 900px);
  height: auto;
  background: #e8dfcf;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.yaqing-hero-copy {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.yaqing-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 94px);
  line-height: 1;
}

.yaqing-hero-copy h1 span {
  display: block;
  margin-top: 12px;
  color: #e8d68f;
  font-size: clamp(21px, 2.4vw, 34px);
  line-height: 1.2;
}

.yaqing-hero-copy p {
  margin: 0;
  color: rgba(248, 241, 230, 0.82);
}

.yaqing-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fffaf1;
  border-bottom: 1px solid rgba(23, 21, 18, 0.12);
}

.yaqing-facts div {
  padding: clamp(16px, 2.6vw, 30px);
  border-right: 1px solid rgba(23, 21, 18, 0.12);
}

.yaqing-facts span {
  display: block;
  color: #74695f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yaqing-facts strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(20px, 2.2vw, 30px);
}

.yaqing-context,
.yaqing-featured,
.yaqing-gallery-group {
  background: #f6f1e8;
}

.yaqing-featured {
  background: #eee6d9;
}

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

.yaqing-context-grid article {
  padding: clamp(18px, 2.4vw, 28px);
  background: #fffaf1;
  border: 1px solid rgba(23, 21, 18, 0.12);
  border-radius: 8px;
}

.yaqing-context-grid h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.yaqing-context-grid p {
  margin: 0;
  color: #4d473f;
}

.yaqing-source-note {
  margin-top: clamp(18px, 3vw, 34px);
  padding-top: 18px;
  border-top: 1px solid rgba(23, 21, 18, 0.14);
}

.yaqing-source-note strong {
  display: block;
  margin-bottom: 8px;
}

.yaqing-source-list {
  margin: 0;
  padding-left: 20px;
}

.yaqing-source-list li {
  margin: 8px 0;
}

.yaqing-source-list a {
  color: #93452d;
  font-weight: 800;
  text-decoration: underline;
}

.yaqing-work-sequence {
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  max-width: 1320px;
  margin: 0 auto;
}

.yaqing-work-item {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(240px, 0.24fr);
  gap: clamp(18px, 3.5vw, 46px);
  align-items: start;
  margin: 0;
  padding-top: clamp(18px, 3vw, 34px);
  border-top: 1px solid rgba(23, 21, 18, 0.16);
}

.yaqing-work-item-featured {
  border-top-color: rgba(147, 69, 45, 0.28);
}

.yaqing-work-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: #e8dfcf;
  border-radius: 6px;
  text-decoration: none;
}

.yaqing-work-media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(82vh, 920px);
  height: auto;
  background: #e8dfcf;
  border-radius: 4px;
}

.yaqing-work-item figcaption {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.yaqing-work-item strong {
  color: #171512;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
}

.yaqing-work-item p {
  margin: 0;
  color: #3f3932;
  line-height: 1.7;
}

.yaqing-work-item small {
  color: #766c60;
  font-size: 12px;
  line-height: 1.55;
}

.yaqing-work-item figcaption .work-number-badge {
  margin-bottom: 1px;
}

@media (max-width: 980px) {
  .yaqing-hero,
  .yaqing-context-grid,
  .yaqing-work-item {
    grid-template-columns: 1fr;
  }

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

  .yaqing-work-item figcaption {
    position: static;
  }
}

@media (max-width: 620px) {
  .yaqing-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .yaqing-hero-media img,
  .yaqing-work-media img {
    max-height: none;
    width: 100%;
  }

  .yaqing-facts {
    grid-template-columns: 1fr;
  }

  .yaqing-facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 21, 18, 0.12);
  }
}

/* Chinese Farmers Testimony homepage */
.testimony-home,
.spirit-page {
  background: #f4f4ef;
}

.testimony-hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 0;
  padding-top: 82px;
  color: #fff;
  background: #11110f;
}

.testimony-hero-media {
  position: relative;
  min-height: calc(100vh - 82px);
  margin: 0;
  background: #11110f;
}

.testimony-hero-media img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 82px);
  object-fit: contain;
  object-position: center;
  padding: clamp(18px, 3vw, 46px);
  background: #11110f;
}

.testimony-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 17, 15, 0.08), rgba(17, 17, 15, 0.64));
}

.testimony-hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  max-width: 760px;
  padding: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px;
}

.testimony-hero-copy {
  display: flex;
  align-self: center;
  flex-direction: column;
  gap: 20px;
  padding: 64px 58px;
}

.testimony-hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: 64px;
  line-height: 1.04;
}

.testimony-hero h1 span {
  display: block;
  margin-top: 16px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.78;
}

.testimony-hero .hero-lede {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.testimony-actions {
  justify-content: flex-start;
}

.testimony-actions .button {
  min-width: 210px;
}

.testimony-stat-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.testimony-stat-strip div {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.testimony-stat-strip div:last-child {
  border-right: 0;
}

.testimony-stat-strip span,
.testimony-stat-strip small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.testimony-stat-strip strong {
  display: block;
  margin: 4px 0;
  font-size: 20px;
}

.testimony-spine-grid,
.testimony-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.testimony-spine-card,
.testimony-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.testimony-spine-card {
  padding: 24px;
}

.testimony-spine-card > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.testimony-spine-card.emphasis > span {
  background: var(--accent);
}

.testimony-spine-card h3,
.testimony-card strong,
.testimony-map h3 {
  margin: 0 0 12px;
  line-height: 1.25;
}

.testimony-spine-card h3 em,
.testimony-card strong span,
.testimony-map h3 span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72em;
  font-style: normal;
  font-weight: 600;
}

.testimony-spine-card p,
.testimony-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.testimony-feature,
.spirit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.testimony-feature figure,
.spirit-hero figure {
  margin: 0;
  background: #11110f;
}

.testimony-feature img,
.spirit-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.testimony-feature figcaption,
.spirit-hero figcaption {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.testimony-feature h2,
.spirit-context h2 {
  margin-top: 0;
  font-size: 40px;
  line-height: 1.16;
}

.testimony-feature p,
.spirit-context p {
  color: var(--muted);
  font-size: 17px;
}

.testimony-card-section.muted-band,
.muted-band {
  background: #e8ece6;
}

.testimony-card-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimony-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.testimony-card:hover,
.testimony-card:focus-visible {
  box-shadow: 0 18px 42px rgba(17, 17, 15, 0.16);
  transform: translateY(-2px);
}

.testimony-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #e8e2d5;
}

.testimony-card strong,
.testimony-card p {
  padding-right: 18px;
  padding-left: 18px;
}

.testimony-card strong {
  margin-top: 16px;
  font-size: 18px;
}

.testimony-card p {
  padding-bottom: 20px;
}

.testimony-card.primary {
  border-color: rgba(181, 72, 47, 0.42);
}

.testimony-map-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.testimony-map-grid section {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.testimony-map a {
  display: block;
  padding: 12px 0;
  color: #243b53;
  border-top: 1px solid rgba(17, 17, 15, 0.1);
  font-weight: 800;
}

.testimony-map a em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.testimony-feature.closing {
  background: #fff;
}

.spirit-hero {
  min-height: 100vh;
  padding: 120px clamp(24px, 5vw, 72px) 64px;
  color: #fff;
  background: #11110f;
}

.spirit-hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.08;
}

.spirit-hero h1 span {
  display: block;
  margin-top: 14px;
  font-size: 26px;
  font-weight: 500;
  opacity: 0.78;
}

.spirit-hero .lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.spirit-bilingual > div {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spirit-bilingual h3 {
  margin-top: 0;
}

.spirit-bilingual p {
  color: #27231f;
  font-size: 18px;
  line-height: 1.85;
}

.spirit-bilingual .signature-line {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .testimony-spine-grid,
  .testimony-card-grid,
  .testimony-card-grid.compact,
  .testimony-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimony-stat-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .testimony-hero,
  .testimony-feature,
  .spirit-hero,
  .spirit-bilingual {
    grid-template-columns: 1fr;
  }

  .testimony-hero {
    min-height: auto;
  }

  .testimony-hero-media,
  .testimony-hero-media img {
    min-height: 58vh;
  }

  .testimony-hero-media::after {
    background: linear-gradient(180deg, rgba(17, 17, 15, 0.08), rgba(17, 17, 15, 0.74));
  }

  .testimony-hero-copy {
    padding: 42px 24px 54px;
  }

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

  .testimony-hero h1 span,
  .spirit-hero h1 span {
    font-size: 22px;
  }

  .testimony-feature h2,
  .spirit-context h2 {
    font-size: 32px;
  }
}

@media (max-width: 620px) {
  .testimony-spine-grid,
  .testimony-card-grid,
  .testimony-card-grid.compact,
  .testimony-map-grid,
  .testimony-stat-strip {
    grid-template-columns: 1fr;
  }

  .testimony-stat-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .spirit-hero {
    padding: 104px 20px 44px;
  }
}

/* Global reader entry */
.global-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(18px, 6vw, 82px) 64px;
  background: #090907;
  color: #fff;
}

.global-hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 70px);
  opacity: 0.58;
}

.global-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.global-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 7, 0.14), rgba(9, 9, 7, 0.88) 48%, rgba(9, 9, 7, 0.96));
  content: "";
}

.global-hero-copy {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(720px, 100%);
}

.global-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
}

.global-hero h1 span {
  display: block;
  margin-top: 18px;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.12;
}

.global-hero .lead,
.global-thesis .section-heading p,
.global-reading-path .section-heading p,
.global-share .section-heading p,
.global-issue-band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.45vw, 21px);
}

.global-proof-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #11110f;
  color: #fff;
}

.global-proof-bar div {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.global-proof-bar span,
.global-door-list a span,
.global-thesis-grid article span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global-proof-bar strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.08;
}

.global-thesis,
.global-share {
  background: #11110f;
  color: #fff;
}

.global-thesis-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.16);
}

.global-thesis-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 40px);
  background: #181814;
}

.global-thesis-grid h3 {
  margin: 28px 0 12px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.1;
}

.global-thesis-grid p,
.share-brief-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.global-reading-path {
  background: #f4f4ef;
}

.global-door-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.global-door-list a {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.global-door-list figure {
  display: grid;
  min-height: 100%;
  margin: 0;
  place-items: center;
  background: #11110f;
}

.global-door-list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.global-door-list div {
  align-self: center;
  padding: clamp(24px, 4vw, 54px);
}

.global-door-list strong {
  display: block;
  margin: 16px 0 12px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
}

.global-door-list p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
}

.global-issue-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: #0f1513;
  color: #fff;
}

.global-issue-band figure {
  display: grid;
  min-height: 520px;
  margin: 0;
  place-items: center;
  background: #070807;
}

.global-issue-band img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
}

.global-issue-band h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.98;
}

.share-brief-panel {
  max-width: 980px;
  margin-top: 34px;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.share-brief-panel p + p {
  margin-top: 18px;
}

.global-gateway {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  background: #151a18;
  color: #fff;
}

.global-gateway h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.04;
}

.global-gateway p {
  max-width: 1060px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1100px) {
  .global-proof-bar,
  .global-thesis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .global-door-list a,
  .global-issue-band,
  .global-gateway {
    grid-template-columns: 1fr;
  }

  .global-gateway .button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .global-hero {
    min-height: 100svh;
    padding: 104px 18px 42px;
  }

  .global-hero-bg {
    opacity: 0.42;
    padding: 72px 8px 24px;
  }

  .global-hero-bg img {
    object-position: center top;
  }

  .global-hero::after {
    background: rgba(9, 9, 7, 0.76);
  }

  .global-hero-copy {
    justify-self: start;
  }

  .global-proof-bar,
  .global-thesis-grid {
    grid-template-columns: 1fr;
  }

  .global-proof-bar div,
  .global-thesis-grid article {
    min-height: auto;
  }

  .global-door-list a {
    min-height: 0;
  }

  .global-door-list figure {
    min-height: 240px;
  }

  .global-issue-band figure {
    min-height: 360px;
  }
}

/* Pingyao project title */
.pingyao-project-title {
  display: grid;
  align-content: end;
  min-height: clamp(280px, 38vh, 430px);
  padding: clamp(108px, 12vw, 156px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 64px);
  background: #11110f;
  color: #fff;
}

.pingyao-project-title h1 {
  max-width: 1180px;
  margin: 0;
  color: #dfcfae;
  font-size: clamp(56px, 8vw, 128px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.pingyao-project-title p {
  margin: clamp(14px, 2vw, 24px) 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(23px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
}

/* Pingyao first-story emphasis */
.pingyao-hero-story {
  grid-template-columns: minmax(0, 1.16fr) minmax(400px, 0.84fr);
  gap: clamp(24px, 3vw, 48px);
}

.pingyao-hero-story .pingyao-hero-media {
  align-self: stretch;
  display: grid;
  gap: 18px;
  min-height: calc(100vh - 180px);
  align-content: center;
}

.pingyao-hero-story .pingyao-hero-media img {
  border-color: rgba(223, 207, 174, 0.34);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.mother-story-images figure {
  display: grid;
  gap: 8px;
  margin: 0;
}

.mother-story-images figcaption {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.pingyao-hero-story .mother-story-primary img {
  max-height: calc(100vh - 170px);
}

.mother-story-context-strip {
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
  background: #11110f;
  color: #fff;
}

.mother-story-context-strip figure {
  display: grid;
  gap: 10px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.mother-story-context-strip img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(223, 207, 174, 0.28);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.36);
}

.mother-story-context-strip figcaption {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.pingyao-story-lead {
  margin-top: 24px;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(223, 207, 174, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.pingyao-story-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.72;
}

.pingyao-story-lead p + p {
  margin-top: 12px;
}

.pingyao-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.pingyao-story-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.pingyao-story-grid span {
  display: block;
  color: #dfcfae;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pingyao-story-grid strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.22;
}

.pingyao-story-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.62;
}

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

@media (max-width: 1180px) {
  .pingyao-hero-story {
    grid-template-columns: 1fr;
  }

  .pingyao-hero-story .pingyao-hero-media {
    min-height: auto;
  }

  .pingyao-hero-story .pingyao-hero-media img {
    max-height: 72vh;
  }
}

@media (max-width: 720px) {
  .pingyao-project-title {
    min-height: 250px;
    padding-top: 96px;
  }

  .pingyao-project-title h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .pingyao-project-title p {
    font-size: clamp(20px, 7vw, 30px);
  }

  .pingyao-story-grid {
    grid-template-columns: 1fr;
  }

  .pingyao-story-lead p {
    font-size: 17px;
  }

}

/* Wang Sha front story */
.wangsha-front {
  background: #f8f5ed;
}

.wangsha-pullquote {
  margin-top: 20px;
  padding: clamp(18px, 2.6vw, 30px);
  border-left: 4px solid var(--accent);
  background: #fff;
  box-shadow: 0 18px 45px rgba(40, 34, 24, 0.08);
}

.wangsha-pullquote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.66;
}

.wangsha-pullquote p + p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.wangsha-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.wangsha-images {
  display: grid;
  gap: 18px;
}

.wangsha-images figure {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 14px;
  background: #11110f;
}

.wangsha-images img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
}

.wangsha-images figure.is-archive-context img {
  max-width: 560px;
  margin-inline: auto;
}

.wangsha-images figcaption {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.wangsha-sleep-note {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 900;
  line-height: 1.25;
}

.wangsha-sleep-note .en-line {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.62em;
  font-weight: 700;
  line-height: 1.35;
}

.pingyao-book-continuation {
  margin: clamp(32px, 5vw, 72px) 0 0;
  padding: clamp(24px, 4vw, 46px);
  border-top: 5px solid #7b2218;
  border-bottom: 1px solid rgba(43, 36, 29, 0.2);
  background: #edf2ee;
  color: #151713;
}

.pingyao-book-continuation .eyebrow {
  color: #7b2218;
}

.pingyao-book-continuation .en,
.pingyao-book-continuation .en-line {
  color: #24342c;
  opacity: 1;
}

.pingyao-book-continuation h2 {
  margin: 0;
  color: #16241d;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.12;
}

.pingyao-book-continuation > p:not(.eyebrow) {
  max-width: 760px;
  color: #2f352f;
  line-height: 1.78;
}

.pingyao-book-facts {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.pingyao-book-facts p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(43, 36, 29, 0.16);
  background: #fff;
  color: #232823;
  line-height: 1.68;
}

.book-difficulty-english {
  display: block;
  margin-top: 10px;
  color: #7b2218;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.22;
}

.farmer-book-publication-note {
  margin: clamp(22px, 3vw, 36px) 0;
  padding: clamp(20px, 3vw, 32px);
  border-left: 4px solid var(--accent);
  background: rgba(223, 207, 174, 0.18);
}

.farmer-book-publication-note h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
}

.farmer-book-publication-note p {
  margin: 0;
  color: #3f392f;
  line-height: 1.78;
}

.farmer-book-publication-note p + p {
  margin-top: 10px;
}

.wangsha-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 20px;
  background: rgba(17, 17, 15, 0.16);
}

.wangsha-facts span {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 16px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.wangsha-facts strong {
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

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

.wangsha-transcript article {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  background: #fff;
}

.wangsha-transcript h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.12;
}

.wangsha-transcript p {
  margin: 0;
  color: #3f392f;
  line-height: 1.86;
}

.wangsha-transcript p + p {
  margin-top: 14px;
}

.wangsha-transcript .source-note {
  color: var(--muted);
  font-size: 14px;
}

.wangsha-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ambient-sound-control {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  top: 92px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(223, 207, 174, 0.42);
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.86);
  color: #fff;
  font: inherit;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.ambient-sound-control:hover,
.ambient-sound-control:focus-visible {
  border-color: rgba(223, 207, 174, 0.8);
  outline: none;
}

.ambient-sound-icon {
  grid-row: auto;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(223, 207, 174, 0.8);
  border-radius: 50%;
}

.ambient-sound-icon::before,
.ambient-sound-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 2px;
  border-radius: 999px;
  background: #dfcfae;
}

.ambient-sound-icon::before {
  top: 6px;
  height: 11px;
}

.ambient-sound-icon::after {
  top: 9px;
  left: 13px;
  height: 7px;
  opacity: 0.72;
}

.ambient-sound-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.ambient-sound-control small {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.1;
}

.ambient-sound-control.is-playing .ambient-sound-icon {
  box-shadow: 0 0 0 4px rgba(223, 207, 174, 0.12);
}

@media (min-width: 641px) {
  .ambient-sound-control:hover {
    grid-template-columns: 1fr;
    width: 44px;
    height: 44px;
    min-height: 0;
    padding: 0;
    border-radius: 50%;
    text-align: center;
  }

  .ambient-sound-control:hover .ambient-sound-icon {
    grid-row: auto;
  }

  .ambient-sound-control:hover .ambient-sound-label,
  .ambient-sound-control:hover small {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 1180px) {
  .wangsha-layout,
  .wangsha-transcript {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .wangsha-facts {
    grid-template-columns: 1fr;
  }

  .ambient-sound-control {
    top: 64px;
    right: 14px;
    bottom: auto;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    min-width: 0;
    padding: 0;
    grid-template-columns: 1fr;
    border-radius: 50%;
    transform: none;
  }

  .ambient-sound-control .ambient-sound-label,
  .ambient-sound-control small {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .ambient-sound-icon {
    grid-row: auto;
  }
}

.work-number-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(43, 36, 29, 0.48);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: none;
}

a .work-number-badge {
  color: rgba(43, 36, 29, 0.48);
  text-decoration: none;
}

.work-card .work-number-badge,
.testimony-card .work-number-badge {
  margin: 0 0 5px;
}

.hero-media .work-number-badge,
.official-proof-media .work-number-badge,
.proof-card-image .work-number-badge,
.pingyao-work-image .work-number-badge {
  margin-left: 0;
}

.oldsite-image-link .work-number-badge {
  margin: 0 0 4px;
  font-size: 10px;
}

.hero-media.has-work-number,
.pingyao-hero-story .pingyao-hero-media.has-work-number,
.testimony-hero-media.has-work-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
}

.hero-media.has-work-number .work-number-badge,
.pingyao-hero-story .pingyao-hero-media.has-work-number .work-number-badge,
.testimony-hero-media.has-work-number .work-number-badge {
  align-self: flex-start;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.48);
}

/* 中国农民自动导览版 / Chinese Farmers guided viewing */
.guided-body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.96), rgba(34, 32, 27, 0.94) 54%, rgba(20, 24, 23, 0.96)),
    #181512;
  color: #f6f0e6;
  overflow-x: hidden;
}

.guided-body button,
.guided-body a {
  letter-spacing: 0;
}

.guided-topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 10px clamp(16px, 3vw, 36px);
  background: rgba(12, 11, 10, 0.72);
  border-bottom: 1px solid rgba(246, 240, 230, 0.13);
  backdrop-filter: blur(18px);
}

.guided-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: #fff8ec;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.08;
  text-decoration: none;
}

.guided-brand span,
.guided-links a span,
.guided-share span,
.guided-start-panel h2 span,
.guided-start-panel .en-line,
.guided-status .en-line {
  display: block;
}

.guided-brand span {
  color: rgba(246, 240, 230, 0.68);
  font-size: 11px;
  font-weight: 700;
}

.guided-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.guided-links a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(246, 240, 230, 0.16);
  border-radius: 6px;
  color: rgba(246, 240, 230, 0.92);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.18;
  text-decoration: none;
}

.guided-links a span {
  color: rgba(246, 240, 230, 0.58);
  font-size: 10px;
  font-weight: 700;
}

.guided-language-switch {
  position: fixed;
  z-index: 31;
  top: 64px;
  left: 0;
  right: 0;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px clamp(12px, 3vw, 34px);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid rgba(246, 240, 230, 0.12);
  backdrop-filter: blur(16px);
}

.guided-language-switch a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  border: 1px solid rgba(246, 240, 230, 0.16);
  border-radius: 6px;
  color: rgba(246, 240, 230, 0.82);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.guided-language-switch a[aria-current="page"],
.guided-language-switch a:hover {
  background: rgba(216, 177, 93, 0.18);
  border-color: rgba(216, 177, 93, 0.46);
  color: #fff8ec;
}

.guided-language-switch .guided-language-all {
  color: #d8b15d;
}

.guided-progress-track {
  position: fixed;
  z-index: 40;
  top: 108px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(246, 240, 230, 0.12);
}

.guided-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #b83f2f, #d8b15d, #75917d);
  transition: width 280ms ease;
}

.guided-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  min-height: 100vh;
  padding-top: 111px;
}

.guided-stage-cinema {
  grid-template-columns: minmax(0, 1fr) 292px;
  grid-template-rows: minmax(0, 1fr) auto;
}

.guided-image-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 67px);
  padding: clamp(14px, 2.6vw, 34px);
}

.guided-stage-cinema .guided-image-side {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: calc(100vh - 250px);
  padding-top: clamp(28px, 4vh, 46px);
  padding-bottom: 0;
}

.guided-image-side a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 162px);
  min-height: 360px;
}

.guided-stage-cinema .guided-image-side a {
  height: calc(100vh - 282px);
  min-height: 420px;
  align-items: flex-start;
}

.guided-image-side img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  box-shadow: none;
  transform-origin: center center;
  opacity: 1;
  filter: grayscale(1) contrast(1.06) brightness(1.03);
  transition: transform 180ms ease;
}

.guided-image-side img:not(.guided-img-corrected) {
  opacity: 1;
}

.guided-img-portrait {
  max-width: 92%;
}

.guided-img-landscape {
  max-width: 100%;
}

.guided-image-caption {
  display: none;
}

.guided-image-caption strong {
  display: block;
  margin: 0 0 4px;
  color: #c7b27c;
  font-size: 14px;
  line-height: 1.28;
}

.guided-image-caption p {
  margin: 0;
  color: rgba(226, 222, 212, 0.78);
  font-size: 13px;
  line-height: 1.48;
}

.guided-copy-side {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 67px);
  padding: clamp(12px, 1.7vw, 18px);
  background: rgba(64, 63, 58, 0.2);
  border-left: 1px solid rgba(154, 151, 141, 0.22);
}

.guided-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(246, 240, 230, 0.6);
  font-size: 12px;
  font-weight: 800;
}

.guided-count [data-guided-number] {
  color: rgba(246, 240, 230, 0.5);
}

.guided-copy-side h1 {
  margin: 0;
  color: #fff8ec;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.guided-en-title {
  margin: 8px 0 20px;
  color: #d8b15d;
  font-size: clamp(15px, 1.55vw, 20px);
  font-weight: 700;
  line-height: 1.22;
}

.guided-body-en .guided-copy-side h1 {
  display: none;
}

.guided-body-en .guided-en-title {
  margin: 0 0 12px;
  max-width: 100%;
  color: #d8b15d;
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 700;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.guided-body-en[data-guided-slide="exhibition-opening"] .guided-en-title {
  margin-bottom: 18px;
  color: #fff8ec;
  font-family: var(--serif);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1.02;
}

.guided-body-en[data-guided-slide="exhibition-opening"] .guided-text-scroll {
  max-height: none;
}

.guided-body-en[data-guided-slide="exhibition-opening"] .guided-en-text {
  color: rgba(246, 240, 230, 0.9);
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.6;
}

.guided-body-en[data-guided-slide="exhibition-opening"] .guided-count [data-guided-number] {
  color: #f5c978;
}

.guided-body-en .guided-start-overlay {
  inset: 0;
  width: auto;
  padding: clamp(22px, 5vw, 58px);
  align-items: flex-end;
  justify-content: flex-start;
  border-left: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.94), rgba(5, 5, 4, 0.42) 42%, rgba(5, 5, 4, 0.72)),
    url("assets/images/farmers-mother-sichuan-twins.jpg?v=20260608_mother_hq") center / contain no-repeat,
    #11100f;
}

.guided-body-en .guided-start-panel {
  width: min(430px, 100%);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.88);
}

.guided-body-en .guided-start-panel h2 {
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.05;
}

.guided-body-en .guided-start-panel h2 span {
  display: block;
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.25;
}

.guided-body-en .guided-start-panel p {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.45;
}

.guided-body-en .guided-start-actions {
  margin-top: 16px;
}

.guided-text-scroll {
  flex: 1;
  min-height: 180px;
  max-height: calc(100vh - 360px);
  overflow: auto;
  padding-right: 8px;
}

.guided-zh-text,
.guided-en-text {
  margin: 0 0 18px;
  color: rgba(255, 248, 236, 0.9);
  font-size: 17px;
  line-height: 1.72;
}

.guided-en-text {
  color: rgba(235, 224, 207, 0.82);
  font-size: 15px;
  line-height: 1.64;
}

.guided-status {
  min-height: 40px;
  margin: 16px 0 12px;
  color: rgba(246, 240, 230, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.guided-status .en-line {
  color: rgba(246, 240, 230, 0.48);
  font-size: 11px;
}

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

.guided-controls button,
.guided-start-panel button {
  min-height: 43px;
  padding: 9px 12px;
  border: 1px solid rgba(246, 240, 230, 0.18);
  border-radius: 6px;
  background: rgba(246, 240, 230, 0.08);
  color: #fff8ec;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.18;
  cursor: pointer;
}

.guided-controls button:hover,
.guided-start-panel button:hover {
  background: rgba(216, 177, 93, 0.22);
  border-color: rgba(216, 177, 93, 0.44);
}

.guided-share,
.guided-ticket-link {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  margin-top: 12px;
  color: rgba(216, 177, 93, 0.92);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.guided-ticket-link {
  padding: 10px 12px;
  border: 1px solid rgba(216, 177, 93, 0.38);
  border-radius: 6px;
  background: rgba(216, 177, 93, 0.1);
  color: #fff8ec;
}

.guided-ticket-link:hover {
  background: rgba(216, 177, 93, 0.18);
}

.guided-ticket-link[hidden] {
  display: none;
}

.guided-share span,
.guided-ticket-link span {
  color: rgba(246, 240, 230, 0.5);
  font-size: 10px;
}

.ticket-body {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(22, 22, 20, 0.92)),
    url("assets/images/farmers-mother-sichuan-twins.jpg?v=20260608_mother_hq") center / contain no-repeat,
    #060606;
  color: #fff8ec;
}

.ticket-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 74px) 0;
}

.ticket-hero {
  display: grid;
  max-width: 860px;
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.ticket-hero h1 {
  margin: 0;
  color: #fff8ec;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.ticket-hero p {
  margin: 0;
  color: rgba(246, 240, 230, 0.78);
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.7;
}

.ticket-hero .ticket-proceeds,
.ticket-card .ticket-inline-note {
  color: rgba(255, 248, 236, 0.92);
  font-weight: 700;
}

.ticket-hero .ticket-fineprint,
.ticket-card .ticket-inline-note {
  font-size: 13px;
  line-height: 1.6;
}

.ticket-hero .ticket-fineprint {
  color: rgba(246, 240, 230, 0.58);
}

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

.ticket-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(246, 240, 230, 0.16);
  border-radius: 8px;
  background: rgba(18, 18, 16, 0.72);
}

.ticket-card.ticket-primary {
  border-color: rgba(216, 177, 93, 0.54);
  background: rgba(58, 49, 31, 0.56);
}

.ticket-card h2 {
  margin: 0 0 12px;
  color: #fff8ec;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
}

.ticket-price {
  margin: 0 0 14px;
  color: #d8b15d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1;
}

.ticket-card p,
.ticket-note p,
.ticket-note li {
  color: rgba(246, 240, 230, 0.75);
  font-size: 14px;
  line-height: 1.65;
}

.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.ticket-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(246, 240, 230, 0.18);
  border-radius: 6px;
  background: rgba(246, 240, 230, 0.08);
  color: #fff8ec;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
}

.ticket-button.ticket-button-primary {
  border-color: rgba(216, 177, 93, 0.5);
  background: #b83f2f;
}

.paypal-button-slot,
.paypal-standard-box {
  margin-top: 14px;
  min-height: 128px;
}

.paypal-standard-box {
  display: grid;
  gap: 10px;
  min-height: 0;
}

.paypal-standard-box form {
  margin: 0;
}

.paypal-standard-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.ticket-legal-footer {
  border-color: rgba(216, 177, 93, 0.28);
}

.ticket-legal-footer p {
  color: rgba(255, 248, 236, 0.88);
  font-weight: 700;
}

.ticket-gated body > *:not(.ticket-gate-overlay) {
  display: none !important;
}

.ticket-gate-overlay {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.96), rgba(5, 5, 4, 0.72)),
    url("assets/images/farmers-mother-sichuan-twins.jpg?v=20260608_mother_hq") center / contain no-repeat,
    #11100f;
  color: #fff8ec;
}

.ticket-gate-panel {
  width: min(760px, 100%);
  display: grid;
  gap: 14px;
}

.ticket-gate-panel h1 {
  margin: 0;
  color: #fff8ec;
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1.02;
}

.ticket-gate-panel p {
  margin: 0;
  color: rgba(246, 240, 230, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.ticket-note {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 240, 230, 0.14);
}

.ticket-note h2 {
  margin: 0;
  color: #d8b15d;
  font-size: 18px;
}

.ticket-note ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 860px) {
  .ticket-grid {
    grid-template-columns: 1fr;
  }
}

.guided-start-overlay {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(28px, 7vw, 86px);
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.94), rgba(5, 5, 4, 0.58) 46%, rgba(5, 5, 4, 0.8)),
    url("assets/images/farmers-mother-sichuan-twins.jpg?v=20260608_mother_hq") center / contain no-repeat,
    #11100f;
}

.guided-start-overlay[hidden] {
  display: none;
}

.guided-start-panel {
  width: min(680px, 100%);
  padding: 0;
  border: 0;
  background: transparent;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.82);
}

.guided-kicker {
  margin: 0 0 12px;
  color: rgba(216, 177, 93, 0.9);
  font-size: 12px;
  font-weight: 850;
}

.guided-start-panel h2 {
  margin: 0;
  color: #fff8ec;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.98;
  letter-spacing: 0;
}

.guided-start-panel h2 span {
  margin-top: 7px;
  color: #d8b15d;
  font-size: clamp(20px, 3vw, 30px);
}

.guided-start-panel p {
  margin: 0 0 22px;
  color: rgba(255, 248, 236, 0.84);
  font-size: 16px;
  line-height: 1.64;
}

.guided-start-panel .en-line {
  margin-top: 8px;
  color: rgba(235, 224, 207, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.guided-start-panel button {
  min-width: 180px;
}

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

.guided-start-actions button {
  margin-top: 0;
}

.guided-start-panel button {
  background: #b83f2f;
  border-color: rgba(255, 248, 236, 0.18);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.guided-start-panel .guided-test-button {
  background: rgba(246, 240, 230, 0.1);
}

.guided-language-gateway {
  min-height: 100vh;
  padding: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(26, 24, 20, 0.96)),
    #050505;
  color: #fff8ec;
}

.guided-language-heading {
  max-width: 1120px;
  margin: 0 auto clamp(24px, 4vw, 44px);
}

.guided-language-heading h1 {
  margin: 0;
  max-width: none;
  color: #fff8ec;
  font-size: clamp(46px, 8vw, 108px);
  line-height: 0.98;
}

.guided-language-heading p:not(.guided-kicker) {
  max-width: 760px;
  color: rgba(246, 240, 230, 0.76);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.72;
}

.guided-language-grid {
  display: grid;
  max-width: 1120px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.guided-language-card {
  display: grid;
  min-height: 230px;
  align-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(246, 240, 230, 0.16);
  border-radius: 8px;
  background: rgba(246, 240, 230, 0.08);
  color: #fff8ec;
  text-decoration: none;
}

.guided-language-card:hover {
  background: rgba(216, 177, 93, 0.16);
  border-color: rgba(216, 177, 93, 0.42);
}

.guided-language-card span {
  color: #d8b15d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.guided-language-card strong {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.guided-language-card small {
  color: rgba(246, 240, 230, 0.68);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.guided-language-footer {
  display: flex;
  max-width: 1120px;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px auto 0;
}

.guided-language-footer a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(246, 240, 230, 0.16);
  border-radius: 6px;
  color: rgba(246, 240, 230, 0.8);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .guided-language-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .guided-language-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .guided-language-grid {
    grid-template-columns: 1fr;
  }

  .guided-language-card {
    min-height: 170px;
  }
}

@media (max-width: 980px) {
  .guided-topbar {
    position: sticky;
  }

  .guided-language-switch {
    position: sticky;
    top: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .guided-progress-track {
    top: 0;
  }

  .guided-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 0;
  }

  .guided-stage-cinema {
    grid-template-rows: auto auto auto;
  }

  .guided-image-side {
    min-height: auto;
    padding: 14px;
  }

  .guided-stage-cinema .guided-image-side {
    grid-column: 1;
    grid-row: 1;
    min-height: auto;
  }

  .guided-image-side a {
    height: min(58vh, 620px);
    min-height: 300px;
  }

  .guided-stage-cinema .guided-image-side a {
    height: min(58vh, 620px);
    min-height: 300px;
  }

  .guided-image-caption {
    grid-column: 1;
    grid-row: 2;
    margin: 0 14px 14px;
  }

  .guided-copy-side {
    grid-column: 1;
    grid-row: 3;
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(154, 151, 141, 0.22);
  }

  .guided-body-en .guided-start-overlay {
    position: fixed;
    inset: 0;
    width: auto;
    min-height: 100vh;
    padding: 18px;
    border-bottom: 0;
  }

  .guided-text-scroll {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .guided-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px;
  }

  .guided-links {
    justify-content: flex-start;
  }

  .guided-links a {
    min-height: 34px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .guided-copy-side {
    padding: 18px 14px 24px;
  }

  .guided-controls {
    grid-template-columns: 1fr;
  }

  .guided-start-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .guided-image-side a {
    height: 48vh;
    min-height: 260px;
  }

  .guided-image-caption {
    max-height: 150px;
    padding: 9px 11px;
  }

  .guided-image-caption p {
    font-size: 13px;
  }

  .guided-start-panel {
    padding: 22px 18px;
  }
}

@media (max-width: 980px) {
  .english-global-home .hero {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .english-global-home .hero-media {
    min-height: 64vh;
    min-height: 64svh;
    padding: 6px 12px 0;
  }

  .english-global-home .hero-media img {
    height: 64vh;
    height: 64svh;
    max-height: 64vh;
    max-height: 64svh;
  }

  .english-global-home .hero-content {
    padding: 22px 18px 34px;
  }
}

@media (max-width: 640px) {
  .english-global-home .hero-media {
    min-height: 60vh;
    min-height: 60svh;
  }

  .english-global-home .hero-media img {
    height: 60vh;
    height: 60svh;
    max-height: 60vh;
    max-height: 60svh;
  }

  .english-global-home .hero-content h1 {
    font-size: 34px;
  }

  .english-global-home .hero-lede {
    font-size: 16px;
  }
}

.guided-body .guided-image-caption {
  display: none !important;
}

.guided-stage-cinema .guided-image-side {
  padding-top: clamp(52px, 5.8vh, 76px);
}

.guided-stage-cinema .guided-image-side a {
  height: calc(100vh - 174px);
  min-height: 500px;
}

@media (max-width: 980px) {
  .guided-stage-cinema .guided-image-side {
    padding-top: 30px;
  }

  .guided-stage-cinema .guided-image-side a {
    height: min(66vh, 690px);
    min-height: 350px;
  }
}

@media (max-width: 640px) {
  .guided-stage-cinema .guided-image-side {
    padding-top: 24px;
  }

  .guided-stage-cinema .guided-image-side a {
    height: 58vh;
    min-height: 300px;
  }
}

