/**
 * page.css - 内容页（about / custom-service / contact）样式
 * 浅奢香槟：浅色基底 + 白色卡片 + 1px 金边
 */

/* ========== Page Hero（浅色区块头部） ========== */
.page-hero {
  background: var(--color-beige);
  border-bottom: 1px solid var(--color-border-soft);
  padding-block: var(--space-7);  /* 125px → 62px，紧凑但留呼吸感 */
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--texture-frosted-metal);
  background-size: 200px;
  opacity: 0.4;
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; max-width: 1280px; }
.page-eyebrow { font-size: var(--text-xs); letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--brand-accent-deep); margin-bottom: var(--space-2); display: block; }
.page-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: var(--weight-light); color: var(--color-text); letter-spacing: -0.02em; margin-bottom: var(--space-2); text-shadow: var(--shadow-text-warm); }
.page-subtitle { color: var(--color-text-soft); max-width: 640px; font-size: var(--text-sm); }

.page-cover { width: 100%; aspect-ratio: 21 / 9; background: var(--color-beige); overflow: hidden; border: 1px solid var(--color-border-soft); border-radius: var(--radius-md); }
.page-cover img { width: 100%; height: 100%; object-fit: cover; }

/* Hero 带背景图变体（替代 page-cover，节省一个区块） */
.page-hero--with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: none;
  padding-block: var(--space-9);  /* 加高（与默认紧凑 hero 区分）：125px，撑起背景图气场 */
  min-height: 380px;
  display: flex;
  align-items: center;
}
.page-hero--with-bg::before {
  background-image: none;  /* 取消金属纹理 */
  /* 加深覆盖层：上深下浅渐变，保证标题区文字清晰 */
  background: linear-gradient(180deg, rgba(40,32,24,0.62) 0%, rgba(40,32,24,0.55) 40%, rgba(40,32,24,0.65) 100%);
}
/* 带背景图时，文字反白显示 */
.page-hero--with-bg .page-eyebrow {
  color: var(--brand-accent);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.page-hero--with-bg .page-title {
  color: #FFFFFF;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
}
.page-hero--with-bg .page-subtitle {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
@media (max-width: 767px) {
  .page-hero--with-bg {
    padding-block: var(--space-7);
    min-height: 260px;
  }
}

/* ========== Page Body 通用 ========== */
.page-section { padding-block: var(--space-8); }
.page-section .container { max-width: 1100px; }
.page-section.is-wide .container { max-width: 1280px; }
.page-section.is-dark { background: var(--color-beige); position: relative; }
.page-section.is-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--texture-frosted-metal);
  background-size: 200px;
  opacity: 0.5;
  pointer-events: none;
}
.page-section.is-dark > .container { position: relative; z-index: 1; }

.page-section h2 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-light);
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border-soft);
}

/* Prose (the_content 渲染) */
.page-prose { color: var(--color-text-soft); line-height: var(--leading-relaxed); max-width: 760px; }
.page-prose p { margin-bottom: var(--space-4); }
.page-prose h2, .page-prose h3 { color: var(--color-text); margin: var(--space-5) 0 var(--space-3); }
.page-prose ul, .page-prose ol { margin: 0 0 var(--space-4) var(--space-5); }
.page-prose li { margin-bottom: var(--space-2); }
.page-prose img { border: 1px solid var(--color-border-soft); border-radius: var(--radius-sm); }

/* ========== Page Figure（带 caption 的展示图） ========== */
.page-figure {
  margin: var(--space-6) 0 0;
  text-align: center;
}
.page-figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: var(--color-bg);
}
.page-figure figcaption {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  font-style: italic;
  letter-spacing: var(--tracking-wide);
}

/* ========== Certificate Gallery（About 多证书展示） ========== */
.cert-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.cert-gallery-item {
  margin: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  cursor: zoom-in;
}
.cert-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-accent);
}
.cert-gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* ========== Timeline（About） ========== */
.timeline { position: relative; padding-left: var(--space-6); margin-top: var(--space-5); }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--color-border);
}
.timeline-item { position: relative; padding-bottom: var(--space-5); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(var(--space-6) * -1 + 4px);
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--brand-accent);
  border-radius: 50%;
}
.timeline-year { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--brand-accent-deep); letter-spacing: var(--tracking-wider); margin-bottom: var(--space-1); }
.timeline-title { font-size: var(--text-md); color: var(--color-text); margin-bottom: var(--space-1); }
.timeline-desc { font-size: var(--text-sm); color: var(--color-text-soft); line-height: var(--leading-relaxed); }

/* ========== Process Detail（Custom-Service） ========== */
.process-detail { margin-top: var(--space-5); }
.process-detail-item { display: grid; grid-template-columns: 80px 1fr; gap: var(--space-4); padding-block: var(--space-4); border-bottom: 1px solid var(--color-border-soft); }
.process-detail-no { font-family: var(--font-mono); font-size: var(--text-2xl); color: var(--brand-accent-deep); }
.process-detail-title { font-size: var(--text-md); color: var(--color-text); margin-bottom: var(--space-2); }
.process-detail-desc { font-size: var(--text-sm); color: var(--color-text-soft); line-height: var(--leading-relaxed); }

/* ========== Materials Chips ========== */
.materials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-3); margin-top: var(--space-5); }
.material-chip {
  background: var(--color-ivory-soft);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-sm);
}
.material-chip-name { color: var(--color-text); font-size: var(--text-sm); font-weight: var(--weight-medium); }
.material-chip-desc { color: var(--color-text-mute); font-size: var(--text-xs); margin-top: var(--space-1); }

/* ========== Contact Layout ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-7);
  align-items: start;
  margin-top: var(--space-5);
}
.contact-form-wrap {
  background: var(--color-ivory-soft);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}
.contact-form-wrap form { color: var(--color-text); }
.contact-form-placeholder {
  padding: var(--space-6);
  text-align: center;
  color: var(--color-text-mute);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
}
.contact-admin-hint {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-top: var(--space-3);
}

/* ===== Unified Contact Info Card ===== */
.contact-info {
  background: var(--color-ivory-soft);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}
