:root {
  --brand-900: #050d18;
  --brand-800: #091727;
  --brand-700: #102a43;
  --brand-600: #183b59;
  --brand-100: #152c42;
  --accent-600: #a87542;
  --accent-500: #c4935f;
  --gold-300: #ddb783;
  --gold-200: #edd2ad;
  --ink-900: #f0f3f5;
  --ink-700: #c3ccd3;
  --ink-500: #919faa;
  --surface: #06111f;
  --surface-soft: #091827;
  --surface-card: #0c1d2e;
  --surface-card-strong: #102438;
  --border: rgba(196, 147, 95, .25);
  --shadow-sm: 0 18px 46px rgba(0, 0, 0, .2);
  --shadow-lg: 0 36px 90px rgba(0, 0, 0, .38);
  --radius-sm: 5px;
  --radius-md: 9px;
  --radius-lg: 15px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-900);
  background: var(--surface);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-700); text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--brand-900); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(237, 125, 44, .65); outline-offset: 3px; }
h1, h2, h3, h4, p, ul, ol { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.22; letter-spacing: .01em; text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 4vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 2.7vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px;
  color: #fff; background: var(--brand-900); border-radius: var(--radius-sm);
  transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important; border: 0 !important;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px;
  color: var(--brand-700); font-size: .85rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before, .section-heading--center .eyebrow::after {
  width: 28px; height: 3px; background: var(--accent-500); border-radius: 99px; content: "";
}
.section { padding-block: clamp(72px, 9vw, 116px); }
.section--soft { background: var(--surface-soft); }
.section--brand { color: #fff; background: var(--brand-900); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading h1, .section-heading h2 { margin-bottom: 16px; }
.section-heading p { margin-bottom: 0; color: var(--ink-700); font-size: 1.075rem; }
.section--brand .section-heading p, .section--brand .eyebrow { color: #d5e8f2; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 20px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 800; line-height: 1.25; text-align: center; text-decoration: none;
  cursor: pointer; transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--accent-500); box-shadow: 0 12px 30px rgba(173, 107, 45, .25); }
.button--primary:hover { color: #fff; background: var(--accent-600); }
.button--secondary { color: #fff; background: var(--brand-700); }
.button--secondary:hover { color: #fff; background: var(--brand-800); }
.button--outline { color: var(--brand-800); background: transparent; border-color: var(--brand-700); }
.button--outline:hover { background: var(--brand-100); }
.button--light { color: var(--brand-900); background: #fff; }
.button--light:hover { color: var(--brand-900); background: #eaf3f8; }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

/* Header */
.language-picker { display: inline-flex; align-items: center; }
.language-picker--mobile { display: none; }
.language-picker select {
  min-height: 42px; padding: 7px 30px 7px 12px; color: var(--brand-900);
  background-color: #fff; border: 1px solid var(--border);
  border-radius: 999px; font-size: .8rem; font-weight: 800; cursor: pointer;
}
.language-picker option { color: var(--ink-900); background: #fff; }
.site-header {
  position: sticky; z-index: 100; top: 0; background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(217, 226, 232, .72); backdrop-filter: blur(16px);
}
.nav-shell { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ink-900); text-decoration: none; }
.brand:hover { color: var(--ink-900); }
.brand img { width: 70px; height: 54px; object-fit: contain; }
.brand__text { display: grid; gap: 2px; }
.brand__text strong { font-size: 1.12rem; letter-spacing: .08em; }
.brand__text small { color: var(--ink-500); font-size: .69rem; font-weight: 700; letter-spacing: .09em; }
.site-nav ul { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.site-nav a {
  display: block; padding: 12px 13px; color: var(--ink-700); border-radius: 999px;
  font-size: .96rem; font-weight: 700; text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--brand-800); background: var(--brand-100); }
.site-nav .nav-cta { margin-left: 6px; padding-inline: 18px; color: #fff; background: var(--brand-700); }
.site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { color: #fff; background: var(--brand-800); }
.site-nav .nav-language { display: flex; align-items: center; margin-left: 6px; }
.nav-toggle {
  display: none; width: 48px; height: 48px; padding: 0; background: var(--brand-100);
  border: 0; border-radius: 50%; cursor: pointer;
}
.nav-toggle__icon, .nav-toggle__icon::before, .nav-toggle__icon::after {
  display: block; width: 22px; height: 2px; margin-inline: auto;
  background: var(--brand-900); border-radius: 99px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle__icon { position: relative; }
.nav-toggle__icon::before, .nav-toggle__icon::after { position: absolute; left: 0; content: ""; }
.nav-toggle__icon::before { top: -7px; }
.nav-toggle__icon::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.home-hero { position: relative; overflow: hidden; background: linear-gradient(115deg, #f3f7f9 0 52%, #e1edf3 52% 100%); }
.home-hero::before {
  position: absolute; width: 520px; height: 520px; top: -260px; left: -240px;
  background: rgba(33, 131, 189, .1); border-radius: 50%; content: "";
}
.home-hero__grid {
  display: grid; min-height: 590px; grid-template-columns: .92fr 1.08fr;
  align-items: center; gap: clamp(32px, 6vw, 80px); padding-block: 70px;
}
.home-hero__content { position: relative; z-index: 1; }
.home-hero h1 { margin-bottom: 22px; color: var(--brand-900); font-size: clamp(2.25rem, 4vw, 3.55rem); }
.home-hero h1 span { display: block; color: var(--brand-700); }
.home-hero__lead { max-width: 620px; margin-bottom: 30px; color: var(--ink-700); font-size: clamp(1.05rem, 2vw, 1.22rem); }
.home-hero__media { position: relative; }
.home-hero__media::before {
  position: absolute; inset: 22px -22px -22px 22px; background: var(--brand-700);
  border-radius: var(--radius-lg); content: "";
}
.home-hero__media img {
  position: relative; z-index: 1; width: 100%; min-height: 430px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; z-index: 2; right: -20px; bottom: 28px; max-width: 220px;
  padding: 18px 20px; color: #fff; background: rgba(15, 51, 77, .94);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
}
.hero-badge strong, .hero-badge span { display: block; }
.hero-badge strong { margin-bottom: 2px; color: #fff; font-size: 1.35rem; }
.hero-badge span { color: #d7e8f1; font-size: .85rem; }
.brand-showcase { padding-top: clamp(84px, 10vw, 132px); }
.brand-showcase__frame {
  position: relative; min-height: clamp(520px, 60vw, 700px); overflow: hidden;
  color: #fff; background: var(--brand-900); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.brand-showcase__frame > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 56%;
}
.brand-showcase__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5, 24, 37, .96) 0%, rgba(8, 31, 47, .82) 32%, rgba(8, 31, 47, .2) 65%, rgba(8, 31, 47, .06) 100%);
}
.brand-showcase__content {
  position: relative; z-index: 1; display: flex; min-height: inherit; width: min(52%, 590px);
  flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(36px, 7vw, 78px);
}
.brand-showcase__content .eyebrow { color: #d5e8f2; }
.brand-showcase__content h2 { margin-bottom: 18px; font-size: clamp(2.1rem, 4vw, 3.7rem); }
.brand-showcase__content p { margin-bottom: 28px; color: #d7e6ee; font-size: 1.06rem; }
.page-hero { position: relative; overflow: hidden; color: #fff; background: var(--brand-900); }
.page-hero::after {
  position: absolute; width: 520px; height: 520px; right: -180px; bottom: -360px;
  background: rgba(33, 131, 189, .33); border-radius: 50%; content: "";
}
.page-hero__inner { position: relative; z-index: 1; display: grid; min-height: 290px; align-items: end; padding-block: 58px 54px; }
.page-hero .eyebrow { color: #cfe4ee; }
.page-hero h1 { max-width: 1100px; margin-bottom: 15px; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.18; }
.page-hero p { max-width: 760px; margin-bottom: 0; color: #d8e8f0; font-size: 1.08rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: #b9d4e1; font-size: .88rem; }
.breadcrumbs a { color: #fff; text-decoration: none; }

/* Layout cards */
.stat-strip { position: relative; z-index: 3; margin-top: -32px; }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.stat {
  display: block; padding: 25px 28px; color: inherit; border-right: 1px solid var(--border);
  text-decoration: none; transition: background-color .2s ease, transform .2s ease;
}
.stat:hover, .stat:focus-visible { color: inherit; background: rgba(196, 147, 95, .1); }
.stat:last-child { border-right: 0; }
.stat strong, .stat span { display: block; }
.stat strong { color: var(--brand-800); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.1; }
.stat span { margin-top: 7px; color: var(--ink-500); font-size: .88rem; }
.category-grid, .feature-grid, .policy-grid, .contact-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px;
}
.category-card {
  overflow: hidden; color: var(--ink-900); background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm); text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-card:hover { color: var(--ink-900); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card__image { overflow: hidden; aspect-ratio: 4 / 3; background: var(--surface-soft); }
.category-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.category-card:hover img { transform: scale(1.045); }
.category-card__body { padding: 22px; }
.category-card h3 { margin-bottom: 7px; color: var(--brand-900); }
.home-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-category-grid .category-card { display: grid; min-height: 176px; grid-template-columns: 176px minmax(0, 1fr); align-items: stretch; }
.home-category-grid .category-card__image { aspect-ratio: auto; }
.home-category-grid .category-card__body { display: flex; flex-direction: column; justify-content: center; }
.home-category-grid .category-card h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); }
.home-category-grid .category-card p { margin: 0; color: var(--ink-500); }
.home-certificates { margin-top: clamp(52px, 7vw, 84px); padding-top: clamp(44px, 6vw, 68px); border-top: 1px solid var(--border); }
.home-certificates__heading { max-width: 720px; margin-bottom: 30px; }
.home-certificates__heading h3 { margin-bottom: 12px; font-size: clamp(1.65rem, 2.6vw, 2.35rem); }
.home-certificates__heading p { margin: 0; color: var(--ink-500); }
.home-certificate-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.home-certificate {
  display: grid; min-height: 360px; grid-template-columns: minmax(190px, .8fr) 1fr; overflow: hidden;
  color: var(--ink-900); background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm); text-decoration: none;
}
.home-certificate:hover { color: var(--ink-900); box-shadow: var(--shadow-lg); }
.home-certificate__preview { display: grid; place-items: center; padding: 14px; background: #eef2f4; }
.home-certificate__preview img { width: 100%; height: auto; object-fit: contain; }
.home-certificate__body { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 28px; }
.home-certificate__body strong { color: var(--brand-900); font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
.home-certificate__body small { margin-top: 8px; color: #165442; font-weight: 800; }
.home-certificate__body b { margin-top: 22px; color: var(--brand-700); font-size: .9rem; }
.home-certifications-section .home-certificates { margin-top: 0; padding-top: 0; border-top: 0; }
#people-scale, #certifications, #capability, #product-categories-title { scroll-margin-top: 108px; }
.category-card p { margin-bottom: 0; color: var(--ink-500); font-size: .93rem; }
.feature-card, .policy-card, .contact-card {
  padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
}
.feature-card__number, .policy-card__number {
  display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 19px;
  color: #fff; background: var(--brand-700); border-radius: 50%; font-weight: 800;
}
.feature-card h3, .policy-card h3, .contact-card h3 { margin-bottom: 10px; }
.feature-card p, .policy-card p, .contact-card p { margin-bottom: 0; color: var(--ink-700); }
.split-layout {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center; gap: clamp(36px, 7vw, 90px);
}
.split-layout__media { position: relative; }
.split-layout__media img { width: 100%; min-height: 430px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.check-list { display: grid; gap: 13px; margin: 25px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink-700); }
.check-list li::before { position: absolute; left: 0; top: .05em; color: var(--brand-700); font-weight: 900; content: "✓"; }
.cta-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  padding: clamp(34px, 6vw, 64px); color: #fff;
  background: linear-gradient(130deg, var(--brand-900), var(--brand-700));
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.cta-panel h2 { margin-bottom: 12px; }
.cta-panel p { max-width: 720px; margin-bottom: 0; color: #d8e9f1; }

/* About */
.prose-lead { color: var(--ink-700); font-size: 1.12rem; }
.about-overview-section {
  background:
    radial-gradient(circle at 86% 3%, rgba(196, 147, 95, .14), transparent 28rem),
    linear-gradient(155deg, rgba(5, 13, 24, .98), rgba(10, 29, 46, .92));
}
.about-overview-card {
  overflow: hidden; background: var(--surface-card); border: 1px solid rgba(196, 147, 95, .3);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-overview-card__intro { padding: clamp(34px, 6vw, 72px); }
.about-overview-card__intro .breadcrumbs { margin-bottom: 26px; color: var(--accent-500); }
.about-overview-card__intro .breadcrumbs a { color: var(--gold-300); }
.about-overview-card__intro h1 {
  max-width: 960px; margin-bottom: 28px; color: var(--gold-300);
  font-size: clamp(2.15rem, 4vw, 3.75rem); line-height: 1.16;
}
.about-overview-card__intro p { max-width: 1020px; color: var(--ink-700); font-size: 1.02rem; line-height: 1.88; }
.about-overview-card__intro p:last-child { margin-bottom: 0; }
.about-overview-card__people { position: relative; min-height: clamp(520px, 58vw, 680px); overflow: hidden; }
.about-overview-card__people > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 56%;
}
.about-overview-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5, 13, 24, .96) 0%, rgba(5, 13, 24, .8) 45%, rgba(5, 13, 24, .12) 100%);
}
.about-overview-card__people-content {
  position: relative; z-index: 1; display: flex; min-height: inherit; width: min(54%, 620px);
  flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(34px, 6vw, 70px);
}
.about-overview-card__people-content .eyebrow,
.about-overview-card__people-content h2 { color: var(--gold-300); }
.about-overview-card__people-content h2 { margin-bottom: 18px; font-size: clamp(2rem, 3.8vw, 3.45rem); }
.about-overview-card__people-content p { margin-bottom: 28px; color: #e0e7eb; font-size: 1.02rem; }
.about-overview-card__footer {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: center;
  gap: clamp(28px, 5vw, 62px); padding: clamp(28px, 5vw, 58px);
}
.about-overview-card__footer .check-list { margin: 0; }
.about-overview-card__footer > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-md); }
.timeline { position: relative; display: grid; max-width: 940px; margin-inline: auto; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 99px; width: 2px; background: var(--border); content: ""; }
.timeline__item { position: relative; display: grid; grid-template-columns: 78px 1fr; gap: 42px; padding-bottom: 34px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__year { color: var(--brand-700); font-size: 1.15rem; font-weight: 900; text-align: right; }
.timeline__content { position: relative; padding: 22px 25px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); }
.timeline__content::before {
  position: absolute; width: 14px; height: 14px; top: 26px; left: -29px;
  background: var(--accent-500); border: 4px solid var(--surface-soft); border-radius: 50%; content: "";
}
.timeline__content h3, .timeline__content p { margin-bottom: 0; }

/* Products */
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 18px; }
.filter-button {
  min-height: 42px; padding: 8px 16px; color: var(--ink-700); background: #fff;
  border: 1px solid var(--border); border-radius: 999px; font-weight: 800; cursor: pointer;
}
.filter-button:hover, .filter-button[aria-pressed="true"] { color: #fff; background: var(--brand-700); border-color: var(--brand-700); }
.results-count { margin: 0 0 28px; color: var(--ink-500); font-size: .9rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card {
  display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: 0 5px 16px rgba(15, 51, 77, .05); transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.product-card__image { aspect-ratio: 1.24 / 1; padding: 12px; background: #f7f8f9; }
.product-card__image img { width: 100%; height: 100%; object-fit: contain; }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.product-card__tag { margin-bottom: 8px; color: var(--brand-700); font-size: .78rem; font-weight: 900; }
.product-card h3 { margin-bottom: 7px; font-size: 1.03rem; }
.product-card__english { margin-bottom: 18px; color: var(--ink-500); font-size: .84rem; line-height: 1.45; }
.product-card .text-link { margin-top: auto; font-size: .88rem; }
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.resource-group { padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); }
.resource-group h3 { padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.resource-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.resource-list a { display: flex; justify-content: space-between; gap: 12px; color: var(--ink-700); font-size: .9rem; text-decoration: none; }
.resource-list a::after { flex: 0 0 auto; color: var(--brand-700); content: "PDF ↗"; font-size: .72rem; font-weight: 900; }
.resource-list a:hover { color: var(--brand-700); }
.product-card--resource { grid-column: 1 / -1; }
.product-card--resource:hover { transform: none; }
.product-card--resource .product-card__body { padding: clamp(24px, 4vw, 38px); }
.product-card--resource h3 { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.product-card--resource .resource-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; }

/* Facility */
.equipment-section + .equipment-section { margin-top: 70px; }
.equipment-section__header {
  display: flex; align-items: end; justify-content: space-between; gap: 24px;
  margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.equipment-section__header h2, .equipment-section__header p { margin-bottom: 0; }
.equipment-section__header p { color: var(--ink-500); }
.equipment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gallery-card {
  width: 100%; padding: 0; overflow: hidden; color: var(--ink-900); background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: 0 5px 16px rgba(15, 51, 77, .05);
  text-align: left; cursor: zoom-in; transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.gallery-card__image { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; }
.gallery-card__image::after {
  position: absolute; right: 14px; bottom: 14px; display: grid; width: 38px; height: 38px;
  place-items: center; color: #fff; background: rgba(15, 51, 77, .9); border-radius: 50%; content: "+"; font-size: 1.3rem;
}
.gallery-card__image img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card__body { display: block; padding: 19px 20px 21px; }
.gallery-card__body strong, .gallery-card__body small { display: block; }
.gallery-card__body small { margin-top: 4px; color: var(--ink-500); }
.lightbox { width: min(calc(100% - 30px), 900px); padding: 0; background: transparent; border: 0; }
.lightbox::backdrop { background: rgba(7, 24, 36, .86); backdrop-filter: blur(4px); }
.lightbox__panel { position: relative; overflow: hidden; background: #fff; border-radius: var(--radius-md); }
.lightbox__image { width: 100%; max-height: 75vh; object-fit: contain; background: #0d1d28; }
.lightbox__caption { margin: 0; padding: 16px 22px; color: var(--ink-700); }
.lightbox__close {
  position: absolute; z-index: 2; top: 12px; right: 12px; display: grid; width: 44px; height: 44px;
  place-items: center; color: #fff; background: rgba(15, 51, 77, .9); border: 0; border-radius: 50%; font-size: 1.5rem; cursor: pointer;
}

/* Quality and contact */
.notice { padding: 22px 24px; border-radius: var(--radius-md); }
.notice strong { display: block; margin-bottom: 5px; }
.notice p { margin-bottom: 0; }
.notice:not(.notice--warning) { color: var(--brand-900); background: var(--brand-100); border: 1px solid #cce3ef; }
.notice--warning { color: #67370f; background: #fff3e7; border: 1px solid #f2cfaa; }
.notice--success { color: #153f34; background: #eaf7f2; border-color: #b9decf; }
.button-row--spaced { margin-top: 32px; }
.certificate-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 34px; }
.certificate-card {
  display: grid; grid-template-columns: minmax(180px, .7fr) 1fr; overflow: hidden;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
}
.certificate-card__preview { max-height: 420px; overflow: hidden; background: #edf1f3; }
.certificate-card__preview img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.certificate-card__body { padding: 28px; }
.certificate-card__status {
  display: inline-flex; margin-bottom: 14px; padding: 4px 10px; color: #7b4214;
  background: #fff0df; border-radius: 999px; font-size: .75rem; font-weight: 900;
}
.certificate-card__status--active { color: #165442; background: #e3f4ed; }
.certificate-card dl { display: grid; grid-template-columns: auto 1fr; gap: 7px 14px; margin: 18px 0 24px; font-size: .88rem; }
.certificate-card dt { color: var(--ink-500); }
.certificate-card dd { margin: 0; color: var(--ink-900); font-weight: 700; }
.process-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; counter-reset: process; }
.process-step { position: relative; padding: 24px 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); counter-increment: process; }
.process-step::before {
  display: grid; width: 36px; height: 36px; place-items: center; margin-bottom: 16px;
  color: #fff; background: var(--brand-700); border-radius: 50%; content: counter(process, decimal-leading-zero);
  font-size: .78rem; font-weight: 900;
}
.process-step h3, .process-step p { margin-bottom: 0; }
.process-step p { margin-top: 8px; color: var(--ink-500); font-size: .88rem; }
.contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-card__label { display: block; margin-bottom: 12px; color: var(--brand-700); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.contact-card a { overflow-wrap: anywhere; font-weight: 800; }
.contact-form-shell { max-width: 960px; }
.inquiry-form { padding: clamp(24px, 5vw, 48px); background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.form-grid label { display: grid; gap: 8px; color: var(--ink-900); font-weight: 800; }
.form-grid label > span { font-size: .92rem; }
.form-grid b { color: var(--accent-600); }
.form-grid input, .form-grid textarea {
  width: 100%; padding: 12px 14px; color: var(--ink-900); background: #fff;
  border: 1px solid #bdcbd4; border-radius: var(--radius-sm); outline: 0;
}
.form-grid input { min-height: 50px; }
.form-grid textarea { min-height: 170px; resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--brand-700); box-shadow: 0 0 0 4px rgba(33, 131, 189, .13); }
.form-field--full { grid-column: 1 / -1; }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 26px; }
.form-actions p { margin: 0; color: var(--ink-500); font-size: .86rem; }
.form-status { min-height: 1.6em; margin: 14px 0 0; color: var(--brand-700); font-weight: 800; }
.form-status.is-success { color: #167248; }
.form-status.is-error { color: #a12c2c; }
.inquiry-form[aria-busy="true"] { cursor: progress; }
.inquiry-form button:disabled { cursor: wait; opacity: .7; transform: none; }
.form-trap {
  position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important;
  overflow: hidden !important; opacity: 0 !important; pointer-events: none !important;
}
.inquiry-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(35px, 7vw, 80px); }
.inquiry-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.inquiry-list li { padding: 13px 15px; color: var(--ink-700); background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); }

/* Footer */
.site-footer { color: #c9dbe5; background: #0b2639; }
.site-footer__main { display: grid; grid-template-columns: 1fr .48fr 1.52fr; gap: clamp(32px, 6vw, 72px); padding-block: 68px 52px; }
.footer-brand { display: inline-flex; align-items: center; gap: 15px; margin-bottom: 18px; color: #fff; text-decoration: none; }
.footer-brand img { width: 66px; height: 52px; padding: 5px; background: #fff; border-radius: var(--radius-sm); object-fit: contain; }
.footer-brand strong, .footer-brand small { display: block; }
.footer-brand small { color: #b7cedb; font-size: .72rem; }
.site-footer h2 { margin-bottom: 17px; color: #fff; font-size: 1rem; }
.site-footer p { color: #b7cedb; font-size: .88rem; }
.footer-links, .footer-contact { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-address { display: grid; gap: 2px; margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-address strong { color: #fff; font-size: .82rem; letter-spacing: .04em; }
.footer-address span { color: #b7cedb; font-size: .78rem; line-height: 1.55; }
.site-footer a { color: #dce9f0; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom { padding-block: 18px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .8rem; }
.site-footer__bottom p { margin: 0; }

/* Midnight blue and bronze visual system */
body {
  background:
    radial-gradient(circle at 8% 5%, rgba(34, 72, 105, .22), transparent 32rem),
    linear-gradient(180deg, #06111f 0%, #071421 48%, #050d18 100%);
}
body::before {
  position: fixed; z-index: -1; inset: 0; pointer-events: none; content: "";
  background-image: linear-gradient(rgba(221, 183, 131, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(221, 183, 131, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}
h1, h2, h3, h4 { color: var(--gold-300); font-weight: 700; }
a { color: var(--gold-300); }
a:hover { color: var(--gold-200); }
.section--soft { background: rgba(9, 24, 39, .84); border-block: 1px solid rgba(196, 147, 95, .08); }
.section--brand { background: #050d18; }
.section-heading p, .home-certificates__heading p { color: var(--ink-700); }
.eyebrow { color: var(--accent-500); }
.eyebrow::before, .section-heading--center .eyebrow::after { height: 1px; background: var(--accent-500); }
.button { border-radius: var(--radius-sm); letter-spacing: .035em; }
.button--primary, .button--secondary, .button--light {
  color: #07111c; background: linear-gradient(135deg, var(--gold-200), var(--accent-500));
  border-color: var(--accent-500); box-shadow: 0 14px 36px rgba(164, 112, 61, .2);
}
.button--primary:hover, .button--secondary:hover, .button--light:hover { color: #050d18; background: var(--gold-200); }
.button--outline { color: var(--gold-300); border-color: rgba(221, 183, 131, .62); }
.button--outline:hover { color: #07111c; background: var(--gold-300); }
.text-link, .text-link::after { color: var(--gold-300); }

.site-header {
  background: rgba(255, 255, 255, .98); border-color: rgba(12, 25, 38, .12);
  box-shadow: 0 8px 28px rgba(4, 13, 24, .1); backdrop-filter: blur(20px);
}
.brand, .brand:hover { color: #111820; }
.brand img { filter: none; }
.brand__text strong { color: #111820; }
.brand__text small { color: #5d6670; }
.site-nav a { color: #171b20; border-radius: var(--radius-sm); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #111820; background: #f2ece5; }
.site-nav .nav-cta, .site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] {
  color: #07111c; background: linear-gradient(135deg, var(--gold-200), var(--accent-500));
}
.language-picker select {
  color: #111820; background-color: #fff; border-color: rgba(12, 25, 38, .22);
}
.language-picker option { color: #111820; background: #fff; }
.nav-toggle { background: #f3f4f5; border: 1px solid rgba(12, 25, 38, .16); }
.nav-toggle__icon, .nav-toggle__icon::before, .nav-toggle__icon::after { background: #111820; }

.home-hero {
  display: block; min-height: clamp(590px, 61vw, 880px); background: #071426;
}
.home-hero::before { display: none; }
.home-hero::after {
  position: absolute; z-index: 1; inset: 0; pointer-events: none; content: "";
  background: linear-gradient(90deg,
    rgba(0, 0, 0, .74) 0%,
    rgba(0, 0, 0, .62) 28%,
    rgba(0, 0, 0, .34) 50%,
    rgba(0, 0, 0, .10) 72%,
    rgba(0, 0, 0, 0) 88%);
}
.home-hero__background {
  position: absolute; z-index: 0; inset: 0; display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.home-hero__grid {
  position: relative; z-index: 2; min-height: inherit;
  grid-template-columns: minmax(0, 650px) 1fr; align-items: center; padding-block: clamp(72px, 8vw, 110px);
}
.home-hero__content {
  position: relative; z-index: 1; max-width: 600px;
}
.home-hero .eyebrow { text-shadow: 0 2px 3px #000, 0 6px 16px rgba(0, 0, 0, .96); }
.home-hero h1 {
  color: var(--gold-300); font-size: clamp(2.8rem, 5.2vw, 5rem); font-weight: 650; letter-spacing: .015em;
  text-shadow: 0 2px 2px #000, 0 5px 9px rgba(0, 0, 0, .96), 0 12px 28px rgba(0, 0, 0, .88);
}
.home-hero h1 span { margin-top: 5px; color: var(--gold-200); }
.home-hero__lead {
  max-width: 360px; color: #eef3f6; font-size: clamp(1.03rem, 1.8vw, 1.2rem);
  text-shadow: 0 2px 2px #000, 0 5px 10px rgba(0, 0, 0, .98), 0 10px 22px rgba(0, 0, 0, .9);
}
.stat-strip { margin-top: -46px; }
.stat-grid { background: rgba(10, 27, 43, .96); border-color: rgba(196, 147, 95, .32); box-shadow: var(--shadow-lg); backdrop-filter: blur(16px); }
.stat { border-color: rgba(196, 147, 95, .18); }
.stat strong { color: var(--gold-300); }
.stat span { color: var(--ink-500); }

.page-hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(196, 147, 95, .16), transparent 24rem),
    linear-gradient(135deg, #050d18, #0b2033);
  border-bottom: 1px solid rgba(196, 147, 95, .22);
}
.page-hero::after { background: rgba(196, 147, 95, .09); }
.page-hero h1 { color: var(--gold-300); }
.page-hero .eyebrow, .breadcrumbs { color: var(--accent-500); }
.page-hero p { color: var(--ink-700); }
.page-hero--narrative .page-hero__inner { min-height: 0; padding-block: clamp(62px, 8vw, 104px); }
.page-hero--narrative p { max-width: 980px; }
.page-hero--narrative p + p { margin-top: 17px; }
.breadcrumbs a { color: var(--gold-200); }

.feature-card, .policy-card, .contact-card, .timeline__content, .resource-group,
.product-card, .gallery-card, .certificate-card, .process-step, .inquiry-form,
.home-certificate, .category-card, .inquiry-list li {
  background: linear-gradient(145deg, rgba(16, 36, 56, .96), rgba(9, 24, 39, .96));
  border-color: var(--border); box-shadow: var(--shadow-sm);
}
.feature-card, .policy-card, .contact-card { border-top-color: rgba(221, 183, 131, .55); }
.feature-card__number, .policy-card__number, .process-step::before {
  color: #07111c; background: var(--accent-500); border-radius: var(--radius-sm);
}
.feature-card h3, .policy-card h3, .contact-card h3,
.category-card h3, .home-certificate__body strong, .product-card h3 { color: var(--gold-300); }
.contact-card__label { color: var(--gold-200); }
.feature-card p, .policy-card p, .contact-card p, .category-card p,
.prose-lead, .check-list li, .timeline__content p { color: var(--ink-700); }
.check-list li::before { color: var(--accent-500); }
.split-layout__media img { border: 1px solid rgba(196, 147, 95, .34); border-radius: var(--radius-md); }
section[aria-labelledby="company-intro-title"] .split-layout { grid-template-columns: 1fr; }
section[aria-labelledby="company-intro-title"] .split-layout > :first-child { max-width: 980px; }
section[aria-labelledby="company-intro-title"] img[src*="factory-full"] {
  min-height: 0; aspect-ratio: 1716 / 954; object-fit: cover; object-position: center;
}
.cta-panel {
  background: linear-gradient(125deg, #0b2033, #102a43);
  border: 1px solid rgba(196, 147, 95, .35); border-radius: var(--radius-md);
}
.cta-panel h2 { color: var(--gold-300); }
.cta-panel p { color: var(--ink-700); }
.timeline__year { color: var(--accent-500); }
.timeline__content::before { border-color: var(--surface-soft); }

.category-card { position: relative; color: var(--ink-900); border-radius: var(--radius-md); }
.category-card:hover { color: var(--ink-900); border-color: rgba(221, 183, 131, .62); }
.category-card__image { background: #dcd9d2; }
.category-card__index { display: block; margin-bottom: 9px; color: var(--accent-500); font-size: .72rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.home-category-grid .category-card { min-height: 188px; }
.home-category-grid .category-card--overview {
  grid-column: 1 / -1; min-height: clamp(300px, 34vw, 430px); grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr);
  border-color: rgba(221, 183, 131, .5);
}
.category-card--overview .category-card__image img { object-position: center; }
.category-card--overview .category-card__body { padding: clamp(30px, 5vw, 58px); background: linear-gradient(145deg, #102a43, #091827); }
.category-card--overview h3 { font-size: clamp(2rem, 4vw, 3.3rem) !important; }
.category-card--overview p { max-width: 380px; font-size: 1rem; }

.products-overview-card {
  position: relative; display: block; width: 100%; height: clamp(250px, 35vw, 430px); margin: 0 0 28px; padding: 0; overflow: hidden;
  color: #fff; background: #e66f25; border: 1px solid rgba(221, 183, 131, .5); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); text-align: left; cursor: pointer;
}
.products-overview-card img { width: 100%; height: 100%; object-fit: cover; }
.products-overview-card__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 13, 24, .92), rgba(5, 13, 24, .32) 55%, transparent 82%); }
.products-overview-card__content { position: absolute; inset: auto auto 0 0; display: grid; gap: 6px; padding: clamp(25px, 5vw, 54px); }
.products-overview-card__content span { color: var(--gold-300); font-size: .78rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.products-overview-card__content strong { color: #fff; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.15; }
.products-overview-card__content small { color: #e4e8eb; font-size: 1rem; }
.products-overview-card:hover, .products-overview-card[aria-pressed="true"] { border-color: var(--gold-200); }
.filter-button {
  color: var(--ink-700); background: rgba(12, 29, 46, .88);
  border-color: rgba(196, 147, 95, .28); border-radius: var(--radius-sm);
}
.filter-button:hover, .filter-button[aria-pressed="true"] { color: #07111c; background: var(--gold-300); border-color: var(--gold-300); }
.product-card { border-radius: var(--radius-md); }
.product-card:hover { border-color: rgba(221, 183, 131, .54); box-shadow: var(--shadow-lg); }
.product-card__image { background: #e8e5df; }
.product-card__tag { color: var(--accent-500); }
.product-card__english, .results-count { color: var(--ink-500); }
.resource-list a, .resource-list a::after { color: var(--gold-300); }

.gallery-card { color: var(--ink-900); }
.gallery-card__body small, .equipment-section__header p { color: var(--ink-500); }
.gallery-card__image::after, .lightbox__close { background: rgba(7, 17, 28, .9); border: 1px solid rgba(221, 183, 131, .45); }
.lightbox__panel { background: var(--surface-card); border: 1px solid var(--border); }
.lightbox__caption { color: var(--ink-700); }

.home-certificate__preview, .certificate-card__preview { background: #e5e4df; }
.home-certificate__body small, .certificate-card__status--active { color: #9bd4bd; }
.home-certificate__body b { color: var(--gold-300); }
.certificate-card__status { color: var(--gold-200); background: rgba(196, 147, 95, .15); }
.certificate-card__status--active { background: rgba(76, 148, 116, .17); }
.certificate-card dd { color: var(--ink-900); }
.notice:not(.notice--warning), .notice--warning, .notice--success {
  color: var(--ink-700); background: var(--surface-card); border: 1px solid var(--border);
}

.form-grid label { color: var(--gold-200); }
.form-grid b { color: var(--accent-500); }
.form-grid input, .form-grid textarea {
  color: var(--ink-900); background: #071522; border-color: rgba(196, 147, 95, .3);
}
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--gold-300); box-shadow: 0 0 0 3px rgba(196, 147, 95, .16); }
.form-status { color: var(--gold-300); }
.form-status.is-success { color: #87c9aa; }
.form-status.is-error { color: #e39a91; }

.brand-showcase__overlay { background: linear-gradient(90deg, rgba(5, 13, 24, .94) 0%, rgba(5, 13, 24, .76) 48%, rgba(5, 13, 24, .14) 100%); }
.brand-showcase__content .eyebrow, .brand-showcase__content h2 { color: var(--gold-300); }
.brand-showcase__content p { color: var(--ink-700); }
.site-footer { background: #030911; border-top: 1px solid rgba(196, 147, 95, .22); }
.footer-brand img { background: #f7f5f0; }
.site-footer h2, .footer-address strong { color: var(--gold-300); }
.site-footer a { color: #ccd3d8; }
.site-footer a:hover { color: var(--gold-200); }
.site-footer__bottom { border-color: rgba(196, 147, 95, .15); }

html[lang="en"] .product-card__english,
html[lang="en"] .gallery-card__body small { display: none; }

@media (max-width: 1040px) {
  .site-nav a { padding-inline: 10px; font-size: .9rem; }
  .brand__text strong { font-size: 1rem; }
  .brand__text small { display: none; }
  .home-hero__background { object-position: 58% center; }
  .product-grid, .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid, .policy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .certificate-card { grid-template-columns: 1fr; }
  .certificate-card__preview { max-height: 360px; }
}

@media (max-width: 840px) {
  .nav-shell { justify-content: flex-start; gap: 10px; }
  .brand { position: relative; z-index: 130; margin-right: auto; }
  .language-picker--mobile { position: relative; z-index: 130; display: inline-flex; flex: 0 0 auto; }
  .language-picker--mobile select { min-height: 44px; background: #fff; box-shadow: 0 6px 18px rgba(4, 13, 24, .12); }
  .nav-toggle { position: relative; z-index: 130; display: block; flex: 0 0 48px; }
  .site-nav {
    position: fixed; z-index: 110; inset: 0; display: block; min-height: 100vh; min-height: 100dvh;
    overflow-y: auto; padding: 112px 24px 42px;
    visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(-12px);
    background: rgba(255, 255, 255, .92); backdrop-filter: blur(18px) saturate(125%);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; transition-delay: 0s; }
  .site-nav ul {
    width: min(100%, 560px); min-height: calc(100dvh - 154px); flex-direction: column;
    align-items: stretch; justify-content: center; gap: 7px; margin-inline: auto;
  }
  .site-nav a {
    padding: 13px 20px; color: #111820; border: 1px solid transparent; border-radius: 14px;
    font-size: clamp(1.18rem, 4.4vw, 1.55rem); font-weight: 800; text-align: center;
  }
  .site-nav a:hover, .site-nav a[aria-current="page"] { color: #111820; background: rgba(196, 147, 95, .14); border-color: rgba(196, 147, 95, .2); }
  .site-nav .nav-cta { margin: 10px 0 0; padding-block: 15px; color: #07111c; background: var(--accent-500); }
  .site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { color: #07111c; background: var(--accent-600); border-color: transparent; }
  .site-nav .nav-language { display: none; }
  body.nav-open .site-header { background: rgba(255, 255, 255, .98); border-color: rgba(12, 25, 38, .12); backdrop-filter: blur(20px); }
  body.nav-open .brand { color: #111820; }
  body.nav-open .brand img { filter: none; }
  body.nav-open .brand__text strong { color: #111820; }
  body.nav-open .brand__text small { color: #5d6670; }
  body.nav-open .nav-toggle { background: #f3f4f5; }
  body.nav-open .nav-toggle__icon::before, body.nav-open .nav-toggle__icon::after { background: #111820; }
  .home-hero { min-height: 560px; background: #071426; }
  .home-hero::after {
    background: linear-gradient(90deg,
      rgba(0, 0, 0, .84) 0%,
      rgba(0, 0, 0, .72) 38%,
      rgba(0, 0, 0, .43) 62%,
      rgba(0, 0, 0, .16) 82%,
      rgba(0, 0, 0, 0) 100%);
  }
  .home-hero__grid, .split-layout, .inquiry-layout { grid-template-columns: 1fr; }
  .home-hero__grid { min-height: inherit; padding-block: 54px; }
  .home-hero__content { max-width: 420px; }
  .home-hero .eyebrow { text-shadow: 0 2px 2px #000, 0 5px 10px #000, 0 10px 22px rgba(0, 0, 0, .98); }
  .home-hero h1 { text-shadow: 0 2px 2px #000, 0 5px 7px #000, 0 10px 22px #000, 0 16px 34px rgba(0, 0, 0, .96); }
  .home-hero__lead { max-width: 420px; text-shadow: 0 2px 2px #000, 0 4px 7px #000, 0 9px 20px #000; }
  .home-hero__background { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; opacity: 1; }
  .about-overview-card__people-content { width: 68%; }
  .about-overview-card__footer { grid-template-columns: 1fr; }
  .stat-strip { margin-top: 0; }
  .brand-showcase__content { width: 68%; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px 18px; }
  .stat strong { font-size: clamp(1.25rem, 4.5vw, 1.7rem); }
  .stat span { margin-top: 5px; font-size: .78rem; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid var(--border); }
  .product-grid, .category-grid, .equipment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card--resource .resource-list { grid-template-columns: 1fr; }
  .resource-grid, .contact-grid, .process-grid { grid-template-columns: 1fr; }
  .certificate-grid { grid-template-columns: 1fr; }
  .home-certificate-grid { grid-template-columns: 1fr; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .site-footer__main { grid-template-columns: 1fr 1fr; }
  .site-footer__main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding-block: 46px; }
  .nav-shell { min-height: 76px; }
  .brand { gap: 9px; }
  .brand img { width: 55px; height: 44px; }
  .brand__text strong { font-size: .92rem; letter-spacing: .04em; }
  .site-nav { padding: 94px 18px 30px; }
  .site-nav ul { min-height: calc(100dvh - 124px); }
  .language-picker--mobile select { min-height: 40px; padding: 6px 27px 6px 10px; font-size: .76rem; }
  .home-hero { min-height: 540px; }
  .home-hero::after {
    background: linear-gradient(90deg,
      rgba(0, 0, 0, .88) 0%,
      rgba(0, 0, 0, .76) 43%,
      rgba(0, 0, 0, .46) 68%,
      rgba(0, 0, 0, .14) 90%,
      rgba(0, 0, 0, 0) 100%);
  }
  .home-hero__grid { padding-block: 44px; }
  .home-hero__content { max-width: 300px; }
  .home-hero__lead { max-width: 290px; }
  .home-hero h1 { font-size: clamp(2rem, 9vw, 2.5rem); }
  .hero-badge { right: 10px; bottom: -22px; }
  .about-overview-section { padding-top: 28px; }
  .about-overview-card { border-radius: 14px; }
  .about-overview-card__intro { padding: 26px 20px 30px; }
  .about-overview-card__intro .breadcrumbs { margin-bottom: 18px; }
  .about-overview-card__intro h1 { margin-bottom: 20px; font-size: 1.8rem; line-height: 1.24; }
  .about-overview-card__intro p { font-size: .88rem; line-height: 1.72; }
  .about-overview-card__people { min-height: 590px; }
  .about-overview-card__people > img { object-position: 57% center; }
  .about-overview-card__overlay { background: linear-gradient(180deg, rgba(5, 13, 24, .96) 0%, rgba(5, 13, 24, .78) 58%, rgba(5, 13, 24, .15) 100%); }
  .about-overview-card__people-content { width: 100%; justify-content: flex-start; padding: 48px 22px 34px; }
  .about-overview-card__people-content h2 { font-size: 1.85rem; line-height: 1.2; }
  .about-overview-card__people-content p { font-size: .88rem; }
  .about-overview-card__footer { gap: 22px; padding: 24px 20px; }
  .about-overview-card__footer .check-list { gap: 10px; }
  .about-overview-card__footer .check-list li { padding-left: 24px; font-size: .82rem; }
  .about-overview-card__footer > img { border-radius: 10px; }
  .brand-showcase__frame { min-height: 620px; }
  .brand-showcase__frame > img { object-position: 57% center; }
  .brand-showcase__overlay { background: linear-gradient(180deg, rgba(5, 24, 37, .95) 0%, rgba(8, 31, 47, .78) 55%, rgba(8, 31, 47, .15) 100%); }
  .brand-showcase__content { width: 100%; min-height: inherit; justify-content: flex-start; padding: 58px 26px 38px; }
  .page-hero__inner { min-height: 220px; padding-block: 34px 32px; }
  .page-hero h1 { margin-bottom: 10px; font-size: clamp(1.62rem, 7.7vw, 2rem); line-height: 1.25; }
  .page-hero p { font-size: .9rem; line-height: 1.65; }
  .breadcrumbs { margin-bottom: 15px; font-size: .76rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .category-grid, .feature-grid,
  .inquiry-list, .site-footer__main { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { padding: 14px 10px; border-right: 1px solid var(--border); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid var(--border); }
  .stat:nth-child(n + 3) { border-bottom: 0; }
  .stat strong { font-size: clamp(1.02rem, 5vw, 1.25rem); }
  .stat span { margin-top: 4px; font-size: .68rem; line-height: 1.35; }
  .policy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .policy-card { min-width: 0; padding: 16px 12px; }
  .policy-card__number { width: 30px; height: 30px; margin-bottom: 11px; font-size: .68rem; }
  .policy-card h3 { margin-bottom: 5px; font-size: .94rem; line-height: 1.35; }
  .policy-card p { font-size: .68rem; line-height: 1.35; }
  .home-category-grid .category-card { min-height: 116px; grid-template-columns: 112px minmax(0, 1fr); }
  .home-category-grid .category-card__body { padding: 18px; }
  .home-category-grid .category-card h3 { font-size: 1.35rem; }
  .home-category-grid .category-card p { font-size: .84rem; line-height: 1.5; }
  .home-category-grid .category-card--overview { min-height: 390px; grid-template-columns: 1fr; grid-template-rows: 220px 1fr; }
  .category-card--overview .category-card__body { padding: 26px; }
  .products-overview-card { height: 330px; }
  .products-overview-card__veil { background: linear-gradient(0deg, rgba(5, 13, 24, .93), rgba(5, 13, 24, .12) 78%); }
  .home-certificates__heading { margin-bottom: 18px; }
  .home-certificates__heading h2, .home-certificates__heading h3 { margin-bottom: 7px; font-size: 1.45rem; }
  .home-certificates__heading p { font-size: .84rem; }
  .home-certificate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .home-certificate { min-width: 0; min-height: auto; grid-template-columns: 1fr; }
  .home-certificate__preview { aspect-ratio: 3 / 4; padding: 8px; }
  .home-certificate__preview img { width: 100%; height: 100%; object-fit: contain; }
  .home-certificate__body { padding: 12px 10px 14px; }
  .home-certificate__body strong { font-size: .9rem; line-height: 1.25; }
  .home-certificate__body small { margin-top: 5px; font-size: .66rem; }
  .home-certificate__body b { margin-top: 10px; font-size: .69rem; }
  .home-certifications-section .button-row--spaced { margin-top: 20px; }
  .timeline::before { left: 9px; }
  .timeline__item { grid-template-columns: 1fr; gap: 8px; padding-left: 34px; }
  .timeline__year { text-align: left; }
  .timeline__content::before { top: -29px; left: -31px; }
  .equipment-section + .equipment-section { margin-top: 42px; }
  .equipment-section__header { align-items: flex-start; flex-direction: column; gap: 5px; margin-bottom: 16px; padding-bottom: 12px; }
  .equipment-section__header h2 { font-size: 1.45rem; }
  .equipment-section__header p { font-size: .76rem; }
  .equipment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery-card { min-width: 0; border-radius: 10px; }
  .gallery-card__image::after { right: 7px; bottom: 7px; width: 27px; height: 27px; font-size: .95rem; }
  .gallery-card__body { padding: 11px 10px 13px; }
  .gallery-card__body strong { font-size: .82rem; line-height: 1.3; }
  .gallery-card__body small { margin-top: 3px; font-size: .64rem; line-height: 1.35; overflow-wrap: anywhere; }
  body[data-page="facility"] .split-layout { gap: 22px; }
  body[data-page="facility"] .split-layout__media img { min-height: 210px; border-radius: 12px; }
  body[data-page="facility"] .check-list { gap: 9px; margin-block: 0 20px; }
  body[data-page="facility"] .check-list li { padding-left: 24px; font-size: .82rem; }

  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card { min-width: 0; border-radius: 10px; }
  .product-card__image { padding: 8px; }
  .product-card__body { padding: 11px 10px 13px; }
  .product-card__tag { margin-bottom: 5px; font-size: .63rem; }
  .product-card h3 { margin-bottom: 5px; font-size: .8rem; line-height: 1.35; overflow-wrap: anywhere; }
  .product-card__english { margin-bottom: 10px; font-size: .64rem; line-height: 1.35; overflow-wrap: anywhere; }
  .product-card .text-link { font-size: .7rem; }
  .product-card--resource { grid-column: 1 / -1; }
  .product-card--resource .product-card__body { padding: 18px 14px; }
  .filter-bar { gap: 7px; }
  .filter-button { min-height: 36px; padding: 6px 10px; font-size: .72rem; }
  .results-count { margin-bottom: 18px; font-size: .76rem; }

  body[data-page="quality"] .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  body[data-page="quality"] .process-step { min-width: 0; padding: 15px 12px; }
  body[data-page="quality"] .process-step::before { width: 28px; height: 28px; margin-bottom: 10px; font-size: .64rem; }
  body[data-page="quality"] .process-step h3 { font-size: .88rem; line-height: 1.35; }
  body[data-page="quality"] .process-step p { margin-top: 5px; font-size: .68rem; line-height: 1.45; }
  body[data-page="quality"] .notice { padding: 14px; font-size: .76rem; }
  body[data-page="quality"] .certificate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 20px; }
  body[data-page="quality"] .certificate-card { min-width: 0; grid-template-columns: 1fr; border-radius: 10px; }
  body[data-page="quality"] .certificate-card__preview { max-height: none; aspect-ratio: 3 / 4; }
  body[data-page="quality"] .certificate-card__body { padding: 12px 10px 14px; }
  body[data-page="quality"] .certificate-card__status { margin-bottom: 8px; padding: 3px 6px; font-size: .59rem; }
  body[data-page="quality"] .certificate-card h3 { margin-bottom: 0; font-size: .86rem; line-height: 1.3; }
  body[data-page="quality"] .certificate-card__body > p,
  body[data-page="quality"] .certificate-card dl { display: none; }
  body[data-page="quality"] .certificate-card .button { min-height: 34px; margin-top: 10px; padding: 7px 8px; font-size: .65rem; text-align: center; }
  .site-footer__main > :first-child { grid-column: auto; }
}

@media (max-width: 430px) {
  .brand__text { display: none; }
  .nav-shell { gap: 8px; }
  .language-picker--mobile { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
