:root {
  --cream-base: #efe5d2;
  --paper: #f5efe0;
  --ink: #1a1814;
  --ink-soft: #2a2522;
  --walnut: #5c3a21;
  --ink-black: #1a1814;
  --cinnabar: #8b3a2b;
  --huanghuali: #b8824a;
  --brass: #9a7b3f;
  --platinum: #d8cda9;
  --rust-teal: #4a5a58;
  --mustard: #b8944d;
  --line: #2a2522;
  --line-soft: rgba(26, 24, 20, 0.12);
  --line-on-dark: rgba(239, 229, 210, 0.2);
  --ff-serif-cn: "Songti SC", "STSong", "SimSun", "Noto Serif SC", "思源宋体", serif;
  --ff-sans-cn: "Noto Sans SC", "思源黑体", sans-serif;
  --ff-serif-en: "Cormorant Garamond", Georgia, serif;
  --ff-sans-en: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-mono: "JetBrains Mono", "IBM Plex Mono", monospace;
  --page-max: 1440px;
  --page-pad: 48px;
  --tracking-cn-title: 0.2em;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream-base);
  color: var(--ink);
  font-family: var(--ff-sans-cn);
  font-size: 17px;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream-base);
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  overflow-x: hidden;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cinnabar);
  outline-offset: 4px;
}

.dark a:focus-visible,
.dark button:focus-visible,
.footer a:focus-visible {
  outline-color: var(--platinum);
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

p {
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.seo-page-title {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

pre {
  margin: 0;
  white-space: pre-wrap;
}

code {
  font-family: var(--ff-mono);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto max-content;
  column-gap: 24px;
  width: 100%;
  max-width: 100vw;
  min-height: 64px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--cream-base);
  padding-inline: max(var(--page-pad), calc((100% - var(--page-max)) / 2 + var(--page-pad)));
  overflow: hidden;
}

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

.brand-mark {
  font-family: var(--ff-serif-en);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand-name {
  display: inline-block;
  font-family: "Noto Serif SC", "思源宋体", serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  gap: 10px;
  color: rgba(26, 24, 20, 0.55);
  font-family: var(--ff-mono);
  font-size: 13px;
  white-space: nowrap;
}

.language-switch a {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 36px;
  min-width: 44px;
  padding-inline: 4px;
  transition: color 250ms var(--ease);
}

.language-switch a:hover,
.language-switch a[aria-current="page"] {
  color: var(--ink);
}

.mobile-menu-toggle {
  align-items: center;
  align-self: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  justify-self: end;
  min-height: 44px;
  min-width: 44px;
  padding: 0;
}

.mobile-menu-toggle span {
  background: currentColor;
  display: block;
  height: 1px;
  width: 18px;
}

.mobile-site-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  left: 0;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 12px var(--page-pad) 14px;
  position: fixed;
  right: 0;
  text-transform: uppercase;
  top: 64px;
  z-index: 40;
}

.mobile-site-nav[hidden] {
  display: none;
}

.mobile-site-nav a {
  border-top: 1px solid rgba(154, 123, 63, 0.32);
  display: block;
  padding: 11px 0;
}

.mobile-site-nav a:first-child {
  border-top: 0;
}

.mobile-site-nav a.is-active {
  color: var(--cinnabar);
}

main {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  overflow-x: hidden;
  padding: 12px var(--page-pad);
}

.view {
  display: none;
}

.view.is-active {
  display: block;
  animation: view-in 400ms var(--ease);
}

@keyframes view-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tech-strip {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  padding: 12px 0;
  text-transform: uppercase;
  word-break: break-all;
}

.view-index > .tech-strip {
  line-height: 1.2;
  margin-bottom: 12px;
  padding: 4px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  min-width: 0;
  width: 100%;
}

.bento-band {
  align-items: center;
  background: var(--cream-base);
  color: var(--brass);
  display: flex;
  font-family: var(--ff-mono);
  font-size: 11px;
  gap: 16px;
  grid-column: 1 / -1;
  letter-spacing: 0.3em;
  line-height: 1.2;
  min-height: 40px;
  padding: 12px 32px;
  text-transform: uppercase;
}

.bento-band__rule {
  background: var(--brass);
  flex: 1;
  height: 1px;
  opacity: 0.5;
}

.bento-band__count {
  opacity: 0.72;
  white-space: nowrap;
}

.bento,
.module-hero,
.module-panel,
.article-tile,
.gratitude-panel {
  --frame-glow: rgba(154, 123, 63, 0.72);
  position: relative;
  min-height: 328px;
  min-width: 0;
  border: 1px solid var(--brass);
  margin: -1px 0 0 -1px;
  overflow: hidden;
  padding: 32px;
  transition:
    border-color 400ms var(--ease),
    background-color 400ms var(--ease),
    color 400ms var(--ease);
}

.bento {
  display: block;
}

.dark {
  --frame-glow: rgba(216, 205, 169, 0.78);
}

.bento:hover,
.article-tile:hover {
  animation: frame-breathe 1600ms var(--ease) infinite;
  border-color: var(--platinum);
  color: var(--brass);
}

@keyframes frame-breathe {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(154, 123, 63, 0.36);
  }
  50% {
    box-shadow: inset 0 0 0 1px var(--frame-glow);
  }
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

.row-2 {
  min-height: 520px;
}

[data-tone="cream"] {
  background: var(--cream-base);
}

[data-tone="paper"] {
  background: var(--paper);
}

[data-tone="walnut"] {
  background: var(--walnut);
}

[data-tone="ink"] {
  background: var(--ink-black);
}

[data-tone="cinnabar"] {
  background: var(--cinnabar);
}

[data-tone="huanghuali"] {
  background: var(--huanghuali);
}

.dark {
  border-color: var(--brass);
  color: var(--cream-base);
}

.block-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  line-height: 1.4;
  margin-bottom: 42px;
  text-transform: uppercase;
}

.block-head span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.block__arrow {
  bottom: 32px;
  color: var(--brass);
  display: inline-flex;
  font-family: var(--ff-mono);
  font-size: 11px;
  gap: 8px;
  letter-spacing: 0.25em;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 32px;
  text-transform: uppercase;
  transform: translateX(-4px);
  transition:
    opacity 400ms var(--ease),
    transform 400ms var(--ease);
  z-index: 3;
}

.bento:hover .block__arrow {
  opacity: 1;
  transform: translateX(0);
}

.bento:hover .image-caption,
.bento:hover .hero-meta,
.bento:hover .product-card__subtitle {
  color: var(--brass);
}

.cornered::before,
.cornered::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  transition:
    height 400ms var(--ease),
    width 400ms var(--ease);
}

