/*
文件说明：该文件实现“柚喜饰界”首页 demo 的全部视觉样式。
功能说明：负责色彩系统、木纹质感、响应式布局、卡片状态与二维码占位。

结构概览：
  第一部分：基础变量与全局样式
  第二部分：导航与 Hero
  第三部分：内容模块与卡片
  第四部分：企业微信、Footer 与响应式适配
*/

/* ========== 第一部分：基础变量与全局样式 ========== */
:root {
  --coffee: #21170f;
  --coffee-soft: #392819;
  --teak: #9a6736;
  --teak-light: #c89962;
  --cream: #f7f1e8;
  --apricot: #ead7bd;
  --olive: #657047;
  --olive-dark: #485436;
  --ink: #2a2118;
  --muted: #746658;
  --line: rgba(88, 64, 40, 0.18);
  --white: #fffaf2;
  --shadow: 0 22px 60px rgba(43, 29, 15, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(210, 178, 132, 0.24), transparent 28rem),
    linear-gradient(180deg, #fbf6ed 0%, #f5ecdf 52%, #fbf7ef 100%);
  font-family: "Noto Serif SC", "Songti SC", "Microsoft YaHei", serif;
  line-height: 1.7;
}

button,
a {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.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;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0;
}

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

.section-heading h2,
.trust-section h2,
.wechat-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-heading p,
.wechat-copy p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.view-all {
  flex: 0 0 auto;
  color: var(--coffee-soft);
  font-size: 15px;
  border-bottom: 1px solid rgba(57, 40, 25, 0.35);
}

.lead-magnet {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 16px;
  color: var(--olive-dark);
  background: rgba(101, 112, 71, 0.08);
  border: 1px solid rgba(101, 112, 71, 0.26);
  border-radius: 6px;
  font-size: 15px;
  transition: transform 160ms ease, background 160ms ease;
}

.lead-magnet:hover {
  transform: translateY(-1px);
  background: rgba(101, 112, 71, 0.14);
}

/* ========== 第二部分：导航与 Hero ========== */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  padding: 14px 0;
  transform: translateX(-50%);
  color: var(--white);
}

.site-header::before {
  position: absolute;
  inset: 10px -18px;
  z-index: -1;
  content: "";
  background: rgba(30, 20, 12, 0.72);
  border: 1px solid rgba(241, 218, 184, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 6px 10px 6px 8px;
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(236, 210, 172, 0.58);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(20, 12, 7, 0.2);
}

.brand-logo-image {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(230px, 24vw);
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 4px;
  overflow: hidden;
  background: #fff8ed;
  border: 1px solid rgba(236, 210, 172, 0.75);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(20, 12, 7, 0.18);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 7px;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-text strong {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: rgba(255, 250, 242, 0.76);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  color: rgba(255, 250, 242, 0.86);
  font-size: 15px;
}

.main-nav a,
.nav-link {
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  transition: color 160ms ease;
}

.main-nav a:hover,
.nav-link:hover {
  color: var(--apricot);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown-trigger::after {
  display: inline-block;
  margin-left: 6px;
  content: "⌄";
  color: rgba(255, 250, 242, 0.72);
  font-size: 12px;
  transition: transform 160ms ease;
}

.nav-dropdown.is-open .nav-dropdown-trigger::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 30;
  display: grid;
  width: 176px;
  padding: 10px;
  color: var(--coffee);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(245, 235, 218, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(200, 153, 98, 0.16), transparent 9rem);
  border: 1px solid rgba(236, 210, 172, 0.62);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(20, 12, 7, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a {
  padding: 8px 10px;
  color: var(--coffee-soft);
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  color: var(--coffee);
  background: rgba(200, 153, 98, 0.16);
  outline: 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-cta,
.btn,
.pill-button,
.merchant-link {
  border-radius: 6px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta {
  min-height: 46px;
  padding: 0 24px;
  color: #fff7ea;
  background: linear-gradient(180deg, #c79a65, #9f6d38);
  border: 1px solid rgba(255, 236, 204, 0.34);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.nav-cta:hover,
.btn:hover,
.pill-button:hover,
.merchant-link:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #1b1009;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 10, 6, 0.92) 0%, rgba(25, 15, 9, 0.78) 34%, rgba(25, 15, 9, 0.28) 72%, rgba(18, 10, 6, 0.18) 100%),
    linear-gradient(180deg, rgba(18, 10, 6, 0.2), rgba(18, 10, 6, 0.46));
}

.hero::after {
  position: absolute;
  right: 7vw;
  bottom: 72px;
  width: min(380px, 34vw);
  height: 120px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(234, 202, 150, 0.22), transparent 70%);
  filter: blur(18px);
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 84px;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(238, 216, 181, 0.78);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--olive-dark);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-hook {
  margin: 24px 0 0;
  color: #fff2dd;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
}

.hero-copy {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 250, 242, 0.84);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 16px;
}

.btn-primary {
  color: #fffaf0;
  background: var(--olive);
  box-shadow: 0 16px 34px rgba(32, 39, 21, 0.28);
}

.btn-secondary {
  color: var(--coffee);
  background: #efd8b9;
  border-color: rgba(255, 249, 238, 0.34);
}

.btn-ghost {
  color: #fff7e9;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 247, 232, 0.42);
}

/* ========== 第三部分：内容模块与卡片 ========== */
.value-section {
  padding-top: 42px;
  padding-bottom: 28px;
}

.about-intro {
  max-width: 880px;
  margin-bottom: 24px;
}

.about-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.25;
}

.about-intro p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(58, 39, 20, 0.08);
}

.value-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 168px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.value-card:last-child {
  border-right: 0;
}

.value-card h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.35;
}

.value-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.line-icon {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: #fff8ec;
  background: var(--olive);
  border-radius: 50%;
}

.value-card:nth-child(2) .line-icon {
  background: #b07a42;
}

.value-card:nth-child(3) .line-icon {
  background: #725034;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
  border: 2px solid currentColor;
}

.users-icon::before {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.users-icon::after {
  width: 44px;
  height: 24px;
  top: 43px;
  border-top: 0;
  border-radius: 0 0 28px 28px;
}

.shield-icon::before {
  width: 34px;
  height: 40px;
  border-radius: 18px 18px 22px 22px;
}

.shield-icon::after {
  width: 12px;
  height: 20px;
  border-top: 0;
  border-left: 0;
  transform: rotate(42deg);
}

.trust-icon::before {
  width: 28px;
  height: 28px;
  top: 18px;
  border-radius: 50%;
}

.trust-icon::after {
  width: 42px;
  height: 24px;
  top: 45px;
  border-top: 0;
  border-radius: 0 0 28px 28px;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.knowledge-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.knowledge-topic-card {
  scroll-margin-top: 112px;
  min-height: 286px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(247, 239, 226, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(154, 103, 54, 0.1), transparent 9rem);
  border: 1px solid rgba(91, 63, 35, 0.15);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(67, 45, 23, 0.07);
}

.knowledge-topic-card.feature {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(238, 222, 197, 0.92)),
    url("./assets/images/knowledge-teak-grain.jpg") center / cover;
  background-blend-mode: screen;
  border-color: rgba(154, 103, 54, 0.28);
}

.topic-index,
.solution-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: #fffaf2;
  background: var(--olive);
  border-radius: 999px;
  font-size: 12px;
}

.knowledge-topic-card h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.3;
}

.knowledge-topic-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.knowledge-topic-card ul {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 16px 0 0;
  color: var(--coffee-soft);
  list-style: none;
  font-size: 14px;
}

.knowledge-topic-card li {
  position: relative;
  padding-left: 18px;
}

.knowledge-topic-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teak);
  content: "•";
}

.knowledge-topic-card .topic-link-list a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.22em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.knowledge-topic-card .topic-link-list a:hover,
.knowledge-topic-card .topic-link-list a:focus-visible {
  color: var(--olive-dark);
  text-decoration: underline;
}

.text-link {
  min-height: 34px;
  margin-top: 18px;
  padding: 0;
  color: var(--olive-dark);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(72, 84, 54, 0.36);
}

.knowledge-card,
.goods-card,
.merchant-card {
  overflow: hidden;
  border: 1px solid rgba(91, 63, 35, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 14px 38px rgba(67, 45, 23, 0.08);
}

.knowledge-card.large {
  grid-row: span 2;
}

.card-image,
.goods-image {
  display: block;
  min-height: 220px;
  margin: 0;
  background: #6f4a2a;
}

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

.card-image img,
.goods-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 240ms var(--brand-ease-out);
}

.knowledge-card:hover .card-image img,
.goods-card:hover .goods-image img {
  transform: scale(1.035);
}

.card-body,
.goods-body {
  padding: 20px;
}

.card-body {
  position: relative;
  min-height: 142px;
  color: var(--white);
  margin-top: -142px;
  background: linear-gradient(180deg, rgba(23, 15, 9, 0), rgba(23, 15, 9, 0.82) 30%, rgba(23, 15, 9, 0.95));
}

.card-body h3,
.goods-body h3,
.merchant-card h3,
.trust-grid h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.card-body p,
.goods-body p,
.merchant-card p,
.trust-grid p {
  margin: 8px 0 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 14px;
}

.card-body span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.5);
  border-radius: 50%;
}

@media (min-width: 981px) {
  .knowledge-card.large {
    position: relative;
  }

  .knowledge-card.large .card-image {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .knowledge-card.large .card-image img {
    min-height: 0;
    height: 100%;
  }

  .knowledge-card.large .card-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin-top: 0;
  }
}

.goods-grid,
.solution-grid,
.merchant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-grid {
  grid-template-columns: repeat(6, 1fr);
}

.solution-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}

.solution-card.highlight {
  grid-column: span 3;
  border-color: rgba(154, 103, 54, 0.28);
  box-shadow: 0 18px 44px rgba(67, 45, 23, 0.1);
}

.solution-card .goods-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.solution-label {
  align-self: flex-start;
  color: #fff8ec;
  background: var(--teak);
}

.solution-label.muted {
  color: var(--coffee-soft);
  background: rgba(200, 153, 98, 0.18);
  border: 1px solid rgba(154, 103, 54, 0.2);
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.solution-tags span {
  padding: 4px 9px;
  color: var(--coffee-soft);
  background: rgba(101, 112, 71, 0.08);
  border: 1px solid rgba(101, 112, 71, 0.18);
  border-radius: 999px;
  font-size: 12px;
}

.solution-points {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 14px 0 16px;
  color: var(--muted);
  list-style: none;
  font-size: 13px;
}

.solution-points li {
  position: relative;
  padding-left: 16px;
}

.solution-points li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teak);
  content: "•";
}

.solution-points strong {
  color: var(--coffee-soft);
  font-weight: 600;
}

.solution-card .pill-button {
  align-self: flex-start;
  margin-top: auto;
}

.goods-image {
  min-height: 230px;
}

.goods-body h3,
.goods-body p {
  color: var(--ink);
}

.goods-body p {
  color: var(--muted);
}

.pill-button {
  min-height: 36px;
  margin-top: 16px;
  padding: 0 16px;
  color: var(--coffee-soft);
  background: transparent;
  border: 1px solid rgba(57, 40, 25, 0.32);
}

.merchants-section {
  padding-top: 42px;
}

.merchant-card {
  min-height: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  background: #2a170d;
}

.merchant-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 240ms var(--brand-ease-out);
}

.merchant-card:hover > img {
  transform: scale(1.04);
}

.merchant-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 15, 9, 0.08), rgba(24, 15, 9, 0.92));
}

.merchant-badge {
  position: relative;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 12px;
  color: var(--coffee);
  background: rgba(255, 245, 226, 0.9);
  border-radius: 999px;
  font-size: 13px;
}

.merchant-kicker {
  position: relative;
  margin: 0 0 8px !important;
  color: rgba(255, 242, 220, 0.72) !important;
  font-size: 13px !important;
}

.merchant-card h3,
.merchant-card p,
.merchant-link {
  position: relative;
}

.merchant-link {
  align-self: flex-start;
  min-height: 36px;
  margin-top: 18px;
  padding: 0 16px;
  color: #fff9ee;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 247, 232, 0.42);
}

.trust-section {
  padding: 30px 0 36px;
}

.trust-section h2 {
  margin-bottom: 22px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.trust-grid article {
  min-height: 166px;
  padding: 22px 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(245, 235, 219, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(154, 103, 54, 0.1), transparent 9rem);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 8px;
}

.trust-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--teak);
  border: 1px solid rgba(154, 103, 54, 0.36);
  border-radius: 50%;
  background: #fffaf2;
  font-size: 14px;
}

.trust-grid h3 {
  color: var(--ink);
  font-size: 17px;
}

.trust-grid p {
  color: var(--muted);
  font-size: 13px;
}

/* ========== 第四部分：企业微信、Footer 与响应式适配 ========== */
.wechat-section {
  display: grid;
  grid-template-columns: 1.32fr 380px;
  gap: 42px;
  align-items: center;
  margin-bottom: 64px;
  padding: 46px;
  border: 1px solid rgba(101, 112, 71, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.96) 0%, rgba(247, 239, 225, 0.94) 46%, rgba(236, 222, 200, 0.86) 100%),
    url("./assets/images/wechat-section-bg.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.wechat-hook {
  color: var(--coffee-soft) !important;
  font-size: 21px !important;
  font-weight: 600;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding-left: 28px;
  color: var(--coffee-soft);
  font-size: 16px;
}

.benefits li::before {
  position: absolute;
  left: 0;
  top: 3px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--olive);
  content: "✓";
  border: 1px solid rgba(101, 112, 71, 0.4);
  border-radius: 50%;
  font-size: 12px;
}

.qr-panel {
  padding: 26px;
  text-align: center;
  background: #fffaf2;
  border: 1px solid rgba(57, 40, 25, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(57, 40, 25, 0.14);
}

.qr-code,
.qr-code-image,
.mini-qr {
  border: 12px solid #fff;
  outline: 1px solid rgba(33, 23, 15, 0.15);
}

.qr-code {
  width: 220px;
  height: 220px;
  margin: 0 auto 18px;
  background: #fffaf2 url("./assets/qr-placeholder.svg") center / contain no-repeat;
}

.qr-code-image {
  display: block;
  width: 236px;
  height: 236px;
  object-fit: contain;
  margin: 0 auto 18px;
  background: #fff;
  padding: 10px;
  border: 1px solid rgba(33, 23, 15, 0.1);
  border-radius: 4px;
}

.qr-panel h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.qr-panel p {
  margin: 6px 0 0;
  color: var(--muted);
}

.qr-note {
  color: var(--coffee-soft) !important;
  font-size: 14px;
}

.site-footer {
  color: rgba(255, 250, 242, 0.84);
  background:
    radial-gradient(circle at 18% 0%, rgba(154, 103, 54, 0.18), transparent 20rem),
    linear-gradient(180deg, #21170f, #160d08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 1.2fr 160px;
  gap: 40px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 32px;
}

.footer-logo .brand-mark {
  width: 42px;
  height: 42px;
}

.footer-logo {
  display: inline-flex;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.footer-slogan {
  margin-top: 24px;
  color: #f1d8b7;
  font-size: 24px;
}

.footer-brand p {
  margin-bottom: 0;
}

.footer-contact {
  display: grid;
  gap: 12px;
  align-content: center;
  color: rgba(255, 250, 242, 0.7);
  font-style: normal;
}

.footer-link-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  color: rgba(255, 250, 242, 0.72);
}

.footer-link-group {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}

.footer-link-group strong {
  color: #f1d8b7;
  font-size: 13px;
}

.footer-link-group a {
  color: rgba(255, 250, 242, 0.78);
  font-size: 14px;
}

.footer-link-group a:hover {
  color: #ffffff;
}

.footer-qr {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  font-size: 13px;
}

.qr-brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  filter: drop-shadow(0 8px 16px rgba(57, 40, 25, 0.12));
}

.mini-qr {
  width: 104px;
  height: 104px;
  padding: 8px;
  background: #fffaf2;
  border: 1px solid rgba(255, 238, 210, 0.2);
  object-fit: contain;
}

.copyright {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 24px;
  color: rgba(255, 250, 242, 0.52);
  border-top: 1px solid rgba(255, 238, 210, 0.12);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    row-gap: 10px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 760px;
  }

  .value-grid,
  .goods-grid,
  .solution-grid,
  .merchant-grid,
  .wechat-section,
  .footer-inner,
  .footer-link-groups {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .solution-card.highlight {
    grid-column: auto;
  }

  .value-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

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

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

  .knowledge-card.large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .trust-grid article {
    border: 1px solid rgba(91, 63, 35, 0.14);
  }

  .trust-grid article:nth-child(3n) {
    border-right: 1px solid rgba(91, 63, 35, 0.14);
  }

  .trust-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(91, 63, 35, 0.14);
  }
}

