:root {
  --ink: #101116;
  --ink-soft: #171922;
  --paper: #f2f0ea;
  --paper-bright: #fbfaf6;
  --paper-muted: #d8d5cd;
  --line-dark: rgba(16, 17, 22, 0.14);
  --line-light: rgba(255, 255, 255, 0.13);
  --magenta: #ee2b7b;
  --magenta-soft: #ff5a9b;
  --blue: #6c8cff;
  --cyan: #70d7df;
  --green: #a7f0bf;
  --gold: #d7a21d;
  --radius-sm: 0.75rem;
  --radius-md: 1.35rem;
  --radius-lg: 2rem;
  --shell: min(1180px, calc(100vw - 3rem));
  --header-height: 5.2rem;
  --font-display: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  position: fixed;
  z-index: 99;
  inset: 0;
  content: "";
  background: #101116;
}

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

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

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

::selection {
  color: var(--paper-bright);
  background: var(--magenta);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: var(--header-height);
  padding-inline: max(1.5rem, calc((100vw - 1180px) / 2));
  color: var(--paper-bright);
  background: rgba(16, 17, 22, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(16, 17, 22, 0.93);
  box-shadow: 0 0.75rem 2.2rem rgba(0, 0, 0, 0.12);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  color: var(--paper-bright);
  background: linear-gradient(135deg, var(--magenta), #8a2757);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  place-items: center;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a {
  position: relative;
  padding-block: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--magenta-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: #fff;
}

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

.language-toggle {
  display: inline-flex;
  width: max-content;
  padding: 0.55rem 0.75rem;
  justify-self: end;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  align-items: center;
  gap: 0.42rem;
}

.language-option {
  transition: color 160ms ease;
}

.language-option.active {
  color: #fff;
}

.language-divider {
  opacity: 0.35;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 100svh);
  padding-top: calc(var(--header-height) + clamp(4.5rem, 9vw, 8rem));
  padding-bottom: clamp(5rem, 8vw, 7.5rem);
  color: var(--paper-bright);
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.72fr);
  align-items: center;
  gap: clamp(3.5rem, 7vw, 7.5rem);
}

.hero::before {
  position: absolute;
  z-index: -4;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 17, 22, 0.98) 0%, rgba(16, 17, 22, 0.94) 46%, rgba(22, 23, 31, 0.98) 100%),
    var(--ink);
  transform: translateX(-50%);
}

.hero-grid {
  position: absolute;
  z-index: -3;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
  transform: translateX(-50%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(75px);
  opacity: 0.2;
  pointer-events: none;
}

.hero-glow-one {
  top: 8%;
  right: 3%;
  background: var(--magenta);
}

.hero-glow-two {
  bottom: 0;
  left: 18%;
  background: #334eae;
  opacity: 0.13;
}

.eyebrow,
.section-kicker {
  display: flex;
  margin: 0 0 1.4rem;
  color: var(--magenta-soft);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  align-items: center;
  gap: 0.65rem;
}

.signal-dot {
  position: relative;
  display: inline-block;
  width: 0.46rem;
  height: 0.46rem;
  background: var(--magenta-soft);
  border-radius: 50%;
}

.signal-dot::after {
  position: absolute;
  inset: -0.35rem;
  content: "";
  border: 1px solid var(--magenta-soft);
  border-radius: inherit;
  animation: pulse 2.6s ease-out infinite;
}

.hero h1,
.section-heading h2,
.impact-intro h2,
.china-copy h2,
.book-copy h2,
.slow-copy h2,
.expertise-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(3.3rem, 6.1vw, 6.35rem);
}

.hero-intro {
  max-width: 46rem;
  margin: 1.9rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 2.4rem;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.8rem 1.15rem 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--magenta-soft);
}

