:root {
  --ink: #14211b;
  --muted: #657067;
  --paper: #f8f4ea;
  --ivory: #fffaf0;
  --leaf: #3f6f4a;
  --moss: #6f7e4e;
  --gold: #b98d45;
  --cinnabar: #9a3e2d;
  --line: rgba(20, 33, 27, 0.14);
  --shadow: 0 24px 70px rgba(38, 45, 34, 0.14);
  font-family:
    "Noto Serif SC", "Songti SC", "STSong", "SimSun", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-break: strict;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px);
}

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

.brand-symbol {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-wordmark {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(20, 33, 27, 0.78);
  font: 600 14px/1 Inter, "PingFang SC", sans-serif;
}

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

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

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

.mobile-nav {
  position: relative;
  display: none;
  font-family: Inter, "PingFang SC", sans-serif;
}

.mobile-nav summary {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  list-style: none;
  place-items: center;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(20, 33, 27, 0.2);
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-icon,
.mobile-nav-icon::before,
.mobile-nav-icon::after {
  display: block;
  width: 19px;
  height: 1.5px;
  content: "";
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-icon {
  position: relative;
}

.mobile-nav-icon::before,
.mobile-nav-icon::after {
  position: absolute;
  left: 0;
}

.mobile-nav-icon::before {
  top: -6px;
}

.mobile-nav-icon::after {
  top: 6px;
}

.mobile-nav[open] .mobile-nav-icon {
  background: transparent;
}

.mobile-nav[open] .mobile-nav-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-nav[open] .mobile-nav-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav-panel {
  position: absolute;
  top: 50px;
  right: 0;
  display: grid;
  width: min(76vw, 260px);
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.97);
  border: 1px solid rgba(20, 33, 27, 0.14);
  box-shadow: 0 18px 46px rgba(20, 33, 27, 0.16);
  backdrop-filter: blur(18px);
}

.mobile-nav-panel a {
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-bottom: 1px solid rgba(20, 33, 27, 0.09);
}

.mobile-nav-panel a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.88) 34%, rgba(255, 250, 240, 0.34) 62%, rgba(255, 250, 240, 0.04) 100%),
    linear-gradient(0deg, rgba(248, 244, 234, 0.86) 0%, rgba(248, 244, 234, 0) 28%);
}

.hero-content {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: clamp(108px, 14vh, 156px) clamp(22px, 6vw, 76px) 38px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font: 700 12px/1.2 Inter, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

p {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.2vw, 80px);
  line-height: 1.04;
  font-weight: 700;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

h1 span {
  display: block;
}

.nowrap {
  white-space: nowrap;
}

.eyebrow,
.hero-facts dt,
.hero-facts dd,
.portfolio-label,
.product-tags span,
.proof-grid span,
.cert-grid span,
.cert-grid h3,
.contact-methods span,
.contact-methods a,
.contact-methods strong,
.entity-list strong,
.entity-list span {
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(20, 33, 27, 0.8);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font: 700 15px/1 "PingFang SC", "Microsoft YaHei", sans-serif;
}

.primary-action {
  color: var(--ivory);
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(20, 33, 27, 0.18);
}

.secondary-action {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(20, 33, 27, 0.18);
}

.facts-strip {
  padding: 0 clamp(22px, 6vw, 76px);
  background: linear-gradient(180deg, rgba(248, 244, 234, 0.92), var(--paper));
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1280px);
  margin: 0;
  margin-inline: auto;
  padding: 22px 0 8px;
  border-top: 1px solid rgba(20, 33, 27, 0.18);
}

.hero-facts div {
  padding-right: 24px;
}

.hero-facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font: 700 12px/1 Inter, Arial, sans-serif;
}

.hero-facts dd {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
}

.section {
  padding: clamp(76px, 10vw, 128px) clamp(22px, 6vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  width: min(100%, 1280px);
  margin: 0 auto 42px;
  align-items: end;
}

.section-heading > p:not(.eyebrow) {
  grid-column: 2;
  max-width: 720px;
  margin: -14px 0 0;
  font-size: clamp(16px, 1.7vw, 19px);
}

.section-heading.compact {
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.brand-position .section-heading {
  display: block;
  max-width: 980px;
  margin-bottom: 52px;
  text-align: center;
}

.brand-position .section-heading h2 {
  max-width: 920px;
  margin-inline: auto;
}

.products .section-heading.compact h2 {
  font-size: clamp(38px, 5.6vw, 68px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.18;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.25;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

p {
  color: rgba(20, 33, 27, 0.74);
  font-size: 16px;
  line-height: 1.86;
  text-wrap: pretty;
}

p,
summary,
.price-note,
.product-kicker,
.product-tags span,
.product-specs span,
.category-jump a,
.cooperation-points span,
.quality-steps span {
  orphans: 2;
  widows: 2;
}

.position-grid,
.product-grid,
.portfolio-grid {
  display: grid;
  width: min(100%, 1280px);
  margin: 0 auto;
  gap: 16px;
}

.position-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1100px);
  gap: 18px;
  align-items: stretch;
}

.position-grid article,
.product-card,
.portfolio-grid article,
.ai-card {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(20, 33, 27, 0.1);
  box-shadow: var(--shadow);
}

.position-grid article,
.product-card {
  min-height: 270px;
  padding: clamp(24px, 3vw, 34px);
}

.position-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.position-grid article > :not(.position-mark) {
  position: relative;
  z-index: 1;
}

.position-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 0;
  width: 90px;
  height: 84px;
  object-fit: contain;
  opacity: 0.58;
}

.product-card {
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 111, 74, 0.34);
  box-shadow: 0 28px 78px rgba(38, 45, 34, 0.18);
}