@media (max-width: 680px) {
  .section {
    width: min(100% - 28px, 1180px);
    padding: 38px 0;
  }

  .site-header {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    min-height: 70px;
    align-items: start;
    row-gap: 8px;
  }

  .site-header::before {
    inset: 8px -8px;
  }

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

  .brand {
    padding: 5px 8px 5px 6px;
  }

  .brand-logo-image {
    height: 40px;
    max-width: 54vw;
  }

  .nav-cta {
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .main-nav {
    width: 100%;
    gap: 8px 14px;
    font-size: 12px;
  }

  .nav-dropdown {
    align-items: flex-start;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
    box-shadow: none;
    transition: max-height 180ms ease, opacity 160ms ease, padding 160ms ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 260px;
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown.is-open {
    flex-basis: 100%;
  }

  .hero {
    min-height: 780px;
    align-items: flex-start;
    padding-top: 190px;
  }

  .hero::after {
    right: 14px;
    bottom: 44px;
    width: calc(100% - 28px);
    height: 150px;
    opacity: 0.42;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 0;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .value-card {
    grid-template-columns: 62px 1fr;
    gap: 16px;
    min-height: auto;
    padding: 22px;
  }

  .line-icon {
    width: 58px;
    height: 58px;
  }

  .value-card h3 {
    font-size: 20px;
  }

  .knowledge-grid,
  .knowledge-category-grid,
  .trust-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .knowledge-topic-card {
    min-height: auto;
    padding: 22px;
    scroll-margin-top: 148px;
  }

  .knowledge-card.large .card-image,
  .card-image,
  .goods-image {
    min-height: 240px;
  }

  .trust-grid article,
  .trust-grid article:nth-child(3n),
  .trust-grid article:nth-last-child(-n + 3) {
    border: 1px solid rgba(91, 63, 35, 0.14);
  }

  .trust-grid article:last-child {
    border: 1px solid rgba(91, 63, 35, 0.14);
  }

  .wechat-section {
    width: min(100% - 28px, 1180px);
    padding: 26px 18px;
    gap: 28px;
  }

  .qr-code,
  .qr-code-image {
    width: min(220px, 72vw);
    height: min(220px, 72vw);
  }

  .footer-inner {
    width: calc(100% - 28px);
    gap: 24px;
  }

  .footer-slogan {
    font-size: 21px;
  }
}

/* ========== V1.4：首页视觉体验与移动端重构覆盖 ========== */
html {
  scroll-padding-top: 104px;
}

[id] {
  scroll-margin-top: 112px;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  min-height: 74px;
  padding: 12px 0;
}

.site-header::before {
  inset: 8px -14px;
  background: rgba(33, 23, 15, 0.86);
  border-color: rgba(231, 196, 141, 0.2);
  border-radius: 8px;
}

.brand {
  gap: 10px;
  min-width: 0;
  color: var(--coffee);
  padding: 7px 12px 7px 8px;
}

.brand-mark-image {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-wording {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-wording strong {
  color: var(--coffee);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
}

.brand-wording small {
  color: rgba(57, 40, 25, 0.72);
  font-size: 12px;
  line-height: 1.1;
}

.desktop-nav {
  gap: clamp(16px, 2.4vw, 34px);
}

.menu-toggle,
.mobile-menu-shell {
  display: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 247, 232, 0.28);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: #fff7e9;
  border-radius: 999px;
}

.hero {
  min-height: auto;
  padding: 132px 0 74px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(231, 196, 141, 0.32), transparent 28rem),
    linear-gradient(135deg, #fff8ed 0%, #f4eadc 48%, #ead7bd 100%);
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.74), rgba(255, 250, 242, 0.18)),
    radial-gradient(circle at 78% 12%, rgba(101, 112, 71, 0.14), transparent 22rem);
}

.hero::after,
.hero-shade {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-content {
  width: auto;
  margin: 0;
  padding: 42px 42px 44px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(154, 103, 54, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(57, 40, 25, 0.12);
}

.hero .eyebrow {
  color: var(--olive-dark);
}

.hero h1 {
  max-width: 640px;
  color: var(--coffee);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.14;
}

.hero-hook {
  color: var(--teak);
  font-size: clamp(22px, 2.2vw, 30px);
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #c89962;
  border: 1px solid rgba(57, 40, 25, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(57, 40, 25, 0.18);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(33, 23, 15, 0.72) 100%);
  pointer-events: none;
}

.hero-media .hero-image {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.hero-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  color: rgba(255, 250, 242, 0.84);
  font-size: 13px;
}

.hero .btn-primary {
  background: linear-gradient(180deg, #657047, #485436);
}

.hero .btn-secondary {
  background: #fff2dc;
  border-color: rgba(154, 103, 54, 0.18);
}

.hero .btn-ghost {
  color: var(--coffee-soft);
  background: rgba(101, 112, 71, 0.08);
  border-color: rgba(101, 112, 71, 0.22);
}

.solution-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 22px;
}

.solution-tab {
  min-height: 40px;
  padding: 0 16px;
  color: var(--coffee-soft);
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(154, 103, 54, 0.18);
  border-radius: 999px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.solution-tab:hover,
.solution-tab.is-active {
  color: #fffaf2;
  background: var(--teak);
  border-color: rgba(154, 103, 54, 0.4);
  transform: translateY(-1px);
}

.solution-card {
  scroll-margin-top: 112px;
}

.solution-card.is-focused {
  outline: 2px solid rgba(200, 154, 91, 0.56);
  outline-offset: 4px;
}

.wechat-section {
  position: relative;
  overflow: hidden;
  color: #fffaf2;
  background:
    linear-gradient(120deg, rgba(33, 23, 15, 0.96), rgba(57, 40, 25, 0.9) 52%, rgba(101, 82, 54, 0.72)),
    url("./assets/images/wechat-section-bg.jpg") center / cover no-repeat;
  border-color: rgba(231, 196, 141, 0.26);
}

.wechat-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 14% 16%, rgba(231, 196, 141, 0.2), transparent 24rem);
  pointer-events: none;
}

.wechat-copy,
.qr-panel {
  position: relative;
  z-index: 1;
}

.wechat-section h2,
.wechat-copy .eyebrow,
.wechat-hook {
  color: #fff4df !important;
}

.wechat-copy p {
  color: rgba(255, 250, 242, 0.78);
}

.benefits li {
  color: rgba(255, 250, 242, 0.9);
}

.benefits li::before {
  color: #fff4df;
  border-color: rgba(231, 196, 141, 0.46);
}

.qr-panel {
  background: rgba(255, 250, 242, 0.98);
}

.qr-mobile-tip {
  color: var(--olive-dark) !important;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media .hero-image {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    width: calc(100% - 24px);
  }

  .site-header::before {
    inset: 8px -8px;
  }

  .desktop-nav,
  .site-header > .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
  }

  .mobile-menu-shell {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-menu-shell.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 10, 6, 0.58);
    border: 0;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    width: min(360px, calc(100% - 24px));
    flex-direction: column;
    padding: 16px;
    overflow-y: auto;
    color: var(--ink);
    background: #fffaf2;
    border: 1px solid rgba(154, 103, 54, 0.18);
    border-radius: 8px;
    box-shadow: 0 24px 72px rgba(18, 10, 6, 0.28);
    transform: translateX(20px);
    transition: transform 180ms ease;
  }

  .mobile-menu-shell.is-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .mobile-brand {
    box-shadow: none;
  }

  .mobile-menu-close {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--coffee);
    background: rgba(154, 103, 54, 0.1);
    border: 1px solid rgba(154, 103, 54, 0.18);
    border-radius: 8px;
    font-size: 28px;
    line-height: 1;
  }

  .mobile-nav {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .mobile-nav > a,
  .mobile-nav summary,
  .mobile-nav details a {
    display: flex;
    align-items: center;
    min-height: 42px;
    color: var(--coffee-soft);
    border-radius: 7px;
  }

  .mobile-nav > a,
  .mobile-nav summary {
    padding: 0 12px;
    background: rgba(154, 103, 54, 0.08);
    border: 1px solid rgba(154, 103, 54, 0.12);
    font-weight: 600;
  }

  .mobile-nav details {
    display: grid;
    gap: 6px;
  }

  .mobile-nav details a {
    min-height: 36px;
    margin-left: 12px;
    padding: 0 12px;
    color: var(--muted);
    background: rgba(101, 112, 71, 0.06);
  }

  .mobile-menu-cta {
    min-height: 46px;
    margin-top: auto;
    color: #fffaf2;
    background: var(--olive);
    border: 0;
    border-radius: 8px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 92px;
  }

  [id],
  .knowledge-topic-card,
  .solution-card {
    scroll-margin-top: 96px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 66px;
  }

  .site-header .brand {
    max-width: min(245px, calc(100vw - 98px));
  }

  .site-header .brand-mark-image {
    width: 36px;
    height: 36px;
  }

  .brand-wording strong {
    font-size: 18px;
  }

  .brand-wording small {
    font-size: 11px;
  }

  .menu-toggle {
    grid-column: auto;
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 104px 0 42px;
  }

  .hero-inner {
    width: calc(100% - 28px);
    gap: 18px;
  }

  .hero-content {
    padding: 26px 20px 24px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-hook {
    margin-top: 18px;
    font-size: 22px;
  }

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

  .hero-media {
    min-height: 300px;
  }

  .hero-media .hero-image {
    min-height: 300px;
  }

  .hero-media figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: 12px;
  }

  .solution-tabs {
    flex-wrap: nowrap;
    padding-bottom: 8px;
    overflow-x: auto;
  }

  .solution-tab {
    flex: 0 0 auto;
  }

  .wechat-section {
    padding: 28px 18px;
  }

  .qr-panel {
    padding: 22px 16px;
  }
}

/* ========== V1.6：移动端导航遮挡与点击修复 ========== */
body {
  overflow-x: hidden;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 124px;
  }

  [id],
  .knowledge-topic-card,
  .solution-card {
    scroll-margin-top: 124px;
  }

  .site-header {
    left: 12px;
    right: 12px;
    z-index: 1000;
    width: auto;
    min-height: 64px;
    padding: 10px 0;
    grid-template-columns: minmax(0, 1fr) 46px;
    column-gap: 10px;
    box-sizing: border-box;
    color: var(--coffee);
    transform: none;
    isolation: isolate;
  }

  .site-header::before {
    inset: 6px -2px;
    z-index: -1;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid rgba(154, 103, 54, 0.16);
    box-shadow: 0 10px 28px rgba(57, 40, 25, 0.14);
    backdrop-filter: blur(14px);
  }

  .site-header .brand {
    position: relative;
    z-index: 1002;
    width: min(260px, calc(100vw - 112px));
    max-width: 100%;
    overflow: hidden;
    box-shadow: none;
  }

  .site-header .brand-wording {
    min-width: 0;
    overflow: hidden;
  }

  .site-header .brand-wording strong,
  .site-header .brand-wording small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1050;
    display: grid;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    touch-action: manipulation;
    opacity: 1 !important;
    visibility: visible !important;
    background: #3b2a1e;
    border-color: rgba(59, 42, 30, 0.18);
    box-shadow: 0 8px 18px rgba(57, 40, 25, 0.16);
  }

  .menu-toggle span {
    background: #fff7e9;
  }

  body.menu-open .menu-toggle {
    pointer-events: none;
  }

  .hero,
  .hero::before,
  .hero-inner,
  .hero-content,
  .hero-media,
  .hero-media::after,
  .wechat-section,
  .wechat-section::before {
    z-index: auto;
  }

  .mobile-menu-shell {
    position: fixed;
    inset: 0;
    z-index: 1100;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: block;
    overflow: hidden;
    transform: none;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    touch-action: none;
  }

  .mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: 1200;
    width: min(360px, calc(100vw - 26px));
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    padding: 16px;
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 8px 0 0 8px;
    transform: translateX(100%);
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-shell.is-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-head {
    position: sticky;
    top: 0;
    z-index: 1250;
    padding-bottom: 10px;
    background: #fffaf2;
  }

  .mobile-menu-close {
    position: relative;
    z-index: 1300;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    touch-action: manipulation;
  }

  .mobile-nav > a,
  .mobile-nav summary,
  .mobile-nav details a,
  .mobile-menu-cta {
    min-height: 46px;
    touch-action: manipulation;
  }

  .mobile-nav details a {
    margin-left: 0;
    padding-left: 18px;
  }

  .mobile-menu-cta {
    flex: 0 0 auto;
    width: 100%;
    margin-top: 18px;
    margin-bottom: 2px;
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 132px;
  }

  [id],
  .knowledge-topic-card,
  .solution-card {
    scroll-margin-top: 132px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) 46px;
    min-height: 62px;
    padding: 8px 0;
  }

  .site-header .brand {
    width: min(230px, calc(100vw - 112px));
  }

  .menu-toggle {
    right: auto;
    left: min(calc(100vw - 62px), 328px);
  }

  .hero {
    padding-top: 104px;
  }
}

/* ========== V1.7.1A：内容页基础骨架 ========== */
.content-page {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 153, 98, 0.18), transparent 26rem),
    linear-gradient(180deg, #fbf6ed 0%, #f4eadc 58%, #fbf7ef 100%);
}

.content-site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  min-height: 74px;
  margin: 14px auto 0;
  padding: 10px 16px;
  color: var(--coffee);
  background: rgba(255, 250, 242, 0.97);
  border: 1px solid rgba(154, 103, 54, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(57, 40, 25, 0.12);
  backdrop-filter: blur(14px);
}

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

.content-brand img {
  width: 42px;
  height: 42px;
}

.content-brand strong,
.content-brand small {
  display: block;
  white-space: nowrap;
}

.content-brand strong {
  font-size: 20px;
  line-height: 1.15;
}

.content-brand small {
  color: var(--muted);
  font-size: 12px;
}

.content-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--coffee-soft);
  font-size: 14px;
}

.content-nav a:hover,
.breadcrumb a:hover,
.related-links a:hover {
  color: var(--teak);
}

.content-main {
  width: min(960px, calc(100% - 48px));
  margin: 34px auto 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb span::before {
  margin-right: 8px;
  color: rgba(116, 102, 88, 0.62);
  content: "/";
}

.content-hero-panel,
.content-body,
.related-links,
.content-cta,
.form-panel {
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(91, 63, 35, 0.15);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(67, 45, 23, 0.08);
}

.content-hero-panel {
  padding: clamp(28px, 5vw, 48px);
}

.content-hero-panel h1 {
  max-width: 760px;
  margin: 0;
  color: var(--coffee);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
}

.content-lead {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.content-body,
.related-links,
.content-cta,
.form-panel {
  margin-top: 18px;
  padding: 26px;
}

.content-body h2,
.related-links h2,
.form-panel h2 {
  margin: 0 0 12px;
  color: var(--coffee);
  font-size: 24px;
  font-weight: 600;
}

.content-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
}

.content-body p:last-child {
  margin-bottom: 0;
}

.notice-box {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: var(--coffee-soft);
  background: rgba(101, 112, 71, 0.08);
  border: 1px solid rgba(101, 112, 71, 0.18);
  border-radius: 8px;
}

.related-links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.related-links a {
  display: block;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--coffee-soft);
  background: rgba(154, 103, 54, 0.06);
  border: 1px solid rgba(154, 103, 54, 0.13);
  border-radius: 7px;
}

.content-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.content-site-footer {
  color: rgba(255, 250, 242, 0.78);
  background: linear-gradient(180deg, #21170f, #160d08);
}

.content-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  font-size: 14px;
}

.simple-form {
  display: grid;
  gap: 14px;
}

.simple-form label {
  display: grid;
  gap: 6px;
  color: var(--coffee-soft);
  font-weight: 600;
}

.simple-form input,
.simple-form textarea,
.simple-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffaf2;
  border: 1px solid rgba(154, 103, 54, 0.22);
  border-radius: 7px;
  font: inherit;
}

.simple-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ========== V1.7.1B-1：静态表单摘要生成样式 ========== */
.summary-form {
  display: grid;
  gap: 18px;
}

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

.form-field,
.form-summary {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--coffee-soft);
  font-weight: 600;
}

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

.form-field input,
.form-field select,
.form-field textarea,
.form-summary textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffaf2;
  border: 1px solid rgba(154, 103, 54, 0.24);
  border-radius: 7px;
  font: inherit;
  line-height: 1.55;
}

.form-field textarea,
.form-summary textarea {
  min-height: 132px;
  resize: vertical;
}

.form-summary textarea {
  min-height: 180px;
  color: var(--coffee);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(247, 239, 226, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(101, 112, 71, 0.08), transparent 11rem);
  white-space: pre-wrap;
}

.form-note {
  margin: 16px 0 0 !important;
  padding: 14px 16px;
  color: var(--coffee-soft) !important;
  background: rgba(101, 112, 71, 0.08);
  border: 1px solid rgba(101, 112, 71, 0.2);
  border-radius: 8px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-actions .btn {
  min-height: 48px;
}

.form-reset-button {
  color: var(--coffee-soft);
  background: rgba(255, 250, 242, 0.62);
  border-color: rgba(154, 103, 54, 0.26);
}

.copy-status {
  min-height: 24px;
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.copy-status[data-tone="success"] {
  color: var(--olive-dark);
}

.copy-status[data-tone="warning"] {
  color: var(--teak);
}

/* ========== V1.11：编辑型内页与候选品牌卡片 ========== */
.editorial-layout {
  width: min(1080px, calc(100% - 48px));
}

.page-hero,
.category-section,
.soft-notice,
.step-panel,
.content-card,
.brand-card,
.path-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(247, 239, 226, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(154, 103, 54, 0.1), transparent 10rem);
  border: 1px solid rgba(91, 63, 35, 0.15);
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(67, 45, 23, 0.08);
}

.page-hero {
  display: grid;
  gap: 16px;
  min-height: 300px;
  align-content: center;
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(239, 216, 185, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(101, 112, 71, 0.18), transparent 18rem);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--coffee);
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 600;
  line-height: 1.12;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.page-hero .btn {
  width: fit-content;
}

.category-section,
.soft-notice {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 34px);
}

.category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.category-heading h2,
.soft-notice h2,
.form-section h3 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.25;
}

.category-heading p,
.soft-notice p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
}

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

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

.content-card,
.brand-card,
.path-card,
.step-panel {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.content-card:hover,
.brand-card:hover,
.path-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 103, 54, 0.28);
  box-shadow: 0 18px 44px rgba(67, 45, 23, 0.12);
}

.compact-card {
  min-height: 180px;
}

.content-card h3,
.brand-card h3,
.path-card h3,
.step-panel h3 {
  margin: 12px 0 0;
  color: var(--coffee);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.32;
}

.content-card p,
.brand-card p,
.path-card p,
.step-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.content-card .text-link,
.brand-card .text-link,
.path-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
}

.compact-meta,
.status-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--olive-dark);
  background: rgba(101, 112, 71, 0.1);
  border: 1px solid rgba(101, 112, 71, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.status-tag {
  margin-top: 12px;
  color: var(--coffee-soft);
  background: rgba(200, 153, 98, 0.12);
  border-color: rgba(154, 103, 54, 0.18);
}

.path-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.path-card li {
  padding: 4px 10px;
  color: var(--coffee-soft);
  background: rgba(154, 103, 54, 0.08);
  border: 1px solid rgba(154, 103, 54, 0.13);
  border-radius: 999px;
  font-size: 12px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.soft-notice {
  color: var(--coffee-soft);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(242, 232, 216, 0.9)),
    radial-gradient(circle at 0% 0%, rgba(101, 112, 71, 0.1), transparent 12rem);
}

.soft-notice a {
  color: var(--olive-dark);
  border-bottom: 1px solid rgba(72, 84, 54, 0.32);
}

.step-panel span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fffaf2;
  background: var(--olive);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
}

.apply-panel {
  padding: clamp(24px, 4vw, 34px);
}

.form-section {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 250, 242, 0.68);
  border: 1px solid rgba(154, 103, 54, 0.14);
  border-radius: 12px;
}

.form-section + .form-section {
  margin-top: 18px;
}

.form-section h3 {
  font-size: 22px;
}

@media (max-width: 720px) {
  .content-site-header {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 28px);
    gap: 12px;
    margin-top: 10px;
  }

  .content-nav {
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .content-main {
    width: calc(100% - 28px);
    margin-top: 22px;
  }

  .related-links ul {
    grid-template-columns: 1fr;
  }

  .content-cta .btn {
    width: 100%;
  }

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

  .form-actions {
    display: grid;
  }

  .form-actions .btn {
    width: 100%;
  }

  .editorial-layout {
    width: calc(100% - 28px);
  }

  .page-hero {
    min-height: auto;
    padding: 28px 20px;
  }

  .page-hero .btn {
    width: 100%;
  }

  .category-heading {
    display: block;
  }

  .featured-grid,
  .brand-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .content-card,
  .brand-card,
  .path-card,
  .step-panel {
    min-height: auto;
  }
}

/* ========== V1.16：正式上线冲刺页与厂商品牌馆 ========== */
.cooperation-layout,
.vendor-profile-layout {
  width: min(1040px, calc(100% - 48px));
}

.cooperation-hero,
.vendor-profile-hero {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(239, 222, 197, 0.92)),
    radial-gradient(circle at 88% 12%, rgba(154, 103, 54, 0.16), transparent 18rem);
}

.cooperation-section,
.featured-vendor-section,
.vendor-profile-layout .vendor-guide-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(246, 236, 220, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(101, 112, 71, 0.1), transparent 12rem);
}

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

.vendor-feature-card {
  color: inherit;
  text-decoration: none;
}

.vendor-feature-card .text-link {
  width: fit-content;
  margin-top: 10px;
}

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

.vendor-profile-layout .vendor-direction-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vendor-profile-layout .content-cta {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .featured-vendor-grid,
  .cooperation-benefits,
  .vendor-profile-layout .vendor-direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cooperation-layout,
  .vendor-profile-layout {
    width: calc(100% - 28px);
  }

  .featured-vendor-grid,
  .cooperation-benefits,
  .vendor-profile-layout .vendor-direction-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== V1.8.3：内容页移动端导航接入 ========== */
@media (max-width: 900px) {
  .content-site-header {
    position: sticky;
    top: 10px;
    z-index: 1000;
    flex-direction: row;
    align-items: center;
    width: calc(100% - 24px);
    min-height: 64px;
    margin-top: 10px;
    padding: 10px 58px 10px 12px;
  }

  .content-site-header .content-nav {
    display: none;
  }

  .content-site-header .content-brand {
    min-width: 0;
    overflow: hidden;
  }

  .content-site-header .content-brand span {
    min-width: 0;
  }

  .content-site-header .content-brand strong,
  .content-site-header .content-brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .content-menu-toggle {
    display: grid;
  }

  .mobile-menu-head .content-brand {
    color: var(--coffee);
    background: rgba(255, 250, 242, 0.96);
    border: 1px solid rgba(236, 210, 172, 0.58);
    border-radius: 8px;
  }
}


/* ========== V1.12：有序图文阅读流 ========== */
.story-list {
  display: grid;
  gap: 18px;
}

.story-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1.3fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 26px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(247, 239, 226, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(154, 103, 54, 0.12), transparent 12rem);
  border: 1px solid rgba(91, 63, 35, 0.15);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(67, 45, 23, 0.08);
}

.story-media {
  min-height: 220px;
}

.visual-tile {
  position: relative;
  display: grid;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
  align-content: space-between;
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(57, 40, 25, 0.92), rgba(154, 103, 54, 0.72)),
    repeating-linear-gradient(35deg, rgba(255, 250, 242, 0.12) 0 1px, transparent 1px 16px);
  border-radius: 12px;
}

.visual-tile::after {
  position: absolute;
  right: -44px;
  bottom: -52px;
  width: 160px;
  height: 160px;
  content: "";
  background: radial-gradient(circle, rgba(255, 250, 242, 0.2), transparent 68%);
  border-radius: 50%;
}

.visual-tile span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--coffee);
  background: rgba(255, 250, 242, 0.88);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.visual-tile strong {
  position: relative;
  z-index: 1;
  max-width: 12em;
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.15;
}

.visual-tile-check {
  background: linear-gradient(135deg, #485436, #9a6736);
}

.visual-tile-floor {
  background: linear-gradient(135deg, #6d4a2d, #c89962);
}

.visual-tile-care {
  background: linear-gradient(135deg, #657047, #b88a52);
}

.visual-tile-brand {
  background: linear-gradient(135deg, #392819, #657047);
}

.visual-tile-space {
  background: linear-gradient(135deg, #21170f, #9a6736 58%, #657047);
}

.visual-tile-outdoor {
  background: linear-gradient(135deg, #485436, #9a6736 72%);
}

.visual-tile-tea {
  background: linear-gradient(135deg, #2f2419, #725034 54%, #657047);
}

.visual-tile-furniture {
  background: linear-gradient(135deg, #5b3b22, #c89962);
}

.story-content {
  display: grid;
  align-content: center;
  gap: 10px;
}

.story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  color: var(--olive-dark) !important;
  font-size: 13px !important;
  font-weight: 700;
}

.story-index {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  color: #fffaf2;
  background: var(--olive);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.story-content h3 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.25;
}

.story-title-link {
  color: inherit;
  border-bottom: 1px solid rgba(72, 84, 54, 0.28);
}

.story-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 2px 0;
  list-style: none;
}

.story-points li {
  padding: 4px 10px;
  color: var(--coffee-soft);
  background: rgba(154, 103, 54, 0.08);
  border: 1px solid rgba(154, 103, 54, 0.13);
  border-radius: 999px;
  font-size: 12px;
}

.reading-flow {
  counter-reset: reading-flow;
}

.category-intro {
  padding: 22px;
  background: rgba(255, 250, 242, 0.64);
  border: 1px solid rgba(154, 103, 54, 0.14);
  border-radius: 12px;
}

.category-intro h3 {
  margin: 0;
  color: var(--coffee);
  font-size: 22px;
  font-weight: 600;
}

.category-intro > p {
  margin: 8px 0 16px;
  color: var(--muted);
}

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

.ordered-mini-list {
  display: grid;
  gap: 10px;
}

.ordered-mini-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
  padding: 13px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(91, 63, 35, 0.12);
  border-radius: 10px;
}

.ordered-mini-card span {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fffaf2;
  background: var(--teak);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.ordered-mini-card h3 {
  margin: 0;
  color: var(--coffee);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.ordered-mini-card h3 a {
  border-bottom: 1px solid rgba(72, 84, 54, 0.24);
}

.ordered-mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.source-note {
  color: var(--muted) !important;
  font-size: 13px !important;
}

.source-note a {
  color: var(--olive-dark);
  border-bottom: 1px solid rgba(72, 84, 54, 0.26);
}

.ordered-brand-card {
  min-height: auto;
}

.ordered-brand-card .story-index {
  margin-bottom: 10px;
}

.category-jump-list {
  align-items: center;
}

@media (max-width: 860px) {
  .story-item {
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: 180px;
  }

  .ordered-content-grid {
    grid-template-columns: 1fr;
  }
}


/* ========== V1.13A：知识库与文章质量优化 ========== */
.knowledge-library {
  width: min(1040px, calc(100% - 48px));
}

.knowledge-hero {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(239, 216, 185, 0.92)),
    radial-gradient(circle at 88% 18%, rgba(154, 103, 54, 0.16), transparent 17rem),
    radial-gradient(circle at 8% 86%, rgba(101, 112, 71, 0.12), transparent 15rem);
}

.knowledge-editorial-section {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(67, 45, 23, 0.07);
}

.knowledge-section-heading {
  max-width: 760px;
  margin-bottom: 20px;
}

.knowledge-section-heading h2 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.25;
}

.knowledge-section-heading p {
  margin: 9px 0 0;
  color: var(--muted);
}

.knowledge-feature-list {
  display: grid;
  gap: 14px;
}

.knowledge-feature-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px 18px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(247, 239, 226, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(154, 103, 54, 0.09), transparent 10rem);
  border: 1px solid rgba(91, 63, 35, 0.13);
  border-radius: 14px;
}

.knowledge-feature-card > span {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fffaf2;
  background: var(--olive);
  border-radius: 50%;
  font-weight: 700;
}

.knowledge-feature-card h3,
.knowledge-topic-group h3,
.knowledge-faq-item h3 {
  margin: 0;
  color: var(--coffee);
  font-weight: 600;
  line-height: 1.35;
}

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

.knowledge-feature-card h3 a,
.knowledge-topic-link strong {
  border-bottom: 1px solid rgba(72, 84, 54, 0.24);
}

.knowledge-feature-card p,
.knowledge-topic-group p,
.knowledge-topic-link span,
.knowledge-faq-item p {
  margin: 0;
  color: var(--muted);
}

.knowledge-topic-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.knowledge-topic-group {
  padding: 20px;
  background: rgba(255, 250, 242, 0.62);
  border: 1px solid rgba(154, 103, 54, 0.13);
  border-radius: 14px;
}

.knowledge-topic-group > p {
  margin-top: 8px;
  font-size: 14px;
}

.knowledge-topic-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.knowledge-topic-link {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(91, 63, 35, 0.11);
  border-radius: 10px;
}

.knowledge-topic-link strong {
  color: var(--coffee);
  font-size: 16px;
}

.knowledge-topic-link span {
  font-size: 13px;
}

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

.knowledge-faq-item {
  padding: 18px;
  background: rgba(255, 250, 242, 0.66);
  border: 1px solid rgba(101, 112, 71, 0.16);
  border-radius: 12px;
}

.knowledge-faq-item h3 {
  font-size: 18px;
}

.knowledge-faq-item p {
  margin-top: 8px;
  font-size: 14px;
}

.knowledge-note {
  padding: 22px;
}

.article-layout {
  width: min(880px, calc(100% - 48px));
}

.article-shell {
  display: grid;
  gap: 20px;
}

.article-hero,
.article-section,
.article-note {
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(67, 45, 23, 0.07);
}

.article-hero {
  padding: clamp(30px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(239, 216, 185, 0.9)),
    radial-gradient(circle at 92% 12%, rgba(101, 112, 71, 0.14), transparent 15rem);
}

.article-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--coffee);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 600;
  line-height: 1.16;
}

.article-hero p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-section,
.article-note {
  padding: clamp(22px, 4vw, 32px);
}

.article-section h2 {
  margin: 0 0 12px;
  color: var(--coffee);
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.3;
}

.article-section p,
.article-note p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.article-section p + p {
  margin-top: 12px;
}

.article-table-wrap {
  overflow-x: auto;
}

.article-compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--coffee-soft);
  font-size: 14px;
}