.contact-info-title {
  font-size: var(--text-xl);
  color: var(--color-text);
  font-weight: var(--weight-light);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}
.contact-info-sub {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  margin-bottom: var(--space-5);
}
.contact-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}
a.contact-info-item:hover {
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}
.contact-info-item--plain { background: transparent; border: none; padding-left: var(--space-4); padding-top: var(--space-2); padding-bottom: var(--space-2); }
.contact-info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-beige);
  color: var(--brand-accent-deep);
  border-radius: var(--radius-sm);
}
.contact-info-item--plain .contact-info-icon { background: transparent; }
.contact-info-body { display: flex; flex-direction: column; min-width: 0; }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--brand-accent-deep);
  margin-bottom: 2px;
}
.contact-info-value { color: var(--color-text); font-size: var(--text-md); word-break: break-word; }
.contact-info-value--alt { font-size: var(--text-sm); color: var(--color-text-mute); margin-top: 2px; }

.contact-map { margin-top: var(--space-6); aspect-ratio: 21 / 9; background: var(--color-beige); border: 1px solid var(--color-border-soft); border-radius: var(--radius-md); overflow: hidden; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ========== Region Sales Card（Contact 页：本区销售对接） ========== */
.region-sales-card {
  background: var(--color-ivory-soft);
  border: 1px solid var(--color-border-soft);
  border-left: 3px solid var(--brand-accent);
  border-radius: var(--radius-sm);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
}
.region-sales-card-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border-soft);
}
.region-sales-card-badge {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  background: var(--metallic-gold);
  color: var(--color-ivory);
  padding: 2px 8px;
  font-weight: var(--weight-bold);
  border-radius: var(--radius-sm);
}
.region-sales-card-name {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin: 0;
}
.region-sales-card-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
}
.region-sales-card-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.region-sales-card-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  color: var(--color-text-mute);
  text-transform: uppercase;
}
.region-sales-card-value {
  color: var(--color-text);
  font-size: var(--text-sm);
  word-break: break-word;
  text-decoration: none;
  transition: color var(--transition-fast);
}
a.region-sales-card-value:hover { color: var(--brand-accent-deep); }

/* 本区域 contact-channel 高亮 */
.contact-channel.is-region-current {
  border-color: var(--brand-accent);
  background: color-mix(in srgb, var(--brand-accent) 8%, var(--color-ivory-soft));
}

/* ========== Inquiry CTA（全站） ========== */
.inquiry-cta-block {
  background: var(--color-beige);
  border: 1px solid var(--color-border-soft);
  border-left: 3px solid var(--brand-accent);
  border-radius: var(--radius-sm);
  padding: var(--space-6) var(--space-7);
  margin-block: var(--space-7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
}
.inquiry-cta-text { flex: 1; min-width: 240px; }
.inquiry-cta-block h3 { font-size: var(--text-lg); color: var(--color-text); margin-bottom: var(--space-2); }
.inquiry-cta-block p { font-size: var(--text-sm); color: var(--color-text-soft); margin: 0; }
.inquiry-cta-block .cta-button { flex-shrink: 0; }

/* ========== 响应式 ========== */
@media (max-width: 1023px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .page-title { font-size: var(--text-2xl); }
  .process-detail-item { grid-template-columns: 1fr; gap: var(--space-2); }
  .inquiry-cta-block { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ========== Promo Video（About 30s 宣传片） ========== */
.page-promo-video {
  background: var(--color-ivory-soft);
  text-align: center;
}
.page-promo-video h2 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  font-weight: var(--weight-light);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}
.promo-video-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--color-beige);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.promo-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .page-promo-video h2 { font-size: var(--text-xl); }
}

/* ============================================
 * About US（2026-07 重构）
 * ============================================ */

/* Hero 轮播 */
.about-hero-carousel {
  position: relative;
  height: 88vh;
  min-height: 520px;
  max-height: 780px;
  overflow: hidden;
  background: #2a221a;
}
.about-hero-carousel .hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 1280px;
}
.about-hero-carousel .hero-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--brand-accent, #c9a96a);
  margin-bottom: var(--space-3);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.about-hero-carousel .hero-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: var(--weight-light, 300);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
  max-width: 820px;
}
.about-hero-carousel .hero-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
@media (max-width: 767px) {
  .about-hero-carousel { height: 68vh; min-height: 420px; }
}

