:root {
  --ink: #18211d;
  --ink-soft: #27332d;
  --paper: #f3efe8;
  --paper-light: #fbfaf7;
  --warm: #e7dbc9;
  --rust: #d76549;
  --rust-dark: #b94e3b;
  --sage: #89998c;
  --gold: #d9aa4b;
  --white: #ffffff;
  --line: rgba(24, 33, 29, 0.16);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 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;
}

.announcement {
  position: relative;
  z-index: 10;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.announcement a {
  color: #f1c46c;
  transition: color 180ms ease;
}

.announcement a:hover {
  color: var(--white);
}

.site-header {
  position: absolute;
  top: 34px;
  left: 0;
  z-index: 9;
  width: 100%;
  color: var(--white);
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(251, 250, 247, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.1);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo-image {
  width: 78px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  mix-blend-mode: normal;
}

.official-wordmark {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0;
  background: transparent;
}

.official-logo {
  display: block;
  width: 178px;
  height: 42px;
  object-fit: contain;
}

.official-logo-dark {
  display: none;
}

.site-header:not(.scrolled) .official-logo-color {
  display: none;
}

.site-header:not(.scrolled) .official-logo-dark,
.wordmark-footer .official-logo-dark {
  display: block;
}

.wordmark-footer .official-logo-color {
  display: none;
}

.wordmark-seal {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Songti SC", "STSong", serif;
  font-size: 20px;
  line-height: 1;
}

.wordmark strong,
.wordmark small {
  display: block;
  line-height: 1;
}

.wordmark strong {
  font-family: "Songti SC", "STSong", serif;
  font-size: 18px;
  font-weight: 600;
}

.wordmark small {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 2px;
  opacity: 0.68;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}

.nav-link {
  position: relative;
  padding: 27px 0 24px;
  opacity: 0.8;
  transition: opacity 180ms ease;
}

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

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}

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

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(790px, 94vh);
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-color: #5e4937;
  background-image: url("assets/product-powder.jpg");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  background: rgba(24, 33, 29, 0.55);
}

.hero-image-note {
  position: absolute;
  right: 7vw;
  bottom: 34px;
  font-size: 10px;
  letter-spacing: 3px;
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 84px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  line-height: 1.4;
}

.eyebrow.light {
  color: #f1c46c;
}

.hero h1 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(68px, 9vw, 128px);
  font-weight: 500;
  line-height: 0.98;
}

.hero-slogan {
  margin: 18px 0 18px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(25px, 3.2vw, 45px);
  line-height: 1.25;
}

.hero-copy {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

.button-light:hover {
  background: #f1c46c;
}

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

.button-dark:hover {
  background: var(--rust);
}

.hero-index,
.hero-scroll {
  position: absolute;
  z-index: 1;
  bottom: 38px;
  font-size: 10px;
  letter-spacing: 2px;
}

.hero-index {
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-index span {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: currentColor;
}

.hero-scroll {
  right: 5vw;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.75;
}

.hero-scroll span {
  display: inline-block;
  width: 1px;
  height: 32px;
  background: currentColor;
}

.intro-strip {
  background: var(--rust);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: center;
  min-height: 164px;
}

.intro-lead {
  max-width: 700px;
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.4;
}

.intro-lead em,
h2 em,
.large-quote em {
  color: #f1c46c;
  font-style: normal;
}

.intro-meta {
  display: grid;
  gap: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 2px;
}

.section {
  padding: 128px 0;
}

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

.section-ink {
  background: var(--ink);
  color: var(--white);
}

.section-warm {
  background: var(--warm);
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--rust);
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1;
}

.section-marker i {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: currentColor;
}

.story-grid {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 52px;
  align-items: start;
}

.story-grid > .section-marker,
.craft-grid > .section-marker {
  padding-top: 8px;
}

h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
}

.section-heading h2 {
  margin-top: 4px;
}

.lead-copy {
  margin: 34px 0 0;
  font-size: 18px;
  line-height: 1.9;
}

.body-copy {
  margin: 20px 0 0;
  color: rgba(24, 33, 29, 0.7);
  font-size: 14px;
  line-height: 2;
}

.story-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  color: var(--rust);
  font-size: 10px;
  letter-spacing: 2px;
}

.signature-line {
  width: 50px;
  height: 1px;
  background: currentColor;
}

.story-visual {
  position: relative;
  padding-top: 36px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  background: #d4c3b1;
}

.image-frame::after {
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, 0.16);
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
}

.image-caption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-family: "Songti SC", "STSong", serif;
  font-size: 22px;
  line-height: 1.35;
  text-align: right;
}