.article-compare-table th,
.article-compare-table td {
  padding: 12px 14px;
  text-align: left;
  border: 1px solid rgba(91, 63, 35, 0.14);
  vertical-align: top;
}

.article-compare-table th {
  color: var(--coffee);
  background: rgba(200, 153, 98, 0.14);
  font-weight: 700;
}

.article-question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  padding-left: 1.4em;
  margin: 0;
  color: var(--coffee-soft);
}

.article-question-list li {
  padding-left: 4px;
}

.article-related ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-related li {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255, 250, 242, 0.68);
  border: 1px solid rgba(91, 63, 35, 0.12);
  border-radius: 10px;
}

.article-related a {
  color: var(--coffee);
  font-weight: 700;
}

.article-related span {
  color: var(--muted);
  font-size: 14px;
}

.article-note {
  color: var(--coffee-soft);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(242, 232, 216, 0.88)),
    radial-gradient(circle at 0% 0%, rgba(101, 112, 71, 0.08), transparent 12rem);
}

@media (max-width: 820px) {
  .knowledge-topic-groups,
  .knowledge-faq-grid,
  .article-question-list {
    grid-template-columns: 1fr;
  }

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

  .knowledge-feature-card > span {
    grid-row: auto;
  }

  .article-layout,
  .knowledge-library {
    width: calc(100% - 28px);
  }
}


/* ========== V1.13B：好物方案生活场景专题 ========== */
.solution-index-layout,
.solution-topic-layout {
  width: min(1040px, calc(100% - 48px));
}

.solution-index-hero,
.solution-topic-hero {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(239, 216, 185, 0.92)),
    radial-gradient(circle at 88% 20%, rgba(154, 103, 54, 0.15), transparent 17rem),
    radial-gradient(circle at 8% 86%, rgba(101, 112, 71, 0.11), transparent 15rem);
}

.solution-editorial-section,
.solution-topic-section {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(67, 45, 23, 0.07);
}

.solution-section-heading {
  max-width: 780px;
  margin-bottom: 20px;
}

.solution-section-heading h2,
.solution-topic-section h2 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.25;
}

.solution-section-heading p,
.solution-topic-section > p,
.solution-topic-section p {
  color: var(--muted);
  line-height: 1.86;
}

.solution-scene-list {
  display: grid;
  gap: 16px;
}

.solution-scene-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(247, 239, 226, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(154, 103, 54, 0.09), transparent 10rem);
  border: 1px solid rgba(91, 63, 35, 0.13);
  border-radius: 16px;
}

.solution-scene-mark {
  display: grid;
  min-height: 104px;
  place-items: center;
  color: #fffaf2;
  background: linear-gradient(135deg, var(--coffee-soft), var(--teak));
  border-radius: 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.solution-scene-card h3 {
  margin: 0;
  color: var(--coffee);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.32;
}

.solution-scene-card h3 a,
.natural-link {
  border-bottom: 1px solid rgba(72, 84, 54, 0.26);
}

.solution-scene-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.solution-scene-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.solution-scene-card li {
  padding: 5px 10px;
  color: var(--coffee-soft);
  background: rgba(154, 103, 54, 0.08);
  border: 1px solid rgba(154, 103, 54, 0.13);
  border-radius: 999px;
  font-size: 13px;
}

.natural-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--olive-dark);
  font-weight: 700;
}

.solution-guide-grid,
.solution-judgement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.solution-guide-block,
.solution-judgement-grid article {
  padding: 18px;
  background: rgba(255, 250, 242, 0.66);
  border: 1px solid rgba(101, 112, 71, 0.16);
  border-radius: 12px;
}

.solution-guide-block h3,
.solution-judgement-grid h3 {
  margin: 0;
  color: var(--coffee);
  font-size: 19px;
  font-weight: 600;
}

.solution-guide-block p,
.solution-judgement-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.solution-topic-shell {
  display: grid;
  gap: 20px;
}

.solution-topic-hero {
  display: grid;
  gap: 16px;
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(67, 45, 23, 0.07);
}

.solution-topic-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--coffee);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.16;
}

.solution-topic-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.solution-topic-hero .btn {
  width: fit-content;
}

.solution-topic-section p + p {
  margin-top: 12px;
}

@media (max-width: 820px) {
  .solution-index-layout,
  .solution-topic-layout {
    width: calc(100% - 28px);
  }

  .solution-scene-card,
  .solution-guide-grid,
  .solution-judgement-grid {
    grid-template-columns: 1fr;
  }

  .solution-scene-mark {
    min-height: 82px;
  }
}


/* ========== V1.13C：推荐厂商与候选品牌资料库 ========== */
.vendor-guide-layout,
.vendor-library-layout {
  width: min(1080px, calc(100% - 48px));
}

.vendor-guide-hero,
.vendor-library-hero {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(237, 221, 195, 0.94)),
    radial-gradient(circle at 12% 20%, rgba(101, 112, 71, 0.12), transparent 16rem),
    radial-gradient(circle at 88% 80%, rgba(154, 103, 54, 0.13), transparent 18rem);
}

.vendor-guide-section,
.vendor-library-section {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(67, 45, 23, 0.07);
}

.vendor-direction-grid,
.vendor-feature-grid,
.candidate-library-grid,
.vendor-category-nav {
  display: grid;
  gap: 16px;
}

.vendor-direction-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.vendor-direction-card,
.vendor-feature-card,
.candidate-library-card,
.vendor-category-nav a {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(247, 239, 226, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(154, 103, 54, 0.08), transparent 11rem);
  border: 1px solid rgba(91, 63, 35, 0.13);
  border-radius: 16px;
}

.vendor-direction-card h3,
.vendor-feature-card h3,
.candidate-library-card h3 {
  margin: 0;
  color: var(--coffee);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.vendor-direction-card p,
.vendor-feature-card p,
.candidate-library-card p,
.vendor-category-nav span {
  color: var(--muted);
  line-height: 1.78;
}

.vendor-direction-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.vendor-direction-card li,
.candidate-direction {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  color: var(--coffee-soft);
  background: rgba(154, 103, 54, 0.08);
  border: 1px solid rgba(154, 103, 54, 0.13);
  border-radius: 999px;
  font-size: 13px;
}

.vendor-feature-grid,
.candidate-library-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vendor-feature-card,
.candidate-library-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.vendor-feature-card p,
.candidate-library-card p {
  margin: 0;
}

.candidate-audience {
  padding-left: 12px;
  border-left: 3px solid rgba(101, 112, 71, 0.28);
}

.vendor-category-nav {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.vendor-category-nav a {
  display: grid;
  gap: 8px;
  color: inherit;
}

.vendor-category-nav strong {
  color: var(--coffee);
  font-size: 18px;
}

.vendor-explain-section,
.vendor-apply-section {
  background:
    linear-gradient(135deg, rgba(101, 112, 71, 0.1), rgba(255, 250, 242, 0.92)),
    rgba(255, 250, 242, 0.92);
}

.vendor-apply-section .btn {
  margin-top: 12px;
}

@media (max-width: 980px) {
  .vendor-direction-grid,
  .vendor-category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .vendor-guide-layout,
  .vendor-library-layout {
    width: calc(100% - 28px);
  }

  .vendor-direction-grid,
  .vendor-feature-grid,
  .candidate-library-grid,
  .vendor-category-nav {
    grid-template-columns: 1fr;
  }
}


/* ========== V1.13D：厂商申请页正式化 ========== */
.vendor-apply-layout {
  width: min(1040px, calc(100% - 48px));
}

.vendor-apply-hero {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(239, 224, 200, 0.94)),
    radial-gradient(circle at 14% 18%, rgba(101, 112, 71, 0.12), transparent 15rem),
    radial-gradient(circle at 90% 82%, rgba(154, 103, 54, 0.14), transparent 18rem);
}

.vendor-apply-section {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(67, 45, 23, 0.07);
}

.apply-info-grid,
.apply-prep-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

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

.apply-info-card {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(247, 239, 226, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(154, 103, 54, 0.08), transparent 10rem);
  border: 1px solid rgba(91, 63, 35, 0.13);
  border-radius: 15px;
}

.apply-info-card h3,
.vendor-apply-section h2 {
  margin-top: 0;
  color: var(--coffee);
}

.apply-info-card p,
.vendor-apply-section p {
  color: var(--muted);
  line-height: 1.78;
}

.apply-form-shell {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(244, 235, 220, 0.94)),
    rgba(255, 250, 242, 0.92);
}

.vendor-apply-form {
  display: grid;
  gap: 18px;
}

.apply-fieldset {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 16px;
  background: rgba(255, 250, 242, 0.76);
}

.apply-fieldset legend {
  padding: 0 8px;
  color: var(--coffee);
  font-size: 20px;
  font-weight: 700;
}

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

.vendor-apply-form .form-field {
  display: grid;
  gap: 8px;
}

.vendor-apply-form input,
.vendor-apply-form select,
.vendor-apply-form textarea {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
}

.vendor-apply-form textarea {
  min-height: 132px;
}

.form-helper {
  margin: 0;
  padding: 12px 14px;
  background: rgba(101, 112, 71, 0.08);
  border: 1px solid rgba(101, 112, 71, 0.14);
  border-radius: 12px;
}

.form-summary textarea {
  min-height: 180px;
  background: rgba(255, 255, 255, 0.68);
}

.apply-next-section,
.apply-boundary-section {
  background:
    linear-gradient(135deg, rgba(101, 112, 71, 0.1), rgba(255, 250, 242, 0.92)),
    rgba(255, 250, 242, 0.92);
}

@media (max-width: 980px) {
  .apply-info-grid,
  .apply-prep-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .vendor-apply-layout {
    width: calc(100% - 28px);
  }

  .apply-info-grid,
  .apply-prep-list,
  .vendor-apply-form .form-grid {
    grid-template-columns: 1fr;
  }

  .apply-fieldset {
    padding: 18px;
  }

  .vendor-apply-form .form-actions {
    display: grid;
  }
}


/* ========== V1.14：全站设计系统统一与会员站逻辑 ========== */
.content-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(154, 103, 54, 0.12), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(101, 112, 71, 0.1), transparent 22rem),
    linear-gradient(180deg, #fbf6ed 0%, #f5ecdf 54%, #fbf7ef 100%);
}

.content-site-header,
.site-header {
  border-color: rgba(91, 63, 35, 0.12);
  box-shadow: 0 12px 36px rgba(67, 45, 23, 0.08);
}

.content-nav a,
.main-nav a,
.nav-dropdown-trigger {
  letter-spacing: 0.02em;
}

.page-hero,
.content-hero-panel,
.hero {
  border: 1px solid rgba(91, 63, 35, 0.14);
  box-shadow: 0 20px 54px rgba(67, 45, 23, 0.08);
}

.yuxi-brand-layout,
.project-gallery-layout,
.member-site-layout {
  width: min(1080px, calc(100% - 48px));
}

.yuxi-brand-hero,
.project-gallery-hero,
.member-site-hero {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(237, 221, 195, 0.94)),
    radial-gradient(circle at 12% 18%, rgba(101, 112, 71, 0.13), transparent 17rem),
    radial-gradient(circle at 90% 82%, rgba(154, 103, 54, 0.15), transparent 18rem);
}

.yuxi-story-section,
.project-gallery-section {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(67, 45, 23, 0.07);
}

.yuxi-split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.yuxi-section-copy h2,
.yuxi-story-section h2,
.project-gallery-section h2 {
  margin-top: 0;
  color: var(--coffee);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.25;
}

.yuxi-section-copy p,
.yuxi-story-section p,
.project-gallery-section p {
  color: var(--muted);
  line-height: 1.86;
}

.yuxi-material-portrait,
.yuxi-member-map,
.project-showcase-art,
.yuxi-visual-tile {
  background:
    linear-gradient(135deg, rgba(78, 55, 31, 0.95), rgba(154, 103, 54, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.08) 0 1px, transparent 1px 16px);
  color: #fffaf2;
  border-radius: 22px;
}

.yuxi-material-portrait {
  min-height: 320px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
}

.yuxi-material-portrait span {
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.9;
  font-weight: 700;
  opacity: 0.9;
}

.yuxi-material-portrait strong {
  max-width: 320px;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.yuxi-visual-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.yuxi-visual-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(91, 63, 35, 0.13);
  border-radius: 18px;
}

.yuxi-visual-tile {
  min-height: 132px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
}

.yuxi-member-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 24px;
}

.yuxi-member-map span {
  padding: 12px;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 12px;
}

.project-showcase-list {
  display: grid;
  gap: 20px;
}

.project-showcase-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid rgba(91, 63, 35, 0.13);
  border-radius: 20px;
}

.project-showcase-art {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  padding: 22px;
}

.project-showcase-art span {
  font-size: 44px;
  font-weight: 700;
  opacity: 0.78;
}

.project-showcase-art strong {
  font-size: 30px;
}

.project-showcase-copy h3 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
}

.related-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-mini-grid a {
  padding: 18px;
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(91, 63, 35, 0.13);
  border-radius: 15px;
}

.related-mini-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .yuxi-split-section,
  .project-showcase-panel,
  .yuxi-visual-grid,
  .yuxi-visual-grid.five,
  .related-mini-grid {
    grid-template-columns: 1fr;
  }

  .project-showcase-art {
    min-height: 190px;
  }
}

@media (max-width: 720px) {
  .yuxi-brand-layout,
  .project-gallery-layout,
  .member-site-layout {
    width: calc(100% - 28px);
  }
}

/* ========== V1.14.1：公网验收细节修补 ========== */
.project-showcase-panel,
.vendor-direction-card,
.apply-info-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.project-showcase-panel:hover,
.vendor-direction-card:hover,
.apply-info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 103, 54, 0.28);
  box-shadow: 0 22px 58px rgba(67, 45, 23, 0.1);
}

.merchant-link,
.natural-link,
.text-link {
  text-underline-offset: 0.22em;
}

.vendor-apply-form input:focus,
.vendor-apply-form select:focus,
.vendor-apply-form textarea:focus {
  border-color: rgba(154, 103, 54, 0.7);
  box-shadow: 0 0 0 4px rgba(154, 103, 54, 0.12);
  outline: none;
}

.form-helper {
  border-left: 3px solid rgba(154, 103, 54, 0.36);
}

@media (max-width: 720px) {
  .project-showcase-panel,
  .vendor-guide-section,
  .vendor-library-section,
  .vendor-apply-section {
    border-radius: 18px;
  }

  .merchant-link,
  .natural-link,
  .text-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
  }
}


/* ========== V1.15：全站导航统一与推荐厂商收口 ========== */
.content-nav,
.main-nav {
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
}

.content-nav a,
.main-nav a {
  white-space: nowrap;
}

.content-site-header {
  min-height: 72px;
}

.vendor-guide-hero h1,
.project-gallery-hero h1,
.yuxi-brand-hero h1 {
  letter-spacing: -0.04em;
}

@media (max-width: 920px) {
  .content-nav,
  .main-nav.desktop-nav {
    display: none;
  }
}

/* ========== V1.15.1：全站导航下拉结构统一 ========== */
.global-site-header {
  z-index: 1000;
}

.global-site-header .main-nav {
  gap: clamp(10px, 1.4vw, 18px);
}

.global-site-header .nav-link,
.global-site-header .main-nav a {
  font-size: 14px;
  line-height: 1;
}

.global-site-header .nav-dropdown-menu {
  z-index: 1002;
  width: 188px;
}

.content-page .content-main {
  margin-top: 128px;
}

@media (max-width: 1080px) {
  .global-site-header {
    width: min(1180px, calc(100% - 24px));
  }

  .global-site-header .main-nav {
    gap: 10px;
  }

  .global-site-header .nav-cta {
    padding-inline: 16px;
  }
}

@media (max-width: 900px) {
  .content-page .content-main {
    margin-top: 108px;
  }

  .global-site-header .mobile-nav details {
    margin: 0;
  }
}

/* ========== V1.15.2：首页与内页版式细节统一修补 ========== */
h1,
h2,
h3,
.hero h1,
.page-hero h1,
.section-heading h2,
.knowledge-section-heading h2,
.category-heading h2 {
  text-wrap: balance;
}

.btn,
.nav-cta,
.mobile-menu-cta,
.pill-button,
.merchant-link,
.view-all,
.natural-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
}

.hero {
  padding: clamp(104px, 9vw, 132px) 0 clamp(58px, 6vw, 76px);
}

.hero-inner {
  width: min(1280px, calc(100% - 56px));
  grid-template-columns: minmax(560px, 0.98fr) minmax(440px, 0.92fr);
  align-items: stretch;
  gap: clamp(34px, 4vw, 56px);
}

.hero-content,
.hero-media {
  min-height: clamp(500px, 42vw, 560px);
}