.button-secondary {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.17);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-stats {
  display: grid;
  max-width: 41rem;
  margin: clamp(3.5rem, 6vw, 6.2rem) 0 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.hero-stats div {
  padding-right: 1.25rem;
  border-right: 1px solid var(--line-light);
}

.hero-stats div:not(:first-child) {
  padding-left: 1.25rem;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.hero-stats dd {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.portrait-frame {
  position: relative;
  min-height: clamp(31rem, 55vw, 42rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    #1b1d26;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17rem 17rem 1.4rem 1.4rem;
  box-shadow: 0 2.8rem 6rem rgba(0, 0, 0, 0.33);
}

.portrait-crop {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    linear-gradient(to top, rgba(16, 17, 22, 0.94) 0%, transparent 36%),
    url("assets/portrait-office.jpg");
  background-repeat: no-repeat;
  background-position:
    center,
    54% center;
  background-size:
    100% 100%,
    cover;
  filter: saturate(0.88) contrast(1.03);
}

.portrait-crop::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, transparent 50%, rgba(238, 43, 123, 0.13));
  mix-blend-mode: screen;
}

.portrait-orbit {
  position: absolute;
  z-index: 1;
  top: 18%;
  left: 50%;
  width: 125%;
  aspect-ratio: 1;
  border: 1px solid rgba(108, 140, 255, 0.36);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.portrait-orbit-two {
  top: 23%;
  width: 90%;
  border-color: rgba(238, 43, 123, 0.34);
  transform: translate(-50%, -50%) rotate(24deg);
}

.portrait-caption {
  position: absolute;
  z-index: 3;
  right: 1.6rem;
  bottom: 1.5rem;
  left: 1.6rem;
  display: flex;
  color: #fff;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.portrait-caption span {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
}

.portrait-caption small {
  max-width: 12rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.63rem;
  text-align: right;
}

.hero-note {
  position: absolute;
  z-index: 4;
  right: -2.2rem;
  bottom: 19%;
  display: flex;
  width: min(14rem, 55%);
  padding: 1.1rem 1.2rem;
  color: var(--ink);
  background: rgba(248, 246, 240, 0.96);
  border-radius: 0.95rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.25);
  flex-direction: column;
}

.hero-note-label {
  color: #6d6d72;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note strong {
  margin: 0.28rem 0 0.12rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
}

.hero-note > span:last-child {
  color: #66666c;
  font-size: 0.66rem;
}

.trust-strip {
  overflow: hidden;
  padding-block: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  background: var(--ink-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.trust-track {
  display: flex;
  width: max-content;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2.4rem);
}

.trust-track i {
  width: 0.27rem;
  height: 0.27rem;
  background: var(--magenta);
  border-radius: 50%;
}

.section-heading {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  align-items: end;
  gap: 3rem;
}

.section-heading h2,
.impact-intro h2,
.china-copy h2,
.book-copy h2,
.slow-copy h2,
.expertise-copy h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 4.65vw, 4.8rem);
}

.section-heading > p,
.impact-intro > p:last-child,
.china-copy > p,
.book-copy > p,
.slow-copy > p,
.expertise-copy > p,
.contact-actions > p {
  margin: 0;
  color: #686870;
  font-size: 1rem;
  line-height: 1.7;
}

.mandate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mandate-card {
  position: relative;
  display: flex;
  min-height: 28rem;
  padding: 1.35rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  flex-direction: column;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.mandate-card::before {
  position: absolute;
  top: -12rem;
  right: -12rem;
  width: 22rem;
  height: 22rem;
  content: "";
  background: radial-gradient(circle, rgba(238, 43, 123, 0.16), transparent 67%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 220ms ease;
}

.mandate-card:hover {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1.5rem 3.5rem rgba(17, 18, 24, 0.1);
  transform: translateY(-5px);
}

.mandate-card:hover::before {
  opacity: 1;
}

.card-number {
  color: #89898f;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.card-icon {
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  margin: 2.5rem 0 3rem;
  color: var(--magenta);
  background: rgba(238, 43, 123, 0.07);
  border: 1px solid rgba(238, 43, 123, 0.21);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.45rem;
  place-items: center;
}

.mandate-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.mandate-card p {
  margin: 0;
  color: #64646b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.mandate-card ul {
  display: flex;
  margin: auto 0 0;
  padding: 1.8rem 0 0;
  list-style: none;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mandate-card li {
  padding: 0.45rem 0.65rem;
  background: rgba(16, 17, 22, 0.05);
  border-radius: 999px;
  font-size: 0.64rem;
}

.impact-section {
  position: relative;
  color: var(--paper-bright);
  background: var(--ink);
}

.impact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 20%, rgba(108, 140, 255, 0.12), transparent 25rem),
    radial-gradient(circle at 85% 70%, rgba(238, 43, 123, 0.12), transparent 28rem);
  pointer-events: none;
}

.impact-intro {
  position: relative;
  max-width: 54rem;
}

.impact-intro > p:last-child {
  max-width: 38rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.impact-grid {
  position: relative;
  display: grid;
  margin-top: clamp(3rem, 6vw, 5rem);
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.impact-card {
  display: flex;
  min-height: 18.5rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  flex-direction: column;
  justify-content: space-between;
}

.impact-card-featured {
  background: var(--magenta);
  border-color: var(--magenta);
}

.impact-context {
  color: rgba(255, 255, 255, 0.49);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.impact-card-featured .impact-context {
  color: rgba(255, 255, 255, 0.7);
}

.impact-card strong {
  margin-top: auto;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.impact-card p {
  max-width: 19rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  line-height: 1.5;
}

.impact-card-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.impact-card-quote {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(108, 140, 255, 0.16), rgba(238, 43, 123, 0.1));
}

.impact-card-quote::after {
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 11rem;
  height: 11rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.impact-card-quote .quote-mark {
  color: var(--magenta-soft);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
}

.impact-card-quote p {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.china-panel {
  display: grid;
  overflow: hidden;
  color: var(--paper-bright);
  background: #181a23;
  border-radius: var(--radius-lg);
  box-shadow: 0 2rem 5rem rgba(17, 18, 24, 0.16);
  grid-template-columns: minmax(0, 1.06fr) minmax(22rem, 0.94fr);
}

.china-map {
  position: relative;
  min-height: 43rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 19% 58%, rgba(112, 215, 223, 0.18), transparent 20rem),
    radial-gradient(circle at 83% 49%, rgba(238, 43, 123, 0.18), transparent 23rem),
    #11131a;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 3.4rem 3.4rem;
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.china-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route {
  fill: none;
  stroke: rgba(255, 255, 255, 0.26);
  stroke-dasharray: 3 9;
  stroke-linecap: round;
  stroke-width: 1.2;
}

.route-two {
  stroke: rgba(238, 43, 123, 0.35);
}

.map-point {
  position: absolute;
  z-index: 2;
  display: flex;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  align-items: center;
  gap: 0.65rem;
}

.map-point i {
  width: 0.62rem;
  height: 0.62rem;
  background: var(--cyan);
  border: 3px solid rgba(112, 215, 223, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 1.4rem var(--cyan);
}

.point-europe {
  top: 57%;
  left: 17%;
}

.point-china {
  top: 50%;
  right: 12%;
}

.point-china i {
  background: var(--magenta-soft);
  border-color: rgba(238, 43, 123, 0.24);
  box-shadow: 0 0 1.4rem var(--magenta);
}

.map-stat {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  width: 10.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  backdrop-filter: blur(12px);
  flex-direction: column;
}

.map-stat strong {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.map-stat span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
}

.china-copy {
  padding: clamp(2.25rem, 5vw, 5rem);
  align-self: center;
}

.china-copy h2 {
  font-size: clamp(2.25rem, 4vw, 4.1rem);
}

.china-copy > p {
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.54);
}

.translation-steps {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.translation-steps li {
  display: grid;
  padding-block: 0.9rem;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
}

.translation-steps > li > span {
  color: var(--magenta-soft);
  font-family: var(--font-display);
  font-size: 0.63rem;
  font-weight: 700;
}

.translation-steps div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.translation-steps strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.translation-steps small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  text-align: right;
}

.journey-section {
  background: var(--paper-bright);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 0.34rem;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line-dark);
}

.timeline article {
  position: relative;
  padding: 2.2rem 1.25rem 0 0;
}

.timeline-dot {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--paper-bright);
  border: 2px solid var(--magenta);
  border-radius: 50%;
}

.timeline small {
  color: var(--magenta);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0.55rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.timeline p {
  max-width: 11rem;
  margin: 0;
  color: #737379;
  font-size: 0.72rem;
  line-height: 1.45;
}

.profile-editorial {
  position: relative;
  display: grid;
  min-height: 24rem;
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 2rem 4rem rgba(17, 18, 24, 0.18);
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.55fr);
}

.profile-editorial img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  object-position: center 42%;
}

.profile-editorial-copy {
  display: flex;
  padding: clamp(2rem, 4vw, 3.5rem);
  background:
    linear-gradient(145deg, rgba(238, 43, 123, 0.12), transparent 58%),
    var(--ink);
  justify-content: space-between;
  flex-direction: column;
}

.profile-editorial-copy > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile-editorial-copy blockquote {
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.book-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.book-visual {
  position: relative;
  max-width: 31rem;
  aspect-ratio: 1;
}

.book-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2rem 4rem rgba(17, 18, 24, 0.23);
}

.book-visual::before {
  position: absolute;
  z-index: -1;
  top: 9%;
  right: -13%;
  width: 92%;
  height: 88%;
  content: "";
  background: var(--magenta);
  border-radius: 1rem;
  opacity: 0.95;
  transform: rotate(4deg);
}

.book-stamp {
  position: absolute;
  right: -2.1rem;
  bottom: 2.5rem;
  display: flex;
  width: 7.5rem;
  height: 7.5rem;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 1rem 2rem rgba(17, 18, 24, 0.2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: rotate(8deg);
}

.book-stamp span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.56rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.book-stamp strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.book-copy h2 em {
  color: var(--magenta);
  font-style: normal;
}

.book-copy blockquote {
  position: relative;
  margin: 2.2rem 0 1.6rem;
  padding-left: 1.5rem;
  color: #303038;
  border-left: 2px solid var(--magenta);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.book-meta {
  display: flex;
  margin-top: 2rem;
  padding-top: 1.25rem;
  color: #78787d;
  border-top: 1px solid var(--line-dark);
  font-size: 0.68rem;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
}

.book-meta span:not(:last-child)::after {
  margin-left: 1.3rem;
  content: "·";
  color: var(--magenta);
}

.book-proof {
  margin-top: 1rem !important;
  color: #8a898d !important;
  font-size: 0.72rem !important;
  line-height: 1.55 !important;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}

.book-actions .text-link {
  margin-top: 1.5rem;
}

.text-link {
  display: inline-flex;
  margin-top: 2rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(16, 17, 22, 0.4);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 650;
  align-items: center;
  gap: 1rem;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--magenta);
  border-color: var(--magenta);
}

.media-section {
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(238, 43, 123, 0.16), transparent 34%),
    #171922;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(26rem, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.media-copy h2 {
  color: #fff;
}

.media-copy > p:last-child {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.62);
}

.media-player {
  overflow: hidden;
  background: #0c0d12;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.35);
}

.media-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0c0d12;
  object-fit: cover;
}

.media-caption {
  display: flex;
  padding: 1rem 1.2rem;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.64rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.slow-section {
  position: relative;
  overflow: hidden;
  background: #e8e5dd;
}

.slow-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(16, 17, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 22, 0.035) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.slow-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.slow-copy {
  position: relative;
  z-index: 1;
}

.slow-copy h2 em {
  color: #a97900;
  font-style: normal;
}

.slow-copy blockquote {
  max-width: 38rem;
  margin: 2.2rem 0 1.6rem;
  padding-left: 1.5rem;
  color: #2d2e33;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 550;
  letter-spacing: -0.028em;
  line-height: 1.42;
}

.slow-copy > p {
  max-width: 42rem;
}

.slow-flow {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.slow-flow span {
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(16, 17, 22, 0.12);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.slow-flow i {
  color: #9c7208;
  font-style: normal;
}

.slow-meta {
  display: flex;
  margin-top: 2rem;
  padding-top: 1.2rem;
  color: #77767a;
  border-top: 1px solid rgba(16, 17, 22, 0.13);
  font-size: 0.7rem;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.slow-meta span:not(:last-child)::after {
  margin-left: 1rem;
  content: "·";
  color: #9c7208;
}

.slow-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 2rem;
}

.slow-visual {
  position: relative;
  width: min(100%, 25rem);
  justify-self: end;
}

.slow-visual::before {
  position: absolute;
  z-index: 0;
  inset: 4% -7% -4% 8%;
  content: "";
  background: var(--gold);
  border-radius: 1rem;
  transform: rotate(-3deg);
}

.slow-cover-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--ink);
  border-radius: 1rem;
  box-shadow: 0 2rem 4rem rgba(16, 17, 22, 0.28);
  transform: rotate(1.2deg);
}

.slow-cover-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.slow-badge {
  position: absolute;
  z-index: 2;
  top: 9%;
  right: -2rem;
  padding: 0.8rem 1rem;
  color: #111218;
  background: var(--gold);
  border: 1px solid rgba(16, 17, 22, 0.14);
  box-shadow: 0 0.8rem 1.8rem rgba(16, 17, 22, 0.18);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.expertise-section {
  color: var(--paper-bright);
  background: #1a1c24;
}

.expertise-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.expertise-copy > p {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.52);
}

.expertise-copy > small {
  display: block;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.66rem;
  line-height: 1.5;
}

.expertise-cloud {
  display: flex;
  padding: 1.2rem;
  background:
    radial-gradient(circle at center, rgba(108, 140, 255, 0.11), transparent 70%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  align-content: center;
  gap: 0.62rem;
}

.tag {
  display: inline-flex;
  min-height: 3.1rem;
  padding: 0.7rem 1rem;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  align-items: center;
}

.tag-large {
  padding-inline: 1.35rem;
  color: #fff;
  font-size: 0.88rem;
}

.tag-accent {
  color: #fff;
  background: rgba(238, 43, 123, 0.15);
  border-color: rgba(238, 43, 123, 0.38);
}

.contact-section {
  position: relative;
  padding-block: clamp(6rem, 10vw, 10rem);
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--magenta);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.085) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.contact-glow {
  position: absolute;
  right: -7rem;
  bottom: -13rem;
  width: 37rem;
  height: 37rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.contact-glow::before,
.contact-glow::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.contact-glow::after {
  inset: 29%;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(21rem, 0.85fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-section .section-kicker {
  color: rgba(255, 255, 255, 0.65);
}

.contact-actions {
  padding: 1.4rem;
  background: rgba(17, 18, 24, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  backdrop-filter: blur(15px);
}

.contact-email {
  display: flex;
  padding-bottom: 1rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-actions > p {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.82rem;
}

.contact-links {
  display: flex;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: #fff;
}

.site-footer {
  display: grid;
  min-height: 5rem;
  padding-inline: max(1.5rem, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.43);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.back-to-top {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  justify-self: end;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  place-items: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: #fff;
}

.foreword-page {
  color: var(--ink);
  background: #f3f0e8;
}

.foreword-page-china .foreword-hero {
  background:
    radial-gradient(circle at 20% 15%, rgba(238, 43, 123, 0.25), transparent 34%),
    #171922;
}

.foreword-page-china .foreword-content .foreword-signature {
  color: var(--magenta);
}

.foreword-header {
  display: flex;
  min-height: 5rem;
  padding-inline: max(1.5rem, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--ink);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.foreword-back {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.foreword-back:hover,
.foreword-back:focus-visible {
  color: #fff;
}

.foreword-hero {
  padding-block: clamp(4rem, 8vw, 8rem);
  color: #fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(206, 149, 0, 0.2), transparent 32%),
    #171922;
}

.foreword-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(15rem, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.foreword-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.3rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.foreword-deck {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.foreword-hero img {
  display: block;
  width: min(100%, 22rem);
  justify-self: end;
  border-radius: 0.7rem;
  box-shadow: 0 2.2rem 5rem rgba(0, 0, 0, 0.42);
  transform: rotate(1.4deg);
}

.foreword-article {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.foreword-content {
  width: min(100% - 2rem, 46rem);
  margin-inline: auto;
}

.foreword-content p {
  margin: 0 0 1.55rem;
  color: #3f4046;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.82;
}

.foreword-content .foreword-lead {
  margin-bottom: 2rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.foreword-content .foreword-signature {
  margin-bottom: 0.2rem;
  color: #a97900;
  font-family: var(--font-display);
  font-weight: 700;
}

.foreword-footer {
  display: flex;
  min-height: 5rem;
  padding-inline: max(1.5rem, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.48);
  background: var(--ink);
  font-size: 0.68rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.foreword-footer a {
  color: #fff;
}

.legal-page {
  color: var(--ink);
  background: #f3f0e8;
}

.legal-main {
  min-height: calc(100svh - 10rem);
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.legal-shell {
  width: min(100% - 2rem, 54rem);
  margin-inline: auto;
}

.legal-heading {
  margin-bottom: clamp(2.8rem, 6vw, 4.8rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-dark);
}

.legal-heading h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-heading p:last-child {
  max-width: 42rem;
  margin: 1.3rem 0 0;
  color: #696970;
}

.legal-content {
  display: grid;
  gap: 2.7rem;
}

.legal-content section {
  padding-bottom: 2.7rem;
  border-bottom: 1px solid var(--line-dark);
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.legal-content h3 {
  margin: 1.6rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

.legal-content p,
.legal-content li,
.legal-address {
  color: #46474d;
  font-size: 0.96rem;
  line-height: 1.75;
}

.legal-content p {
  margin: 0.75rem 0 0;
}

.legal-content ul {
  margin: 0.8rem 0 0;
  padding-left: 1.25rem;
}

.legal-content a {
  color: #ad1556;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.legal-address {
  margin: 0;
  font-style: normal;
}

.legal-note {
  padding: 1rem 1.1rem;
  background: rgba(238, 43, 123, 0.07);
  border-left: 3px solid var(--magenta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-updated {
  margin-top: 3rem;
  color: #7c7c82;
  font-size: 0.72rem;
}

.error-page .legal-main {
  display: grid;
  place-items: center;
}

.error-code {
  display: block;
  color: var(--magenta);
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.error-actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.error-actions .button-secondary {
  color: var(--ink);
  background: rgba(16, 17, 22, 0.04);
  border-color: rgba(16, 17, 22, 0.2);
}

.error-actions .button-secondary:hover,
.error-actions .button-secondary:focus-visible {
  background: rgba(16, 17, 22, 0.08);
  border-color: rgba(16, 17, 22, 0.38);
}

.reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-one {
  transition-delay: 100ms;
}

.reveal-delay-two {
  transition-delay: 200ms;
}

@keyframes pulse {
  0% {
    opacity: 0.85;
    transform: scale(0.7);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

@media (max-width: 1060px) {
  :root {
    --shell: min(100% - 2.5rem, 900px);
  }

  .site-header {
    padding-inline: 1.25rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1.08fr) minmax(17rem, 0.72fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 7.3vw, 5.4rem);
  }

  .hero-note {
    right: -1rem;
  }

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

  .mandate-card:last-child {
    grid-column: 1 / -1;
    min-height: 23rem;
  }

  .china-panel {
    grid-template-columns: 1fr;
  }

  .china-map {
    min-height: 28rem;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline article {
    padding-top: 1.7rem;
    border-top: 1px solid var(--line-dark);
  }

  .book-grid {
    gap: 4rem;
  }

  .slow-grid {
    gap: 4rem;
  }

  .media-grid {
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 4.6rem;
    --shell: min(100% - 2rem, 680px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
    backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    cursor: pointer;
    place-content: center;
    gap: 0.32rem;
  }

  .brand,
  .menu-toggle,
  .language-toggle {
    position: relative;
    z-index: 103;
  }

  body.menu-open .menu-toggle {
    position: fixed;
    top: 1rem;
    right: 6.8rem;
    z-index: 1000;
  }

  body.menu-open .language-toggle {
    position: fixed;
    top: 1.1rem;
    right: 1.25rem;
    z-index: 1000;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 0.95rem;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(0.18rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-0.18rem) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 7rem 2rem 3rem;
    visibility: hidden;
    background: rgba(16, 17, 22, 0.985);
    opacity: 0;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.3rem;
    transition:
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    width: 100%;
    padding-block: 0.75rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.6rem;
    letter-spacing: -0.035em;
  }

  .site-nav a::after {
    display: none;
  }

  .language-toggle {
    z-index: 102;
    grid-column: 3;
    grid-row: 1;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    padding-top: calc(var(--header-height) + 4rem);
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(3rem, 12vw, 5.3rem);
  }

  .hero-visual {
    width: min(28rem, 90%);
    margin: 0 auto;
  }

  .portrait-frame {
    min-height: 37rem;
  }

  .section-heading,
  .contact-grid,
  .expertise-layout,
  .media-grid,
  .foreword-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .section-heading > p {
    max-width: 34rem;
  }

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

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

  .book-visual {
    width: min(23rem, 90%);
    margin-inline: auto;
  }

  .book-copy {
    max-width: 40rem;
  }

  .slow-copy {
    max-width: 42rem;
  }

  .slow-visual {
    width: min(23rem, 84%);
    margin-inline: auto;
    justify-self: center;
  }

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

  .profile-editorial-copy {
    min-height: 16rem;
  }

  .foreword-hero img {
    width: min(19rem, 68%);
    justify-self: start;
  }

  .site-footer {
    padding-block: 1.2rem;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }

  .site-footer .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .site-footer .back-to-top {
    grid-column: 2;
    grid-row: 1;
  }

  .foreword-footer {
    padding-block: 1.2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 1.5rem);
  }

  .brand-name {
    display: none;
  }

  .slow-badge {
    top: 6%;
    right: -0.75rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 3rem);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14.4vw, 4rem);
  }

  .hero-intro {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-stats div,
  .hero-stats div:not(:first-child) {
    display: grid;
    padding: 0 0 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    grid-template-columns: 6.5rem 1fr;
    align-items: end;
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .hero-stats dd {
    padding-bottom: 0.3rem;
  }

  .hero-visual {
    width: 100%;
  }

  .portrait-frame {
    min-height: 34rem;
  }

  .hero-note {
    right: 0.6rem;
    bottom: 18%;
  }

  .trust-track {
    padding-inline: 1rem;
    animation: marquee 30s linear infinite;
  }

  .mandate-grid,
  .impact-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .mandate-card,
  .mandate-card:last-child {
    min-height: 25rem;
    grid-column: auto;
  }

  .impact-card {
    min-height: 16rem;
  }

  .china-map {
    min-height: 22rem;
  }

  .map-stat {
    right: 1rem;
    bottom: 1rem;
  }

  .china-copy {
    padding: 1.4rem;
  }

  .translation-steps div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .translation-steps small {
    text-align: left;
  }

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

  .profile-editorial img {
    min-height: 17rem;
  }

  .profile-editorial-copy {
    min-height: 14rem;
  }

  .timeline article {
    padding-left: 0;
  }

  .timeline p {
    max-width: 20rem;
  }

  .book-stamp {
    right: -0.5rem;
    width: 6.6rem;
    height: 6.6rem;
  }

  .book-meta span:not(:last-child)::after {
    display: none;
  }

  .media-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .foreword-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .expertise-cloud {
    padding: 0.8rem;
  }

  .tag,
  .tag-large {
    min-height: 2.75rem;
    padding-inline: 0.78rem;
    font-size: 0.66rem;
  }

  .contact-email {
    font-size: 0.98rem;
  }

  .contact-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes marquee {
  to {
    transform: translateX(-35%);
  }
}

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

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

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