/* ========================================
   WIN FASHION — Base Styles
   ======================================== */

:root {
  --color-cream: #EDEBE7;
  --color-navy: #31375F;
  --color-navy-dark: #0f1a2e;
  --color-gold: #D9A540;
  --color-gold-light: #d4b96a;
  --color-white: #ffffff;
  --color-text: #31375F;
  --color-text-muted: #5a6478;

  --font-family: 'Times New Roman', Times, serif;

  --header-height: 100px;
  --transition: 0.3s ease;

  /* 1920×1080 设计稿基准 */
  --design-width: 1920;

  --logo-offset-left:  clamp(24px, calc(200 / var(--design-width) * 100vw), 200px);
  --logo-offset-top: 30px;

  /* 导航右侧：1920 下 200px，最小 24px，随视口等比缩放 */
  --nav-offset-right: clamp(24px, calc(200 / var(--design-width) * 100vw), 200px);

  /* 16px rem 基准 → 一级导航 1.125rem = 18px */
  --nav-rem-base: clamp(12px, calc(100vw / var(--design-width) * 16px), 16px);

  /* Pillars — 1920 设计稿 px → 响应式 */
  --pillar-gap: clamp(16px, calc(30 / var(--design-width) * 100vw), 30px);
  --pillar-image-width: clamp(160px, calc(500 / var(--design-width) * 100vw), 500px);
  --pillar-title-size: clamp(28px, calc(55 / var(--design-width) * 100vw), 55px);
  --pillar-title-bottom: clamp(24px, calc(55 / var(--design-width) * 100vw), 55px);
  --pillar-disc-max: clamp(200px, calc(380 / var(--design-width) * 100vw), 380px);
  --pillar-disc-gap: clamp(8px, calc(16 / var(--design-width) * 100vw), 16px);

  /* Section headings — 1920 设计稿 90px / 40px → rem 响应式 */
  --section-title-size: clamp(2.25rem, calc(90 / var(--design-width) * 100vw), 5.625rem);
  --section-subtitle-size: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 2.5rem);

  /* Capability insight row — 1920 设计稿 56px / 32px / 50px 行高 */
  --capability-title-size: clamp(1.75rem, calc(56 / var(--design-width) * 100vw), 3.5rem);
  --capability-body-size: clamp(1rem, calc(32 / var(--design-width) * 100vw), 2rem);
  --capability-body-line-height: clamp(1.75rem, calc(50 / var(--design-width) * 100vw), 3.125rem);
  --capability-video-height: clamp(360px, calc(900 / var(--design-width) * 100vw), 900px);
  --capability-overlay-left: clamp(24px, calc(200 / var(--design-width) * 100vw), 12.5rem);

  /* Footer — 1920 设计稿内容区 1600px */
  --footer-content-width: clamp(320px, calc(1600 / var(--design-width) * 100vw), 1600px);
  --footer-form-col-left: clamp(200px, calc(420 / 1600 * var(--footer-content-width)), 420px);
  --footer-form-col-right: clamp(240px, calc(360 / 1600 * var(--footer-content-width)), 360px);

  /* Brand intro — logo 与文案之间的水平间距（改这里即可） */
  --brand-intro-mark-text-gap:clamp(24px, calc(100 / var(--design-width) * 100vw), 100px);

  /* Brand intro — CN / US logo 左对齐偏移 */
  --brand-intro-mark-offset: 10%;
  --products-intro-mark-offset: 12%;

  /* Brand gallery — 图片之间的等距间距 x（左内边距同此值） */
  --brand-gallery-gap: clamp(24px, calc(120 / var(--design-width) * 100vw), 120px);

  /* Subpage — 共享排版与区块间距 */
  --subpage-prose-size: clamp(1rem, calc(32 / var(--design-width) * 100vw), 2rem);
  --subpage-prose-leading: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 2.5rem);
  --subpage-heading-size: clamp(1.5rem, calc(48 / var(--design-width) * 100vw), 3rem);
  --subpage-heading-leading: clamp(1.5rem, calc(48 / var(--design-width) * 100vw), 3rem);
  --subpage-section-width: 90%;
  --subpage-section-pad-y: clamp(48px, calc(80 / var(--design-width) * 100vw), 80px);
  --subpage-section-pad-bottom: clamp(64px, calc(100 / var(--design-width) * 100vw), 100px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Typography
   ======================================== */

.section-title {
  font-family: var(--font-family);
  font-size: var(--section-title-size);
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-navy);
  text-align: center;
  line-height: var(--section-title-size);
}

.section-subtitle {
  font-family: var(--font-family);
  font-size: var(--section-subtitle-size);
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-navy);
  text-align: center;
}

/* ========================================
   Header
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.8) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

.site-header .container {
  padding: 0;
  height: 100%;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.logo {
  position: absolute;
  left: var(--logo-offset-left);
  top: var(--logo-offset-top);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.site-header.scrolled {
  background: var(--color-cream);
  box-shadow: 0 1px 0 rgba(26, 39, 68, 0.08);
}

.main-nav {
  position: relative;
  font-size: var(--nav-rem-base);
  padding-right: var(--nav-offset-right);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: calc(18 / 16 * 1rem);
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-navy);
  white-space: nowrap;
}

.nav-item > a:hover,
.nav-dropdown a:hover {
  color: var(--color-gold);
}

.submenu-toggle {
  display: none;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  background: var(--color-white);
  border: 1px solid rgba(26, 39, 68, 0.08);
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--color-navy);
  white-space: nowrap;
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
  }

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition);
}

/* ========================================
   Hero
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1080;
  height: auto;
  max-height: 1080px;
  min-height: 360px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media.capability-media--weave {
  min-height: 0;
  background: var(--color-cream);
}

.hero-media.capability-media--weave > img,
.team-hero__frame.capability-media--weave > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-media.capability-media--weave .capability-mesh,
.team-hero__frame.capability-media--weave .capability-mesh {
  z-index: 3;
}

.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero.is-playing .hero-video {
  opacity: 1;
}

.hero.is-playing .capability-media--weave.mesh-done > img {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero--static .hero-tagline {
  z-index: 4;
}

/* 宽屏（>1000px）：Hero 撑满一屏 */
@media (min-width: 1001px) {
  .hero {
    aspect-ratio: auto;
    height: 100vh;
    min-height: 100vh;
    max-height: none;
  }
}

/* ========================================
   Pillars (Wisdom / Inspiration / Novelty)
   ======================================== */

.pillars {
  padding: 80px 0;
  width: 100%;
}

.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: var(--pillar-gap);
  width: 100%;
  max-width: calc(var(--pillar-image-width) * 3 + var(--pillar-gap) * 2 + 48px);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.pillar-card {
  flex: 1 1 var(--pillar-image-width);
  min-width: 0;
  max-width: var(--pillar-image-width);
}

.pillar-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  --disc-size: min(80%, var(--pillar-disc-max));
}

.pillar-image img {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
  transform: scale(1.03);
}

/* 覆盖层始终铺满整张图，百分比定位才正确 */
.pillar-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.pillar-image h2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: auto;
  margin: 0;
  padding: 0 16px;
  font-family: var(--font-family);
  font-size: var(--pillar-title-size);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-navy);
  text-shadow: none;
  transform: translateY(-50%);
  z-index: 2;
}

.pillar-disc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--disc-size);
  height: var(--disc-size);
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
}

/* ========================================
   Capabilities Intro
   ======================================== */

.capabilities-intro {
  padding: 60px 0 40px;
}

/* ========================================
   Capability Rows (Z-Pattern)
   ======================================== */

.capability-rows {
  display: flex;
  flex-direction: column;
}

.capability-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.capability-media {
  overflow: hidden;
}

.capability-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Insight 行 — Hero 同款编织入场（滚动触发） */
.capability-media--weave {
  position: relative;
  height: 100%;
  min-height: 420px;
  background: var(--color-cream);
}