.cornered::before {
  border-left: 1px solid var(--brass);
  border-top: 1px solid var(--brass);
  width: 18px;
  height: 18px;
}

.cornered::after {
  border-bottom: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
  height: 18px;
  margin-left: auto;
  margin-top: auto;
  width: 18px;
}

a.cornered:hover::before,
a.cornered:hover::after {
  height: 12px;
  width: 12px;
}

.block-image {
  padding: 0;
}

.block-image .block-head,
.block-image .image-caption {
  left: 32px;
  position: absolute;
  right: 32px;
}

.block-image .block-head {
  top: 32px;
}

.block-image img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  width: 100%;
}

.image-caption {
  bottom: 32px;
  color: var(--cream-base);
  display: flex;
  flex-direction: column;
  font-family: var(--ff-mono);
  font-size: 12px;
  gap: 8px;
}

.block__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
}

.block__body--center {
  justify-content: center;
}

.hero-statement {
  font-family: var(--ff-serif-cn);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 58px);
  letter-spacing: 0.16em;
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
}

.hero-en {
  font-family: var(--ff-serif-en);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 16px 0 0;
}

.block__rule {
  background: currentColor;
  border: 0;
  height: 1px;
  width: 48px;
  opacity: 0.4;
}

.hero-rule {
  margin: 32px 0;
  width: 64px;
}

.hero-desc {
  font-family: var(--ff-sans-cn);
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
  max-width: 32ch;
  opacity: 0.85;
}

.hero-meta {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  margin-top: 32px;
}

.nav-block {
  display: flex;
  flex-direction: column;
}

.nav-block h2,
.product-card h2,
.module-panel h2,
.article-tile h2 {
  font-family: var(--ff-serif-cn);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.25;
}

.nav-block p,
.product-card p,
.module-panel p,
.article-tile p {
  margin-top: 24px;
  max-width: 520px;
  opacity: 0.82;
}

.product-card {
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
}

.product-card--image {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 590px;
  justify-content: flex-start;
  min-height: 520px;
}

.product-card .block-head {
  grid-column: 1 / -1;
  width: 100%;
}

.product-card--image .block-head {
  color: var(--brass);
  margin-bottom: 0;
}

.product-card__specimen {
  flex: 0 0 280px;
  height: 280px;
  min-height: 280px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.product-card__copy {
  max-width: min(520px, 100%);
}

.product-card--image h2 {
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.15;
}

.product-card--hvp h2 {
  letter-spacing: 0.08em;
  white-space: nowrap;
  word-spacing: -0.22em;
}

html[lang="en"] .product-card--hvp h2 {
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: 0.045em;
  white-space: nowrap;
  word-break: normal;
  word-spacing: 0;
}

html[lang="en"] .product-card:not(.product-card--hvp) h2 {
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: 0.045em;
  white-space: nowrap;
  word-spacing: 0;
}

html[lang="en"] .product-card__copy {
  min-height: 205px;
}

html[lang="en"] .product-card__specimen {
  min-height: 280px;
}

html[lang="en"] .magazine-topic h1,
html[lang="en"] .magazine-topic h2.title-lines,
html[lang="en"] .magazine-topic h2.title--single-line {
  font-family: var(--ff-serif-en);
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: 0.04em;
  overflow-wrap: normal;
  white-space: normal;
  word-break: normal;
}

html[lang="en"] .magazine-topic h1.title-lines span,
html[lang="en"] .magazine-topic h2.title-lines span,
html[lang="en"] .magazine-topic h1.title--single-line,
html[lang="en"] .magazine-topic h2.title--single-line {
  white-space: normal;
}

.product-card__copy p {
  margin-top: 0;
}

.product-card img {
  align-self: end;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line-on-dark);
  object-fit: cover;
  width: 100%;
}