/* 4 段错位排版 */
.about-block {
  padding-block: var(--space-9, 125px);
}
.about-block--right {
  background: var(--color-ivory-soft, #faf6ec);
}
.about-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.about-block--right .about-block-grid .about-block-img { order: 1; }
.about-block--right .about-block-grid .about-block-text { order: 2; }
.about-block--left .about-block-grid .about-block-text { order: 1; }
.about-block--left .about-block-grid .about-block-img { order: 2; }

.about-block-img {
  margin: 0;
  text-align: center;
}
.about-block-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
/* 嵌入文字区内的图：无边框无背景，占满文字区宽度 */
.about-block-img--inline {
  margin-top: var(--space-5);
  text-align: left;
}
.about-block-img--inline img {
  width: 100%;
  max-width: 100%;
  display: block;
}
/* 全宽图：占满整行容器宽度 */
.about-block-img--full {
  text-align: center;
}
.about-block-img--full img {
  width: 100%;
  max-width: 100%;
  display: block;
}
/* 等高对齐 grid（两列 stretch） */
.about-block-grid--equal {
  align-items: stretch;
}
.about-block-grid--equal .about-block-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-block-grid--equal .about-block-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 两图垂直堆叠（用于 WHO WE SERVE 区域） */
.about-block-imgs-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-self: center;
}
.about-block-text {
  padding: 0 var(--space-3);
}
/* 注：.block-eyebrow / .block-title 统一样式见后文 About US 统一区块定义 */
.block-body {
  font-size: var(--text-base, 1rem);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.85;
  margin-bottom: var(--space-4);
}
.block-quote {
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background: rgba(201, 169, 106, 0.08);
  border-left: 3px solid var(--brand-accent, #c9a96a);
  font-style: italic;
  color: var(--color-text, #2a221a);
  font-size: var(--text-lg, 1.125rem);
  line-height: 1.7;
}

/* WHO WE SERVE 旧样式已废弃，新样式见后文 */

/* WHO WE SERVE 旧样式（保留兼容） */
.serve-brands-wrap {
  justify-content: stretch;
}
.serve-brands {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  flex: 1;
  align-content: center;
  padding: 0;
  border: none;
  background: transparent;
}
/* 垂直堆叠变体（国内在上 国外在下） */
.serve-brands--stack {
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-content: start;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-soft, #e8e2d4);
}
.serve-brand-col {}
.serve-brand-title {
  font-size: var(--text-xs, 0.75rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-accent-deep, #8c7340);
  margin: 0 0 var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--brand-accent, #c9a96a);
  display: inline-block;
}
.serve-brand-list {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.75;
  margin: 0;
}

/* ===== 统一 Section 标题样式（所有 about 子区块共用） ===== */
.about-section-head {
  text-align: center;
  max-width: 60%;
  margin: 0 auto var(--space-9, 110px);
}
.about-section-eyebrow {
  display: block;
  font-size: var(--text-xs, 0.75rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9a8c7a;
  font-weight: 300;
  margin-bottom: 45px;
}
.about-section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 1.2;
}
.about-section-desc {
  margin-top: 70px;
  font-size: var(--text-base, 1rem);
  color: #3a3a3a;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02em;
}
/* 同步 WHO WE ARE / WHERE WE GO 的 .block-eyebrow / .block-title 与统一标题样式一致 */
.block-eyebrow {
  display: block;
  font-size: var(--text-xs, 0.75rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9a8c7a;
  font-weight: 300;
  margin-bottom: 45px;
}
.block-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  margin: 0 0 70px;
  line-height: 1.2;
}

/* WHAT WE DO 定稿布局：极简轻奢 */
.about-what-we-do {
  background: #fff;
  padding-block: var(--space-9, 125px);
}
.about-what-we-do .container {
  max-width: 1280px;
}
.what-we-do-images {
  display: grid;
  grid-template-columns: 56% 1fr;
  gap: 4%;
  max-width: 1280px;
  margin: 0 auto 70px;
}
.what-we-do-main {
  margin: 0;
  overflow: hidden;
}
.what-we-do-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.what-we-do-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-3, 16px);
}
.what-we-do-side figure {
  margin: 0;
  overflow: hidden;
}
.what-we-do-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 980px) {
  .about-section-head { max-width: 90%; }
  .what-we-do-images {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .what-we-do-main { max-height: 600px; }
  .what-we-do-side { grid-template-rows: auto auto; }
  .what-we-do-side figure { max-height: 400px; }
}

/* WHO WE SERVE 定稿布局：上文字整行 + 两图并排 + 图下品牌 */
.about-who-we-serve {
  background: transparent;
  padding-top: var(--space-9, 125px);
  padding-bottom: 100px;
}
.about-who-we-serve .container {
  max-width: 1280px;
}

/* 上层：标题+文字（左）+ 图1（右），两栏等高 */
.wws-top-row {
  display: grid;
  grid-template-columns: 1fr 276px;
  gap: var(--space-8, 80px);
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto var(--space-8, 90px);
}

/* 左栏：标题 + 文字，垂直分布 */
.wws-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* 标题左对齐（覆盖默认居中） */
.about-section-head--left {
  text-align: left;
  max-width: none;
  margin: 0 0 var(--space-6, 50px);
}
.about-section-head--left .about-section-eyebrow {
  margin-bottom: 30px;
}

/* 文字 */
.wws-intro-text p {
  font-size: var(--text-base, 1rem);
  color: #3a3a3a;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02em;
  margin: 0 0 var(--space-4, 24px);
}
.wws-intro-text p:last-child {
  margin-bottom: 0;
}

/* 图1：高度 100% 撑满左栏，图片等比适配 */
.wws-card--small {
  height: 100%;
}
.wws-card--small .wws-card-img {
  margin: 0;
  width: 276px;
  max-width: 100%;
  height: 100%;
}
.wws-card--small .wws-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.wws-bottom-row {
  max-width: 1280px;
  margin: 0 auto;
}
.wws-banner-img {
  margin: 0 0 var(--space-7, 60px);
  width: 100%;
  height: 563px;
  overflow: hidden;
}
.wws-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 图2 下方两栏品牌文字：左国内 + 右国际 */
.wws-brands-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7, 80px);
  max-width: 1100px;
  margin: 0 auto;
}
.wws-brands-split .wws-card-info {
  text-align: left;
}

.wws-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5, 40px);
  width: 100%;
}

.wws-card-info {
  text-align: center;
  width: 100%;
}
.wws-card-info .wws-brand-title {
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: #1a1a1a;
  font-weight: 600;
  margin: 0 0 var(--space-4, 24px);
  padding-bottom: 12px;
  display: inline-block;
  border-bottom: 2px solid #c9a96a;
}
.wws-card-info .wws-brand-list {
  font-size: 1.125rem;
  color: #3a3a3a;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 980px) {
  .wws-top-row {
    grid-template-columns: 1fr;
    gap: var(--space-6, 40px);
  }
  .wws-brands-split {
    grid-template-columns: 1fr;
    gap: var(--space-6, 40px);
  }
}


/* WHO WE SERVE 旧样式（保留兼容） */

/* WHO WE SERVE 下半 grid 顶部留白 */
.about-block-grid--mt {
  margin-top: var(--space-8);
}
/* grid 反向：图左 文字右 */
.about-block-grid--reverse .about-block-img { order: 1; }
.about-block-grid--reverse .about-block-text { order: 2; }