.story-stamp {
  position: absolute;
  top: 0;
  right: -22px;
  display: grid;
  width: 76px;
  height: 76px;
  place-content: center;
  border: 1px solid var(--rust);
  border-radius: 50%;
  color: var(--rust);
  font-family: "Songti SC", "STSong", serif;
  font-size: 14px;
  line-height: 1.12;
  text-align: center;
  transform: rotate(8deg);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 56px;
}

.section-heading-light h2 {
  color: var(--white);
}

.heading-note {
  max-width: 235px;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.9;
  text-align: right;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #24312b;
  transition: transform 240ms var(--ease), background 240ms ease;
}

.product-card:hover {
  background: #2e3d35;
  transform: translateY(-8px);
}

.product-art {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #8d6a4f;
}

.product-card-featured .product-art {
  height: 340px;
}

.product-art::after {
  position: absolute;
  inset: 0;
  background: rgba(24, 33, 29, 0.08);
  content: "";
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.product-card:hover .product-art img {
  transform: scale(1.05);
}

.product-art-powder img {
  object-position: center;
}

.product-art-snack {
  background: #b87a55;
}

.product-art-snack img {
  object-position: 72% center;
}

.product-art-seasoning {
  background: #5e7260;
}

.product-art-seasoning img {
  object-position: 25% center;
  filter: saturate(0.8) brightness(0.82);
}

.product-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 2px;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.product-type {
  color: #f1c46c;
  font-size: 11px;
  letter-spacing: 1px;
}

.product-info h3 {
  margin: 8px 0 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: 28px;
  font-weight: 500;
}

.product-info p {
  min-height: 70px;
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.9;
}

.product-info a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--white);
  font-size: 12px;
}

.product-info a span {
  color: #f1c46c;
  font-size: 18px;
  transition: transform 180ms ease;
}

.product-info a:hover span {
  transform: translateX(4px);
}

.craft-grid {
  display: grid;
  grid-template-columns: 80px minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: start;
}

.craft-copy {
  padding-top: 48px;
}

.craft-copy .lead-copy {
  margin-top: 0;
}

.craft-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 88px;
  border-top: 1px solid var(--line);
}

.craft-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding-top: 26px;
  border-top: 3px solid transparent;
  transition: border-color 180ms ease;
}

.craft-step:hover {
  border-color: var(--rust);
}

.step-number {
  color: var(--rust);
  font-family: Georgia, serif;
  font-size: 18px;
}

.craft-step h3 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: 24px;
  font-weight: 500;
}

.craft-step p {
  margin: 10px 0 0;
  color: rgba(24, 33, 29, 0.68);
  font-size: 13px;
  line-height: 1.85;
}

.values-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background: var(--paper-light);
  color: var(--ink);
}

.values-section::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: rgba(24, 33, 29, 0.08);
  content: "";
}

.values-section::after {
  display: none;
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  align-items: stretch;
}

.values-quote {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  background: var(--ink);
  color: var(--white);
}

.values-quote::before {
  width: 44px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--rust);
  content: "";
}

.values-quote h2 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95;
}

.values-quote > p:last-child {
  max-width: 220px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.values-panel {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 32px;
  border: 1px solid rgba(24, 33, 29, 0.16);
  border-left: 0;
  background: var(--warm);
  color: var(--ink);
}

.values-panel-top,
.values-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(24, 33, 29, 0.58);
  font-size: 10px;
  letter-spacing: 2px;
}

.large-quote {
  margin: auto 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.45;
}

.large-quote em {
  color: var(--rust-dark);
  font-style: normal;
}

.circle-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(24, 33, 29, 0.32);
  border-radius: 50%;
  color: var(--rust);
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.8fr);
  gap: 120px;
  align-items: start;
}

.contact-section h2 {
  margin-top: 18px;
}

.contact-section h2 em {
  color: var(--rust);
}

.contact-detail {
  display: grid;
  gap: 18px;
  max-width: 430px;
  margin-top: 48px;
}

.contact-detail a,
.contact-detail div {
  display: grid;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-detail span {
  color: var(--rust);
  font-size: 11px;
  letter-spacing: 1px;
}

.contact-detail strong {
  font-size: 14px;
  font-weight: 500;
}

.contact-form {
  padding: 34px;
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(215, 101, 73, 0.12);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  color: var(--rust);
  font-size: 12px;
  letter-spacing: 1px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: rgba(24, 33, 29, 0.65);
  font-size: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  resize: vertical;
  transition: border-color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--rust);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(24, 33, 29, 0.36);
}

.contact-form .button {
  width: 100%;
  margin-top: 28px;
}

.form-note {
  margin: 16px 0 0;
  color: rgba(24, 33, 29, 0.48);
  font-size: 11px;
  line-height: 1.7;
}

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

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.wordmark-footer {
  color: var(--white);
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Songti SC", "STSong", serif;
  font-size: 18px;
}