.capability-media--weave img {
  display: block;
  opacity: 0;
}

.capability-media--weave.is-revealing img,
.capability-media--weave.mesh-done img {
  opacity: 1;
}

.capability-media--weave .capability-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
  pointer-events: none;
  opacity: 0;
}

.capability-media--weave.is-revealing .capability-mesh {
  opacity: 1;
}

.capability-media--weave.mesh-done .capability-mesh {
  opacity: 0;
  transition: opacity 0.7s ease;
}

/* ========================================
   Subpage shared — cream backgrounds, natural-height weave
   ======================================== */

:is(
  .page-insight-design,
  .page-manufacturing-quality,
  .page-development-innovation,
  .page-delivery-logistics,
  .page-products,
  .page-flat-knit,
  .page-circular-knit,
  .page-denim,
  .page-other-wovens,
  .page-customerized,
  .page-others,
  .page-supply-chain,
  .page-contact,
  .page-global-presence,
  .page-we-care
) {
  background: var(--color-cream);
}

:is(
  .page-brand-portfolio,
  .page-brand-portfolio-m,
  .page-flat-knit,
  .page-circular-knit,
  .page-denim,
  .page-other-wovens,
  .page-customerized,
  .page-others,
  .page-insight-design,
  .page-manufacturing-quality,
  .page-development-innovation,
  .page-delivery-logistics,
  .page-supply-chain,
  .page-we-care,
  .page-our-story
) :is(
  .brand-intro__media,
  .brand-gallery-big,
  .brand-gallery-small,
  .product-grid-gallery__item,
  .insight-capabilities__figure,
  .manufacturing-capabilities__figure,
  .development-capabilities__figure,
  .delivery-capabilities__figure,
  .supply-chain-visual__media,
  .wecare-section__figure,
  .story-team__media
).capability-media--weave {
  position: relative;
  width: 100%;
  height: auto;
  min-height: unset;
  overflow: hidden;
  background: var(--color-cream);

  & img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  & .capability-mesh {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

/* 全宽视频行 — Development / Delivery */
.capability-row--overlay.capability-row--development,
.capability-row--overlay.capability-row--delivery {
  min-height: var(--capability-video-height);
}

.capability-row--overlay.capability-row--development .capability-media::after,
.capability-row--overlay.capability-row--delivery .capability-media::after {
  display: none;
}

.capability-media--video {
  overflow: hidden;
  background: #000;
}

.capability-row--overlay .capability-media--video {
  position: absolute;
  inset: 0;
}

.capability-media--video .capability-video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.capability-row--development .capability-overlay,
.capability-row--delivery .capability-overlay {
  left: var(--capability-overlay-left);
  right: auto;
  padding: 48px 60px 90px 0;
}

.capability-row--development .capability-overlay h3,
.capability-row--development .capability-overlay p,
.capability-row--delivery .capability-overlay h3,
.capability-row--delivery .capability-overlay p {
  color: var(--color-navy);
  max-width: none;
  width: auto;
  margin-bottom: 0px;
}

.capability-text {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 60px 120px;
  background: var(--color-cream);
}

.capability-text h3 {
  width: 100%;
  max-width: 520px;
  font-family: var(--font-family);
  font-size: var(--capability-title-size);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: left;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.capability-text p {
  width: 100%;
  max-width: 520px;
  font-family: var(--font-family);
  font-size: var(--capability-body-size);
  font-weight: 400;
  line-height: var(--capability-body-line-height);
  letter-spacing: -1px;
  text-align: left;
  color: var(--color-navy);
}

.capability-explore-btn {
  display: inline-block;
  width:clamp(160px, calc(240 / var(--design-width) * 100vw), 240px);;
  margin-top: clamp(20px, calc(32 / var(--design-width) * 100vw), 32px);
  padding: clamp(10px, calc(14 / var(--design-width) * 100vw), 14px)
    clamp(24px, calc(40 / var(--design-width) * 100vw), 40px);
  border: 2px solid var(--color-navy);
  background: transparent;
  font-family: var(--font-family);
  font-size: clamp(0.875rem, calc(20 / var(--design-width) * 100vw), 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  color: var(--color-navy);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.capability-explore-btn:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* .capability-explore-btn--overlay {
  border-color: var(--color-white);
  color: var(--color-white);
}

.capability-explore-btn--overlay:hover {
  background: var(--color-white);
  color: var(--color-navy);
} */

/* Full-width overlay rows */
.capability-row--overlay {
  position: relative;
  display: block;
  min-height: 480px;
}

.capability-row--overlay .capability-media {
  position: absolute;
  inset: 0;
}

.capability-row--overlay .capability-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.7) 0%, transparent 60%);
}

.capability-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 60px;
  z-index: 1;
}

.capability-overlay h3 {
  max-width: 520px;
  font-family: var(--font-family);
  font-size: var(--capability-title-size);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: left;
  color: var(--color-white);
  margin-bottom: 16px;
}

.capability-overlay p {
  max-width: 520px;
  font-family: var(--font-family);
  font-size: var(--capability-body-size);
  font-weight: 400;
  line-height: var(--capability-body-line-height);
  letter-spacing: -1px;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Video Section
   ======================================== */

.video-section {
  padding: 80px 0;
  background: var(--color-cream);
}

.video-wrapper {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16 / 9;
  background: var(--color-navy-dark);
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   News Section
   ======================================== */

.news-section {
  padding: 80px 0;
  border-top: 1px solid rgba(26, 39, 68, 0.1);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.news-card {
  padding: 32px 0;
  border-top: 2px solid var(--color-gold);
}

.news-card time {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.news-card h3 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  margin: 12px 0 8px;
}

.news-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 64px;
}

.footer-content {
  width: 100%;
  max-width: var(--footer-content-width);
  margin: 0 auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(32px, calc(48 / var(--design-width) * 100vw), 48px);
  width: 100%;
  max-width: var(--footer-content-width);
  margin: 0 auto;
  padding-bottom: 48px;
}

.footer-brand {
  flex: 0 1 auto;
  max-width: clamp(240px, calc(360 / 1600 * var(--footer-content-width)), 360px);
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: clamp(40px, calc(60 / var(--design-width) * 100vw), 60px);
  max-width: 100%;
}

.footer-brand address {
  font-style: normal;
}

.footer-brand address p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 4px;
  color: #666666;
}

.footer-brand a {
  color: #999999;
}

.footer-brand a:hover {
  color: var(--color-gold);
}

/* Contact Form — Grid 对齐 Name/Message 顶、按钮/Mobile 底 */
.contact-form {
  display: grid;
  grid-template-columns: var(--footer-form-col-left) var(--footer-form-col-right);
  grid-template-rows: auto auto auto auto;
  column-gap: clamp(16px, calc(24 / var(--design-width) * 100vw), 24px);
  row-gap: 12px;
  align-items: start;
  flex: 0 1 auto;
}

.contact-form-label {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-family);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
}

.contact-form-name {
  grid-column: 1;
  grid-row: 2;
}

.contact-form-email {
  grid-column: 1;
  grid-row: 3;
}

.contact-form-mobile {
  grid-column: 1;
  grid-row: 4;
}

.contact-form-right {
  grid-column: 2;
  grid-row: 2 / 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.contact-form-message-input {
  flex: 1;
  min-height: 0;
}

.btn-send {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: background var(--transition);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-family);
  font-size: 0.85rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 5px;
  outline: none;
  transition: background var(--transition);
}
.contact-form textarea{flex:none;height: 100px;}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.18);
}

.contact-form-message-input {
  resize: none;
  box-sizing: border-box;
}

.btn-send:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-send-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
}

.btn-send-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex-shrink: 0;
  background: var(--color-gold);
  color: var(--color-white);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #D9A540;
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition), border-color var(--transition);
}

.social-link svg {
  width: 30px;
  height: 30px;
}