.product-card--image .product-card__media {
  aspect-ratio: auto;
  border: 0;
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.product-card__subtitle {
  color: var(--cream-base);
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  margin-top: 14px;
  opacity: 0.86;
  text-transform: uppercase;
}

.product-card__rule {
  background: var(--brass);
  display: block;
  height: 1px;
  margin: 24px 0;
  opacity: 0.42;
  width: 48px;
}

.asset-note {
  bottom: 32px;
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  left: 32px;
  position: absolute;
}

.metric-stack {
  align-self: end;
  border: 1px solid var(--line-on-dark);
  display: grid;
  min-height: 170px;
  padding: 20px;
  place-items: center;
  text-align: center;
  width: 220px;
}

.metric-stack span,
.metric-stack small {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
}

.metric-stack strong {
  font-family: var(--ff-mono);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.return-bar {
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--ff-mono);
  font-size: 13px;
  margin-bottom: 0;
  padding: 16px 24px;
}

.return-bar a {
  transition: color 250ms var(--ease);
}

.return-bar a:hover {
  color: var(--brass);
}

.module-band {
  align-items: center;
  background: var(--cream-base);
  border-bottom: 1px solid var(--brass);
  color: var(--brass);
  display: flex;
  font-family: var(--ff-mono);
  font-size: 11px;
  gap: 16px;
  letter-spacing: 0.3em;
  line-height: 1.2;
  min-height: 44px;
  padding: 14px 32px;
  text-transform: uppercase;
}

.module-band__rule {
  background: var(--brass);
  flex: 1;
  height: 1px;
  opacity: 0.5;
}

.module-band__back {
  flex-shrink: 0;
  transition: color 250ms var(--ease);
}

.module-band__back:hover {
  color: var(--ink);
}

.module-band__count {
  flex-shrink: 0;
  opacity: 0.72;
}

.module-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.magazine-layout {
  background:
    linear-gradient(var(--paper), var(--paper)) left top / 300px 100% no-repeat;
  border: 1px solid var(--brass);
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  position: relative;
}

.magazine-layout::before {
  background: var(--brass);
  bottom: 0;
  content: "";
  left: 300px;
  position: absolute;
  top: 0;
  width: 1px;
  z-index: 2;
}

.magazine-index {
  background: transparent;
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  min-width: 0;
  overflow-y: auto;
  padding: 32px;
  position: sticky;
  top: 0;
}

.magazine-stack {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.magazine-index__title,
.magazine-index__foot {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.magazine-index__title::after,
.magazine-index__foot::before {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  margin-top: 16px;
  opacity: 0.5;
  width: 160px;
}

.magazine-index nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  margin-top: 48px;
}

.magazine-index a,
.magazine-index span {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.magazine-index a {
  color: var(--ink);
}

.magazine-index nav a:not(.is-active) {
  opacity: 0.72;
  padding-left: 18px;
}

.magazine-index a.is-active {
  color: var(--cinnabar);
}

.magazine-index span {
  color: var(--ink);
  opacity: 0.72;
  padding-left: 18px;
}

.magazine-index a.magazine-index__divider {
  border-top: 1px solid var(--brass);
  margin-top: 12px;
  opacity: 0.72;
  padding-left: 0;
  padding-top: 18px;
}

.magazine-index__foot {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.magazine-index__foot span {
  flex: 0 0 auto;
  letter-spacing: 0.16em;
  padding-left: 0;
  white-space: nowrap;
}

.magazine-index__foot::before {
  flex: 0 0 36px;
  margin: 0;
  width: 36px;
}

.magazine-topic {
  background: var(--paper);
  column-gap: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  min-height: 80vh;
  overflow: hidden;
  padding: 48px 72px 56px 56px;
  position: relative;
  row-gap: 40px;
  scroll-margin-top: 24px;
}

.magazine-topic[data-tone="cream"] {
  background: var(--cream-base);
}

.magazine-topic[data-tone="paper"] {
  background: var(--paper);
}

.magazine-topic[data-tone="walnut"] {
  background: var(--walnut);
}

.magazine-topic[data-tone="ink"] {
  background: var(--ink-black);
}

.magazine-topic[data-tone="cinnabar"] {
  background: var(--cinnabar);
}

.magazine-topic + .magazine-topic {
  border-top: 1px solid var(--brass);
}

.magazine-topic[data-tone="ink"] .magazine-topic__meta,
.magazine-topic[data-tone="ink"] .magazine-topic__side {
  color: #b58a3a;
}

.magazine-topic .block-head {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.magazine-topic__copy {
  grid-column: 1;
  grid-row: 2;
  max-width: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.origin-topic .magazine-topic__copy,
.production-topic .magazine-topic__copy {
  grid-column: 1 / -1;
}

.origin-topic .magazine-topic__copy > :not(.origin-node-list),
.production-topic .magazine-topic__copy > :not(.origin-node-list) {
  max-width: 520px;
}

.magazine-topic h1,
.magazine-topic h2.title-lines,
.magazine-topic h2.title--single-line {
  font-family: var(--ff-serif-cn);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: var(--tracking-cn-title);
  line-height: 1.15;
}

.magazine-topic h1.title-lines,
.magazine-topic h2.title-lines {
  display: grid;
  font-size: clamp(44px, 4.5vw, 64px);
  gap: 0.08em;
  justify-items: start;
  letter-spacing: 0.12em;
}

.magazine-topic h1.title-lines span,
.magazine-topic h2.title-lines span {
  display: block;
  white-space: nowrap;
}

.magazine-topic h1.title--single-line,
.magazine-topic h2.title--single-line {
  font-size: clamp(36px, 4.3vw, 64px);
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.magazine-topic__en {
  font-family: var(--ff-serif-en);
  font-size: 24px;
  line-height: 1.35;
  margin-top: 28px;
}

.magazine-topic__copy > p:not(.magazine-topic__en):not(.magazine-topic__meta):not(.origin-node-source) {
  line-height: 1.9;
  margin-top: 28px;
}

.magazine-topic__meta {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  margin-top: 44px;
  text-transform: uppercase;
}

.origin-node-list {
  border-top: 1px solid rgba(154, 123, 63, 0.42);
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 28px 0 0;
  padding: 22px 0 0;
}

.origin-node-list li {
  display: grid;
  gap: 8px 14px;
  grid-template-columns: auto 1fr;
}

.origin-node-list li.origin-node--with-image {
  align-items: start;
  column-gap: 34px;
  grid-template-columns: auto minmax(0, 1fr) minmax(300px, 0.92fr);
}

.origin-node-list span {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  line-height: 1.7;
}

.origin-node-list strong {
  font-family: var(--ff-serif-cn);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.origin-node-list strong a {
  color: inherit;
}

.origin-node-list strong a:hover {
  color: var(--brass);
}

.origin-node-list p {
  grid-column: 2;
  line-height: 1.75;
  margin: 0;
  opacity: 0.84;
}

.origin-node-list .origin-node-source {
  color: rgba(75, 66, 51, 0.64);
  font-size: 11px;
  font-style: italic;
  line-height: 1.6;
  margin-top: -2px;
}

.origin-node-source a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.origin-node-source a:hover {
  color: var(--brass);
}

.magazine-topic__copy > p.origin-node-source {
  color: rgba(75, 66, 51, 0.64);
  font-size: 11px;
  font-style: italic;
  line-height: 1.6;
  margin-top: -2px;
}

.origin-node-image {
  grid-column: 3;
  grid-row: 1 / span 8;
  margin: 0;
  max-width: 100%;
}

.origin-node-image img {
  aspect-ratio: 1.18 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.origin-node-image--scroll img {
  aspect-ratio: 1.75 / 1;
}

.production-node-list {
  gap: clamp(54px, 6vw, 82px);
  padding-right: min(38vw, 420px);
  position: relative;
}

.production-node-list li.origin-node--with-image {
  column-gap: 22px;
  grid-template-columns: 54px minmax(0, 520px);
}

.production-node-list .origin-node-image {
  max-width: none;
  position: absolute;
  right: 0;
  width: min(34vw, 360px);
}

.production-node-list [data-news-module="M·01"] .origin-node-image {
  top: 22px;
}

.production-node-list [data-news-module="M·03"] .origin-node-image {
  top: 36%;
}

.production-node-list [data-news-module="M·05"] .origin-node-image {
  bottom: 0;
}

.evidence-note {
  color: rgba(75, 66, 51, 0.68);
  font-family: var(--ff-sans-cn);
  font-size: 12px;
  font-style: italic;
  line-height: 1.7;
  margin-top: 18px;
}

.evidence-note a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.evidence-note a:hover {
  color: var(--brass);
}

.ai-disclosure-note {
  color: rgba(75, 66, 51, 0.68);
  font-size: 12px;
  font-style: italic;
  line-height: 1.7;
  margin-top: 20px;
}

.magazine-topic__image {
  align-self: end;
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  margin: 0;
  max-width: 560px;
  width: 100%;
}

.magazine-topic__image img {
  aspect-ratio: 1.18 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.magazine-topic__side {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  line-height: 1;
  position: absolute;
  right: 28px;
  text-orientation: mixed;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.partner-contact {
  align-self: end;
  background: rgba(226, 211, 178, 0.42);
  border: 1px solid rgba(154, 123, 63, 0.42);
  display: grid;
  gap: 14px;
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  margin-right: 28px;
  max-width: 380px;
  padding: 28px;
  position: relative;
  width: min(100%, 380px);
  z-index: 2;
}

.partner-contact__eyebrow {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  margin: 0;
}

.partner-contact h3 {
  font-family: var(--ff-serif-cn);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin: 0;
}

html[lang="en"] .partner-contact h3 {
  font-family: var(--ff-serif-en);
  letter-spacing: 0.02em;
}

.partner-contact > p:not(.partner-contact__eyebrow):not(.partner-contact__status) {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  opacity: 0.74;
}

.partner-contact label {
  display: grid;
  gap: 6px;
}

.partner-contact label span {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partner-contact input,
.partner-contact textarea {
  background: rgba(237, 228, 204, 0.82);
  border: 1px solid rgba(154, 123, 63, 0.34);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  min-height: 42px;
  padding: 9px 11px;
  width: 100%;
}

.partner-contact textarea {
  line-height: 1.6;
  resize: vertical;
}

.partner-contact input:focus,
.partner-contact textarea:focus {
  border-color: var(--brass);
  outline: none;
}

.partner-contact button {
  background: #2a241b;
  border: 0;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
}

.partner-contact button:hover,
.partner-contact button:focus-visible {
  background: var(--cinnabar);
  outline: none;
}

.partner-contact button:disabled {
  cursor: default;
  opacity: 0.52;
}

.partner-contact__status {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  min-height: 1.6em;
}

.magazine-topic__timeline,
.magazine-topic__triad {
  align-self: end;
  display: flex;
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  margin: 0 0 24px;
  max-width: 560px;
  width: 100%;
}

.magazine-topic__timeline {
  align-items: center;
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 14px;
  gap: 20px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.magazine-topic__timeline-rule {
  background: currentColor;
  flex: 1;
  height: 1px;
  opacity: 0.55;
}

.magazine-topic__triad {
  align-items: center;
  color: var(--cream-base);
  font-family: var(--ff-serif-cn);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  gap: 18px;
  justify-content: center;
  letter-spacing: 0.24em;
  opacity: 0.92;
}

.magazine-topic__triad span:nth-child(even) {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 0.6em;
  letter-spacing: 0.3em;
  opacity: 0.7;
}

.magazine-topic__visual,
.magazine-topic__diagram,
.magazine-topic__spec,
.magazine-topic__spec-panel,
.magazine-topic__report-links,
.magazine-topic__code,
.magazine-topic__visual-stack {
  align-self: end;
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  margin: 0;
  max-width: 560px;
  min-width: 0;
  width: 100%;
}

.magazine-topic__visual {
  display: grid;
  gap: 18px;
}

.magazine-topic__visual-note {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.batch-visual {
  justify-self: stretch;
  max-width: 720px;
}

.magazine-topic__visual-stack {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  max-width: min(560px, 100%);
  overflow: hidden;
}

.magazine-topic__sample-proof {
  margin: 0;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.magazine-topic__sample-proof img {
  aspect-ratio: 1.18 / 1;
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.magazine-topic__visual-stack .magazine-topic__timeline,
.magazine-topic__visual-stack .magazine-topic__triad {
  grid-column: auto;
  grid-row: auto;
  justify-self: stretch;
  margin: 0;
  max-width: none;
}

html[lang="en"] .magazine-topic__visual-stack .magazine-topic__timeline {
  gap: 12px;
  letter-spacing: 0.12em;
  max-width: 100%;
  overflow: hidden;
}

html[lang="en"] .magazine-topic__visual-stack .magazine-topic__timeline-rule {
  flex: 1 1 24px;
  min-width: 24px;
}

html[lang="en"] .magazine-topic__visual-stack .magazine-topic__triad {
  flex-wrap: wrap;
  font-size: clamp(18px, 1.7vw, 22px);
  gap: 8px 12px;
  justify-content: flex-start;
  letter-spacing: 0.08em;
  max-width: 100%;
  overflow: hidden;
}

html[lang="en"] .magazine-topic__visual-stack .magazine-topic__triad span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.magazine-topic__diagram svg {
  display: block;
  height: auto;
  margin-top: 0;
  max-width: 100%;
  width: 100%;
}

.market-map {
  border-top: 1px solid color-mix(in srgb, var(--ink) 34%, transparent);
  color: var(--ink);
  gap: 16px;
  padding-top: 22px;
}

.market-map__canvas {
  aspect-ratio: 1.92;
  position: relative;
  width: 100%;
}

.market-map__canvas img,
.market-map__overlay {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: contain;
  position: absolute;
  width: 100%;
}

.market-map__canvas img {
  opacity: 0.34;
}

.market-map__routes path {
  fill: none;
  opacity: 0.3;
  stroke: var(--brass);
  stroke-dasharray: 4 8;
  stroke-linecap: round;
  stroke-width: 1;
}

.market-map__points circle {
  fill: var(--brass);
  stroke: var(--paper);
  stroke-width: 2;
}

.market-map__legend {
  border-top: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  display: grid;
  gap: 8px;
  padding-top: 14px;
}

.market-map__legend span {
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}

.magazine-topic[data-tone="ink"] .trace-diagram path,
.magazine-topic[data-tone="ink"] .trace-diagram circle {
  stroke: var(--brass);
}

.magazine-topic[data-tone="ink"] .trace-diagram text {
  fill: var(--cream-base);
}

.magazine-topic__spec {
  border-bottom: 1px solid var(--brass);
  border-top: 1px solid var(--brass);
  color: var(--brass);
  display: grid;
  font-family: var(--ff-mono);
  font-size: 15px;
  gap: 18px;
  letter-spacing: 0.24em;
  padding: 28px 0;
  text-transform: uppercase;
}

.spec-panel {
  border-bottom: 1px solid color-mix(in srgb, var(--brass) 64%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--brass) 64%, transparent);
  display: grid;
  gap: 16px;
  padding: 22px 0;
}

.spec-panel--inline {
  margin: 22px 0;
}

.side-info-box {
  --side-info-rule-gap: 14px;
  align-self: start;
  display: grid;
  gap: 50px;
  margin-top: clamp(140px, 12vw, 188px);
}

.side-info-box__section {
  display: grid;
  gap: 16px;
}

.side-info-box__section h2 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin: 0;
}

.side-info-box__section h2::after {
  background: color-mix(in srgb, var(--brass) 58%, transparent);
  content: "";
  display: block;
  height: 1px;
  margin-top: var(--side-info-rule-gap);
  width: 100%;
}

.side-info-box__section--spec {
  border-bottom: 1px solid color-mix(in srgb, var(--brass) 58%, transparent);
  padding-bottom: var(--side-info-rule-gap);
}

.side-info-box .spec-panel__rows {
  gap: 0;
}

.side-info-box .spec-panel__rows div {
  border-top: 0;
  padding: 6px 0;
}

.side-info-box p {
  color: color-mix(in srgb, var(--ink) 76%, transparent);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.side-info-box__links {
  display: grid;
  gap: 14px;
}

.side-info-box__links a {
  border: 1px solid color-mix(in srgb, var(--brass) 44%, transparent);
  color: inherit;
  display: grid;
  min-height: 58px;
  padding: 15px 18px 16px;
  text-decoration: none;
  transition:
    background-color 260ms var(--ease),
    border-color 260ms var(--ease),
    color 260ms var(--ease),
    transform 260ms var(--ease);
}

.side-info-box__links a:hover {
  background: color-mix(in srgb, var(--brass) 20%, rgba(22, 16, 10, 0.72));
  border-color: color-mix(in srgb, var(--brass) 76%, transparent);
  color: var(--cream-base);
  transform: translateY(-1px);
}

.side-info-box__links span {
  color: var(--brass);
  font-family: var(--ff-sans-cn);
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.news-shell {
  margin: 0 auto;
  max-width: 980px;
  padding: 96px var(--page-pad) 120px;
}

.standalone-shell {
  column-gap: 48px;
  display: grid;
  grid-template-columns: 220px minmax(0, 980px);
  margin: 0 auto;
  max-width: var(--page-max);
  padding: 0 var(--page-pad);
  width: 100%;
}

.standalone-shell .news-shell {
  margin: 0;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.standalone-side-nav {
  align-self: start;
  padding-top: 108px;
  position: sticky;
  top: 80px;
}

.standalone-side-nav p {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.standalone-side-nav nav {
  border-bottom: 1px solid rgba(154, 123, 63, 0.28);
  display: grid;
}

.standalone-side-nav a {
  border-top: 1px solid rgba(154, 123, 63, 0.28);
  display: grid;
  gap: 5px;
  padding: 14px 0;
  transition:
    color 220ms var(--ease),
    padding-left 220ms var(--ease);
}

.standalone-side-nav a:hover,
.standalone-side-nav a.is-active {
  color: var(--brass);
  padding-left: 10px;
}

.standalone-side-nav span {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.standalone-side-nav strong {
  font-family: var(--ff-serif-cn);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.news-article,
.news-article-list {
  display: grid;
  gap: 24px;
}

.news-kicker,
.news-date,
.news-year-link {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.news-article h1,
.news-article-list h1 {
  font-family: var(--ff-serif-cn);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.news-lead,
.news-article > p:not(.news-kicker):not(.news-date):not(.origin-node-source):not(.news-back),
.news-list-item p {
  color: color-mix(in srgb, var(--ink) 84%, transparent);
  line-height: 1.9;
}

.news-list-item {
  border-top: 1px solid color-mix(in srgb, var(--brass) 48%, transparent);
  display: grid;
  gap: 10px;
  padding-top: 22px;
}

.news-list-item h2 {
  font-family: var(--ff-serif-cn);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.news-entry {
  border-top: 1px solid color-mix(in srgb, var(--brass) 42%, transparent);
  display: grid;
  gap: 14px;
  padding-top: 26px;
}

.news-entry h2 {
  font-family: var(--ff-serif-cn);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 0;
}

.news-list-item h2 a:hover,
.news-year-link a:hover,
.news-back a:hover {
  color: var(--brass);
}

.news-article-image {
  margin: 8px 0 10px;
}

.news-article-image img {
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  width: 100%;
}

.news-article-image--document img {
  aspect-ratio: auto;
  background: var(--paper);
  max-height: 520px;
  object-fit: contain;
}

.module-entry__subtitle {
  color: rgba(75, 66, 51, 0.7);
  font-family: var(--ff-serif-en);
  font-size: 20px;
  line-height: 1.45;
  margin: -10px 0 20px;
}

.module-entry__item {
  border-top: 1px solid rgba(154, 123, 63, 0.22);
  margin-top: 24px;
  padding-top: 18px;
}

.module-entry__item h3,
.module-entry__resources h3 {
  font-family: var(--ff-serif-cn);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.35;
  margin: 0 0 12px;
}

.module-entry__side-info {
  border: 1px solid rgba(154, 123, 63, 0.28);
  color: rgba(75, 66, 51, 0.78);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 24px;
  padding: 18px 20px;
}

.module-entry__resources {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.module-entry__resources a {
  border: 1px solid rgba(154, 123, 63, 0.28);
  color: var(--brass);
  display: block;
  font-size: 14px;
  line-height: 1.6;
  padding: 12px 16px;
}

.module-entry__resources a:hover {
  background: rgba(154, 123, 63, 0.1);
  color: var(--ink);
}

.news-back {
  border-top: 1px solid color-mix(in srgb, var(--brass) 38%, transparent);
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-top: 28px;
  padding-top: 18px;
  text-transform: uppercase;
}

.spec-panel__section {
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  display: grid;
  gap: 12px;
  padding-bottom: 16px;
}

.spec-panel__section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.spec-panel__kicker {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.spec-panel h2 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin: 0;
}

.spec-panel__rows {
  display: grid;
  gap: 8px;
  margin: 0;
}

.spec-panel__rows div {
  align-items: center;
  border-top: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr auto 1fr;
  padding-top: 9px;
}

.spec-panel dt {
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  font-size: 12px;
  letter-spacing: 0.12em;
  margin: 0;
}

.spec-panel dd {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 18px;
  letter-spacing: 0.12em;
  margin: 0;
}

.spec-panel p {
  color: color-mix(in srgb, var(--ink) 76%, transparent);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.spec-panel__section--compact {
  gap: 8px;
}

.trace-doc-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  max-width: 460px;
}

.trace-doc-links a {
  border-bottom: 1px solid color-mix(in srgb, var(--brass) 36%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--brass) 58%, transparent);
  color: inherit;
  display: grid;
  gap: 6px;
  padding: 12px 14px 13px;
  text-decoration: none;
  transition:
    background-color 260ms var(--ease),
    border-color 260ms var(--ease),
    color 260ms var(--ease),
    transform 260ms var(--ease);
}

.trace-doc-links a:hover {
  background: color-mix(in srgb, var(--brass) 20%, rgba(22, 16, 10, 0.72));
  border-color: color-mix(in srgb, var(--brass) 76%, transparent);
  color: var(--cream-base);
  transform: translateY(-1px);
}

.trace-doc-links a:hover span,
.trace-doc-links a:hover small {
  color: var(--cream-base);
}

.trace-doc-links span {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.trace-doc-links small {
  color: color-mix(in srgb, var(--ink) 82%, transparent);
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.trace-doc-links p {
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  font-size: 12px;
  line-height: 1.75;
  margin: 4px 0 0;
}

.magazine-topic.dark .trace-doc-links small,
.magazine-topic.dark .trace-doc-links p {
  color: color-mix(in srgb, var(--cream-base) 88%, transparent);
}

.certificate-file-list {
  align-self: center;
  display: grid;
  gap: 14px;
  grid-column: 2;
  grid-row: 2;
  justify-self: stretch;
  max-width: 620px;
  width: 100%;
}

.certificate-file-card {
  border-bottom: 1px solid rgba(154, 123, 63, 0.54);
  border-top: 1px solid rgba(154, 123, 63, 0.54);
  color: var(--cream-base);
  display: grid;
  gap: 9px;
  padding: 18px 0 20px;
  transition:
    background-color 300ms var(--ease),
    color 300ms var(--ease);
}

.certificate-file-card:hover {
  background: rgba(239, 229, 210, 0.08);
  color: var(--brass);
}

.certificate-file-card span,
.certificate-file-card small,
.certificate-file-card em {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.certificate-file-card strong {
  font-family: var(--ff-serif-cn);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.25;
}

.certificate-file-card small {
  line-height: 1.7;
}

.certificate-file-card em {
  font-style: normal;
  margin-top: 2px;
  text-transform: uppercase;
}

.magazine-topic__code pre {
  margin-top: 0;
}

.latest-index {
  align-self: end;
  display: grid;
  gap: 0;
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  max-width: 620px;
  width: 100%;
}

.latest-item {
  border-top: 1px solid var(--brass);
  color: var(--ink);
  display: grid;
  gap: 12px 18px;
  grid-template-columns: max-content minmax(0, 1fr);
  padding: 22px 0 24px;
  transition:
    background-color 300ms var(--ease),
    color 300ms var(--ease);
}

.latest-item:last-child {
  border-bottom: 1px solid var(--brass);
}

.latest-item:hover {
  background: rgba(154, 123, 63, 0.14);
  color: var(--brass);
}

.latest-item__date,
.latest-item__module,
.latest-item small {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.latest-item__date {
  grid-column: 1;
  grid-row: 1;
  min-width: 96px;
}

.latest-item__module {
  grid-column: 1;
  grid-row: 2;
}

.latest-item strong {
  font-family: var(--ff-serif-cn);
  font-size: 30px;
  font-weight: 500;
  grid-column: 2;
  letter-spacing: var(--tracking-cn-title);
  line-height: 1.2;
}

.latest-item small {
  grid-column: 2;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: none;
}

.latest-item__figure {
  grid-column: 2;
  margin: 0 0 4px;
  max-width: 360px;
  width: 100%;
}

.latest-item__figure img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.magazine-topic__image--placeholder {
  display: flex;
}

.image-placeholder {
  align-items: center;
  aspect-ratio: 3 / 2;
  background: rgba(239, 229, 210, 0.04);
  border: 1px dashed var(--brass);
  color: var(--brass);
  display: flex;
  flex-direction: column;
  font-family: var(--ff-mono);
  font-size: 11px;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.25em;
  padding: 24px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.image-placeholder span:first-child {
  font-size: 13px;
  letter-spacing: 0.18em;
  opacity: 0.85;
}

.image-placeholder span:last-child {
  font-size: 10px;
  opacity: 0.65;
}

.mobile-topic-nav {
  display: none;
}

.module-hero {
  grid-column: span 12;
  min-height: 420px;
}

.module-hero h1 {
  font-family: var(--ff-serif-cn);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.25;
  max-width: 880px;
}

.module-hero p {
  font-size: 18px;
  margin-top: 32px;
  max-width: 760px;
}

.module-panel {
  grid-column: span 6;
  min-height: 300px;
}

.module-panel h2 {
  margin-top: 68px;
}

.image-hero {
  padding: 0;
}

.image-hero .block-head {
  left: 32px;
  position: absolute;
  right: 32px;
  top: 32px;
}

.image-hero img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.hero-overlay {
  bottom: 32px;
  left: 32px;
  position: absolute;
  right: 32px;
  z-index: 2;
}

.hero-overlay h1 {
  max-width: 860px;
}

.hero-overlay p {
  margin-top: 18px;
}

.trace-hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.batch-display {
  align-items: center;
  color: var(--brass);
  display: flex;
  font-family: var(--ff-mono);
  font-size: clamp(72px, 6.2vw, 96px);
  font-weight: 400;
  gap: 0.035em;
  line-height: 1;
  perspective: 800px;
  transform: translateX(-24px);
}

.batch-character {
  background: color-mix(in srgb, var(--ink) 86%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--brass) 42%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--brass) 42%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: inline-grid;
  min-width: 0.58em;
  place-items: center;
  position: relative;
  transform-origin: center 54%;
  transform-style: preserve-3d;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  will-change: opacity, transform;
}

.batch-character::after {
  background: color-mix(in srgb, var(--brass) 38%, transparent);
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.42;
  position: absolute;
  right: 0;
  top: 50%;
}

.batch-character.is-flipping-out {
  opacity: 0.22;
  transform: rotateX(84deg);
}

.batch-character.is-flipping-in {
  animation: batchFlipIn 260ms ease-out both;
}

@keyframes batchFlipIn {
  from {
    opacity: 0.2;
    transform: rotateX(-86deg);
  }

  to {
    opacity: 1;
    transform: rotateX(0deg);
  }
}

.trace-diagram svg {
  margin-top: 36px;
  max-width: 100%;
}

.trace-diagram path,
.trace-diagram circle {
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
}

.trace-diagram text {
  dominant-baseline: middle;
  fill: var(--ink);
  font-family: var(--ff-sans-cn);
  font-size: 18px;
  text-anchor: middle;
}

.code-panel pre {
  border-top: 1px solid currentColor;
  color: inherit;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 32px;
  padding-top: 24px;
}

.map-hero {
  overflow: hidden;
}

.map-hero::after {
  content: "";
  border: 1px solid var(--line-on-dark);
  height: 55%;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 34%;
}

.market-lines span {
  background: var(--brass);
  border: 1px solid var(--cream-base);
  height: 12px;
  left: var(--x);
  position: absolute;
  top: var(--y);
  width: 12px;
}

.market-lines span::before {
  content: "";
  background: var(--line-on-dark);
  height: 1px;
  left: 12px;
  position: absolute;
  top: 5px;
  width: 180px;
}

.journal-layout .module-hero {
  min-height: 340px;
}

.article-tile {
  grid-column: span 4;
  min-height: 280px;
}

.article-tile span {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
}

.article-tile h2 {
  margin-top: 56px;
}

.gratitude-panel {
  display: grid;
  min-height: 620px;
  place-items: center;
  text-align: center;
}

.gratitude-panel .block-head {
  left: 32px;
  position: absolute;
  right: 32px;
  top: 32px;
}

.gratitude-panel h1 {
  font-family: var(--ff-serif-cn);
  font-size: 72px;
  font-weight: 500;
}

.gratitude-panel p {
  font-family: var(--ff-serif-en);
  font-size: 28px;
}

.footer-strip,
.footer__container {
  margin: 0 auto;
  max-width: var(--page-max);
  padding: 0 var(--page-pad);
  width: 100%;
}

.footer-strip {
  color: var(--brass);
  font-family: var(--ff-mono);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.25em;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.footer {
  background: var(--ink-black);
  color: var(--cream-base);
  border-top: 1px solid var(--line-on-dark);
}

.footer__contact {
  border-bottom: 1px solid var(--line-on-dark);
  display: grid;
  font-family: var(--ff-mono);
  font-size: 13px;
  gap: 8px 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  letter-spacing: 0.04em;
  margin: 0;
  padding: 22px 0 20px;
}

.footer__contact > div {
  align-items: baseline;
  display: flex;
  gap: 18px;
  min-width: 0;
}

.footer__contact dt {
  color: var(--brass);
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.3em;
  min-width: 48px;
  text-transform: uppercase;
}

.footer__contact dd {
  margin: 0;
  min-width: 0;
  opacity: 0.88;
  overflow-wrap: anywhere;
}

.footer__contact a {
  transition: color 250ms var(--ease);
}

.footer__contact a:hover {
  color: var(--brass);
}

.footer__main {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 18px 0 22px;
}

.footer__copy {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.75;
}

.footer__note {
  font-size: 12px;
  font-style: italic;
  margin: 0 0 8px;
  max-width: 720px;
}

.footer__copy a {
  text-decoration: none;
}

.footer__copy a:hover {
  color: var(--brass);
}

.beian-link {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}

.beian-link img {
  height: 16px;
  width: 16px;
}

.footer__top {
  align-items: center;
  display: inline-flex;
  font-family: var(--ff-mono);
  font-size: 11px;
  gap: 8px;
  letter-spacing: 0.25em;
  opacity: 0.75;
  text-transform: uppercase;
}

.footer__top:hover {
  color: var(--brass);
  opacity: 1;
}

@media (max-width: 1199px) {
  .standalone-shell {
    column-gap: 32px;
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .span-6,
  .module-panel {
    grid-column: span 12;
  }

  .article-tile {
    grid-column: span 6;
  }

  .product-card {
    grid-template-columns: 1fr 180px;
  }
}

@media (max-width: 1100px) {
  #soy-powder-spec .side-info-box,
  #hvp-spec .side-info-box {
    margin-top: 28px;
  }

  .magazine-layout {
    border-color: var(--brass);
    display: block;
    min-height: 0;
  }

  .magazine-layout::before {
    display: none;
  }

  .magazine-index {
    display: none;
  }

  .mobile-topic-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--brass);
    color: var(--brass);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    font-family: var(--ff-mono);
    font-size: 10px;
    gap: 8px;
    letter-spacing: 0.1em;
    margin: 0;
    overflow: visible;
    padding: 12px 32px;
    position: sticky;
    text-transform: uppercase;
    top: 64px;
    z-index: 5;
  }

  .mobile-topic-nav a {
    border: 1px solid rgba(154, 123, 63, 0.35);
    color: inherit;
    min-width: 0;
    padding: 6px 8px;
  }

  .mobile-topic-nav a.is-active {
    color: var(--cinnabar);
  }

  .magazine-topic {
    display: block;
    min-height: 0;
    padding: 44px 40px 48px;
    scroll-margin-top: 96px;
  }

  .magazine-topic__copy {
    max-width: 620px;
  }

  .magazine-topic__image,
  .magazine-topic__timeline,
  .magazine-topic__triad,
  .magazine-topic__visual,
  .magazine-topic__diagram,
  .magazine-topic__spec,
  .magazine-topic__spec-panel,
  .magazine-topic__report-links,
  .certificate-file-list,
  .magazine-topic__code,
  .magazine-topic__visual-stack,
  .partner-contact,
  .latest-index {
    bottom: auto;
    justify-self: stretch;
    margin: 32px 0 0;
    max-width: 620px;
    position: relative;
    right: auto;
    width: 100%;
  }

  .origin-topic .magazine-topic__copy > :not(.origin-node-list),
  .production-topic .magazine-topic__copy > :not(.origin-node-list) {
    max-width: 620px;
  }

  .origin-node-list li.origin-node--with-image {
    grid-template-columns: auto 1fr;
  }

  .origin-node-image {
    grid-column: 2;
    grid-row: auto;
    margin: 18px 0 0;
    max-width: 620px;
  }

  .production-node-list {
    padding-right: 0;
  }

  .production-node-list li.origin-node--with-image {
    grid-template-columns: auto 1fr;
  }

  .production-node-list .origin-node-image {
    bottom: auto;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

  .magazine-topic__side {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --page-pad: 24px;
    --tracking-cn-title: 0.12em;
  }

  body {
    padding-top: 64px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) max-content max-content;
    column-gap: 14px;
    left: 0;
    padding-inline: var(--page-pad);
    position: fixed;
    right: 0;
    top: 0;
  }

  .language-switch {
    align-self: center;
    display: inline-flex;
    font-size: 11px;
    gap: 6px;
  }

  .language-switch a {
    line-height: 1;
    min-height: 44px;
    padding-inline: 4px;
  }

  .mobile-menu-toggle {
    align-self: center;
    display: flex;
    height: 44px;
  }

  .mobile-menu-toggle span {
    flex-shrink: 0;
  }

  .bento-grid,
  .module-layout {
    display: block;
  }

  .standalone-shell {
    display: block;
  }

  .standalone-shell .news-shell {
    padding-top: 72px;
  }

  .standalone-side-nav {
    display: none;
  }

  .tech-strip {
    overflow-wrap: normal;
    word-break: normal;
  }

  .mobile-menu-toggle {
    min-height: 48px;
    min-width: 48px;
  }

  .mobile-topic-nav a {
    align-items: center;
    display: inline-flex;
    min-height: 48px;
  }

  .module-view {
    scroll-margin-top: 76px;
  }

  .magazine-topic {
    padding: 32px 24px 40px;
  }

  .magazine-topic + .magazine-topic {
    border-top: 1px solid var(--brass);
  }

  .module-band {
    display: grid;
    grid-template-columns: 1fr auto;
    font-size: 10px;
    gap: 4px 12px;
    letter-spacing: 0.18em;
    line-height: 1.4;
    min-height: 0;
    padding: 9px 24px 11px;
  }

  .module-band__rule {
    display: none;
  }

  .module-band__back {
    color: var(--brass);
    font-size: 9px;
    grid-column: 1;
    grid-row: 1;
    letter-spacing: 0.18em;
  }

  .module-band__count {
    color: var(--brass);
    font-size: 9px;
    grid-column: 2;
    grid-row: 1;
    letter-spacing: 0.18em;
    opacity: 0.9;
  }

  .module-band__title {
    color: var(--ink);
    font-size: 12px;
    grid-column: 1 / -1;
    grid-row: 2;
    letter-spacing: 0.16em;
    white-space: nowrap;
  }

  html[lang="en"] .module-band__title {
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .module-band__label {
    display: none;
  }

  .mobile-topic-nav {
    font-size: 10px;
    gap: 16px;
    letter-spacing: 0.16em;
    padding: 12px 24px;
  }

  .mobile-topic-nav a {
    align-items: center;
    display: inline-flex;
    min-height: 48px;
  }

  .magazine-topic__image,
  .magazine-topic__timeline,
  .magazine-topic__triad,
  .magazine-topic__visual,
  .magazine-topic__diagram,
  .magazine-topic__spec,
  .magazine-topic__spec-panel,
  .magazine-topic__report-links,
  .certificate-file-list,
  .magazine-topic__code,
  .magazine-topic__visual-stack,
  .partner-contact,
  .latest-index {
    margin: 28px 0 0;
    max-width: none;
  }

  .magazine-topic .block-head {
    margin-bottom: 36px;
  }

  .magazine-topic__copy {
    max-width: none;
  }

  .magazine-topic h1,
  .magazine-topic h2.title-lines,
  .magazine-topic h2.title--single-line {
    font-size: clamp(32px, 9vw, 38px);
    letter-spacing: 0.08em;
    overflow-wrap: normal;
    white-space: nowrap;
    word-break: keep-all;
  }

  html[lang="en"] .magazine-topic h1,
  html[lang="en"] .magazine-topic h2.title-lines,
  html[lang="en"] .magazine-topic h2.title--single-line,
  html[lang="en"] .magazine-topic h1.title--single-line,
  html[lang="en"] .magazine-topic h2.title--single-line {
    font-size: clamp(28px, 8vw, 36px);
    letter-spacing: 0.035em;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: normal;
  }

  html[lang="en"] .magazine-topic h1.title-lines span,
  html[lang="en"] .magazine-topic h2.title-lines span {
    white-space: normal;
  }

  html[lang="en"] .product-card:not(.product-card--hvp) h2 {
    white-space: normal;
  }

  html[lang="en"] .product-card--hvp h2 {
    white-space: normal;
  }

  html[lang="en"] .product-card__copy {
    min-height: 0;
  }

  html[lang="en"] .magazine-topic__timeline,
  html[lang="en"] .magazine-topic__triad {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    letter-spacing: 0.12em;
  }

  .magazine-topic h1.title--single-line,
  .magazine-topic h2.title--single-line {
    font-size: clamp(32px, 9vw, 38px);
    letter-spacing: 0.08em;
    overflow-wrap: normal;
    white-space: nowrap;
    word-break: keep-all;
  }

  .magazine-topic__en {
    font-size: 17px;
    margin-top: 18px;
  }

  .bento-band {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 24px;
  }

  .bento-band__rule {
    display: none;
  }

  .bento-band__count {
    white-space: normal;
  }

  .bento,
  .module-hero,
  .module-panel,
  .article-tile,
  .gratitude-panel {
    margin-left: 0;
    width: 100%;
  }

  main {
    padding: 24px var(--page-pad);
  }

  .brand-name {
    display: inline-block;
    font-size: 17px;
    letter-spacing: 0.2em;
  }

  .span-4,
  .span-6,
  .article-tile,
  .module-panel {
    grid-column: span 12;
  }

  .bento,
  .module-hero,
  .module-panel,
  .article-tile,
  .gratitude-panel {
    min-height: 300px;
    padding: 24px;
  }

  .block-image {
    padding: 0;
  }

  .block-image img,
  .image-hero img {
    min-height: 360px;
  }

  .block-image .block-head,
  .block-image .image-caption,
  .image-hero .block-head,
  .hero-overlay,
  .gratitude-panel .block-head {
    left: 24px;
    right: 24px;
  }

  .hero-statement {
    font-size: 34px;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .module-hero h1 {
    font-size: 34px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero-en {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .hero-desc,
  .hero-meta,
  .image-caption {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-meta {
    letter-spacing: 0.18em;
  }

  .image-caption {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .block-image .image-caption span:last-child {
    display: block;
    letter-spacing: 0.08em;
    transform: scaleX(0.78);
    transform-origin: left center;
    white-space: nowrap;
    width: 128%;
  }

  .block__arrow {
    display: none;
  }

  .batch-display {
    font-size: 42px;
    gap: 0.025em;
  }

  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-card--image {
    height: auto;
    min-height: 520px;
  }

  .product-card--hvp h2 {
    white-space: normal;
  }

  .product-card__specimen {
    aspect-ratio: 4 / 3;
    flex: none;
    height: auto;
    min-height: 220px;
  }

  .side-info-box .spec-panel__rows div {
    grid-template-columns: minmax(0, 1fr) max-content;
  }

  .side-info-box .spec-panel dd {
    justify-self: end;
  }

  .metric-stack {
    width: 100%;
  }

  .gratitude-panel h1 {
    font-size: 52px;
  }

  .gratitude-panel p {
    font-size: 21px;
  }
}

@media (max-width: 420px) {
  .brand-name {
    display: inline-block;
    font-size: 18px;
  }
}
