:root {
  --color-primary: #315C4C;
  --color-primary-hover: #264A3D;
  --color-secondary: #8FA99A;
  --color-page-background: #F7F4ED;
  --color-section-background: #EAE5DB;
  --color-accent: #B68A5A;
  --color-text-primary: #292D2B;
  --color-text-secondary: #686B66;
  --color-surface: #FFFEFB;
  --color-secondary-hover: #E4ECE7;
  --color-white: #FFFFFF;
  --color-primary-rgb: 49 92 76;
  --color-accent-rgb: 182 138 90;
  --font-serif: "Noto Serif TC", "Source Han Serif TC", "Songti TC", Georgia, serif;
  --font-sans: "Noto Sans TC", "Source Han Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  --font-latin: "Cormorant Garamond", Lora, Georgia, serif;
  --content-width: 1240px;
  --header-height: 104px;
  --radius-small: 10px;
  --radius-medium: 18px;
  --radius-large: 30px;
  --shadow-soft: 0 18px 50px rgb(var(--color-primary-rgb) / 0.08);
  --border-soft: 1px solid rgb(var(--color-primary-rgb) / 0.14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--color-text-primary);
  background: var(--color-page-background);
  font-family: var(--font-sans);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.28; letter-spacing: 0.015em; }
h1 { font-size: clamp(2.5rem, 5.2vw, 5rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.45rem); }
h3 { font-size: clamp(1.25rem, 1.7vw, 1.55rem); }
p { color: var(--color-text-secondary); }
[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-small);
  color: var(--color-white);
  background: var(--color-primary);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 4px; }
.section { padding: clamp(72px, 9vw, 128px) 24px; }
.section-inner { width: min(100%, var(--content-width)); margin-inline: auto; }
.eyebrow {
  margin-bottom: 16px;
  color: var(--color-accent);
  font-family: var(--font-latin), var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.section-heading { max-width: 720px; }
.section-heading h2 { margin-bottom: 22px; }
.section-heading p:last-child { margin-bottom: 0; }
.section-heading-wide { max-width: 900px; }
.heading-split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: 72px; max-width: none; align-items: end; }
.centered-heading { margin-inline: auto; text-align: center; }
.centered-action { margin-top: 44px; text-align: center; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.35;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--color-white); background: var(--color-primary); }
.button-primary:hover { background: var(--color-primary-hover); }
.button-secondary { color: var(--color-primary); border-color: var(--color-primary); background: transparent; }
.button-secondary:hover { background: var(--color-secondary-hover); }
.button-light { color: var(--color-primary); background: var(--color-surface); }
.button-light:hover { background: var(--color-secondary-hover); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-primary); font-weight: 700; }
.text-link::after { content: "↗"; color: var(--color-accent); }
.text-link:hover { color: var(--color-primary-hover); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  color: var(--color-white);
  border-bottom: 1px solid rgb(var(--color-accent-rgb) / 0.72);
  background: rgb(12 43 34 / 0.9);
  box-shadow: 0 12px 32px rgb(5 24 18 / 0.2);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  backdrop-filter: blur(22px) saturate(125%);
}
body[data-page="home"] .site-header { background-color: #0B3328; }
.header-inner { width: min(100%, 1540px); min-height: var(--header-height); margin-inline: auto; padding: 0 clamp(24px, 3vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: max-content; }
.brand img { width: 68px; height: 68px; object-fit: contain; }
.brand span { display: grid; }
.brand strong { color: var(--color-white); font-family: var(--font-serif); font-size: 1.28rem; font-weight: 700; line-height: 1.2; text-shadow: 0 3px 12px rgb(0 0 0 / 0.22); }
.brand small { color: #D5A15F; font-family: var(--font-latin), var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; }
.primary-nav { display: flex; align-items: center; gap: clamp(14px, 1.75vw, 27px); color: rgb(255 255 255 / 0.9); }
.primary-nav > a:not(.button) { position: relative; font-size: 0.95rem; font-weight: 600; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; background: var(--color-accent); transform: scaleX(0); transition: transform 180ms ease; }
.primary-nav > a:hover::after, .primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.language-switch { display: flex; align-items: center; gap: 5px; color: rgb(255 255 255 / 0.82); }
.language-switch button { min-width: 38px; min-height: 38px; border: 0; border-radius: 50%; color: inherit; background: transparent; }
.language-switch button[aria-pressed="true"] { color: var(--color-primary); background: var(--color-surface); }
.nav-cta { min-height: 42px; padding: 9px 17px; font-size: 0.88rem; }
.site-header .nav-cta { color: var(--color-primary); background: var(--color-surface); }
.site-header .nav-cta:hover { background: var(--color-section-background); }
.nav-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 1px solid rgb(255 255 255 / 0.22); border-radius: 50%; background: rgb(255 255 255 / 0.1); }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--color-white); }