.social-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ========================================
   Scroll Reveal Animation
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1200px) {
  :root {
    --logo-offset-left:  clamp(24px, calc(200 / var(--design-width) * 10vw), 200px);
   --nav-offset-right: clamp(24px, calc(200 / var(--design-width) * 10vw), 200px);
 }
}
@media (max-width: 900px) {
  .pillars-grid {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .pillar-card {
    flex: 0 1 auto;
    width: 100%;
    max-width: min(var(--pillar-image-width), 100%);
  }

  .capability-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .capability-text {
    padding: 40px 24px;
    order: 2;
  }

  .capability-media {
    min-height: 280px;
    order: 1;
  }

  .capability-row--overlay {
    min-height: 360px;
  }

  .capability-overlay {
    padding: 32px 24px;
  }

  .capability-row--development .capability-overlay,
  .capability-row--delivery .capability-overlay {
    left: var(--capability-overlay-left);
    padding: 32px 24px 32px 0;
  }

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

  .footer-grid {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-brand {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  .footer-logo-img {
    margin: 0 auto;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .contact-form-label,
  .contact-form-name,
  .contact-form-email,
  .contact-form-mobile,
  .contact-form-right {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-form-right {
    min-height: 280px;
  }
}



@media (max-width: 1100px) {

  .nav-list {
    gap: calc(12 / 16 * 1rem);
  }
}


@media (max-width: 900px) {
  .site-header .container,
  .site-header .header-inner {
    width: 100%;
    max-width: 100vw;
  }

  .main-nav {
    padding-right: 0;
  }

  .nav-toggle {
    display: flex;
    position: fixed;
    right: max(16px, env(safe-area-inset-right, 0px));
    top: max(16px, env(safe-area-inset-top, 0px));
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-cream);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid rgba(26, 39, 68, 0.08);
  }

  .nav-item--has-dropdown {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
  }

  .nav-item > a {
    display: block;
    padding: 14px 0;
    white-space: normal;
  }

  .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    grid-row: 1;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .submenu-toggle span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-navy);
    border-bottom: 2px solid var(--color-navy);
    transform: rotate(45deg);
    transition: transform var(--transition);
    margin-top: -4px;
  }

  .nav-item--open .submenu-toggle span {
    transform: rotate(-135deg);
    margin-top: 4px;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    grid-column: 1 / -1;
    min-width: 0;
    padding: 0 0 12px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-item--open .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    padding: 10px 0 10px 16px;
    font-size: 0.875rem;
  }

  .nav-item--has-dropdown:hover .nav-dropdown,
  .nav-item--has-dropdown:focus-within .nav-dropdown {
    transform: none;
  }
}

@media (max-width: 768px) {
  :root {
    --logo-offset-left: 24px;
    --logo-offset-top: 16px;
    --header-height: 80px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ========================================
   Our Story Page
   ======================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Static hero — image only, weave reveal, no video */
.hero--static .hero-tagline {
  position: absolute;
  bottom: clamp(24px, calc(80 / var(--design-width) * 100vw), 80px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(2.25rem, calc(90 / var(--design-width) * 100vw), 5.625rem);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--color-navy);
  text-align: center;
  white-space: nowrap;
}

.hero--static .hero-tagline strong {
  font-weight: 700;
}

/* Intro section */
.story-intro {
  padding: clamp(48px, calc(120 / var(--design-width) * 100vw), 120px) 0 0 0;
  background: var(--color-cream);
}

.story-intro .section-title {
  margin-bottom: clamp(32px, calc(64 / var(--design-width) * 100vw), 64px);
  text-align: center;
  font-size: clamp(2rem, calc(72 / var(--design-width) * 100vw), 4.5rem);
  line-height: clamp(2rem, calc(72 / var(--design-width) * 100vw), 4.5rem);
}

.story-intro__body {
  max-width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.story-intro__body p {
  margin: 0 0 1.75em;
  font-family: var(--font-family);
  font-size: var(--capability-body-size);
  font-weight: 400;
  line-height: var(--capability-body-line-height);
  letter-spacing: -1px;
  color: var(--color-navy);
}

.story-intro__body strong {
  font-weight: 700;
}

.story-intro__body p:last-child {
  margin-bottom: 0;
}

/* Our Story — video hero tagline (below video) */
.story-hero {
  background: var(--color-cream);
  overflow-x: hidden;
  max-width: 100%;
}

.page-our-story .story-hero .hero-media {
  z-index: 0;
}

.page-our-story .story-hero .hero-video {
  opacity: 1;
  cursor: pointer;
}

.story-hero__control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-navy);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(49, 55, 95, 0.18);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.story-hero__control-btn:hover {
  background: var(--color-white);
  color: var(--color-gold);
  transform: scale(1.05);
}

.story-hero__control-btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.story-hero__play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: clamp(64px, calc(80 / var(--design-width) * 100vw), 80px);
  height: clamp(64px, calc(80 / var(--design-width) * 100vw), 80px);
  transform: translate(-50%, -50%);
}

.story-hero__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.story-hero__toolbar {
  position: absolute;
  right: clamp(16px, calc(32 / var(--design-width) * 100vw), 32px);
  bottom: clamp(16px, calc(32 / var(--design-width) * 100vw), 32px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: clamp(8px, calc(12 / var(--design-width) * 100vw), 12px);
}

.story-hero__pause-btn,
.story-hero__sound-btn {
  width: clamp(40px, calc(48 / var(--design-width) * 100vw), 48px);
  height: clamp(40px, calc(48 / var(--design-width) * 100vw), 48px);
}

.story-hero__play-btn[hidden],
.story-hero__pause-btn[hidden] {
  display: none;
}

.story-hero__sound-icon {
  display: block;
}

.story-hero__sound-icon--on {
  display: none;
}

.story-hero__sound-btn.is-unmuted .story-hero__sound-icon--muted {
  display: none;
}

.story-hero__sound-btn.is-unmuted .story-hero__sound-icon--on {
  display: block;
}

.page-our-story .story-hero .hero-tagline {
  margin: clamp(24px, calc(60 / var(--design-width) * 100vw), 3.75rem) auto 0;
  padding: 0 24px;
  font-family: var(--font-family);
  font-size: clamp(2.25rem, calc(90 / var(--design-width) * 100vw), 5.625rem);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--color-navy);
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}

.page-our-story .story-hero .hero-tagline strong {
  font-weight: 700;
}

/* Our Story — team block (image + copy below) */
.story-team {
  background: var(--color-cream);
}

.story-team__media {
  margin: 0;
  width: 100%;
}

.story-team__media img {
  display: block;
  width: 100%;
  height: auto;
}

.story-team__content {
  padding: 0 0 clamp(48px, calc(200 / var(--design-width) * 100vw), 200px) 0;
  text-align: center;
}

.story-team__title {
  margin: 0 0 clamp(24px, calc(48 / var(--design-width) * 100vw), 48px);
  font-size: clamp(2rem, calc(72 / var(--design-width) * 100vw), 4.5rem);
  line-height: clamp(2rem, calc(72 / var(--design-width) * 100vw), 4.5rem);
}

/* Timeline — 中央 time-line-2.png + 绝对定位对齐圆点 */
.story-timeline {
  padding: clamp(48px, calc(100 / var(--design-width) * 100vw), 100px) 0 clamp(64px, calc(140 / var(--design-width) * 100vw), 140px);
  background: var(--color-cream);
}

.story-timeline__inner {
  max-width: min(1200px, 100%);
}

.story-timeline__stage {
  position: relative;
  width: min(877px, 100%);
  margin: 0 auto;
  aspect-ratio: 877 / 1239;
}

.story-timeline__spine {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}

.story-timeline__list {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.story-timeline__item {
  position: absolute;
  top: var(--item-y);
  transform: translateY(-50%);
  margin: 0;
}

/* 横线末端位置（由 time-line-2.png 像素分析得出） */
.story-timeline__item--left {
  left: 0;
  width: 28.1%;
  text-align: right;
}

.story-timeline__item--right {
  left: 71.2%;
  right: 0;
  width: auto;
  text-align: left;
}

.story-timeline__item--left .story-timeline__content {
  padding-right: clamp(4px, calc(8 / var(--design-width) * 100vw), 8px);
}

.story-timeline__item--right .story-timeline__content {
  padding-left: clamp(4px, calc(8 / var(--design-width) * 100vw), 8px);
}

.story-timeline__year {
  display: block;
  margin-bottom: 0.15em;
  font-family: var(--font-family);
  font-size: clamp(1.75rem, calc(56 / var(--design-width) * 100vw), 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--color-gold);
}

.story-timeline__title {
  margin: 0 0 0.2em;
  font-family: var(--font-family);
  font-size: clamp(1rem, calc(28 / var(--design-width) * 100vw), 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-navy);
}

.story-timeline__meta {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(0.875rem, calc(20 / var(--design-width) * 100vw), 1.25rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-navy);
}

@media (max-width: 768px) {
  .hero--static .hero-tagline {
    white-space: normal;
    max-width: 90%;
  }

  .page-our-story .story-hero .hero-tagline {
    white-space: normal;
    max-width: calc(100% - 48px);
    font-size: clamp(1.75rem, calc(36 / var(--design-width) * 100vw), 2.25rem);
    line-height: 1.3;
    overflow-wrap: break-word;
  }

  .story-timeline__stage {
    width: min(877px, calc(100vw - 32px));
  }

  .story-timeline__item--left {
    width: 26%;
  }

  .story-timeline__item--right {
    left: 73%;
  }

  .story-timeline__year {
    font-size: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 2rem);
  }

  .story-timeline__title {
    font-size: clamp(0.8125rem, calc(18 / var(--design-width) * 100vw), 1.125rem);
  }

  .story-timeline__meta {
    font-size: clamp(0.75rem, calc(14 / var(--design-width) * 100vw), 0.9375rem);
  }
}

@media (max-width: 480px) {
  .story-timeline__item--left {
    width: 24%;
  }

  .story-timeline__item--right {
    left: 74%;
  }
}

/* ========================================
   Our Team Page
   ======================================== */

.team-hero {
  background: var(--color-cream);
}

.team-hero__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1080;
  min-height: 360px;
  max-height: 1080px;
  overflow: hidden;
}

.team-hero__frame.capability-media--weave {
  min-height: 360px;
  background: var(--color-cream);
}

.team-hero__frame.capability-media--weave > img {
  opacity: 0;
}

.team-hero__frame.capability-media--weave.is-revealing > img,
.team-hero__frame.capability-media--weave.mesh-done > img {
  opacity: 1;
}

.team-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(120px, calc(220 / var(--design-width) * 100vw), 220px);
  text-align: center;
  pointer-events: none;
}

.team-hero__title {
  margin: 0 0 clamp(24px, calc(48 / var(--design-width) * 100vw), 48px);
  font-size: clamp(2rem, calc(72 / var(--design-width) * 100vw), 4.5rem);
  line-height: clamp(2rem, calc(60 / var(--design-width) * 100vw), 3rem);
}

.team-intro__body {
  max-width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.team-intro__body p {
  margin: 0 0 0.5em;
  font-family: var(--font-family);
  font-size: clamp(1rem, calc(32 / var(--design-width) * 100vw), 2rem);
  font-weight: 400;
  line-height: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 1.8rem);
  letter-spacing: -1px;
  color: var(--color-navy);
}

.team-intro__body p:last-child {
  margin-bottom: 0;
}

.team-hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 2;
}