.position-lead {
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(20, 33, 27, 0.94), rgba(63, 111, 74, 0.9)),
    var(--ink) !important;
}

.position-lead p {
  color: rgba(255, 250, 240, 0.82);
}

.position-lead .line-icon {
  background: linear-gradient(90deg, rgba(198, 151, 66, 0.96), rgba(255, 250, 240, 0.74));
}

.line-icon {
  display: block;
  width: 46px;
  height: 2px;
  margin-bottom: 42px;
  background: linear-gradient(90deg, var(--gold), var(--leaf));
}

.quality-band {
  color: var(--ivory);
  background:
    linear-gradient(120deg, rgba(20, 33, 27, 0.97), rgba(38, 65, 45, 0.96)),
    var(--ink);
}

.quality-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 6vw, 90px);
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 118px) clamp(22px, 6vw, 76px);
  align-items: center;
}

.quality-band h2,
.quality-band p {
  color: inherit;
}

.quality-band p {
  color: rgba(255, 250, 240, 0.76);
}

.quality-action {
  margin-top: 28px;
  background: rgba(255, 250, 240, 0.96);
  border-color: transparent;
}

.quality-steps {
  display: grid;
  gap: 12px;
}

.quality-steps span {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  padding: 0 22px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.14);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.quality-steps b {
  min-width: 28px;
  color: rgba(198, 151, 66, 0.96);
  font: 800 12px/1 Inter, Arial, sans-serif;
}

.portfolio {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.2), rgba(231, 234, 219, 0.74)),
    var(--paper);
}

.portfolio .section-heading {
  display: block;
  max-width: 980px;
  margin-bottom: 20px;
  text-align: center;
}

.portfolio .section-heading h2 {
  max-width: 760px;
  margin-inline: auto;
}

.portfolio-intro {
  width: min(100%, 980px);
  margin: 0 auto 48px;
  text-align: center;
}

.portfolio-intro p {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(17px, 2vw, 20px);
}

.portfolio-grid {
  grid-template-columns: 1.15fr repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.portfolio-grid article {
  min-height: 260px;
  padding: clamp(24px, 2.8vw, 32px);
  position: relative;
  overflow: hidden;
}

.portfolio-grid article::after {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(20, 33, 27, 0.06);
  content: "品牌";
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.portfolio-main {
  grid-row: span 2;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(154, 62, 45, 0.94), rgba(20, 33, 27, 0.94)),
    var(--cinnabar) !important;
}

.portfolio-main p {
  color: rgba(255, 250, 240, 0.82);
}

.portfolio-main::after {
  color: rgba(255, 250, 240, 0.08) !important;
  content: "玄龄" !important;
}

.portfolio-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 28px;
  padding: 0 12px;
  color: var(--ivory);
  background: var(--ink);
  border-radius: 999px;
  font: 800 12px/1 "PingFang SC", "Microsoft YaHei", sans-serif;
}

.portfolio-label.extract {
  background: var(--leaf);
}

.portfolio-label.food {
  background: var(--gold);
}

.portfolio-label.online {
  background: #5f6f86;
}

.portfolio-label.ginseng {
  background: var(--cinnabar);
}

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

.product-intro {
  width: min(100%, 1180px);
  margin: -18px auto 34px;
  text-align: center;
}

.product-intro p {
  margin-bottom: 0;
  font-size: clamp(16px, 1.8vw, 19px);
  text-wrap: pretty;
}

.product-kicker {
  margin-bottom: 24px;
  color: var(--cinnabar);
  font: 800 13px/1 Inter, "PingFang SC", sans-serif;
}

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

.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: rgba(20, 33, 27, 0.76);
  background: rgba(63, 111, 74, 0.1);
  border: 1px solid rgba(63, 111, 74, 0.14);
  border-radius: 999px;
  font: 700 12px/1 "PingFang SC", "Microsoft YaHei", sans-serif;
}

.product-actions {
  display: flex;
  justify-content: center;
  width: min(100%, 1280px);
  margin: 30px auto 0;
}