body.has-dialog { overflow: hidden; }
.language-overlay { position: fixed; z-index: 900; inset: 0; display: grid; place-items: center; padding: 24px; background: rgb(41 45 43 / 0.48); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.language-dialog { position: relative; width: min(100%, 880px); padding: 52px 72px 58px; overflow: hidden; border: 1px solid rgb(255 255 255 / 0.68); border-radius: 38px; background-color: #F0EDE6; background: rgb(240 237 230 / 0.84); box-shadow: 0 32px 90px rgb(24 37 32 / 0.24); -webkit-backdrop-filter: blur(28px) saturate(120%); backdrop-filter: blur(28px) saturate(120%); }
.language-brand { display: flex; align-items: center; gap: 28px; padding-right: 76px; }
.language-logo-wrap { display: grid; flex: 0 0 142px; width: 142px; height: 118px; place-items: center; }
.language-logo-wrap img { width: 132px; height: 112px; object-fit: contain; }
.language-brand-copy { transform: translateY(10px); }
.language-brand-copy p { margin: 0; color: var(--color-text-primary); }
.language-company-zh { font-family: var(--font-serif); font-size: clamp(1.95rem, 3.4vw, 2.7rem); font-weight: 700; letter-spacing: 0.04em; line-height: 1.25; text-shadow: 0 3px 10px rgb(var(--color-primary-rgb) / 0.24); }
.language-company-en { margin-top: 7px !important; font-family: var(--font-latin), var(--font-serif); font-size: 1.16rem; font-weight: 700; letter-spacing: 0.11em; line-height: 1.35; }
.language-brand-copy .language-company-en { color: #C57920; }
.language-contact-details { display: grid; gap: 5px; margin-top: 38px; }
.language-contact-details p { display: grid; grid-template-columns: 66px minmax(0, 1fr); gap: 10px; margin: 0; color: var(--color-text-primary); font-size: 1.02rem; line-height: 1.55; }
.language-contact-details strong { color: #C57920; font-weight: 800; }
.language-contact-details strong::after { content: ":"; }
.language-contact-details b { font-weight: 700; }
.language-contact-details a { border-bottom: 1px solid rgb(var(--color-primary-rgb) / 0.42); }
.language-contact-details a:hover { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.language-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; width: min(100%, 380px); margin-top: 34px; }
.language-actions .button { min-height: 54px; padding-inline: 24px; font-size: 1.02rem; }
.language-actions .button-secondary { background: var(--color-page-background); }
.language-actions .button-secondary:hover { background: var(--color-surface); }
.dialog-close { position: absolute; z-index: 2; top: 22px; right: 24px; width: 56px; height: 56px; border: 2px solid var(--color-accent); border-radius: 50%; color: var(--color-primary); background: rgb(255 254 251 / 0.62); box-shadow: inset 0 0 0 5px rgb(255 254 251 / 0.72), 0 8px 22px rgb(var(--color-primary-rgb) / 0.12); font-size: 2rem; line-height: 1; transition: background-color 180ms ease, transform 180ms ease; }
.dialog-close:hover { background: rgb(255 254 251 / 0.9); transform: translateY(-1px); }

.hero { position: relative; isolation: isolate; min-height: calc(100svh - var(--header-height)); padding: clamp(30px, 3vw, 44px) clamp(64px, 7vw, 136px) clamp(38px, 3.6vw, 54px); display: grid; align-items: start; color: var(--color-white); background: var(--color-primary) url("assets/hero-background.png") center / cover no-repeat; }
.hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: rgb(7 38 29 / 0.78); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr); gap: clamp(46px, 3.6vw, 62px); width: min(100%, 1640px); align-items: start; }
.hero-copy { max-width: 740px; padding-top: clamp(32px, 3vw, 54px); }
.hero-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.hero-kicker .eyebrow { margin-bottom: 0; color: #D5A15F; font-size: 0.94rem; letter-spacing: 0.08em; }
.hero-market { display: inline-flex; min-height: 38px; align-items: center; justify-content: center; padding: 7px 16px; border-radius: 999px; color: var(--color-primary); background: var(--color-page-background); font-family: var(--font-latin), var(--font-sans); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.18em; line-height: 1; }
.hero-company { margin-bottom: 18px; color: rgb(255 255 255 / 0.86); font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.06em; }
.hero-copy h1 { max-width: 740px; margin-bottom: 30px; color: var(--color-white); font-size: clamp(2.5rem, 3.3vw, 3.95rem); font-weight: 700; line-height: 1.2; text-shadow: 0 5px 18px rgb(0 0 0 / 0.32); }
.hero-copy h1 span { display: block; white-space: nowrap; }
.hero-proof { display: grid; grid-template-columns: repeat(3, max-content); gap: 0; margin: 0 0 30px; padding: 0; list-style: none; }
.hero-proof li { position: relative; display: flex; align-items: center; min-height: 42px; padding: 4px 28px 4px 22px; color: rgb(255 255 255 / 0.88); font-size: 0.84rem; font-weight: 600; line-height: 1.55; white-space: nowrap; }
.hero-proof li + li { border-left: 0; }
.hero-proof li::before { content: ""; position: absolute; top: 50%; left: 0; width: 4px; height: 28px; border-radius: 999px; background: #D5A15F; transform: translateY(-50%); }
.hero-lead { max-width: 700px; margin-bottom: 32px; color: rgb(255 255 255 / 0.84); font-size: clamp(0.96rem, 0.94vw, 1.04rem); line-height: 1.8; white-space: pre-line; }
.hero .button-row { gap: 14px; }
.hero .button { min-width: 178px; min-height: 52px; padding-inline: 26px; }
.hero .button-primary { color: var(--color-primary); background: var(--color-page-background); box-shadow: 0 12px 26px rgb(0 0 0 / 0.2); }
.hero .button-primary:hover { background: var(--color-surface); box-shadow: 0 15px 30px rgb(0 0 0 / 0.24); }
.hero .button-secondary { color: var(--color-white); border-color: rgb(255 255 255 / 0.78); background: rgb(255 255 255 / 0.04); }
.hero .button-secondary:hover { background: rgb(255 255 255 / 0.12); }
.hero-visual { position: relative; justify-self: end; width: min(100%, 820px); height: clamp(610px, 38vw, 720px); min-height: 0; }
.hero-image { display: block; object-fit: cover; }
.hero-image-main { position: absolute; top: 0; right: 0; width: 100%; height: 72%; border: 2px solid rgb(255 255 255 / 0.9); border-radius: 18px; object-fit: cover; object-position: center; box-shadow: 0 26px 60px rgb(0 0 0 / 0.28); }
.hero-image-card { position: absolute; right: 6.5%; bottom: 0; width: 87%; height: auto; aspect-ratio: 1256 / 477; border-radius: 16px; object-fit: contain; box-shadow: 0 24px 54px rgb(0 0 0 / 0.3); }

.capability-section { padding-block: clamp(70px, 7vw, 110px); background: var(--color-page-background); }
.capability-panel { display: grid; grid-template-columns: minmax(360px, 0.78fr) minmax(600px, 1.22fr); gap: clamp(46px, 4vw, 70px); width: min(100%, 1380px); align-items: center; padding: clamp(48px, 4.2vw, 68px); border: 1px solid rgb(255 255 255 / 0.88); border-radius: 38px; background: rgb(255 254 251 / 0.9); box-shadow: 0 22px 58px rgb(var(--color-primary-rgb) / 0.1); }
.capability-intro { max-width: 520px; color: var(--color-primary); }
.capability-intro .eyebrow { margin-bottom: 28px; color: var(--color-accent); }
.capability-intro h2 { margin-bottom: 24px; color: var(--color-primary); font-size: clamp(2.3rem, 3vw, 3rem); white-space: pre-line; }
[lang="zh-Hant"] .capability-intro h2 { white-space: pre; }
.capability-description { max-width: 540px; margin-bottom: 0; color: var(--color-text-secondary); line-height: 2; }
.capability-process-link { min-width: 240px; margin-top: 34px; border-color: var(--color-accent); border-radius: var(--radius-small); color: var(--color-accent); background: transparent; }
.capability-process-link::after { content: "→"; margin-left: 22px; font-size: 1.3em; line-height: 1; }
.capability-process-link:hover { border-color: var(--color-accent); color: var(--color-primary); background: rgb(var(--color-accent-rgb) / 0.08); }
.capability-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 0; padding: 0; list-style: none; }
.capability-card { display: grid; grid-template-columns: 54px 108px minmax(0, 1fr); gap: 16px; min-height: 148px; align-items: center; padding: 18px 20px; border: var(--border-soft); border-radius: var(--radius-medium); background: rgb(247 244 237 / 0.58); transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.capability-card:hover { border-color: rgb(var(--color-accent-rgb) / 0.42); box-shadow: 0 12px 28px rgb(var(--color-primary-rgb) / 0.07); transform: translateY(-2px); }
.capability-number { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; border-radius: 50%; color: var(--color-white); background: var(--color-accent); font-family: var(--font-latin), var(--font-sans); font-size: 1rem; font-weight: 700; line-height: 1; }
.capability-icon { display: grid; min-height: 100px; place-items: center; padding-left: 16px; border-left: var(--border-soft); }
.capability-icon img { width: 100px; height: 100px; object-fit: contain; }
.capability-card strong { color: var(--color-primary); font-size: 1.08rem; line-height: 1.65; white-space: pre-line; }
.categories-section { background: var(--color-section-background); }
.data-note { display: inline-flex; margin: 26px 0 0; padding: 6px 12px; border: 1px solid var(--color-accent); border-radius: 999px; color: var(--color-primary); font-size: 0.78rem; font-weight: 700; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 42px; }
.category-card { overflow: hidden; border-radius: var(--radius-medium); background: var(--color-surface); transition: transform 180ms ease, box-shadow 180ms ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.category-media { position: relative; display: grid; aspect-ratio: 4 / 3; place-items: center; overflow: hidden; background-color: var(--color-secondary-hover); background-image: repeating-linear-gradient(135deg, rgb(var(--color-primary-rgb) / 0.05) 0 2px, transparent 2px 16px); }
.category-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.category-card:hover img { transform: scale(1.025); }
.category-index { position: absolute; top: 16px; left: 16px; padding: 5px 9px; border-radius: 999px; color: var(--color-white); background: var(--color-primary); font-family: var(--font-latin); }
.image-fallback { color: var(--color-primary); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; }
.category-card-body { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px; }
.category-card-body strong { font-family: var(--font-serif); font-size: 1.2rem; }
.category-card-body > span { color: var(--color-accent); font-size: 1.3rem; }
.loading-message, .empty-message, .error-message { grid-column: 1 / -1; padding: 42px; border: var(--border-soft); border-radius: var(--radius-medium); text-align: center; background: var(--color-surface); }
.error-message { color: #8b3030; border-color: #b96868; }

.process-preview { min-height: 700px; padding-block: clamp(74px, 6vw, 102px); background: var(--color-primary) url("assets/background3.png") center / cover no-repeat; }
.process-preview .section-inner { width: min(100%, 1540px); }
.process-preview .section-heading { max-width: 1100px; }
.process-preview .eyebrow { color: #D5A15F; font-size: 0.95rem; }
.process-preview .eyebrow::after { content: "── ◆ ──"; display: block; margin-top: 12px; color: #D5A15F; letter-spacing: 0.06em; }
.process-preview h2 { margin-bottom: 0; color: var(--color-white); font-size: clamp(2.7rem, 4vw, 4rem); }
.process-preview strong { color: var(--color-white); }
.process-line { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin: clamp(54px, 5vw, 72px) 0 0; padding: 0; list-style: none; }
.process-line li { position: relative; min-height: 300px; padding: 0 clamp(16px, 2vw, 28px); text-align: center; }
.process-line li + li { border-left: 1px solid rgb(213 161 95 / 0.38); }
.process-line li + li::before { content: ""; position: absolute; top: 50%; left: -7px; width: 14px; height: 14px; background: #D5A15F; transform: translateY(-50%) rotate(45deg); }
.process-line span { display: block; margin-bottom: 12px; color: #D5A15F; font-family: var(--font-latin); font-size: 2rem; line-height: 1; }
.process-line img { width: 160px; height: 160px; margin: 0 auto 10px; object-fit: contain; }
.process-line strong { display: block; min-height: 76px; font-family: var(--font-serif); font-size: clamp(1rem, 1.25vw, 1.24rem); font-weight: 600; line-height: 1.75; white-space: pre-line; }
.process-actions { display: flex; justify-content: center; margin-top: 24px; }
.process-requirement-button { min-width: 220px; min-height: 54px; color: var(--color-primary); background: var(--color-surface); box-shadow: 0 12px 26px rgb(0 0 0 / 0.18); }
.process-requirement-button:hover { color: var(--color-primary); background: var(--color-page-background); box-shadow: 0 15px 30px rgb(0 0 0 / 0.22); }
.bulk-section { position: relative; overflow: hidden; min-height: 620px; padding-block: clamp(72px, 6vw, 96px); background: var(--color-page-background) url("assets/background2.png") center / cover no-repeat; }
.bulk-grid { display: grid; grid-template-columns: minmax(370px, 0.88fr) minmax(500px, 1.12fr); gap: clamp(40px, 4vw, 58px); width: min(100%, 1240px); align-items: center; }
.bulk-intro { max-width: 505px; }
.bulk-intro .eyebrow { margin-bottom: 21px; font-size: 0.86rem; }
.bulk-intro .eyebrow::after { content: ""; display: block; width: 50px; height: 3px; margin-top: 17px; background: var(--color-accent); }
.bulk-intro h2 { margin-bottom: 23px; font-size: clamp(2.58rem, 3.65vw, 3.55rem); line-height: 1.3; white-space: pre-line; }
.bulk-intro > p:not(.eyebrow) { max-width: 485px; margin-bottom: 0; color: var(--color-text-primary); font-size: 0.95rem; line-height: 1.88; }
.bulk-divider { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; width: min(100%, 330px); align-items: center; margin: 23px 0; color: var(--color-accent); }
.bulk-divider::before, .bulk-divider::after { content: ""; height: 1px; background: rgb(var(--color-accent-rgb) / 0.35); }
.bulk-divider span::before { content: "✣"; font-size: 1.55rem; line-height: 1; }
.bulk-grid .button { width: min(100%, 350px); min-height: 62px; padding-inline: 30px; justify-content: space-between; color: var(--color-white); background: var(--color-primary); box-shadow: 0 16px 34px rgb(var(--color-primary-rgb) / 0.18); font-size: 1.02rem; }
.bulk-grid .button::after { content: "→"; color: #D5A15F; font-size: 1.45em; line-height: 1; }
.bulk-grid .button:hover { background: var(--color-primary-hover); box-shadow: 0 19px 38px rgb(var(--color-primary-rgb) / 0.22); }
.bulk-list { margin: 0; padding: 0; border-top: 1px solid rgb(var(--color-accent-rgb) / 0.38); list-style: none; }
.bulk-list li { position: relative; display: flex; min-height: 70px; align-items: center; padding: 15px 64px 15px 12px; border-bottom: 1px solid rgb(var(--color-accent-rgb) / 0.38); color: var(--color-text-primary); font-family: var(--font-serif); font-size: clamp(0.98rem, 1.15vw, 1.15rem); }
.bulk-list li::after { content: "✓"; position: absolute; right: 12px; display: inline-flex; width: 35px; height: 35px; align-items: center; justify-content: center; border: 1px solid var(--color-accent); border-radius: 50%; color: var(--color-accent); font-family: var(--font-sans); font-size: 1.08rem; font-weight: 800; line-height: 1; }

.supply-section { padding-bottom: clamp(32px, 3vw, 46px); background: var(--color-page-background); }
.supply-layout { width: min(100%, 1380px); }
.supply-overview { display: grid; grid-template-columns: minmax(520px, 0.94fr) minmax(0, 1.06fr); gap: clamp(60px, 6vw, 92px); align-items: center; }
.supply-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.supply-photo-card { align-self: start; overflow: hidden; margin: 0; border: 1px solid rgb(var(--color-accent-rgb) / 0.7); border-radius: 16px; background: var(--color-primary); box-shadow: 0 10px 24px rgb(var(--color-primary-rgb) / 0.1); }
.supply-photo-card img { width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; object-position: center; }
.supply-photo-card figcaption { display: flex; min-height: 46px; align-items: center; gap: 16px; padding: 8px 18px; color: var(--color-white); background: var(--color-primary); }
.supply-photo-card figcaption span { color: #D5A15F; font-family: var(--font-latin); font-size: 1.12rem; }
.supply-photo-card figcaption strong { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; }
.supply-copy { max-width: 680px; }
.supply-copy .eyebrow { display: flex; align-items: center; gap: 18px; }
.supply-copy .eyebrow::after { content: ""; width: 84px; height: 1px; background: var(--color-accent); }
.supply-copy h2 { margin-bottom: 24px; color: var(--color-primary); font-size: clamp(2.35rem, 3.25vw, 3.45rem); }
.supply-copy > p:not(.eyebrow) { max-width: 650px; margin-bottom: 24px; color: var(--color-text-primary); font-size: 1rem; line-height: 2; }
.supply-quality { margin-top: clamp(72px, 8vw, 112px); }
.supply-quality-heading { max-width: 760px; margin-inline: auto; text-align: center; }
.supply-quality-heading .eyebrow { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 14px; }
.supply-quality-heading .eyebrow::before, .supply-quality-heading .eyebrow::after { content: ""; width: 76px; height: 1px; background: var(--color-accent); }
.supply-quality-heading h2 { margin-bottom: 10px; color: var(--color-primary); }
.supply-quality-heading > p:last-child { margin-bottom: 0; }
.supply-quality-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 36px; }
.supply-quality-card { display: grid; grid-template-columns: 54px minmax(0, 1fr) 88px; gap: 20px; min-height: 184px; align-items: center; padding: 28px; border: var(--border-soft); border-radius: 16px; background: var(--color-surface); box-shadow: 0 12px 28px rgb(var(--color-primary-rgb) / 0.07); }
.supply-quality-number { color: var(--color-accent); font-family: var(--font-latin); font-size: 1.9rem; line-height: 1; }
.supply-quality-card > div { min-height: 118px; padding-left: 20px; border-left: 1px solid rgb(var(--color-accent-rgb) / 0.42); }
.supply-quality-card h3 { margin-bottom: 10px; color: var(--color-primary); font-size: 1.22rem; }
.supply-quality-card p { margin-bottom: 0; font-size: 0.86rem; line-height: 1.8; }
.supply-quality-card > img { width: 88px; height: 88px; object-fit: contain; }
.supply-quality-card:nth-child(-n + 2) > img { transform: scale(1.28); transform-origin: center; }
.about-summary { background: var(--color-section-background); }
.about-summary-grid { display: grid; grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr); gap: clamp(48px, 8vw, 110px); align-items: center; }
.heritage-figure { display: grid; min-height: 420px; align-content: center; padding: 48px; border-radius: 180px 180px 28px 28px; color: var(--color-white); background: var(--color-primary); text-align: center; }
.heritage-figure span { color: var(--color-accent); font-family: var(--font-latin); font-size: clamp(5rem, 10vw, 9rem); line-height: 1; }
.heritage-figure p { max-width: 260px; margin: 22px auto 0; color: var(--color-white); }
.heritage-figure.compact { min-height: 300px; padding: 34px; }
.heritage-figure.compact span { font-size: clamp(4rem, 8vw, 7rem); }

.quality-section { background: var(--color-surface); }
.quality-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 46px; border-top: var(--border-soft); border-bottom: var(--border-soft); }
.quality-grid article { padding: 34px 34px 34px 0; }
.quality-grid article + article { padding-left: 34px; border-left: var(--border-soft); }
.quality-grid article > span { color: var(--color-accent); font-family: var(--font-latin); font-size: 1.25rem; }
.quality-grid h3 { margin: 26px 0 14px; }
.quality-grid p { margin-bottom: 0; }

.contact-cta, .process-balance { color: var(--color-white); background: var(--color-primary); }
.contact-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.contact-cta-inner > div { max-width: 820px; }
.contact-cta h2, .process-balance h2 { color: var(--color-white); }
.contact-cta p:not(.eyebrow), .process-balance p:not(.eyebrow) { color: rgb(255 255 255 / 0.78); }

.project-contact-section { position: relative; overflow: hidden; padding: 0 24px; color: var(--color-white); background: var(--color-page-background); }
.project-contact-grid { display: grid; grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr); width: min(100%, var(--content-width)); min-height: 650px; margin-inline: auto; overflow: visible; }
.project-contact-copy { position: relative; z-index: 0; display: flex; justify-content: flex-end; padding: clamp(52px, 4.2vw, 68px) clamp(38px, 4vw, 58px); background: #08372B url("assets/background4.png") center / cover no-repeat; }
.project-contact-copy::before { content: ""; position: absolute; z-index: -1; top: 0; right: 100%; bottom: 0; width: 50vw; background: inherit; }
.project-contact-content { width: min(100%, 520px); }
.project-contact-copy .eyebrow { display: inline-grid; gap: 10px; margin-bottom: 22px; color: #D5A15F; }
.project-contact-copy .eyebrow::after { content: ""; width: 215px; height: 1px; background: rgb(213 161 95 / 0.72); }
.project-contact-copy h2 { max-width: 520px; margin-bottom: 12px; color: var(--color-white); font-size: clamp(2.2rem, 2.75vw, 3rem); line-height: 1.4; }
.project-contact-lead { margin-bottom: 20px; color: rgb(255 255 255 / 0.82); font-size: 0.92rem; }
.project-contact-copy > .project-contact-content > .button { min-width: 250px; min-height: 52px; margin-bottom: 22px; color: var(--color-primary); box-shadow: 0 14px 30px rgb(0 0 0 / 0.2); }
.project-company-card { padding: 22px 28px 18px; border: 1px solid rgb(213 161 95 / 0.82); border-radius: 16px; background: rgb(4 35 27 / 0.34); }
.project-company-card h3 { margin-bottom: 12px; color: #D5A15F; font-family: var(--font-serif); font-size: 1.32rem; }
.project-company-card .company-details div { grid-template-columns: 78px minmax(0, 1fr); gap: 12px; padding: 5px 0; border-bottom: 1px dashed rgb(213 161 95 / 0.28); }
.project-company-card .company-details div:last-child { border-bottom: 0; }
.project-company-card .company-details dt { color: #D5A15F; font-size: 0.82rem; }
.project-company-card .company-details dd { color: rgb(255 255 255 / 0.9); font-size: 0.85rem; }
.project-visit { position: relative; z-index: 0; display: grid; grid-template-rows: auto auto; gap: 20px; padding: clamp(34px, 3.2vw, 48px); background: #F4EEE4; }
.project-visit::after { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 100%; width: 50vw; background: inherit; }
.company-map-panel { display: grid; width: 100%; min-width: 0; gap: 12px; }
.company-map { width: 100%; height: clamp(430px, 34vw, 480px); overflow: hidden; border: 1px solid rgb(var(--color-accent-rgb) / 0.35); border-radius: 24px; background: #EEE4D5; box-shadow: 0 14px 32px rgb(var(--color-primary-rgb) / 0.09); }
.company-map:fullscreen { width: 100vw; height: 100vh !important; border: 0; border-radius: 0; box-shadow: none; }
.company-map:-webkit-full-screen { width: 100vw; height: 100vh !important; border: 0; border-radius: 0; box-shadow: none; }
.company-map-iframe { display: block; width: 100%; height: 100%; border: 0; pointer-events: auto; }
.company-map-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.company-map-action { display: inline-flex; min-height: 42px; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid rgb(var(--color-accent-rgb) / 0.42); border-radius: 999px; color: var(--color-primary); background: rgb(255 254 251 / 0.72); font-family: inherit; font-size: 0.82rem; font-weight: 600; line-height: inherit; box-shadow: 0 8px 18px rgb(var(--color-primary-rgb) / 0.07); cursor: pointer; transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.company-map-action svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.company-map-action:hover { border-color: var(--color-accent); background: var(--color-white); box-shadow: 0 10px 22px rgb(var(--color-primary-rgb) / 0.11); transform: translateY(-1px); }
.company-map-action:focus-visible { outline: 3px solid rgb(var(--color-accent-rgb) / 0.34); outline-offset: 3px; }
.company-map-fullscreen[hidden] { display: none; }
.project-visit-note { display: grid; grid-template-columns: 66px minmax(0, 1fr); gap: 16px; align-items: center; padding: 20px 26px; border: 1px solid rgb(var(--color-accent-rgb) / 0.42); border-radius: 18px; color: var(--color-primary); background: rgb(255 254 251 / 0.64); box-shadow: 0 12px 26px rgb(var(--color-primary-rgb) / 0.09); }
.project-visit-note img { width: 66px; height: 66px; object-fit: contain; }
.project-visit-note h3 { margin-bottom: 2px; color: var(--color-primary); font-family: var(--font-serif); font-size: 1.2rem; }
.project-visit-note p { margin: 0; color: var(--color-text-primary); font-size: 0.84rem; }

.site-footer { position: relative; padding: 108px 24px 26px; color: var(--color-white); background: #292D2B; }
.site-footer .section-inner { width: min(100%, var(--content-width)); }
.footer-grid { display: grid; grid-template-columns: minmax(300px, 1.08fr) minmax(190px, 0.62fr) minmax(310px, 1fr); gap: clamp(40px, 4.5vw, 62px); align-items: center; }
.footer-grid > div:nth-child(3) { display: none; }
.footer-grid > div:nth-child(2) { min-height: 260px; padding-left: clamp(34px, 3.2vw, 50px); border-left: 1px solid rgb(255 255 255 / 0.15); }
.footer-grid h2 { margin-bottom: 18px; color: #6DBA72; font-family: var(--font-serif); font-size: 1.18rem; }
.footer-grid > div:nth-child(2) h2::after { content: ""; display: block; width: 48px; height: 2px; margin-top: 14px; background: #6DBA72; }
.footer-brand { display: flex; align-items: center; gap: 22px; }
.footer-brand img { width: 72px; height: 72px; object-fit: contain; }
.footer-brand strong { display: block; font-family: var(--font-serif); font-size: 1.45rem; }
.footer-brand p { margin: 6px 0 0; color: #88B28F; font-size: 0.76rem; letter-spacing: 0.05em; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { position: relative; padding-left: 21px; font-size: 0.98rem; }
.footer-links a::before { content: "›"; position: absolute; left: 0; color: #6DBA72; font-size: 1.45em; line-height: 1; }
.footer-links a:hover, .company-details a:hover { color: var(--color-accent); }
.company-details { margin: 0; }
.company-details div { display: grid; grid-template-columns: 52px 1fr; gap: 10px; padding: 5px 0; }
.company-details dt { color: var(--color-secondary); font-size: 0.78rem; }
.company-details dd { margin: 0; font-size: 0.82rem; }
.footer-callout { min-height: 260px; padding: 32px 34px; border: 1px solid rgb(255 255 255 / 0.12); border-radius: 24px; background: rgb(5 40 31 / 0.2); }
.footer-callout h2 { margin-bottom: 20px; color: var(--color-white); font-size: 1.28rem; }
.footer-callout h2::after { content: ""; display: block; width: 48px; height: 2px; margin-top: 22px; background: #6DBA72; }
.footer-callout p { margin-bottom: 24px; color: rgb(255 255 255 / 0.7); font-size: 0.86rem; line-height: 1.85; }
.footer-callout .button { width: 100%; min-height: 50px; justify-content: space-between; color: var(--color-white); background: #5B9F62; }
.footer-callout .button::after { content: "›"; font-size: 1.5em; line-height: 1; }
.footer-callout .button:hover { background: #67AE6D; }
.footer-bottom { display: flex; justify-content: center; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgb(255 255 255 / 0.18); color: #9CB59E; font-size: 0.78rem; text-align: center; }
.footer-bottom > a { position: absolute; top: 20px; left: 50%; display: inline-flex; min-width: 160px; min-height: 46px; align-items: center; justify-content: center; border: 1px solid rgb(109 186 114 / 0.58); border-radius: 999px; color: #6DBA72; font-size: 0.96rem; transform: translateX(-50%); transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease; }
.footer-bottom > a:hover { border-color: #6DBA72; color: var(--color-white); background: rgb(109 186 114 / 0.12); }
.page-hero { padding: clamp(74px, 10vw, 140px) 24px; background: var(--color-section-background); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: 70px; align-items: center; }
.page-hero h1 { max-width: 900px; margin-bottom: 24px; }
.page-hero p:last-child { max-width: 740px; font-size: 1.06rem; }
.compact-hero { padding-block: clamp(60px, 8vw, 104px); }
.compact-hero .section-inner { max-width: var(--content-width); }
.compact-hero h1 { max-width: 900px; }
.official-about-grid { display: grid; grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr); gap: clamp(50px, 8vw, 120px); align-items: start; }
.official-copy { max-width: 800px; }
.official-copy p { margin-bottom: 24px; color: var(--color-text-primary); font-size: 1.02rem; line-height: 2; }
.muted-section { background: var(--color-section-background); }
.contact-info-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.contact-info-layout .button { margin-top: 20px; }
.company-panel { padding: clamp(28px, 4vw, 48px); border: var(--border-soft); border-radius: var(--radius-medium); background: var(--color-surface); }
.company-panel h2 { font-size: 1.6rem; }
.company-panel .company-details div { grid-template-columns: 72px 1fr; padding: 10px 0; border-bottom: var(--border-soft); }
.company-panel .company-details div:last-child { border-bottom: 0; }
.company-panel .company-details dt { color: var(--color-accent); font-weight: 700; }
.company-panel .company-details dd { font-size: 0.95rem; }

.catalog-section { min-height: 60vh; }
.filter-bar { display: grid; grid-template-columns: 0.8fr 0.8fr 1.4fr; gap: 16px; padding: 24px; border: var(--border-soft); border-radius: var(--radius-medium); background: var(--color-surface); }
.filter-bar label, .field { display: grid; gap: 8px; color: var(--color-primary); font-size: 0.83rem; font-weight: 700; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgb(var(--color-primary-rgb) / 0.24);
  border-radius: var(--radius-small);
  color: var(--color-text-primary);
  background: var(--color-surface);
}
input, select { padding: 10px 13px; }
textarea { padding: 13px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: var(--color-secondary); }
input:focus, select:focus, textarea:focus { border-color: var(--color-primary); outline: 3px solid rgb(var(--color-primary-rgb) / 0.14); }
[aria-invalid="true"] { border-color: #a33f3f; }
.catalog-meta { display: flex; justify-content: space-between; gap: 20px; margin: 28px 0 18px; }
.catalog-meta p { margin: 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card { overflow: hidden; border: var(--border-soft); border-radius: var(--radius-medium); background: var(--color-surface); transition: transform 180ms ease, box-shadow 180ms ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.product-media, .detail-media { position: relative; display: grid; aspect-ratio: 4 / 3; place-items: center; overflow: hidden; background-color: var(--color-secondary-hover); background-image: repeating-linear-gradient(135deg, rgb(var(--color-primary-rgb) / 0.05) 0 2px, transparent 2px 16px); }
.product-media img, .detail-media img { width: 100%; height: 100%; object-fit: cover; }
.new-badge { position: absolute; top: 14px; right: 14px; padding: 5px 10px; border-radius: 999px; color: var(--color-white); background: var(--color-primary); font-size: 0.76rem; font-weight: 700; }
.product-card-body { padding: 24px; }
.product-card-meta { display: flex; flex-wrap: wrap; gap: 7px 12px; color: var(--color-accent); font-size: 0.76rem; font-weight: 700; }
.product-card h2 { margin: 12px 0 5px; font-size: 1.35rem; }
.product-code { margin-bottom: 18px; font-family: var(--font-latin), monospace; font-size: 0.82rem; }
.product-status { margin: 24px 0; }

.detail-section { min-height: 70vh; padding-top: 42px; }
.detail-back { margin-bottom: 34px; }
.detail-back::after { content: ""; }
.detail-back::before { content: "←"; color: var(--color-accent); }
.product-detail { display: grid; grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr); gap: clamp(44px, 7vw, 90px); align-items: center; }
.detail-media { aspect-ratio: 1 / 1; border-radius: var(--radius-large); }
.detail-copy h1 { margin-bottom: 24px; font-size: clamp(2.3rem, 4.5vw, 4.4rem); }
.detail-facts { margin: 0 0 28px; border-top: var(--border-soft); }
.detail-facts div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 13px 0; border-bottom: var(--border-soft); }
.detail-facts dt { color: var(--color-accent); font-size: 0.82rem; font-weight: 700; }
.detail-facts dd { margin: 0; }
.detail-description { margin-bottom: 32px; }
.detail-description h2 { font-size: 1.25rem; }

.process-symbol { display: flex; align-items: center; justify-content: center; gap: 24px; min-height: 260px; border-radius: 130px 130px 26px 26px; color: var(--color-white); background: var(--color-primary); }
.process-symbol span { font-family: var(--font-latin); font-size: clamp(3rem, 6vw, 5.5rem); }
.process-symbol span + span::before { content: "→"; margin-right: 24px; color: var(--color-accent); font-size: 2rem; }
.process-detail-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 0; border-top: var(--border-soft); list-style: none; }
.process-detail-list li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; min-height: 240px; padding: 34px 30px 34px 0; border-bottom: var(--border-soft); }
.process-detail-list li:not(:nth-child(3n + 1)) { padding-left: 30px; border-left: var(--border-soft); }
.process-detail-list > li > span { color: var(--color-accent); font-family: var(--font-latin); font-size: 1.2rem; }
.process-detail-list h2 { margin-bottom: 15px; font-size: 1.35rem; }
.process-detail-list p { margin: 0; }

.contact-layout { display: grid; grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr); gap: clamp(40px, 7vw, 88px); align-items: start; }
.contact-sidebar { position: sticky; top: calc(var(--header-height) + 28px); display: grid; gap: 24px; }
.contact-direct { display: grid; gap: 8px; padding: 28px; border-radius: var(--radius-medium); background: var(--color-section-background); }
.contact-direct p { margin-bottom: 8px; }
.contact-form { display: grid; gap: 22px; padding: clamp(28px, 5vw, 54px); border: var(--border-soft); border-radius: var(--radius-large); background: var(--color-surface); box-shadow: var(--shadow-soft); }
.contact-form-heading { margin-bottom: 6px; }
.contact-form-heading h2 { margin-bottom: 8px; font-size: 2rem; }
.contact-form-heading p { margin: 0; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-row-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.address-row { grid-template-columns: 0.42fr 1.58fr; }
.phone-group { display: grid; grid-template-columns: 88px 1fr; gap: 8px; }
.field > span:first-child { min-height: 26px; }
.field em { color: #9c3030; font-style: normal; }
.field small { margin-left: 5px; color: var(--color-accent); font-size: 0.7rem; }
.field-error { min-height: 18px; color: #983636; font-size: 0.76rem; font-weight: 500; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
.form-compatibility-note { margin: 0; padding: 14px 16px; border-left: 3px solid var(--color-accent); background: var(--color-page-background); font-size: 0.82rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.form-status { min-height: 26px; padding: 0; font-weight: 700; }
.form-status[data-state="sending"] { color: var(--color-text-secondary); }
.form-status[data-state="success"] { color: var(--color-primary); }
.form-status[data-state="error"] { color: #983636; }

@media (max-width: 1280px) and (min-width: 1121px) {
  .hero-grid { grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr); gap: 38px; }
  .hero-copy h1 { font-size: clamp(2.5rem, 3.7vw, 3.05rem); }
  .hero-proof { grid-template-columns: 1fr; gap: 5px; }
  .hero-visual { width: min(100%, 760px); height: 560px; }
  .capability-panel { grid-template-columns: 1fr; gap: 44px; }
  .capability-intro { max-width: 720px; }
  .capability-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1120px) {
  .primary-nav { gap: 13px; }
  .primary-nav > a:not(.button) { font-size: 0.84rem; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr); gap: 38px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 3.8vw, 3.05rem); }
  .hero-proof { grid-template-columns: 1fr; gap: 5px; }
  .hero-proof li { padding-right: 12px; font-size: 0.78rem; }
  .hero-visual { height: 540px; min-height: 0; }
  .capability-panel { grid-template-columns: 1fr; gap: 44px; }
  .capability-intro { max-width: 720px; }
  .capability-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .supply-quality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .supply-quality-card:last-child { grid-column: 1 / -1; }
  .process-line { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 48px; }
  .process-line li:nth-child(3n + 1) { border-left: 0; }
  .process-line li:nth-child(3n + 1)::before { display: none; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr); }
  .footer-callout { grid-column: 1 / -1; min-height: auto; }
}

@media (max-width: 980px) {
  :root { --header-height: 86px; }
  .header-inner { min-height: var(--header-height); padding-inline: 20px; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 20px;
    border: 1px solid rgb(var(--color-accent-rgb) / 0.46);
    border-radius: 0 0 var(--radius-medium) var(--radius-medium);
    background: rgb(12 43 34 / 0.98);
    box-shadow: 0 18px 40px rgb(5 24 18 / 0.28);
  }
  .primary-nav.is-open { display: grid; }
  .primary-nav > a { min-height: 46px; display: flex; align-items: center; }
  .primary-nav > a:not(.button)::after { bottom: 3px; }
  .nav-cta { display: inline-flex; }
  .language-switch { justify-content: flex-start; padding-block: 6px; }
  .hero { min-height: auto; }
  .hero-grid, .page-hero-grid, .bulk-grid, .about-summary-grid, .official-about-grid, .contact-info-layout, .contact-layout, .product-detail { grid-template-columns: 1fr; }
  .bulk-section { min-height: auto; }
  .bulk-grid { gap: 46px; }
  .bulk-intro { max-width: 720px; }
  .supply-overview { grid-template-columns: 1fr; gap: 52px; }
  .supply-copy { max-width: 760px; }
  .hero-copy { max-width: 800px; padding-top: 0; }
  .hero-copy h1 { font-size: clamp(2.9rem, 7vw, 4.1rem); }
  .hero-proof { grid-template-columns: repeat(3, max-content); gap: 0; }
  .hero-visual { width: 100%; max-width: 860px; height: min(740px, calc((100vw - 40px) * 0.94)); min-height: 0; margin-inline: auto; }
  .heading-split { grid-template-columns: 1fr; gap: 24px; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-detail-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-detail-list li:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
  .process-detail-list li:nth-child(even) { padding-left: 28px; border-left: var(--border-soft); }
  .contact-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-cta-inner { align-items: flex-start; flex-direction: column; }
  .project-contact-grid { grid-template-columns: 1fr; }
  .project-contact-copy { justify-content: center; }
  .project-contact-content { width: min(100%, 760px); }
  .project-visit { grid-template-rows: auto auto; }
  .company-map { height: 380px; }
  .project-contact-copy::before { right: -50vw; left: -50vw; width: auto; }
  .project-visit::after { right: -50vw; left: -50vw; width: auto; }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-grid article, .quality-grid article + article { padding: 28px 0; border-left: 0; border-top: var(--border-soft); }
  .quality-grid article:first-child { border-top: 0; }
}

@media (max-width: 720px) {
  .section { padding: 68px 18px; }
  .language-dialog { max-height: calc(100vh - 32px); padding: 34px 24px 32px; overflow-y: auto; border-radius: 28px; }
  .language-brand { gap: 16px; padding-right: 48px; }
  .language-logo-wrap { flex-basis: 88px; width: 88px; height: 80px; }
  .language-logo-wrap img { width: 86px; height: 76px; }
  .language-company-zh { font-size: clamp(1.45rem, 6.5vw, 1.85rem); }
  .language-company-en { font-size: 0.8rem; letter-spacing: 0.07em; }
  .language-contact-details { margin-top: 28px; }
  .language-contact-details p { grid-template-columns: 54px minmax(0, 1fr); gap: 7px; font-size: 0.84rem; line-height: 1.5; }
  .language-actions { gap: 10px; width: 100%; margin-top: 28px; }
  .language-actions .button { min-height: 50px; padding-inline: 12px; font-size: 0.94rem; }
  .dialog-close { top: 16px; right: 16px; width: 46px; height: 46px; font-size: 1.7rem; }
  .hero { padding: 52px 18px 64px; }
  .hero-grid { gap: 40px; }
  .hero-kicker { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-copy h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .hero-copy h1 span { white-space: normal; }
  .hero-lead { margin-bottom: 28px; line-height: 1.8; }
  .hero .button-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero .button { width: 100%; min-width: 0; padding-inline: 18px; }
  .hero-proof { grid-template-columns: 1fr; margin-bottom: 28px; }
  .hero-proof li { min-height: 46px; padding: 9px 14px 9px 18px; }
  .hero-proof li + li { border-top: 1px solid rgb(255 255 255 / 0.16); border-left: 0; }
  .hero-proof li::before { left: 2px; }
  .hero-visual { width: 100%; min-height: 0; height: min(620px, calc((100vw - 36px) * 1.04)); }
  .hero-image-main { width: 100%; }
  .hero-image-card { right: 5%; width: 90%; }
  .bulk-section { padding: 58px 18px; background-position: 36% center; }
  .bulk-grid { gap: 36px; }
  .bulk-intro h2 { font-size: clamp(2.25rem, 10.2vw, 3rem); }
  .bulk-grid .button { width: 100%; }
  .bulk-list li { min-height: 64px; padding: 13px 56px 13px 4px; }
  .bulk-list li::after { right: 4px; width: 34px; height: 34px; }
  .supply-section { padding: 68px 18px 28px; }
  .supply-gallery { gap: 10px; }
  .supply-photo-card figcaption { gap: 10px; padding-inline: 12px; }
  .supply-quality { margin-top: 64px; }
  .supply-quality-grid { grid-template-columns: 1fr; gap: 14px; }
  .supply-quality-card:last-child { grid-column: auto; }
  .supply-quality-card { grid-template-columns: 42px minmax(0, 1fr) 72px; min-height: 160px; padding: 22px 18px; }
  .supply-quality-card > img { width: 72px; height: 72px; }
  .capability-panel { gap: 36px; padding: 40px 22px; border-radius: 26px; }
  .capability-cards { grid-template-columns: 1fr; gap: 14px; }
  .capability-intro h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); white-space: pre-line; }
  .capability-card { grid-template-columns: 44px 78px minmax(0, 1fr); min-height: 132px; padding: 18px 16px; }
  .capability-number { width: 44px; height: 44px; font-size: 0.85rem; }
  .capability-icon { min-height: 72px; padding-left: 14px; }
  .capability-icon img { width: 68px; height: 68px; }
  .capability-card strong { font-size: 0.98rem; }
  .capability-process-link { width: 100%; }
  .category-grid, .product-grid { grid-template-columns: 1fr; }
  .process-preview { padding-block: 68px; }
  .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .process-line li { min-height: 270px; padding-inline: 12px; }
  .process-line li:nth-child(3n + 1) { border-left: 1px solid rgb(213 161 95 / 0.38); }
  .process-line li:nth-child(3n + 1)::before { display: block; }
  .process-line li:nth-child(odd) { border-left: 0; }
  .process-line li:nth-child(odd)::before { display: none; }
  .process-line img { width: 142px; height: 142px; }
  .heritage-figure { min-height: 340px; }
  .filter-bar { grid-template-columns: 1fr; }
  .catalog-meta { align-items: flex-start; flex-direction: column; }
  .process-detail-list { grid-template-columns: 1fr; }
  .process-detail-list li, .process-detail-list li:nth-child(even) { min-height: auto; padding: 28px 0; border-left: 0; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-row, .form-row-three, .address-row { grid-template-columns: 1fr; }
  .site-footer { padding: 96px 18px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > div:nth-child(2) { min-height: auto; padding: 34px 0 0; border-top: 1px solid rgb(255 255 255 / 0.15); border-left: 0; }
  .footer-callout { grid-column: auto; padding: 30px 26px; }
  .footer-bottom > a { min-width: 154px; min-height: 48px; }
  .project-contact-section { padding: 0 18px; }
  .project-contact-copy, .project-visit { padding: 44px 20px; }
  .project-contact-copy h2 { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .project-contact-copy > .project-contact-content > .button { width: 100%; min-width: 0; }
  .project-company-card { padding: 24px 20px 20px; }
  .company-map { height: 320px; }
  .project-visit-note { grid-template-columns: 64px minmax(0, 1fr); padding: 20px; }
  .project-visit-note img { width: 64px; height: 64px; }
  .footer-bottom { align-items: center; flex-direction: column; }
}

@media (max-width: 420px) {
  .brand small { display: none; }
  .brand strong { font-size: 1.05rem; }
  .brand img { width: 54px; height: 54px; }
  .button-row, .language-actions, .form-actions { align-items: stretch; flex-direction: column; }
  .button-row .button, .language-actions .button, .form-actions .button { width: 100%; }
  .hero .button-row { grid-template-columns: 1fr; }
  .hero-proof { display: grid; }
  .hero-visual { min-height: 0; }
  .supply-gallery { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: 1fr; row-gap: 22px; }
  .process-line li, .process-line li:nth-child(n) { min-height: auto; padding: 20px 0; border-top: 1px solid rgb(213 161 95 / 0.28); border-left: 0; }
  .process-line li::before, .process-line li:nth-child(n)::before { display: none; }
  .company-panel { padding: 24px 18px; }
  .company-panel .company-details div { grid-template-columns: 62px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Inner-page visual system
   Extends the homepage's forest green, warm ivory and brass design language. */
body:not([data-page="home"]) main { overflow: clip; }

body:not([data-page="home"]) .page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 440px;
  display: grid;
  align-items: center;
  padding-block: clamp(76px, 9vw, 132px);
  color: var(--color-white);
  background-color: #0B3328;
  background-image:
    linear-gradient(90deg, rgb(6 38 29 / 0.96) 0%, rgb(10 50 39 / 0.9) 58%, rgb(10 50 39 / 0.66) 100%),
    url("assets/background3.png");
  background-position: center;
  background-size: cover;
}
body:not([data-page="home"]) .page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(50px, 7vw, 98px);
  right: clamp(28px, 7vw, 118px);
  width: clamp(180px, 23vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgb(213 161 95 / 0.48);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgb(213 161 95 / 0.06), 0 0 0 72px rgb(213 161 95 / 0.035);
}
body:not([data-page="home"]) .page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, #D5A15F 18%, #D5A15F 82%, transparent);
}
body:not([data-page="home"]) .page-hero .section-inner { position: relative; z-index: 1; }
body:not([data-page="home"]) .page-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: #D5A15F;
  font-size: 0.9rem;
}
body:not([data-page="home"]) .page-hero .eyebrow::after { content: ""; width: 74px; height: 1px; background: currentColor; }
body:not([data-page="home"]) .page-hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
  color: var(--color-white);
  font-size: clamp(2.6rem, 4.6vw, 4.7rem);
  line-height: 1.24;
  text-shadow: 0 5px 18px rgb(0 0 0 / 0.24);
}
body:not([data-page="home"]) .page-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.9;
}
body[data-page="products"] .page-hero p:last-child { white-space: pre-line; }
body:not([data-page="home"]) .compact-hero { min-height: 390px; }
body:not([data-page="home"]) .compact-hero .section-inner { padding-right: min(31vw, 410px); }
body:not([data-page="home"]) .section:not(.process-balance) { position: relative; }

/* Company page */
body[data-page="about"] .page-hero {
  background-image:
    linear-gradient(90deg, rgb(6 38 29 / 0.96) 0%, rgb(10 50 39 / 0.88) 62%, rgb(10 50 39 / 0.7) 100%),
    url("assets/background4.png");
}
body[data-page="about"] .page-hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  gap: clamp(50px, 8vw, 112px);
}
body[data-page="about"] .heritage-figure.compact {
  position: relative;
  min-height: 320px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgb(213 161 95 / 0.74);
  border-radius: 180px 180px 28px 28px;
  background: rgb(255 254 251 / 0.08);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.25), 0 28px 70px rgb(0 0 0 / 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
body[data-page="about"] .heritage-figure.compact::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: inherit;
}
body[data-page="about"] .heritage-figure.compact span {
  position: relative;
  color: #D5A15F;
  text-shadow: 0 8px 24px rgb(0 0 0 / 0.22);
}
body[data-page="about"] .heritage-figure.compact p { position: relative; color: rgb(255 255 255 / 0.86); }
body[data-page="about"] main > .section:first-of-type {
  background: radial-gradient(circle at 10% 20%, rgb(var(--color-accent-rgb) / 0.08), transparent 28%), var(--color-page-background);
}
body[data-page="about"] .official-about-grid {
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(44px, 7vw, 100px);
  padding: clamp(38px, 5vw, 70px);
  border: 1px solid rgb(255 255 255 / 0.9);
  border-radius: 38px;
  background: rgb(255 254 251 / 0.88);
  box-shadow: 0 24px 64px rgb(var(--color-primary-rgb) / 0.1);
}
body[data-page="about"] .official-about-grid .section-heading { padding-top: 4px; }
body[data-page="about"] .official-about-grid .section-heading h2 { color: var(--color-primary); }
body[data-page="about"] .official-copy {
  padding-left: clamp(24px, 3vw, 44px);
  border-left: 1px solid rgb(var(--color-accent-rgb) / 0.48);
}
body[data-page="about"] .official-copy p { margin-bottom: 20px; color: var(--color-text-primary); line-height: 2.05; }
body[data-page="about"] .official-copy p:last-child { margin-bottom: 0; }
body[data-page="about"] .muted-section {
  padding-block: clamp(38px, calc(9vw - 50px), 78px);
  background: linear-gradient(rgb(234 229 219 / 0.91), rgb(234 229 219 / 0.91)), url("assets/background2.png") center / cover no-repeat;
}
body[data-page="about"] .muted-section .supply-quality { margin-top: 0; }
body[data-page="about"] .quality-grid { gap: 22px; margin-top: 44px; border: 0; }
body[data-page="about"] .quality-grid article,
body[data-page="about"] .quality-grid article + article {
  min-height: 280px;
  padding: 34px;
  border: 1px solid rgb(var(--color-primary-rgb) / 0.13);
  border-radius: 20px;
  background: rgb(255 254 251 / 0.9);
  box-shadow: 0 12px 30px rgb(var(--color-primary-rgb) / 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
body[data-page="about"] .quality-grid article:hover {
  border-color: rgb(var(--color-accent-rgb) / 0.54);
  box-shadow: 0 18px 38px rgb(var(--color-primary-rgb) / 0.11);
  transform: translateY(-4px);
}
body[data-page="about"] .quality-grid article > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-accent);
  font-size: 0.98rem;
}
body[data-page="about"] .quality-grid h3 { margin: 30px 0 14px; color: var(--color-primary); }
body[data-page="about"] main > .section:last-of-type { background: var(--color-page-background); }
body[data-page="about"] .contact-info-layout {
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 7vw, 90px);
  padding: clamp(38px, 5vw, 68px);
  border-radius: 34px;
  background: var(--color-primary);
  box-shadow: 0 24px 58px rgb(var(--color-primary-rgb) / 0.16);
}
body[data-page="about"] .contact-info-layout .section-heading h2 { color: var(--color-white); }
body[data-page="about"] .contact-info-layout .section-heading .eyebrow { color: #D5A15F; }
body[data-page="about"] .contact-info-layout .company-panel {
  border-color: rgb(213 161 95 / 0.55);
  background: rgb(255 254 251 / 0.98);
}

/* Catalog page */
body[data-page="products"] .catalog-section {
  min-height: 70vh;
  background: radial-gradient(circle at 92% 8%, rgb(var(--color-accent-rgb) / 0.09), transparent 24%), var(--color-page-background);
}
body[data-page="products"] .filter-bar {
  position: relative;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgb(var(--color-primary-rgb) / 0.13);
  border-top: 4px solid var(--color-accent);
  border-radius: 20px;
  background: rgb(255 254 251 / 0.95);
  box-shadow: 0 16px 42px rgb(var(--color-primary-rgb) / 0.09);
}
body[data-page="products"] .filter-bar label { color: var(--color-primary); letter-spacing: 0.03em; }
body[data-page="products"] .filter-bar input,
body[data-page="products"] .filter-bar select {
  border-color: rgb(var(--color-primary-rgb) / 0.2);
  background-color: var(--color-page-background);
}
body[data-page="products"] .catalog-meta {
  align-items: center;
  margin: 34px 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(var(--color-accent-rgb) / 0.35);
}
body[data-page="products"] .catalog-meta strong {
  display: inline-flex;
  min-width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-latin);
  font-size: 1rem;
}
body[data-page="products"] .product-grid { gap: 26px; }
body[data-page="products"] .product-card {
  border: 1px solid rgb(var(--color-primary-rgb) / 0.12);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgb(var(--color-primary-rgb) / 0.055);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
body[data-page="products"] .product-card:hover {
  border-color: rgb(var(--color-accent-rgb) / 0.52);
  box-shadow: 0 22px 48px rgb(var(--color-primary-rgb) / 0.13);
  transform: translateY(-6px);
}
body[data-page="products"] .product-media {
  aspect-ratio: 4 / 3.15;
  border-bottom: 1px solid rgb(var(--color-accent-rgb) / 0.26);
  background-color: var(--color-section-background);
}
body[data-page="products"] .product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgb(5 39 30 / 0.12));
  pointer-events: none;
}
body[data-page="products"] .product-card-body { padding: 26px 26px 28px; }
body[data-page="products"] .product-card-meta span {
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid rgb(var(--color-accent-rgb) / 0.44);
  border-radius: 999px;
  background: rgb(var(--color-accent-rgb) / 0.07);
}
body[data-page="products"] .product-card h2 { margin-top: 16px; color: var(--color-primary); font-size: 1.5rem; }
body[data-page="products"] .product-card .text-link {
  width: 100%;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgb(var(--color-primary-rgb) / 0.12);
}
body[data-page="products"] .new-badge {
  z-index: 1;
  color: var(--color-primary);
  background: #D5A15F;
  box-shadow: 0 8px 18px rgb(0 0 0 / 0.16);
}

/* Product detail page */
body[data-page="productDetail"] .detail-section {
  min-height: 75vh;
  padding: 48px 24px clamp(84px, 9vw, 128px);
  background: linear-gradient(180deg, #0B3328 0 190px, var(--color-page-background) 190px 100%);
}
body[data-page="productDetail"] .detail-back {
  min-height: 42px;
  margin-bottom: 30px;
  padding: 8px 16px;
  border: 1px solid rgb(213 161 95 / 0.6);
  border-radius: 999px;
  color: var(--color-white);
  background: rgb(255 255 255 / 0.06);
}
body[data-page="productDetail"] .detail-back:hover { color: #D5A15F; background: rgb(255 255 255 / 0.1); }
body[data-page="productDetail"] .product-detail {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgb(255 255 255 / 0.9);
  border-radius: 34px;
  background: rgb(255 254 251 / 0.98);
  box-shadow: 0 28px 72px rgb(var(--color-primary-rgb) / 0.15);
}
body[data-page="productDetail"] .detail-media {
  aspect-ratio: 1 / 1;
  border: 1px solid rgb(var(--color-accent-rgb) / 0.48);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgb(var(--color-primary-rgb) / 0.12);
}
body[data-page="productDetail"] .detail-copy { padding-block: 8px; }
body[data-page="productDetail"] .detail-copy h1 {
  margin-bottom: 28px;
  color: var(--color-primary);
  font-size: clamp(2.45rem, 4.3vw, 4.1rem);
}
body[data-page="productDetail"] .detail-facts {
  overflow: hidden;
  border: 1px solid rgb(var(--color-primary-rgb) / 0.13);
  border-radius: 14px;
  background: var(--color-page-background);
}
body[data-page="productDetail"] .detail-facts div { padding: 14px 18px; }
body[data-page="productDetail"] .detail-facts div:last-child { border-bottom: 0; }
body[data-page="productDetail"] .detail-description { padding-left: 20px; border-left: 3px solid var(--color-accent); }
body[data-page="productDetail"] .detail-description h2 { color: var(--color-primary); }
body[data-page="productDetail"] .product-status { margin-top: 44px; }

/* Production process page */
body[data-page="process"] .process-symbol {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgb(213 161 95 / 0.7);
  border-radius: 160px 160px 28px 28px;
  background: rgb(255 254 251 / 0.08);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.2), 0 28px 70px rgb(0 0 0 / 0.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
body[data-page="process"] .process-symbol span { color: var(--color-white); text-shadow: 0 6px 22px rgb(0 0 0 / 0.2); }
body[data-page="process"] .process-symbol span:first-child { color: #D5A15F; }
body[data-page="process"] main > .section:first-of-type {
  background: radial-gradient(circle at 8% 8%, rgb(var(--color-accent-rgb) / 0.08), transparent 24%), var(--color-page-background);
}
body[data-page="process"] .process-detail-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  border: 0;
}
body[data-page="process"] .process-detail-list li,
body[data-page="process"] .process-detail-list li:not(:nth-child(3n + 1)) {
  position: relative;
  grid-template-columns: 1fr;
  gap: 26px;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgb(var(--color-primary-rgb) / 0.13);
  border-radius: 20px;
  background: var(--color-surface);
  box-shadow: 0 10px 26px rgb(var(--color-primary-rgb) / 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
body[data-page="process"] .process-detail-list li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  border-radius: 0 0 0 72px;
  background: rgb(var(--color-accent-rgb) / 0.09);
}
body[data-page="process"] .process-detail-list li:hover {
  border-color: rgb(var(--color-accent-rgb) / 0.5);
  box-shadow: 0 18px 40px rgb(var(--color-primary-rgb) / 0.11);
  transform: translateY(-4px);
}
body[data-page="process"] .process-detail-list > li > span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-accent);
  font-size: 1rem;
}
body[data-page="process"] .process-detail-list h2 { margin-bottom: 14px; color: var(--color-primary); font-size: 1.45rem; }
body[data-page="process"] .process-detail-list p { line-height: 1.9; }
body[data-page="process"] .process-balance {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0B3328 url("assets/background4.png") center / cover no-repeat;
}
body[data-page="process"] .process-balance::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgb(5 42 32 / 0.88);
}
body[data-page="process"] .process-balance .contact-cta-inner {
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid rgb(213 161 95 / 0.55);
  border-radius: 28px;
  background: rgb(3 34 26 / 0.34);
  box-shadow: 0 18px 46px rgb(0 0 0 / 0.18);
}

/* Contact page */
body[data-page="contact"] .contact-section {
  padding-top: calc(clamp(72px, 9vw, 128px) - 70px);
  background: radial-gradient(circle at 90% 12%, rgb(var(--color-accent-rgb) / 0.1), transparent 25%), var(--color-page-background);
}
body[data-page="contact"] .page-hero h1 { max-width: none; white-space: nowrap; }
body[data-page="contact"] .contact-layout {
  grid-template-columns: minmax(290px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 5vw, 70px);
}
body[data-page="contact"] .contact-sidebar { top: calc(var(--header-height) + 24px); gap: 20px; }
body[data-page="contact"] .contact-company-stack { display: grid; min-width: 0; gap: 20px; }
body[data-page="contact"] .company-panel {
  border-top: 4px solid var(--color-accent);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgb(var(--color-primary-rgb) / 0.08);
}
body[data-page="contact"] .company-panel h2 { margin-bottom: 20px; color: var(--color-primary); }
body[data-page="contact"] .contact-company-map .company-map { height: 340px; }
body[data-page="contact"] .contact-company-map .company-map-actions { width: 100%; }
body[data-page="contact"] .contact-company-map .company-map-action { padding-inline: 12px; font-size: 0.78rem; }
body[data-page="contact"] .contact-direct {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgb(213 161 95 / 0.54);
  border-radius: 20px;
  background: var(--color-primary);
  box-shadow: 0 16px 38px rgb(var(--color-primary-rgb) / 0.15);
}
body[data-page="contact"] .contact-direct::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  border: 1px solid rgb(213 161 95 / 0.34);
  border-radius: 50%;
}
body[data-page="contact"] .contact-direct p { color: rgb(255 255 255 / 0.78); }
body[data-page="contact"] .contact-direct .text-link {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: #D5A15F;
}
body[data-page="contact"] .contact-form {
  --contact-form-gap: 18px;
  gap: var(--contact-form-gap);
  padding: clamp(30px, 4.5vw, 54px);
  border: 1px solid rgb(var(--color-primary-rgb) / 0.12);
  border-top: 5px solid var(--color-accent);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgb(var(--color-primary-rgb) / 0.11);
}
body[data-page="contact"] .contact-form-heading {
  margin-bottom: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgb(var(--color-accent-rgb) / 0.35);
}
body[data-page="contact"] .contact-form-heading h2 {
  color: var(--color-primary);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}
body[data-page="contact"] .form-row { gap: var(--contact-form-gap); }
body[data-page="contact"] .field {
  position: relative;
  align-content: start;
  gap: 8px;
  padding-bottom: 18px;
  color: var(--color-primary);
  line-height: 1.5;
}
body[data-page="contact"] .field > span:first-child {
  display: flex;
  min-height: 26px;
  align-items: center;
  flex-wrap: wrap;
}
body[data-page="contact"] .field-error {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
body[data-page="contact"] input,
body[data-page="contact"] select {
  height: 54px;
  min-height: 54px;
  box-sizing: border-box;
  border-color: rgb(var(--color-primary-rgb) / 0.2);
  background: var(--color-page-background);
}
body[data-page="contact"] textarea {
  min-height: 180px;
  box-sizing: border-box;
  border-color: rgb(var(--color-primary-rgb) / 0.2);
  background: var(--color-page-background);
}
body[data-page="contact"] input:focus,
body[data-page="contact"] select:focus,
body[data-page="contact"] textarea:focus { background: var(--color-surface); }
body[data-page="contact"] .form-compatibility-note {
  padding: 16px 18px;
  border-left: 4px solid var(--color-accent);
  border-radius: 0 10px 10px 0;
  background: rgb(var(--color-accent-rgb) / 0.08);
}
body[data-page="contact"] .form-actions { padding-top: 4px; }
body[data-page="contact"] .form-actions .button { min-width: 150px; }

@media (max-width: 980px) {
  body:not([data-page="home"]) .page-hero { min-height: 390px; }
  body:not([data-page="home"]) .compact-hero .section-inner { padding-right: min(28vw, 240px); }
  body[data-page="about"] .official-about-grid,
  body[data-page="about"] .contact-info-layout,
  body[data-page="contact"] .contact-layout,
  body[data-page="productDetail"] .product-detail { grid-template-columns: 1fr; }
  body[data-page="about"] .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
    gap: 40px;
  }
  body[data-page="about"] .heritage-figure.compact,
  body[data-page="process"] .process-symbol { min-height: 250px; }
  body[data-page="about"] .official-copy {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid rgb(var(--color-accent-rgb) / 0.42);
    border-left: 0;
  }
  body[data-page="about"] .contact-info-layout { gap: 34px; }
  body[data-page="process"] .process-detail-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body[data-page="contact"] .contact-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body[data-page="contact"] .contact-form { order: -1; }
  body[data-page="contact"] .page-hero h1 { white-space: normal; }
  body[data-page="contact"] .contact-company-map .company-map { height: 320px; }
  body[data-page="productDetail"] .product-detail { gap: 40px; }
  body[data-page="productDetail"] .detail-media { aspect-ratio: 4 / 3; }
}

@media (max-width: 720px) {
  body[data-page="contact"] .contact-section { padding-top: 0; }
  body:not([data-page="home"]) .page-hero {
    min-height: 350px;
    padding: 68px 18px;
  }
  body:not([data-page="home"]) .page-hero::before {
    top: auto;
    right: -54px;
    bottom: -74px;
    width: 220px;
  }
  body:not([data-page="home"]) .page-hero h1 { font-size: clamp(2.45rem, 11vw, 3.5rem); }
  body:not([data-page="home"]) .compact-hero .section-inner { padding-right: 0; }
  body[data-page="about"] .page-hero-grid { grid-template-columns: 1fr; }
  body[data-page="about"] .heritage-figure.compact,
  body[data-page="process"] .process-symbol {
    min-height: 220px;
    border-radius: 120px 120px 24px 24px;
  }
  body[data-page="about"] .official-about-grid,
  body[data-page="about"] .contact-info-layout {
    padding: 30px 22px;
    border-radius: 24px;
  }
  body[data-page="about"] .quality-grid,
  body[data-page="process"] .process-detail-list { grid-template-columns: 1fr; }
  body[data-page="about"] .quality-grid article,
  body[data-page="about"] .quality-grid article + article,
  body[data-page="process"] .process-detail-list li,
  body[data-page="process"] .process-detail-list li:not(:nth-child(3n + 1)) { min-height: auto; }
  body[data-page="products"] .filter-bar {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  body[data-page="products"] .catalog-meta { align-items: flex-start; }
  body[data-page="products"] .product-grid { grid-template-columns: 1fr; }
  body[data-page="productDetail"] .detail-section {
    padding: 36px 18px 82px;
    background: linear-gradient(180deg, #0B3328 0 150px, var(--color-page-background) 150px 100%);
  }
  body[data-page="productDetail"] .product-detail {
    padding: 20px;
    border-radius: 24px;
  }
  body[data-page="productDetail"] .detail-media {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }
  body[data-page="process"] .process-balance .contact-cta-inner {
    padding: 28px 22px;
    border-radius: 22px;
  }
  body[data-page="contact"] .contact-sidebar { grid-template-columns: 1fr; }
  body[data-page="contact"] .contact-company-map .company-map { height: 300px; }
  body[data-page="contact"] .contact-form {
    padding: 28px 20px;
    border-radius: 22px;
  }
  body[data-page="contact"] .form-actions .button {
    flex: 1;
    min-width: 130px;
  }
}

@media (max-width: 420px) {
  body:not([data-page="home"]) .page-hero .eyebrow::after { width: 44px; }
  body[data-page="about"] .heritage-figure.compact,
  body[data-page="process"] .process-symbol { min-height: 190px; }
  body[data-page="process"] .process-symbol { gap: 10px; }
  body[data-page="process"] .process-symbol span + span::before { margin-right: 10px; }
  body[data-page="productDetail"] .detail-copy h1 { font-size: 2.35rem; }
  body[data-page="productDetail"] .detail-facts div {
    grid-template-columns: 86px 1fr;
    gap: 12px;
  }
}

body[data-page="process"] .page-hero + .section {
  background: radial-gradient(circle at 8% 8%, rgb(var(--color-accent-rgb) / 0.08), transparent 24%), var(--color-page-background);
}
body[data-page="contact"] .company-details dd,
body[data-page="contact"] .contact-direct a { overflow-wrap: anywhere; }

/* Product catalog pills, cards and dialog */
body[data-page="products"] .page-hero .page-hero-description {
  max-width: 760px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.9;
  white-space: pre-line;
}
body[data-page="products"] .page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
body[data-page="products"] .page-hero-copy { max-width: 720px; }
body[data-page="products"] .hero-product-search {
  width: min(100%, 620px);
  justify-self: end;
  margin: 0;
}
body[data-page="products"] .hero-product-search label {
  display: grid;
  gap: 8px;
  color: rgb(255 255 255 / 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
body[data-page="products"] .hero-product-search input {
  min-height: 54px;
  padding: 12px 18px;
  border-color: rgb(255 255 255 / 0.36);
  border-radius: 999px;
  color: var(--color-text-primary);
  background: rgb(255 254 251 / 0.94);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.16);
}
body[data-page="products"] .hero-product-search input:focus {
  border-color: #D5A15F;
  outline-color: rgb(213 161 95 / 0.32);
}
body[data-page="products"] .catalog-section { padding-top: clamp(52px, 6vw, 78px); }
body[data-page="products"] .catalog-filters {
  display: grid;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgb(var(--color-accent-rgb) / 0.34);
}
body[data-page="products"] .filter-pill-group { display: grid; }
body[data-page="products"] .series-filter-group {
  padding-top: 18px;
  border-top: 1px solid rgb(var(--color-primary-rgb) / 0.12);
}
body[data-page="products"] .filter-pill-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
body[data-page="products"] .category-pill-row { flex-wrap: wrap; }
body[data-page="products"] .series-pill-row {
  flex-wrap: nowrap;
  padding: 2px 0 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}
body[data-page="products"] .filter-pill {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 19px;
  border: 1px solid rgb(var(--color-primary-rgb) / 0.2);
  border-radius: 999px;
  color: var(--color-primary);
  background: var(--color-surface);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 5px 14px rgb(var(--color-primary-rgb) / 0.05);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
body[data-page="products"] .filter-pill:hover {
  border-color: var(--color-accent);
  background: rgb(var(--color-accent-rgb) / 0.08);
  transform: translateY(-1px);
}
body[data-page="products"] .filter-pill[aria-pressed="true"] {
  border-color: var(--color-primary);
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 8px 18px rgb(var(--color-primary-rgb) / 0.16);
}
body[data-page="products"] .filter-pill:focus-visible,
body[data-page="products"] .product-card-button:focus-visible,
.product-modal-close:focus-visible {
  outline: 3px solid rgb(var(--color-accent-rgb) / 0.36);
  outline-offset: 3px;
}
body[data-page="products"] .catalog-meta {
  justify-content: flex-start;
  margin: 24px 0 22px;
  padding-bottom: 0;
  border-bottom: 0;
}
body[data-page="products"] .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
body[data-page="products"] .product-card {
  height: 100%;
  border-radius: 18px;
}
body[data-page="products"] .product-card:hover,
body[data-page="products"] .product-card:focus-within {
  border-color: rgb(var(--color-accent-rgb) / 0.52);
  box-shadow: 0 18px 38px rgb(var(--color-primary-rgb) / 0.12);
  transform: translateY(-4px);
}
body[data-page="products"] .product-card-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
body[data-page="products"] .product-media {
  aspect-ratio: 16 / 9;
  border-bottom-color: rgb(var(--color-accent-rgb) / 0.22);
}
body[data-page="products"] .product-card-body {
  display: grid;
  gap: 14px;
  padding: 19px 20px 20px;
}
body[data-page="products"] .product-card-title {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 700;
  line-height: 1.45;
}
body[data-page="products"] .product-card-taxonomy {
  display: block;
  padding-top: 13px;
  border-top: 1px solid rgb(var(--color-primary-rgb) / 0.11);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}
body.has-product-modal { overflow: hidden; }
.product-modal {
  width: min(920px, calc(100% - 40px));
  max-width: none;
  max-height: min(90svh, 760px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(var(--color-accent-rgb) / 0.45);
  border-radius: 28px;
  color: var(--color-text-primary);
  background: var(--color-surface);
  box-shadow: 0 30px 90px rgb(9 35 27 / 0.3);
}
.product-modal::backdrop {
  background: rgb(12 35 28 / 0.64);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.product-modal-content {
  max-height: min(90svh, 760px);
  overflow-y: auto;
}
.product-modal-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgb(var(--color-primary-rgb) / 0.2);
  border-radius: 50%;
  color: var(--color-primary);
  background: rgb(255 254 251 / 0.94);
  box-shadow: 0 8px 20px rgb(var(--color-primary-rgb) / 0.16);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.product-modal-close:hover { background: var(--color-section-background); }
.product-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 540px;
}
.product-modal-media {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  background-color: var(--color-secondary-hover);
  background-image: repeating-linear-gradient(135deg, rgb(var(--color-primary-rgb) / 0.05) 0 2px, transparent 2px 16px);
}
.product-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.product-modal-copy {
  align-self: center;
  padding: 72px 48px 48px;
}
.product-modal-taxonomy {
  margin-bottom: 15px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 800;
}
.product-modal-copy h2 {
  margin-bottom: 24px;
  color: var(--color-primary);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.25;
}
.product-modal-facts { display: grid; margin: 0; border-top: var(--border-soft); }
.product-modal-facts div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: var(--border-soft);
}
.product-modal-facts dt { color: var(--color-text-secondary); font-size: 0.78rem; font-weight: 700; }
.product-modal-facts dd { margin: 0; color: var(--color-primary); font-size: 0.9rem; font-weight: 700; overflow-wrap: anywhere; }
.product-modal-description { margin-top: 24px; }
.product-modal-description h3 { margin-bottom: 8px; color: var(--color-primary); font-size: 1rem; }
.product-modal-description p { margin: 0; font-size: 0.92rem; line-height: 1.85; }
.product-modal-inquiry { width: 100%; margin-top: 28px; }

@media (max-width: 980px) {
  body[data-page="products"] .page-hero .section-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: 36px;
  }
  body[data-page="products"] .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-modal-copy { padding-inline: 36px; }
}

@media (max-width: 720px) {
  body[data-page="products"] .page-hero .section-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body[data-page="products"] .page-hero .page-hero-description { font-size: 0.96rem; line-height: 1.75; }
  body[data-page="products"] .hero-product-search { justify-self: stretch; }
  body[data-page="products"] .hero-product-search input { min-height: 50px; }
  body[data-page="products"] .catalog-section { padding-inline: 14px; }
  body[data-page="products"] .catalog-filters { gap: 20px; padding-bottom: 22px; }
  body[data-page="products"] .filter-pill-row { gap: 8px; }
  body[data-page="products"] .filter-pill { min-height: 39px; padding: 8px 15px; font-size: 0.8rem; }
  body[data-page="products"] .catalog-meta { flex-direction: row; align-items: center; }
  body[data-page="products"] .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  body[data-page="products"] .product-card-body { gap: 10px; padding: 14px 14px 15px; }
  body[data-page="products"] .product-card-title { font-size: 1rem; }
  body[data-page="products"] .product-card-taxonomy { padding-top: 10px; font-size: 0.7rem; }
  body[data-page="products"] .new-badge { top: 8px; right: 8px; padding: 4px 7px; font-size: 0.66rem; }
  .product-modal {
    width: min(100% - 24px, 560px);
    max-height: 92svh;
    border-radius: 22px;
  }
  .product-modal-content { max-height: 92svh; }
  .product-modal-layout { grid-template-columns: 1fr; min-height: 0; }
  .product-modal-media { min-height: 0; aspect-ratio: 16 / 9; }
  .product-modal-copy { padding: 34px 24px 30px; }
  .product-modal-copy h2 { padding-right: 34px; font-size: clamp(1.8rem, 9vw, 2.45rem); }
  .product-modal-close { top: 12px; right: 12px; width: 42px; height: 42px; }
}

@media (max-width: 420px) {
  body[data-page="products"] .catalog-section { padding-inline: 10px; }
  body[data-page="products"] .product-grid { gap: 9px; }
  body[data-page="products"] .product-card { border-radius: 14px; }
  body[data-page="products"] .product-card-body { padding: 12px 11px 13px; }
  body[data-page="products"] .product-card-title { font-size: 0.92rem; }
  body[data-page="products"] .product-card-taxonomy { font-size: 0.65rem; }
}
body[data-page="about"] .muted-section,
body[data-page="products"] .catalog-section {
  padding-top: calc(clamp(72px, 9vw, 128px) - 70px);
}

@media (max-width: 980px) {
  body[data-page="about"] .muted-section,
  body[data-page="products"] .catalog-section,
  body[data-page="contact"] .contact-section { padding-top: 20px; }
}

/* Home entry dialog - reference layout */
.language-overlay {
  padding: clamp(10px, 2vw, 30px);
  background: rgb(12 23 19 / 0.68);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.language-dialog {
  width: min(100%, 880px);
  max-height: calc(100svh - clamp(20px, 4vw, 60px));
  padding: 52px 72px 30px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgb(183 132 77 / 0.52);
  border-radius: 38px;
  background:
    radial-gradient(circle at 90% 12%, rgb(255 255 255 / 0.76), transparent 28%),
    linear-gradient(135deg, #F8F5EE 0%, #F1EDE4 100%);
  box-shadow: 0 34px 100px rgb(8 28 22 / 0.3);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.language-brand {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 0 70px 26px 0;
  border-bottom: 1px solid rgb(183 132 77 / 0.42);
}
.language-logo-wrap {
  display: grid;
  width: 170px;
  height: 118px;
  padding-right: 28px;
  border-right: 1px solid rgb(183 132 77 / 0.72);
  place-items: center;
}
.language-logo-wrap img { width: 132px; height: 112px; object-fit: contain; }
.language-brand-copy { min-width: 0; transform: none; }
.language-brand-copy p { margin: 0; }
.language-company-zh {
  color: #173F34 !important;
  font-size: clamp(1.95rem, 3.4vw, 2.7rem);
  letter-spacing: 0.055em;
  line-height: 1.16;
  text-shadow: 0 3px 12px rgb(23 63 52 / 0.16);
  white-space: nowrap;
}
.language-company-en {
  margin-top: 12px !important;
  color: #C57920 !important;
  font-size: 1.16rem;
  letter-spacing: 0.14em;
  line-height: 1.25;
  white-space: nowrap;
}
.language-contact-details {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 22px auto 0;
}
.language-contact-details p {
  display: grid;
  grid-template-columns: 54px 68px minmax(0, 1fr);
  gap: 10px;
  min-height: 54px;
  align-items: center;
  margin: 0;
  border-bottom: 1px dashed rgb(183 132 77 / 0.32);
  color: #2A2D2B;
  font-size: 1.02rem;
  line-height: 1.5;
}
.language-contact-details p:last-child { border-bottom: 0; }
.language-contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(183 132 77 / 0.2);
  border-radius: 50%;
  color: #16483B;
  background: rgb(255 253 248 / 0.82);
  box-shadow: 0 7px 16px rgb(48 55 51 / 0.1);
  place-items: center;
}
.language-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.language-contact-details strong {
  color: #C57920;
  font-size: 1.08em;
  font-weight: 800;
}
.language-contact-details b { color: #C57920; font-weight: 800; }
.language-contact-details a { border-bottom: 0; color: inherit; }
.language-contact-details a:hover { color: var(--color-primary); border-bottom: 0; }
.language-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 420px);
  margin: 22px auto 0;
}
.language-actions .button {
  position: relative;
  min-height: 54px;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 800;
}
.language-actions .button::after {
  content: none;
  position: absolute;
  right: 26px;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
}
.language-actions .button-primary {
  border: 1px solid #174A3D;
  color: #FFFFFF;
  background: linear-gradient(180deg, #2F6656 0%, #17483B 100%);
  box-shadow: 0 12px 24px rgb(22 72 59 / 0.16);
}
.language-actions .button-secondary {
  border: 1px solid #174A3D;
  color: #174A3D;
  background: rgb(255 254 251 / 0.34);
}
.language-actions .button-secondary:hover { color: #174A3D; background: rgb(255 254 251 / 0.78); }
.language-footer-mark {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  width: min(100%, 600px);
  align-items: center;
  margin: 18px auto 0;
  color: #C99148;
}
.language-footer-mark span { height: 1px; background: rgb(183 132 77 / 0.32); }
.language-footer-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.dialog-close {
  top: 22px;
  right: 24px;
  width: 56px;
  height: 56px;
  border: 1px solid rgb(183 132 77 / 0.78);
  color: #17483B;
  background: rgb(255 254 251 / 0.48);
  box-shadow: 0 9px 24px rgb(23 72 59 / 0.1);
  font-size: 2rem;
  font-weight: 300;
}
.dialog-close:hover { background: rgb(255 254 251 / 0.9); }

@media (max-width: 980px) {
  .language-dialog { padding: 48px 44px 30px; border-radius: 36px; }
  .language-brand { grid-template-columns: 170px minmax(0, 1fr); gap: 32px; padding: 0 76px 30px 0; }
  .language-logo-wrap { width: 170px; height: 138px; padding-right: 30px; }
  .language-logo-wrap img { width: 130px; height: 118px; }
  .language-company-zh { font-size: clamp(2.5rem, 5.5vw, 3.5rem); }
  .language-company-en { font-size: clamp(1rem, 2.2vw, 1.35rem); }
  .language-contact-details { margin-top: 24px; }
  .language-contact-details p { grid-template-columns: 58px 84px minmax(0, 1fr); gap: 10px; min-height: 62px; font-size: 1rem; }
  .language-contact-icon { width: 50px; height: 50px; }
  .language-contact-icon svg { width: 24px; height: 24px; }
  .language-actions { gap: 18px; width: min(100%, 640px); margin-top: 24px; }
  .language-actions .button { min-height: 64px; padding-inline: 36px; }
  .language-actions .button::after { right: 34px; }
  .language-footer-mark { margin-top: 22px; }
  .dialog-close { top: 24px; right: 24px; width: 62px; height: 62px; font-size: 2.3rem; }
}

@media (max-width: 720px) {
  .language-overlay { padding: 10px; }
  .language-dialog { max-height: calc(100svh - 20px); padding: 30px 20px 22px; border-radius: 28px; }
  .language-brand { grid-template-columns: 96px minmax(0, 1fr); gap: 18px; padding: 0 46px 22px 0; }
  .language-logo-wrap { width: 96px; height: 88px; padding-right: 18px; }
  .language-logo-wrap img { width: 76px; height: 70px; }
  .language-company-zh { font-size: clamp(1.45rem, 6.4vw, 2.3rem); letter-spacing: 0.035em; }
  .language-company-en { margin-top: 7px !important; font-size: clamp(0.68rem, 2.8vw, 0.92rem); letter-spacing: 0.1em; }
  .language-contact-details { margin-top: 18px; }
  .language-contact-details p {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 3px 10px;
    min-height: 0;
    padding: 10px 0;
    font-size: 0.86rem;
  }
  .language-contact-icon { grid-row: 1 / span 2; width: 40px; height: 40px; }
  .language-contact-icon svg { width: 20px; height: 20px; }
  .language-contact-details strong { grid-column: 2; }
  .language-contact-details strong + span { grid-column: 2; }
  .language-actions { gap: 10px; width: 100%; margin-top: 20px; }
  .language-actions .button { min-height: 54px; padding: 12px 18px; font-size: 0.94rem; }
  .language-actions .button::after { right: 18px; font-size: 1.4rem; }
  .language-footer-mark { gap: 12px; margin-top: 18px; }
  .language-footer-mark svg { width: 22px; height: 22px; }
  .dialog-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 1.45rem; }
}