.team-hero__fade--top {
  top: 0;
  height: clamp(80px, calc(220 / var(--design-width) * 100vw), 220px);
  background: linear-gradient(
    to bottom,
    var(--color-cream) 0%,
    rgba(237, 235, 231, 0.85) 35%,
    rgba(237, 235, 231, 0) 100%
  );
}

.team-hero__fade--bottom {
  bottom: 0;
  height: clamp(100px, calc(280 / var(--design-width) * 100vw), 280px);
  background: linear-gradient(
    to top,
    var(--color-cream) 0%,
    rgba(237, 235, 231, 0.9) 40%,
    rgba(237, 235, 231, 0) 100%
  );
}

@media (min-width: 1001px) {
  .team-hero__frame {
    aspect-ratio: auto;
    height: 100vh;
    min-height: 100vh;
    max-height: none;
  }
}

/* ========================================
   Subpage Banner Hero (1920×400 标准)
   ======================================== */

.subpage-banner-hero {
  background: var(--color-cream);
}

.subpage-banner-hero.hero {
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
  max-height: none;
}

@media (min-width: 1001px) {
  .subpage-banner-hero.hero {
    height: auto;
    min-height: 0;
  }
}

.subpage-banner-hero__frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.subpage-banner-hero__frame.capability-media--weave {
  height: auto;
  min-height: unset;
  background: var(--color-cream);
}

.subpage-banner-hero__frame.capability-media--weave > img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 400;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  filter: blur(4px);
  transform: scale(1.06);
}

.subpage-banner-hero__frame.capability-media--weave .capability-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.subpage-banner-hero__frame.capability-media--weave.is-revealing > img,
.subpage-banner-hero__frame.capability-media--weave.mesh-done > img {
  opacity: 1;
}

.subpage-banner-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.subpage-banner-hero__title,
.subpage-banner-hero__title.section-title {
  margin: clamp(48px, calc(80 / var(--design-width) * 100vw), 80px) auto 0;
  font-size: clamp(2rem, calc(72 / var(--design-width) * 100vw), 4.5rem);
  line-height: clamp(2rem, calc(72 / var(--design-width) * 100vw), 4.5rem);
}

.subpage-banner-hero__rule {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
}

@media (max-width: 768px) {
  .subpage-banner-hero__title,
  .subpage-banner-hero__title.section-title {
    margin-top: 48px;
    font-size: clamp(1.75rem, calc(56 / var(--design-width) * 100vw), 3.5rem);
    line-height: clamp(1.75rem, calc(56 / var(--design-width) * 100vw), 3.5rem);
  }
}

/* ========================================
   Our Factories Page
   ======================================== */

.page-our-factories .factory-row__text h3 {
  font-size: clamp(1.5rem, calc(48 / var(--design-width) * 100vw), 3rem);
  line-height: 1.15;
}

.page-our-factories .factory-row__text p {
  font-size: clamp(1rem, calc(32 / var(--design-width) * 100vw), 2rem);
  font-weight: 400;
  line-height: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 2.5rem);
  max-width: clamp(360px, calc(480 / var(--design-width) * 100vw), 480px);
}

.page-our-factories .factory-row__text {
  align-items: normal;
}

.page-our-factories .factory-row__text.capability-text {
  padding: 0 clamp(16px, calc(40 / var(--design-width) * 100vw), 0px) 0 0;
  align-items: flex-start;
  justify-content: flex-start;
  background: transparent;
  margin-top: clamp(0px, calc(250 / var(--design-width) * 100vw), 250px);
}

.page-our-factories .factory-row--reverse .factory-row__text.capability-text {
  padding: 0 0 0 clamp(60px, calc(120 / var(--design-width) * 100vw), 120px);
}

.factory-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-cream);
  width: var(--subpage-section-width);
  margin: 0 auto;
  padding: var(--subpage-section-pad-y) 0 var(--subpage-section-pad-bottom);
  box-sizing: border-box;
}

.factory-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

.factory-row__media {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  min-width: 0;
}

/* 覆盖 capability 全站 min-height:420px，按宽度 + 比例自然撑高 */
.page-our-factories .factory-media-item.capability-media--weave {
  position: relative;
  flex: none;
  width: 100%;
  height: auto;
  min-height: unset;
  aspect-ratio: 801 / 534;
  overflow: hidden;
}