.product-hero {
  --page-hero-image: url("./assets/page-heroes/products-hero.webp");
  padding: clamp(126px, 16vw, 178px) clamp(22px, 6vw, 76px) clamp(58px, 8vw, 92px);
  background:
    linear-gradient(115deg, rgba(255, 250, 240, 0.98), rgba(231, 234, 219, 0.8)),
    var(--paper);
}

.product-hero h1,
.product-hero p {
  width: min(100%, 1040px);
}

.product-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
}

.product-hero p {
  max-width: 760px;
  font-size: clamp(17px, 2vw, 21px);
}

.story-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 76vh;
  padding: clamp(126px, 16vw, 178px) clamp(22px, 6vw, 76px) clamp(72px, 9vw, 118px);
  background:
    radial-gradient(circle at 82% 24%, rgba(185, 141, 69, 0.2), transparent 28%),
    linear-gradient(115deg, rgba(255, 250, 240, 0.98), rgba(231, 234, 219, 0.82)),
    var(--paper);
}

.story-hero > :not(.story-hero-mark) {
  position: relative;
  z-index: 1;
}

.story-hero-mark {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(30px, 7vw, 110px);
  width: clamp(280px, 33vw, 520px);
  height: auto;
  opacity: 0.075;
  transform: translateY(-43%);
}

.story-hero h1,
.story-hero p {
  width: min(100%, 1120px);
}

.story-hero h1 {
  max-width: 1120px;
  font-size: clamp(44px, 6vw, 82px);
}

.story-hero p {
  max-width: 780px;
  font-size: clamp(17px, 2vw, 21px);
}

.story-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 88px);
  padding: clamp(72px, 10vw, 124px) clamp(22px, 6vw, 76px);
  align-items: center;
}

.story-mark {
  display: grid;
  min-height: 360px;
  place-items: center;
}

.story-mark img {
  width: min(64vw, 330px);
  height: auto;
  filter: drop-shadow(0 24px 55px rgba(20, 33, 27, 0.12));
}

.story-mark span {
  width: min(64vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 18px, rgba(154, 62, 45, 0.18) 19px 21px),
    radial-gradient(circle, rgba(185, 141, 69, 0.16), transparent 68%);
  border: 1px solid rgba(154, 62, 45, 0.22);
}

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

.story-copy p {
  font-size: clamp(16px, 1.7vw, 19px);
}

.trademark-section {
  padding: clamp(72px, 9vw, 118px) clamp(22px, 6vw, 76px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.28), rgba(231, 234, 219, 0.78)),
    var(--paper);
}

.trademark-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 5vw, 76px);
  width: min(100%, 1280px);
  margin: 0 auto;
  align-items: center;
}

.trademark-card {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: clamp(30px, 5vw, 64px);
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid rgba(20, 33, 27, 0.1);
  box-shadow: var(--shadow);
}

.trademark-card img {
  width: min(100%, 520px);
  height: auto;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

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

.story-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(20, 33, 27, 0.1);
  box-shadow: var(--shadow);
}

.brand-centered-heading {
  display: block;
  width: min(100%, 1080px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.brand-centered-heading h2,
.brand-centered-heading > p:not(.eyebrow) {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.brand-centered-heading > p:not(.eyebrow) {
  margin-top: 18px;
}

.timeline-section {
  padding: clamp(72px, 10vw, 122px) clamp(22px, 6vw, 76px);
  color: var(--ivory);
  background:
    linear-gradient(120deg, rgba(20, 33, 27, 0.96), rgba(63, 111, 74, 0.92)),
    var(--ink);
}

.timeline-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.timeline-section h2,
.timeline-section p {
  color: inherit;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.timeline article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.14);
}

.timeline article > span,
.proof-grid article > span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font: 800 13px/1 Inter, Arial, sans-serif;
}

.quality-hero-page {
  --page-hero-image: url("./assets/page-heroes/quality-hero.webp");
  min-height: 70vh;
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 141, 69, 0.18), transparent 29%),
    radial-gradient(circle at 88% 72%, rgba(63, 111, 74, 0.18), transparent 24%),
    linear-gradient(115deg, rgba(255, 250, 240, 0.99), rgba(231, 234, 219, 0.82)),
    var(--paper);
}

.quality-hero-page h1 {
  max-width: 900px;
}

.quality-hero-page p {
  max-width: 840px;
}

.quality-proof {
  padding: clamp(72px, 9vw, 116px) clamp(22px, 6vw, 76px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.46), rgba(231, 234, 219, 0.68)),
    var(--paper);
}

.quality-proof-heading {
  display: block;
  width: min(100%, 980px);
  margin: 0 auto 48px;
  text-align: center;
}

.quality-proof-heading h2 {
  max-width: none;
}

.quality-proof-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: clamp(16px, 1.7vw, 19px);
}

.quality-centered-heading,
.cooperation-centered-heading {
  display: block;
  max-width: 980px;
  margin-bottom: 48px;
  text-align: center;
}