.hero-media {
  height: clamp(500px, 42vw, 560px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 4vw, 58px);
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.nowrap-heading {
  white-space: nowrap;
}

.hero-hook {
  margin-top: 24px;
}

.hero-copy {
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .btn {
  min-height: 60px;
  padding-inline: clamp(20px, 2.1vw, 30px);
  white-space: nowrap;
}

.hero-actions .btn-ghost {
  background: rgba(255, 250, 242, 0.62);
}

.hero-media {
  display: flex;
}

.hero-media .hero-image {
  flex: 1;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.section-heading,
.category-heading,
.knowledge-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 34px);
}

.section-heading > div,
.category-heading > div,
.knowledge-section-heading > div {
  max-width: 760px;
}

.section-heading p,
.category-heading p,
.knowledge-section-heading p {
  margin-top: 8px;
}

.section-heading .view-all {
  align-self: flex-end;
  margin-bottom: 4px;
  white-space: nowrap;
}

.section-heading .lead-magnet {
  display: none;
}

.knowledge-category-grid,
.featured-grid,
.brand-grid,
.value-grid,
.project-showcase-list {
  align-items: stretch;
}

.knowledge-topic-card,
.content-card,
.brand-card,
.path-card,
.value-card,
.project-showcase-panel,
.vendor-direction-card,
.apply-info-card {
  height: 100%;
}

.page-hero {
  min-height: clamp(280px, 32vw, 380px);
  align-content: center;
  padding: clamp(40px, 6vw, 76px);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

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

.page-hero .btn {
  min-height: 52px;
  margin-top: 4px;
  white-space: nowrap;
}

.content-cta {
  align-items: center;
}

.content-cta .btn,
.form-actions .btn {
  min-height: 52px;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(500px, 1fr) minmax(380px, 0.86fr);
    width: min(1120px, calc(100% - 40px));
  }

  .hero h1 {
    font-size: clamp(42px, 4.8vw, 58px);
  }

  .hero-actions .btn {
    padding-inline: 20px;
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .hero-media {
    min-height: auto;
  }

  .hero-media .hero-image {
    min-height: 360px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .section-heading,
  .category-heading,
  .knowledge-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading .view-all {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 96px;
  }

  .hero-inner {
    width: min(100% - 28px, 560px);
  }

  .hero-content {
    padding: 30px 24px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.4vw, 38px);
  }

  .hero h1 span {
    white-space: normal;
  }

  .nowrap-heading {
    font-size: clamp(30px, 9vw, 34px);
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .page-hero {
    padding: 32px 24px;
  }

  .page-hero .btn,
  .content-cta .btn,
  .form-actions .btn {
    width: 100%;
  }
}

/* ========== V1.15.3C：文章案例展示与长说明清理 ========== */
.article-card-grid,
.case-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.article-card,
.case-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 230px;
  padding: clamp(22px, 3vw, 30px);
  color: inherit;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(246, 236, 220, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(154, 103, 54, 0.11), transparent 12rem);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(67, 45, 23, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-card:hover,
.case-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 103, 54, 0.28);
  box-shadow: 0 22px 58px rgba(67, 45, 23, 0.1);
}

.article-card span,
.case-card span {
  width: fit-content;
  padding: 5px 10px;
  color: var(--olive-dark);
  background: rgba(101, 112, 71, 0.1);
  border: 1px solid rgba(101, 112, 71, 0.18);
  border-radius: 999px;
  font-size: 13px;
}

.article-card h2,
.case-card h2 {
  margin: 4px 0 0;
  color: var(--coffee);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.article-card p,
.case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.article-section,
.case-section {
  max-width: 860px;
}

.article-boundary,
.case-boundary {
  max-width: 860px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(101, 112, 71, 0.08), rgba(255, 250, 242, 0.9)),
    rgba(255, 250, 242, 0.88);
}

@media (max-width: 980px) {
  .article-card-grid,
  .case-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .article-card-grid,
  .case-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== V1.15.3D：公网视觉节奏与移动端体验最终收口 ========== */
.global-site-header {
  min-height: 74px;
  align-items: center;
}

.global-site-header .brand,
.global-site-header .nav-cta,
.global-site-header .menu-toggle {
  align-self: center;
}

.global-site-header .nav-dropdown-menu {
  top: calc(100% + 14px);
}

.mobile-menu-shell {
  overflow: hidden;
}

.mobile-menu-panel {
  transform: translateX(0);
}

.hero {
  padding: clamp(112px, 9vw, 136px) 0 clamp(66px, 6vw, 84px);
}

.hero-inner {
  grid-template-columns: minmax(560px, 0.98fr) minmax(420px, 0.92fr);
  align-items: stretch;
  gap: clamp(36px, 4.2vw, 60px);
}

.hero-content,
.hero-media {
  min-height: clamp(510px, 41vw, 570px);
}

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

.hero h1 {
  max-width: 700px;
  letter-spacing: -0.048em;
}

.hero h1 span {
  overflow-wrap: normal;
}

.hero-copy {
  line-height: 1.86;
}

.hero-actions {
  align-items: stretch;
}

.hero-actions .btn {
  flex: 0 0 auto;
  min-width: max-content;
}

.section {
  padding-block: clamp(48px, 6vw, 72px);
}

.section-heading,
.category-heading,
.knowledge-section-heading {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.section-heading h2,
.category-heading h2,
.knowledge-section-heading h2,
.content-body h2,
.related-links h2,
.form-panel h2,
.vendor-apply-section h2,
.project-gallery-section h2,
.article-section h2,
.case-section h2,
.solution-topic-section h2 {
  letter-spacing: -0.025em;
}

.section-heading p,
.category-heading p,
.knowledge-section-heading p,
.page-hero p,
.content-lead,
.article-hero p:last-child,
.solution-topic-hero p {
  line-height: 1.82;
}

.section-heading .view-all,
.category-heading .view-all,
.knowledge-section-heading .view-all {
  min-height: 34px;
  padding-bottom: 2px;
}

.knowledge-category-grid,
.solution-grid,
.merchant-grid,
.vendor-direction-grid,
.candidate-library-grid,
.apply-info-grid,
.article-card-grid,
.case-card-grid {
  gap: clamp(18px, 2.4vw, 26px);
}

.knowledge-topic-card,
.goods-card,
.merchant-card,
.vendor-direction-card,
.candidate-library-card,
.apply-info-card,
.article-card,
.case-card,
.project-showcase-panel,
.content-body,
.related-links,
.content-cta,
.form-panel,
.vendor-guide-section,
.vendor-library-section,
.vendor-apply-section,
.article-section,
.article-note,
.case-section,
.case-boundary,
.article-boundary,
.solution-topic-section {
  border-radius: 18px;
}

.knowledge-topic-card,
.vendor-direction-card,
.candidate-library-card,
.apply-info-card,
.article-card,
.case-card {
  padding: clamp(22px, 3vw, 32px);
}

.knowledge-topic-card p,
.goods-body p,
.merchant-card p,
.trust-grid p,
.vendor-direction-card p,
.candidate-library-card p,
.apply-info-card p,
.article-card p,
.case-card p,
.content-body p,
.project-showcase-copy p,
.solution-topic-section p {
  line-height: 1.84;
}

.knowledge-topic-card ul,
.solution-points {
  gap: 8px;
}

.solution-card .goods-body,
.merchant-card {
  min-height: 100%;
}

.goods-image {
  min-height: clamp(220px, 22vw, 280px);
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.trust-grid article {
  min-height: 184px;
}

.page-hero,
.content-hero-panel,
.article-hero,
.solution-topic-hero {
  overflow: hidden;
  border-radius: 22px;
}

.content-main,
.article-layout,
.solution-topic-layout,
.vendor-guide-layout,
.vendor-library-layout,
.vendor-apply-layout,
.project-gallery-layout,
.yuxi-brand-layout {
  margin-bottom: clamp(64px, 8vw, 96px);
}

.article-layout {
  width: min(900px, calc(100% - 48px));
}

.article-shell,
.solution-topic-shell {
  gap: clamp(18px, 2.6vw, 28px);
  min-width: 0;
}

.article-section,
.article-note,
.article-hero,
.article-body,
.case-section,
.case-boundary,
.article-boundary,
.solution-topic-section {
  min-width: 0;
  max-width: 100%;
  padding: clamp(24px, 4vw, 36px);
}

.article-section p,
.article-note p,
.case-section p,
.case-boundary p,
.article-boundary p {
  font-size: 16.5px;
}

.article-table-wrap {
  max-width: 100%;
  min-width: 0;
  margin-inline: -2px;
  padding-bottom: 6px;
  overflow-x: auto;
  scrollbar-color: rgba(154, 103, 54, 0.42) rgba(154, 103, 54, 0.08);
}

.article-question-list {
  gap: 12px 18px;
}

.article-related ul,
.related-mini-grid,
.related-links ul {
  gap: 14px;
}

.project-showcase-panel {
  align-items: stretch;
}

.project-showcase-copy {
  display: grid;
  align-content: center;
}

.yuxi-visual-card,
.project-showcase-panel,
.vendor-direction-card,
.candidate-library-card,
.apply-info-card,
.article-card,
.case-card {
  min-width: 0;
}

.nowrap-heading {
  max-width: 100%;
}

.vendor-apply-form .form-actions,
.form-actions,
.content-cta {
  align-items: center;
}

.vendor-apply-form .form-actions .btn,
.form-actions .btn,
.content-cta .btn {
  min-width: max-content;
}

.content-site-footer,
.site-footer {
  margin-top: clamp(48px, 7vw, 76px);
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(500px, 1fr) minmax(360px, 0.82fr);
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    padding-inline: 18px;
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 108px;
  }

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

  .hero-content,
  .hero-media {
    min-height: auto;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
    min-height: 360px;
    max-height: 540px;
  }

  .hero-media {
    height: auto;
  }

  .hero-media .hero-image {
    min-height: clamp(320px, 56vw, 460px);
  }

  .section-heading,
  .category-heading,
  .knowledge-section-heading {
    gap: 12px;
  }

  .trust-grid,
  .vendor-direction-grid,
  .article-card-grid,
  .case-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-showcase-copy {
    align-content: start;
  }
}

.article-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(74, 47, 27, 0.08);
}

.article-toc strong {
  margin-right: 4px;
  color: var(--coffee);
  font-size: 15px;
}

.article-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(91, 63, 35, 0.12);
  border-radius: 999px;
}

.article-toc a:hover {
  color: var(--accent);
  border-color: rgba(185, 110, 54, 0.28);
}

.auxiliary-topic-main .content-body {
  max-width: 820px;
}

.auxiliary-topic-main .content-body .btn {
  margin-top: 4px;
}

.article-body-natural {
  max-width: 860px;
  margin-inline: auto;
}

.article-body-natural .article-prose,
.article-body-natural.content-body {
  padding: clamp(26px, 4vw, 42px);
}

.article-body-natural p {
  max-width: 72ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.95;
}

.article-body-natural p + p {
  margin-top: 18px;
}

.article-inline-heading {
  margin: 18px 0 8px;
  color: var(--coffee);
  font-size: 17px;
  line-height: 1.7;
}

.article-inline-heading strong {
  font-weight: 800;
}

.article-related-compact ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 720px) {
  .section,
  .content-main,
  .article-layout,
  .solution-index-layout,
  .solution-topic-layout,
  .vendor-guide-layout,
  .vendor-library-layout,
  .vendor-apply-layout,
  .project-gallery-layout,
  .yuxi-brand-layout {
    width: calc(100% - 28px);
  }

  .section {
    padding-block: 40px;
  }

  .page-hero,
  .content-hero-panel,
  .article-hero,
  .solution-topic-hero,
  .vendor-guide-section,
  .vendor-library-section,
  .vendor-apply-section,
  .project-gallery-section,
  .yuxi-story-section {
    border-radius: 18px;
  }

  .page-hero,
  .content-hero-panel,
  .article-hero,
  .solution-topic-hero {
    padding: 28px 22px;
  }

  .knowledge-category-grid,
  .solution-grid,
  .merchant-grid,
  .trust-grid,
  .vendor-direction-grid,
  .candidate-library-grid,
  .article-card-grid,
  .case-card-grid,
  .apply-info-grid,
  .related-mini-grid,
  .related-links ul,
  .article-question-list {
    grid-template-columns: 1fr;
  }

  .article-card,
  .case-card,
  .knowledge-topic-card,
  .vendor-direction-card,
  .candidate-library-card,
  .apply-info-card {
    min-height: auto;
  }

  .vendor-apply-form .form-actions,
  .form-actions,
  .content-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vendor-apply-form .form-actions .btn,
  .form-actions .btn,
  .content-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .article-toc {
    align-items: stretch;
  }

  .article-toc strong,
  .article-toc a {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-content {
    padding: 28px 20px;
  }

  .hero h1 {
    font-size: clamp(32px, 8.9vw, 38px);
    letter-spacing: -0.035em;
  }

  .hero h1 span,
  .nowrap-heading {
    white-space: normal;
  }

  .hero-copy,
  .content-lead,
  .article-hero p:last-child,
  .solution-topic-hero p,
  .page-hero p {
    font-size: 16px;
  }

  .article-section,
  .article-note,
  .case-section,
  .case-boundary,
  .article-boundary,
  .solution-topic-section,
  .content-body,
  .related-links,
  .content-cta,
  .form-panel {
    padding: 22px 18px;
  }
}

/* ========== V1.15.3G：短标题单行与版式对齐收口 ========== */
@media (min-width: 721px) {
  .nowrap-heading,
  .section-heading h2,
  .knowledge-section-heading h2,
  .category-heading > h2,
  .yuxi-section-copy > .nowrap-heading,
  .yuxi-story-section > .nowrap-heading,
  .trust-section > h2 {
    width: max-content;
    max-width: 100%;
    flex: 0 0 auto;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .yuxi-section-copy > .nowrap-heading,
  .yuxi-story-section > .nowrap-heading {
    font-size: clamp(28px, 3.1vw, 38px);
    letter-spacing: -0.025em;
  }

  .category-heading h2.nowrap-heading {
    font-size: clamp(27px, 3vw, 38px);
    letter-spacing: -0.025em;
  }

  .section-heading h2,
  .knowledge-section-heading h2 {
    font-size: clamp(28px, 3.1vw, 38px);
    letter-spacing: -0.025em;
  }

  .page-hero h1,
  .article-hero h1,
  .solution-topic-hero h1,
  .vendor-guide-hero h1,
  .project-gallery-hero h1,
  .yuxi-brand-hero h1 {
    max-width: min(920px, 100%);
    text-wrap: balance;
  }
}

.btn,
.nav-cta,
.mobile-menu-cta,
.pill-button,
.merchant-link,
.view-all,
.text-link,
.natural-link {
  min-height: 44px;
  align-items: center;
  vertical-align: bottom;
}

.hero-actions,
.content-cta,
.form-actions,
.vendor-apply-form .form-actions {
  align-items: stretch;
}

.hero-actions .btn,
.content-cta .btn,
.form-actions .btn,
.vendor-apply-form .form-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  line-height: 1.12;
}

.section-heading,
.category-heading,
.knowledge-section-heading {
  align-items: end;
}

.section-heading h2,
.category-heading h2,
.knowledge-section-heading h2,
.trust-section h2,
.apply-info-card h3,
.vendor-direction-card h3,
.candidate-library-card h3,
.knowledge-feature-card h3,
.solution-scene-card h3,
.merchant-card h3 {
  overflow-wrap: normal;
  word-break: keep-all;
}

.section-heading .view-all,
.category-heading .view-all,
.knowledge-section-heading .view-all {
  min-height: 42px;
  padding-block: 8px;
}

.apply-info-card h3,
.vendor-direction-card h3,
.candidate-library-card h3,
.knowledge-feature-card h3,
.solution-scene-card h3 {
  text-wrap: balance;
}

.form-actions {
  gap: 12px;
}

/* ========== V1.17：柚木好物生活方式精选库 ========== */
.good-things-layout {
  width: min(1080px, calc(100% - 48px));
}

.good-things-hero {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(238, 224, 202, 0.94)),
    radial-gradient(circle at 14% 16%, rgba(154, 103, 54, 0.14), transparent 18rem),
    radial-gradient(circle at 88% 82%, rgba(101, 112, 71, 0.15), transparent 18rem);
}

.good-things-hero-compact {
  padding-block: clamp(30px, 5vw, 54px);
}

.good-things-hero-compact h1 {
  margin-bottom: 12px;
}

.good-things-hero-compact p {
  max-width: 720px;
}

.good-things-section {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 237, 222, 0.9)),
    rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(91, 63, 35, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(67, 45, 23, 0.07);
}

.good-category-nav {
  margin-top: 14px;
  padding: clamp(14px, 2.2vw, 20px);
}

.good-things-intro-panel,
.good-things-overview {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
}

.good-things-intro-copy {
  display: grid;
  gap: 12px;
}

.good-things-intro-copy h2,
.good-things-overview .category-heading h2 {
  margin: 0;
}

.good-things-intro-copy p,
.good-things-overview .category-heading p {
  margin: 0;
}

.good-things-intro-grid,
.good-things-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

.good-things-note-card,
.good-things-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(246, 236, 220, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(154, 103, 54, 0.12), transparent 12rem);
  border: 1px solid rgba(91, 63, 35, 0.12);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(67, 45, 23, 0.06);
}

.good-category-card {
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.good-category-card {
  min-height: 170px;
  padding: clamp(18px, 2.4vw, 24px);
}

.good-category-card:hover,
.good-category-card:focus-visible,
.good-category-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(154, 103, 54, 0.24);
  box-shadow: 0 22px 42px rgba(67, 45, 23, 0.1);
}

.good-category-more {
  align-self: end;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(91, 63, 35, 0.12);
  border-radius: 999px;
}

.good-things-note-card {
  min-height: 0;
}

.good-things-note-card h3,
.good-things-card h3 {
  margin: 0;
  color: var(--coffee);
  line-height: 1.22;
}

.good-things-note-card h3 {
  font-size: 20px;
}

.good-things-card span {
  width: fit-content;
  padding: 5px 10px;
  color: var(--olive-dark);
  background: rgba(101, 112, 71, 0.1);
  border: 1px solid rgba(101, 112, 71, 0.18);
  border-radius: 999px;
  font-size: 13px;
}

.good-things-card h3 {
  font-size: clamp(22px, 2.5vw, 30px);
}

.good-things-note-card p,
.good-things-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.good-things-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(18px, 2vw, 24px);
}

.good-things-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--coffee);
  text-decoration: none;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(91, 63, 35, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(67, 45, 23, 0.05);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.good-things-filter-chip:hover,
.good-things-filter-chip:focus-visible,
.good-category-tab.is-active {
  transform: translateY(-2px);
  background: rgba(244, 233, 214, 0.92);
  border-color: rgba(154, 103, 54, 0.24);
  box-shadow: 0 14px 26px rgba(67, 45, 23, 0.09);
}

.good-things-overview {
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.good-things-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.good-things-metrics article {
  display: grid;
  gap: 8px;
  padding: 18px 16px;
  text-align: center;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(91, 63, 35, 0.1);
  border-radius: 18px;
}

.good-things-metrics strong {
  color: var(--coffee);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
}

.good-things-metrics span {
  color: var(--muted);
  font-size: 14px;
}

.good-things-stream-section {
  scroll-margin-top: 110px;
}

.good-things-stream-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.good-item-card {
  --good-tone: rgba(154, 103, 54, 0.12);
  --good-glow: rgba(101, 112, 71, 0.12);
  --good-accent: var(--coffee);
  display: grid;
  gap: 0;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 238, 225, 0.92)),
    rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(91, 63, 35, 0.12);
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(67, 45, 23, 0.06);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.good-item-card:hover,
.good-item-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(154, 103, 54, 0.24);
  box-shadow: 0 24px 44px rgba(67, 45, 23, 0.11);
}

.good-item-visual {
  position: relative;
  min-height: 112px;
  background:
    linear-gradient(135deg, rgba(255, 248, 238, 0.95), rgba(238, 223, 199, 0.88)),
    radial-gradient(circle at 18% 20%, var(--good-tone), transparent 9rem),
    radial-gradient(circle at 82% 0%, var(--good-glow), transparent 10rem);
}

.good-item-visual::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px auto;
  width: 72px;
  height: 72px;
  border-radius: 20px 20px 8px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, rgba(91, 63, 35, 0.18), transparent);
  opacity: 0.9;
}

.good-item-visual span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 10px;
  color: var(--good-accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(255, 252, 247, 0.84);
  border: 1px solid rgba(91, 63, 35, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(67, 45, 23, 0.08);
}

.good-item-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px 20px 22px;
}

.good-item-category {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  color: var(--olive-dark);
  font-size: 12px;
  letter-spacing: 0.06em;
  background: rgba(101, 112, 71, 0.1);
  border: 1px solid rgba(101, 112, 71, 0.16);
  border-radius: 999px;
}

.good-item-body h3 {
  margin: 0;
  color: var(--coffee);
  font-size: 24px;
  line-height: 1.24;
}

.good-item-desc,
.good-item-focus,
.good-item-source {
  margin: 0;
  color: var(--muted);
}

.good-item-desc {
  line-height: 1.72;
}

.good-item-focus,
.good-item-source {
  font-size: 14px;
  line-height: 1.6;
}

.good-item-focus strong {
  color: var(--coffee);
}

.good-item-source {
  color: var(--coffee-soft);
}

.good-section {
  scroll-margin-top: 110px;
}

.good-category-panel {
  display: none;
}

.good-category-panel.is-active {
  display: block;
  animation: goodPanelIn 0.22s ease both;
}

@keyframes goodPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.good-section-primary,
.good-section-more,
.good-section-reference,
.good-section-summary {
  display: grid;
  gap: 16px;
}

.good-section-primary + .good-section-more,
.good-section-more + .good-section-reference,
.good-section-reference + .good-section-summary {
  margin-top: clamp(20px, 3vw, 30px);
  padding-top: clamp(14px, 2vw, 20px);
  border-top: 1px solid rgba(91, 63, 35, 0.1);
}

.good-section-primary h3,
.good-section-more h3,
.good-section-reference h3,
.good-section-summary h3 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(20px, 2.4vw, 26px);
}

.good-section-summary {
  margin-top: 28px;
  padding: 22px 24px;
  background: rgba(255, 250, 240, 0.8);
  border: 1px solid rgba(120, 96, 56, 0.18);
  border-radius: 20px;
}

.good-section-reference + .good-section-summary {
  margin-top: 28px;
  padding-top: 22px;
}

.good-section-summary h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.good-section-summary p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.good-reference-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.good-reference-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(91, 63, 35, 0.12);
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.good-reference-list a:hover,
.good-reference-list a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(72, 46, 28, 0.24);
  box-shadow: 0 10px 22px rgba(72, 46, 28, 0.1);
}

.tone-furniture {
  --good-tone: rgba(154, 103, 54, 0.18);
  --good-glow: rgba(209, 167, 121, 0.18);
  --good-accent: #7a4d24;
}

.tone-flooring {
  --good-tone: rgba(168, 123, 66, 0.16);
  --good-glow: rgba(102, 86, 49, 0.16);
  --good-accent: #6c4a1f;
}

.tone-whole-decoration,
.tone-tearoom {
  --good-tone: rgba(101, 112, 71, 0.18);
  --good-glow: rgba(154, 103, 54, 0.14);
  --good-accent: #50603a;
}

.tone-outdoor {
  --good-tone: rgba(95, 122, 88, 0.18);
  --good-glow: rgba(188, 160, 121, 0.16);
  --good-accent: #44614b;
}

.tone-collection {
  --good-tone: rgba(121, 90, 54, 0.2);
  --good-glow: rgba(72, 57, 37, 0.14);
  --good-accent: #5c3d21;
}

.tone-creative {
  --good-tone: rgba(176, 128, 74, 0.16);
  --good-glow: rgba(144, 97, 48, 0.16);
  --good-accent: #86542d;
}

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

.home-good-things-grid .good-item-body h3 {
  font-size: 22px;
}

.goods-archive-home-card .good-item-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.goods-archive-entry-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(72, 46, 28, 0.14);
  background: rgba(255, 250, 242, 0.92);
  color: var(--coffee);
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.goods-archive-entry-link:hover,
.goods-archive-entry-link:focus-visible,
.goods-archive-list-link:hover,
.goods-archive-list-link:focus-visible,
.goods-archive-related-link:hover,
.goods-archive-related-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(72, 46, 28, 0.28);
  box-shadow: 0 12px 24px rgba(72, 46, 28, 0.12);
}

.goods-archive-batch-groups {
  display: grid;
  gap: 26px;
}

.goods-archive-group {
  padding: clamp(20px, 2.8vw, 30px);
  border-radius: 28px;
  border: 1px solid rgba(72, 46, 28, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.96), rgba(244, 236, 221, 0.9)),
    rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 60px rgba(72, 46, 28, 0.08);
}

.goods-archive-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.goods-archive-group-head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
}

.goods-archive-group-label,
.goods-archive-list-category,
.goods-archive-related-category {
  margin: 0;
  color: var(--olive);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.goods-archive-list-grid,
.goods-archive-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.goods-archive-list-card,
.goods-archive-related-card,
.good-category-note-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(72, 46, 28, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 244, 233, 0.92)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(72, 46, 28, 0.08);
}

.goods-archive-list-card h4,
.goods-archive-related-card h3,
.good-category-note-card h3 {
  margin: 0;
  color: var(--coffee);
  font-size: clamp(20px, 2.4vw, 24px);
}

.goods-archive-list-card p,
.goods-archive-related-card p,
.good-category-note-card p {
  margin: 0;
}

.good-category-note-card {
  position: relative;
  padding: 24px;
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(120, 96, 56, 0.18);
  box-shadow: 0 12px 28px rgba(72, 46, 28, 0.05);
}

.good-category-note-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
}

.good-category-note-card p {
  line-height: 1.8;
}

.good-note-more {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 10px 18px;
  color: var(--coffee);
  font-weight: 700;
  text-decoration: none;
  background: rgba(245, 239, 220, 0.8);
  border: 1px solid rgba(120, 96, 56, 0.2);
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.good-note-more:hover,
.good-note-more:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(120, 96, 56, 0.32);
  box-shadow: 0 10px 22px rgba(72, 46, 28, 0.08);
}