.page-our-factories .factory-media-item.capability-media--weave img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 768px) {
  .factory-rows {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .factory-row {
    grid-template-columns: 1fr;
  }

  .factory-row__text {
    order: 1;
    padding: 0 0 24px;
  }

  .page-our-factories .factory-row__text.capability-text,
  .page-our-factories .factory-row--reverse .factory-row__text.capability-text {
    margin-top: 0;
    padding: 0 0 24px;
  }

  .factory-row__media {
    order: 2;
  }

  .factory-media-item.capability-media--weave {
    aspect-ratio: 801 / 534;
    flex: none;
    min-height: unset;
    height: auto;
  }
}

/* ========================================
   Global Reach Page
   ======================================== */

.global-intro {
  padding: 160px 10% clamp(48px, calc(64 / var(--design-width) * 100vw), 64px);
  background: var(--color-cream);
  text-align: left;
}

.page-global-reach .global-intro__title {

  font-size: clamp(2rem, calc(72 / var(--design-width) * 100vw), 4.5rem);
  line-height: clamp(2rem, calc(72 / var(--design-width) * 100vw), 4.5rem);
  text-align: left;
}

.global-intro__body {
  max-width: none;
  margin: 0;
}

.global-intro__body p {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(1rem, calc(32 / var(--design-width) * 100vw), 2rem);
  font-weight: 400;
  line-height: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 2.5rem);
  letter-spacing: -1px;
  color: var(--color-navy);
  text-align: left;
}

.global-map {
  background: var(--color-cream);
  padding: 0 10% clamp(48px, calc(80 / var(--design-width) * 100vw), 80px);
}

.global-map__stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1920 / 798;
  container-type: inline-size;
  container-name: map-stage;
}

.global-map__canvas {
  position: absolute;
  inset: 0;
}

.page-global-reach .global-map__weave.capability-media--weave,
.page-global-presence .global-map__weave.capability-media--weave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: unset;
  aspect-ratio: auto;
  overflow: hidden;
  background: var(--color-cream);
}

.page-global-reach .global-map__weave.capability-media--weave > .global-map__bg,
.page-global-presence .global-map__weave.capability-media--weave > .global-map__bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
}

.page-global-reach .global-map__weave.capability-media--weave .capability-mesh,
.page-global-presence .global-map__weave.capability-media--weave .capability-mesh {
  z-index: 2;
}

.global-map__weave:not(.mesh-done) ~ .global-map__region {
  opacity: 0;
  pointer-events: none;
}

.global-map__weave.mesh-done ~ .global-map__region {
  opacity: 1;
  transition: opacity 0.6s ease 0.15s;
}

.global-map__card-panel {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.global-map__card-panel .global-map__card.is-visible {
  pointer-events: auto;
}

.global-map__bg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 798;
  object-fit: contain;
  object-position: center center;
}

@keyframes global-point-breathe {
  0%, 100% {
    transform: scale(0.72);
    opacity: 1;
  }
  50% {
    transform: scale(1.38);
    opacity: 0.32;
  }
}

.global-map__region {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.global-map__region--north {
  left: 23.5%;
  top: 42%;
}

.global-map__region--europe {
  left: 44%;
  top: 40%;
}

.global-map__region--network {
  left: 62%;
  top: 52%;
}

.global-map__region--china {
  left: 71%;
  top: 46%;
}

.global-map__point {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: -10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.global-map__point img {
  display: block;
  width: clamp(20px, calc(45 / 1920 * 100cqi), 45px);
  height: auto;
  animation: global-point-breathe 2.6s ease-in-out infinite;
  transform-origin: center center;
}

.global-map__region.is-active .global-map__point img {
  animation-play-state: paused;
  transform: scale(1.15);
  opacity: 1;
}

.global-map__card {
  position: absolute;
  display: block;
  height: auto;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.global-map__card.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-map__card--north {
  width: 20.3125cqi;
  left: 2.5%;
  top: 28%;
}

.global-map__card--europe {
  width: 13.0208cqi;
  left: 33%;
  top: 42%;
}

.global-map__card--network {
  width: 21.3542cqi;
  left: 40%;
  top: 50%;
}

.global-map__card--china {
  width: 23.9583cqi;
  right: 5%;
  top: 6%;
}

@media (max-width: 768px) {
  .global-intro {
    padding: 64px 24px 32px;
  }

  .global-map {
    padding: 0 24px 48px;
  }

  .global-map__stage {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    gap: 0;
  }

  .global-map__canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 798;
    flex-shrink: 0;
  }

  .global-map__region {
    position: absolute;
    transform: translate(-50%, -50%);
  }

  .global-map__card-panel {
    position: static;
    width: 100%;
    pointer-events: auto;
    margin-top: 16px;
    text-align: center;
  }

  .global-map__card,
  .global-map__card--north,
  .global-map__card--europe,
  .global-map__card--network,
  .global-map__card--china {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    max-width: none;
    height: auto;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .global-map__card:not(.is-visible) {
    display: none;
  }

  .global-map__card.is-visible {
    display: inline-block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-map__point img {
    animation: none;
  }
}

/* ========================================
   Global Presence Page
   ======================================== */

.global-presence-intro {
  padding: clamp(32px, calc(48 / var(--design-width) * 100vw), 48px) 10% 0;
  background: var(--color-cream);
  box-sizing: border-box;
}

.global-presence-intro__body {
  max-width: clamp(480px, calc(960 / var(--design-width) * 100vw), 960px);
}

.global-presence-intro__body p {
  margin: 0 0 clamp(8px, calc(12 / var(--design-width) * 100vw), 12px);
  font-family: var(--font-family);
  font-size: var(--subpage-prose-size);
  font-weight: 400;
  line-height: var(--subpage-prose-leading);
  letter-spacing: -0.5px;
  color: var(--color-navy);
  text-align: left;
}

.global-presence-intro__body p:last-child {
  margin-bottom: 0;
}

.page-global-presence .global-map {
  padding-top: clamp(24px, calc(40 / var(--design-width) * 100vw), 40px);
}

.page-global-presence .global-map__weave:not(.mesh-done) ~ .global-presence__region {
  opacity: 0;
  pointer-events: none;
}

.page-global-presence .global-map__weave.mesh-done ~ .global-presence__region {
  opacity: 1;
  transition: opacity 0.6s ease 0.15s;
}

.global-presence__region {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.global-presence__region--us {
  left: 23%;
  top: 38%;
}

.global-presence__region--eu {
  left: 48%;
  top: 36%;
}

.global-presence__region--cn {
  left: 74%;
  top: 44%;
}

.global-presence__region--other {
  left: 54%;
  top: 68%;
}

.global-presence__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, calc(8 / var(--design-width) * 100vw), 8px);
}

.global-presence__point {
  display: block;
  width: clamp(20px, calc(32 / 1920 * 100cqi), 32px);
  height: auto;
  animation: global-point-breathe 2.6s ease-in-out infinite;
  transform-origin: center center;
}

.global-presence__label {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(0.875rem, calc(24 / var(--design-width) * 100vw), 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-navy);
  white-space: nowrap;
}

.global-presence-logos {
  padding: clamp(48px, calc(80 / var(--design-width) * 100vw), 80px) 0
    clamp(64px, calc(100 / var(--design-width) * 100vw), 100px);
  background: #F0EEE9;
  overflow: hidden;
  max-width: 100%;
}

.logo-marquee,
.wecare-logo-marquee {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.logo-marquee__track,
.wecare-logo-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logo-marquee-scroll 80s linear infinite;
}

.logo-marquee__track img,
.wecare-logo-marquee__track img {
  display: block;
  flex: 0 0 auto;
  width: clamp(280px, calc(1600 / var(--design-width) * 100vw), 1600px);
  margin-left: clamp(24px, calc(40 / var(--design-width) * 100vw), 40px);
  height: auto;
}

.logo-marquee__track img:first-child,
.wecare-logo-marquee__track img:first-child {
  margin-left: 0;
}

@keyframes logo-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.page-we-care .wecare-logo-marquee__track {
  animation-duration: 40s;
}

.page-global-presence .logo-marquee__track {
  animation-duration: 80s;
}

@media (prefers-reduced-motion: reduce) {
  .global-presence__point {
    animation: none;
  }

  .logo-marquee__track,
  .wecare-logo-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: clamp(16px, calc(24 / var(--design-width) * 100vw), 24px);
  }

  .logo-marquee__track img[aria-hidden="true"],
  .wecare-logo-marquee__track img[aria-hidden="true"] {
    display: none;
  }

  .logo-marquee__track img,
  .wecare-logo-marquee__track img {
    width: min(100%, 800px);
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .global-presence-intro {
    padding: 24px 24px 0;
  }

  .global-presence-intro__body {
    max-width: none;
  }

  .page-global-presence .global-map {
    padding-left: 24px;
    padding-right: 24px;
  }

  .global-presence__label {
    white-space: normal;
    text-align: center;
    max-width: 80px;
  }

  .supply-chain-intro {
    padding-left: 24px;
    padding-right: 24px;
  }

  .logo-marquee,
  .wecare-logo-marquee {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      #000 2%,
      #000 98%,
      transparent
    );
    mask-image: linear-gradient(
      to right,
      transparent,
      #000 2%,
      #000 98%,
      transparent
    );
  }

  .logo-marquee__track img,
  .wecare-logo-marquee__track img {
    width: min(88vw, 640px);
    margin-left: 16px;
  }

  .page-we-care .wecare-logo-marquee__track {
    animation-duration: 28s;
  }

  .page-global-presence .logo-marquee__track {
    animation-duration: 55s;
  }
}

/* ========================================
   Supply Chain Page
   ======================================== */

.supply-chain-intro {
  margin: clamp(24px, calc(40 / var(--design-width) * 100vw), 40px) auto;
  box-sizing: border-box;
  text-align: center;
}



.supply-chain-intro__body {
  margin: 0 auto;
  max-width: clamp(480px, calc(1200 / var(--design-width) * 100vw), 1200px);
  font-family: var(--font-family);
  font-size: var(--subpage-prose-size);
  font-weight: 400;
  line-height: var(--subpage-prose-leading);
  letter-spacing: -0.5px;
  color: var(--color-navy);
}

.supply-chain-visual {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.supply-chain-visual__media {
  margin: 0;
  width: 100%;
}

.supply-chain-visual__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-offices {
  width: var(--subpage-section-width);
  max-width: clamp(960px, calc(1400 / var(--design-width) * 100vw), 1400px);
  margin: 0 auto;
  padding: var(--subpage-section-pad-y) 0 var(--subpage-section-pad-bottom);
  box-sizing: border-box;
}

.contact-offices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, calc(64 / var(--design-width) * 100vw), 64px)
    clamp(100px, calc(300 / var(--design-width) * 100vw), 300px);
}

.contact-office__title {
  margin: 0 0 clamp(16px, calc(24 / var(--design-width) * 100vw), 24px);
  font-family: var(--font-family);
  font-size: clamp(1rem, calc(32 / var(--design-width) * 100vw), 2rem);
  font-weight: 700;
  line-height: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 2.5rem);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--color-navy);
}