.quality-centered-heading > p:not(.eyebrow),
.cooperation-centered-heading > p:not(.eyebrow) {
  grid-column: auto;
  max-width: 760px;
  margin: 18px auto 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.proof-grid article {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.72)),
    var(--ivory);
  border: 1px solid rgba(20, 33, 27, 0.1);
  box-shadow: var(--shadow);
}

.proof-grid article::after {
  position: absolute;
  right: 24px;
  bottom: 16px;
  color: rgba(20, 33, 27, 0.045);
  content: "品质";
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.process-line article {
  min-height: 220px;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(20, 33, 27, 0.1);
  box-shadow: 0 18px 46px rgba(38, 45, 34, 0.1);
}

.process-line article:last-child {
  border-right: 1px solid rgba(20, 33, 27, 0.1);
}

.quality-custom-section {
  padding: clamp(76px, 10vw, 128px) clamp(22px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(231, 234, 219, 0.86), rgba(255, 250, 240, 0.76)),
    var(--paper);
}

.quality-custom-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 96px);
  width: min(100%, 1280px);
  margin: 0 auto;
  align-items: start;
}

.quality-custom-intro {
  min-width: 0;
  padding-top: 8px;
}

.quality-custom-intro h2 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.18;
  text-wrap: balance;
}

.quality-custom-intro h2 span {
  display: block;
  white-space: nowrap;
}

.quality-custom-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.9;
}

.quality-custom-intro .primary-action {
  margin-top: 30px;
}

.quality-custom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 33, 27, 0.14);
  border-left: 1px solid rgba(20, 33, 27, 0.14);
}

.quality-custom-grid article {
  min-height: 286px;
  padding: clamp(28px, 3.5vw, 42px);
  background: rgba(255, 250, 240, 0.62);
  border-right: 1px solid rgba(20, 33, 27, 0.14);
  border-bottom: 1px solid rgba(20, 33, 27, 0.14);
}

.quality-custom-grid article > span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold);
  font: 800 12px/1 Inter, Arial, sans-serif;
  text-transform: uppercase;
}

.quality-custom-grid h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.5vw, 34px);
}

.quality-custom-grid p {
  margin: 0;
  line-height: 1.85;
}

.cert-section {
  padding: clamp(72px, 9vw, 116px) clamp(22px, 6vw, 76px);
  color: var(--ivory);
  background:
    linear-gradient(125deg, rgba(20, 33, 27, 0.97), rgba(63, 111, 74, 0.92)),
    var(--ink);
}

.cert-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  width: min(100%, 1280px);
  margin: 0 auto;
  align-items: start;
}

.cert-section h2,
.cert-section p {
  color: inherit;
}

.cert-section p {
  color: rgba(255, 250, 240, 0.76);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cert-grid article {
  min-height: auto;
  padding: 24px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.16);
}

.cert-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font: 800 clamp(18px, 2.5vw, 28px)/1 Inter, Arial, sans-serif;
}

.cert-preview {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 20px;
  padding: 8px;
  object-fit: contain;
  object-position: top center;
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid rgba(255, 250, 240, 0.18);
}

.cert-grid h3 {
  color: var(--ivory);
}

.cert-grid p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.75;
}

.cooperation-hero {
  --page-hero-image: url("./assets/page-heroes/cooperation-hero.webp");
  background:
    radial-gradient(circle at 84% 18%, rgba(185, 141, 69, 0.22), transparent 30%),
    linear-gradient(115deg, rgba(255, 250, 240, 0.98), rgba(231, 234, 219, 0.82)),
    var(--paper);
}

.partner-grid,
.cooperation-products,
.cooperation-process {
  display: grid;
  width: min(100%, 1280px);
  margin: 0 auto;
  gap: 16px;
}

.partner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-grid article,
.cooperation-products article,
.cooperation-process article {
  background: rgba(255, 250, 240, 0.84);
  border: 1px solid rgba(20, 33, 27, 0.1);
  box-shadow: var(--shadow);
}

.partner-grid article {
  min-height: 300px;
  padding: clamp(26px, 3vw, 36px);
}

.partner-grid span,
.cooperation-process span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font: 800 13px/1 Inter, Arial, sans-serif;
}

.cooperation-band {
  padding: clamp(72px, 9vw, 116px) clamp(22px, 6vw, 76px);
  color: var(--ivory);
  background:
    linear-gradient(120deg, rgba(20, 33, 27, 0.97), rgba(63, 111, 74, 0.92)),
    var(--ink);
}

.cooperation-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 88px);
  width: min(100%, 1280px);
  margin: 0 auto;
  align-items: center;
}

.cooperation-band h2,
.cooperation-band p {
  color: inherit;
}

.cooperation-band p {
  max-width: 660px;
  color: rgba(255, 250, 240, 0.76);
}

.cooperation-points {
  display: grid;
  gap: 10px;
}

.cooperation-points > span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.14);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 700;
}

.advantage-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.advantage-points article {
  min-height: 146px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.14);
}