.goods-archive-list-link,
.goods-archive-related-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(72, 46, 28, 0.16);
  background: rgba(255, 250, 242, 0.92);
  color: var(--coffee);
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.goods-archive-layout {
  width: min(1080px, calc(100% - 48px));
}

.goods-archive-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: stretch;
  gap: clamp(20px, 3vw, 30px);
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
  border: 1px solid rgba(72, 46, 28, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.98), rgba(238, 224, 202, 0.92)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(72, 46, 28, 0.08);
}

.goods-archive-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.goods-archive-hero-copy h1,
.goods-archive-article h2 {
  color: var(--coffee);
}

.goods-archive-lead {
  margin: 0;
  font-size: clamp(19px, 2.6vw, 25px);
  line-height: 1.7;
  color: rgba(72, 46, 28, 0.82);
}

.goods-archive-visual {
  min-height: 260px;
}

.woodgrain-block {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(108, 73, 46, 0.94), rgba(159, 114, 73, 0.9)),
    repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 12px,
      rgba(44, 24, 11, 0.08) 12px,
      rgba(44, 24, 11, 0.08) 24px
    );
}

.woodgrain-block::before,
.woodgrain-block::after {
  content: "";
  position: absolute;
  inset: 0;
}

.woodgrain-block::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 243, 220, 0.18), transparent 28%),
    radial-gradient(circle at 78% 76%, rgba(0, 0, 0, 0.12), transparent 30%);
  mix-blend-mode: screen;
}

.woodgrain-block::after {
  background:
    repeating-linear-gradient(
      16deg,
      transparent 0,
      transparent 14px,
      rgba(255, 255, 255, 0.04) 14px,
      rgba(255, 255, 255, 0.04) 16px
    );
  opacity: 0.8;
}

.woodgrain-block span {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.16);
  color: rgba(255, 250, 242, 0.96);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.goods-archive-article {
  display: grid;
  gap: 18px;
}

.goods-archive-section {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 26px;
  border: 1px solid rgba(72, 46, 28, 0.08);
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 18px 40px rgba(72, 46, 28, 0.06);
}

.goods-archive-section h2 {
  margin-bottom: 14px;
}

.goods-archive-detail-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.goods-archive-detail-list li {
  padding-left: 4px;
}

.goods-archive-source-box {
  background:
    linear-gradient(135deg, rgba(101, 112, 71, 0.1), rgba(255, 250, 242, 0.94)),
    rgba(255, 250, 242, 0.92);
}

.goods-archive-note {
  background:
    linear-gradient(135deg, rgba(154, 103, 54, 0.08), rgba(255, 250, 242, 0.94)),
    rgba(255, 250, 242, 0.92);
}

.goods-article-shell {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  width: min(980px, calc(100% - 48px));
  margin: 0 auto clamp(48px, 8vw, 86px);
}

.goods-article-prose {
  width: min(820px, 100%);
  margin: 0 auto;
  color: rgba(72, 46, 28, 0.84);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.92;
}

.goods-article-prose p {
  margin: 0 0 1.18em;
}

.goods-related-section {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(72, 46, 28, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(245, 233, 214, 0.82)),
    rgba(255, 250, 242, 0.92);
  box-shadow: 0 18px 44px rgba(72, 46, 28, 0.07);
}

.goods-source-section {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 30px) 0 0;
  border-top: 1px solid rgba(72, 46, 28, 0.14);
}

.goods-source-section h2 {
  margin: 0 0 10px;
  color: var(--coffee);
}

.goods-source-section > p {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--muted);
}

.goods-source-grid {
  display: grid;
  gap: 0;
  border: 1px solid rgba(72, 46, 28, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.58);
}

.goods-source-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 14px;
  align-items: start;
  min-height: 0;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(72, 46, 28, 0.08);
  background: rgba(255, 255, 255, 0.28);
  color: var(--coffee);
  text-decoration: none;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.goods-source-card:last-child {
  border-bottom: 0;
}

.goods-source-card span {
  width: fit-content;
  padding: 4px 9px;
  color: var(--olive-dark);
  background: rgba(101, 112, 71, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.goods-source-card strong {
  font-size: 16px;
  line-height: 1.42;
}

.goods-source-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.goods-source-card:hover,
.goods-source-card:focus-visible {
  color: var(--coffee);
  background: rgba(244, 233, 214, 0.44);
}

.goods-related-section h2 {
  margin-bottom: 18px;
  color: var(--coffee);
}

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

.goods-related-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(72, 46, 28, 0.08);
  background: rgba(255, 255, 255, 0.58);
  color: var(--coffee);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.goods-related-card span {
  color: var(--wood-brown);
  font-size: 13px;
  font-weight: 700;
}

.goods-related-card strong {
  font-size: 18px;
  line-height: 1.45;
}

.goods-related-card em {
  align-self: end;
  color: var(--coffee-soft);
  font-style: normal;
  font-weight: 700;
}

.goods-related-card:hover,
.goods-related-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(154, 103, 54, 0.22);
  box-shadow: 0 18px 36px rgba(72, 46, 28, 0.08);
}

.good-things-case-note {
  color: var(--coffee);
  font-weight: 600;
}

.good-things-source-note {
  background:
    linear-gradient(135deg, rgba(101, 112, 71, 0.1), rgba(255, 250, 242, 0.92)),
    rgba(255, 250, 242, 0.88);
}

.vendor-good-things-source {
  background:
    linear-gradient(135deg, rgba(154, 103, 54, 0.08), rgba(255, 250, 242, 0.92)),
    rgba(255, 250, 242, 0.88);
}

/* ========== V1.21：推荐厂商企业资料库与标签筛选 ========== */
.vendor-directory-section {
  display: grid;
  gap: 22px;
}

.vendor-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vendor-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--coffee);
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(91, 63, 35, 0.16);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.vendor-filter-chip:hover,
.vendor-filter-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(101, 112, 71, 0.32);
}

.vendor-filter-chip.is-active {
  color: #fffaf2;
  background: var(--olive);
  border-color: rgba(101, 112, 71, 0.72);
}

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

.vendor-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(248, 241, 228, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(101, 112, 71, 0.08), transparent 12rem);
  border: 1px solid rgba(91, 63, 35, 0.14);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(67, 45, 23, 0.07);
}

.vendor-card[hidden] {
  display: none;
}

.vendor-card-head {
  display: grid;
  gap: 8px;
}

.vendor-card-kicker {
  width: fit-content;
  padding: 4px 10px;
  color: var(--coffee-soft);
  background: rgba(154, 103, 54, 0.08);
  border: 1px solid rgba(154, 103, 54, 0.13);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.vendor-card h3 {
  margin: 0;
  color: var(--coffee);
  font-size: 24px;
  line-height: 1.28;
}

.vendor-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.vendor-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.vendor-meta div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(91, 63, 35, 0.1);
}

.vendor-meta dt {
  color: var(--coffee);
  font-weight: 700;
}

.vendor-meta dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.vendor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vendor-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--coffee-soft);
  background: rgba(101, 112, 71, 0.08);
  border: 1px solid rgba(101, 112, 71, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.vendor-status {
  color: var(--coffee);
  font-weight: 700;
}

.vendor-card-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  color: var(--coffee);
  background: rgba(245, 239, 220, 0.86);
  border: 1px solid rgba(120, 96, 56, 0.2);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.vendor-card-link:hover,
.vendor-card-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(101, 112, 71, 0.3);
  background: rgba(238, 231, 207, 0.96);
}

/* ========== V1.21.1：推荐厂商标签精简与紧凑版式 ========== */
.vendor-brand-hall .vendor-guide-hero {
  padding-top: clamp(28px, 5vw, 46px);
  padding-bottom: clamp(26px, 4vw, 40px);
}

.vendor-brand-hall .vendor-guide-hero h1 {
  margin-bottom: 10px;
}

.vendor-brand-hall .vendor-guide-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 16px;
  line-height: 1.72;
}

.vendor-brand-hall .vendor-guide-section {
  margin-top: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.vendor-directory-section {
  gap: 16px;
}

.vendor-filter {
  gap: 8px;
}

.vendor-filter-chip {
  min-height: 34px;
  padding: 6px 12px;
  font-size: 13px;
}

.vendor-grid {
  gap: 14px;
}

.vendor-card {
  gap: 12px;
  padding: 20px;
  border-radius: 14px;
}

.vendor-card-head {
  gap: 6px;
}

.vendor-card-kicker {
  padding: 3px 9px;
  font-size: 12px;
}

.vendor-card h3 {
  font-size: 22px;
}

.vendor-card p {
  line-height: 1.68;
}

.vendor-meta {
  gap: 8px;
}

.vendor-meta div {
  grid-template-columns: 78px 1fr;
  gap: 10px;
  padding-top: 8px;
}

.vendor-meta dd {
  line-height: 1.56;
}

.vendor-tags {
  gap: 6px;
}

.vendor-tag {
  min-height: 24px;
  padding: 3px 9px;
  font-size: 12px;
}

.vendor-card-link {
  min-height: 34px;
  padding: 7px 13px;
  font-size: 14px;
}

/* ========== V1.22：社群交流区客户咨询入口表达 ========== */
.wechat-section {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 380px);
  gap: clamp(28px, 4vw, 48px);
}

.wechat-copy .eyebrow {
  letter-spacing: 0.18em;
}

.wechat-section h2 {
  max-width: 780px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.14;
}

.wechat-hook {
  margin-top: 16px !important;
  color: #fff4df !important;
  font-size: clamp(22px, 2.4vw, 32px) !important;
}

.wechat-copy > p:not(.eyebrow):not(.wechat-hook) {
  max-width: 820px;
  line-height: 1.88;
}

.benefits {
  gap: 14px 22px;
  margin-top: 26px;
}

.benefits li {
  font-weight: 700;
}

.qr-panel {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: clamp(22px, 3vw, 30px);
}

.qr-panel h3 {
  color: var(--coffee);
  font-size: clamp(22px, 2.4vw, 28px);
}

.qr-note {
  max-width: 360px;
  color: var(--coffee) !important;
  font-weight: 700;
  line-height: 1.7;
}

.qr-panel p {
  max-width: 390px;
  line-height: 1.72;
}

.qr-boundary {
  margin-top: 8px !important;
  padding-top: 12px;
  color: var(--muted) !important;
  border-top: 1px solid rgba(91, 63, 35, 0.12);
  font-size: 14px;
}

@media (max-width: 760px) {
  .wechat-section h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .wechat-hook {
    font-size: 22px !important;
  }

  .qr-panel {
    padding: 20px 16px;
  }
}

/* ========== V1.22.2：社群咨询区文案与首屏比例优化 ========== */
.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 15px;
}

.wechat-section {
  scroll-margin-top: 132px;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 420px);
  align-items: start;
  gap: clamp(30px, 4.2vw, 54px);
  padding: clamp(34px, 4.6vw, 48px);
}

.wechat-section h2 {
  max-width: 760px;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.12;
}

.wechat-hook {
  margin-top: 14px !important;
  font-size: clamp(20px, 2vw, 28px) !important;
}

.wechat-copy > p:not(.eyebrow):not(.wechat-hook) {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.86;
}

.benefits {
  gap: 12px 18px;
  margin-top: 24px;
}

.benefits li {
  font-size: 16px;
  font-weight: 600;
}

.qr-panel {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  padding: clamp(22px, 2.6vw, 28px);
}

.qr-code-image {
  width: clamp(240px, 21vw, 266px);
  height: clamp(240px, 21vw, 266px);
  margin-bottom: 14px;
}

.qr-panel h3 {
  max-width: 320px;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.28;
}

.qr-note {
  max-width: 330px;
  font-size: 14px;
}