.contact-office__address,
.contact-office__line {
  margin: 0 0 clamp(8px, calc(12 / var(--design-width) * 100vw), 12px);
  font-family: var(--font-family);
  font-size: clamp(0.9375rem, calc(24 / var(--design-width) * 100vw), 1.5rem);
  font-weight: 400;
  line-height: clamp(1.25rem, calc(36 / var(--design-width) * 100vw), 2.25rem);
  letter-spacing: -0.5px;
  color: var(--color-navy);
}

.contact-office__line:last-child {
  margin-bottom: 0;
}

.contact-office__line a {
  color: inherit;
  text-decoration: none;
}

.contact-office__line a:hover {
  color: var(--color-gold);
}

.contact-office--solo {
  grid-column: 1;
}

@media (max-width: 768px) {
  .contact-offices {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-offices__grid {
    grid-template-columns: 1fr;
  }

  .contact-office--solo {
    grid-column: auto;
  }
}

/* ========================================
   Brand Portfolio Page
   ======================================== */

.brand-tabs {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, calc(16 / var(--design-width) * 100vw), 16px);
  pointer-events: auto;
}

.brand-tab {
  border: 0;
  border-radius: 0;
  padding: clamp(10px, calc(14 / var(--design-width) * 100vw), 14px)
    clamp(20px, calc(48 / var(--design-width) * 100vw), 48px);
  font-family: var(--font-family);
  font-size: clamp(0.875rem, calc(24 / var(--design-width) * 100vw), 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-navy);
  cursor: pointer;
  transition: background var(--transition), opacity var(--transition);
  text-decoration: none;
  display: inline-block;
}

.brand-tab.is-active {
  background: var(--color-gold);
}

.brand-tab:hover:not(.is-active) {
  opacity: 0.88;
}

.brand-panel {
  background: var(--color-cream);
}

.brand-panel__placeholder {
  width: 90%;
  margin: clamp(48px, calc(80 / var(--design-width) * 100vw), 80px) auto;
  padding: clamp(48px, calc(80 / var(--design-width) * 100vw), 80px) 0;
  font-size: clamp(1rem, calc(32 / var(--design-width) * 100vw), 2rem);
  line-height: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 2.5rem);
  text-align: center;
  color: var(--color-navy);
}

.brand-block {
  margin: 0 auto;
  box-sizing: border-box;
}

.brand-block--us {
  padding-top: clamp(24px, calc(48 / var(--design-width) * 100vw), 48px);
}

.brand-intro {
  position: relative;
  width: 100%;

}

.brand-intro__copy {
  position: absolute;
  top: clamp(48px, calc(200 / var(--design-width) * 100vw), 200px);
  left: var(--brand-intro-mark-offset);
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--brand-intro-mark-text-gap);
  max-width: 80%;
  padding: 0;
  box-sizing: border-box;
}

.brand-intro__mark,
.brand-intro__text {
  position: relative;
  z-index: 1;
}

.brand-intro__mark {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}

.brand-intro__mark--solo {
 position: absolute;
 left: 10%;

}
.brand-gallery--us{
  margin-top: clamp(120px, calc(240 / var(--design-width) * 100vw), 240px);;
}
.brand-intro__logo {
  width: clamp(80px, calc(154 / var(--design-width) * 100vw), 154px);
  height: auto;
}

.brand-intro__region {
  display: block;
  margin-top: clamp(8px, calc(12 / var(--design-width) * 100vw), 12px);
  font-size: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 2.5rem);
  line-height: 1.1;
  color: var(--color-gold);
}

.brand-intro__text {
  flex: 0 1 640px;
  margin: 0;
  max-width: 45%;
  font-size: clamp(1rem, calc(24 / var(--design-width) * 100vw), 1.2rem);
  font-weight: 400;
  line-height: clamp(1.25rem, calc(36 / var(--design-width) * 100vw), 2.4rem);
  letter-spacing: -0.5px;
  color: var(--color-navy);
  text-align: left;
}

/* Miss Jinn — logo 在上、文案在下，整体叠在 main 图右侧 */
.page-brand-portfolio-m .brand-intro__copy {
  left: auto;
  right: var(--brand-intro-mark-offset);
  flex-direction: column;
  align-items: center;
  max-width: min(45%, 640px);
  gap: 30px;
  top: 10%;
}

.page-brand-portfolio-m .brand-intro__mark {
  align-items: center;
  text-align: center;
}

.page-brand-portfolio-m .brand-intro__logo {
  width: clamp(120px, calc(250 / var(--design-width) * 100vw), 250px);
}

.page-brand-portfolio-m .brand-intro__text {
  flex: none;
  max-width: clamp(300px, calc(450 / var(--design-width) * 100vw), 450px);

  text-align:justify;
}

.brand-highlight {
  color: var(--color-gold);
}

.brand-intro__copy,
.brand-intro__media {
  min-width: 0;
}