/* WHERE WE GO 团队合照全宽 */
.about-team-photo {
  margin: var(--space-8) 0 0;
  text-align: center;
}
.about-team-photo img {
  width: 100%;
  max-width: 1080px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.about-team-photo figcaption {
  margin-top: var(--space-3);
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-mute, #8a7d70);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* WHERE WE GO LOGO 小尺寸居中 */
.about-logo-mark {
  margin: var(--space-7) auto 0;
  text-align: center;
}
.about-logo-mark img {
  width: auto;
  max-width: 280px;
  height: auto;
  display: inline-block;
  opacity: 0.92;
}

/* 子图片行 */
.about-sub-images {
  margin-top: var(--space-7);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.about-sub-images--double {
  grid-template-columns: repeat(2, 1fr);
}
.about-sub-images figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-soft, #e8e2d4);
  background: var(--color-beige, #f5efe2);
}
.about-sub-images img {
  width: 100%;
  height: auto;
  display: block;
}
.about-sub-images figcaption {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs, 0.75rem);
  color: var(--color-text-mute, #8a7d70);
  text-align: center;
  font-style: italic;
  border-top: 1px solid var(--color-border-soft, #e8e2d4);
  background: #fff;
}

@media (max-width: 980px) {
  .about-block-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .about-block--right .about-block-grid .about-block-img { order: 1; }
  .about-block--right .about-block-grid .about-block-text { order: 2; }
}
@media (max-width: 600px) {
  .about-block { padding-block: var(--space-7); }
  .about-sub-images { grid-template-columns: 1fr; }
}

/* 核心竞争力 */
.about-competitive {
  background: var(--color-charcoal, #2a221a);
  color: #f5efe2;
  padding-block: var(--space-9, 125px);
}
.about-competitive .section-head { text-align: center; margin-bottom: var(--space-7); }
.about-competitive .section-eyebrow { color: var(--brand-accent, #c9a96a); }
.about-competitive .section-title { color: #f5efe2; }
.competitive-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  max-width: 960px;
  margin: 0 auto;
}
.competitive-item {
  padding: var(--space-5);
  border: 1px solid rgba(201, 169, 106, 0.25);
  background: rgba(255, 255, 255, 0.02);
  font-size: var(--text-base, 1rem);
  color: rgba(245, 239, 226, 0.85);
  line-height: 1.7;
}
.competitive-item strong {
  display: block;
  color: var(--brand-accent, #c9a96a);
  font-size: var(--text-lg, 1.125rem);
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}

/* 愿景大字 - 突出显示 */
.competitive-vision {
  margin-top: var(--space-9, 125px);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(201, 169, 106, 0.25);
  text-align: center;
  position: relative;
}
.competitive-vision::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--brand-accent, #c9a96a);
  margin: 0 auto var(--space-6);
}
.vision-line-1 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: var(--weight-light, 300);
  color: #f5efe2;
  letter-spacing: 0.08em;
  margin: 0 0 var(--space-4);
  line-height: 1.3;
}
.vision-line-2 {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: var(--weight-medium, 500);
  color: var(--brand-accent, #c9a96a);
  letter-spacing: 0.12em;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 767px) {
  .competitive-list { grid-template-columns: 1fr; }
}

/* 企业文化 */
.about-culture {
  padding-block: var(--space-9, 125px);
  background: var(--color-ivory, #faf6ec);
}
.about-culture .section-head { text-align: center; margin-bottom: var(--space-7); }

/* 错落布局：左 1 大卡 + 右 2x2 小卡 */
.culture-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "featured c2 c3"
    "featured c4 c5";
  gap: var(--space-5);
  align-items: stretch;
}
.culture-card {
  padding: var(--space-5) var(--space-4);
  background: #fff;
  border-top: 3px solid var(--brand-accent, #c9a96a);
  border-bottom: 1px solid var(--color-border-soft, #e8e2d4);
  text-align: left;
  display: flex;
  flex-direction: column;
}
.culture-card--featured {
  grid-area: featured;
  background: linear-gradient(160deg, #2a221a 0%, #3d3225 100%);
  color: #f5efe2;
  border-top: 3px solid var(--brand-accent, #c9a96a);
  padding: var(--space-8) var(--space-7);
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.culture-card--featured::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(201, 169, 106, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.culture-card:nth-child(2) { grid-area: c2; }
.culture-card:nth-child(3) { grid-area: c3; }
.culture-card:nth-child(4) { grid-area: c4; }
.culture-card:nth-child(5) { grid-area: c5; }
.culture-num {
  display: block;
  font-size: var(--text-xs, 0.75rem);
  letter-spacing: 0.3em;
  color: var(--brand-accent, #c9a96a);
  margin-bottom: var(--space-3);
  font-weight: var(--weight-medium, 500);
}
.culture-card--featured .culture-num {
  font-size: var(--text-sm, 0.875rem);
  margin-bottom: var(--space-4);
}
.culture-card-title {
  font-size: var(--text-lg, 1.125rem);
  font-weight: var(--weight-medium, 500);
  color: var(--color-text, #2a221a);
  margin: 0 0 var(--space-4);
  letter-spacing: 0.02em;
}
.culture-card--featured .culture-card-title {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: #f5efe2;
  font-weight: var(--weight-light, 300);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-5);
}
.culture-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.culture-card li {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-soft, #6e6358);
  padding: var(--space-2) 0;
  border-bottom: 1px dashed var(--color-border-soft, #e8e2d4);
  line-height: 1.6;
}
.culture-card--featured li {
  font-size: var(--text-base, 1rem);
  color: rgba(245, 239, 226, 0.88);
  border-bottom-color: rgba(245, 239, 226, 0.12);
  padding: var(--space-3) 0;
}
.culture-card li:last-child { border-bottom: 0; }
@media (max-width: 980px) {
  .culture-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "featured featured"
      "c2 c3"
      "c4 c5";
  }
}
@media (max-width: 600px) {
  .culture-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "featured"
      "c2"
      "c3"
      "c4"
      "c5";
  }
}

/* ============================================
 * Solution Collection（2026-07）
 * ============================================ */
.page-solution .page-hero--with-bg {
  min-height: 420px;
}
.solution-intro {
  padding-block: var(--space-8);
  background: var(--color-ivory-soft, #faf6ec);
  text-align: center;
}
.solution-intro .section-eyebrow,
.solution-intro .section-title,
.solution-intro .section-desc {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.solution-category {
  padding-block: var(--space-9, 125px);
}
.solution-category.is-hidden {
  display: none;
}
.solution-category:nth-child(odd) {
  background: var(--color-ivory-soft, #faf6ec);
}

/* ============ 分类切换 Tab（大气款） ============ */
.solution-tabs {
  background: #f5efe2;
  border-bottom: 1px solid rgba(201, 169, 106, 0.25);
  position: sticky;
  top: 0;
  z-index: 50;
}
.solution-tabs-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.solution-tab {
  background: transparent;
  border: 0;
  padding: var(--space-5, 36px) var(--space-6, 48px);
  cursor: pointer;
  position: relative;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s;
  opacity: 0.55;
  flex-shrink: 0;
}
.solution-tab:hover {
  opacity: 0.85;
}
.solution-tab.is-active {
  opacity: 1;
}
.solution-tab-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text, #1a1a1a);
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
}
.solution-tab-en {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--brand-accent-deep, #8c7340);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.solution-tab.is-active .solution-tab-en {
  color: var(--brand-accent, #c9a96a);
}
.solution-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--brand-accent, #c9a96a);
  transition: width 0.35s ease;
}
.solution-tab.is-active::after {
  width: 70%;
}

@media (max-width: 980px) {
  .solution-tabs-inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
    -webkit-overflow-scrolling: touch;
  }
  .solution-tabs-inner::-webkit-scrollbar {
    display: none;
  }
  .solution-tab {
    padding: var(--space-4) var(--space-4);
    flex-shrink: 0;
  }
  .solution-tab-name {
    font-size: 1.15rem;
  }
  .solution-tab-en {
    font-size: 0.6rem;
  }
}
@media (max-width: 640px) {
  .solution-tabs {
    position: static;
  }
  .solution-tabs-inner {
    padding: 0 var(--space-3);
    gap: 0;
  }
  .solution-tab {
    padding: var(--space-3) var(--space-3);
    gap: 4px;
  }
  .solution-tab-name {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }
  .solution-tab-en {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
  }
}
.category-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-8);
}
.category-eyebrow {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest, 0.2em);
  text-transform: uppercase;
  color: var(--brand-accent-deep, #8c7340);
  margin-bottom: var(--space-2);
}
.category-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--weight-light, 300);
  color: var(--color-text, #2a221a);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.category-desc {
  color: var(--color-text-soft, #6e6358);
  font-size: var(--text-base, 1rem);
  line-height: 1.7;
}

.case-list {
  display: grid;
  gap: var(--space-8);
}
.case-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-6);
  align-items: start;
  background: #fff;
  border: 1px solid var(--color-border-soft, #e8e2d4);
  padding: var(--space-5);
}
.case-card-cover {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--color-beige, #f5efe2);
}
.case-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.case-card-cover:hover img { transform: scale(1.04); }
.case-zoom-btn {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.92);
  color: var(--color-charcoal, #2a221a);
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}
.case-card-cover:hover .case-zoom-btn { opacity: 1; }

.case-card-body { padding: var(--space-2); }
.case-card-title {
  font-size: var(--text-xl, 1.5rem);
  font-weight: var(--weight-medium, 500);
  color: var(--color-text, #2a221a);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.case-meta {
  margin: 0 0 var(--space-4);
  padding: var(--space-3) 0;
  border-block: 1px solid var(--color-border-soft, #e8e2d4);
}
.case-meta-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-2);
  padding: var(--space-1) 0;
  font-size: var(--text-sm, 0.875rem);
}
.case-meta-row dt {
  color: var(--color-text-mute, #8a7d70);
  font-weight: var(--weight-medium, 500);
  letter-spacing: 0.02em;
}
.case-meta-row dd {
  margin: 0;
  color: var(--color-text, #2a221a);
}
.case-lead {
  font-size: var(--text-base, 1rem);
  color: var(--color-text, #2a221a);
  font-weight: var(--weight-medium, 500);
  margin-bottom: var(--space-3);
  padding: var(--space-3);
  background: rgba(201, 169, 106, 0.06);
  border-left: 2px solid var(--brand-accent, #c9a96a);
}
.case-body {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.85;
  margin-bottom: var(--space-4);
  white-space: pre-line;
}
.case-thumbs-wrap {
  position: relative;
}
.case-thumbs-wrap.has-nav {
  padding: 0 44px;
}
.case-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
.case-thumbs-wrap.has-nav .case-thumbs {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  grid-template-columns: none;
  margin: 0;
}
.case-thumbs-wrap.has-nav .case-thumbs::-webkit-scrollbar {
  display: none;
}
.case-thumbs-wrap.has-nav .case-thumbs figure {
  flex: 0 0 calc(25% - 6px);
  min-width: calc(25% - 6px);
}
.case-thumbs figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-beige, #f5efe2);
  cursor: zoom-in;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.case-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s, opacity 0.3s;
}
.case-thumbs figure:hover img { transform: scale(1.08); opacity: 0.85; }

/* 缩略图轮播箭头 */
.thumbs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.95);
  color: var(--color-charcoal, #2a221a);
  border: 1px solid var(--color-border-soft, #d4cab8);
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.25s, box-shadow 0.25s;
}
.thumbs-nav svg {
  display: block;
  width: 16px;
  height: 16px;
}
.thumbs-nav:hover {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.thumbs-prev { left: 0; }
.thumbs-next { right: 0; }

@media (max-width: 980px) {
  .case-card { grid-template-columns: 1fr; }
  .case-thumbs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .case-thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* CTA */
.solution-cta {
  padding-block: var(--space-9, 125px);
  background: var(--color-charcoal, #2a221a);
  color: #f5efe2;
  text-align: center;
}
.solution-cta .cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: var(--weight-light, 300);
  margin-bottom: var(--space-3);
}
.solution-cta .cta-desc {
  color: rgba(245, 239, 226, 0.75);
  margin-bottom: var(--space-5);
}
.solution-cta .btn-primary {
  padding: 14px 32px;
  background: var(--brand-accent, #c9a96a);
  color: #1a1410;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  transition: background 0.3s;
}
.solution-cta .btn-primary:hover { background: #d9b97a; }

/* 灯箱 */
.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 16, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.case-lightbox[hidden] { display: none; }
.lightbox-stage {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.lightbox-stage img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--brand-accent, #c9a96a);
  border-color: var(--brand-accent, #c9a96a);
}
.lightbox-thumbs {
  display: flex;
  gap: 8px;
  padding: var(--space-4);
  overflow-x: auto;
  max-width: 100%;
}
.lightbox-thumb {
  flex: 0 0 80px;
  height: 60px;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-thumb.is-active { border-color: var(--brand-accent, #c9a96a); }

/* ============================================
 * Brands（2026-07）
 * ============================================ */
.page-brands .page-hero--with-bg { min-height: 420px; }

/* Brands Banner Hero：cover 完整覆盖，高度与 service 一致 */
.page-brands .page-hero--banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  padding-block: var(--space-9);
}
.page-brands .page-hero--banner::before {
  background: linear-gradient(180deg, rgba(26,20,16,0.62) 0%, rgba(26,20,16,0.55) 40%, rgba(26,20,16,0.65) 100%);
}
.brands-split {
  padding-block: var(--space-9, 125px);
  background: var(--color-ivory-soft, #faf6ec);
}
.brands-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: stretch; /* 两栏等高 */
}
.brands-region {
  background: #fff;
  padding: var(--space-7) var(--space-6);
  border: 1px solid var(--color-border-soft, #e8e2d4);
  display: flex;
  flex-direction: column;
}
.region-head {
  text-align: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-soft, #e8e2d4);
  flex-shrink: 0;
}
.region-eyebrow {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest, 0.2em);
  text-transform: uppercase;
  color: var(--brand-accent-deep, #8c7340);
  margin-bottom: var(--space-2);
}
.region-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: var(--weight-light, 300);
  color: var(--color-text, #2a221a);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.region-desc {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-soft, #6e6358);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}
.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: var(--space-3);
  flex: 1; /* 撑满剩余高度，与对侧栏对齐 */
  min-height: 0;
}
.logo-wall--international {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: var(--space-4);
}
.logo-wall--international .logo-wall-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  min-height: 0;
}
.brands-cat-doc {
  margin: 0 0 var(--space-6);
  padding: var(--space-5) var(--space-5) var(--space-4);
  background: #fff;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.brands-cat-block {
  padding: 0 0 var(--space-4);
  margin: 0 0 var(--space-4);
  border-bottom: 1px solid var(--color-border-soft, #e8e2d4);
}
.brands-cat-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.brands-cat-name {
  font-size: var(--text-base, 1.05rem);
  font-weight: var(--weight-semibold, 600);
  color: var(--color-text, #2a221a);
  margin: 0 0 var(--space-2);
  letter-spacing: 0.01em;
}
.brands-cat-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.brands-cat-items li {
  position: relative;
  padding-left: var(--space-4);
  font-size: var(--text-sm, 0.9rem);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.9;
}
.brands-cat-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent, #c9a96a);
}
.brands-examples {
  margin-top: var(--space-4);
}
.brands-examples-title {
  font-size: var(--text-lg, 1.125rem);
  font-weight: var(--weight-semibold, 600);
  color: var(--color-text, #2a221a);
  margin: 0 0 var(--space-4);
  letter-spacing: 0.02em;
}
.brands-examples .logo-wall-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.brands-examples .logo-tile {
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border-soft, #e8e2d4);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brands-examples .logo-tile img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.logo-tile {
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border-soft, #e8e2d4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  transition: all 0.3s;
  overflow: hidden;
  min-height: 0;
}
.logo-tile:hover {
  border-color: var(--brand-accent, #c9a96a);
  box-shadow: 0 8px 24px rgba(40,32,24,0.08);
  transform: translateY(-2px);
}
.logo-tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter 0.3s;
}
.logo-tile:hover img { filter: grayscale(0%); }
.logo-tile--wide { padding: var(--space-5); }

@media (max-width: 980px) {
  .brands-split-grid { grid-template-columns: 1fr; }
  .brands-examples .logo-wall-pair { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
}

.brands-cta {
  padding-block: var(--space-9, 125px);
  background: var(--color-charcoal, #2a221a);
  color: #f5efe2;
  text-align: center;
}
.brands-cta .cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: var(--weight-light, 300);
  margin-bottom: var(--space-3);
}
.brands-cta .cta-desc {
  color: rgba(245, 239, 226, 0.75);
  margin-bottom: var(--space-5);
}
.brands-cta .btn-outline {
  border-color: var(--brand-accent, #c9a96a);
  color: var(--brand-accent, #c9a96a);
}
.brands-cta .btn-outline:hover {
  background: var(--brand-accent, #c9a96a);
  color: #1a1410;
}

/* ============================================
 * Service（2026-07）
 * ============================================ */
.page-service .service-hero { min-height: 460px; }
.service-hero .hero-rule {
  width: 80px;
  height: 2px;
  background: var(--brand-accent, #c9a96a);
  margin: var(--space-4) 0;
}
.service-block { padding-block: var(--space-9, 125px); }
.service-block:nth-child(even) { background: var(--color-ivory-soft, #faf6ec); }
.block-head { margin-bottom: var(--space-7); }
.block-head--center { text-align: center; }
/* 注：.block-eyebrow / .block-title 统一样式见前文 About US 区块定义，此处不再重复 */
.block-tagline {
  font-size: var(--text-xl, 1.5rem);
  color: var(--color-text, #2a221a);
  font-weight: var(--weight-medium, 500);
  text-align: center;
  margin-bottom: var(--space-3);
}
.block-tagline-en {
  text-align: center;
  color: var(--color-text-soft, #6e6358);
  font-size: var(--text-base, 1rem);
  font-style: italic;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-7);
  align-items: center;
  margin-bottom: var(--space-7);
}
.intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-text p {
  font-size: var(--text-base, 1rem);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.95;
  margin-bottom: var(--space-5);
}
.intro-text p:last-child { margin-bottom: 0; }
.intro-imgs {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.intro-img {
  margin: 0;
  flex: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border-soft, #e8e2d4);
  background: var(--color-beige, #f5efe2);
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-process {
  margin: 0 0 var(--space-6);
  border: 1px solid var(--color-border-soft, #e8e2d4);
  background: #fff;
}
.intro-process img {
  display: block;
  width: 100%;
  height: auto;
}
.intro-highlight {
  text-align: center;
  padding: var(--space-5);
  background: var(--color-charcoal, #2a221a);
  color: var(--brand-accent, #c9a96a);
  font-size: var(--text-xl, 1.5rem);
  letter-spacing: 0.02em;
}

/* 主图全宽 */
.manager-hero-img {
  margin: 0 0 var(--space-7, 60px);
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.manager-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 手风琴 */
.manager-accordion {
  max-width: 1100px;
  margin: 0 auto;
}
.acc-item {
  border-bottom: 1px solid var(--color-border-soft, #e8e2d4);
}
.acc-item:first-child {
  border-top: 1px solid var(--color-border-soft, #e8e2d4);
}
.acc-header {
  width: 100%;
  background: transparent;
  border: 0;
  padding: var(--space-5, 28px) var(--space-3, 16px);
  display: flex;
  align-items: center;
  gap: var(--space-4, 24px);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.25s;
}
.acc-header:hover {
  background: rgba(201, 169, 106, 0.04);
}
.acc-num {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand-accent, #c9a96a);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.acc-title {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text, #1a1a1a);
  letter-spacing: 0.02em;
}
.acc-icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
}
.acc-icon::before,
.acc-icon::after {
  content: '';
  position: absolute;
  background: var(--brand-accent, #c9a96a);
  transition: transform 0.3s ease;
}
.acc-icon::before {
  /* 横线 */
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.acc-icon::after {
  /* 竖线 */
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.acc-item.is-open .acc-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.acc-item.is-open .acc-body {
  max-height: 2000px;
}
.acc-body-inner {
  padding: 0 var(--space-3, 16px) var(--space-6, 48px) calc(var(--space-3, 16px) + 28px + var(--space-4, 24px));
}
.acc-body-inner p {
  font-size: var(--text-base, 1rem);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.95;
  margin-bottom: var(--space-3, 16px);
}
.acc-body-inner p:last-child {
  margin-bottom: 0;
}
.acc-body-inner em {
  color: var(--brand-accent-deep, #8c7340);
  font-style: italic;
}
.manager-sub-list {
  padding-left: var(--space-3, 16px);
  line-height: 2.1 !important;
}

@media (max-width: 767px) {
  .acc-header {
    padding: var(--space-4, 20px) var(--space-2, 8px);
    gap: var(--space-3, 16px);
  }
  .acc-num { font-size: 1.2rem; }
  .acc-title { font-size: 1.05rem; }
  .acc-body-inner {
    padding: 0 var(--space-2, 8px) var(--space-5, 32px) var(--space-2, 8px);
  }
}

.designer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.designer-img {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.designer-img img { width: 100%; height: 100%; object-fit: cover; }
.designer-content p { color: var(--color-text-soft, #5a5048); line-height: 1.85; margin-bottom: var(--space-3); }
.designer-sub {
  font-size: var(--text-lg, 1.125rem);
  color: var(--color-text, #2a221a);
  font-weight: var(--weight-medium, 500);
  margin: var(--space-5) 0 var(--space-3);
}
.designer-flow { list-style: none; padding: 0; counter-reset: flow; }
.designer-flow li {
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-2);
  background: #fff;
  border-left: 3px solid var(--brand-accent, #c9a96a);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.7;
}
.designer-flow li strong { color: var(--color-text, #2a221a); }
.designer-sketch { margin: var(--space-5) 0 0; text-align: center; }
.designer-sketch img { max-width: 100%; border: 1px solid var(--color-border-soft, #e8e2d4); }

.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.pm-img {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.pm-img img { width: 100%; height: 100%; object-fit: cover; }
.pm-content p {
  color: var(--color-text-soft, #5a5048);
  line-height: 1.85;
  margin-bottom: var(--space-4);
  font-size: var(--text-base, 1rem);
}
.pm-highlight {
  padding: var(--space-4) var(--space-5);
  background: rgba(201, 169, 106, 0.08);
  border-left: 3px solid var(--brand-accent, #c9a96a);
  color: var(--color-text, #2a221a);
}

.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.logistics-img {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.logistics-img img { width: 100%; height: 100%; object-fit: cover; }
.logistics-content p { color: var(--color-text-soft, #5a5048); line-height: 1.85; margin-bottom: var(--space-3); }
.logistics-sub {
  font-size: var(--text-lg, 1.125rem);
  color: var(--color-text, #2a221a);
  font-weight: var(--weight-medium, 500);
  margin: var(--space-5) 0 var(--space-2);
  padding-left: var(--space-3);
  border-left: 3px solid var(--brand-accent, #c9a96a);
}
.logistics-list { list-style: none; padding: 0; margin: 0 0 var(--space-3); }
.logistics-list li {
  padding: var(--space-2) 0 var(--space-2) var(--space-4);
  border-bottom: 1px dashed var(--color-border-soft, #e8e2d4);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.7;
}
.logistics-list li:last-child { border-bottom: 0; }
.logistics-list li strong { color: var(--color-text, #2a221a); }

.aftersales-img {
  margin: 0 0 var(--space-6);
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.aftersales-img img { width: 100%; height: 100%; object-fit: cover; }
.aftersales-lead {
  font-size: var(--text-xl, 1.5rem);
  color: var(--color-text, #2a221a);
  font-weight: var(--weight-medium, 500);
  text-align: center;
  margin-bottom: var(--space-6);
}
.aftersales-sub {
  font-size: var(--text-lg, 1.125rem);
  color: var(--color-text, #2a221a);
  font-weight: var(--weight-medium, 500);
  margin: var(--space-5) 0 var(--space-2);
  padding-left: var(--space-3);
  border-left: 3px solid var(--brand-accent, #c9a96a);
}
.aftersales-tier {
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-3);
  background: #fff;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.aftersales-tier h4 {
  font-size: var(--text-base, 1rem);
  color: var(--brand-accent-deep, #8c7340);
  margin: 0 0 var(--space-2);
  font-weight: var(--weight-medium, 500);
  letter-spacing: 0.02em;
}
.aftersales-tier p { margin: 0; color: var(--color-text-soft, #5a5048); line-height: 1.7; }

.service-cta {
  padding-block: var(--space-9, 125px);
  background: var(--color-charcoal, #2a221a);
  color: #f5efe2;
  text-align: center;
}
.service-cta .cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: var(--weight-light, 300);
  margin-bottom: var(--space-3);
}
.service-cta .cta-desc { color: rgba(245, 239, 226, 0.75); margin-bottom: var(--space-5); }
.service-cta .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--brand-accent, #c9a96a);
  color: #1a1410;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  transition: background 0.3s;
}
.service-cta .btn-primary:hover { background: #d9b97a; }

@media (max-width: 980px) {
  .intro-grid, .designer-grid, .pm-grid, .logistics-grid { grid-template-columns: 1fr; }
}

/* ============================================
 * Material（2026-07）
 * ============================================ */
.page-material .page-hero--with-bg { min-height: 420px; }
.material-block { padding-block: var(--space-9, 125px); }
.material-block:nth-child(even) { background: var(--color-ivory-soft, #faf6ec); }
.block-subtitle {
  font-size: var(--text-lg, 1.125rem);
  color: var(--color-text-soft, #6e6358);
  margin-top: var(--space-2);
  font-style: italic;
}

/* 区块 1 */
.importance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}
.importance-img {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.importance-img img { width: 100%; height: 100%; object-fit: cover; }
.importance-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}
.imp-item {
  padding: var(--space-4) var(--space-5);
  background: #fff;
  border: 1px solid var(--color-border-soft, #e8e2d4);
  border-top: 3px solid var(--brand-accent, #c9a96a);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.7;
}
.imp-item strong {
  display: block;
  color: var(--color-text, #2a221a);
  font-size: var(--text-base, 1rem);
  margin-bottom: var(--space-2);
  font-weight: var(--weight-medium, 500);
}
.importance-body p {
  font-size: var(--text-base, 1rem);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.9;
  margin-bottom: var(--space-4);
}
.importance-quote {
  font-size: var(--text-xl, 1.5rem) !important;
  color: var(--color-text, #2a221a) !important;
  text-align: center;
  padding: var(--space-5);
  font-style: italic;
  border-block: 1px solid var(--brand-accent, #c9a96a);
  margin-top: var(--space-5) !important;
}

/* 区块 2 */
.adv-img {
  margin: 0 0 var(--space-7);
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.adv-img img { width: 100%; height: 100%; object-fit: cover; }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.adv-card {
  padding: var(--space-5) var(--space-4);
  background: #fff;
  border: 1px solid var(--color-border-soft, #e8e2d4);
  text-align: center;
}
.adv-num {
  display: block;
  font-size: var(--text-2xl, 2rem);
  font-weight: var(--weight-light, 300);
  color: var(--brand-accent, #c9a96a);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}
.adv-name {
  font-size: var(--text-base, 1rem);
  font-weight: var(--weight-medium, 500);
  color: var(--color-text, #2a221a);
  margin-bottom: var(--space-3);
}
.adv-card p {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.7;
  margin: 0;
}

/* 区块 3 */
.material-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.material-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-4);
  background: #fff;
  border: 1px solid var(--color-border-soft, #e8e2d4);
  padding: var(--space-3);
  align-items: start;
}
.material-item-img {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-beige, #f5efe2);
}
.material-item-img img { width: 100%; height: 100%; object-fit: cover; }
.material-item-body { padding: var(--space-2); }
.material-item-cat {
  font-size: var(--text-xs, 0.75rem);
  letter-spacing: var(--tracking-wide, 0.1em);
  text-transform: uppercase;
  color: var(--brand-accent-deep, #8c7340);
  margin: 0 0 var(--space-2);
  font-weight: var(--weight-medium, 500);
}
.material-item-name {
  font-size: var(--text-lg, 1.125rem);
  font-weight: var(--weight-medium, 500);
  color: var(--color-text, #2a221a);
  margin-bottom: var(--space-3);
}
.material-item-body p {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-soft, #5a5048);
  line-height: 1.8;
  white-space: pre-line;
  margin: 0;
}
.material-extra {
  margin-top: var(--space-7);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.material-extra figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border-soft, #e8e2d4);
}
.material-extra img { width: 100%; height: 100%; object-fit: cover; }

.material-cta {
  padding-block: var(--space-9, 125px);
  background: var(--color-charcoal, #2a221a);
  color: #f5efe2;
  text-align: center;
}
.material-cta .cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: var(--weight-light, 300);
  margin-bottom: var(--space-3);
}
.material-cta .cta-desc { color: rgba(245, 239, 226, 0.75); margin-bottom: var(--space-5); }
.material-cta .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--brand-accent, #c9a96a);
  color: #1a1410;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  transition: background 0.3s;
}
.material-cta .btn-primary:hover { background: #d9b97a; }

@media (max-width: 980px) {
  .importance-points, .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .material-list { grid-template-columns: 1fr; }
  .importance-grid, .material-extra { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .material-item { grid-template-columns: 1fr; }
  .importance-points, .adv-grid { grid-template-columns: 1fr; }
}