.advantage-points strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ivory);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.28;
  word-break: keep-all;
  overflow-wrap: normal;
}

.advantage-points span {
  color: rgba(255, 250, 240, 0.76);
  font-size: 15px;
  line-height: 1.78;
}

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

.cooperation-products article {
  min-height: 220px;
  padding: clamp(24px, 3vw, 34px);
}

.process-section {
  padding: clamp(76px, 10vw, 128px) clamp(22px, 6vw, 76px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.16), rgba(231, 234, 219, 0.68)),
    var(--paper);
}

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

.cooperation-process article {
  min-height: 220px;
  padding: clamp(24px, 3vw, 34px);
}

.contact-section {
  padding: clamp(76px, 10vw, 128px) clamp(22px, 6vw, 76px);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(32px, 6vw, 88px);
  width: min(100%, 1280px);
  margin: 0 auto;
  align-items: start;
}

.contact-note {
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(20, 33, 27, 0.1);
  color: rgba(20, 33, 27, 0.76);
  line-height: 1.8;
}

.contact-note strong {
  color: var(--ink);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-methods article {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(20, 33, 27, 0.1);
}

.contact-methods span {
  color: var(--gold);
  font: 800 12px/1.2 Inter, "PingFang SC", sans-serif;
}

.contact-methods a,
.contact-methods strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
}

.qr-card img {
  width: min(100%, 230px);
  height: auto;
  margin: 4px 0 6px;
  border: 1px solid rgba(20, 33, 27, 0.12);
}

.cooperation-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid rgba(20, 33, 27, 0.1);
  box-shadow: var(--shadow);
}

.cooperation-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font: 700 14px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif;
}

.cooperation-form input,
.cooperation-form select,
.cooperation-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 33, 27, 0.16);
  border-radius: 0;
  font: 500 15px/1.5 "PingFang SC", "Microsoft YaHei", sans-serif;
}

.cooperation-form textarea {
  resize: vertical;
}

.cooperation-form button {
  min-height: 52px;
  color: var(--ivory);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: 800 15px/1 "PingFang SC", "Microsoft YaHei", sans-serif;
}

.form-hint {
  margin: -4px 0 0;
  color: rgba(20, 33, 27, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.cooperation-materials {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.24), rgba(231, 234, 219, 0.72)),
    var(--paper);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.material-grid article {
  min-height: 240px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 240, 0.84);
  border: 1px solid rgba(20, 33, 27, 0.1);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: clamp(48px, 7vw, 84px) clamp(22px, 6vw, 76px);
  color: rgba(255, 250, 240, 0.78);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  gap: 24px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.footer-brand img {
  width: 168px;
  height: auto;
  filter: invert(1) brightness(1.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-links a {
  color: var(--ivory);
  font: 700 14px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
}

.category-jump {
  position: sticky;
  z-index: 10;
  top: 76px;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  gap: 10px;
  padding: 14px clamp(22px, 6vw, 76px);
  overflow-x: auto;
  background: rgba(255, 250, 240, 0.86);
  border-top: 1px solid rgba(20, 33, 27, 0.1);
  border-bottom: 1px solid rgba(20, 33, 27, 0.1);
  backdrop-filter: blur(16px);
}

.category-jump a {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  color: rgba(20, 33, 27, 0.78);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(20, 33, 27, 0.12);
  border-radius: 999px;
  font: 700 13px/1 "PingFang SC", "Microsoft YaHei", sans-serif;
}

.category-section {
  scroll-margin-top: 148px;
  padding: clamp(64px, 9vw, 112px) clamp(22px, 6vw, 76px);
  border-bottom: 1px solid rgba(20, 33, 27, 0.08);
}

.category-section:nth-of-type(odd) {
  background: rgba(255, 250, 240, 0.52);
}

.category-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  width: min(100%, 1280px);
  margin: 0 auto 28px;
  align-items: end;
}

.category-heading p:last-child {
  margin-bottom: 0;
}

.subproduct-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.subproduct-grid article {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: rgba(20, 33, 27, 0.82);
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid rgba(20, 33, 27, 0.1);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.herb-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.product-showcase,
.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.product-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-showcase.featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-showcase.compact-showcase,
.product-showcase.drinks-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-showcase article,
.scene-grid article,
.gift-panel,
.extract-layout article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid rgba(20, 33, 27, 0.1);
  box-shadow: var(--shadow);
}

.product-showcase article,
.scene-grid article {
  display: flex;
  flex-direction: column;
}

.product-showcase article p,
.scene-grid article p,
.gift-panel p,
.extract-layout p {
  margin-bottom: 0;
}

.product-showcase .focus-product {
  position: relative;
  grid-column: 1 / -1;
  grid-row: auto;
  display: grid;
  align-items: end;
  min-height: 300px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px) clamp(26px, 4vw, 48px);
  color: var(--ivory);
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 250, 240, 0.1) 0%, rgba(255, 250, 240, 0) 42%),
    linear-gradient(145deg, rgba(18, 35, 28, 0.98) 0%, rgba(45, 48, 35, 0.96) 54%, rgba(111, 57, 41, 0.94) 100%),
    var(--ink);
}