.qr-panel p {
  max-width: 350px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .wechat-section {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .qr-panel {
    justify-self: stretch;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .wechat-section {
    scroll-margin-top: 96px;
  }

  .wechat-section h2 {
    font-size: clamp(36px, 9.6vw, 44px);
  }

  .wechat-copy > p:not(.eyebrow):not(.wechat-hook) {
    font-size: 16px;
  }

  .qr-code-image {
    width: min(248px, 72vw);
    height: min(248px, 72vw);
  }
}

.cooperation-content-grid {
  margin-bottom: 18px;
}

@media (max-width: 1100px) {
  .good-things-stream-grid,
  .home-good-things-grid,
  .goods-archive-list-grid,
  .goods-archive-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .good-things-overview {
    grid-template-columns: 1fr;
  }

  .goods-archive-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .good-things-intro-grid,
  .good-things-category-grid,
  .good-things-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .good-things-layout {
    width: calc(100% - 28px);
  }

  .good-things-section {
    padding: 22px 18px;
  }

  .good-things-intro-grid,
  .good-things-category-grid,
  .home-good-things-grid,
  .good-things-stream-grid,
  .good-things-metrics,
  .goods-archive-list-grid,
  .goods-archive-related-grid,
  .goods-related-grid {
    grid-template-columns: 1fr;
  }

  .good-things-filter {
    gap: 10px;
  }

  .good-things-filter-chip {
    width: 100%;
    justify-content: flex-start;
  }

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

  .vendor-filter-chip {
    flex: 1 1 calc(50% - 10px);
  }

  .vendor-brand-hall .vendor-guide-hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .vendor-brand-hall .vendor-guide-section {
    padding: 18px;
  }

  .vendor-card {
    padding: 18px;
  }

  .vendor-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .vendor-card-link {
    justify-self: stretch;
  }

  .goods-archive-group-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .goods-archive-layout {
    width: calc(100% - 28px);
  }

  .goods-article-shell {
    width: calc(100% - 28px);
    gap: 24px;
  }

  .goods-article-prose {
    font-size: 16px;
    line-height: 1.86;
  }

  .goods-source-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .good-things-card {
    min-height: auto;
  }

  .good-item-visual {
    min-height: 94px;
  }

  .good-item-body {
    padding: 18px 18px 20px;
  }

  .goods-archive-list-card,
  .goods-archive-related-card,
  .goods-archive-section,
  .goods-archive-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .good-item-body h3 {
    font-size: 21px;
  }
}

@media (min-width: 981px) {
  .hero-actions .btn {
    min-width: 0;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    min-width: 156px;
  }

  .hero-actions .btn-ghost {
    min-width: 148px;
  }

  .vendor-apply-form .form-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .vendor-apply-form .form-actions .btn {
    min-width: 132px;
  }
}

@media (max-width: 720px) {
  h1,
  h2,
  h3,
  .hero h1,
  .page-hero h1,
  .article-hero h1,
  .solution-topic-hero h1,
  .section-heading h2,
  .category-heading h2,
  .knowledge-section-heading h2,
  .trust-section h2 {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .nowrap-heading {
    white-space: normal;
    text-wrap: balance;
  }

  .section-heading,
  .category-heading,
  .knowledge-section-heading {
    align-items: flex-start;
  }

  .btn,
  .pill-button,
  .view-all,
  .merchant-link {
    min-height: 46px;
  }
}

/* ========== V1.22.4：全站 Header 顶部缝隙与锚点直达修复 ========== */
html {
  scroll-padding-top: 128px;
}

[id],
.knowledge-topic-card,
.solution-card,
.good-section,
.good-things-stream-section {
  scroll-margin-top: 128px;
}

body::before {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  height: max(18px, env(safe-area-inset-top));
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(33, 23, 15, 0.98), rgba(33, 23, 15, 0.94));
}

.site-header {
  top: 0;
  z-index: 1000;
}

.site-header::before {
  top: 0;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 136px;
  }

  [id],
  .knowledge-topic-card,
  .solution-card,
  .good-section,
  .good-things-stream-section {
    scroll-margin-top: 136px;
  }

  body::before {
    height: max(14px, env(safe-area-inset-top));
    background: #fffaf2;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 140px;
  }

  [id],
  .knowledge-topic-card,
  .solution-card,
  .good-section,
  .good-things-stream-section {
    scroll-margin-top: 140px;
  }
}

/* ========== V1.22.5：首页 Footer 横向紧凑布局修复 ========== */
.site-footer {
  margin-top: clamp(42px, 5vw, 64px);
}

.footer-inner {
  grid-template-columns: minmax(220px, 0.9fr) minmax(350px, 1.18fr) minmax(320px, 1fr) minmax(108px, 0.32fr);
  align-items: center;
  gap: clamp(20px, 2.2vw, 32px);
  padding: 32px 0 26px;
}

.footer-brand,
.footer-contact,
.footer-link-groups,
.footer-qr {
  min-width: 0;
}

.footer-slogan {
  margin: 16px 0 10px;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.25;
}

.footer-brand p,
.footer-contact {
  font-size: 15px;
  line-height: 1.58;
}

.footer-brand p {
  margin: 0;
}

.footer-contact {
  gap: 8px;
}

.footer-link-groups {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 18px;
  line-height: 1.35;
}

.footer-link-groups a {
  color: rgba(255, 250, 242, 0.8);
  font-size: 15px;
  line-height: 1.35;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.footer-link-groups a:hover {
  color: #ffffff;
}

.footer-qr {
  justify-self: end;
  align-self: center;
  gap: 8px;
  width: 112px;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.mini-qr {
  width: 96px;
  height: 96px;
  padding: 7px;
}

.copyright {
  padding: 16px 0 22px;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 14px;
  width: min(1200px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 24px;
  color: rgba(255, 250, 242, 0.7);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.footer-legal a {
  color: inherit;
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: #fff8ed;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .footer-inner {
    grid-template-columns: minmax(180px, 0.8fr) minmax(280px, 1.1fr) minmax(270px, 1fr) 100px;
    gap: 16px;
  }

  .footer-slogan {
    font-size: 22px;
  }

  .footer-brand p,
  .footer-contact,
  .footer-link-groups a {
    font-size: 14px;
  }

  .footer-link-groups {
    gap: 8px 13px;
  }

  .footer-qr {
    width: 100px;
  }

  .mini-qr {
    width: 86px;
    height: 86px;
  }
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    gap: 22px;
    padding: 30px 0 24px;
  }

  .footer-link-groups {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .footer-qr {
    justify-self: center;
    width: auto;
  }

  .copyright {
    width: calc(100% - 32px);
  }

  .footer-legal {
    width: calc(100% - 32px);
  }
}

@media (max-width: 640px) {
  .footer-inner {
    gap: 18px;
  }

  .footer-contact {
    font-size: 14px;
  }

  .footer-link-groups {
    gap: 10px 14px;
  }

  .footer-link-groups a {
    font-size: 14px;
  }

  .mini-qr {
    width: 92px;
    height: 92px;
  }
}

/* ========== V1.23.0-rc.1：高端木作品牌 UI 体验冲刺 ========== */
:root {
  --brand-ink: #211914;
  --brand-coffee: #302218;
  --brand-teak: #a56f3f;
  --brand-gold: #c79a62;
  --brand-olive: #5d6847;
  --brand-paper: #fbf7f0;
  --brand-canvas: #f2eadf;
  --brand-muted: #70645a;
  --brand-line: rgba(62, 43, 28, 0.14);
  --brand-line-strong: rgba(62, 43, 28, 0.22);
  --brand-radius-sm: 10px;
  --brand-radius: 16px;
  --brand-radius-lg: 24px;
  --brand-shadow-soft: 0 14px 42px rgba(45, 31, 20, 0.08);
  --brand-shadow-lift: 0 24px 64px rgba(45, 31, 20, 0.13);
  --brand-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --brand-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --brand-font-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, SimSun, serif;
  --brand-font-body: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

html {
  color: var(--brand-ink);
  background: var(--brand-canvas);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(199, 154, 98, 0.13), transparent 28rem),
    radial-gradient(circle at 92% 16%, rgba(93, 104, 71, 0.07), transparent 24rem),
    linear-gradient(180deg, #faf6ef 0%, #f3ecdf 54%, #faf7f1 100%);
  font-family: var(--brand-font-body);
  font-size: 16px;
  line-height: 1.78;
}

h1,
h2,
h3,
h4,
.hero h1,
.page-hero h1,
.content-hero-panel h1,
.section-heading h2,
.category-heading h2,
.knowledge-section-heading h2 {
  color: var(--brand-ink);
  font-family: var(--brand-font-display);
  font-weight: 600;
  font-kerning: normal;
}

p,
li,
dd {
  text-wrap: pretty;
}

::selection {
  color: #fffaf2;
  background: rgba(91, 64, 39, 0.88);
}

:focus-visible {
  outline: 2px solid rgba(165, 111, 63, 0.78);
  outline-offset: 4px;
}

.section {
  width: min(1200px, calc(100% - 56px));
  padding-block: clamp(72px, 8vw, 104px);
}

.section + .section {
  border-top: 1px solid rgba(62, 43, 28, 0.07);
}

.eyebrow,
.topic-index,
.merchant-kicker,
.good-item-category,
.goods-archive-list-category,
.vendor-card-kicker {
  color: var(--brand-teak);
  font-family: var(--brand-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading,
.category-heading,
.knowledge-section-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.section-heading h2,
.category-heading h2,
.knowledge-section-heading h2,
.about-intro h2,
.trust-section h2,
.wechat-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.section-heading p,
.category-heading p,
.knowledge-section-heading p,
.about-intro p:last-child {
  max-width: 720px;
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.85;
}

.view-all,
.text-link,
.natural-link,
.goods-archive-entry-link,
.goods-archive-list-link,
.vendor-card-link,
.merchant-link {
  position: relative;
  min-height: 42px;
  color: var(--brand-coffee);
  font-weight: 600;
  border-bottom-color: rgba(165, 111, 63, 0.36);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--brand-ease-out);
}

.btn,
.nav-cta,
.mobile-menu-cta,
.pill-button {
  border-radius: var(--brand-radius-sm);
  font-family: var(--brand-font-body);
  font-weight: 600;
  letter-spacing: 0.015em;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 150ms var(--brand-ease-out);
}

.btn:active,
.nav-cta:active,
.mobile-menu-cta:active,
.pill-button:active,
.vendor-filter-chip:active,
.good-things-filter-chip:active {
  transform: scale(0.975);
}

.btn-primary {
  color: #fffaf1;
  background: linear-gradient(145deg, #65704f, #4d583a);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(59, 70, 40, 0.22);
}

.btn-secondary {
  color: var(--brand-coffee);
  background: rgba(255, 248, 237, 0.82);
  border-color: rgba(165, 111, 63, 0.23);
  box-shadow: 0 10px 26px rgba(67, 45, 25, 0.06);
}

.btn-ghost {
  color: var(--brand-coffee);
  background: transparent;
  border-color: rgba(62, 43, 28, 0.2);
}

/* Header：更轻、更稳，避免模板化的厚重导航条。 */
.site-header,
.global-site-header,
.content-site-header {
  width: min(1240px, calc(100% - 48px));
  min-height: 78px;
  padding-block: 12px;
}

.site-header::before,
.global-site-header::before,
.content-site-header::before {
  inset: 0 -14px;
  background:
    linear-gradient(110deg, rgba(32, 24, 18, 0.97), rgba(48, 34, 24, 0.94)),
    rgba(32, 24, 18, 0.96);
  border: 1px solid rgba(255, 243, 224, 0.13);
  border-radius: 16px;
  box-shadow: 0 18px 52px rgba(24, 16, 10, 0.2);
  backdrop-filter: blur(18px) saturate(115%);
}

.brand {
  padding: 5px 9px 5px 7px;
  border-color: rgba(231, 204, 168, 0.48);
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(12, 8, 5, 0.16);
}

.brand-mark-image {
  width: 40px;
  height: 40px;
}

.brand-wording strong {
  font-family: var(--brand-font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.main-nav {
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 14.5px;
}

.main-nav > a,
.main-nav > .nav-dropdown > .nav-link {
  position: relative;
  padding-block: 10px;
}

.main-nav > a::before,
.main-nav > .nav-dropdown > .nav-link::before {
  position: absolute;
  right: 50%;
  bottom: 4px;
  left: 50%;
  height: 1px;
  content: "";
  background: rgba(231, 199, 153, 0.9);
  transition: right 180ms var(--brand-ease-out), left 180ms var(--brand-ease-out);
}

.nav-dropdown-menu {
  top: calc(100% + 10px);
  padding: 9px;
  background: rgba(251, 247, 240, 0.98);
  border-color: rgba(75, 52, 32, 0.14);
  border-radius: 12px;
  box-shadow: 0 22px 54px rgba(31, 21, 14, 0.2);
  transform: translate(-50%, -5px) scale(0.985);
  transform-origin: 50% 0;
  transition: opacity 180ms var(--brand-ease-out), transform 180ms var(--brand-ease-out);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  transform: translate(-50%, 0) scale(1);
}

.nav-cta {
  min-height: 44px;
  padding-inline: 21px;
  background: linear-gradient(145deg, #c18c54, #966238);
  box-shadow: 0 10px 24px rgba(8, 5, 3, 0.18);
}

/* 首页首屏：降低“左右两张卡片”感，突出品牌与空间影像。 */
.hero {
  position: relative;
  padding: clamp(124px, 10vw, 150px) 0 clamp(78px, 7vw, 100px);
  background:
    radial-gradient(circle at 78% 20%, rgba(173, 122, 72, 0.2), transparent 30rem),
    radial-gradient(circle at 18% 0%, rgba(255, 250, 241, 0.92), transparent 34rem),
    linear-gradient(135deg, #f9f3e9 0%, #efe2d0 56%, #e2ccb0 100%);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(250, 246, 239, 0.62), rgba(250, 246, 239, 0.06)),
    radial-gradient(circle at 82% 18%, rgba(93, 104, 71, 0.12), transparent 25rem);
}

.hero-inner {
  width: min(1240px, calc(100% - 56px));
  grid-template-columns: minmax(510px, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(34px, 4vw, 60px);
}

.hero-content,
.hero-media {
  min-height: clamp(520px, 43vw, 610px);
}

.hero-content {
  position: relative;
  padding: clamp(32px, 4.2vw, 58px) clamp(22px, 3.4vw, 46px) clamp(32px, 4vw, 52px) 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-content::before {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: -28px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(165, 111, 63, 0.7), transparent);
}

.hero .eyebrow {
  margin-bottom: 22px;
  color: var(--brand-olive);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero-hook {
  margin-top: 28px;
  color: #8d5d34;
  font-family: var(--brand-font-display);
  font-size: clamp(23px, 2.3vw, 31px);
  letter-spacing: -0.02em;
}

.hero-copy {
  max-width: 640px;
  color: #675c52;
  font-size: 16.5px;
  line-height: 1.95;
}

.hero-actions {
  gap: 12px;
  margin-top: 34px;
}

.hero-actions .btn {
  min-height: 56px;
  padding-inline: 24px;
}

.hero-media {
  isolation: isolate;
  overflow: hidden;
  background: #b88d64;
  border: 1px solid rgba(57, 40, 25, 0.16);
  border-radius: 26px 8px 26px 8px;
  box-shadow: 0 34px 90px rgba(48, 33, 20, 0.22);
}

.hero-media::before {
  position: absolute;
  inset: 14px;
  z-index: 2;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 247, 233, 0.26);
  border-radius: 18px 4px 18px 4px;
}

.hero-media .hero-image {
  transition: transform 260ms var(--brand-ease-out), filter 220ms ease;
}

.hero-media figcaption {
  right: 30px;
  bottom: 25px;
  left: 30px;
  color: rgba(255, 251, 244, 0.88);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* 首页内容层级与通用卡片。 */
.value-section {
  padding-top: clamp(74px, 8vw, 102px);
  padding-bottom: clamp(66px, 7vw, 92px);
}

.about-intro {
  max-width: 780px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.value-grid {
  gap: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.value-card {
  min-height: 190px;
  padding: clamp(26px, 3vw, 34px);
  background: rgba(255, 251, 245, 0.68);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  box-shadow: var(--brand-shadow-soft);
  transition: transform 220ms var(--brand-ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.value-card:last-child {
  border-right: 1px solid var(--brand-line);
}

.line-icon {
  box-shadow: inset 0 0 0 1px rgba(255, 250, 242, 0.22), 0 12px 28px rgba(57, 40, 25, 0.12);
}

.knowledge-topic-card,
.goods-archive-home-card,
.vendor-direction-card,
.candidate-library-card,
.apply-info-card,
.article-card,
.case-card,
.knowledge-feature-card,
.knowledge-topic-group,
.knowledge-faq-item,
.goods-archive-list-card,
.vendor-card,
.yuxi-visual-card {
  border-color: var(--brand-line);
  border-radius: var(--brand-radius);
  box-shadow: 0 12px 38px rgba(53, 36, 22, 0.065);
  transition:
    transform 220ms var(--brand-ease-out),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.knowledge-topic-card.feature {
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 98, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(255, 251, 244, 0.98), rgba(242, 231, 214, 0.94));
  border-color: rgba(165, 111, 63, 0.22);
}

.knowledge-topic-card h3,
.good-item-card h3,
.merchant-card h3,
.trust-grid h3,
.vendor-card h3,
.article-card h2,
.case-card h2 {
  letter-spacing: -0.025em;
}

.merchant-card {
  border-radius: 18px 6px 18px 6px;
  box-shadow: 0 18px 48px rgba(39, 25, 15, 0.15);
}

.merchant-overlay {
  background: linear-gradient(180deg, rgba(24, 17, 12, 0.08) 12%, rgba(28, 19, 13, 0.9) 88%);
}

.good-item-visual {
  border-radius: 14px 4px 14px 4px;
}

.trust-section {
  width: min(1200px, calc(100% - 56px));
  padding: clamp(42px, 5vw, 60px);
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 98, 0.13), transparent 22rem),
    rgba(255, 251, 245, 0.7);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow-soft);
}

.trust-grid article {
  background: rgba(255, 255, 255, 0.36);
  border-color: rgba(62, 43, 28, 0.1);
}

.wechat-section {
  margin-top: clamp(30px, 5vw, 62px);
  padding: clamp(42px, 6vw, 72px);
  background:
    linear-gradient(118deg, rgba(31, 23, 17, 0.98), rgba(55, 39, 27, 0.94) 58%, rgba(83, 70, 48, 0.88)),
    url("./assets/images/wechat-section-bg.jpg") center / cover no-repeat;
  border-radius: 28px 8px 28px 8px;
  box-shadow: 0 30px 80px rgba(33, 23, 15, 0.2);
}

.qr-panel {
  border-radius: 20px 6px 20px 6px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.qr-code-image,
.mini-qr {
  background: #fff;
  border-color: rgba(199, 154, 98, 0.34);
}

/* 内容页：统一为有呼吸感的品牌编辑页面。 */
.content-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(199, 154, 98, 0.11), transparent 28rem),
    linear-gradient(180deg, #faf6ef 0%, #f2eadf 62%, #faf7f1 100%);
}

.content-main,
.article-layout,
.solution-topic-layout,
.vendor-guide-layout,
.vendor-library-layout,
.vendor-apply-layout,
.project-gallery-layout,
.yuxi-brand-layout {
  width: min(1120px, calc(100% - 56px));
  margin-bottom: clamp(78px, 9vw, 118px);
}

.breadcrumb {
  min-height: 42px;
  margin-bottom: 18px;
  color: #776b60;
  font-size: 13px;
  letter-spacing: 0.025em;
}

.breadcrumb a {
  color: var(--brand-teak);
}

.page-hero,
.content-hero-panel,
.article-hero,
.solution-topic-hero {
  min-height: clamp(310px, 32vw, 410px);
  align-content: center;
  padding: clamp(44px, 7vw, 78px);
  background:
    radial-gradient(circle at 88% 12%, rgba(199, 154, 98, 0.22), transparent 20rem),
    linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(236, 222, 201, 0.9));
  border: 1px solid var(--brand-line);
  border-radius: 26px 8px 26px 8px;
  box-shadow: var(--brand-shadow-soft);
}

.page-hero::after,
.content-hero-panel::after,
.article-hero::after,
.solution-topic-hero::after {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 74px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(165, 111, 63, 0.64));
}

.page-hero h1,
.content-hero-panel h1,
.article-hero h1,
.solution-topic-hero h1 {
  max-width: 880px;
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.page-hero p,
.content-lead,
.article-hero p:last-child,
.solution-topic-hero p {
  max-width: 760px;
  color: var(--brand-muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.9;
}

.content-body,
.article-section,
.article-note,
.case-section,
.case-boundary,
.article-boundary,
.solution-topic-section,
.related-links,
.content-cta,
.form-panel,
.vendor-guide-section,
.vendor-library-section,
.vendor-apply-section,
.yuxi-story-section {
  border-color: var(--brand-line);
  border-radius: var(--brand-radius);
  box-shadow: 0 14px 42px rgba(53, 36, 22, 0.055);
}

.content-body,
.article-section,
.case-section,
.solution-topic-section,
.yuxi-story-section {
  padding: clamp(30px, 4.4vw, 48px);
  background: rgba(255, 252, 247, 0.76);
}

.article-layout {
  width: min(900px, calc(100% - 56px));
}

.article-section h2,
.content-body h2,
.case-section h2,
.solution-topic-section h2,
.yuxi-story-section h2 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 16px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.3;
}

.article-section h2::after,
.content-body h2::after,
.case-section h2::after,
.solution-topic-section h2::after,
.yuxi-story-section h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--brand-teak), rgba(165, 111, 63, 0));
}

.article-section p,
.content-body p,
.case-section p,
.solution-topic-section p,
.yuxi-story-section p {
  color: #5f554c;
  font-size: 16.5px;
  line-height: 2;
}

.article-section p + p,
.content-body p + p,
.case-section p + p,
.solution-topic-section p + p,
.yuxi-story-section p + p {
  margin-top: 1.15em;
}

.article-note,
.article-boundary,
.case-boundary,
.soft-notice {
  color: #665e55;
  background: linear-gradient(135deg, rgba(93, 104, 71, 0.1), rgba(255, 251, 245, 0.74));
  border-left: 3px solid rgba(93, 104, 71, 0.55);
  box-shadow: none;
}

.related-links,
.content-cta {
  background: rgba(255, 251, 245, 0.62);
}

.related-links a,
.related-mini-grid a,
.knowledge-topic-link,
.good-reference-list a {
  border-radius: var(--brand-radius-sm);
}

.form-field input,
.form-field select,
.form-field textarea,
.form-summary textarea {
  min-height: 50px;
  color: var(--brand-ink);
  background: rgba(255, 253, 249, 0.9);
  border-color: var(--brand-line-strong);
  border-radius: var(--brand-radius-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-summary textarea:focus {
  background: #fffdfa;
  border-color: rgba(165, 111, 63, 0.64);
  box-shadow: 0 0 0 4px rgba(165, 111, 63, 0.1);
  outline: 0;
}

.good-things-filter,
.vendor-filter {
  scrollbar-width: none;
}

.good-things-filter::-webkit-scrollbar,
.vendor-filter::-webkit-scrollbar {
  display: none;
}

.good-things-filter-chip,
.vendor-filter-chip {
  min-height: 44px;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 150ms var(--brand-ease-out);
}

.good-things-filter-chip.is-active,
.vendor-filter-chip.is-active {
  box-shadow: 0 10px 24px rgba(75, 53, 32, 0.14);
}

/* Footer：压低装饰、加强信息分组与二维码留白。 */
.site-footer,
.content-site-footer {
  color: rgba(255, 250, 242, 0.82);
  background:
    radial-gradient(circle at 12% 0%, rgba(180, 127, 75, 0.16), transparent 24rem),
    linear-gradient(135deg, #201812, #332419 62%, #292015);
  border-top: 1px solid rgba(255, 241, 220, 0.12);
}

.footer-inner {
  width: min(1200px, calc(100% - 56px));
  padding-block: clamp(42px, 5vw, 62px);
}

.footer-slogan {
  color: #fff8ed;
  font-family: var(--brand-font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.footer-link-groups a {
  min-height: 36px;
  transition: color 180ms ease, transform 180ms var(--brand-ease-out);
}

/* ========== v1.30-alpha.1：柚木品牌架构首页组件 ========== */
.main-nav {
  gap: clamp(11px, 1.35vw, 22px);
  white-space: nowrap;
}

.nav-cta {
  padding-inline: 18px;
  white-space: nowrap;
}

.home-aesthetics-section,
.home-ecosystem-section {
  position: relative;
}

.home-aesthetics-section::before {
  position: absolute;
  inset: clamp(54px, 7vw, 88px) 0 auto;
  z-index: -1;
  height: min(420px, 56%);
  content: "";
  background: linear-gradient(135deg, rgba(170, 120, 72, 0.1), rgba(93, 104, 71, 0.08));
  border-radius: 28px 8px 28px 8px;
}

.aesthetics-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.aesthetic-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  color: #fffaf2;
  background:
    linear-gradient(180deg, rgba(28, 20, 14, 0.08), rgba(27, 19, 13, 0.9)),
    url("./assets/images/hero-teak-lifestyle.jpg") center / cover;
  border: 1px solid rgba(255, 244, 226, 0.2);
  border-radius: 20px 6px 20px 6px;
  box-shadow: 0 22px 54px rgba(42, 29, 18, 0.14);
  transition: transform 220ms var(--brand-ease-out), box-shadow 220ms ease;
}

.aesthetic-card:nth-child(1),
.aesthetic-card:nth-child(2) {
  grid-column: span 6;
}

.aesthetic-card:nth-child(n + 3) {
  grid-column: span 4;
  min-height: 230px;
}

.aesthetic-card span {
  position: absolute;
  top: 24px;
  left: 26px;
  color: rgba(255, 247, 235, 0.7);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.aesthetic-card h3 {
  margin-bottom: 10px;
  color: #fffaf2;
  font-family: var(--brand-font-display);
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -0.03em;
}

.aesthetic-card p {
  max-width: 36em;
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  line-height: 1.75;
}

.aesthetic-living {
  background:
    linear-gradient(180deg, rgba(28, 20, 14, 0.06), rgba(27, 19, 13, 0.88)),
    url("./assets/images/product-teak-table.jpg") center 45% / cover;
}

.aesthetic-floor {
  background:
    linear-gradient(180deg, rgba(28, 20, 14, 0.08), rgba(27, 19, 13, 0.9)),
    url("./assets/images/knowledge-teak-grain.jpg") center / cover;
}

.aesthetic-outdoor {
  background:
    linear-gradient(180deg, rgba(28, 20, 14, 0.08), rgba(27, 19, 13, 0.9)),
    url("./assets/images/knowledge-outdoor-wood.jpg") center / cover;
}

.aesthetic-whole {
  background:
    linear-gradient(180deg, rgba(28, 20, 14, 0.08), rgba(27, 19, 13, 0.9)),
    url("./assets/images/vendor-craft-sample.jpg") center / cover;
}

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

.ecosystem-feature {
  min-height: 260px;
  padding: clamp(28px, 3.2vw, 40px);
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 132, 79, 0.15), transparent 13rem),
    rgba(255, 251, 245, 0.74);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  box-shadow: var(--brand-shadow-soft);
}

.ecosystem-feature h3 {
  margin: 20px 0 12px;
  font-family: var(--brand-font-display);
  font-size: clamp(23px, 2.4vw, 30px);
}

.ecosystem-feature p {
  min-height: 6.4em;
  color: #6a5f55;
  line-height: 1.85;
}

.aesthetics-entry-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.aesthetics-entry-grid .case-card {
  min-height: 250px;
}

.case-concept-heading {
  margin-top: clamp(44px, 6vw, 72px);
}

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

@media (hover: hover) and (pointer: fine) {
  .aesthetic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 66px rgba(42, 29, 18, 0.2);
  }
}

@media (max-width: 900px) {
  .aesthetic-card,
  .aesthetic-card:nth-child(1),
  .aesthetic-card:nth-child(2),
  .aesthetic-card:nth-child(n + 3) {
    grid-column: span 12;
    min-height: 230px;
  }

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

  .aesthetics-entry-grid,
  .ecosystem-cooperation-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-feature {
    min-height: 0;
  }

  .ecosystem-feature p {
    min-height: 0;
  }
}

.footer-qr {
  padding: 12px 8px;
  background: rgba(255, 250, 242, 0.06);
  border: 1px solid rgba(255, 250, 242, 0.1);
  border-radius: 14px;
}

.content-footer-inner {
  width: min(1120px, calc(100% - 56px));
  padding-block: 30px;
}

@media (max-width: 900px) {
  .footer-brand > img {
    display: block;
    max-width: 100%;
    height: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .main-nav > a:hover::before,
  .main-nav > .nav-dropdown > .nav-link:hover::before,
  .main-nav > .nav-dropdown:hover > .nav-link::before {
    right: 0;
    left: 0;
  }

  .btn:hover,
  .nav-cta:hover,
  .mobile-menu-cta:hover,
  .pill-button:hover {
    transform: translateY(-2px);
  }

  .btn-primary:hover {
    box-shadow: 0 18px 38px rgba(59, 70, 40, 0.28);
  }

  .value-card:hover,
  .knowledge-topic-card:hover,
  .goods-archive-home-card:hover,
  .article-card:hover,
  .case-card:hover,
  .knowledge-feature-card:hover,
  .knowledge-topic-link:hover,
  .goods-archive-list-card:hover,
  .vendor-card:hover,
  .yuxi-visual-card:hover {
    transform: translateY(-4px);
    border-color: rgba(165, 111, 63, 0.28);
    box-shadow: var(--brand-shadow-lift);
  }

  .merchant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 72px rgba(39, 25, 15, 0.23);
  }

  .merchant-card:hover img,
  .hero-media:hover .hero-image {
    transform: scale(1.025);
  }

  .view-all:hover,
  .text-link:hover,
  .natural-link:hover,
  .goods-archive-entry-link:hover,
  .goods-archive-list-link:hover,
  .vendor-card-link:hover,
  .merchant-link:hover,
  .footer-link-groups a:hover {
    transform: translateX(2px);
  }
}

@media (hover: none) {
  .value-card:hover,
  .knowledge-card:hover,
  .knowledge-topic-card:hover,
  .goods-card:hover,
  .goods-archive-home-card:hover,
  .merchant-card:hover,
  .article-card:hover,
  .case-card:hover,
  .knowledge-feature-card:hover,
  .knowledge-topic-link:hover,
  .goods-archive-list-card:hover,
  .vendor-card:hover,
  .yuxi-visual-card:hover {
    transform: none;
  }

  .knowledge-card:hover .card-image img,
  .goods-card:hover .goods-image img,
  .merchant-card:hover > img,
  .hero-media:hover .hero-image {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header,
  .global-site-header,
  .content-site-header {
    width: min(100% - 32px, 1180px);
  }

  .hero-inner {
    grid-template-columns: minmax(470px, 1fr) minmax(360px, 0.9fr);
    width: min(100% - 40px, 1120px);
  }

  .hero h1 {
    font-size: clamp(44px, 5.3vw, 62px);
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 112px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content,
  .hero-media {
    min-height: auto;
  }

  .hero-content {
    padding: 42px 24px 18px;
  }

  .hero-content::before {
    top: 36px;
    bottom: auto;
    left: 24px;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, rgba(165, 111, 63, 0.75), transparent);
  }

  .hero-media .hero-image {
    height: 100%;
    min-height: 0;
  }

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

  .value-card {
    border-right: 1px solid var(--brand-line);
  }

  .trust-section,
  .wechat-section {
    width: min(100% - 40px, 1120px);
  }

  .footer-inner {
    width: min(100% - 40px, 1120px);
  }
}

@media (max-width: 900px) {
  .site-header::before,
  .global-site-header::before,
  .content-site-header::before {
    inset-inline: -6px;
    border-radius: 14px;
  }

  .menu-toggle {
    border-radius: 10px;
  }

  .mobile-menu-panel {
    width: min(88vw, 390px);
    color: var(--brand-ink);
    background:
      radial-gradient(circle at 100% 0%, rgba(199, 154, 98, 0.15), transparent 18rem),
      #fbf7f0;
    box-shadow: -24px 0 70px rgba(25, 17, 11, 0.22);
    transform-origin: 100% 0;
  }

  .mobile-nav a,
  .mobile-nav summary {
    min-height: 48px;
  }

  .content-main,
  .article-layout,
  .solution-topic-layout,
  .vendor-guide-layout,
  .vendor-library-layout,
  .vendor-apply-layout,
  .project-gallery-layout,
  .yuxi-brand-layout {
    width: min(100% - 36px, 760px);
  }

  .page-hero,
  .content-hero-panel,
  .article-hero,
  .solution-topic-hero {
    padding: 42px 32px;
    border-radius: 20px 6px 20px 6px;
  }

  .good-things-filter,
  .vendor-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-inline: -18px;
    padding-inline: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }

  .good-things-filter-chip,
  .vendor-filter-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .section {
    width: min(100% - 28px, 560px);
    padding-block: 58px;
  }

  .section-heading h2,
  .category-heading h2,
  .knowledge-section-heading h2,
  .about-intro h2,
  .trust-section h2,
  .wechat-section h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .hero {
    padding: 98px 0 58px;
  }

  .hero-inner {
    width: min(100% - 28px, 560px);
    gap: 22px;
  }

  .hero-content {
    padding: 38px 10px 10px;
  }

  .hero-content::before {
    left: 10px;
  }

  .hero .eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(38px, 11.5vw, 48px);
    line-height: 1.08;
  }

  .hero-hook {
    margin-top: 22px;
    font-size: 23px;
  }

  .hero-copy {
    font-size: 15.5px;
    line-height: 1.9;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .btn {
    width: calc(50% - 5px);
    min-height: 52px;
    padding-inline: 14px;
  }

  .hero-actions .btn:first-child {
    width: 100%;
  }

  .hero-media {
    aspect-ratio: 5 / 4;
    min-height: 320px;
    border-radius: 20px 6px 20px 6px;
  }

  .hero-media .hero-image {
    min-height: 0;
  }

  .hero-media figcaption {
    right: 22px;
    bottom: 18px;
    left: 22px;
    font-size: 12px;
    line-height: 1.6;
  }

  .value-card {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 24px 20px;
  }

  .line-icon {
    width: 62px;
    height: 62px;
  }

  .trust-section,
  .wechat-section {
    width: min(100% - 28px, 560px);
    padding: 30px 22px;
    border-radius: 20px 6px 20px 6px;
  }

  .content-main,
  .article-layout,
  .solution-topic-layout,
  .vendor-guide-layout,
  .vendor-library-layout,
  .vendor-apply-layout,
  .project-gallery-layout,
  .yuxi-brand-layout {
    width: min(100% - 28px, 560px);
  }

  .page-hero,
  .content-hero-panel,
  .article-hero,
  .solution-topic-hero {
    min-height: 270px;
    padding: 34px 24px;
  }

  .page-hero::after,
  .content-hero-panel::after,
  .article-hero::after,
  .solution-topic-hero::after {
    top: 24px;
    right: 24px;
    width: 44px;
  }

  .page-hero h1,
  .content-hero-panel h1,
  .article-hero h1,
  .solution-topic-hero h1 {
    font-size: clamp(36px, 10.5vw, 46px);
  }

  .content-body,
  .article-section,
  .case-section,
  .solution-topic-section,
  .yuxi-story-section {
    padding: 26px 22px;
  }

  .article-section p,
  .content-body p,
  .case-section p,
  .solution-topic-section p,
  .yuxi-story-section p {
    font-size: 16px;
    line-height: 1.94;
  }

  .content-cta,
  .form-actions {
    align-items: stretch;
  }

  .content-cta .btn,
  .form-actions .btn {
    width: 100%;
  }

  .footer-inner,
  .content-footer-inner {
    width: min(100% - 32px, 560px);
  }
}

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

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

/* 长阅读页控制行长，避免正文横向铺满内容画布。 */
.content-main:has(> .content-hero-panel),
.content-main:has(> .article-hero) {
  width: min(900px, calc(100% - 56px));
}

@media (max-width: 640px) {
  .content-main:has(> .content-hero-panel),
  .content-main:has(> .article-hero) {
    width: min(100% - 28px, 560px);
  }

  .hero-content {
    min-width: 0;
    width: 100%;
    padding-right: 0;
  }

  .hero h1,
  .hero h1 span,
  .hero-hook,
  .hero-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .hero-actions .btn,
  .hero-actions .btn:first-child {
    width: 100%;
    min-width: 0;
  }
}

/* ========== v1.30-alpha.1.1：品牌语言与前台体验精修 ========== */
.value-next-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(24px, 3.5vw, 42px);
  padding: 14px 16px;
  overflow-x: auto;
  color: var(--brand-muted);
  background: rgba(255, 251, 245, 0.66);
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(53, 36, 22, 0.05);
}

.value-next-links > span:first-child {
  flex: 0 0 auto;
  padding-inline: 8px;
  color: var(--brand-teak);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.value-next-links a {
  flex: 0 0 auto;
  padding: 9px 14px;
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(71, 49, 31, 0.09);
  border-radius: 999px;
}

.value-next-links .value-next-all {
  margin-left: auto;
  color: #fffaf2;
  background: var(--brand-olive);
  border-color: transparent;
}

.knowledge-hero,
.case-hero,
.solution-index-hero,
.vendor-brand-hall .vendor-guide-hero,
.cooperation-hero {
  isolation: isolate;
  overflow: hidden;
  background-position: center, 76% center;
  background-repeat: no-repeat;
  background-size: cover;
}

.knowledge-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 251, 245, 0.99) 0%, rgba(247, 237, 224, 0.96) 50%, rgba(224, 192, 153, 0.25) 76%, rgba(34, 25, 18, 0.18) 100%),
    url("./assets/images/knowledge-teak-grain.jpg");
}

.case-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 251, 245, 0.99) 0%, rgba(247, 237, 224, 0.95) 52%, rgba(208, 171, 128, 0.2) 75%, rgba(34, 25, 18, 0.22) 100%),
    url("./assets/images/hero-teak-lifestyle.jpg");
}

.solution-index-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 251, 245, 0.99) 0%, rgba(247, 237, 224, 0.95) 52%, rgba(188, 149, 104, 0.18) 75%, rgba(34, 25, 18, 0.24) 100%),
    url("./assets/images/product-teak-table.jpg");
}

.vendor-brand-hall .vendor-guide-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 251, 245, 0.99) 0%, rgba(247, 237, 224, 0.95) 52%, rgba(172, 131, 90, 0.16) 75%, rgba(27, 20, 14, 0.3) 100%),
    url("./assets/images/vendor-craft-sample.jpg");
}

