@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700;1,800&family=Inter:wght@400;500;600&display=swap");

:root {
  --ink: #0a0a0a;
  --ink-soft: #171717;
  --paper: #f1eee7;
  --paper-bright: #f8f5ee;
  --red: #ef321f;
  --red-deep: #ca1c10;
  --silver: #b9b9b3;
  --line: rgba(10, 10, 10, 0.18);
  --line-light: rgba(255, 255, 255, 0.24);
  --display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --cn: "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --shell: min(1480px, calc(100vw - 88px));
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

body.menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

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

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

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

.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: 2000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: white;
  background: var(--red);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.locale-en {
  display: contents !important;
}

.locale-zh {
  display: none !important;
  font-family: var(--cn);
}

body[data-lang="zh"] .locale-en {
  display: none !important;
}

body[data-lang="zh"] .locale-zh {
  display: contents !important;
}

.page-progress {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 44px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 250ms ease, height 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 43px;
  height: 43px;
  overflow: hidden;
  border: 1px solid currentColor;
}

.brand-mark span {
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark span:first-child {
  color: white;
  background: var(--red);
}

.brand-name {
  font-size: 9px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: white;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 4px;
  color: white;
  border: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.toggle-line {
  width: 17px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.toggle-current {
  color: rgba(255, 255, 255, 0.46);
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 43px;
  padding: 0 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.nav-contact:hover {
  color: var(--ink);
  background: white;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 1px;
  background: white;
  transition: transform 240ms ease, top 240ms ease;
}

.menu-toggle > span:first-child {
  top: 17px;
}

.menu-toggle > span:nth-child(2) {
  top: 25px;
}

.menu-open .menu-toggle > span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle > span:nth-child(2) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: -1;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: var(--ink);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 120px 32px 30px;
}

.mobile-menu-label {
  margin: 0 0 28px;
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.mobile-menu nav {
  border-top: 1px solid var(--line-light);
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu nav span {
  color: var(--red);
  font-size: 10px;
}

.mobile-menu nav strong {
  font-family: var(--display);
  font-size: clamp(34px, 9vw, 52px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-menu nav em {
  font-family: var(--cn);
  font-size: 12px;
  font-style: normal;
  opacity: 0.52;
}

.mobile-menu-foot {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 30px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  color: white;
  background: #060606;
}

.hero-media,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  will-change: transform;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 28%, rgba(0, 0, 0, 0.14) 60%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76) 0%, transparent 35%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-position: center center;
  background-size: calc((100vw - 88px) / 6) 100%, calc((100vw - 88px) / 6) 100%;
  mask-image: linear-gradient(90deg, black, transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: end;
  min-height: max(760px, 100svh);
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 110px;
}

.hero-copy {
  align-self: center;
  max-width: 880px;
  padding-top: 42px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.signal {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(239, 50, 31, 0.16);
}

.signal::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid var(--red);
  border-radius: inherit;
  animation: signal 2.2s ease-out infinite;
}

@keyframes signal {
  0% { transform: scale(0.5); opacity: 0.8; }
  80%, 100% { transform: scale(2.1); opacity: 0; }
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(86px, 10.5vw, 174px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 > .locale,
.hero h1 .locale > span {
  display: block;
}

body[data-lang="zh"] .hero h1 {
  font-family: var(--cn);
  font-size: clamp(64px, 7.7vw, 126px);
  font-style: normal;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-title-en > span:nth-child(2),
.hero-title-zh > span:nth-child(2) {
  padding-left: 1.24em;
}

.outline-word {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.82);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 430px) auto;
  align-items: end;
  gap: 32px;
  max-width: 820px;
  margin-top: 42px;
}

.hero-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

body[data-lang="zh"] .hero-bottom p {
  font-family: var(--cn);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.button-red {
  color: white;
  background: var(--red);
}

.button-red:hover {
  color: var(--ink);
  background: var(--paper-bright);
}

.button-ivory {
  color: var(--ink);
  background: var(--paper-bright);
}

.button-ivory:hover {
  color: white;
  background: var(--red);
}

.button-arrow {
  font-size: 17px;
  font-weight: 400;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0 6px;
  color: white;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-status {
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  padding: 15px 0 15px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.status-index {
  align-self: start;
  color: var(--red);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-status div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-status strong,
.hero-status div > span {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero-status div > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.status-pulse {
  width: 7px;
  height: 7px;
  margin-right: 15px;
  border-radius: 50%;
  background: var(--red);
}

.hero-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 52px;
  padding: 0 40px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.hero-rail i {
  width: clamp(25px, 6vw, 90px);
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--red);
  border-block: 1px solid var(--ink);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 68px;
  animation: ticker 24s linear infinite;
}

.ticker span {
  padding-inline: 26px;
  font-family: var(--display);
  font-size: 32px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ticker b {
  color: var(--ink);
  font-size: 14px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* Shared sections */
.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.section-kicker-dark {
  border-color: var(--line-light);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* Agency */
.agency {
  position: relative;
  overflow: hidden;
  padding: 104px 0 126px;
}

.agency::before {
  position: absolute;
  top: 60px;
  right: -0.03em;
  content: "LD";
  color: rgba(10, 10, 10, 0.025);
  font-family: var(--display);
  font-size: 46vw;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.agency-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  gap: 40px;
  padding: 92px 0 88px;
}

.agency-cn {
  margin: 0 0 12px;
  font-family: var(--cn);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.agency-heading h2,
.capabilities-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(74px, 8.8vw, 138px);
  font-weight: 800;
  line-height: 0.77;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.agency-heading h2 em,
.capabilities-head h2 em {
  color: var(--red);
  font-style: italic;
  font-weight: 700;
}

body[data-lang="zh"] .agency-heading h2,
body[data-lang="zh"] .capabilities-head h2 {
  font-family: var(--cn);
  font-size: clamp(56px, 6.4vw, 100px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.agency-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: 10%;
  align-items: stretch;
}

.mandate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.mandate-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  content: "";
  border-right: 55px solid var(--red);
  border-top: 55px solid transparent;
}

.card-corner,
.mandate-foot {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.mandate-mark {
  position: absolute;
  right: -16px;
  bottom: -62px;
  color: transparent;
  font-family: var(--display);
  font-size: 330px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.14em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
}

.mandate-card p {
  position: relative;
  z-index: 2;
  max-width: 490px;
  margin: auto 0 32px;
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

body[data-lang="zh"] .mandate-card p {
  font-family: var(--cn);
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.3;
}

.mandate-foot {
  color: rgba(255, 255, 255, 0.48);
}

.agency-copy {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.agency-copy p {
  max-width: 540px;
  margin: 0 0 24px;
  color: rgba(10, 10, 10, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.agency-copy .lead {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

body[data-lang="zh"] .agency-copy .lead {
  font-family: var(--cn);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.4;
}

body[data-lang="zh"] .agency-copy p:not(.lead) {
  font-family: var(--cn);
}

.arrow-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 18px 0 10px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.arrow-link span:last-child {
  font-size: 18px;
  transition: transform 180ms ease;
}

.arrow-link:hover span:last-child {
  transform: translate(3px, 3px);
}

.principles {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles > div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  padding: 24px 28px 24px 0;
}

.principles > div:not(:first-child) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.principles span {
  grid-row: 1 / 3;
  color: var(--red);
  font-family: var(--display);
  font-size: 11px;
}

.principles strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.principles em {
  margin-top: 5px;
  font-family: var(--cn);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.1em;
  opacity: 0.45;
}

/* Race */
.race {
  position: relative;
  overflow: hidden;
  padding: 106px 0 140px;
  color: white;
  background: var(--ink);
}

.race::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  content: "";
  background: var(--red);
}

.race-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: linear-gradient(90deg, white 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
}

.race .shell {
  position: relative;
}

.race-heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 68px 0 72px;
}

.race-title-wrap {
  position: relative;
}

.title-slash {
  position: absolute;
  z-index: -1;
  top: -20px;
  left: 32%;
  width: 18px;
  height: 112%;
  background: var(--red);
  transform: rotate(16deg);
}

.race-heading h2 {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(88px, 11.2vw, 180px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.65;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.race-heading h2 > span:nth-child(2) {
  position: absolute;
  top: 39%;
  left: 48%;
  padding: 4px 12px 6px;
  color: white;
  background: var(--red);
  font-size: 0.18em;
  line-height: 1;
  letter-spacing: 0;
  transform: rotate(-7deg);
}

.race-cn {
  margin: 0 0 2px;
  font-family: var(--cn);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.race-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.8fr);
  align-items: stretch;
  gap: clamp(40px, 6.4vw, 104px);
}

.race-image {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  background: #28130f;
}

.race-image::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  content: "";
  background: linear-gradient(135deg, transparent 50%, var(--red) 51%);
}

.race-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.race-image:hover img {
  transform: scale(1.025);
}

.race-image figcaption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.race-story {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 0 0;
}

.race-story-tag {
  color: var(--red);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.race-story h3 {
  margin: 38px 0 28px;
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 65px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

body[data-lang="zh"] .race-story h3 {
  font-family: var(--cn);
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.25;
}

.race-story > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

body[data-lang="zh"] .race-story > p {
  font-family: var(--cn);
  line-height: 1.9;
}

.race-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 30px 0 44px;
}

.race-tags span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey {
  display: grid;
  grid-template-columns: 0.72fr 2fr;
  gap: 10%;
  margin-top: 130px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.journey-intro > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.journey-intro p {
  max-width: 270px;
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.12;
}

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

.journey-list li {
  display: grid;
  grid-template-columns: 36px minmax(160px, 0.8fr) 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: padding 200ms ease, background 200ms ease;
}

.journey-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.journey-list li:hover {
  padding-right: 13px;
  padding-left: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.journey-list li > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 10px;
}

.journey-list div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.journey-list strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
}

.journey-list em {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--cn);
  font-size: 10px;
  font-style: normal;
}

.journey-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
}

.journey-list b {
  color: var(--red);
  font-size: 18px;
  font-weight: 400;
}

/* Capabilities */
.capabilities {
  position: relative;
  padding: 112px 0 120px;
  overflow: hidden;
}

.capabilities-head {
  display: grid;
  grid-template-columns: 2fr 0.7fr;
  align-items: end;
  gap: 70px;
  padding: 86px 0 80px;
}

.capabilities-head h2 {
  font-size: clamp(70px, 8vw, 126px);
}

.capabilities-head > p {
  margin: 0 0 4px;
  padding-left: 22px;
  color: rgba(10, 10, 10, 0.58);
  border-left: 2px solid var(--red);
  font-size: 13px;
  line-height: 1.7;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.capability-card {
  position: relative;
  min-height: 400px;
  padding: 25px 25px 27px;
  overflow: hidden;
  transition: color 220ms ease, background 220ms ease;
}

.capability-card:not(:first-child) {
  border-left: 1px solid var(--line);
}

.capability-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 80px;
  height: 80px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.13;
  transition: transform 300ms ease;
}

.capability-card:hover {
  color: white;
  background: var(--ink);
}

.capability-card:hover::after {
  transform: scale(1.9);
}

.capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--red);
  font-family: var(--display);
  font-size: 11px;
}

.cap-icon {
  font-size: 25px;
  font-weight: 400;
}

.capability-card h3 {
  margin: 88px 0 25px;
  font-family: var(--display);
  font-size: clamp(33px, 3vw, 46px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.capability-card p {
  max-width: 250px;
  margin: 0;
  color: rgba(10, 10, 10, 0.55);
  font-size: 12px;
  line-height: 1.65;
  transition: color 220ms ease;
}

.capability-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.capability-card em {
  position: absolute;
  right: 25px;
  bottom: 26px;
  left: 25px;
  font-family: var(--cn);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.09em;
  opacity: 0.46;
}

.manifesto {
  position: relative;
  margin-top: 128px;
  padding: 30px 0 22px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.manifesto-label {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.manifesto blockquote {
  margin: 58px 0 50px;
  font-family: var(--display);
  font-size: clamp(72px, 9.8vw, 154px);
  font-weight: 800;
  line-height: 0.76;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.manifesto blockquote em {
  color: var(--red);
  font-style: italic;
}

body[data-lang="zh"] .manifesto blockquote {
  font-family: var(--cn);
  font-size: clamp(56px, 7.6vw, 118px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.manifesto-seal {
  position: absolute;
  right: 0;
  bottom: 25px;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  padding-top: 3px;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-align: center;
}

/* Contact */
.contact {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  color: white;
  background: var(--red);
}

.contact::after {
  position: absolute;
  right: -15vw;
  bottom: -32vw;
  width: 66vw;
  height: 66vw;
  content: "";
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 5vw rgba(0, 0, 0, 0.035), 0 0 0 10vw rgba(0, 0, 0, 0.025);
}

.contact-track {
  position: absolute;
  top: 40%;
  left: -5%;
  display: flex;
  gap: 1em;
  width: max-content;
  color: transparent;
  font-family: var(--display);
  font-size: 20vw;
  font-style: italic;
  font-weight: 900;
  line-height: 0.7;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  transform: rotate(-4deg);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.18);
}

.contact-track span:nth-child(even) {
  font-family: var(--cn);
  font-size: 0.66em;
  font-style: normal;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 740px;
  padding: 62px 0 46px;
}

.contact-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.45);
  color: rgba(0, 0, 0, 0.72);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.contact-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  margin: auto 0;
}

.contact h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(76px, 9.5vw, 150px);
  font-weight: 900;
  line-height: 0.76;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.contact h2 em {
  color: white;
  font-style: italic;
}

body[data-lang="zh"] .contact h2 {
  font-family: var(--cn);
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 700;
  line-height: 1;
}

.contact-button {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  width: clamp(190px, 17vw, 260px);
  height: clamp(190px, 17vw, 260px);
  padding: 34px;
  color: white;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  text-align: left;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.contact-button > span {
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-button b {
  align-self: flex-start;
  font-size: 22px;
  font-weight: 400;
}

.contact-button:hover {
  color: var(--ink);
  background: transparent;
  transform: rotate(-5deg);
}

.contact-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.45);
  color: var(--ink);
}

.contact-foot p {
  max-width: 370px;
  margin: 0;
  font-size: 11px;
}

.contact-foot a {
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: clamp(21px, 2.2vw, 33px);
  font-weight: 700;
}

/* Footer */
.site-footer {
  color: white;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 130px;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.back-to-top {
  justify-self: end;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.back-to-top span {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-left: 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Dialog */
.inquiry-dialog {
  width: min(1080px, calc(100vw - 42px));
  max-width: none;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: var(--paper-bright);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.52);
}

.inquiry-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.inquiry-dialog[open] {
  animation: dialog-in 280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 600px;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 3px;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.dialog-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px 42px;
  overflow: hidden;
  color: white;
  background: var(--red);
}

.dialog-intro::after {
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  content: "";
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(0, 0, 0, 0.05), 0 0 0 90px rgba(0, 0, 0, 0.035);
}

.dialog-intro > span {
  color: var(--ink);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.dialog-intro h2 {
  position: relative;
  z-index: 1;
  margin: auto 0 35px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(57px, 6vw, 82px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.dialog-intro h2 em {
  color: white;
  font-style: italic;
}

body[data-lang="zh"] .dialog-intro h2 {
  font-family: var(--cn);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.04;
}

.dialog-intro p {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  line-height: 1.65;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 26px 20px;
  padding: 60px 60px 45px;
}

.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.inquiry-form label > span {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 10px 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.35);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
  transition: border-color 180ms ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-bottom-color: var(--red);
}

.inquiry-form textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-submit-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 22px !important;
  margin-top: 6px;
}

.form-note {
  max-width: 190px;
  margin: 0;
  color: rgba(10, 10, 10, 0.48);
  font-size: 9px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 56px, 1480px);
  }

  .site-header {
    padding: 0 28px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    background-size: calc((100vw - 56px) / 4) 100%;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

  .hero h1 {
    font-size: clamp(82px, 11.6vw, 128px);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .race-feature {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
    gap: 42px;
  }

  .race-image {
    min-height: 500px;
  }

  .capability-card {
    min-height: 380px;
    padding-inline: 20px;
  }

  .capability-card h3 {
    font-size: 34px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-contact {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    align-content: end;
    padding-bottom: 92px;
  }

  .hero-copy {
    align-self: end;
    max-width: 690px;
  }

  .hero h1 {
    font-size: clamp(76px, 15vw, 124px);
  }

  .hero-status {
    display: none;
  }

  .agency-heading {
    grid-template-columns: 0.5fr 2fr;
    padding-block: 76px;
  }

  .agency-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .agency-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
  }

  .agency-copy .lead {
    grid-column: 1 / -1;
    max-width: 700px;
  }

  .agency-copy .arrow-link {
    align-self: end;
  }

  .race-feature {
    grid-template-columns: 1fr;
  }

  .race-image {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .race-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
  }

  .race-story-tag,
  .race-story h3 {
    grid-column: 1 / -1;
  }

  .race-story h3 {
    max-width: 680px;
    margin-bottom: 10px;
  }

  .race-story .race-tags {
    align-content: start;
    margin: 0;
  }

  .race-story .button {
    justify-self: start;
    margin-top: 10px;
  }

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

  .journey-intro p {
    max-width: 500px;
  }

  .capabilities-head {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .capabilities-head > p {
    max-width: 360px;
  }

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

  .capability-card:nth-child(3) {
    border-left: 0;
  }

  .capability-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .dialog-shell {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 68px 42px 42px;
  }

  .form-wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 36px);
    --header-h: 72px;
  }

  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark span {
    font-size: 18px;
  }

  .brand-name {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .language-toggle {
    font-size: 11px;
  }

  .menu-toggle {
    width: 39px;
    height: 39px;
  }

  .menu-toggle > span:first-child {
    top: 15px;
  }

  .menu-toggle > span:nth-child(2) {
    top: 22px;
  }

  .menu-open .menu-toggle > span:first-child,
  .menu-open .menu-toggle > span:nth-child(2) {
    top: 19px;
  }

  .mobile-menu-inner {
    padding: 104px 20px 24px;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

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

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.53) 58%, rgba(0, 0, 0, 0.14) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.05) 62%);
  }

  .hero-grid {
    background-size: calc((100vw - 36px) / 2) 100%;
  }

  .hero-content {
    min-height: max(720px, 100svh);
    padding-top: 118px;
    padding-bottom: 86px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .eyebrow {
    max-width: 260px;
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(62px, 22vw, 94px);
    line-height: 0.76;
  }

  body[data-lang="zh"] .hero h1 {
    font-size: clamp(49px, 15vw, 68px);
    line-height: 0.94;
  }

  .hero-title-en > span:nth-child(2),
  .hero-title-zh > span:nth-child(2) {
    padding-left: 0.74em;
  }

  .hero-bottom {
    gap: 20px;
    margin-top: 32px;
  }

  .hero-bottom p {
    max-width: 330px;
    font-size: 12px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 16px;
  }

  .button {
    min-height: 49px;
    padding-inline: 15px;
    gap: 18px;
  }

  .hero-rail {
    justify-content: flex-start;
    gap: 10px;
    height: 44px;
    padding: 0 18px;
    overflow: hidden;
    font-size: 8px;
    white-space: nowrap;
  }

  .hero-rail i {
    width: 18px;
  }

  .ticker-track {
    height: 56px;
  }

  .ticker span {
    padding-inline: 18px;
    font-size: 26px;
  }

  .agency,
  .race,
  .capabilities {
    padding-top: 78px;
    padding-bottom: 88px;
  }

  .section-kicker {
    padding-top: 18px;
  }

  .agency-heading {
    display: block;
    padding: 64px 0 58px;
  }

  .agency-cn {
    margin-bottom: 30px;
  }

  .agency-heading h2,
  .capabilities-head h2 {
    font-size: clamp(57px, 18vw, 80px);
    line-height: 0.8;
  }

  body[data-lang="zh"] .agency-heading h2,
  body[data-lang="zh"] .capabilities-head h2 {
    font-size: clamp(45px, 13vw, 60px);
    line-height: 1.02;
  }

  .mandate-card {
    min-height: 350px;
    padding: 22px;
  }

  .mandate-mark {
    font-size: 260px;
  }

  .agency-copy {
    display: flex;
    gap: 0;
  }

  .agency-copy .lead {
    font-size: 31px;
  }

  .agency-copy .arrow-link {
    margin-top: 25px;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .principles > div,
  .principles > div:not(:first-child) {
    padding: 18px 0;
    border-left: 0;
  }

  .principles > div:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .race::before {
    width: 6px;
  }

  .race-heading {
    align-items: center;
    padding: 55px 0 50px;
  }

  .race-heading h2 {
    font-size: clamp(72px, 24vw, 102px);
    line-height: 0.66;
  }

  .race-cn {
    font-size: 24px;
  }

  .race-image {
    aspect-ratio: 4 / 5;
  }

  .race-image img {
    object-position: 50% center;
  }

  .race-image figcaption {
    flex-direction: column;
    gap: 4px;
  }

  .race-story {
    display: flex;
    gap: 0;
  }

  .race-story h3 {
    margin: 32px 0 22px;
    font-size: 39px;
  }

  .race-story .race-tags {
    margin: 28px 0 36px;
  }

  .journey {
    margin-top: 88px;
  }

  .journey-list li {
    grid-template-columns: 27px 1fr auto;
    gap: 14px;
  }

  .journey-list li > p {
    display: none;
  }

  .journey-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .journey-list strong {
    font-size: 21px;
  }

  .capabilities-head {
    padding: 64px 0 52px;
  }

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

  .capability-card,
  .capability-card:not(:first-child),
  .capability-card:nth-child(3) {
    min-height: 315px;
    padding: 22px 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .capability-card:first-child {
    border-top: 0;
  }

  .capability-card h3 {
    margin-top: 58px;
    font-size: 38px;
  }

  .capability-card em {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .manifesto {
    margin-top: 86px;
  }

  .manifesto blockquote {
    margin: 47px 0 92px;
    font-size: clamp(57px, 18vw, 78px);
    line-height: 0.8;
  }

  body[data-lang="zh"] .manifesto blockquote {
    font-size: clamp(44px, 13vw, 58px);
  }

  .manifesto-seal {
    bottom: 18px;
    width: 62px;
    height: 62px;
  }

  .contact,
  .contact-inner {
    min-height: 680px;
  }

  .contact-inner {
    padding: 48px 0 35px;
  }

  .contact-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
  }

  .contact h2 {
    font-size: clamp(60px, 19vw, 82px);
    line-height: 0.8;
  }

  body[data-lang="zh"] .contact h2 {
    font-size: clamp(47px, 14vw, 62px);
  }

  .contact-button {
    align-self: flex-end;
    width: 160px;
    height: 160px;
    padding: 25px;
  }

  .contact-button > span {
    font-size: 20px;
  }

  .contact-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .contact-foot a {
    font-size: 19px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    min-height: 105px;
  }

  .footer-center {
    display: none;
  }

  .dialog-shell {
    display: block;
    max-height: calc(100vh - 32px);
    overflow: auto;
  }

  .dialog-intro {
    min-height: 295px;
    padding: 30px 24px;
  }

  .dialog-intro h2 {
    margin: 64px 0 26px;
    font-size: 54px;
  }

  .dialog-close {
    position: fixed;
    color: var(--ink);
    background: var(--paper-bright);
  }

  .inquiry-form {
    gap: 22px;
    padding: 38px 24px 30px;
  }

  .form-submit-row {
    align-items: flex-start;
    flex-direction: column !important;
  }
}

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

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

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