.product-showcase .focus-product::before {
  position: absolute;
  inset: 16px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 250, 240, 0.18);
}

.product-showcase .focus-product::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 35, 28, 0.96) 0%, rgba(18, 35, 28, 0.78) 34%, rgba(18, 35, 28, 0.2) 66%, rgba(111, 57, 41, 0.2) 100%),
    linear-gradient(0deg, rgba(20, 33, 27, 0.16), rgba(20, 33, 27, 0));
}

.focus-product-copy,
.focus-product .product-specs {
  position: relative;
  z-index: 2;
}

.focus-product-copy {
  max-width: min(52%, 610px);
}

.product-showcase .focus-product p {
  color: rgba(255, 250, 240, 0.78);
}

.product-showcase .focus-product .product-kicker,
.product-showcase .focus-product h3 {
  color: var(--ivory);
}

.product-showcase .focus-product .product-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: rgba(255, 250, 240, 0.92);
  background: rgba(255, 250, 240, 0.1);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
}

.product-showcase .focus-product h3 {
  margin-bottom: 14px;
  font-size: clamp(40px, 3.8vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.product-showcase .focus-product h3 span,
.product-showcase .focus-product h3 small {
  display: block;
}

.product-showcase .focus-product h3 small {
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.56);
  font: 700 clamp(11px, 1vw, 13px)/1.2 "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.focus-product-copy p:not(.product-kicker) {
  max-width: 25em;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  text-wrap: pretty;
}

.focus-product-art {
  position: absolute;
  z-index: 1;
  top: 28px;
  right: clamp(34px, 5vw, 76px);
  bottom: 28px;
  width: min(52%, 690px);
  margin: 0;
  overflow: hidden;
  opacity: 0.72;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
}

.focus-product-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.02) brightness(0.9);
}

.product-showcase .focus-product .product-specs span {
  color: var(--ivory);
  background: rgba(255, 250, 240, 0.1);
  border-color: rgba(255, 250, 240, 0.18);
  backdrop-filter: blur(10px);
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  max-width: min(56%, 680px);
}

.product-specs span {
  min-height: 40px;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 0 16px;
  color: rgba(20, 33, 27, 0.8);
  background: rgba(63, 111, 74, 0.1);
  border: 1px solid rgba(63, 111, 74, 0.16);
  border-radius: 999px;
  font: 700 13px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif;
}

.featured-product-set {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1280px);
  margin: 18px auto 0;
}

.product-list-toolbar,
.product-list-actions {
  width: min(100%, 1280px);
  margin: 18px auto 0;
}

.product-list-toolbar {
  display: flex;
  justify-content: flex-end;
}

.product-list-toolbar p {
  margin: 0;
  color: rgba(20, 33, 27, 0.58);
  font: 700 13px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif;
}

.product-list-actions {
  display: flex;
  justify-content: center;
}

.product-list-actions [hidden] {
  display: none;
}

.featured-product-set article {
  overflow: hidden;
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid rgba(20, 33, 27, 0.1);
  box-shadow: var(--shadow);
}

.product-photo-frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  color: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 250, 240, 0.92) 0%, rgba(238, 233, 211, 0.72) 54%, rgba(226, 230, 214, 0.5) 100%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(231, 234, 219, 0.48));
}

.product-photo-frame::before {
  content: none;
  position: absolute;
  inset: -18%;
  background-image: var(--product-photo);
  background-position: center;
  background-size: cover;
  filter: blur(22px) saturate(0.75) sepia(0.12);
  opacity: 0.12;
  transform: scale(1.06);
}

.product-photo-frame::after {
  content: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.44), rgba(255, 250, 240, 0.18)),
    radial-gradient(circle at 50% 52%, rgba(255, 250, 240, 0.1), rgba(231, 234, 219, 0.48));
}

.featured-product-set img {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.99) sepia(0.02);
}

.product-photo-frame.ecom-photo {
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 250, 240, 0.95) 0%, rgba(248, 244, 234, 0.92) 52%, rgba(238, 233, 221, 0.78) 100%),
    var(--paper);
}

.product-photo-frame.ecom-photo img {
  object-fit: contain;
  background: transparent;
  filter: none;
}

.product-photo-frame.ecom-photo.portrait-product img {
  width: 94%;
  height: 94%;
  object-fit: contain !important;
  object-position: center center;
}

.featured-product-set article > div {
  padding: clamp(22px, 3vw, 30px);
}

.featured-product-set h3 {
  max-width: 100%;
  font-size: clamp(18px, 1.36vw, 22px);
  line-height: 1.28;
  text-wrap: balance;
}

.structured-product-title span {
  display: block;
  white-space: nowrap;
}

