:root {
    --ink: #171a22;
    --ink-soft: #555d6d;
    --paper: #ffffff;
    --mist: #f3f5f8;
    --line: #dce1e8;
    --green: #07348b;
    --green-dark: #05245f;
    --wine: #d1382b;
    --rose: #f7e5e2;
    --accent: #d9483b;
    --blue: #07348b;
    --red: #d1382b;
    --radius: 4px;
    --shell: 1240px;
    --shadow: 0 14px 38px rgba(23, 26, 24, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Segoe UI", "Microsoft YaHei", Arial, sans-serif; font-size: 16px; line-height: 1.6; letter-spacing: 0; }
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 { font-size: 64px; max-width: 14ch; }
h2 { font-size: 42px; max-width: 18ch; }
h3 { font-size: 21px; }
.site-shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.screen-reader-text { 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; left: 16px; top: -100px; z-index: 200; padding: 10px 16px; background: var(--paper); border: 2px solid var(--ink); }
.skip-link:focus { top: 16px; }
.eyebrow { margin-bottom: 16px; color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.eyebrow--light { color: #c9d8f1; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: var(--radius); font-size: 14px; font-weight: 800; cursor: pointer; transition: background-color .2s, color .2s, border-color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--paper); background: var(--green); }
.button--primary:hover { background: var(--green-dark); }
.button--light { color: var(--ink); background: var(--paper); }
.button--yellow { color: var(--paper); background: var(--accent); border-color: var(--accent); }
.button--yellow:hover { background: #bc372d; border-color: #bc372d; }
.button--outline-light { color: var(--paper); border-color: rgba(255,255,255,.8); background: transparent; }
.button--outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button--dark { color: var(--paper); background: var(--ink); }
.button--small { min-height: 40px; padding-inline: 17px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { color: var(--green); font-size: 14px; font-weight: 800; }
.text-link span { margin-left: 8px; }

.announcement { min-height: 36px; color: var(--paper); background: var(--wine); font-size: 12px; }
.announcement .site-shell { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.announcement p { margin: 0; }
.announcement a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.site-header { position: relative; z-index: 90; background: var(--paper); border-bottom: 1px solid var(--line); }
.site-header.is-sticky { position: sticky; top: 0; box-shadow: 0 8px 24px rgba(23,26,24,.07); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-logo { width: 156px; height: 58px; display: block; object-fit: contain; object-position: center; }
.brand-mark { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; color: var(--paper); background: var(--green); border-radius: 50%; font-size: 15px; font-weight: 900; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 20px; }
.brand-copy small { margin-top: 7px; color: var(--ink-soft); font-size: 9px; font-weight: 800; }
.custom-logo { max-width: 210px; height: auto; }
.footer-grid .brand-logo { width: 172px; height: 64px; }
.site-nav { display: flex; align-items: center; gap: 20px; font-size: 13px; font-weight: 700; }
.site-nav > a, .nav-trigger { min-height: 82px; display: inline-flex; align-items: center; color: var(--ink); border: 0; border-bottom: 2px solid transparent; background: transparent; white-space: nowrap; }
.site-nav > a:hover, .nav-trigger:hover, .nav-item:focus-within > .nav-trigger { color: var(--green); border-bottom-color: var(--green); }
.nav-item { position: relative; }
.nav-trigger { gap: 8px; padding: 0; cursor: pointer; }
.nav-trigger > span:last-child { width: 7px; height: 7px; flex: 0 0 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s; }
.nav-item.is-open > .nav-trigger > span:last-child, .nav-item:focus-within > .nav-trigger > span:last-child { transform: translateY(2px) rotate(225deg); }
.nav-submenu { min-width: 250px; position: absolute; z-index: 100; top: calc(100% - 1px); left: -22px; display: none; padding: 12px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); }
.nav-item:hover > .nav-submenu, .nav-item:focus-within > .nav-submenu, .nav-item.is-open > .nav-submenu { display: grid; }
.nav-submenu > a, .nav-submenu__links > a { min-height: 44px; display: flex; flex-direction: column; justify-content: center; padding: 8px 12px; border-bottom: 1px solid #edf0ee; font-size: 13px; }
.nav-submenu > a:last-child, .nav-submenu__links > a:last-child { border-bottom: 0; }
.nav-submenu a:hover { color: var(--green); background: var(--mist); }
.nav-submenu a strong { font-size: 14px; }
.nav-submenu a small { margin-top: 2px; color: var(--ink-soft); font-size: 10px; font-weight: 500; }
.nav-submenu--right { right: -18px; left: auto; }
.nav-submenu--mega { width: min(650px, calc(100vw - 48px)); grid-template-columns: 230px 1fr; gap: 12px; padding: 22px; }
.nav-submenu__intro { padding: 12px; background: var(--mist); }
.nav-submenu__intro .eyebrow { margin-bottom: 8px; }
.nav-submenu__intro > strong { display: block; margin-bottom: 30px; font-size: 20px; line-height: 1.25; }
.nav-submenu__intro .text-link { display: inline-block; }
.nav-submenu__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.language-switcher { display: flex; align-items: center; gap: 4px; padding-left: 16px; border-left: 1px solid var(--line); }
.language-switcher a { min-width: 32px; min-height: 32px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-soft); font-size: 11px; }
.language-switcher a.is-current { color: var(--paper); background: var(--green); border-radius: 50%; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle > span:not(.screen-reader-text) { width: 23px; height: 2px; display: block; margin: 5px auto; background: var(--ink); }

.hero { min-height: calc(100vh - 118px); max-height: 840px; position: relative; display: flex; align-items: center; overflow: hidden; color: var(--paper); background: var(--ink); }
.hero__media, .hero__scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media { object-fit: cover; opacity: .72; }
.hero__scrim { background: rgba(16, 24, 21, .48); }
.hero__content { position: relative; z-index: 2; padding: 96px 0 132px; }
.hero h1 { margin-bottom: 24px; font-size: 64px; }
.hero__content > p:not(.eyebrow) { max-width: 690px; margin-bottom: 34px; color: #e7edf8; font-size: 18px; }
.hero__scroll { position: absolute; z-index: 2; left: max(24px, calc((100vw - var(--shell)) / 2)); bottom: 28px; display: inline-flex; align-items: center; gap: 12px; color: #eef3fb; font-size: 12px; font-weight: 700; }
.hero__scroll span { font-size: 20px; }

.section { padding: 112px 0; }
.section-heading { margin-bottom: 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 520px; margin-bottom: 4px; color: var(--ink-soft); }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.category-tile { min-height: 370px; position: relative; overflow: hidden; color: var(--paper); background: var(--ink); border-radius: var(--radius); }
.category-tile img, .category-tile__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.category-tile img { object-fit: cover; transition: transform .45s; }
.category-tile__overlay { background: rgba(18, 25, 22, .44); }
.category-tile:hover img { transform: scale(1.035); }
.category-tile__body { position: absolute; inset: auto 28px 28px; display: grid; gap: 6px; }
.category-tile__body small { font-size: 11px; font-weight: 800; }
.category-tile__body strong { font-size: 25px; line-height: 1.2; }
.category-tile__body em { color: #e5eaf3; font-size: 13px; font-style: normal; }
.proof-band { padding: 52px 0; color: var(--paper); background: var(--green); }
.proof-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.proof-grid > div { padding: 4px 24px; border-right: 1px solid rgba(255,255,255,.24); }
.proof-grid > div:first-child { padding-left: 0; }
.proof-grid > div:last-child { border: 0; }
.proof-grid strong { display: block; margin-bottom: 6px; font-size: 28px; line-height: 1.1; }
.proof-grid sup { font-size: 13px; }
.proof-grid span { display: block; color: #d7e7e1; font-size: 12px; }

.section--products { background: var(--mist); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card { min-width: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card__image { aspect-ratio: 4 / 3; position: relative; display: block; overflow: hidden; background: #e8edeb; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.demo-badge { position: absolute; top: 12px; left: 12px; padding: 5px 8px; color: var(--ink); background: rgba(255,255,255,.9); border-radius: 2px; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.product-card__body { padding: 22px; }
.product-card__body .eyebrow { margin-bottom: 8px; }
.product-card h3 { min-height: 50px; margin-bottom: 20px; font-size: 19px; }
.product-card__meta { display: flex; justify-content: space-between; gap: 16px; padding-top: 14px; color: var(--ink-soft); border-top: 1px solid var(--line); font-size: 12px; }

.process-section { padding: 112px 0; color: var(--paper); background: var(--ink); }
.process-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.process-intro h2 { margin-bottom: 0; }
.process-intro > p { max-width: 530px; margin: 0; color: #bfc8c4; }
.process-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 20px; align-items: start; }
.process-feature { position: relative; margin: 0; }
.process-feature video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #0b0d0c; }
.process-feature > div { display: flex; align-items: baseline; gap: 16px; padding: 20px 0 0; }
.process-feature span { color: #88ad9f; font-size: 12px; }
.process-feature h3 { margin: 0; }
.application-list { border-top: 1px solid var(--line); }
.application-list a { min-height: 86px; display: grid; grid-template-columns: 60px 1fr 40px; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
.application-list a:hover { color: var(--green); background: var(--mist); }
.application-list span { color: var(--ink-soft); font-size: 12px; }
.application-list strong { font-size: 26px; }
.application-list em { font-style: normal; font-size: 22px; text-align: right; }
.cta-band { padding: 76px 0; color: var(--paper); background: var(--wine); }
.cta-band .site-shell { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.cta-band h2 { max-width: 19ch; margin-bottom: 16px; }
.cta-band p:not(.eyebrow) { max-width: 650px; margin: 0; color: #f0dde2; }

.page-hero { padding: 112px 0 96px; color: var(--paper); background: var(--green-dark); }
.page-hero h1 { margin-bottom: 22px; }
.page-hero p:not(.eyebrow) { max-width: 700px; margin: 0; color: #d5e5df; font-size: 18px; }
.page-hero--catalog { background: var(--green-dark); }
.page-hero--about { background: #26342f; }
.page-hero--contact { background: var(--wine); }
.catalog-section { padding: 72px 0 112px; }
.catalog-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 52px; align-items: start; }
.catalog-filter { position: sticky; top: 106px; }
.filter-heading h2 { font-size: 22px; }
.filter-heading button { display: none; }
.catalog-filter form { display: grid; gap: 19px; }
.catalog-filter label { display: grid; gap: 7px; }
.catalog-filter label span { font-size: 12px; font-weight: 800; }
.catalog-filter select { width: 100%; height: 46px; padding: 0 12px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.clear-filter { color: var(--ink-soft); font-size: 13px; text-align: center; text-decoration: underline; }
.results-bar { min-height: 40px; display: flex; align-items: center; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.results-bar p { margin: 0 0 14px; color: var(--ink-soft); font-size: 13px; }
.product-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-grid--catalog .product-card__body { padding: 18px; }
.product-grid--catalog .product-card h3 { font-size: 16px; }
.empty-state { grid-column: 1 / -1; padding: 60px; background: var(--mist); text-align: center; }
.nav-links { display: flex; gap: 8px; margin-top: 36px; }
.page-numbers { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.page-numbers.current { color: var(--paper); background: var(--green); border-color: var(--green); }

.product-detail { padding: 72px 0 96px; }
.product-detail__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: start; }
.product-gallery__main { aspect-ratio: 4 / 3; position: relative; overflow: hidden; background: var(--mist); }
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery > p { margin-top: 12px; color: var(--ink-soft); font-size: 12px; }
.product-summary { padding-top: 18px; }
.product-summary h1 { margin-bottom: 22px; font-size: 48px; }
.product-intro { color: var(--ink-soft); font-size: 17px; }
.quick-specs { margin: 34px 0; border-top: 1px solid var(--line); }
.quick-specs div { min-height: 54px; display: grid; grid-template-columns: 130px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.quick-specs dt { color: var(--ink-soft); font-size: 12px; }
.quick-specs dd { margin: 0; font-weight: 700; }
.spec-section { padding: 96px 0; background: var(--mist); }
.spec-table { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); background: var(--paper); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.spec-table > div { min-height: 72px; display: grid; grid-template-columns: 145px 1fr; align-items: center; padding: 14px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-table span { color: var(--ink-soft); font-size: 12px; }
.spec-table strong { font-size: 14px; }
.inquiry-section { padding: 104px 0; }
.inquiry-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.inquiry-layout h2 { font-size: 38px; }
.inquiry-layout > div:first-child > p:last-child { color: var(--ink-soft); }
.product-rfq { min-height: 300px; padding: 34px; color: #fff; background: var(--blue); display: flex; flex-direction: column; align-items: flex-start; }
.product-rfq > span { color: var(--accent); font-size: 12px; font-weight: 900; }
.product-rfq > strong { margin: 42px 0 8px; font-size: 42px; }
.product-rfq > p { max-width: 42ch; margin: 0 0 28px; color: #c7d4ea; }
.product-rfq .button { margin-top: auto; }
.inquiry-form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.inquiry-form label { display: grid; gap: 7px; }
.inquiry-form label span { font-size: 12px; font-weight: 800; }
.inquiry-form input, .inquiry-form textarea { width: 100%; padding: 12px 14px; color: var(--ink); background: var(--paper); border: 1px solid #bfc8c4; border-radius: var(--radius); }
.inquiry-form input { min-height: 48px; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus, .inquiry-form textarea:focus, .catalog-filter select:focus { outline: 3px solid rgba(32,91,74,.18); border-color: var(--green); }
.inquiry-form .button { justify-self: start; min-width: 170px; }
.hp-field { position: absolute; left: -9999px; }
.form-privacy { margin: -6px 0 0; color: var(--ink-soft); font-size: 11px; }
.form-notice { margin-bottom: 20px; padding: 14px 16px; border-left: 4px solid; }
.form-notice.is-success { color: #174b3b; background: #e7f3ee; border-color: var(--green); }
.form-notice.is-error { color: #702338; background: #f7e8ec; border-color: var(--wine); }
.related-section { background: var(--mist); }

.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 92px; }
.story-grid h2 { margin: 0; }
.prose { max-width: 780px; color: var(--ink-soft); font-size: 17px; }
.prose p { margin-bottom: 22px; }
.about-video { background: var(--mist); }
.about-video video { width: 100%; max-height: 700px; object-fit: cover; }
.capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-grid article { min-height: 260px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-grid span { color: var(--wine); font-size: 12px; font-weight: 800; }
.capability-grid h3 { margin: 55px 0 16px; font-size: 23px; }
.capability-grid p { color: var(--ink-soft); }
.quality-band { padding: 72px 0; color: var(--paper); background: var(--green); }
.quality-band .site-shell { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.quality-band h2 { max-width: 24ch; margin: 0; }
.contact-section { padding: 104px 0; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 96px; }
.contact-layout h2 { font-size: 38px; }
.contact-list { margin: 42px 0 20px; border-top: 1px solid var(--line); }
.contact-list > * { min-height: 76px; display: grid; align-content: center; gap: 2px; border-bottom: 1px solid var(--line); }
.contact-list span { color: var(--ink-soft); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.contact-list strong { overflow-wrap: anywhere; font-size: 16px; }
.placeholder-note { color: var(--wine); font-size: 12px; }

.breadcrumb-band { min-height: 52px; display: flex; align-items: center; color: var(--ink-soft); background: var(--mist); border-bottom: 1px solid var(--line); font-size: 12px; }
.breadcrumb-band .site-shell { display: flex; gap: 10px; align-items: center; }
.breadcrumb-band a:hover { color: var(--green); }
.breadcrumb-band strong { color: var(--ink); }
.content-hero { background: #25342f; }
.content-overview__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.content-overview__grid h2 { margin: 0; }
.content-media { background: var(--mist); }
.content-media video, .content-media__image { width: 100%; max-height: 700px; position: relative; overflow: hidden; background: var(--ink); }
.content-media video { object-fit: cover; }
.content-media__image { aspect-ratio: 16 / 7; }
.content-media__image img { width: 100%; height: 100%; object-fit: cover; }
.content-media__image span { position: absolute; right: 18px; bottom: 18px; padding: 6px 9px; color: var(--ink); background: rgba(255,255,255,.9); border-radius: 2px; font-size: 10px; font-weight: 800; }
.content-stats { padding: 48px 0; color: var(--paper); background: var(--green); }
.content-stats__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-stats__grid > div { padding: 8px 34px; border-right: 1px solid rgba(255,255,255,.25); }
.content-stats__grid > div:first-child { padding-left: 0; }
.content-stats__grid > div:last-child { border-right: 0; }
.content-stats strong { display: block; margin-bottom: 6px; font-size: 30px; line-height: 1.1; }
.content-stats span { color: #d8e8e2; font-size: 12px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; font-size: 18px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--green); font-size: 24px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: -2px 0 28px; color: var(--ink-soft); }
.next-step-band { padding: 70px 0; color: var(--paper); background: var(--wine); }
.next-step-band .site-shell { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.next-step-band h2 { max-width: 23ch; margin-bottom: 0; }

/* Distinct content-page compositions. */
.content-page h3 { letter-spacing: 0; }
.content-hero--company-profile { background: #263630; }
.content-hero--factory-capacity, .content-hero--production-process { background: #171c19; }
.content-hero--quality-control { background: #323b38; }
.content-hero--design-development { color: var(--ink); background: #d9e2de; }
.content-hero--design-development .eyebrow, .content-hero--design-development > .site-shell > p { color: var(--ink-soft); }
.content-hero--warehouse-delivery { background: #263532; }
.content-hero--applications { background: var(--wine); }
.content-hero--customization-guide { background: #3b3434; }
.content-hero--faq { color: var(--ink); background: #e9eeeb; }
.content-hero--faq .eyebrow, .content-hero--faq > .site-shell > p { color: var(--ink-soft); }

.story-editorial__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9%; align-items: center; }
.story-editorial__copy h2 { margin-bottom: 38px; }
.story-editorial__copy > p:not(.eyebrow) { color: var(--ink-soft); }
.story-editorial__mosaic { min-height: 580px; position: relative; }
.story-editorial__mosaic figure { position: absolute; margin: 0; overflow: hidden; background: var(--mist); }
.story-editorial__mosaic figure:first-child { inset: 0 18% 14% 0; }
.story-editorial__mosaic figure:nth-child(2) { width: 43%; height: 46%; right: 0; bottom: 0; border: 10px solid var(--paper); }
.story-editorial__mosaic img { width: 100%; height: 100%; object-fit: cover; }
.story-editorial__mosaic > span { position: absolute; right: 8px; top: 8px; padding: 5px 8px; background: var(--paper); font-size: 10px; font-weight: 800; }
.milestone-band { padding: 54px 0; color: var(--paper); background: var(--green); }
.milestone-rail { display: grid; grid-template-columns: repeat(3, 1fr); }
.milestone-rail div { display: flex; align-items: baseline; gap: 14px; padding: 0 32px; border-left: 1px solid rgba(255,255,255,.28); }
.milestone-rail div:first-child { padding-left: 0; border-left: 0; }
.milestone-rail strong { font-size: 34px; }
.milestone-rail span { color: #d8e8e2; font-size: 12px; }
.value-ledger .site-shell { border-top: 1px solid var(--line); }
.value-ledger .eyebrow { margin: 24px 0 30px; }
.value-ledger article { min-height: 112px; display: grid; grid-template-columns: 70px .7fr 1.3fr; align-items: center; gap: 34px; border-top: 1px solid var(--line); }
.value-ledger article > span { color: var(--wine); font-size: 13px; font-weight: 800; }
.value-ledger article h3, .value-ledger article p { margin: 0; }
.value-ledger article p { color: var(--ink-soft); }

.capacity-stage { padding: 90px 0; color: var(--paper); background: #171c19; }
.capacity-stage__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: center; }
.capacity-stage h2 { margin-bottom: 54px; }
.capacity-stage video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #000; }
.capacity-stage__visual { display: grid; grid-template-columns: 1fr; gap: 14px; }
.capacity-stage__visual > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.capacity-stage__visual video { aspect-ratio: 16 / 8; }
.capacity-metrics { border-top: 1px solid #465049; }
.capacity-metrics div { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid #465049; }
.capacity-metrics strong { font-size: 25px; }
.capacity-metrics span { color: #aeb9b3; font-size: 12px; }
.operations-board__intro { max-width: 720px; margin: 0 0 64px auto; color: var(--ink-soft); font-size: 18px; }
.operations-board__rows { border-top: 1px solid var(--line); }
.operations-board__rows article { min-height: 138px; display: grid; grid-template-columns: 80px 1fr 30px; align-items: center; gap: 32px; border-bottom: 1px solid var(--line); }
.operations-board__rows article > b { color: var(--wine); font-size: 30px; }
.operations-board__rows h3 { margin: 0 0 7px; font-size: 26px; }
.operations-board__rows p { max-width: 620px; margin: 0; color: var(--ink-soft); }
.operations-board__rows article > span { font-size: 24px; }

.qc-section { background: #f2f4f2; }
.qc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; align-items: center; }
.qc-visual { min-height: 680px; position: relative; overflow: hidden; }
.qc-visual img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
.qc-visual > span { position: absolute; left: 16px; bottom: 16px; padding: 6px 9px; background: var(--paper); font-size: 10px; font-weight: 800; }
.qc-copy > p:not(.eyebrow) { color: var(--ink-soft); }
.qc-checkpoints { margin-top: 44px; }
.qc-checkpoints article { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.qc-checkpoints article > b { width: 36px; height: 36px; display: grid; place-items: center; color: var(--paper); background: var(--green); border-radius: 50%; font-size: 11px; }
.qc-checkpoints h3, .qc-checkpoints p { margin: 0; }
.qc-checkpoints p { margin-top: 5px; color: var(--ink-soft); }
.qc-standard { padding: 34px 0; color: var(--paper); background: var(--wine); }
.qc-standard .site-shell { display: flex; align-items: center; justify-content: center; gap: 34px; }
.qc-standard span { opacity: .6; }

.design-studio { background: #f4f6f4; }
.design-studio__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9%; align-items: center; }
.design-studio__grid > div:first-child > p:not(.eyebrow) { color: var(--ink-soft); }
.design-studio__samples { min-height: 590px; position: relative; }
.design-studio__samples figure { position: absolute; margin: 0; overflow: hidden; box-shadow: 0 15px 35px rgba(16,24,20,.12); }
.design-studio__samples figure:nth-child(1) { width: 55%; height: 60%; left: 0; top: 5%; transform: rotate(-3deg); }
.design-studio__samples figure:nth-child(2) { width: 50%; height: 55%; right: 0; top: 0; transform: rotate(3deg); }
.design-studio__samples figure:nth-child(3) { width: 58%; height: 46%; left: 23%; bottom: 0; transform: rotate(1deg); }
.design-studio__samples img { width: 100%; height: 100%; object-fit: cover; }
.design-studio__samples > span { position: absolute; right: 3%; bottom: 2%; z-index: 2; padding: 8px 12px; color: var(--paper); background: var(--wine); font-size: 11px; font-weight: 800; }
.development-path { padding: 90px 0; color: var(--paper); background: var(--green); }
.development-path__steps { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.28); }
.development-path__steps article { min-height: 330px; padding: 28px 34px; border-left: 1px solid rgba(255,255,255,.28); }
.development-path__steps article:first-child { padding-left: 0; border-left: 0; }
.development-path__steps b { color: #a8c4b9; }
.development-path__steps h3 { margin-top: 80px; font-size: 25px; }
.development-path__steps p { color: #d6e2dd; }
.development-path__steps small { display: inline-block; margin-top: 18px; padding-top: 10px; border-top: 2px solid var(--paper); font-weight: 800; }

.process-journey__intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8%; }
.process-journey__intro > div { color: var(--ink-soft); }
.process-journey__track { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); }
.process-journey__track article { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-right: 0; }
.process-journey__track article:last-child { border-right: 1px solid var(--line); }
.process-journey__track b { color: var(--wine); font-size: 28px; }
.process-journey__track h3 { margin-top: 70px; }
.process-journey__track p { color: var(--ink-soft); }
.process-film { padding: 0 0 100px; background: var(--paper); }
.process-film video { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; background: #000; }
.process-film .site-shell > div { margin-top: 16px; display: flex; justify-content: space-between; color: var(--ink-soft); font-size: 11px; font-weight: 800; }

.warehouse-stage { padding: 90px 0; color: var(--paper); background: #1e2925; }
.warehouse-stage .site-shell { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: stretch; }
.warehouse-stage video { width: 100%; height: 100%; min-height: 520px; object-fit: cover; background: #000; }
.warehouse-stage aside { padding: 30px 0; }
.warehouse-stage aside h2 { margin-bottom: 46px; }
.warehouse-stage aside > div { min-height: 80px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #4e5b55; }
.warehouse-stage aside > div:last-child { border-bottom: 1px solid #4e5b55; }
.warehouse-stage aside span { color: #aab7b0; font-size: 12px; }
.shipping-modes__intro { max-width: 720px; margin-bottom: 52px; color: var(--ink-soft); font-size: 18px; }
.shipping-modes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.shipping-modes__grid article { min-height: 300px; padding: 30px; background: var(--paper); }
.shipping-modes__grid span { color: var(--wine); font-weight: 800; }
.shipping-modes__grid h3 { margin-top: 90px; }
.shipping-modes__grid p { color: var(--ink-soft); }

.application-gallery__intro { max-width: 800px; margin-bottom: 60px; }
.application-gallery__intro > p:not(.eyebrow) { color: var(--ink-soft); }
.application-gallery__grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 330px); gap: 18px; }
.application-gallery__grid a { min-width: 0; position: relative; overflow: hidden; color: var(--paper); background: var(--ink); }
.application-gallery__grid a:first-child { grid-row: 1 / 3; }
.application-gallery__grid img { width: 100%; height: 100%; object-fit: cover; opacity: .64; transition: transform .35s, opacity .35s; }
.application-gallery__grid a:hover img { transform: scale(1.025); opacity: .5; }
.application-gallery__grid a > span, .application-gallery__grid a > h3, .application-gallery__grid a > p, .application-gallery__grid a > b { position: absolute; z-index: 2; }
.application-gallery__grid a > span { left: 24px; top: 24px; font-size: 12px; font-weight: 800; }
.application-gallery__grid a > h3 { left: 24px; bottom: 62px; margin: 0; font-size: 28px; }
.application-gallery__grid a > p { left: 24px; bottom: 20px; max-width: 70%; margin: 0; font-size: 13px; }
.application-gallery__grid a > b { right: 24px; bottom: 24px; font-size: 24px; }
.application-gallery__grid a:first-child > h3 { font-size: 40px; }

.custom-brief { background: #eef1ef; }
.custom-brief__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9%; align-items: center; }
.custom-brief__grid > div:first-child > p:not(.eyebrow) { color: var(--ink-soft); }
.custom-brief__grid .button { margin-top: 22px; }
.brief-ticket { background: var(--paper); border: 1px solid #cbd2ce; box-shadow: 18px 18px 0 #dce3df; }
.brief-ticket header { min-height: 68px; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; color: var(--paper); background: var(--green); font-size: 12px; font-weight: 800; }
.brief-ticket article { min-height: 116px; padding: 22px 28px; display: grid; grid-template-columns: 46px 1fr; gap: 20px; border-bottom: 1px dashed #cbd2ce; }
.brief-ticket article > span { color: var(--wine); font-weight: 800; }
.brief-ticket h3, .brief-ticket p { margin: 0; }
.brief-ticket p { margin-top: 6px; color: var(--ink-soft); }
.brief-ticket footer { padding: 24px 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.brief-ticket footer span { color: var(--ink-soft); font-size: 10px; }
.brief-ticket footer b { display: block; margin-bottom: 5px; color: var(--ink); font-size: 13px; }

.faq-hub { background: #f6f7f6; }
.faq-hub__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9%; align-items: start; }
.faq-hub aside { position: sticky; top: 130px; }
.faq-hub aside > p:not(.eyebrow) { color: var(--ink-soft); }
.faq-facts { margin-top: 38px; border-top: 1px solid var(--line); }
.faq-facts div { min-height: 62px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.faq-facts span { color: var(--ink-soft); font-size: 11px; }
.faq-hub .faq-list summary { display: grid; grid-template-columns: 42px 1fr 24px; }
.faq-hub .faq-list summary > span { color: var(--wine); font-size: 12px; font-weight: 800; }
.faq-hub .faq-list summary > b { color: var(--green); font-size: 24px; font-weight: 400; }
.faq-hub .faq-list details[open] summary > b { transform: rotate(45deg); }
.faq-hub .faq-list details p { margin-left: 42px; }

.site-footer { padding: 72px 0 20px; color: #d7dfdb; background: #111512; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 80px; }
.brand--light { color: var(--paper); }
.brand--light .brand-copy small { color: #9ca8a2; }
.footer-grid > div:first-child > p { max-width: 410px; margin-top: 24px; color: #9ca8a2; }
.footer-grid h2 { margin-bottom: 22px; color: var(--paper); font-size: 13px; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; font-size: 13px; }
.footer-grid a:hover { color: var(--paper); }
.footer-bottom { margin-top: 62px; padding-top: 20px; display: flex; justify-content: space-between; gap: 30px; color: #7d8983; border-top: 1px solid #2b312e; font-size: 11px; }
.footer-legal { display: flex; align-items: center; gap: 20px; }
.footer-legal a { color: #aab8ca; }
.footer-legal a:hover { color: #fff; }
.contact-pending { color: #d2dbe7; }
.form-privacy a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.content-hero--privacy-policy { background: #172033; }
.content-hero--terms-of-use { background: #202630; }

.collection-index { padding: 110px 0; background: var(--paper); }
.collection-index__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 20px; }
.collection-index__item { min-width: 0; position: relative; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.collection-index__item > div { aspect-ratio: 4 / 3; position: relative; overflow: hidden; border-radius: 8px; background: var(--mist); }
.collection-index__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.collection-index__item:hover img { transform: scale(1.025); }
.collection-index__item > div span { position: absolute; right: 12px; bottom: 12px; padding: 6px 10px; color: var(--paper); background: rgba(7, 22, 47, .86); border-radius: 999px; font-size: 11px; font-weight: 800; }
.collection-index__item h3 { margin: 22px 40px 8px 0; font-size: 24px; }
.collection-index__item p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.collection-index__item > b { position: absolute; right: 0; bottom: 24px; color: var(--blue); font-size: 20px; }

.collection-browser { padding: 42px 0 110px; background: #f4f5f7; }
.collection-tabs { margin-bottom: 68px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: thin; }
.collection-tabs a { min-height: 40px; display: inline-flex; flex: 0 0 auto; align-items: center; padding: 0 16px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; background: var(--paper); font-size: 12px; font-weight: 750; }
.collection-tabs a.is-current { color: var(--paper); border-color: var(--blue); background: var(--blue); }
.collection-browser__heading { margin-bottom: 44px; display: grid; grid-template-columns: 1fr minmax(280px, 520px); align-items: end; gap: 48px; }
.collection-browser__heading h2 { margin: 0; }
.collection-browser__heading > p { margin: 0; color: var(--ink-soft); }
.collection-viewer { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr); background: var(--paper); border-radius: 8px; overflow: hidden; }
.collection-viewer__stage { min-height: 590px; background: #eef0ef; }
.collection-viewer__stage img { width: 100%; height: 100%; object-fit: contain; }
.collection-viewer aside { display: flex; flex-direction: column; justify-content: center; padding: 52px; border-left: 1px solid var(--line); }
.collection-viewer aside > span { margin-bottom: 26px; color: var(--red); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.collection-viewer aside h3 { margin-bottom: 16px; font-size: 30px; }
.collection-viewer aside p { margin-bottom: 34px; color: var(--ink-soft); }
.collection-viewer aside .button { align-self: flex-start; }
.collection-choices { margin-top: 16px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.collection-choices button { min-width: 0; padding: 0 0 17px; color: var(--ink); text-align: left; border: 1px solid transparent; border-radius: 8px; background: var(--paper); overflow: hidden; cursor: pointer; }
.collection-choices button.is-current { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(7, 52, 139, .08); }
.collection-choices img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--mist); }
.collection-choices span, .collection-choices small { display: block; margin-inline: 16px; }
.collection-choices span { margin-top: 14px; font-size: 14px; font-weight: 800; }
.collection-choices small { margin-top: 3px; color: var(--ink-soft); font-size: 11px; }

.inventory-catalog { padding: 110px 0; background: var(--paper); }
.inventory-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px 16px; }
.inventory-card { min-width: 0; border-bottom: 1px solid var(--line); }
.inventory-card__image { display: block; aspect-ratio: 1; overflow: hidden; border-radius: 8px; background: var(--mist); }
.inventory-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.inventory-card:hover .inventory-card__image img { transform: scale(1.025); }
.inventory-card > div { padding: 17px 2px 20px; }
.inventory-card p { margin: 0 0 5px; color: var(--red); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.inventory-card h3 { margin: 0 0 12px; font-size: 19px; }
.inventory-card > div a { color: var(--blue); font-size: 12px; font-weight: 800; }
.whatsapp-float { position: fixed; z-index: 80; right: 20px; bottom: 20px; min-height: 48px; display: inline-flex; align-items: center; gap: 9px; padding: 7px 16px 7px 7px; color: var(--paper); background: var(--green); border-radius: 6px; box-shadow: var(--shadow); font-size: 12px; }
.whatsapp-float span { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; background: var(--paper); color: var(--green); border-radius: 50%; font-size: 10px; font-weight: 900; }

/* 2026 visual refinement: editorial product rhythm with real factory imagery. */
body { background: #fbfcfe; }
.announcement { color: var(--paper); background: #a93442; }
.site-header { background: rgba(255,255,255,.97); }
.header-inner { min-height: 76px; }
.site-nav > a, .nav-trigger { min-height: 76px; }
.site-nav > .nav-contact { min-height: 38px; padding: 0 16px; color: var(--paper); background: var(--green); border: 0; }
.site-nav > .nav-contact:hover { color: var(--paper); background: var(--green-dark); border: 0; }
.hero { min-height: min(780px, calc(100vh - 112px)); }
.hero-slider__track, .hero-slide { position: absolute; inset: 0; }
.hero-slide { visibility: hidden; opacity: 0; transition: opacity .55s ease, visibility 0s linear .55s; }
.hero-slide.is-active { visibility: visible; opacity: 1; transition-delay: 0s; }
.hero-slide__media { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(.86) contrast(1.05); }
.hero-slide:first-child .hero-slide__media { object-position: center 54%; }
.hero-slide .hero__scrim { background: rgba(8,20,45,.58); }
.hero-slide:first-child .hero__scrim { background: rgba(8,20,45,.5); }
.hero__content { padding-top: 110px; }
.hero h1 { max-width: 13ch; font-size: 70px; }
.hero h2 { max-width: 16ch; margin-bottom: 24px; font-size: 62px; }
.hero__content > p:not(.eyebrow) { max-width: 610px; }
.hero .button { min-width: 156px; }
.hero-slider__controls { position: absolute; z-index: 4; right: max(24px, calc((100vw - var(--shell)) / 2)); bottom: 27px; width: auto; display: flex; align-items: center; gap: 18px; }
.hero-slider__controls > button { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: rgba(5,36,95,.8); border: 1px solid rgba(255,255,255,.7); cursor: pointer; }
.hero-slider__controls > button:hover, .hero-slider__controls > button:focus-visible { color: var(--paper); background: var(--accent); border-color: var(--accent); }
.hero-slider__dots { display: flex; align-items: center; gap: 8px; }
.hero-slider__dots button { width: 28px; height: 4px; position: relative; padding: 0; overflow: hidden; background: rgba(255,255,255,.55); border: 0; cursor: pointer; }
.hero-slider__dots button.is-active::after { content: ''; position: absolute; inset: 0; background: var(--accent); transform-origin: left; animation: hero-progress 5s linear; }
.hero-slider:hover .hero-slider__dots button.is-active::after, .hero-slider:focus-within .hero-slider__dots button.is-active::after { animation-play-state: paused; }
@keyframes hero-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.section--categories { padding-bottom: 96px; }
.category-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; }
.category-tile { min-height: 310px; grid-column: span 3; }
.category-tile:nth-child(1), .category-tile:nth-child(2) { min-height: 430px; grid-column: span 6; }
.category-tile__overlay { background: rgba(13,22,18,.34); }
.category-tile::after { content: ''; width: 0; height: 3px; position: absolute; left: 28px; bottom: 0; background: #fff; transition: width .3s; }
.category-tile:hover::after { width: calc(100% - 56px); }
.category-tile__body strong { font-size: 23px; }
.range-showcase { padding: 112px 0; background: #fff; }
.range-showcase--continued { padding-top: 0; }
body:has(.range-showcase--continued) .range-showcase:not(.range-showcase--continued) { padding-bottom: 20px; }
.range-showcase--catalog { padding: 86px 0 92px; background: #f4f6fa; }
.range-showcase--catalog + .catalog-section { padding-top: 86px; }
.range-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.range-card { min-width: 0; background: #fff; border: 1px solid var(--line); transition: transform .25s, border-color .25s, box-shadow .25s; }
.range-card:hover { transform: translateY(-4px); border-color: #aab8d2; box-shadow: 0 16px 34px rgba(7,52,139,.1); }
.range-card__image { aspect-ratio: 1 / .82; position: relative; overflow: hidden; background: #171a22; }
.range-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.range-card:hover .range-card__image img { transform: scale(1.025); }
.range-card__image span { width: 36px; height: 36px; position: absolute; left: 14px; top: 14px; display: grid; place-items: center; color: var(--paper); background: var(--accent); font-size: 11px; font-weight: 900; }
.range-card__body { min-height: 112px; position: relative; padding: 22px 52px 20px 22px; }
.range-card__body h3 { margin: 0 0 8px; font-size: 19px; }
.range-card__body p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.range-card__body b { position: absolute; right: 22px; top: 24px; color: var(--blue); font-size: 20px; }
.proof-band { padding: 46px 0; background: var(--blue); }
.proof-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof-grid strong { font-size: 32px; }
.factory-story { padding: 118px 0; background: #f4f6fa; }
.factory-story__intro { margin-bottom: 48px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 10%; align-items: end; }
.factory-story__intro h2 { max-width: 19ch; margin: 0; }
.factory-story__intro > div:last-child { max-width: 560px; justify-self: end; color: var(--ink-soft); }
.factory-story__intro .text-link { display: inline-flex; margin-top: 14px; }
.factory-story__gallery { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr); gap: 16px; }
.factory-story figure { position: relative; margin: 0; overflow: hidden; background: var(--ink); }
.factory-story__primary { min-height: 660px; }
.factory-story__secondary { display: grid; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 16px; }
.factory-story__secondary figure { min-height: 322px; }
.factory-story img { width: 100%; height: 100%; position: absolute; object-fit: cover; transition: transform .5s; }
.factory-story figure:hover img { transform: scale(1.025); }
.factory-story figcaption { position: absolute; inset: auto 22px 20px; display: flex; align-items: center; gap: 14px; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.55); }
.factory-story figcaption span { font-size: 11px; font-weight: 800; }
.factory-story figcaption strong { font-size: 18px; }
.factory-story__primary figcaption strong { font-size: 25px; }
.section--products { background: #f1f4f8; }
.section--products .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card { border: 0; box-shadow: 0 1px 0 rgba(20,61,50,.1); }
.product-card__image { aspect-ratio: 1 / .82; }
.product-card__body { padding: 24px; }
.product-card__body .eyebrow { color: var(--wine); }
.product-card h3 { font-size: 20px; }
.process-section { background: #071630; }
.process-grid { gap: 28px; }
.process-feature video { border: 1px solid #303934; }
.applications-section { background: #fff; }
.application-list a { padding-inline: 18px; transition: padding .2s, background-color .2s, color .2s; }
.application-list a:hover { padding-inline: 28px; }
.sourcing-flow { padding: 104px 0; color: #fff; background: var(--blue); }
.sourcing-flow__heading { margin-bottom: 54px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 10%; align-items: end; }
.sourcing-flow__heading h2 { max-width: 19ch; margin: 0; }
.sourcing-flow__heading > p { max-width: 560px; margin: 0; color: #d7e3fb; }
.sourcing-flow__steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.35); }
.sourcing-flow__steps article { min-height: 270px; padding: 28px 28px 24px; border-left: 1px solid rgba(255,255,255,.25); }
.sourcing-flow__steps article:first-child { padding-left: 0; border-left: 0; }
.sourcing-flow__steps span { color: #ff8a7f; font-size: 13px; font-weight: 900; }
.sourcing-flow__steps h3 { margin: 70px 0 16px; font-size: 23px; }
.sourcing-flow__steps p { margin: 0; color: #d7e3fb; font-size: 14px; }
.cta-band { background: var(--red); }
.site-footer { background: #061328; }
.whatsapp-float { background: var(--blue); }

.catalog-map { padding: 108px 0; color: #fff; background: #071630; }
.catalog-map__intro { margin-bottom: 46px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 10%; align-items: end; }
.catalog-map__intro h2 { max-width: 18ch; margin: 0; }
.catalog-map__intro > p { max-width: 560px; margin: 0; color: #c7d4ea; }
.catalog-map__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.28); }
.catalog-map__grid article { min-height: 250px; padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.catalog-map__grid article:nth-child(3n) { border-right: 0; }
.catalog-map__grid header { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.catalog-map__grid header span { color: #ff8a7f; font-size: 12px; font-weight: 900; }
.catalog-map__grid h3 { margin: 0; font-size: 22px; }
.catalog-map__grid article > div { margin-top: 48px; display: grid; }
.catalog-map__grid a { min-height: 34px; display: flex; align-items: center; justify-content: space-between; color: #c7d4ea; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.catalog-map__grid a:hover { color: #fff; }
.catalog-map__grid a b { color: #ff8a7f; }
.resource-hub { padding: 108px 0; background: #fff; }
.resource-hub__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.resource-hub__grid > a { min-height: 290px; position: relative; padding: 28px; border-right: 1px solid var(--line); }
.resource-hub__grid > a:last-child { border-right: 0; }
.resource-hub__grid span { color: var(--red); font-size: 12px; font-weight: 900; }
.resource-hub__grid h3 { margin: 80px 0 14px; font-size: 23px; }
.resource-hub__grid p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.resource-hub__grid b { position: absolute; right: 28px; bottom: 24px; color: var(--blue); font-size: 20px; }
.resource-hub__grid > a:hover { background: #f4f6fa; }

.content-hero--company-history { background: #293f46; }
.content-hero--quality-documents { background: #29333d; }
.content-hero--video-center { background: #111c32; }
.content-hero--garment-inspiration { background: #3d3840; }
.history-stage { padding: 110px 0 0; background: #fff; }
.history-stage__intro, .video-library__intro, .garment-gallery__intro { margin-bottom: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: end; }
.history-stage__intro h2, .video-library__intro h2, .garment-gallery__intro h2 { margin: 0; }
.history-stage__intro > div:last-child, .video-library__intro > div:last-child, .garment-gallery__intro > div:last-child { color: var(--ink-soft); }
.history-rail { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 2px solid var(--blue); }
.history-rail article { min-height: 360px; position: relative; padding: 34px 34px 44px; border-right: 1px solid var(--line); }
.history-rail article:last-child { border-right: 0; }
.history-rail strong { display: block; color: var(--blue); font-size: 34px; }
.history-rail span { position: absolute; right: 28px; top: 38px; color: var(--red); font-size: 12px; font-weight: 900; }
.history-rail h3 { margin: 94px 0 16px; }
.history-rail p { color: var(--ink-soft); }
.history-proof { padding: 34px 0; color: #fff; background: var(--blue); }
.history-proof .site-shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.history-proof p { margin: 0; }
.history-proof .text-link { color: #fff; }
.document-desk { padding: 110px 0; background: #f4f6fa; }
.document-desk__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9%; align-items: start; }
.document-desk__copy h2 { margin-top: 0; }
.document-desk__copy p { color: var(--ink-soft); }
.document-desk__copy .button { margin-top: 20px; }
.document-stack { display: grid; gap: 14px; }
.document-stack article { padding: 26px 28px; background: #fff; border-left: 4px solid var(--blue); }
.document-stack header { display: flex; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: 11px; font-weight: 800; }
.document-stack header b { color: var(--red); }
.document-stack h3 { margin: 26px 0 8px; }
.document-stack p { margin: 0; color: var(--ink-soft); }
.scope-note { padding: 42px 0; color: #fff; background: #071630; }
.scope-note .site-shell { display: grid; grid-template-columns: .45fr 1fr; gap: 8%; align-items: center; }
.scope-note strong { font-size: 24px; }
.scope-note p { margin: 0; color: #c7d4ea; }
.video-library { padding: 110px 0; background: #071630; color: #fff; }
.video-library__intro > div:last-child { color: #c7d4ea; }
.video-library__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.video-library__grid article { border-top: 1px solid rgba(255,255,255,.24); }
.video-library__grid article:first-child { grid-column: span 2; }
.video-library__grid video { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; background: #030916; }
.video-library__grid article > div { padding: 24px 0 12px; display: grid; grid-template-columns: 48px 1fr; }
.video-library__grid span { color: #ff8a7f; font-size: 12px; font-weight: 900; }
.video-library__grid h3 { margin: 0; }
.video-library__grid p { grid-column: 2; margin: 8px 0 0; color: #c7d4ea; }
.garment-gallery { padding: 110px 0; background: #fff; }
.garment-gallery__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.garment-gallery figure { min-height: 420px; position: relative; grid-column: span 4; margin: 0; overflow: hidden; background: #eef0f2; }
.garment-gallery figure:first-child, .garment-gallery figure:nth-child(2) { min-height: 600px; grid-column: span 6; }
.garment-gallery img { width: 100%; height: 100%; position: absolute; object-fit: cover; transition: transform .45s; }
.garment-gallery figure:hover img { transform: scale(1.02); }
.garment-gallery figcaption { position: absolute; inset: auto 20px 18px; display: flex; align-items: center; gap: 14px; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.7); }
.garment-gallery figcaption span { color: #ff8a7f; font-size: 11px; font-weight: 900; }
.garment-gallery figcaption strong { font-size: 18px; }
.legal-document { padding: 110px 0; background: #f4f6fa; }
.legal-document__layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 9%; align-items: start; }
.legal-document aside { position: sticky; top: 130px; padding-top: 18px; border-top: 3px solid var(--blue); }
.legal-document aside > strong { display: block; margin: 14px 0 20px; font-size: 24px; }
.legal-document aside > p:last-child { color: var(--ink-soft); font-size: 13px; }
.legal-document article > h2 { max-width: 22ch; margin-top: 0; }
.legal-document article > p { max-width: 76ch; color: var(--ink-soft); }
.legal-sections { margin-top: 58px; border-top: 1px solid var(--line); }
.legal-sections section { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-sections section > span { color: var(--red); font-size: 12px; font-weight: 900; }
.legal-sections h3 { margin: 0 0 10px; font-size: 22px; }
.legal-sections p { max-width: 72ch; margin: 0; color: var(--ink-soft); }
.legal-sections .text-link { margin-top: 18px; }

/* 2026 pre-launch refinement: quiet, product-led presentation inspired by premium hardware sites. */
:root { --radius: 8px; --shell: 1320px; --shadow: 0 18px 50px rgba(6,19,40,.1); }
body { color: #101114; background: #fff; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Microsoft YaHei", Arial, sans-serif; }
h1, h2, h3 { font-weight: 700; }
h2 { font-size: 48px; }
.site-shell { width: min(calc(100% - 64px), var(--shell)); }
.eyebrow { font-size: 11px; }
.button { min-height: 46px; border-radius: 24px; font-weight: 700; }
.text-link { font-weight: 700; }
.announcement { min-height: 32px; }
.announcement .site-shell { min-height: 32px; }
.site-header { background: rgba(255,255,255,.84); border-color: rgba(16,17,20,.1); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); }
.site-header.is-sticky { box-shadow: 0 1px 0 rgba(16,17,20,.08); }
.header-inner { min-height: 70px; }
.brand-logo { width: 146px; height: 52px; }
.site-nav { gap: 18px; font-size: 12px; }
.site-nav > a, .nav-trigger { min-height: 70px; }
.site-nav > .nav-contact { min-height: 34px; border-radius: 18px; }
.nav-submenu { border: 0; border-top: 1px solid rgba(16,17,20,.08); border-radius: 0 0 8px 8px; box-shadow: 0 22px 48px rgba(6,19,40,.12); }
.hero { min-height: min(820px, calc(100vh - 102px)); max-height: 900px; }
.hero-slide .hero__scrim { background: rgba(3,10,24,.44); }
.hero-slide:first-child .hero__scrim { background: rgba(3,10,24,.4); }
.hero-slide__media { filter: saturate(.9) contrast(1.03); }
.hero__content { padding: 126px 0 154px; }
.hero h1 { max-width: 12ch; font-size: 76px; }
.hero h2 { max-width: 14ch; font-size: 66px; }
.hero__content > p:not(.eyebrow) { max-width: 640px; color: rgba(255,255,255,.88); font-size: 20px; line-height: 1.5; }
.hero-slider__controls > button { border-radius: 50%; background: rgba(17,17,17,.56); backdrop-filter: blur(10px); }
.section { padding: 132px 0; }
.section-heading { margin-bottom: 58px; align-items: end; }
.section-heading h2 { max-width: 20ch; font-size: 52px; }
.section-heading > p { max-width: 560px; font-size: 16px; }
.category-grid { gap: 18px; }
.category-tile { border-radius: 8px; }
.category-tile__body { inset: auto 32px 30px; }
.category-tile__body strong { font-size: 26px; }
.range-showcase, .factory-story, .resource-hub, .catalog-map { padding-block: 132px; }
.range-card { border: 0; border-radius: 8px; overflow: hidden; background: #f5f5f7; }
.range-card:hover { transform: translateY(-2px); border-color: transparent; box-shadow: var(--shadow); }
.range-card__body { min-height: 124px; background: #fff; }
.proof-band { padding: 62px 0; background: #101b31; }
.proof-grid strong { font-size: 38px; }
.proof-grid span { color: rgba(255,255,255,.68); }
.factory-story { background: #f5f5f7; }
.factory-story figure { border-radius: 8px; }
.factory-story__primary { min-height: 720px; }
.resource-hub__grid { border-color: #d9d9de; }
.resource-hub__grid > a { min-height: 320px; transition: background-color .25s, transform .25s; }
.resource-hub__grid > a:hover { transform: translateY(-2px); background: #f5f5f7; }
.section--products { background: #f5f5f7; }
.section--products .product-grid { gap: 22px; }
.product-card { border-radius: 8px; box-shadow: none; }
.product-card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(6,19,40,.1); }
.product-card__image { aspect-ratio: 1 / .9; }
.product-card__body { padding: 26px; }
.product-card h3 { font-size: 21px; }
.process-section { padding: 132px 0; background: #050b16; }
.process-feature video { border: 0; border-radius: 8px; }
.application-list strong { font-size: 30px; }
.application-list a { min-height: 98px; }
.sourcing-flow { padding: 124px 0; background: #0b347d; }
.sourcing-flow__steps article { min-height: 290px; }
.cta-band { padding: 100px 0; background: #b62c24; }
.cta-band h2 { font-size: 50px; }
.page-hero { padding: 132px 0 112px; }
.page-hero h1 { max-width: 16ch; font-size: 66px; }
.product-detail { padding: 96px 0 116px; }
.product-gallery__main { border-radius: 8px; }
.product-summary h1 { font-size: 54px; }
.spec-section, .inquiry-section { padding: 112px 0; }
.application-note { padding: 46px 0; color: #fff; background: var(--red); }
.application-note .site-shell { display: grid; grid-template-columns: .5fr 1fr auto; gap: 6%; align-items: center; }
.application-note strong { font-size: 23px; }
.application-note p { margin: 0; }

@media (max-width: 1180px) {
    .menu-toggle { display: block; }
    .site-nav { position: fixed; inset: 118px 0 0; padding: 20px 24px 40px; display: none; flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; color: var(--ink); background: var(--paper); }
    .site-nav.is-open { display: flex; }
    .site-nav > a, .nav-trigger { width: 100%; min-height: 52px; justify-content: space-between; padding: 0; border-bottom: 1px solid var(--line); }
    .site-nav > a:hover, .nav-trigger:hover, .nav-item:focus-within > .nav-trigger { border-bottom-color: var(--line); }
    .nav-item { width: 100%; }
    .nav-submenu, .nav-submenu--right, .nav-submenu--mega { width: 100%; min-width: 0; position: static; display: none; padding: 8px 0 12px 16px; grid-template-columns: 1fr; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none; }
    .nav-item:hover > .nav-submenu, .nav-item:focus-within > .nav-submenu { display: none; }
    .nav-item.is-open > .nav-submenu { display: grid; }
    .nav-submenu > a, .nav-submenu__links > a { min-height: 40px; padding: 7px 10px; }
    .nav-submenu__intro { display: none; }
    .nav-submenu__links { grid-template-columns: 1fr; }
    .language-switcher { margin-top: 18px; padding: 0; border: 0; }
}

@media (max-width: 1100px) {
    .section--products .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .product-grid--catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 28px; }
    .proof-grid > div:nth-child(3) { border-right: 0; }
    .product-detail__grid { gap: 46px; }
}

@media (max-width: 820px) {
    .collection-index__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .collection-browser__heading, .collection-viewer { grid-template-columns: 1fr; }
    .collection-viewer__stage { min-height: 500px; }
    .collection-viewer aside { border-top: 1px solid var(--line); border-left: 0; }
    .collection-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .inventory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .legal-document__layout { grid-template-columns: 1fr; gap: 48px; }
    .legal-document aside { position: static; }
    .catalog-map__intro, .history-stage__intro, .video-library__intro, .garment-gallery__intro { grid-template-columns: 1fr; gap: 24px; }
    .catalog-map__grid { grid-template-columns: 1fr; }
    .catalog-map__grid article, .catalog-map__grid article:nth-child(3n) { min-height: 210px; border-right: 0; }
    .resource-hub__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .resource-hub__grid > a:nth-child(2) { border-right: 0; }
    .history-rail { grid-template-columns: 1fr; }
    .history-rail article { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
    .history-proof .site-shell, .scope-note .site-shell, .application-note .site-shell { align-items: flex-start; flex-direction: column; }
    .document-desk__grid { grid-template-columns: 1fr; gap: 48px; }
    .video-library__grid { grid-template-columns: 1fr; }
    .video-library__grid article:first-child { grid-column: auto; }
    .garment-gallery figure, .garment-gallery figure:first-child, .garment-gallery figure:nth-child(2) { min-height: 440px; grid-column: span 6; }
    h1, .hero h1, .page-hero h1 { font-size: 48px; }
    .hero h2 { font-size: 46px; }
    h2 { font-size: 36px; }
    .site-shell { width: min(calc(100% - 36px), var(--shell)); }
    .announcement .site-shell { justify-content: center; }
    .announcement a { display: none; }
    .hero { min-height: 680px; }
    .hero__content { padding: 80px 0 120px; }
    .section { padding: 84px 0; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
    .factory-story__intro { grid-template-columns: 1fr; gap: 28px; }
    .factory-story__intro > div:last-child { justify-self: start; }
    .factory-story__gallery { grid-template-columns: 1fr; }
    .factory-story__primary { min-height: 520px; }
    .factory-story__secondary { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
    .range-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section--products .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sourcing-flow__heading { grid-template-columns: 1fr; gap: 28px; }
    .sourcing-flow__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sourcing-flow__steps article:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
    .sourcing-flow__steps article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.25); }
    .category-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .category-tile, .category-tile:nth-child(1), .category-tile:nth-child(2) { min-height: 320px; grid-column: auto; }
    .category-tile { min-height: 320px; }
    .process-intro, .story-grid, .contact-layout, .inquiry-layout { grid-template-columns: 1fr; gap: 44px; }
    .process-grid { grid-template-columns: 1fr; gap: 42px; }
    .cta-band .site-shell, .quality-band .site-shell { align-items: flex-start; flex-direction: column; }
    .content-overview__grid { grid-template-columns: 1fr; gap: 38px; }
    .story-editorial__grid, .capacity-stage__grid, .qc-layout, .design-studio__grid, .warehouse-stage .site-shell, .custom-brief__grid, .faq-hub__grid { grid-template-columns: 1fr; gap: 48px; }
    .story-editorial__mosaic, .design-studio__samples { min-height: 500px; }
    .milestone-rail { grid-template-columns: 1fr; gap: 20px; }
    .milestone-rail div { padding: 16px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
    .value-ledger article { grid-template-columns: 48px 1fr; padding: 22px 0; }
    .value-ledger article p { grid-column: 2; }
    .development-path__steps, .process-journey__track, .shipping-modes__grid { grid-template-columns: 1fr; }
    .development-path__steps article { min-height: 250px; padding: 26px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
    .development-path__steps h3 { margin-top: 44px; }
    .process-journey__intro { grid-template-columns: 1fr; gap: 24px; }
    .process-journey__track article { min-height: 230px; border-right: 1px solid var(--line); border-bottom: 0; }
    .process-journey__track h3 { margin-top: 44px; }
    .warehouse-stage video { min-height: 400px; }
    .brand-logo { width: 132px; height: 50px; }
    .application-gallery__grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 380px); }
    .application-gallery__grid a:first-child { grid-row: auto; }
    .faq-hub aside { position: static; }
    .next-step-band .site-shell { align-items: flex-start; flex-direction: column; }
    .catalog-layout { grid-template-columns: 1fr; gap: 24px; }
    .catalog-filter { position: static; }
    .filter-heading { display: flex; align-items: center; justify-content: space-between; }
    .filter-heading button { display: inline-flex; min-height: 40px; align-items: center; padding: 0 14px; color: var(--paper); background: var(--green); border: 0; border-radius: var(--radius); }
    .catalog-filter form { display: none; padding: 22px; background: var(--mist); }
    .catalog-filter form.is-open { display: grid; }
    .product-detail__grid { grid-template-columns: 1fr; gap: 36px; }
    .product-summary { padding-top: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 52px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .collection-index, .collection-browser { padding: 68px 0; }
    .inventory-catalog { padding: 68px 0; }
    .inventory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 10px; }
    .collection-index__grid { grid-template-columns: 1fr; }
    .collection-tabs { margin-bottom: 44px; }
    .collection-browser__heading { gap: 16px; }
    .collection-viewer__stage { min-height: 330px; }
    .collection-viewer aside { padding: 28px 22px; }
    .collection-viewer aside h3 { font-size: 26px; }
    .collection-choices { gap: 10px; }
    .collection-choices span, .collection-choices small { margin-inline: 10px; }
    body { font-size: 15px; }
    h1, .hero h1, .page-hero h1 { font-size: 40px; overflow-wrap: anywhere; }
    .hero h2 { font-size: 38px; }
    h2 { font-size: 31px; }
    .site-shell { width: min(calc(100% - 28px), var(--shell)); }
    .announcement { min-height: 42px; text-align: center; }
    .announcement .site-shell { min-height: 42px; }
    .header-inner { min-height: 72px; }
    .site-nav { inset: 114px 0 0; }
    .brand-mark { width: 38px; height: 38px; }
    .brand-copy strong { font-size: 17px; }
    .hero { min-height: 650px; max-height: none; }
    .hero__content > p:not(.eyebrow) { font-size: 16px; }
    .hero .button-row .button { width: 100%; }
    .hero__scroll { left: 14px; }
    .hero-slider__controls { right: 14px; bottom: 22px; gap: 10px; }
    .hero-slider__controls > button { width: 38px; height: 38px; }
    .hero-slider__dots button { width: 20px; }
    .section, .process-section, .factory-story, .range-showcase, .sourcing-flow, .catalog-map, .resource-hub, .history-stage, .document-desk, .video-library, .garment-gallery, .legal-document { padding: 68px 0; }
    .legal-sections { margin-top: 38px; }
    .legal-sections section { grid-template-columns: 36px 1fr; gap: 12px; padding: 24px 0; }
    .catalog-map__intro, .history-stage__intro, .video-library__intro, .garment-gallery__intro { margin-bottom: 34px; }
    .catalog-map__grid article { min-height: 190px; padding: 22px 18px; }
    .catalog-map__grid article > div { margin-top: 30px; }
    .resource-hub__grid { grid-template-columns: 1fr; }
    .resource-hub__grid > a { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
    .resource-hub__grid > a:last-child { border-bottom: 0; }
    .resource-hub__grid h3 { margin-top: 52px; }
    .history-stage { padding-bottom: 0; }
    .history-rail article { min-height: 220px; padding: 22px 18px; }
    .document-stack article { padding: 22px 18px; }
    .document-stack header { gap: 12px; }
    .video-library__grid article > div { grid-template-columns: 38px 1fr; }
    .video-library__grid p { grid-column: 1 / -1; }
    .garment-gallery__grid { grid-template-columns: 1fr; }
    .garment-gallery figure, .garment-gallery figure:first-child, .garment-gallery figure:nth-child(2) { min-height: 400px; grid-column: auto; }
    .range-showcase--continued { padding-top: 0; }
    body:has(.range-showcase--continued) .range-showcase:not(.range-showcase--continued) { padding-bottom: 16px; }
    .category-grid, .product-grid, .product-grid--catalog { grid-template-columns: 1fr; }
    .category-tile { min-height: 300px; }
    .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .proof-grid > div { padding: 4px 15px; }
    .proof-grid > div:nth-child(2), .proof-grid > div:nth-child(4) { border-right: 0; }
    .proof-grid > div:nth-child(3) { border-right: 1px solid rgba(255,255,255,.24); }
    .proof-grid strong { font-size: 23px; }
    .factory-story__gallery { width: 100%; }
    .factory-story__primary { min-height: 390px; }
    .factory-story__secondary { grid-template-columns: 1fr; }
    .factory-story__secondary figure { min-height: 280px; }
    .range-grid { grid-template-columns: 1fr; }
    .section--products .product-grid, .sourcing-flow__steps { grid-template-columns: 1fr; }
    .sourcing-flow__steps article, .sourcing-flow__steps article:first-child, .sourcing-flow__steps article:nth-child(3) { min-height: 210px; padding: 24px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
    .sourcing-flow__steps h3 { margin-top: 40px; }
    .application-list a { grid-template-columns: 42px 1fr 26px; }
    .application-list strong { font-size: 21px; }
    .page-hero { padding: 78px 0 70px; }
    .product-detail, .catalog-section, .contact-section { padding: 54px 0 72px; }
    .product-summary h1 { font-size: 38px; }
    .spec-section, .inquiry-section { padding: 72px 0; }
    .spec-table { grid-template-columns: 1fr; }
    .spec-table > div { grid-template-columns: 120px 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .inquiry-form .button { width: 100%; }
    .capability-grid { grid-template-columns: 1fr; }
    .capability-grid article { min-height: 220px; }
    .capability-grid h3 { margin-top: 38px; }
    .content-media__image { aspect-ratio: 4 / 3; }
    .story-editorial__mosaic, .design-studio__samples { min-height: 380px; }
    .story-editorial__mosaic figure:nth-child(2) { border-width: 6px; }
    .value-ledger article { gap: 14px; }
    .capacity-stage, .warehouse-stage, .development-path { padding: 68px 0; }
    .operations-board__rows article { grid-template-columns: 52px 1fr; gap: 14px; padding: 18px 0; }
    .operations-board__rows article > span { display: none; }
    .qc-visual { min-height: 430px; }
    .qc-standard .site-shell { align-items: flex-start; flex-direction: column; gap: 10px; }
    .qc-standard .site-shell > span { display: none; }
    .development-path__steps article { min-height: 220px; }
    .process-film video { aspect-ratio: 4 / 3; }
    .warehouse-stage video { min-height: 300px; }
    .application-gallery__grid { grid-template-rows: repeat(3, 330px); }
    .application-gallery__grid a:first-child > h3 { font-size: 30px; }
    .brief-ticket { box-shadow: 8px 8px 0 #dce3df; }
    .brief-ticket footer { grid-template-columns: 1fr; }
    .faq-hub .faq-list summary { grid-template-columns: 30px 1fr 20px; }
    .faq-hub .faq-list details p { margin-left: 30px; }
    .content-stats__grid { grid-template-columns: 1fr; }
    .content-stats__grid > div { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
    .content-stats__grid > div:last-child { border-bottom: 0; }
    .faq-list summary { min-height: 64px; font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 42px; }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; padding-bottom: 20px; }
    .footer-legal { flex-wrap: wrap; }
    .whatsapp-float { right: 12px; bottom: 12px; padding-right: 9px; }
    .whatsapp-float strong { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