.brand-intro__media {
  margin: 0;
  width: 100%;
}

.brand-intro__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Brand Portfolio — 编织入场见 Subpage shared 区块 */

.brand-gallery {
  display: flex;
  flex-direction: column;
}

.brand-gallery-row {
  display: grid;
  width: 100%;
  gap: var(--brand-gallery-gap);
  box-sizing: border-box;
  align-items: center;
}

.brand-gallery-row--stagger-right {
  grid-template-columns: 720fr 420fr 420fr;
  padding-right: var(--brand-gallery-gap);
}

.brand-gallery-row--stagger-left {
  grid-template-columns: 420fr 420fr 720fr;
  padding-left: var(--brand-gallery-gap);
}

.brand-gallery-big,
.brand-gallery-small {
  margin: 0;
  min-width: 0;
}

.brand-gallery-big img,
.brand-gallery-small img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-gallery-row--stagger-right .brand-gallery-big {
  grid-column: 1;
}

.brand-gallery-row--stagger-right .brand-gallery-smalls {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: 420fr 420fr;
  gap: var(--brand-gallery-gap);
  min-width: 0;
}

@media (max-width: 768px) {
  .brand-tabs {
    width: calc(100% - 32px);
    bottom: 2px;
  }

  .brand-tab {
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 12px;
    font-size: 0.8125rem;
  }

  .brand-block {
    width: 100%;
  }
  .brand-gallery{
    width: 90%;
    margin: 0 auto;
  }
  .brand-intro__copy {
    position: static;
    display: flex;
    flex-direction: column;
    gap: var(--brand-intro-mark-text-gap);
    max-width: none;
    width: 90%;
    margin: 0 auto;
    padding: 24px 0 0;
    left: auto;
    right: auto;
  }

  .page-brand-portfolio-m .brand-intro__copy {
    align-items: center;
    max-width: 100%;
  }

  .page-brand-portfolio-m .brand-intro__mark {
    align-items: center;
  }

  .brand-intro__text {
    flex: 1 1 auto;
    max-width: none;
  }

  .brand-intro__mark--solo {
    left: 24px;
    margin-top: 60px;
  }

  .brand-gallery-row,
  .brand-gallery-row--stagger-right {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .brand-gallery-row--stagger-right {
   margin-top: var(--brand-gallery-gap);
  }

  .brand-gallery-row--stagger-left {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    margin-top: var(--brand-gallery-gap);
  }

  .brand-gallery-row--stagger-left .brand-gallery-big {
    grid-column: 1 / -1;
    order: 1;
  }

  .brand-gallery-row--stagger-left .brand-gallery-small:nth-child(1) {
    order: 2;
  }

  .brand-gallery-row--stagger-left .brand-gallery-small:nth-child(2) {
    order: 3;
  }

  .brand-gallery-row--stagger-right .brand-gallery-big,
  .brand-gallery-row--stagger-right .brand-gallery-smalls {
    grid-column: auto;
  }

  .brand-gallery-row--stagger-right .brand-gallery-smalls {
    grid-template-columns: 1fr 1fr;
  }

  .brand-gallery-row--stagger-right .brand-gallery-big {
    order: 1;
  }

  .brand-gallery-row--stagger-right .brand-gallery-smalls {
    order: 2;
  }
}

/* ========================================
   Capability subpages — shared two-column layout
   ======================================== */

.insight-capabilities,
.manufacturing-capabilities,
.development-capabilities,
.delivery-capabilities {
  width: var(--subpage-section-width);
  margin: 0 auto;
  padding: var(--subpage-section-pad-y) 0 var(--subpage-section-pad-bottom);
  box-sizing: border-box;
}

.insight-capabilities__layout,
.manufacturing-capabilities__layout,
.development-capabilities__layout,
.delivery-capabilities__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, calc(48 / var(--design-width) * 100vw), 48px);
  align-items: start;
}

.page-insight-design .insight-capabilities__text.capability-text,
.page-manufacturing-quality .manufacturing-capabilities__text.capability-text,
.page-development-innovation .development-capabilities__text.capability-text,
.page-delivery-logistics .delivery-capabilities__text.capability-text {
  padding: 0 clamp(16px, calc(40 / var(--design-width) * 100vw), 40px) 0 0;
  align-items: flex-start;
  justify-content: flex-start;
  background: transparent;
  margin-top: clamp(0px, calc(250 / var(--design-width) * 100vw), 250px);
}

.page-insight-design .insight-capabilities__text .insight-capabilities__body,
.page-manufacturing-quality .manufacturing-capabilities__text .manufacturing-capabilities__body,
.page-development-innovation .development-capabilities__text .development-capabilities__body,
.page-delivery-logistics .delivery-capabilities__text .delivery-capabilities__body {
  margin: 0;
  max-width: clamp(360px, calc(700 / var(--design-width) * 100vw), 700px);
  font-family: var(--font-family);
  font-size: var(--subpage-prose-size);
  font-weight: 400;
  line-height: var(--subpage-prose-leading);
  letter-spacing: -0.5px;
  color: var(--color-navy);
}

.insight-capabilities__media,
.manufacturing-capabilities__media,
.development-capabilities__media,
.delivery-capabilities__media {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.insight-capabilities__figure,
.manufacturing-capabilities__figure,
.development-capabilities__figure,
.delivery-capabilities__figure {
  margin: 0;
  min-width: 0;
}

.insight-capabilities__figure img,
.manufacturing-capabilities__figure img,
.development-capabilities__figure img,
.delivery-capabilities__figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .insight-capabilities,
  .manufacturing-capabilities,
  .development-capabilities,
  .delivery-capabilities {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .insight-capabilities__layout,
  .manufacturing-capabilities__layout,
  .development-capabilities__layout,
  .delivery-capabilities__layout {
    grid-template-columns: 1fr;
  }

  .page-insight-design .insight-capabilities__text.capability-text,
  .page-manufacturing-quality .manufacturing-capabilities__text.capability-text,
  .page-development-innovation .development-capabilities__text.capability-text,
  .page-delivery-logistics .delivery-capabilities__text.capability-text {
    padding: 0 0 24px;
    order: 1;
    margin: 0;
  }

  .insight-capabilities__media,
  .manufacturing-capabilities__media,
  .development-capabilities__media,
  .delivery-capabilities__media {
    order: 2;
  }

  .page-insight-design .insight-capabilities__text .insight-capabilities__body,
  .page-manufacturing-quality .manufacturing-capabilities__text .manufacturing-capabilities__body,
  .page-development-innovation .development-capabilities__text .development-capabilities__body,
  .page-delivery-logistics .delivery-capabilities__text .delivery-capabilities__body {
    max-width: none;
  }
}

/* ========================================
   Products Page
   ======================================== */

.page-products {
  --products-page-gutter: clamp(24px, calc(96 / var(--design-width) * 100vw), 96px);
}

.products-intro {
  width: 100%;
  margin: 0;
  padding: 0;
}

.products-intro__frame {
  position: relative;
  width: 100%;
}

.products-intro__media {
  margin: 0;
  width: 100%;
}

.products-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 800;
  object-fit: cover;
  object-position: center center;
}

.products-intro__copy {
  position: absolute;
  top: 50%;
  right: var(--products-page-gutter);
  z-index: 2;
  transform: translateY(-50%);
  max-width: min(42%, 640px);
  pointer-events: none;
}

.products-intro__text {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(1rem, calc(32 / var(--design-width) * 100vw), 2rem);
  font-weight: 400;
  line-height: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 2.5rem);
  letter-spacing: -0.5px;
  color: var(--color-navy);
}

.products-grid {
  padding: clamp(48px, calc(80 / var(--design-width) * 100vw), 80px) 0
    clamp(64px, calc(100 / var(--design-width) * 100vw), 100px);
}

.products-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--products-page-gutter);
  width: calc(100% - (2 * var(--products-page-gutter)));
  margin: 0 auto;
  box-sizing: border-box;
}