.cooperation-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 251, 245, 0.99) 0%, rgba(247, 237, 224, 0.95) 52%, rgba(171, 132, 91, 0.18) 75%, rgba(28, 21, 15, 0.26) 100%),
    url("./assets/images/product-teak-chair.jpg");
}

.knowledge-hero > *,
.case-hero > *,
.solution-index-hero > *,
.vendor-brand-hall .vendor-guide-hero > *,
.cooperation-hero > * {
  position: relative;
  z-index: 1;
  max-width: 62%;
}

.aesthetics-entry-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.aesthetics-entry-grid .case-card {
  grid-column: span 4;
  min-height: 260px;
  align-content: end;
  overflow: hidden;
  color: #fffaf2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: rgba(255, 244, 226, 0.18);
  box-shadow: 0 22px 54px rgba(42, 29, 18, 0.15);
}

.aesthetics-entry-grid .case-card:nth-child(1),
.aesthetics-entry-grid .case-card:nth-child(2) {
  grid-column: span 6;
  min-height: 300px;
}

.aesthetics-entry-grid .case-card:nth-child(1) {
  background-image: linear-gradient(180deg, rgba(22, 17, 12, 0.04), rgba(24, 17, 12, 0.9)), url("./assets/images/hero-teak-lifestyle.jpg");
}

.aesthetics-entry-grid .case-card:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(22, 17, 12, 0.04), rgba(24, 17, 12, 0.9)), url("./assets/images/product-teak-chair.jpg");
}

.aesthetics-entry-grid .case-card:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(22, 17, 12, 0.02), rgba(24, 17, 12, 0.88)), url("./assets/images/knowledge-teak-grain.jpg");
}

.aesthetics-entry-grid .case-card:nth-child(4) {
  background-image: linear-gradient(180deg, rgba(22, 17, 12, 0.04), rgba(24, 17, 12, 0.9)), url("./assets/images/product-teak-table.jpg");
}

.aesthetics-entry-grid .case-card:nth-child(5) {
  background-image: linear-gradient(180deg, rgba(22, 17, 12, 0.04), rgba(24, 17, 12, 0.9)), url("./assets/images/vendor-craft-sample.jpg");
}

.aesthetics-entry-grid .case-card span,
.aesthetics-entry-grid .case-card h2,
.aesthetics-entry-grid .case-card p {
  color: inherit;
}

.aesthetics-entry-grid .case-card span {
  background: rgba(255, 250, 242, 0.16);
  border-color: rgba(255, 250, 242, 0.18);
}

.home-good-things-grid .good-item-visual {
  min-height: 142px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-good-things-grid .tone-furniture .good-item-visual {
  background-image: linear-gradient(180deg, rgba(32, 23, 16, 0.04), rgba(32, 23, 16, 0.36)), url("./assets/images/product-teak-table.jpg");
}

.home-good-things-grid .tone-flooring .good-item-visual {
  background-image: linear-gradient(180deg, rgba(32, 23, 16, 0.03), rgba(32, 23, 16, 0.3)), url("./assets/images/knowledge-teak-grain.jpg");
}

.home-good-things-grid .tone-whole-decoration .good-item-visual {
  background-image: linear-gradient(180deg, rgba(32, 23, 16, 0.03), rgba(32, 23, 16, 0.36)), url("./assets/images/vendor-craft-sample.jpg");
}

.home-good-things-grid .tone-outdoor .good-item-visual {
  background-image: linear-gradient(180deg, rgba(32, 23, 16, 0.03), rgba(32, 23, 16, 0.34)), url("./assets/images/hero-teak-lifestyle.jpg");
}

.home-good-things-grid .tone-collection .good-item-visual {
  background-image: linear-gradient(180deg, rgba(32, 23, 16, 0.03), rgba(32, 23, 16, 0.42)), url("./assets/images/vendor-showroom-sample.jpg");
}

.home-good-things-grid .tone-creative .good-item-visual {
  background-image: linear-gradient(180deg, rgba(32, 23, 16, 0.03), rgba(32, 23, 16, 0.34)), url("./assets/images/product-teak-chair.jpg");
}

@media (max-width: 900px) {
  .knowledge-hero,
  .case-hero,
  .solution-index-hero,
  .vendor-brand-hall .vendor-guide-hero,
  .cooperation-hero {
    background-position: center;
  }

  .knowledge-hero > *,
  .case-hero > *,
  .solution-index-hero > *,
  .vendor-brand-hall .vendor-guide-hero > *,
  .cooperation-hero > * {
    max-width: 100%;
  }

  .aesthetics-entry-grid .case-card,
  .aesthetics-entry-grid .case-card:nth-child(1),
  .aesthetics-entry-grid .case-card:nth-child(2) {
    grid-column: span 12;
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  .hero-media {
    width: 100%;
    min-width: 0;
  }

  .value-next-links {
    margin-inline: -2px;
    padding: 11px 12px;
    border-radius: 18px;
    scroll-snap-type: x proximity;
  }

  .value-next-links a,
  .value-next-links > span:first-child {
    scroll-snap-align: start;
  }

  .value-next-links .value-next-all {
    margin-left: 0;
  }

  .knowledge-hero,
  .case-hero,
  .solution-index-hero,
  .vendor-brand-hall .vendor-guide-hero,
  .cooperation-hero {
    background-image: linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(235, 218, 194, 0.9));
  }

  .home-good-things-grid .good-item-visual {
    min-height: 118px;
  }
}

/* ========== v1.30-alpha.1.2：首页视觉语言精修 ========== */
/* “为什么是柚木”以品牌观点呈现，弱化功能卡片和胶囊入口。 */
.value-viewpoints {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 58px);
}

.value-viewpoints .value-card {
  position: relative;
  display: block;
  min-height: 0;
  padding: clamp(24px, 3vw, 34px) 0 8px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(91, 63, 35, 0.24);
  border-radius: 0;
  box-shadow: none;
}

.value-viewpoints .value-card:last-child {
  border-right: 0;
}

.value-viewpoint-number {
  display: block;
  margin-bottom: clamp(34px, 4.5vw, 58px);
  color: rgba(91, 63, 35, 0.54);
  font-family: var(--brand-font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.value-viewpoints .value-card h3 {
  margin-bottom: 14px;
  font-family: var(--brand-font-display);
  font-size: clamp(25px, 2.5vw, 32px);
  letter-spacing: -0.03em;
}

.value-viewpoints .value-card p {
  max-width: 24em;
  margin: 0;
  color: var(--brand-muted);
  font-size: 15.5px;
  line-height: 1.88;
}

.value-next-links {
  gap: clamp(18px, 2.5vw, 34px);
  margin-top: clamp(34px, 4.5vw, 54px);
  padding: 18px 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
  border-radius: 0;
  box-shadow: none;
}

.value-next-links > span:first-child,
.value-next-links a,
.value-next-links .value-next-all {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.value-next-links a {
  color: var(--brand-muted);
}

.value-next-links a:hover,
.value-next-links a:focus-visible,
.value-next-links .value-next-all {
  color: var(--brand-ink);
}

.value-next-links .value-next-all {
  border-bottom: 1px solid rgba(91, 63, 35, 0.34);
}

/* 柚木生活：用一大三小的生活主题替代六张平权产品卡片。 */
.living-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(178px, 1fr));
  gap: 18px;
  min-height: 610px;
}

.living-story {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  min-height: 178px;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  color: #fffaf2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(255, 244, 226, 0.18);
  border-radius: 22px 7px 22px 7px;
  box-shadow: 0 24px 58px rgba(42, 29, 18, 0.15);
  transition: transform 200ms var(--brand-ease-out), box-shadow 200ms ease;
}

.living-story::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(26, 19, 14, 0.52);
}

.living-story-feature {
  grid-row: 1 / -1;
  grid-column: span 7;
  background-image: url("./assets/images/product-teak-chair.jpg");
  background-position: center 58%;
}

.living-story-feature::before {
  background: rgba(26, 19, 14, 0.38);
}

.living-story-object,
.living-story-time,
.living-story-outdoor {
  grid-column: span 5;
}

.living-story-object {
  background-image: url("./assets/images/product-teak-table.jpg");
  background-position: center 60%;
}

.living-story-time {
  background-image: url("./assets/images/vendor-showroom-sample.jpg");
}

.living-story-outdoor {
  background-image: url("./assets/images/knowledge-outdoor-wood.jpg");
}

.living-story-kicker {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.living-story h3 {
  max-width: 16em;
  margin: 0;
  color: inherit;
  font-family: var(--brand-font-display);
  font-size: clamp(23px, 2.8vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.living-story:not(.living-story-feature) h3 {
  font-size: clamp(21px, 2.2vw, 29px);
}

.living-story p {
  max-width: 34em;
  margin: 12px 0 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: 14px;
  line-height: 1.72;
}

.living-story:not(.living-story-feature) p {
  max-width: 28em;
  margin-top: 8px;
}

.living-secondary-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  margin-top: 20px;
  padding-top: 18px;
  color: var(--brand-muted);
  border-top: 1px solid var(--brand-line);
}

.living-secondary-links > span {
  color: var(--brand-teak);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.living-secondary-links a {
  color: var(--brand-muted);
  border-bottom: 1px solid transparent;
}

.living-secondary-links a:hover,
.living-secondary-links a:focus-visible {
  color: var(--brand-ink);
  border-bottom-color: rgba(91, 63, 35, 0.3);
}

/* 品牌发现与生态连接承担不同角色，避免再次出现三张同构白卡。 */
.brand-connection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: stretch;
}

.brand-discovery-panel,
.ecosystem-connection-panel {
  position: relative;
  min-width: 0;
}

.brand-discovery-panel {
  isolation: isolate;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(32px, 4.5vw, 58px);
  overflow: hidden;
  color: #fffaf2;
  background: url("./assets/images/vendor-craft-sample.jpg") center / cover no-repeat;
  border-radius: 24px 8px 24px 8px;
}

.brand-discovery-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(30, 22, 16, 0.64);
}

.brand-discovery-panel h3,
.ecosystem-connection-panel h3 {
  margin: 0 0 16px;
  font-family: var(--brand-font-display);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.brand-discovery-panel h3 {
  color: inherit;
}

.brand-discovery-panel > div > p:not(.eyebrow) {
  max-width: 38em;
  color: rgba(255, 250, 242, 0.82);
  font-size: 16px;
  line-height: 1.82;
}

.brand-panel-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 26px;
}

.brand-panel-links a {
  color: #fffaf2;
}

.brand-panel-links .text-link {
  min-height: 46px;
  padding: 0 19px;
  color: var(--brand-ink);
  background: #fffaf2;
  border-radius: 999px;
}

.brand-discovery-panel small {
  max-width: 52em;
  margin-top: 46px;
  color: rgba(255, 250, 242, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.ecosystem-connection-panel {
  align-content: center;
  padding: clamp(24px, 3.5vw, 44px) 0 clamp(24px, 3.5vw, 44px) clamp(28px, 4vw, 54px);
  border-left: 1px solid var(--brand-line-strong);
}

.ecosystem-connection-panel h3 {
  color: var(--brand-ink);
}

.ecosystem-connection-panel > p:not(.eyebrow) {
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.84;
}

.ecosystem-connection-panel ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  color: var(--brand-ink);
  list-style: none;
}

.ecosystem-connection-panel li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--brand-line);
}

/* 咨询区作为自然收口，缩短高度并保持二维码可扫描。 */
.wechat-section {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 340px);
  gap: clamp(26px, 3.5vw, 42px);
  padding: clamp(32px, 4vw, 46px);
}

.wechat-section h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.wechat-copy > p:not(.eyebrow):not(.wechat-hook) {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.78;
}

.benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 20px;
}

.benefits li {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.55;
}

.qr-panel {
  max-width: 340px;
  padding: 20px;
  gap: 7px;
}

.qr-brand-mark {
  width: 48px;
  height: 48px;
}

.qr-code-image {
  width: 204px;
  height: 204px;
  margin-bottom: 8px;
  padding: 8px;
}

.qr-panel h3 {
  font-size: clamp(20px, 1.8vw, 24px);
}

.qr-panel p {
  font-size: 13.5px;
  line-height: 1.58;
}

@media (hover: hover) and (pointer: fine) {
  .living-story:hover,
  .living-story:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 30px 66px rgba(42, 29, 18, 0.2);
  }
}