.featured-product-set p {
  margin-bottom: 0;
}

.lightbox-open {
  overflow: hidden;
}

.product-lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(20, 33, 27, 0.72);
  backdrop-filter: blur(10px);
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox img {
  display: block;
  max-width: min(100%, 1120px);
  max-height: min(86vh, 900px);
  object-fit: contain;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.product-lightbox-close {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(20, 33, 27, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  font: 400 30px/1 "PingFang SC", "Microsoft YaHei", sans-serif;
}

.scene-grid {
  margin-bottom: 18px;
}

.scene-grid article {
  min-height: 210px;
}

.gift-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 52px);
  width: min(100%, 1280px);
  margin: 0 auto;
  align-items: center;
}

.gift-panel .subproduct-grid,
.extract-layout .subproduct-grid {
  width: 100%;
}

.extract-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.extract-lead {
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(63, 111, 74, 0.95), rgba(20, 33, 27, 0.96)),
    var(--leaf) !important;
}

.extract-lead p {
  color: rgba(255, 250, 240, 0.78);
}

.extract-lead .product-kicker,
.extract-lead h3 {
  color: var(--ivory);
}

.extract-lead .primary-action {
  width: fit-content;
  margin-top: 28px;
  background: rgba(255, 250, 240, 0.16);
  border: 1px solid rgba(255, 250, 240, 0.2);
}

.ai-section {
  padding: 18px clamp(22px, 6vw, 76px) clamp(76px, 10vw, 128px);
}

.ai-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 80px);
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 70px);
}

.ai-card h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.entity-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(20, 33, 27, 0.12);
  border: 1px solid rgba(20, 33, 27, 0.1);
}

.entity-list li {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
  padding: 20px;
  background: var(--ivory);
}

.entity-list strong {
  color: var(--ink);
}

.entity-list span {
  color: var(--muted);
  line-height: 1.6;
}

.closing {
  padding: clamp(76px, 10vw, 126px) clamp(22px, 6vw, 76px);
  text-align: center;
  background: #e7eadb;
}

.closing h2 {
  max-width: 860px;
  margin: 0 auto 30px;
}

.dark {
  background: var(--leaf);
}

.closing p {
  max-width: 760px;
  margin: 0 auto 28px;
}

.faq-hero {
  --page-hero-image: url("./assets/page-heroes/faq-hero.webp");
  background:
    linear-gradient(115deg, rgba(255, 250, 240, 0.98), rgba(231, 234, 219, 0.78)),
    var(--paper);
}

.product-hero,
.quality-hero-page,
.cooperation-hero {
  position: relative;
  display: flex;
  min-height: 70vh;
  overflow: hidden;
  isolation: isolate;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.product-hero::before,
.quality-hero-page::before,
.cooperation-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background-image: var(--page-hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.product-hero::after,
.quality-hero-page::after,
.cooperation-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 244, 234, 0.93) 0%, rgba(248, 244, 234, 0.74) 40%, rgba(248, 244, 234, 0.12) 70%, rgba(248, 244, 234, 0) 100%),
    linear-gradient(0deg, rgba(248, 244, 234, 0.28), rgba(248, 244, 234, 0) 48%);
}

.quality-hero-page::before,
.cooperation-hero::before {
  background-position: 60% center;
  filter: saturate(0.86) brightness(1.04);
}

.quality-hero-page::after,
.cooperation-hero::after {
  background:
    linear-gradient(90deg, rgba(248, 244, 234, 0.99) 0%, rgba(248, 244, 234, 0.97) 38%, rgba(248, 244, 234, 0.88) 50%, rgba(248, 244, 234, 0.54) 64%, rgba(248, 244, 234, 0.08) 84%, rgba(248, 244, 234, 0) 100%),
    linear-gradient(0deg, rgba(248, 244, 234, 0.3), rgba(248, 244, 234, 0) 52%);
}

.product-hero > *,
.quality-hero-page > *,
.cooperation-hero > * {
  position: relative;
  z-index: 2;
}

.story-hero.quality-hero-page > *,
.story-hero.cooperation-hero > * {
  z-index: 3;
}

.quality-hero-page h1,
.cooperation-hero h1 {
  color: var(--ink);
}

.quality-hero-page .eyebrow,
.cooperation-hero .eyebrow {
  color: var(--gold);
}

.product-hero h1,
.quality-hero-page h1,
.cooperation-hero h1 {
  width: min(58vw, 900px);
}

.quality-hero-page h1,
.cooperation-hero h1 {
  width: min(48vw, 760px);
}

.product-hero > p:not(.eyebrow),
.quality-hero-page > p:not(.eyebrow),
.cooperation-hero > p:not(.eyebrow) {
  width: min(48vw, 720px);
}

.quality-hero-page > p:not(.eyebrow),
.cooperation-hero > p:not(.eyebrow) {
  width: min(43vw, 660px);
  color: rgba(20, 33, 27, 0.82);
}