.back-top {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  color: #f1c46c;
  transition: background 180ms ease, color 180ms ease;
}

.back-top:hover {
  background: #f1c46c;
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.icp-link {
  color: rgba(255, 255, 255, 0.36);
}

.icp-link:hover {
  color: #f1c46c;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  max-width: calc(100% - 48px);
  padding: 14px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-brand .hero-image {
  background-image: url("assets/user/home-hero-grains.png?v9");
  background-position: center;
}

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

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.hero-text-link span {
  color: #f1c46c;
  font-size: 18px;
}

.intro-grid-business .intro-lead {
  max-width: 760px;
}

.story-visual-new .image-frame img {
  object-position: center;
}

.product-grid-real .product-art img {
  object-position: center;
}

.section-more-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  color: var(--white);
  font-size: 13px;
}

.section-more-link span {
  color: #f1c46c;
  font-size: 18px;
}

.factory-preview {
  padding: 124px 0;
  background: var(--warm);
}

.factory-preview-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.factory-preview-copy h2 em,
.factory-copy h2 em,
.service-section h2 em {
  color: var(--rust);
  font-style: normal;
}

.factory-preview-copy .button {
  margin-top: 34px;
}

.service-chips,
.cta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.service-chips span,
.cta-list span {
  padding: 7px 12px;
  border: 1px solid rgba(24, 33, 29, 0.24);
  border-radius: 999px;
  color: rgba(24, 33, 29, 0.75);
  font-size: 11px;
}

.factory-preview-art {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: #a98767;
}

.factory-preview-art img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center 48%;
}

.factory-badge {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 130px;
  height: 130px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(24, 33, 29, 0.68);
  color: var(--white);
  text-align: center;
}

.factory-badge strong,
.factory-badge span {
  display: block;
}

.factory-badge strong {
  color: #f1c46c;
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.factory-badge span {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
}

.home-contact {
  background: var(--paper-light);
}

.wechat-card-real {
  min-height: 380px;
}

.wechat-qr {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  background: var(--white);
}

.subpage-hero-products::before {
  background-image: url("assets/user/kale-seven-black.jpg");
  background-position: center 42%;
}

.subpage-hero-about::before {
  background-image: url("assets/user/field-cultivation.jpg");
  background-position: center 58%;
}

.cta-list {
  max-width: 290px;
  margin: 0 0 4px;
}

.product-cta-content .cta-list span {
  border-color: rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.86);
}

.factory-section {
  padding: 124px 0;
  background: var(--paper);
}

.factory-main-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(52px, 9vw, 132px);
  align-items: center;
}

.factory-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}

.factory-image::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  content: "";
  pointer-events: none;
}

.factory-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 48%;
}

.factory-image-label {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 1;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: right;
}

.factory-copy h2 {
  margin-top: 18px;
}

.factory-copy .button {
  margin-top: 36px;
}

.service-section {
  padding: 124px 0;
  background: var(--paper-light);
}