@media (max-width: 900px) {
  .value-viewpoints {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .value-viewpoint-number {
    margin-bottom: 24px;
  }

  .living-editorial-grid {
    grid-template-rows: none;
    min-height: 0;
  }

  .living-story-feature {
    grid-column: span 12;
    grid-row: auto;
    min-height: 360px;
  }

  .living-story-object,
  .living-story-time {
    grid-column: span 6;
    min-height: 230px;
  }

  .living-story-outdoor {
    grid-column: span 12;
    min-height: 250px;
  }

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

  .brand-discovery-panel {
    min-height: 390px;
  }

  .ecosystem-connection-panel {
    padding: 32px 0 0;
    border-top: 1px solid var(--brand-line-strong);
    border-left: 0;
  }

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

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

@media (max-width: 640px) {
  .value-viewpoints .value-card {
    padding-top: 22px;
  }

  .value-next-links {
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-inline: 0;
    padding: 16px 0;
    overflow: visible;
    border-radius: 0;
  }

  .value-next-links .value-next-all {
    margin-left: 0;
  }

  .living-editorial-grid {
    gap: 14px;
  }

  .living-story-feature,
  .living-story-object,
  .living-story-time,
  .living-story-outdoor {
    grid-column: span 12;
    min-height: 220px;
    padding: 24px;
  }

  .living-story-feature {
    min-height: 340px;
  }

  .living-story p {
    font-size: 13.5px;
  }

  .living-secondary-links {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .living-secondary-links > span {
    width: 100%;
  }

  .brand-discovery-panel {
    min-height: 400px;
    padding: 28px 24px;
  }

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

  .brand-discovery-panel small {
    margin-top: 38px;
  }

  .ecosystem-connection-panel {
    padding-top: 28px;
  }

  .wechat-section {
    gap: 24px;
    padding: 28px 20px;
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .qr-panel {
    padding: 18px 14px;
  }

  .qr-code-image {
    width: 190px;
    height: 190px;
  }
}

/* ========== v1.30-alpha.2-phase.1：四类详情页编辑模板试点 ========== */
/* 所有规则以 detail-editorial 为作用域，不触及首页、栏目首页与未迁移详情页。 */
.detail-editorial {
  --detail-paper: #f6f0e7;
  --detail-paper-deep: #ebe0d2;
  --detail-ink: #2d2118;
  --detail-muted: #73665b;
  --detail-line: rgba(75, 53, 36, 0.2);
  background: var(--detail-paper);
}

.detail-editorial .breadcrumb {
  margin-bottom: clamp(24px, 4vw, 42px);
  color: var(--detail-muted);
}

.detail-editorial .detail-consult,
.detail-editorial .content-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: clamp(42px, 6vw, 72px);
  padding: 26px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-editorial .detail-consult p {
  max-width: 42em;
  margin: 0;
  color: var(--detail-muted);
  line-height: 1.8;
}

.detail-editorial .detail-back-link {
  color: var(--detail-muted);
  border-bottom: 1px solid var(--detail-line);
}

/* A / Knowledge Editorial：自然长文、克制边线与清晰阅读宽度。 */
.detail-knowledge .article-layout,
.detail-knowledge .auxiliary-topic-main {
  width: min(100% - 48px, 1120px);
}

.detail-knowledge .article-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.7fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.detail-knowledge .article-hero {
  position: sticky;
  top: 108px;
  padding: 26px 0 34px;
  background: transparent;
  border-top: 2px solid var(--brand-teak);
  border-bottom: 1px solid var(--detail-line);
}

.detail-knowledge .article-hero h1,
.detail-knowledge .content-hero-panel h1 {
  max-width: 11em;
  color: var(--detail-ink);
  font-family: var(--brand-font-display);
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-knowledge .article-hero > p:last-child {
  color: var(--detail-muted);
  font-size: 16px;
  line-height: 1.9;
}

.detail-knowledge .article-body,
.detail-knowledge .article-section,
.detail-knowledge .article-note {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.detail-knowledge .article-prose {
  color: var(--detail-ink);
  font-size: 17px;
  line-height: 2.02;
}

.detail-knowledge .article-prose > p:first-child {
  margin-top: 0;
  padding: 0 0 26px 24px;
  color: #4b3627;
  font-size: 20px;
  line-height: 1.86;
  border-left: 2px solid rgba(133, 86, 45, 0.52);
}

.detail-knowledge .article-related {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--detail-line);
}

.detail-knowledge .article-related ul {
  display: grid;
  gap: 0;
}

.detail-knowledge .article-related li {
  padding: 18px 0;
  border-bottom: 1px solid var(--detail-line);
}

.detail-knowledge .article-note {
  margin-top: 34px;
  padding: 18px 0 0;
  color: var(--detail-muted);
  border-top: 1px solid var(--detail-line);
}

.detail-knowledge .content-hero-panel {
  max-width: 920px;
  margin: 0 auto clamp(34px, 5vw, 60px);
  padding: 30px 0 clamp(38px, 5vw, 62px);
  background: transparent;
  border: 0;
  border-top: 2px solid var(--brand-teak);
  border-bottom: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-knowledge .content-hero-panel .content-lead {
  max-width: 44em;
  color: var(--detail-muted);
  font-size: 18px;
  line-height: 1.85;
}

.detail-knowledge .auxiliary-topic-main > .content-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-knowledge .auxiliary-topic-main > .content-body h2 {
  margin-bottom: 16px;
  font-family: var(--brand-font-display);
  font-size: clamp(25px, 3vw, 34px);
}

.detail-knowledge .auxiliary-topic-main > .content-cta {
  max-width: 760px;
  margin-inline: auto;
}

/* B / Spatial Editorial：图片优先的空间杂志节奏。 */
.detail-aesthetic .content-main {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 clamp(22px, 3vw, 42px);
  width: min(100% - 48px, 1240px);
}

.detail-aesthetic .breadcrumb,
.detail-aesthetic .case-hero,
.detail-aesthetic .case-boundary,
.detail-aesthetic .case-related,
.detail-aesthetic .content-cta {
  grid-column: 1 / -1;
}

.detail-aesthetic .case-hero {
  isolation: isolate;
  display: flex;
  min-height: clamp(480px, 62vw, 660px);
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: clamp(54px, 8vw, 96px);
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  color: #fffaf2;
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: 2px 30px 2px 30px;
  box-shadow: 0 30px 74px rgba(45, 32, 22, 0.18);
}

.detail-aesthetic-tea .case-hero {
  background-image: linear-gradient(180deg, rgba(26, 19, 14, 0.05), rgba(26, 19, 14, 0.78)), url("./assets/images/hero-teak-lifestyle.jpg");
  background-position: center 58%;
}

.detail-aesthetic-courtyard .case-hero {
  background-image: linear-gradient(180deg, rgba(26, 19, 14, 0.02), rgba(26, 19, 14, 0.72)), url("./assets/images/knowledge-outdoor-wood.jpg");
}

.detail-aesthetic .case-hero .eyebrow,
.detail-aesthetic .case-hero h1,
.detail-aesthetic .case-hero .content-lead {
  max-width: 780px;
  color: inherit;
}

.detail-aesthetic .case-hero h1 {
  margin-bottom: 18px;
  font-family: var(--brand-font-display);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.detail-aesthetic .case-hero .content-lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.82;
}

.detail-aesthetic .case-section {
  position: relative;
  margin: 0 0 clamp(54px, 7vw, 86px);
  padding: 26px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-aesthetic .case-section:nth-of-type(2),
.detail-aesthetic .case-section:nth-of-type(4) {
  grid-column: 1 / span 5;
}

.detail-aesthetic .case-section:nth-of-type(3),
.detail-aesthetic .case-section:nth-of-type(5) {
  grid-column: 7 / -1;
}

.detail-aesthetic .case-section h2 {
  margin-bottom: 22px;
  font-family: var(--brand-font-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.14;
}

.detail-aesthetic .case-section p {
  color: var(--detail-muted);
  font-size: 16px;
  line-height: 1.92;
}

.detail-aesthetic .case-section:nth-of-type(4)::before {
  display: block;
  height: clamp(180px, 25vw, 300px);
  margin: 0 0 30px;
  content: "";
  background-position: center;
  background-size: cover;
  border-radius: 1px 22px 1px 22px;
}

.detail-aesthetic-tea .case-section:nth-of-type(4)::before {
  background-image: url("./assets/images/product-teak-table.jpg");
}

.detail-aesthetic-courtyard .case-section:nth-of-type(4)::before {
  background-image: url("./assets/images/product-teak-chair.jpg");
}

.detail-aesthetic .case-boundary {
  margin: 0 0 50px;
  padding: 20px 0;
  color: var(--detail-muted);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--detail-line);
  border-bottom: 1px solid var(--detail-line);
  border-radius: 0;
}

.detail-aesthetic .case-related {
  padding: 0;
  background: transparent;
  border: 0;
}

.detail-aesthetic .case-related ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--detail-line);
}

.detail-aesthetic .case-related li {
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--detail-line);
}

/* C / Lifestyle Editorial：场景、判断与长期使用并列。 */
.detail-lifestyle .solution-topic-shell,
.detail-lifestyle .goods-article-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.detail-lifestyle-outdoor .solution-topic-hero {
  isolation: isolate;
  display: flex;
  min-height: clamp(480px, 55vw, 620px);
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  color: #fffaf2;
  background-image: linear-gradient(180deg, rgba(28, 20, 14, 0.06), rgba(28, 20, 14, 0.8)), url("./assets/images/knowledge-outdoor-wood.jpg");
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: 26px 3px 26px 3px;
}

.detail-lifestyle-outdoor .solution-topic-hero .eyebrow,
.detail-lifestyle-outdoor .solution-topic-hero h1,
.detail-lifestyle-outdoor .solution-topic-hero p {
  max-width: 760px;
  color: inherit;
}

.detail-lifestyle-outdoor .solution-topic-hero h1 {
  font-family: var(--brand-font-display);
  font-size: clamp(50px, 7vw, 86px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.detail-lifestyle-outdoor .solution-topic-hero p:last-child {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.82;
}

.detail-lifestyle-outdoor .solution-topic-section {
  max-width: 880px;
  margin: clamp(54px, 8vw, 94px) auto 0;
  padding: 0 0 clamp(42px, 6vw, 70px);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-lifestyle-outdoor .solution-section-heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.75fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.detail-lifestyle-outdoor .solution-section-heading h2 {
  font-family: var(--brand-font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.detail-lifestyle-outdoor .solution-topic-section > p {
  max-width: 720px;
  margin-left: auto;
  color: var(--detail-muted);
  font-size: 16.5px;
  line-height: 1.96;
}

.detail-lifestyle-outdoor .solution-judgement-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin-top: 34px;
}

.detail-lifestyle-outdoor .solution-judgement-grid article {
  padding: 24px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-lifestyle-outdoor .soft-notice {
  max-width: 880px;
  margin: 40px auto 0;
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--detail-line);
  border-bottom: 1px solid var(--detail-line);
  border-radius: 0;
}

.detail-lifestyle-outdoor .content-cta {
  max-width: 880px;
  margin-inline: auto;
}

.detail-lifestyle-object .goods-article-hero {
  min-height: clamp(440px, 52vw, 610px);
  padding: clamp(60px, 9vw, 110px) 0;
  background-image: linear-gradient(90deg, rgba(36, 25, 17, 0.86) 0%, rgba(36, 25, 17, 0.62) 48%, rgba(36, 25, 17, 0.12) 76%), url("./assets/images/product-teak-table.jpg");
  background-position: center;
  background-size: cover;
}

.detail-lifestyle-object .goods-article-hero .content-shell {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.detail-lifestyle-object .goods-article-hero .eyebrow,
.detail-lifestyle-object .goods-article-hero h1,
.detail-lifestyle-object .goods-article-hero .lead {
  max-width: 660px;
  color: #fffaf2;
}

.detail-lifestyle-object .goods-article-hero h1 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.04;
}

.detail-lifestyle-object .goods-article-shell {
  width: min(100% - 48px, 1120px);
}

.detail-lifestyle-object .goods-archive-visual {
  min-height: clamp(220px, 34vw, 390px);
  margin: 0 0 clamp(54px, 8vw, 92px);
  background-image: linear-gradient(180deg, rgba(26, 19, 14, 0.04), rgba(26, 19, 14, 0.5)), url("./assets/images/knowledge-teak-grain.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 2px 28px 2px 28px;
}

.detail-lifestyle-object .goods-article-prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--detail-ink);
  font-size: 17px;
  line-height: 2.02;
}

.detail-lifestyle-object .goods-article-prose p:first-child {
  padding-left: 24px;
  color: #4b3627;
  font-size: 20px;
  border-left: 2px solid rgba(133, 86, 45, 0.52);
}

.detail-lifestyle-object .goods-source-section,
.detail-lifestyle-object .goods-related-section,
.detail-lifestyle-object .detail-consult {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-lifestyle-object .goods-source-grid,
.detail-lifestyle-object .goods-related-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.detail-lifestyle-object .goods-source-card,
.detail-lifestyle-object .goods-related-card {
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

/* D / Brand Profile：品牌资料档案，而非供应商黄页。 */
.detail-brand .vendor-profile-layout {
  width: min(100% - 48px, 1160px);
}

.detail-brand .vendor-profile-hero {
  min-height: 420px;
  padding: clamp(42px, 6vw, 72px);
  color: #fffaf2;
  background-image: linear-gradient(90deg, rgba(30, 22, 16, 0.9), rgba(30, 22, 16, 0.58)), url("./assets/images/vendor-workshop-sample.jpg");
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: 3px 26px 3px 26px;
  box-shadow: 0 28px 68px rgba(45, 32, 22, 0.18);
}

.detail-brand .vendor-profile-hero .eyebrow,
.detail-brand .vendor-profile-hero h1,
.detail-brand .vendor-profile-hero p {
  max-width: 720px;
  color: inherit;
}

.detail-brand .vendor-profile-hero h1 {
  font-family: var(--brand-font-display);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.detail-brand .vendor-guide-section {
  display: grid;
  grid-template-columns: minmax(190px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(26px, 5vw, 68px);
  margin: 0;
  padding: clamp(34px, 5vw, 56px) 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-brand .vendor-guide-section h2 {
  margin: 0;
  font-family: var(--brand-font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.22;
}

.detail-brand .vendor-guide-section > p {
  margin: 0;
  color: var(--detail-muted);
  font-size: 16px;
  line-height: 1.92;
}

.detail-brand .vendor-direction-grid {
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.detail-brand .vendor-direction-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1.55fr);
  gap: 26px;
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-brand .vendor-direction-card h3,
.detail-brand .vendor-direction-card p {
  margin: 0;
}

.detail-brand .vendor-direction-card p {
  color: var(--detail-muted);
}

.detail-brand .vendor-boundary-note {
  margin: clamp(34px, 5vw, 54px) 0 0;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--detail-line);
  border-bottom: 1px solid var(--detail-line);
  border-radius: 0;
}

@media (max-width: 820px) {
  .detail-editorial .detail-consult,
  .detail-editorial .content-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-knowledge .article-layout,
  .detail-knowledge .auxiliary-topic-main,
  .detail-aesthetic .content-main,
  .detail-brand .vendor-profile-layout,
  .detail-lifestyle-object .goods-article-shell,
  .detail-lifestyle-object .goods-article-hero .content-shell {
    width: min(100% - 36px, 1120px);
  }

  .detail-knowledge .article-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .detail-knowledge .article-hero {
    position: static;
  }

  .detail-aesthetic .case-section:nth-of-type(2),
  .detail-aesthetic .case-section:nth-of-type(3),
  .detail-aesthetic .case-section:nth-of-type(4),
  .detail-aesthetic .case-section:nth-of-type(5) {
    grid-column: 1 / -1;
  }

  .detail-aesthetic .case-related ul {
    grid-template-columns: 1fr;
  }

  .detail-lifestyle-outdoor .solution-section-heading,
  .detail-brand .vendor-guide-section,
  .detail-brand .vendor-direction-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .detail-editorial .breadcrumb {
    margin-bottom: 20px;
  }

  .detail-knowledge .article-hero h1,
  .detail-knowledge .content-hero-panel h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .detail-knowledge .article-prose,
  .detail-lifestyle-object .goods-article-prose {
    font-size: 16px;
    line-height: 1.92;
  }

  .detail-aesthetic .case-hero,
  .detail-lifestyle-outdoor .solution-topic-hero {
    min-height: 480px;
    padding: 28px 22px;
    border-radius: 2px 18px 2px 18px;
  }

  .detail-aesthetic .case-hero h1,
  .detail-lifestyle-outdoor .solution-topic-hero h1,
  .detail-lifestyle-object .goods-article-hero h1,
  .detail-brand .vendor-profile-hero h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .detail-aesthetic .case-section,
  .detail-lifestyle-outdoor .solution-topic-section {
    margin-bottom: 48px;
  }

  .detail-lifestyle-outdoor .solution-judgement-grid {
    grid-template-columns: 1fr;
  }

  .detail-lifestyle-object .goods-article-hero {
    min-height: 520px;
    background-image: linear-gradient(180deg, rgba(36, 25, 17, 0.22), rgba(36, 25, 17, 0.86)), url("./assets/images/product-teak-table.jpg");
  }

  .detail-brand .vendor-profile-hero {
    min-height: 470px;
    padding: 32px 24px;
    background-image: linear-gradient(180deg, rgba(30, 22, 16, 0.28), rgba(30, 22, 16, 0.88)), url("./assets/images/vendor-workshop-sample.jpg");
  }
}

/* ========== v1.30-alpha.2-phase.2：高优先级详情页批量迁移 modifier ========== */
.detail-editorial .detail-boundary-note {
  max-width: 880px;
  margin: clamp(34px, 5vw, 58px) auto 0;
  padding: 22px 0;
  color: var(--detail-muted);
  background: transparent;
  border-top: 1px solid var(--detail-line);
  border-bottom: 1px solid var(--detail-line);
}

.detail-editorial .detail-boundary-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--detail-ink);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.detail-editorial .detail-boundary-note p {
  margin: 0;
  line-height: 1.84;
}

/* Spatial Editorial 的无项目图版本：继续使用同一 B 模板，只调整正文承载方式。 */
.detail-aesthetic-essay .content-main {
  display: block;
  width: min(100% - 48px, 1180px);
}

.detail-aesthetic-essay .content-hero-panel {
  isolation: isolate;
  display: flex;
  min-height: clamp(440px, 55vw, 610px);
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: clamp(52px, 8vw, 88px);
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  color: #fffaf2;
  background-image: linear-gradient(180deg, rgba(28, 20, 14, 0.08), rgba(28, 20, 14, 0.82)), url("./assets/images/hero-teak-lifestyle.jpg");
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: 2px 28px 2px 28px;
  box-shadow: 0 28px 68px rgba(45, 32, 22, 0.18);
}

.detail-aesthetic-essay .content-hero-panel .eyebrow,
.detail-aesthetic-essay .content-hero-panel h1,
.detail-aesthetic-essay .content-hero-panel .content-lead {
  max-width: 780px;
  color: inherit;
}

.detail-aesthetic-essay .content-hero-panel h1 {
  margin-bottom: 18px;
  font-family: var(--brand-font-display);
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.detail-aesthetic-essay .content-hero-panel .content-lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.82;
}

.detail-aesthetic-essay .content-body {
  display: grid;
  grid-template-columns: minmax(200px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px) 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-aesthetic-essay .content-body h2 {
  margin: 0;
  font-family: var(--brand-font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.16;
}

.detail-aesthetic-essay .content-body > p,
.detail-aesthetic-essay .content-body > ul {
  grid-column: 2;
  margin-top: 0;
  color: var(--detail-muted);
  font-size: 16px;
  line-height: 1.94;
}

.detail-aesthetic-essay .content-body > p + p {
  margin-top: 16px;
}

.detail-aesthetic-essay .detail-boundary-note,
.detail-aesthetic-essay .content-cta {
  max-width: 980px;
}

.detail-aesthetic-solution .solution-topic-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.detail-aesthetic-solution .content-main {
  display: block;
  width: min(100% - 48px, 1240px);
}

.detail-aesthetic-solution .solution-topic-hero {
  isolation: isolate;
  display: flex;
  min-height: clamp(470px, 58vw, 640px);
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 6vw, 72px);
  overflow: hidden;
  color: #fffaf2;
  background-image: linear-gradient(180deg, rgba(27, 19, 13, 0.05), rgba(27, 19, 13, 0.82)), url("./assets/images/vendor-craft-sample.jpg");
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: 2px 28px 2px 28px;
  box-shadow: 0 28px 68px rgba(45, 32, 22, 0.18);
}

/* phase.3：同一 Spatial Editorial 模板内按真实主题切换已有合规图片。 */
.detail-aesthetic-flooring .content-hero-panel,
.detail-aesthetic-flooring .solution-topic-hero {
  background-image: linear-gradient(180deg, rgba(27, 19, 13, 0.08), rgba(27, 19, 13, 0.82)), url("./assets/images/vendor-showroom-sample.jpg");
}

.detail-aesthetic-furniture .solution-topic-hero,
.detail-aesthetic-tea-room .solution-topic-hero {
  background-image: linear-gradient(180deg, rgba(27, 19, 13, 0.08), rgba(27, 19, 13, 0.82)), url("./assets/images/product-teak-table.jpg");
}

.detail-aesthetic-solution .solution-topic-hero .eyebrow,
.detail-aesthetic-solution .solution-topic-hero h1,
.detail-aesthetic-solution .solution-topic-hero p {
  max-width: 780px;
  color: inherit;
}

.detail-aesthetic-solution .solution-topic-hero h1 {
  font-family: var(--brand-font-display);
  font-size: clamp(46px, 6.5vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.detail-aesthetic-solution .solution-topic-section {
  max-width: 940px;
  margin: clamp(52px, 8vw, 90px) auto 0;
  padding: 0 0 clamp(38px, 6vw, 64px);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-aesthetic-solution .solution-section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.detail-aesthetic-solution .solution-section-heading h2 {
  font-family: var(--brand-font-display);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
}

.detail-aesthetic-solution .solution-topic-section > p {
  max-width: 740px;
  margin-left: auto;
  color: var(--detail-muted);
  font-size: 16.5px;
  line-height: 1.96;
}

.detail-aesthetic-solution .solution-judgement-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
}

.detail-aesthetic-solution .solution-judgement-grid article {
  padding: 24px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-aesthetic-solution .detail-boundary-note,
.detail-aesthetic-solution .content-cta {
  max-width: 940px;
}

/* Lifestyle Editorial 的老木与场景资料版本：开放正文与资料边界，不做商品卡。 */
.detail-lifestyle-archive .goods-article-hero {
  min-height: clamp(410px, 50vw, 580px);
  padding: clamp(58px, 8vw, 100px) 0;
  color: #fffaf2;
  background-image: linear-gradient(110deg, rgba(38, 27, 18, 0.94), rgba(38, 27, 18, 0.58) 58%, rgba(38, 27, 18, 0.24)), url("./assets/images/knowledge-teak-grain.jpg");
  background-position: center;
  background-size: cover;
}

.detail-lifestyle-archive .goods-article-hero .content-shell {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
}

.detail-lifestyle-archive .goods-article-hero .eyebrow,
.detail-lifestyle-archive .goods-article-hero h1,
.detail-lifestyle-archive .goods-article-hero .lead {
  max-width: 720px;
  color: inherit;
}

.detail-lifestyle-archive .goods-article-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.04;
}

.detail-lifestyle-archive .goods-article-shell {
  width: min(100% - 48px, 1120px);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.detail-lifestyle-archive .goods-archive-visual {
  min-height: clamp(190px, 26vw, 310px);
  margin-bottom: clamp(48px, 7vw, 82px);
  border-radius: 2px 24px 2px 24px;
}

.detail-lifestyle-archive .goods-article-prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--detail-ink);
  font-size: 17px;
  line-height: 2.02;
}

.detail-lifestyle-archive .goods-article-prose p:first-child {
  padding-left: 24px;
  color: #4b3627;
  font-size: 20px;
  border-left: 2px solid rgba(133, 86, 45, 0.52);
}

.detail-lifestyle-archive .goods-source-section,
.detail-lifestyle-archive .goods-related-section,
.detail-lifestyle-archive .detail-consult {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-lifestyle-archive .goods-source-grid,
.detail-lifestyle-archive .goods-related-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.detail-lifestyle-archive .goods-source-card,
.detail-lifestyle-archive .goods-related-card {
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--detail-line);
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 820px) {
  .detail-aesthetic-essay .content-main,
  .detail-aesthetic-solution .content-main,
  .detail-lifestyle-archive .goods-article-shell,
  .detail-lifestyle-archive .goods-article-hero .content-shell {
    width: min(100% - 36px, 1120px);
  }

  .detail-aesthetic-essay .content-body {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .detail-aesthetic-essay .content-body > p,
  .detail-aesthetic-essay .content-body > ul {
    grid-column: 1;
  }

  .detail-aesthetic-solution .solution-section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .detail-aesthetic-essay .content-hero-panel,
  .detail-aesthetic-solution .solution-topic-hero,
  .detail-lifestyle-archive .goods-article-hero {
    min-height: 490px;
  }

  .detail-aesthetic-essay .content-hero-panel {
    padding: 30px 22px;
    border-radius: 2px 18px 2px 18px;
  }

  .detail-aesthetic-essay .content-hero-panel h1,
  .detail-aesthetic-solution .solution-topic-hero h1,
  .detail-lifestyle-archive .goods-article-hero h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .detail-aesthetic-solution .solution-topic-hero {
    padding: 30px 22px;
    border-radius: 2px 18px 2px 18px;
  }

  .detail-aesthetic-solution .solution-judgement-grid {
    grid-template-columns: 1fr;
  }

  .detail-lifestyle-archive .goods-article-hero {
    background-image: linear-gradient(180deg, rgba(38, 27, 18, 0.22), rgba(38, 27, 18, 0.88)), url("./assets/images/knowledge-teak-grain.jpg");
  }

  .detail-lifestyle-archive .goods-article-prose {
    font-size: 16px;
    line-height: 1.92;
  }
}

/* ========== v1.30 正式版前：首页视觉与品牌定位收口 ========== */
.brand-wording small {
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (min-width: 981px) {
  .global-site-header .main-nav {
    justify-self: center;
    width: max-content;
    gap: clamp(26px, 2vw, 32px);
  }

  .global-site-header .nav-dropdown-trigger::after {
    margin-left: 5px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr);
    column-gap: clamp(32px, 3vw, 48px);
  }

  .hero-content {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(46px, 3.5vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.045em;
  }

  .hero h1 span {
    display: block;
    max-width: 100%;
    overflow-wrap: normal;
    white-space: normal;
  }

  .hero-hook,
  .hero-copy {
    max-width: 100%;
  }

  .hero-hook {
    font-size: clamp(21px, 1.75vw, 27px);
    line-height: 1.62;
  }

  .hero-actions .btn {
    min-height: 52px;
    padding-inline: 20px;
  }
}

@media (max-width: 980px) {
  .hero-content {
    min-width: 0;
    max-width: 100%;
  }

  .hero h1,
  .hero h1 span,
  .hero-hook,
  .hero-copy {
    max-width: 100%;
  }

  .hero h1 span {
    display: block;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 8px;
    padding-right: 9px;
  }

  .brand-wording strong {
    font-size: 19px;
  }

  .brand-wording small {
    font-size: 11px;
  }

  .hero-content {
    padding: 34px 10px 8px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .hero-hook {
    font-size: 21px;
    line-height: 1.62;
  }

  .hero-actions .btn,
  .hero-actions .btn:first-child {
    min-height: 50px;
    padding-inline: 16px;
  }
}