.products-card {
  margin: 0;
  min-width: 0;
}

.products-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.products-card__media {
  margin: 0 auto;
  width: 92%;
  max-width: 100%;
}

.products-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
}

.products-card__title {
  margin: clamp(16px, calc(24 / var(--design-width) * 100vw), 24px) 0 0;
  font-family: var(--font-family);
  font-size: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-align: center;
  text-transform: capitalize;
  color: var(--color-navy);
}

.page-products .products-intro__media.capability-media--weave,
.page-products .products-card__media.capability-media--weave {
  position: relative;
  width: 100%;
  height: auto;
  min-height: unset;
  overflow: hidden;
  background: var(--color-cream);

  & img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
  }

  & .capability-mesh {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 900px) {
  .products-intro__copy {
    position: static;
    transform: none;
    max-width: none;
    padding: clamp(24px, calc(40 / var(--design-width) * 100vw), 40px) var(--products-page-gutter);
    pointer-events: auto;
  }

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

@media (max-width: 600px) {
  .products-grid__inner {
    grid-template-columns: 1fr;
    width: calc(100% - (2 * var(--products-page-gutter)));
  }

  .products-card__media {
    width: 100%;
  }
}

/* ========================================
   Product subpages
   ======================================== */

:is(
  .page-flat-knit,
  .page-circular-knit,
  .page-denim,
  .page-other-wovens,
  .page-customerized,
  .page-others
) .flat-knit-intro__copy {
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, calc(24 / var(--design-width) * 100vw), 24px);
  max-width: min(45%, 680px);
}

.flat-knit-intro__title {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(2rem, calc(60 / var(--design-width) * 100vw), 3.75rem);
  font-weight: 700;
  line-height: clamp(2rem, calc(60 / var(--design-width) * 100vw), 3.75rem);
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-navy);
}

.flat-knit-intro__subtitle {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(1.25rem, calc(48 / var(--design-width) * 100vw), 3rem);
  font-weight: 400;
  line-height: clamp(1.5rem, calc(60 / var(--design-width) * 100vw), 3.75rem);
  color: var(--color-navy);
}

.flat-knit-intro__copy--right {
  left: auto;
  right: var(--products-intro-mark-offset);
  top: 50%;
  transform: translateY(-50%);
  align-items: flex-start;
}

.page-flat-knit .brand-gallery {
  margin: var(--brand-gallery-gap) auto;
}

@media (max-width: 768px) {
  :is(
    .page-flat-knit,
    .page-circular-knit,
    .page-denim,
    .page-other-wovens,
    .page-customerized,
    .page-others
  ) .flat-knit-intro__copy {
    max-width: none;
  }

  .flat-knit-intro__copy--right {
    transform: none;
  }
}

/* ========================================
   Product subpages — 4-column grid gallery
   ======================================== */

.product-grid-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--brand-gallery-gap);
  margin: var(--brand-gallery-gap) auto;
  padding: 0 var(--brand-gallery-gap);
  box-sizing: border-box;
}

.product-grid-gallery__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--brand-gallery-gap);
}

.product-grid-gallery__item {
  margin: 0;
  min-width: 0;
}

.product-grid-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
}

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

@media (max-width: 600px) {
  .product-grid-gallery__row {
    grid-template-columns: 1fr;
  }
}

/* Capability section headings */

.insight-capabilities__title,
.manufacturing-capabilities__title,
.wecare-section__title {
  margin: 0 0 clamp(24px, calc(40 / var(--design-width) * 100vw), 40px);
  font-family: var(--font-family);
  font-size: var(--subpage-heading-size);
  font-weight: 700;
  line-height: var(--subpage-heading-leading);
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-navy);
}

.manufacturing-capabilities__title {
  margin-bottom: clamp(8px, calc(10 / var(--design-width) * 100vw), 10px);
}

/* ========================================
   We Care Page
   ======================================== */

.wecare-intro {
  width: 90%;
  max-width: clamp(640px, calc(1200 / var(--design-width) * 100vw), 1200px);
  margin: 0 auto;
  padding: clamp(48px, calc(80 / var(--design-width) * 100vw), 80px) 0
    clamp(32px, calc(48 / var(--design-width) * 100vw), 48px);
  box-sizing: border-box;
}

.wecare-intro__text {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--subpage-prose-size);
  font-weight: 400;
  line-height: var(--subpage-prose-leading);
  letter-spacing: -0.5px;
  text-align: center;
  color: var(--color-navy);
}

.wecare-section {
  width: var(--subpage-section-width);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.wecare-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

.wecare-section__text.capability-text {
  padding: 0 clamp(16px, calc(40 / var(--design-width) * 100vw), 40px) 0 0;
  align-items: flex-start;
  justify-content: flex-start;
  background: transparent;
  margin-top: clamp(0px, calc(120 / var(--design-width) * 100vw), 120px);
}

.wecare-section__layout > .wecare-section__text.capability-text:last-child {
  padding: 0 0 0 clamp(30px, calc(120 / var(--design-width) * 100vw), 120px);
}

.wecare-section__body {
  margin: 0;
  max-width: clamp(360px, calc(700 / var(--design-width) * 100vw), 700px);
  font-family: var(--font-family);
  font-size: var(--subpage-prose-size);
  font-weight: 400;
  line-height: var(--subpage-prose-leading);
  letter-spacing: -0.5px;
  color: var(--color-navy);
}

.wecare-section__body p {
  margin: 0 0 clamp(16px, calc(24 / var(--design-width) * 100vw), 24px);
}

.wecare-section__body p:last-child {
  margin-bottom: 0;
}

.wecare-section__figure {
  margin: 0;
  min-width: 0;
}

.wecare-section__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.wecare-certifications {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: clamp(48px, calc(80 / var(--design-width) * 100vw), 80px) 0
    clamp(64px, calc(100 / var(--design-width) * 100vw), 100px);
  box-sizing: border-box;
}

.wecare-certifications__title {
  margin: 0 auto clamp(32px, calc(48 / var(--design-width) * 100vw), 48px);
  max-width: 90%;
  font-family: var(--font-family);
  font-size: clamp(1.25rem, calc(40 / var(--design-width) * 100vw), 2.5rem);
  font-weight: 700;
  line-height: clamp(1.5rem, calc(48 / var(--design-width) * 100vw), 3rem);
  letter-spacing: -0.5px;
  text-align: center;
  color: var(--color-navy);
}

@media (max-width: 768px) {
  .wecare-intro {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .wecare-section {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .wecare-section__layout {
    grid-template-columns: 1fr;
  }

  .wecare-section__text.capability-text {
    margin-top: 0;
    padding: 0;
  }
}

/* ========================================
   Weave reveal master switch (weave-config.js)
   html.weave-reveal-off → SITE_WEAVE_REVEAL_ENABLED = false
   ======================================== */

html.weave-reveal-off .capability-media--weave img,
html.weave-reveal-off .capability-media--weave > img,
html.weave-reveal-off .subpage-banner-hero__frame.capability-media--weave > img,
html.weave-reveal-off .team-hero__frame.capability-media--weave > img,
html.weave-reveal-off .global-map__weave.capability-media--weave > .global-map__bg {
  opacity: 1;
  filter: none;
  transform: none;
}

html.weave-reveal-off .capability-media--weave .capability-mesh {
  display: none;
}

html.weave-reveal-off .global-map__weave ~ .global-map__region,
html.weave-reveal-off .global-map__weave ~ .global-presence__region {
  opacity: 1;
  pointer-events: auto;
}

/* Home hero：跳过编织与 poster 停留，直接播视频 */
html.weave-reveal-off .hero .hero-video {
  opacity: 1;
}

html.weave-reveal-off .hero .hero-media.capability-media--weave > img {
  opacity: 0;
}

/* 静态 Hero（如 Our Story）仍显示主图 */
html.weave-reveal-off .hero.hero--static .hero-media.capability-media--weave > img {
  opacity: 1;
}