.dark-note {
  color: rgba(24, 33, 29, 0.58);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.service-grid article {
  min-height: 230px;
  padding: 24px;
  border-top: 3px solid var(--rust);
  background: var(--paper);
  transition: transform 220ms var(--ease), background 220ms ease;
}

.service-grid article:hover {
  background: var(--warm);
  transform: translateY(-6px);
}

.service-grid article span {
  color: var(--rust);
  font-size: 10px;
  letter-spacing: 1.5px;
}

.service-grid article h3 {
  margin: 34px 0 8px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 28px;
  font-weight: 500;
}

.service-grid article p {
  margin: 0;
  color: rgba(24, 33, 29, 0.62);
  font-size: 13px;
  line-height: 1.85;
}

@media (max-width: 900px) {
  .official-logo {
    width: 148px;
  }

  .factory-preview-grid,
  .factory-main-grid {
    gap: 48px;
  }

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

@media (max-width: 700px) {
  .official-wordmark {
    min-height: 44px;
    padding: 3px 7px;
  }

  .official-logo {
    width: 134px;
    height: 34px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .factory-preview,
  .factory-section,
  .service-section {
    padding: 82px 0;
  }

  .factory-preview-grid,
  .factory-main-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .factory-preview-art,
  .factory-preview-art img,
  .factory-image,
  .factory-image img {
    min-height: 350px;
    height: 350px;
  }

  .factory-badge {
    width: 108px;
    height: 108px;
    right: 18px;
    bottom: 18px;
  }

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

  .wechat-qr {
    width: 174px;
    height: 174px;
    margin: 0 auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 40px;
  }

  .service-grid article {
    min-height: auto;
  }

  .product-cta-content .cta-list {
    margin-top: 24px;
  }
}

/* New Chinese visual language and the three-page content surfaces. */
.subpage {
  background: var(--paper);
}

.subpage-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  overflow: hidden;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.subpage-hero::before,
.subpage-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.subpage-hero::before {
  background-position: center;
  background-size: cover;
  filter: saturate(0.78);
}

.subpage-hero::after {
  background: rgba(24, 33, 29, 0.62);
}

.subpage-hero-products::before {
  background-image: url("assets/user/kale-seven-black.jpg");
  background-position: center 42%;
}

.subpage-hero-about::before {
  background-image: url("assets/user/field-cultivation.jpg");
  background-position: center 58%;
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 86px;
}

.subpage-hero h1 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 500;
  line-height: 1.08;
}

.subpage-hero h1 em {
  color: #f1c46c;
  font-style: normal;
}

.subpage-hero-content > p:last-child {
  max-width: 480px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.vertical-note {
  position: absolute;
  right: 5vw;
  bottom: 36px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Songti SC", "STSong", serif;
  font-size: 14px;
  letter-spacing: 4px;
  writing-mode: vertical-rl;
}

.split-intro {
  display: grid;
  grid-template-columns: 80px minmax(300px, 0.95fr) minmax(300px, 1fr);
  gap: 52px;
  align-items: start;
}

.split-intro > .section-marker {
  padding-top: 8px;
}

.split-intro .lead-copy {
  margin-top: 50px;
}

.product-detail-section {
  padding: 124px 0;
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.product-detail-section:nth-of-type(odd) {
  background: var(--paper);
}

.product-detail-reverse {
  background: var(--warm);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.product-detail-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.product-detail-image::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  content: "";
  pointer-events: none;
}

.product-detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.image-tone-brown {
  background: #7b5d45;
}

.image-tone-cream {
  background: #c8a27d;
}

.image-tone-jade {
  background: #657c6a;
}

.product-detail-image .vertical-note {
  top: 36px;
  right: 34px;
  bottom: auto;
  color: var(--white);
}

.product-detail-copy {
  max-width: 520px;
}

.product-number {
  display: block;
  margin-bottom: 28px;
  color: var(--rust);
  font-size: 11px;
  letter-spacing: 2.5px;
}

.product-detail-copy h2 {
  font-size: clamp(48px, 5vw, 78px);
}

.product-detail-copy h2 em {
  color: var(--rust);
  font-style: normal;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.product-tags span {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(24, 33, 29, 0.72);
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-size: 13px;
}

.text-link span {
  color: var(--rust);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.product-cta-band {
  padding: 110px 0;
  background: var(--rust);
  color: var(--white);
}

.product-cta-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.product-cta-content h2 {
  color: var(--white);
}

.product-cta-content h2 em {
  color: #f1c46c;
  font-style: normal;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 80px minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: start;
}

.about-story-grid > .section-marker {
  padding-top: 8px;
}

.about-story-copy {
  padding-top: 45px;
}

.about-facts-section {
  padding: 74px 0;
  background: var(--ink);
  color: var(--white);
}

.about-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-fact {
  min-height: 170px;
  padding: 18px 20px;
  border-top: 2px solid var(--rust);
}

.about-fact span,
.about-fact strong,
.about-fact p {
  display: block;
}

.about-fact span {
  color: #f1c46c;
  font-size: 11px;
  letter-spacing: 2px;
}

.about-fact strong {
  margin-top: 20px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 25px;
  font-weight: 500;
}

.about-fact p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.wechat-card {
  padding: 34px;
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(215, 101, 73, 0.12);
}

.wechat-card-large {
  min-height: 420px;
}

.wechat-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  margin: 24px 0 28px;
}

.wechat-qr-placeholder {
  display: grid;
  width: 180px;
  height: 180px;
  place-content: center;
  border: 10px solid var(--ink);
  outline: 1px solid var(--ink);
  outline-offset: 6px;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}

.wechat-qr-placeholder span {
  font-family: Georgia, serif;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1.25;
}

.wechat-qr-placeholder small {
  display: block;
  margin-top: 12px;
  color: rgba(24, 33, 29, 0.56);
  font-size: 10px;
  line-height: 1.5;
}

.wechat-copy {
  display: grid;
  gap: 7px;
}

.wechat-copy p,
.wechat-copy strong,
.wechat-copy span {
  display: block;
}

.wechat-copy p {
  margin: 0;
  color: var(--rust);
  font-size: 12px;
}

.wechat-copy strong {
  font-family: "Songti SC", "STSong", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
}

.wechat-copy span {
  color: rgba(24, 33, 29, 0.58);
  font-size: 12px;
  line-height: 1.8;
}

@media (max-width: 700px) {
  .brand-logo-image {
    width: 70px;
    height: 38px;
  }

  .subpage-hero {
    min-height: 610px;
  }

  .subpage-hero-content {
    padding-top: 108px;
  }

  .subpage-hero-content > p:last-child {
    font-size: 14px;
  }

  .split-intro,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .split-intro > .section-marker,
  .about-story-grid > .section-marker {
    padding-top: 0;
  }

  .split-intro .lead-copy,
  .about-story-copy {
    margin-top: 0;
    padding-top: 0;
  }

  .product-detail-section {
    padding: 78px 0;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-detail-image,
  .product-detail-image img {
    min-height: 330px;
    height: 330px;
  }

  .product-detail-copy h2 {
    font-size: 50px;
  }

  .product-cta-content {
    display: block;
  }

  .product-cta-content .button {
    margin-top: 28px;
  }

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

  .about-fact {
    min-height: 145px;
  }

  .wechat-card {
    padding: 24px 20px;
  }

  .wechat-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wechat-qr-placeholder {
    width: 164px;
    height: 164px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .site-nav {
    gap: 18px;
  }

  .story-grid,
  .craft-grid {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 30px;
  }

  .story-content,
  .craft-copy {
    grid-column: 2;
  }

  .story-visual {
    grid-column: 2;
    max-width: 520px;
    margin-top: 16px;
  }

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

  .product-card-featured {
    grid-column: span 2;
  }

  .product-card-featured .product-art {
    height: 320px;
  }

  .values-grid {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 40px;
  }

  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .announcement-inner {
    min-height: 32px;
    font-size: 10px;
  }

  .announcement-inner span {
    max-width: 68%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header {
    top: 32px;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 18px;
    background: var(--paper-light);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-link::after {
    right: auto;
    bottom: -1px;
    width: 36px;
  }

  .nav-cta {
    width: fit-content;
    margin-top: 16px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-image {
    background-position: 64% center;
  }

  .hero-content {
    padding-top: 108px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-copy br {
    display: none;
  }

  .hero-index,
  .hero-scroll {
    bottom: 24px;
  }

  .hero-index {
    left: 16px;
  }

  .hero-scroll {
    right: 16px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .intro-meta {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    border-left: 0;
    padding: 16px 0 0;
  }

  .section,
  .values-section {
    padding: 82px 0;
  }

  .story-grid,
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story-grid > .section-marker,
  .craft-grid > .section-marker,
  .story-content,
  .craft-copy,
  .story-visual {
    grid-column: auto;
  }

  .story-grid .section-marker,
  .craft-grid .section-marker {
    order: -2;
  }

  .story-content,
  .craft-copy {
    padding-top: 0;
  }

  .story-visual {
    margin-top: 20px;
    padding-top: 22px;
  }

  .story-stamp {
    right: -8px;
    width: 64px;
    height: 64px;
    font-size: 12px;
  }

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

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .heading-note {
    margin-top: 22px;
    text-align: left;
  }

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

  .product-card-featured {
    grid-column: auto;
  }

  .product-card-featured .product-art,
  .product-art {
    height: 260px;
  }

  .product-info p {
    min-height: auto;
  }

  .craft-steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 56px;
  }

  .craft-step {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
  }

  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-grid {
    gap: 0;
  }

  .values-quote {
    min-height: 0;
    padding: 38px 28px 42px;
  }

  .values-panel {
    min-height: 380px;
    border-top: 0;
    border-left: 1px solid rgba(24, 33, 29, 0.16);
  }

  .contact-form {
    padding: 24px 20px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    gap: 22px;
    justify-content: center;
    padding: 28px 0;
  }

  .footer-bottom {
    gap: 8px;
    justify-content: center;
    padding: 20px 0;
  }

  .back-top {
    position: absolute;
    right: 16px;
    margin-top: -58px;
  }
}

/* Content surfaces added for the product catalog, news, and partner channels. */
body {
  overflow-x: hidden;
}

.partners-section {
  padding: 124px 0;
  background: var(--paper-light);
}

.partners-page-section {
  padding: 112px 0 124px;
  background: var(--paper-light);
}

.subpage-hero-partners::before {
  background-image: url("assets/user/factory-production.jpg");
  background-position: center 48%;
}

.partners-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: center;
}

.partners-copy h2 {
  margin-top: 18px;
}

.partners-copy h2 em,
.news-section h2 em,
.news-detail-section h2 em,
.catalog-heading h2 em {
  color: var(--rust);
  font-style: normal;
}

.partner-board {
  padding: 0;
  border: 0;
  background: transparent;
}

.partner-board-heading,
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(24, 33, 29, 0.54);
  font-size: 10px;
  letter-spacing: 1.6px;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 28px;
  margin-top: 32px;
}

.partner-logo {
  display: grid;
  min-height: 140px;
  place-items: center;
  overflow: hidden;
  background: transparent;
  transition: transform 180ms var(--ease);
}

.partner-logo:nth-child(4),
.partner-logo:nth-child(5) {
  grid-column: span 1;
}

.partner-logo img {
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 600 / 260;
  object-fit: contain;
}

.partner-logo-dark {
  background: transparent;
}

.partner-logo:hover {
  transform: translateY(-3px);
}

.partner-board-note {
  margin: 20px 0 0;
  color: rgba(24, 33, 29, 0.5);
  font-size: 11px;
  line-height: 1.8;
}

.product-catalog-section {
  padding: 110px 0 124px;
  background: var(--paper-light);
}

.catalog-heading {
  align-items: flex-end;
  margin-bottom: 42px;
}

.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.catalog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(24, 33, 29, 0.13);
  background: var(--paper);
  transition: background 180ms ease, transform 220ms var(--ease), box-shadow 180ms ease;
}

.catalog-card:hover {
  background: var(--warm);
  box-shadow: 0 12px 26px rgba(24, 33, 29, 0.1);
  transform: translateY(-5px);
}

.catalog-card-image {
  display: block;
  aspect-ratio: 1.14;
  overflow: hidden;
  background: #c9b49b;
}

.catalog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}

.catalog-card:hover .catalog-card-image img {
  transform: scale(1.05);
}

.catalog-card-body {
  display: grid;
  gap: 6px;
  padding: 16px 17px 18px;
}

.catalog-card-body small {
  color: var(--rust);
  font-size: 10px;
  letter-spacing: 1.1px;
}

.catalog-card-body strong {
  min-height: 28px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.catalog-card-body > span {
  color: rgba(24, 33, 29, 0.58);
  font-size: 11px;
}

.process-block {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.process-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--rust);
  font-size: 10px;
  letter-spacing: 1.5px;
}

.process-heading small {
  color: rgba(24, 33, 29, 0.45);
  font-size: 10px;
  letter-spacing: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-width: 0;
  padding: 13px 12px 14px;
  background: rgba(231, 219, 201, 0.52);
}

.process-list b,
.process-list span,
.process-list small {
  display: block;
}

.process-list b {
  color: var(--rust);
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 500;
}

.process-list span {
  margin-top: 11px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 16px;
}

.process-list small {
  margin-top: 5px;
  color: rgba(24, 33, 29, 0.56);
  font-size: 10px;
  line-height: 1.65;
}

.product-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 58px;
  scroll-margin-top: 100px;
}

.product-mini-grid article {
  min-height: 182px;
  padding: 22px;
  border-top: 2px solid var(--rust);
  background: var(--white);
  scroll-margin-top: 100px;
}

.product-mini-grid article:target {
  box-shadow: 0 0 0 3px rgba(215, 101, 73, 0.18);
}

.product-mini-grid article > span {
  color: var(--rust);
  font-size: 10px;
  letter-spacing: 1px;
}

.product-mini-grid h3 {
  margin: 18px 0 7px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
}

.product-mini-grid p {
  min-height: 44px;
  margin: 0;
  color: rgba(24, 33, 29, 0.62);
  font-size: 12px;
  line-height: 1.75;
}

.product-mini-grid a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  color: var(--ink);
  font-size: 11px;
}

.product-mini-grid a span {
  color: var(--rust);
  font-size: 17px;
}

.news-section {
  padding: 112px 0 124px;
  background: var(--paper-light);
}

.subpage-hero-news::before {
  background-image: url("assets/user/factory-production.jpg");
  background-position: center 48%;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 18px;
}

.news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(24, 33, 29, 0.13);
  background: var(--paper);
  transition: background 180ms ease, transform 220ms var(--ease), box-shadow 180ms ease;
}

.news-card:hover {
  background: var(--warm);
  box-shadow: 0 12px 26px rgba(24, 33, 29, 0.1);
  transform: translateY(-5px);
}

.news-card-image {
  position: relative;
  aspect-ratio: 1.28;
  overflow: hidden;
  background: var(--ink);
}

.news-card-featured .news-card-image {
  aspect-ratio: 1.58;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-image > span:last-child {
  position: absolute;
  top: 16px;
  left: 17px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 1.8px;
}

.news-card-image-plain {
  display: grid;
  place-items: center;
  background: var(--rust);
}

.news-symbol {
  position: static !important;
  color: rgba(255, 255, 255, 0.94) !important;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(36px, 4vw, 58px) !important;
  letter-spacing: 5px !important;
  line-height: 1.1;
  text-align: center;
}

.news-symbol small {
  display: block;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
}

.news-card-image-plain > span:last-child {
  top: 16px;
  left: 17px;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 23px 26px;
}

.news-meta time {
  color: rgba(24, 33, 29, 0.4);
  letter-spacing: 0;
}

.news-card h3 {
  margin: 22px 0 10px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.35;
}

.news-card p {
  min-height: 74px;
  margin: 0;
  color: rgba(24, 33, 29, 0.64);
  font-size: 13px;
  line-height: 1.9;
}

.news-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.news-card h3 a {
  color: inherit;
}

.news-card-origin .news-card-image img {
  object-position: center 61%;
}

.news-detail-section {
  padding: 124px 0;
  background: var(--warm);
}

/* Brand origin editorial */
.origin-hero {
  position: relative;
  min-height: min(760px, 82vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.origin-hero-image,
.origin-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.origin-hero-image {
  object-fit: cover;
  object-position: center 58%;
}

.origin-hero-shade {
  background: linear-gradient(90deg, rgba(18, 25, 21, 0.9) 0%, rgba(18, 25, 21, 0.54) 48%, rgba(18, 25, 21, 0.12) 100%);
}

.origin-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(58px, 8vw, 104px);
}

.origin-back {
  display: inline-flex;
  gap: 10px;
  margin-bottom: clamp(52px, 8vw, 108px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.origin-hero h1 {
  max-width: 820px;
  margin: 14px 0 20px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(54px, 9vw, 118px);
  font-weight: 400;
  line-height: 0.98;
}

.origin-deck {
  max-width: 610px;
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.65;
}

.origin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 1.2px;
}

.origin-section {
  padding: clamp(84px, 10vw, 142px) 0;
}

.origin-narrow {
  max-width: 920px;
}

.origin-section h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.08;
}

.origin-intro {
  background: var(--paper-light);
}

.origin-intro h2 {
  margin-bottom: 42px;
}

.origin-intro p {
  color: rgba(24, 33, 29, 0.72);
  font-size: 15px;
  line-height: 2.15;
}

.origin-intro .origin-lead {
  color: var(--ink);
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.82;
}

.origin-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 62px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.origin-facts div {
  padding: 24px 14px 25px 0;
}

.origin-facts dt {
  color: var(--rust);
  font-size: 10px;
  letter-spacing: 1.2px;
}

.origin-facts dd {
  margin: 10px 0 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: 17px;
  line-height: 1.5;
}

.origin-section-head {
  margin-bottom: clamp(44px, 6vw, 76px);
}

.origin-section-head .eyebrow {
  margin-bottom: 12px;
}

.origin-story {
  background: var(--warm);
}

.origin-story-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(50px, 9vw, 132px);
}

.origin-story-grid aside {
  position: sticky;
  top: 120px;
  align-self: start;
}

.origin-story-grid aside img {
  width: 116px;
  mix-blend-mode: multiply;
}

.origin-story-grid aside p {
  margin: 24px 0 0;
  color: var(--rust);
  font-family: "Songti SC", "STSong", serif;
  font-size: 19px;
  line-height: 1.8;
}

.origin-story-copy p {
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: rgba(24, 33, 29, 0.76);
  font-size: 15px;
  line-height: 2.1;
}

.origin-story-copy p:first-child {
  padding-top: 0;
  border-top: 0;
}

.origin-timeline {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.origin-timeline .eyebrow {
  color: #d69b68;
}

.origin-timeline ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.origin-timeline li {
  position: relative;
  min-height: 290px;
  padding: 34px 28px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.origin-timeline li::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d69b68;
  content: "";
}

.origin-timeline strong {
  color: #d69b68;
  font-family: "Songti SC", "STSong", serif;
  font-size: 27px;
  font-weight: 400;
}

.origin-timeline li p {
  margin: 24px 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.9;
}

.origin-products {
  background: var(--paper-light);
}

.origin-products h3 {
  margin: 58px 0 20px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
}

.origin-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.origin-product-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.origin-product-grid article {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.origin-product-grid img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  background: #fff;
}

.origin-product-grid article:nth-child(-n + 3) img {
  object-fit: contain;
}

.origin-product-grid span {
  display: block;
  margin-top: 21px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 23px;
}

.origin-product-grid p {
  margin: 10px 0 0;
  color: rgba(24, 33, 29, 0.62);
  font-size: 13px;
  line-height: 1.85;
}

.origin-strength {
  background: #923d2c;
  color: var(--white);
}

.origin-strength-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(52px, 9vw, 130px);
}

.origin-strength-grid > div:last-child {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.origin-strength-grid > div:last-child p {
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 2;
}

.origin-strength-grid strong {
  color: var(--white);
  font-family: "Songti SC", "STSong", serif;
  font-size: 21px;
  font-weight: 400;
}

.origin-honors {
  background: var(--warm);
}

.origin-honor-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.origin-honor-list p {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 18px;
  margin: 0;
  padding: 23px 24px 23px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(24, 33, 29, 0.67);
  font-size: 13px;
  line-height: 1.7;
}

.origin-honor-list p:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.origin-honor-list p:nth-child(even) {
  padding-left: 24px;
}

.origin-honor-list strong {
  color: var(--rust);
  font-weight: 500;
}

.origin-culture {
  background: var(--ink);
  color: var(--white);
}

.origin-culture-lead {
  max-width: 940px;
  margin: -25px 0 76px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(25px, 4vw, 48px);
  line-height: 1.55;
}

.origin-culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.origin-culture-grid article {
  min-height: 220px;
  padding: 28px 28px 22px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.origin-culture-grid h3 {
  margin: 0 0 28px;
  color: #d69b68;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.3px;
}

.origin-culture-grid p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.95;
}

.origin-end-nav {
  background: var(--paper-light);
}

.origin-end-nav .container {
  display: flex;
  justify-content: space-between;
}

.origin-end-nav a {
  min-width: 220px;
  padding: 38px 0;
  color: var(--ink);
  font-family: "Songti SC", "STSong", serif;
  font-size: 22px;
}

.origin-end-nav a:last-child {
  text-align: right;
}

.origin-end-nav a span {
  display: block;
  margin-bottom: 8px;
  color: var(--rust);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 1.4px;
}

@media (max-width: 900px) {
  .origin-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .origin-story-grid,
  .origin-strength-grid {
    grid-template-columns: 1fr;
  }

  .origin-story-grid aside {
    position: static;
  }

  .origin-timeline ol {
    grid-template-columns: repeat(5, 260px);
    overflow-x: auto;
  }

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

@media (max-width: 700px) {
  .origin-hero {
    min-height: 680px;
  }

  .origin-hero-shade {
    background: linear-gradient(0deg, rgba(18, 25, 21, 0.94) 0%, rgba(18, 25, 21, 0.46) 75%, rgba(18, 25, 21, 0.2) 100%);
  }

  .origin-back {
    margin-bottom: 76px;
  }

  .origin-facts,
  .origin-product-grid,
  .origin-product-grid-two,
  .origin-honor-list,
  .origin-culture-grid {
    grid-template-columns: 1fr;
  }

  .origin-facts div {
    border-bottom: 1px solid var(--line);
  }

  .origin-product-grid {
    gap: 42px;
  }

  .origin-honor-list p,
  .origin-honor-list p:nth-child(even) {
    grid-template-columns: 110px 1fr;
    padding: 20px 0;
    border-right: 0;
  }

  .origin-culture-grid article {
    min-height: auto;
    padding: 26px 0 28px;
    border-right: 0;
  }

  .origin-end-nav a {
    min-width: 0;
    font-size: 18px;
  }
}

.news-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(52px, 9vw, 130px);
  align-items: start;
}

.news-detail-copy > .lead-copy {
  margin-top: 0;
}

.news-detail-list {
  display: grid;
  gap: 0;
  margin: 35px 0 31px;
  border-top: 1px solid var(--line);
}

.news-detail-list article {
  padding: 22px 0 25px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.news-detail-list article > span {
  color: var(--rust);
  font-size: 10px;
  letter-spacing: 1.3px;
}

.news-detail-list h3 {
  margin: 9px 0 5px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 24px;
  font-weight: 500;
}

.news-detail-list p {
  margin: 0;
  color: rgba(24, 33, 29, 0.64);
  font-size: 13px;
  line-height: 1.9;
}

.article-source {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--ink);
  font-size: 11px;
}

.article-source span {
  color: var(--rust);
  font-size: 17px;
}

.source-note {
  margin: 18px 0 0;
  color: rgba(24, 33, 29, 0.5);
  font-size: 11px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .product-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid,
  .news-detail-grid {
    gap: 48px;
  }

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

  .news-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .partners-section,
  .partners-page-section,
  .news-section,
  .news-detail-section,
  .product-catalog-section {
    padding: 82px 0;
  }

  .partners-grid,
  .news-detail-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .partner-board {
    padding: 0;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
  }

  .partner-logo {
    min-height: 102px;
  }

  .partner-logo img {
    width: 100%;
    height: auto;
  }

  .product-catalog-grid,
  .news-grid,
  .product-mini-grid {
    grid-template-columns: 1fr;
  }

  .news-card-featured {
    grid-column: auto;
  }

  .catalog-card-image,
  .news-card-image,
  .news-card-featured .news-card-image {
    aspect-ratio: 1.34;
  }

  .process-heading {
    display: block;
  }

  .process-heading small {
    display: block;
    margin-top: 6px;
  }

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

  .product-mini-grid {
    margin-top: 36px;
  }

  .product-mini-grid article {
    min-height: auto;
  }

  .news-card h3 {
    font-size: 23px;
  }
}