.faq-hero h1 {
  max-width: 1120px;
  font-size: clamp(40px, 5.4vw, 70px);
}

.faq-section {
  padding: clamp(64px, 8vw, 104px) clamp(22px, 6vw, 76px);
  border-top: 1px solid rgba(20, 33, 27, 0.08);
}

.faq-section:nth-child(odd) {
  background: rgba(255, 250, 240, 0.46);
}

.faq-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  width: min(100%, 1180px);
  margin: 0 auto 24px;
  align-items: end;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.faq-list details {
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid rgba(20, 33, 27, 0.1);
  box-shadow: 0 16px 42px rgba(38, 45, 34, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  text-wrap: balance;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
  }

  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.86) 55%, rgba(255, 250, 240, 0.34) 100%),
      linear-gradient(0deg, rgba(248, 244, 234, 0.92) 0%, rgba(248, 244, 234, 0) 36%);
  }

  .section-heading,
  .quality-proof-heading,
  .position-grid,
  .quality-inner,
  .product-grid,
  .portfolio-grid,
  .category-heading,
  .faq-heading,
  .story-band,
  .story-grid,
  .story-grid.two,
  .story-grid.three,
  .timeline,
  .proof-grid,
  .process-line,
  .quality-custom-inner,
  .cert-inner,
  .partner-grid,
  .cooperation-inner,
  .advantage-points,
  .cooperation-products,
  .cooperation-process,
  .contact-inner,
  .ai-card,
  .product-showcase,
  .product-showcase.featured,
  .product-showcase.compact-showcase,
  .product-showcase.drinks-showcase,
  .scene-grid,
  .gift-panel,
  .extract-layout,
  .featured-product-set,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .position-grid article,
  .proof-grid article,
  .process-line article,
  .product-card,
  .portfolio-grid article,
  .product-showcase article,
  .scene-grid article,
  .gift-panel,
  .extract-layout article,
  .featured-product-set article,
  .material-grid article {
    min-height: auto;
  }

  .product-showcase .focus-product {
    grid-row: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .focus-product-art {
    top: 34px;
    right: -28px;
    bottom: auto;
    width: min(58%, 360px);
    height: 230px;
    opacity: 0.34;
  }

  .focus-product-copy,
  .product-specs {
    max-width: 100%;
  }

  .portfolio-main {
    grid-row: auto;
  }

  .subproduct-grid,
  .herb-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-line article {
    border-right: 0;
    border-bottom: 1px solid rgba(20, 33, 27, 0.1);
  }

  .process-line article:last-child {
    border-bottom: 0;
  }

  .section-heading > p:not(.eyebrow),
  .quality-proof-heading p:not(.eyebrow) {
    grid-column: 1;
    margin-top: 0;
  }

  .quality-centered-heading > p:not(.eyebrow),
  .cooperation-centered-heading > p:not(.eyebrow) {
    margin-top: 16px;
  }

  .partner-grid article,
  .advantage-points article,
  .cooperation-products article,
  .cooperation-process article {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: center;
    gap: 14px;
  }

  .site-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

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

  .brand-wordmark {
    width: 64px;
  }

  .hero {
    min-height: 760px;
  }

  .product-hero,
  .quality-hero-page,
  .cooperation-hero {
    min-height: 700px;
  }

  .product-hero::before,
  .quality-hero-page::before,
  .cooperation-hero::before {
    background-position: 72% center;
    opacity: 0.56;
  }

  .product-hero::after,
  .quality-hero-page::after,
  .cooperation-hero::after {
    background: linear-gradient(90deg, rgba(248, 244, 234, 0.97), rgba(248, 244, 234, 0.82));
  }

  .quality-hero-page::before,
  .cooperation-hero::before {
    opacity: 0.42;
  }

  .quality-hero-page::after,
  .cooperation-hero::after {
    background: linear-gradient(90deg, rgba(248, 244, 234, 0.99), rgba(248, 244, 234, 0.92));
  }

  .product-hero h1,
  .quality-hero-page h1,
  .cooperation-hero h1,
  .product-hero > p:not(.eyebrow),
  .quality-hero-page > p:not(.eyebrow),
  .cooperation-hero > p:not(.eyebrow) {
    width: 100%;
  }

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

  h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

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

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-facts div {
    padding-right: 0;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .entity-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .category-jump {
    top: 0;
  }

  .subproduct-grid,
  .herb-list,
  .quality-custom-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase .focus-product {
    min-height: 360px;
    padding: 30px 24px;
  }

  .product-showcase .focus-product h3 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .focus-product-copy p:not(.product-kicker) {
    max-width: none;
    font-size: 17px;
  }

  .story-mark {
    min-height: 240px;
  }

  .story-hero-mark {
    top: 38%;
    right: -92px;
    width: 270px;
    opacity: 0.05;
  }

  .trademark-inner {
    grid-template-columns: 1fr;
  }

  .cooperation-form {
    padding: 22px;
  }
}
