:root {
  --ink: #071b33;
  --navy: #0b2a4a;
  --marine: #174f78;
  --sky: #8cb8d2;
  --mist: #f4f7f9;
  --line: #d8e0e7;
  --muted: #5b6875;
  --white: #ffffff;
  --danger: #a12d25;
  --shell: 2160px;
  --pad: clamp(20px, 4vw, 72px);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); letter-spacing: 0; line-height: .98; }
h1 { font-size: clamp(3.3rem, 7vw, 7rem); font-weight: 600; }
h2 { font-size: clamp(2.4rem, 4.4vw, 4.5rem); font-weight: 600; }
h3 { font-size: clamp(1.55rem, 2vw, 2.2rem); font-weight: 600; }
::selection { color: var(--white); background: var(--marine); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }

.shell { width: min(100%, var(--shell)); margin: 0 auto; padding-inline: var(--pad); }
.section-pad { padding-block: clamp(76px, 9vw, 144px); }
.sr-only, .skip-link { 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:focus { z-index: 1000; top: 10px; left: 10px; width: auto; height: auto; clip: auto; padding: 10px 14px; color: var(--white); background: var(--ink); }
.eyebrow { display: inline-block; margin-bottom: 22px; color: var(--marine); font-family: var(--display); font-size: .93rem; font-weight: 700; text-transform: uppercase; }
.eyebrow.light { color: #bfd6e6; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 13px 22px; border: 1px solid var(--ink); border-radius: 0; background: var(--ink); color: var(--white); font-family: var(--display); font-size: 1.05rem; font-weight: 600; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.button:hover { background: var(--marine); border-color: var(--marine); }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: transparent; border-color: var(--white); }
.button-ghost-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.72); }
.button-ghost-light:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-small { min-height: 42px; padding: 9px 17px; }
.text-link, .text-button { display: inline-flex; align-items: center; gap: 20px; padding: 0 0 5px; border: 0; border-bottom: 1px solid currentColor; background: none; font-family: var(--display); font-size: 1.05rem; font-weight: 600; cursor: pointer; }
.text-link span, .text-button span { transition: transform .2s; }
.text-link:hover span, .text-button:hover span { transform: translate(3px, -3px); }
.text-link.light { color: var(--white); }
.icon-button { display: inline-grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 0; background: transparent; cursor: pointer; }
.icon-button.light { color: var(--white); border-color: rgba(255,255,255,.35); }

.site-header { position: relative; z-index: 50; border-bottom: 1px solid var(--line); background: var(--white); }
.utility-bar { min-height: 34px; color: #d9e8f1; background: var(--ink); font-family: var(--display); font-size: .8rem; text-transform: uppercase; }
.utility-inner { display: flex; min-height: 34px; align-items: center; gap: 28px; }
.utility-inner span { margin-left: auto; }
.utility-inner a:hover { color: var(--white); }
.nav-row { display: flex; min-height: 82px; align-items: center; gap: 34px; }
.brand { display: flex; flex: 0 0 auto; align-items: center; min-width: 220px; }
.brand-logo { display: block; width: min(220px, 100%); height: auto; }
.primary-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: clamp(15px, 1.8vw, 30px); }
.primary-nav > a, .nav-item > a { position: relative; display: block; padding-block: 28px; font-family: var(--display); font-size: 1.45rem; font-weight: 600; }
.primary-nav > a::after, .nav-item > a::after { position: absolute; right: 0; bottom: 21px; left: 0; height: 2px; background: var(--marine); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.primary-nav > a:hover::after, .nav-item:hover > a::after { transform: scaleX(1); }
.nav-item { position: static; }
.submenu-toggle { display: none; }
.mega-menu { position: absolute; top: 100%; right: 0; left: 0; display: grid; grid-template-columns: .8fr 2fr; visibility: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); opacity: 0; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s; }
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.mega-intro { padding: 44px max(var(--pad), calc((100vw - var(--shell)) / 2 + var(--pad))); padding-right: 40px; color: var(--white); background: var(--navy); }
.mega-intro strong { display: block; margin-bottom: 28px; font-family: var(--display); font-size: 2.1rem; line-height: 1; }
.mega-links { display: grid; grid-template-columns: repeat(4, 1fr); }
.mega-column { padding: 24px 22px 30px; border-right: 1px solid var(--line); }
.mega-column:last-child { border-right: 0; }
.mega-links .mega-parent { display: flex; flex-direction: column; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.mega-links .mega-parent:hover { color: var(--marine); }
.mega-links span { font-family: var(--display); font-size: 1.3rem; font-weight: 600; }
.mega-links small { color: var(--muted); }
.mega-children { display: grid; gap: 0; padding-top: 8px; }
.mega-children a { padding: 4px 0; color: var(--muted); font-size: .72rem; }
.mega-children a:hover { color: var(--ink); }
.service-mega-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-mega-link { display: flex; min-width: 0; min-height: 190px; flex-direction: column; justify-content: center; gap: 9px; padding: 28px; border-right: 1px solid var(--line); }
.service-mega-link:last-child { border-right: 0; }
.service-mega-link:hover, .service-mega-link:focus-visible { color: var(--white); background: var(--navy); }
.service-mega-link small { max-width: 260px; line-height: 1.55; }
.service-mega-link:hover small, .service-mega-link:focus-visible small { color: #c0d1dc; }
.menu-toggle { display: none; }
.mobile-nav-actions { display: none; }

.hero { position: relative; height: min(720px, calc(100vh - 132px)); min-height: 580px; overflow: hidden; color: var(--white); background: var(--ink); }
.hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: rgba(3,15,28,.44); }
.hero-inner { position: relative; z-index: 1; display: flex; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 20px; }
.hero h1 { max-width: 810px; margin-bottom: 28px; font-size: clamp(4rem, 7.5vw, 8rem); }
.hero p { max-width: 700px; margin-bottom: 36px; color: #e4edf2; font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; }
.hero-spec-band { color: var(--white); border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid #24405b; background: var(--ink); }
.hero-specs { display: grid; min-height: 132px; grid-template-columns: repeat(5, minmax(0, 1fr)); column-gap: clamp(20px, 3vw, 68px); }
.hero-specs div { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding-block: 22px; }
.hero-specs span { color: #a9c4d7; font-family: var(--display); font-size: clamp(.8rem, .7vw, .95rem); font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.hero-specs strong { font-family: var(--display); font-size: clamp(1.5rem, 1.55vw, 1.9rem); font-weight: 600; line-height: 1.08; }

.split-heading, .page-hero-grid, .product-description-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px, 10vw, 160px); align-items: end; }
.split-heading h2, .section-head h2 { max-width: 900px; margin-bottom: 0; }
.measure-copy { max-width: 620px; padding-bottom: 8px; }
.measure-copy p { margin-bottom: 26px; color: var(--muted); }
.route-showcase { padding-block: clamp(52px, 6vw, 92px); }
.route-panel { display: grid; min-height: 590px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.route-visual { min-width: 0; min-height: 590px; height: clamp(590px, 36.72vw, 752px); align-self: center; margin: 0; overflow: hidden; background: var(--mist); }
.route-visual img { height: 100%; object-fit: cover; }
.route-carousel { --route-control-gutter: clamp(30px, 2.5vw, 40px); position: relative; isolation: isolate; background: var(--white); }
.route-carousel-image { position: absolute; z-index: 0; inset-block: 0; left: var(--route-control-gutter); width: calc(100% - var(--route-control-gutter) - var(--route-control-gutter)); opacity: 0; transform: scale(1.018); transition: opacity 1.5s cubic-bezier(.4,0,.2,1), transform 1.5s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.route-carousel-image.is-current { z-index: 1; opacity: 1; transform: scale(1); }
.route-carousel-image.is-entering { z-index: 2; opacity: 1; transform: scale(1); }
.route-carousel-image.is-leaving { z-index: 1; opacity: 0; transform: scale(.992); }
.route-carousel .route-carousel-image { object-fit: contain; background: var(--white); }
.route-carousel-arrow { position: absolute; z-index: 3; top: 50%; display: grid; width: clamp(48px, 3.3vw, 58px); height: clamp(58px, 4.2vw, 70px); place-items: center; padding: 0; color: #000; border: 0; background: transparent; font-family: var(--display); font-size: clamp(1.35rem, 1.4vw, 1.7rem); transform: translateY(-50%); }
.route-carousel-arrow-prev { left: 0; }
.route-carousel-arrow-next { right: 0; }
.route-carousel-arrow:focus-visible { color: #000; background: transparent; opacity: 1; outline: 3px solid var(--marine); outline-offset: 3px; }
.route-content { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(36px, 4vw, 70px); }
.route-content .eyebrow { margin-bottom: 14px; }
.route-content h2 { max-width: 720px; margin-bottom: 20px; font-size: clamp(2.55rem, 3.2vw, 4rem); }
.route-content > p { max-width: 720px; margin-bottom: 28px; color: #405365; font-size: clamp(1rem, .95vw, 1.12rem); font-weight: 500; line-height: 1.65; }
.route-step-list { margin: 0 0 25px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.route-step-list li { display: grid; min-height: 86px; grid-template-columns: 44px minmax(0, 1fr); align-items: center; gap: 16px; border-bottom: 1px solid var(--line); }
.route-step-list li > span { color: var(--marine); font-family: var(--display); font-size: .85rem; font-weight: 700; }
.route-step-list li div { display: grid; min-width: 0; grid-template-columns: minmax(138px, .42fr) minmax(0, .58fr); align-items: center; gap: clamp(22px, 2vw, 40px); }
.route-step-list strong { font-family: var(--display); font-size: clamp(1.4rem, 1.35vw, 1.65rem); font-weight: 600; line-height: 1.1; }
.route-step-list small { color: #405365; font-size: clamp(.94rem, .82vw, 1rem); font-weight: 600; line-height: 1.45; text-align: right; }
.route-content .text-link { align-self: flex-start; }
.catalog-band { background: var(--white); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.product-preview-grid, .product-directory { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cbd5dd; border-left: 1px solid #cbd5dd; }
.product-item { min-width: 0; border-right: 1px solid #cbd5dd; border-bottom: 1px solid #cbd5dd; background: var(--white); }
.catalog-band .product-preview-grid { gap: clamp(24px, 2.4vw, 46px); border: 0; }
.catalog-band .product-preview-grid .product-item { border: 0; }
.product-image { display: block; aspect-ratio: 1; overflow: hidden; background: #edf0f2; }
.product-image img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-item:hover .product-image img { transform: scale(1.025); }
.product-info { position: relative; min-height: 142px; padding: 23px 24px; }
.product-info > span { color: var(--marine); font-family: var(--display); font-size: .78rem; font-weight: 600; text-transform: uppercase; }
.product-info h3 { max-width: calc(100% - 80px); margin: 10px 0 0; font-size: 1.55rem; }
.product-info .text-button { position: absolute; right: 22px; bottom: 26px; font-size: .9rem; }
.category-rail { background: var(--white); }
.rail-list { border-top: 1px solid var(--line); }
.rail-row { display: grid; min-height: 112px; grid-template-columns: 80px 100px minmax(200px, .8fr) 1fr 50px; align-items: center; gap: 18px; padding: 18px 22px; border-bottom: 1px solid var(--line); transition: color .2s, background .2s; }
.collection-icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.category-rail .rail-row { min-height: 126px; grid-template-columns: 72px 54px 82px minmax(200px, .8fr) 1fr 44px; }
.collection-icon-wrap { display: grid; width: 72px; height: 72px; place-items: center; border: 1px solid #c9dce8; background: #edf5f9; color: var(--marine); transition: color .2s, background .2s, border-color .2s; }
.collection-icon { width: 50px; height: 50px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
a.rail-row:hover { color: var(--white); background: var(--navy); }
.rail-index { color: var(--muted); font-family: var(--display); font-size: 1.05rem; }
.rail-code { color: var(--marine); font-family: var(--display); font-size: .88rem; font-weight: 700; }
.rail-row strong { font-family: var(--display); font-size: clamp(1.55rem, 2.2vw, 2.4rem); font-weight: 600; }
.rail-meta, .rail-row p { margin: 0; color: var(--muted); font-size: .88rem; }
.rail-arrow { justify-self: end; font-size: 1.5rem; }
a.rail-row:hover .rail-index, a.rail-row:hover .rail-code, a.rail-row:hover .rail-meta { color: #c9dce9; }
a.rail-row:hover .collection-icon-wrap, a.rail-row:focus-visible .collection-icon-wrap { border-color: var(--white); background: var(--white); color: var(--marine); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid.six { grid-template-columns: repeat(3, 1fr); }
.process-grid div { display: flex; min-height: 160px; flex-direction: column; justify-content: space-between; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid span { color: var(--marine); font-family: var(--display); }
.process-grid strong { font-family: var(--display); font-size: 1.3rem; font-weight: 600; }
.final-cta { color: var(--white); background: var(--marine); }
.final-cta-inner { display: flex; min-height: 340px; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { max-width: 850px; margin: 0; }

.page-hero { padding-block: clamp(95px, 10vw, 165px); color: var(--white); border-bottom: 1px solid #24405b; background: var(--ink); }
.page-hero.compact { padding-block: clamp(75px, 8vw, 125px); }
.page-hero h1 { max-width: 920px; margin: 0; color: var(--white); font-size: clamp(2.8rem, 5.6vw, 5.95rem); }
.page-hero p { margin: 0 0 24px; color: #cfdae1; font-size: 1.06rem; }
.page-hero .eyebrow { color: #bfd6e6; }
.page-hero .button { color: var(--ink); border-color: var(--white); background: var(--white); }
.page-hero .button:hover { color: var(--white); background: transparent; }
.page-hero .text-link, .page-hero .text-button { color: var(--white); }
.service-index { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid var(--line); background: var(--white); }
.service-index-inner { display: grid; grid-template-columns: repeat(4, 1fr); padding-inline: var(--pad); }
.service-index a { display: flex; min-height: 62px; align-items: center; gap: 14px; padding: 10px 18px; border-left: 1px solid var(--line); font-family: var(--display); font-size: .9rem; font-weight: 600; }
.service-index a:last-child { border-right: 1px solid var(--line); }
.service-index a:hover { color: var(--white); background: var(--navy); }
.service-index a span { color: var(--marine); font-size: .72rem; }
.service-index a:hover span { color: #bfd6e6; }
.service-groups .service-directory { border-bottom: 1px solid var(--line); }
.service-groups .service-directory:nth-child(even) { background: var(--white); }
.service-group-head > p { flex: 0 0 auto; margin: 0; color: var(--muted); font-family: var(--display); }
.catalog-toolbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.catalog-toolbar > span { flex: 0 0 auto; color: var(--muted); font-family: var(--display); }
.filter-list { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.filter-button { display: inline-grid; min-height: 42px; place-items: center; padding: 8px 16px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); font-family: var(--display); cursor: pointer; }
.filter-button:hover, .filter-button.is-active { color: var(--white); background: var(--ink); }
.product-item[hidden] { display: none; }
.pagination { margin-top: 44px; }
.pagination .nav-links { display: flex; gap: 0; }
.pagination .page-numbers { display: grid; min-width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); margin-right: -1px; }
.pagination .current { color: var(--white); background: var(--ink); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; color: var(--muted); font-size: .8rem; }
.product-detail-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(45px, 8vw, 120px); align-items: start; }
.product-gallery { border: 1px solid var(--line); background: var(--mist); }
.gallery-main-button { position: relative; display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery-main-button img { aspect-ratio: 1; object-fit: cover; }
.gallery-main-button > span { position: absolute; right: 14px; bottom: 14px; padding: 7px 10px; color: var(--white); background: rgba(7,27,51,.9); font-family: var(--display); font-size: .76rem; text-transform: uppercase; }
.product-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.product-thumbnails button { padding: 5px; border: 0; border-right: 1px solid var(--line); background: var(--white); cursor: pointer; opacity: .55; }
.product-thumbnails button:last-child { border-right: 0; }
.product-thumbnails button.is-active, .product-thumbnails button:hover { opacity: 1; box-shadow: inset 0 -3px var(--marine); }
.product-thumbnails img { aspect-ratio: 1; object-fit: cover; }
.gallery-note { display: flex; justify-content: space-between; gap: 20px; padding: 13px 18px; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--display); font-size: .75rem; text-transform: uppercase; }
.product-summary { position: sticky; top: 140px; padding-top: 20px; }
.product-summary h1 { margin-bottom: 24px; font-size: clamp(3.5rem, 6vw, 6.8rem); }
.product-summary > p { margin-bottom: 34px; color: var(--muted); }
.spec-table { margin-bottom: 30px; border-top: 1px solid var(--line); }
.spec-table div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.spec-table span { color: var(--muted); font-size: .78rem; }
.spec-table strong { font-size: .84rem; font-weight: 600; }
.product-summary .text-link { margin-left: 22px; }
.product-description { border-top: 1px solid var(--line); background: var(--white); }
.rich-copy { max-width: 820px; color: #344454; }
.rich-copy h2, .rich-copy h3 { color: var(--ink); }
.product-tabs { display: flex; border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-bottom: 30px; }
.product-tabs button { min-height: 48px; padding: 9px 16px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); font-family: var(--display); font-weight: 600; cursor: pointer; }
.product-tabs button[aria-selected="true"] { color: var(--white); background: var(--ink); }
.product-tab-panel { min-height: 180px; }
.product-lightbox { width: min(1080px, calc(100% - 30px)); max-height: calc(100vh - 30px); padding: 54px 18px 18px; border: 1px solid var(--line); border-radius: 0; background: var(--white); }
.product-lightbox::backdrop { background: rgba(2,15,27,.82); }
.product-lightbox img { width: 100%; max-height: calc(100vh - 105px); object-fit: contain; }
.related-products { border-top: 1px solid var(--line); }

/* Wholesale catalog 1.5.0 */
.wholesale-mega-menu { max-height: calc(100vh - 118px); overflow-y: auto; overscroll-behavior: contain; }
.wholesale-mega-content { min-width: 0; }
.wholesale-mega-section-head { min-height: 74px; border-bottom: 1px solid var(--line); background: var(--mist); }
.wholesale-mega-section-head a { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 22px; }
.wholesale-mega-section-head span { font-family: var(--display); font-size: 1.45rem; font-weight: 600; }
.wholesale-mega-section-head small { color: var(--muted); font-size: .72rem; }
.wholesale-mega-section-head a:hover, .wholesale-mega-section-head a:focus-visible { color: var(--white); background: var(--marine); }
.wholesale-mega-section-head a:hover small, .wholesale-mega-section-head a:focus-visible small { color: #d4e2ea; }
.wholesale-apparel-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wholesale-fabric-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wholesale-mega-link { display: flex; min-height: 92px; min-width: 0; flex-direction: column; justify-content: center; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wholesale-apparel-links .wholesale-mega-link:nth-child(3n), .wholesale-fabric-links .wholesale-mega-link:nth-child(3n) { border-right: 0; }
.wholesale-mega-link--placeholder { pointer-events: none; }
.wholesale-mega-link:hover, .wholesale-mega-link:focus-visible { color: var(--white); background: var(--navy); }
.wholesale-mega-link span { overflow-wrap: anywhere; font-size: 1.15rem; }
.wholesale-mega-link small { margin-top: 4px; color: var(--muted); font-size: .7rem; }
.wholesale-mega-link:hover small, .wholesale-mega-link:focus-visible small { color: #b8ccda; }
.wholesale-hero { padding-block: clamp(58px, 6vw, 92px); }
.wholesale-hero h1 { font-size: clamp(2.8rem, 4.9vw, 5.18rem); }
.wholesale-catalog { padding-bottom: clamp(76px, 9vw, 130px); }
.catalog-toolbar-shell { position: sticky; z-index: 20; top: 0; margin-bottom: 32px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); }
.wholesale-catalog .catalog-toolbar { min-height: 68px; align-items: center; margin-bottom: 0; }
.series-rail { min-width: 0; flex: 1 1 auto; flex-wrap: nowrap; overflow-x: auto; border-top: 0; scrollbar-width: thin; }
.series-rail .filter-button { flex: 0 0 auto; min-height: 68px; border-bottom: 0; white-space: nowrap; }
.series-rail .filter-button small { margin-left: 7px; color: var(--muted); font-family: var(--body); font-size: .65rem; }
.series-rail .filter-button.is-active small, .series-rail .filter-button:hover small { color: #c7d7e2; }
.product-directory.wholesale-directory { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wholesale-album .product-image { position: relative; }
.wholesale-album .product-info { display: flex; min-height: 146px; flex-direction: column; padding: 17px 18px 15px; }
.album-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wholesale-album .product-info h3 { display: -webkit-box; max-width: none; margin: 9px 0 16px; overflow: hidden; font-size: 1.25rem; line-height: 1.08; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.album-card-footer { margin-top: auto; color: var(--muted); font-family: var(--display); font-size: .7rem; text-transform: uppercase; }
.wholesale-album .product-info .text-button { position: static; right: auto; bottom: auto; flex: 0 0 auto; font-size: .76rem; }
.catalog-empty { grid-column: 1 / -1; padding: 70px 0; color: var(--muted); }

/* Product records are specification workspaces, not dark editorial heroes.
   Keep the data field light so every measurement remains legible. */
.wholesale-product-hero { padding-block: clamp(38px, 4.5vw, 68px); color: var(--ink); border-bottom: 1px solid var(--line); background: var(--white); }
.wholesale-product-hero .breadcrumbs, .wholesale-product-hero > .shell > .eyebrow { color: var(--muted); }
.wholesale-product-head { display: block; }
.wholesale-product-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(24px, 2vw, 42px); align-items: start; }
.wholesale-product-layout--two-charts { grid-template-columns: minmax(440px, 1.22fr) minmax(280px, .76fr) minmax(420px, 1.02fr); }
.wholesale-product-layout--single { grid-template-columns: minmax(0, 860px); }
.wholesale-product-record { width: 100%; }
.wholesale-product-record > .eyebrow { display: inline-block; margin-bottom: 18px; }
.wholesale-product-summary { position: static; }
.wholesale-product-summary .spec-table { margin: 0 0 26px; border: 1px solid var(--line); border-top: 3px solid var(--ink); }
.wholesale-product-summary .spec-table div { grid-template-columns: minmax(150px, .62fr) minmax(0, 1.38fr); gap: 0; padding: 0; }
.wholesale-product-summary .spec-table span { display: flex; min-height: 54px; align-items: center; padding: 14px 18px; border-right: 1px solid var(--line); color: var(--marine); background: var(--mist); font-family: var(--display); font-size: .76rem; font-weight: 600; letter-spacing: .025em; text-transform: uppercase; }
.wholesale-product-summary .spec-table strong { display: flex; min-width: 0; min-height: 54px; align-items: center; padding: 14px 20px; overflow-wrap: anywhere; font-size: .88rem; line-height: 1.45; }
.wholesale-product-summary .spec-table .product-introduction strong { display: block; min-height: 0; padding-block: 16px; }
.wholesale-product-summary .product-actions { display: flex; align-items: center; gap: 22px; }
.wholesale-product-chart { min-width: 0; padding-top: 42px; }
.product-data-card { overflow: hidden; border: 1px solid var(--line); border-top: 3px solid var(--ink); background: var(--white); }
.product-data-card > header { display: flex; min-height: 72px; flex-direction: column; justify-content: center; gap: 3px; padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--mist); }
.product-data-card .eyebrow { color: var(--marine); font-size: .66rem; }
.product-data-card h2 { margin: 0; color: var(--ink); font-size: 1.55rem; line-height: 1; }
.product-data-table-wrap { max-width: 100%; overflow-x: auto; outline-offset: -3px; }
.product-data-table-wrap:focus-visible { outline: 2px solid var(--marine); }
.product-data-table { width: 100%; min-width: 100%; border-collapse: collapse; table-layout: fixed; }
.product-data-table th, .product-data-table td { min-width: 0; height: 44px; padding: 8px 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow-wrap: anywhere; text-align: left; vertical-align: middle; }
.product-data-table th:last-child, .product-data-table td:last-child { border-right: 0; }
.product-data-table tr:last-child td { border-bottom: 0; }
.product-data-table th { color: var(--marine); background: var(--mist); font-family: var(--display); font-size: .76rem; font-weight: 600; letter-spacing: .025em; line-height: 1.65; text-transform: uppercase; }
.product-data-table td { color: var(--ink); font-size: .88rem; font-weight: 600; line-height: 1.45; }
.product-chart-note { margin: 0; padding: 12px 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; line-height: 1.45; }
@media (min-width: 1001px) and (max-width: 1370px) {
  .wholesale-product-layout--two-charts { grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); }
  .wholesale-product-layout--two-charts .wholesale-product-record { grid-row: span 2; }
  .wholesale-product-layout--two-charts .wholesale-product-chart { grid-column: 2; }
}
.wholesale-album-section { padding-block: clamp(70px, 9vw, 130px); background: var(--white); }
.wholesale-album-heading { display: grid; grid-template-columns: 1fr minmax(280px, .55fr); gap: 60px; align-items: end; margin-bottom: 34px; }
.wholesale-album-heading h2 { margin: 0; }
.wholesale-album-heading p { margin: 0 0 8px; color: var(--muted); }
.wholesale-media-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.wholesale-media-item { min-width: 0; padding: 0; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); background: var(--white); text-align: left; cursor: zoom-in; }
.wholesale-media-item img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--mist); transition: opacity .2s; }
.wholesale-media-item:hover img, .wholesale-media-item:focus-visible img { opacity: .84; }
.wholesale-media-caption { display: flex; min-height: 50px; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 11px; color: var(--muted); font-size: .66rem; }
.wholesale-media-caption b { min-width: 0; overflow: hidden; color: var(--ink); font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.wholesale-media-caption time { flex: 0 0 auto; }
.wholesale-lightbox { width: min(1240px, calc(100% - 30px)); height: calc(100vh - 30px); max-height: none; padding: 48px 76px 18px; overflow: hidden; }
.wholesale-lightbox figure { display: flex; width: 100%; height: 100%; flex-direction: column; justify-content: center; margin: 0; }
.wholesale-lightbox img { min-height: 0; max-height: calc(100vh - 125px); object-fit: contain; }
.wholesale-lightbox figcaption { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .74rem; }
.lightbox-nav { position: absolute; z-index: 2; top: 50%; display: grid; width: 46px; height: 56px; place-items: center; border: 1px solid var(--line); color: var(--ink); background: var(--white); cursor: pointer; transform: translateY(-50%); }
.lightbox-nav:hover, .lightbox-nav:focus-visible { color: var(--white); background: var(--ink); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

.material-list .rail-row, .service-directory-list .rail-row { grid-template-columns: 80px 100px minmax(220px, .75fr) 1fr; }
.service-directory-list .rail-row { grid-template-columns: 80px 100px minmax(220px, .75fr) 1fr 44px; }
.sourcing-section-head { align-items: flex-end; }
.sourcing-section-head > p { width: min(100%, 510px); margin: 0 0 8px; color: var(--muted); }
.fabric-catalog-intro { padding-block: clamp(48px, 6vw, 82px) clamp(28px, 4vw, 54px); color: var(--white); border-bottom: 1px solid #24405b; background: var(--ink); }
.fabric-catalog-intro h1 { margin: 0; color: var(--white); font-size: clamp(3rem, 5vw, 5rem); }
.fabric-catalog-intro p, .fabric-catalog-intro .eyebrow { color: #bfd6e6; }
.fabric-catalog-intro + .fabric-library { padding-top: clamp(42px, 5vw, 76px); }
.sourcing-directory { border-top: 1px solid var(--line); }
.sourcing-directory-row, .trim-directory-row { display: grid; min-width: 0; grid-template-columns: 64px 72px minmax(170px, .55fr) 1.45fr; gap: 20px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--line); }
.sourcing-directory-row > *, .trim-directory-row > * { min-width: 0; }
.directory-index, .directory-code { padding-top: 4px; font-family: var(--display); font-size: .82rem; font-weight: 600; }
.directory-index { color: var(--muted); }
.directory-code { color: var(--marine); }
.directory-title h3 { margin: 0 0 6px; font-size: 1.65rem; }
.directory-title span { color: var(--muted); font-size: .75rem; }
.fabric-name-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); padding: 0; margin: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; }
.fabric-name-list li { min-width: 0; min-height: 58px; padding: 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow-wrap: anywhere; font-size: .76rem; line-height: 1.4; }
.fabric-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: transparent; }
.fabric-card { display: flex; min-width: 0; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.fabric-card__image-wrap { position: relative; aspect-ratio: 1 / .76; overflow: hidden; background: #dce1e3; touch-action: pan-y; }
.fabric-card__image-wrap:focus-visible { outline: 3px solid rgba(23,91,130,.32); outline-offset: -3px; }
.fabric-card__slides { position: absolute; inset: 0; }
.fabric-card__image { width: 100%; height: 100%; object-fit: cover; transition: opacity .24s ease, transform .45s ease; }
.fabric-card__slide { position: absolute; inset: 0; visibility: hidden; opacity: 0; }
.fabric-card__slide.is-active { z-index: 1; visibility: visible; opacity: 1; }
.fabric-card:hover .fabric-card__slide.is-active { transform: scale(1.035); }
.fabric-card__arrow { position: absolute; z-index: 3; top: 50%; display: grid; width: 44px; height: 52px; place-items: center; padding: 0; border: 0; color: #7b8794; background: transparent; cursor: pointer; transform: translateY(-50%); }
.fabric-card__arrow span { font-size: 1.5rem; line-height: 1; text-shadow: -1px 0 var(--ink), 0 1px var(--ink), 1px 0 var(--ink), 0 -1px var(--ink), 0 0 3px rgba(255,255,255,.9); }
.fabric-card__arrow:hover { color: var(--ink); }
.fabric-card__arrow:focus-visible { outline: 2px solid var(--white); outline-offset: -6px; box-shadow: inset 0 0 0 4px var(--ink); }
.fabric-card__arrow--prev { left: 2px; }
.fabric-card__arrow--next { right: 2px; }
.fabric-card__dots { position: absolute; z-index: 3; right: 48px; bottom: 8px; left: 48px; display: flex; min-height: 20px; align-items: center; justify-content: center; gap: 0; }
.fabric-card__dots button { position: relative; width: 24px; height: 24px; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.fabric-card__dots button::before { position: absolute; inset: 9px; border: 1px solid var(--ink); border-radius: 50%; background: #8c969f; box-shadow: 0 0 0 1px var(--white); content: ''; }
.fabric-card__dots button[aria-current="true"]::before { inset: 7px; background: var(--white); box-shadow: 0 0 0 2px var(--ink); }
.fabric-card__dots button:focus-visible { outline: 2px solid var(--white); outline-offset: -4px; box-shadow: inset 0 0 0 4px var(--ink); }
.fabric-card__index { position: absolute; z-index: 4; top: 12px; left: 12px; display: grid; width: 32px; height: 32px; place-items: center; background: var(--white); color: var(--ink); font-family: var(--display); font-size: .76rem; font-weight: 700; }
.fabric-card__body { display: flex; min-height: 340px; flex: 1; flex-direction: column; padding: 19px; }
.fabric-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; color: var(--marine); font-family: var(--display); font-size: .74rem; font-weight: 700; }
.fabric-card__head p { margin: 0; color: var(--muted); font-family: var(--body); font-size: .66rem; font-weight: 600; text-align: right; }
.fabric-card h3 { margin: 13px 0 8px; font-size: 1.7rem; line-height: 1; }
.fabric-card__material, .fabric-card__texture { margin: 0; font-size: .76rem; line-height: 1.5; }
.fabric-card__material { color: var(--ink); font-weight: 600; }
.fabric-card__texture { margin-top: 5px; color: var(--muted); }
.fabric-card__uses { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.fabric-card__uses > span, .fabric-card__basis { display: block; color: var(--muted); font-family: var(--display); font-size: .69rem; font-weight: 600; text-transform: uppercase; }
.fabric-card__uses ul { display: flex; flex-wrap: wrap; gap: 5px; padding: 0; margin: 8px 0 0; list-style: none; }
.fabric-card__uses li { padding: 4px 6px; border: 1px solid var(--line); font-size: .68rem; line-height: 1.2; }
.fabric-card__basis { margin: 13px 0 0; color: var(--marine); }
.fabric-card__inquiry { width: 100%; min-height: 44px; margin-top: 15px; padding: 10px; font-size: .88rem; }
.fabric-card__inquiry span { margin-left: 7px; }
.fabric-selection-dialog { width: min(760px, calc(100% - 30px)); max-height: calc(100dvh - 30px); overflow: auto; padding: clamp(28px, 5vw, 52px); border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--white); }
.fabric-selection-dialog::backdrop { background: rgba(2,15,27,.75); backdrop-filter: blur(3px); }
.fabric-selection-dialog form { display: grid; gap: 20px; }
.fabric-selection-dialog label > span, .fabric-unit-choice legend, .fabric-color-picker > legend { display: block; margin-bottom: 7px; color: var(--muted); font-family: var(--display); font-size: .78rem; font-weight: 600; text-transform: uppercase; }
.fabric-selection-dialog select { width: 100%; min-height: 48px; padding: 0 12px; border: 1px solid var(--line); border-radius: 0; background: var(--white); color: var(--ink); font: inherit; }
.fabric-selection-dialog select:focus-visible, .fabric-selection-dialog input:focus-visible, .fabric-color-picker__wheel:focus-visible { outline: 3px solid rgba(23,91,130,.25); outline-offset: 3px; }
.fabric-selection-dialog__head { max-width: 530px; margin-bottom: 3px; }
.fabric-selection-dialog__head h2 { margin: 8px 0 10px; }
.fabric-selection-dialog__head p { margin: 0; color: var(--muted); }
.fabric-selection-dialog__summary { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 16px; align-items: center; min-height: 104px; padding: 12px; border: 1px solid var(--line); background: var(--mist); }
.fabric-selection-dialog__summary img { width: 104px; height: 80px; object-fit: cover; }
.fabric-selection-dialog__summary strong, .fabric-selection-dialog__summary span { display: block; }
.fabric-selection-dialog__summary strong { font-family: var(--display); font-size: 1.35rem; }
.fabric-selection-dialog__summary span { margin-top: 5px; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.fabric-color-picker { min-width: 0; padding: 0; margin: 0; border: 0; }
.fabric-color-picker__layout { display: grid; grid-template-columns: minmax(210px, 260px) minmax(0, 1fr); gap: 24px; align-items: center; padding: 20px; border: 1px solid var(--line); background: var(--mist); }
.fabric-color-picker__wheel { --picker-x: 11%; --picker-y: 72%; position: relative; width: min(260px, 100%); aspect-ratio: 1; margin: auto; border: 1px solid var(--ink); border-radius: 50%; background: radial-gradient(circle, #fff 0, rgba(255,255,255,.97) 2%, rgba(255,255,255,0) 100%), conic-gradient(from 90deg, #f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00); box-shadow: inset 0 0 0 4px rgba(255,255,255,.72); cursor: crosshair; touch-action: none; }
.fabric-color-picker__target { position: absolute; z-index: 2; top: var(--picker-y); left: var(--picker-x); width: 20px; height: 20px; border: 2px solid var(--white); border-radius: 50%; background: transparent; box-shadow: 0 0 0 2px var(--ink), 0 2px 8px rgba(2,15,27,.28); pointer-events: none; transform: translate(-50%, -50%); }
.fabric-color-picker__result { display: grid; grid-template-columns: 64px minmax(0, 1fr); grid-template-rows: auto auto auto auto; gap: 3px 14px; align-items: center; min-width: 0; }
.fabric-color-picker__swatch { grid-row: 1 / 5; width: 64px; height: 88px; border: 1px solid var(--ink); background: #0f4c81; }
.fabric-color-picker__result > span:not(.fabric-color-picker__swatch) { color: var(--muted); font-family: var(--display); font-size: .69rem; font-weight: 600; text-transform: uppercase; }
.fabric-color-picker__result output { min-width: 0; overflow-wrap: anywhere; color: var(--ink); font-family: var(--display); font-size: 1rem; font-weight: 650; line-height: 1.25; }
.fabric-color-picker__result output:first-of-type { margin-bottom: 10px; font-size: 1.5rem; letter-spacing: .04em; }
.fabric-color-picker__instructions, .fabric-color-picker__note, .fabric-color-picker__error { margin: 9px 0 0; font-size: .74rem; line-height: 1.5; }
.fabric-color-picker__instructions, .fabric-color-picker__note { color: var(--muted); }
.fabric-color-picker__error { color: #9f1f2d; font-weight: 700; }
.fabric-color-picker__controls { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
.fabric-color-picker__controls label { min-width: 0; }
.fabric-color-picker__controls label > div { display: grid; grid-template-columns: minmax(0, 1fr) 58px; gap: 10px; align-items: center; }
.fabric-color-picker__controls input[type="range"] { --shade-color: #0f4c81; width: 100%; height: 44px; margin: 0; appearance: none; background: transparent; cursor: pointer; }
.fabric-color-picker__controls input[type="range"]::-webkit-slider-runnable-track { height: 14px; border: 1px solid var(--ink); background: linear-gradient(90deg, #f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00); }
.fabric-color-picker__controls input[data-fabric-color-brightness]::-webkit-slider-runnable-track { background: linear-gradient(90deg, #000, var(--shade-color)); }
.fabric-color-picker__controls input[type="range"]::-webkit-slider-thumb { width: 22px; height: 22px; margin-top: -5px; appearance: none; border: 2px solid var(--white); border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 2px var(--ink); }
.fabric-color-picker__controls input[type="range"]::-moz-range-track { height: 12px; border: 1px solid var(--ink); background: linear-gradient(90deg, #f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00); }
.fabric-color-picker__controls input[data-fabric-color-brightness]::-moz-range-track { background: linear-gradient(90deg, #000, var(--shade-color)); }
.fabric-color-picker__controls input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border: 2px solid var(--white); border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 2px var(--ink); }
.fabric-color-picker__controls output { display: grid; min-height: 38px; place-items: center; border: 1px solid var(--line); font-family: var(--display); font-size: .82rem; font-weight: 650; }
.fabric-gsm-control { display: grid; grid-template-columns: minmax(0, 1fr) 104px; gap: 16px; align-items: center; }
.fabric-gsm-control input { width: 100%; accent-color: var(--marine); }
.fabric-gsm-control output { display: grid; min-height: 40px; place-items: center; border: 1px solid var(--line); font-family: var(--display); font-size: 1rem; font-weight: 600; }
.fabric-unit-choice { padding: 0; margin: 0; border: 0; }
.fabric-unit-choice > p { margin: 0 0 10px; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.fabric-unit-choice > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); }
.fabric-unit-choice label { display: flex; min-height: 50px; align-items: center; gap: 8px; padding: 10px; border-right: 1px solid var(--line); cursor: pointer; font-size: .8rem; }
.fabric-unit-choice label:last-child { border-right: 0; }
.fabric-unit-choice label:has(input:disabled) { cursor: not-allowed; color: var(--muted); background: #f2f4f5; text-decoration: line-through; }
.fabric-unit-choice input { width: 16px; height: 16px; flex: 0 0 auto; accent-color: var(--marine); }
.enquiry-form-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.enquiry-form-actions .button { width: 100%; }
.fabric-sourcing-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; }
.fabric-brief-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.fabric-brief-grid article { display: flex; min-width: 0; min-height: 360px; flex-direction: column; padding: clamp(28px, 4vw, 54px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fabric-brief-grid article > span { color: var(--marine); font-family: var(--display); font-size: .82rem; font-weight: 700; }
.fabric-brief-grid h3 { max-width: 620px; margin: clamp(48px, 8vw, 100px) 0 18px; font-size: clamp(2.2rem, 3.5vw, 4rem); }
.fabric-brief-grid p { max-width: 620px; margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.65; }
.fabric-brief-grid .text-button { align-self: flex-start; margin-top: auto; padding-top: 34px; }
.fabric-market-section { color: var(--white); background: var(--ink); }
.fabric-market-layout { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(50px, 11vw, 180px); align-items: end; margin-bottom: clamp(46px, 6vw, 76px); }
.fabric-market-layout h2 { max-width: 760px; margin: 0; font-size: clamp(3rem, 5vw, 5.4rem); }
.fabric-market-layout > p { max-width: 660px; margin: 0; color: #c5d4df; font-size: 1rem; line-height: 1.72; }
.fabric-market-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.28); border-left: 1px solid rgba(255,255,255,.28); }
.fabric-market-facts > div { display: flex; min-height: 148px; flex-direction: column; justify-content: center; padding: 22px; border-right: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); }
.fabric-market-facts span { color: #9ec0d5; font-family: var(--display); font-size: .76rem; font-weight: 700; text-transform: uppercase; }
.fabric-market-facts strong { margin-top: 10px; font-family: var(--display); font-size: 1.3rem; font-weight: 600; line-height: 1.1; }
.fabric-details-note { border-bottom: 1px solid var(--line); }
.wholesale-color-filter-note { margin: 9px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.yarn-dyed-band { color: var(--white); background: var(--navy); }
.yarn-dyed-band .sourcing-section-head > p { color: #c5d4df; }
.yarn-dyed-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.28); border-left: 1px solid rgba(255,255,255,.28); }
.yarn-dyed-list div { display: flex; min-width: 0; min-height: 108px; flex-direction: column; justify-content: space-between; gap: 22px; padding: 18px; border-right: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); }
.yarn-dyed-list span { color: #91b6ce; font-family: var(--display); font-size: .78rem; }
.yarn-dyed-list strong { overflow-wrap: anywhere; font-family: var(--display); font-size: 1.15rem; font-weight: 600; line-height: 1.1; }
.print-classifier { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.print-axis { min-width: 0; padding: 30px; border-right: 1px solid var(--line); }
.print-axis:first-child { padding-left: 0; }
.print-axis:last-child { padding-right: 0; border-right: 0; }
.print-axis header { display: flex; min-height: 90px; align-items: flex-start; gap: 24px; }
.print-axis header span { flex: 0 0 auto; padding-top: 4px; color: var(--marine); font-family: var(--display); font-size: .78rem; font-weight: 700; }
.print-axis h3 { margin: 0; font-size: 1.9rem; }
.print-axis ol { padding: 0; margin: 0; list-style: none; }
.print-axis li { display: grid; min-width: 0; min-height: 49px; grid-template-columns: 36px 1fr; align-items: center; border-top: 1px solid var(--line); overflow-wrap: anywhere; font-size: .82rem; }
.print-axis li span { color: var(--muted); font-family: var(--display); font-size: .72rem; }
.compatibility-note { display: grid; grid-template-columns: 180px 1fr; gap: 30px; padding-top: 24px; }
.compatibility-note strong { font-family: var(--display); font-size: 1.15rem; }
.compatibility-note p { max-width: 850px; margin: 0; color: var(--muted); font-size: .84rem; }
.trim-library { border-top: 1px solid var(--line); }
.trim-directory-row { grid-template-columns: 64px 72px minmax(180px, .55fr) 1.45fr; align-items: center; }
.trim-directory-row strong { font-family: var(--display); font-size: 1.55rem; font-weight: 600; line-height: 1.05; }
.trim-directory-row p { margin: 0; color: var(--muted); font-size: .84rem; overflow-wrap: anywhere; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.route-grid > div { min-height: 315px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.route-grid > div > span { color: var(--marine); font-family: var(--display); font-size: .82rem; font-weight: 700; }
.route-grid h3 { margin: 80px 0 18px; }
.route-grid p { color: var(--muted); font-size: .88rem; }
.service-paths { background: var(--white); }
.service-path-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-path-grid a { position: relative; display: flex; min-width: 0; min-height: 300px; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-path-grid a > span { color: var(--marine); font-family: var(--display); font-size: .78rem; font-weight: 700; }
.service-path-grid h3 { margin: 62px 0 16px; font-size: clamp(2rem, 3vw, 3.2rem); }
.service-path-grid p { max-width: 470px; margin: 0; color: var(--muted); font-size: .88rem; }
.service-path-grid b { position: absolute; right: 28px; bottom: 24px; font-size: 1.35rem; font-weight: 400; }
.service-path-grid a:hover, .service-path-grid a:focus-visible { color: var(--white); background: var(--navy); }
.service-path-grid a:hover > span, .service-path-grid a:focus-visible > span { color: #9ec0d5; }
.service-path-grid a:hover p, .service-path-grid a:focus-visible p { color: #c4d4de; }
.specification-band { color: var(--white); background: var(--ink); }
.sourcing-spec-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 140px); }
.sourcing-spec-layout > div > p { color: #b8cbd8; }
#manufacturing-services, #manufacturing-process, #production-process, #quality-control, #inspection-criteria { scroll-margin-top: 120px; }
.process-system { position: relative; background: var(--white); }
.process-anchor { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }
.process-icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.process-system-heading { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: clamp(42px, 8vw, 130px); margin-bottom: clamp(48px, 6vw, 84px); }
.process-system-heading h2 { max-width: 760px; margin: 0; font-size: clamp(3rem, 5vw, 5.2rem); }
.process-system-heading p { max-width: 700px; margin: 0; color: #445667; font-size: 1.05rem; line-height: 1.7; }
.process-system-heading .button { margin-top: 22px; }
.process-stage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(38px, 5vw, 86px); margin: 0 auto; list-style: none; }
.process-stage-card { display: grid; min-width: 0; grid-template-columns: 178px minmax(0, 1fr); align-items: start; gap: clamp(28px, 2.8vw, 48px); padding: clamp(42px, 4.5vw, 68px) clamp(22px, 2vw, 36px); border-top: 1px solid var(--line); transition: color .22s ease, background-color .22s ease; }
.process-stage-marker { display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 20px; }
.process-stage-icon { display: grid; width: 112px; height: 112px; place-items: center; color: var(--marine); border: 1px solid #c9dce8; background: #edf5f9; transition: color .22s ease, border-color .22s ease, background-color .22s ease, transform .22s ease; }
.process-stage-icon svg { width: 72px; height: 72px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.process-stage-number { color: #536475; font-family: var(--display); font-size: 1.8rem; font-weight: 600; line-height: 1; }
.process-stage-body h3 { margin: 0 0 15px; font-size: clamp(2.25rem, 2.6vw, 2.95rem); }
.process-stage-copy { max-width: 760px; margin: 0 0 18px; color: #445667; font-size: 1.06rem; line-height: 1.65; }
.process-stage-meta { display: block; color: var(--marine); font-family: var(--display); font-size: .9rem; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.process-stage-control { margin-top: 27px; padding: 22px 24px 23px; border-left: 3px solid var(--marine); background: linear-gradient(90deg, #edf5f9 0%, #f7fafc 100%); }
.process-stage-control > span, .process-stage-evidence dt { color: var(--marine); font-family: var(--display); font-size: .9rem; font-weight: 700; letter-spacing: .02em; line-height: 1.35; text-transform: uppercase; }
.process-stage-control h4 { margin: 7px 0 9px; font-family: var(--display); font-size: 1.55rem; font-weight: 600; line-height: 1.08; }
.process-stage-control p { max-width: 760px; margin: 0; color: #445667; font-size: .96rem; line-height: 1.65; }
.process-stage-evidence { display: grid; gap: 0; margin: 20px 0 0; border-top: 1px solid var(--line); }
.process-stage-evidence div { display: grid; grid-template-columns: 136px minmax(0, 1fr); gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.process-stage-evidence dt, .process-stage-evidence dd { margin: 0; }
.process-stage-evidence dd { color: #344454; font-size: .9rem; line-height: 1.55; }
@media (hover: hover) and (pointer: fine) {
  .process-stage-card:hover { color: var(--white); background: var(--navy); }
  .process-stage-card:hover .process-stage-copy, .process-stage-card:hover .process-stage-control p, .process-stage-card:hover .process-stage-evidence dd { color: #d5e2ea; }
  .process-stage-card:hover .process-stage-number, .process-stage-card:hover .process-stage-meta, .process-stage-card:hover .process-stage-control > span, .process-stage-card:hover .process-stage-evidence dt { color: #9fc5dc; }
  .process-stage-card:hover .process-stage-icon { color: var(--marine); border-color: var(--white); background: var(--white); transform: translateY(-3px); }
  .process-stage-card:hover .process-stage-control { border-left-color: var(--sky); background: rgba(255,255,255,.08); }
  .process-stage-card:hover .process-stage-evidence, .process-stage-card:hover .process-stage-evidence div { border-color: rgba(255,255,255,.22); }
}
.spec-matrix { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.25); border-left: 1px solid rgba(255,255,255,.25); }
.spec-matrix div { display: flex; min-height: 84px; align-items: center; gap: 20px; padding: 16px 20px; border-right: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); }
.spec-matrix span { color: #87aec8; font-family: var(--display); }
.spec-matrix strong { font-family: var(--display); font-weight: 600; }
.faq-band { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 9vw, 140px); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: grid; min-height: 78px; grid-template-columns: 52px 1fr 30px; align-items: center; cursor: pointer; font-family: var(--display); font-size: 1.25rem; font-weight: 600; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--marine); font-size: .85rem; }
.accordion summary b { justify-self: end; font-size: 1.5rem; font-weight: 400; transition: transform .2s; }
.accordion details[open] summary b { transform: rotate(45deg); }
.accordion details p { margin: 0 45px 24px 52px; color: var(--muted); }
.about-founders { background: var(--mist); }
.about-section-heading { display: grid; grid-template-columns: 1.2fr minmax(280px, .8fr); gap: clamp(42px, 8vw, 150px); align-items: end; margin-bottom: clamp(40px, 5vw, 78px); }
.about-section-heading h2 { max-width: 870px; margin-bottom: 0; }
.about-section-heading > p { max-width: 580px; margin: 0; color: var(--muted); }
.about-section-heading--compact { margin-bottom: 42px; }
.about-founder-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-founder-card { display: flex; min-height: 340px; flex-direction: column; padding: clamp(28px, 3vw, 46px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.about-founder-card > span, .about-capability-grid > li > span { color: var(--marine); font-family: var(--display); font-size: .84rem; font-weight: 700; letter-spacing: .04em; }
.about-founder-card h3 { margin: auto 0 8px; font-size: clamp(2.25rem, 3vw, 3.35rem); }
.about-founder-card strong { margin-bottom: 20px; color: var(--marine); font-family: var(--display); font-size: 1.08rem; font-weight: 600; line-height: 1.1; }
.about-founder-card p { max-width: 440px; margin: 0; color: var(--muted); font-size: .9rem; }
.about-guangzhou { color: var(--white); background: var(--ink); }
.about-guangzhou--intro { padding-top: clamp(95px, 10vw, 165px); }
.about-guangzhou-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr); gap: clamp(45px, 7vw, 125px); align-items: center; }
.about-guangzhou-copy h1, .about-guangzhou-copy h2 { max-width: 720px; margin-bottom: 24px; }
.about-guangzhou-copy h1 { font-size: clamp(2.8rem, 4.4vw, 4.5rem); }
.about-guangzhou-copy > p { max-width: 680px; margin-bottom: 36px; color: #cfdae1; }
.about-guangzhou-note { display: grid; gap: 8px; max-width: 650px; padding: 23px 0 0; border-top: 1px solid rgba(191,214,230,.45); }
.about-guangzhou-note span { color: #9fc6df; font-family: var(--display); font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.about-guangzhou-note strong { font-family: var(--display); font-size: clamp(1.35rem, 1.7vw, 1.85rem); font-weight: 600; line-height: 1.08; }
.about-guangzhou-note small { max-width: 570px; color: #b7c7d2; font-size: .75rem; line-height: 1.5; }
.about-photo-ledger { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.about-photo-ledger figure { position: relative; min-height: 210px; margin: 0; overflow: hidden; background: #102c47; }
.about-photo-ledger-main { grid-column: 1 / -1; min-height: clamp(270px, 28vw, 520px) !important; }
.about-photo-ledger img { height: 100%; object-fit: cover; }
.about-photo-ledger figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 12px 15px; color: var(--white); background: linear-gradient(transparent, rgba(7,27,51,.9)); font-family: var(--display); font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.about-development { background: var(--white); }
.about-capability-grid { display: grid; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.about-capability-grid > li { display: grid; grid-template-columns: 100px minmax(0, .7fr) 1fr; gap: 24px; align-items: center; min-height: 120px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.about-capability-grid > li > span { align-self: start; padding-top: 4px; }
.about-capability-grid strong { font-family: var(--display); font-size: clamp(1.5rem, 2.1vw, 2.25rem); font-weight: 600; line-height: 1.05; }
.about-capability-grid p { max-width: 650px; margin: 0; color: var(--muted); font-size: .9rem; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.facts-grid div { display: flex; min-height: 160px; flex-direction: column; justify-content: center; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts-grid span { color: var(--muted); font-family: var(--display); font-size: .78rem; text-transform: uppercase; }
.facts-grid strong { margin-top: 8px; font-family: var(--display); font-size: 1.4rem; font-weight: 600; }
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(45px, 9vw, 130px); }
.contact-form-wrap h2 { margin-bottom: 45px; }
.contact-aside { border-top: 1px solid var(--line); }
.contact-aside > div { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-aside span { display: block; margin-bottom: 7px; color: var(--marine); font-family: var(--display); font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.contact-aside a { font-family: var(--display); font-size: 1.35rem; font-weight: 600; }
.contact-aside p { margin: 0; color: var(--muted); }
.enquiry-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
.enquiry-form label { display: flex; flex-direction: column; gap: 7px; }
.enquiry-form label > span, .enquiry-file-field__label { color: var(--muted); font-family: var(--display); font-size: .8rem; font-weight: 600; text-transform: uppercase; }
.enquiry-form input, .enquiry-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid #aebbc5; border-radius: 0; outline: 0; background: transparent; color: var(--ink); }
.enquiry-form input:focus, .enquiry-form textarea:focus { border-color: var(--marine); box-shadow: 0 1px 0 var(--marine); }
.enquiry-file-field { display: flex; flex-direction: column; gap: 7px; }
.enquiry-file-control { position: relative; min-height: 54px; padding: 5px 0; border-bottom: 1px solid #aebbc5; }
.enquiry-form .enquiry-file-input { padding: 11px 0; cursor: pointer; }
.enquiry-form .enquiry-file-input::file-selector-button { margin-right: 12px; padding: 8px 12px; border: 1px solid var(--navy); border-radius: 0; background: var(--navy); color: var(--white); font: 600 .95rem var(--display); cursor: pointer; }
.enquiry-form .enquiry-file-button, .enquiry-form .enquiry-file-name { display: none; }
.enquiry-file-control.is-enhanced { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 15px; }
.enquiry-form .enquiry-file-control.is-enhanced .enquiry-file-input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.enquiry-form .enquiry-file-control.is-enhanced .enquiry-file-button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 9px 15px; border: 1px solid var(--navy); border-radius: 0; background: var(--navy); color: var(--white); font: 600 .95rem var(--display); cursor: pointer; }
.enquiry-form .enquiry-file-control.is-enhanced .enquiry-file-button:hover { background: var(--marine); border-color: var(--marine); }
.enquiry-form .enquiry-file-control.is-enhanced .enquiry-file-input:focus-visible + .enquiry-file-button { outline: 2px solid var(--marine); outline-offset: 3px; }
.enquiry-file-control.is-enhanced .enquiry-file-name { display: block; min-width: 0; overflow: hidden; color: var(--ink); font-size: .92rem; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.enquiry-file-name.has-file { font-weight: 600; }
.enquiry-file-field small { color: var(--muted); font-size: .78rem; line-height: 1.45; }
.enquiry-form .full { grid-column: 1 / -1; }
.form-privacy-note { margin: -4px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.55; }
.form-privacy-note a { color: var(--marine); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.form-privacy-note a:hover, .form-privacy-note a:focus-visible { color: var(--ink); }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.enquiry-form .button.full { width: 100%; }
.enquiry-form-cart { display: grid; grid-template-columns: auto 1fr auto; min-height: 58px; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 0; background: var(--white); color: var(--ink); cursor: pointer; text-align: left; }
.enquiry-form-cart:hover, .enquiry-form-cart:focus-visible { border-color: var(--marine); box-shadow: inset 3px 0 var(--marine); }
.enquiry-form-cart__icon { display: inline-flex; color: var(--marine); }
.enquiry-form-cart__label { color: var(--ink) !important; font-family: var(--display); font-size: .95rem !important; font-weight: 700 !important; letter-spacing: .02em; }
.enquiry-form-cart__count { display: inline-grid; min-width: 32px; min-height: 32px; place-items: center; padding: 0 8px; border-radius: 999px; background: var(--navy); color: var(--white); font-family: var(--display); }
.form-notice { margin-bottom: 24px; padding: 12px 15px; border-left: 3px solid var(--marine); background: var(--white); }
.form-notice.error { border-color: var(--danger); }
.form-notice.compact { margin: 10px 0 0; padding: 8px 10px; color: var(--ink); font-size: .78rem; }
.journal-list { border-top: 1px solid var(--line); }
.journal-list article { display: grid; min-height: 230px; grid-template-columns: 140px 1fr 50px; align-items: center; gap: 35px; border-bottom: 1px solid var(--line); }
.journal-list time, .journal-list article div > span { color: var(--marine); font-family: var(--display); font-size: .78rem; text-transform: uppercase; }
.journal-list h2 { margin: 12px 0; font-size: clamp(2rem, 3.6vw, 3.6rem); }
.journal-list p { max-width: 750px; margin: 0; color: var(--muted); }
.journal-arrow { justify-self: end; font-size: 1.4rem; }
.journal--trends.section-pad { padding-block: clamp(56px, 6vw, 96px); }
.journal--trends .section-head { margin-bottom: 34px; }
.journal--trends .journal-list article { min-height: 190px; grid-template-columns: 120px 154px minmax(0, 1fr) 44px; gap: 28px; }
.journal--trends .journal-thumb { display: block; overflow: hidden; border: 1px solid var(--line); background: #eef2f3; }
.journal--trends .journal-thumb img { display: block; width: 100%; height: 104px; object-fit: cover; transition: transform .25s ease; }
.journal--trends .trend-row__content { min-width: 0; }
.journal--trends .trend-row:hover .journal-thumb img { transform: scale(1.035); }
.journal--trends .journal-list p { max-width: 920px; color: #405365; font-size: clamp(1.05rem, .95vw, 1.15rem); font-weight: 500; line-height: 1.65; }
.journal--home-trends .section-head h2 { max-width: 980px; font-size: clamp(3rem, 4vw, 4.5rem); }
.journal--home-trends.section-pad { padding-block: clamp(48px, 4.5vw, 72px); }
.journal--home-trends .section-head { margin-bottom: 24px; }
.journal--home-trends .journal-list article { min-height: 0; padding-block: clamp(18px, 1.4vw, 24px); }
.journal--home-trends .journal-list article > div { min-width: 0; max-width: 1360px; }
.journal--home-trends .journal-list h2 { max-width: 1320px; margin: 7px 0 9px; font-size: clamp(2rem, 2.4vw, 2.75rem); line-height: 1.02; }
.journal--home-trends .journal-list p { max-width: 1280px; }
.article-header { padding-block: clamp(85px, 10vw, 150px); color: var(--white); border-bottom: 1px solid #24405b; background: var(--ink); }
.article-head-inner { max-width: 1150px; }
.article-head-inner h1 { margin-bottom: 35px; color: var(--white); }
.article-header .eyebrow, .article-meta { color: #bfd6e6; }
.article-meta { display: flex; gap: 25px; font-family: var(--display); }
.article-body { max-width: 900px; padding-block: 90px 120px; color: #304152; font-size: 1.05rem; }
.article-body p { margin-bottom: 1.5em; }
.article-body .partner-media-feature { margin: 2.6em 0; }
.article-body .partner-media-feature img { display: block; width: 100%; height: auto; }
.article-body .partner-media-grid { display: grid; gap: clamp(10px, 1.4vw, 18px); margin: 2.6em 0; }
.article-body .partner-media-grid figure { min-width: 0; margin: 0; overflow: hidden; background: #e9edef; }
.article-body .partner-media-grid img { display: block; width: 100%; height: 100%; object-fit: cover; }
.article-body .partner-media-grid--factory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-body .partner-media-grid--factory img { aspect-ratio: 4 / 3; }
.article-body .partner-media-grid--process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-body .partner-media-grid--process img { aspect-ratio: 4 / 3; }
.article-body .partner-media-grid--leather { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-body .partner-media-grid--leather img { aspect-ratio: 4 / 3; }
.article-body .partner-process-flow { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(12px, 1.8vw, 22px); margin: 2.8em 0; }
.article-body .partner-process-step { min-width: 0; margin: 0; overflow: hidden; background: #eef2f3; }
.article-body .partner-process-step > img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.article-body .partner-process-step figcaption { padding: clamp(18px, 2vw, 26px); }
.article-body .partner-process-step figcaption span { display: block; margin-bottom: 10px; color: #23618b; font-family: var(--display); font-size: .76rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.article-body .partner-process-step figcaption strong { display: block; color: var(--ink); font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.05; }
.article-body .partner-process-step figcaption p { margin: 10px 0 0; color: #526474; font-size: .94rem; line-height: 1.55; }
.article-body .partner-material-showcase { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 18px); margin: 2.6em 0; }
.article-body .partner-material-showcase figure { min-width: 0; margin: 0; overflow: hidden; background: #e9edef; }
.article-body .partner-material-showcase__wide { grid-column: span 2; }
.article-body .partner-material-showcase img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.article-body .partner-assurance-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); gap: clamp(24px, 4vw, 52px); align-items: center; margin: 2.8em 0; padding: clamp(18px, 3vw, 34px); color: var(--white); background: var(--ink); }
.article-body .partner-assurance-layout__image { min-width: 0; margin: 0; overflow: hidden; }
.article-body .partner-assurance-layout__image img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.article-body .partner-assurance-layout__copy p { margin: 0; color: #cfdae1; }
.article-body .partner-assurance-layout__copy p + p { margin-top: 1.1em; }
.article-body .partner-rating-mark { max-width: 380px; margin: 2.4em 0; }
.article-body .partner-rating-mark img { display: block; width: 100%; height: auto; }
.partner-leather-cta, .partner-fabric-cta { margin: 3em 0; padding: clamp(28px, 5vw, 54px); color: var(--white); background: var(--ink); }
.partner-leather-cta .eyebrow, .partner-fabric-cta .eyebrow { margin-bottom: 15px; }
.partner-leather-cta h2, .partner-fabric-cta h2 { max-width: 620px; margin: 0 0 16px; color: var(--white); font-size: clamp(2.15rem, 4vw, 3.6rem); }
.partner-leather-cta p, .partner-fabric-cta p { max-width: 620px; margin-bottom: 26px; color: #cfdae1; }
.partner-leather-cta .button, .partner-fabric-cta .button { gap: 12px; }
.narrow-content { max-width: 850px; min-height: 300px; }

/* Policy register */
.policy-register { background: var(--white); }
.policy-hero { padding-block: clamp(72px, 8vw, 118px); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.2); background: var(--ink); }
.policy-hero__grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); gap: clamp(54px, 9vw, 140px); align-items: end; }
.policy-hero__title { min-width: 0; }
.policy-hero__title .eyebrow { margin-bottom: 22px; }
.policy-hero__title h1 { max-width: 880px; margin: 0; color: var(--white); font-size: clamp(3.2rem, 5.3vw, 5.35rem); }
.policy-hero__title p { max-width: 720px; margin: 25px 0 0; color: #c9d6df; font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.7; }
.policy-hero__meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; border-top: 1px solid rgba(255,255,255,.24); border-left: 1px solid rgba(255,255,255,.24); }
.policy-hero__meta div { min-width: 0; min-height: 112px; padding: 20px; border-right: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); }
.policy-hero__meta dt { margin-bottom: 9px; color: #85abc5; font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.policy-hero__meta dd { margin: 0; color: var(--white); font-size: .82rem; line-height: 1.45; }
.policy-body { padding-top: clamp(58px, 7vw, 96px); }
.policy-layout { display: grid; grid-template-columns: minmax(220px, 280px) minmax(0, 900px); gap: clamp(48px, 8vw, 120px); align-items: start; justify-content: center; }
.policy-sidebar { position: sticky; top: 24px; min-width: 0; }
.policy-sidebar nav { border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.policy-sidebar nav + nav { margin-top: 34px; }
.policy-sidebar h2 { margin: 0; padding: 13px 15px; color: var(--muted); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--mist); font-family: var(--display); font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.policy-suite-nav a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center; min-height: 54px; padding: 10px 14px; color: var(--ink); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--display); font-weight: 600; }
.policy-suite-nav a small { color: var(--muted); font-size: .65rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.policy-suite-nav a:hover, .policy-suite-nav a:focus-visible { color: var(--white); background: var(--marine); }
.policy-suite-nav a:hover small, .policy-suite-nav a:focus-visible small { color: #d4e4ee; }
.policy-suite-nav a[aria-current="page"] { color: var(--white); background: var(--ink); }
.policy-suite-nav a[aria-current="page"] small { color: #9ec0d6; }
.policy-toc ol { margin: 0; padding: 5px 15px 10px 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.policy-toc li { padding-left: 3px; color: var(--muted); font-size: .77rem; line-height: 1.35; }
.policy-toc a { display: block; padding: 7px 0; }
.policy-toc a:hover, .policy-toc a:focus-visible { color: var(--marine); text-decoration: underline; text-underline-offset: 3px; }
.policy-document { min-width: 0; max-width: none; color: #344454; }
.policy-notice { margin-bottom: clamp(38px, 6vw, 64px); padding: clamp(24px, 4vw, 38px); border-left: 5px solid var(--marine); background: var(--mist); }
.policy-notice span { display: block; margin-bottom: 11px; color: var(--marine); font-family: var(--display); font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.policy-notice p { margin: 0; color: var(--ink); font-size: clamp(1rem, 1.4vw, 1.12rem); font-weight: 600; line-height: 1.65; }
.policy-copy h2 { scroll-margin-top: 24px; margin: 4rem 0 1.15rem; padding-top: 1.3rem; color: var(--ink); border-top: 1px solid var(--line); font-size: clamp(1.8rem, 3vw, 2.45rem); line-height: 1.04; }
.policy-copy h2:first-child { margin-top: 0; }
.policy-copy h3 { margin: 2.2rem 0 .8rem; font-size: 1.5rem; }
.policy-copy p, .policy-copy li { font-size: 1rem; line-height: 1.82; }
.policy-copy p { margin: 0 0 1.2rem; }
.policy-copy ul, .policy-copy ol { margin: 0 0 1.5rem; padding-left: 1.35rem; }
.policy-copy li + li { margin-top: .58rem; }
.policy-copy strong { color: var(--ink); }
.policy-copy a { color: var(--marine); font-weight: 650; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.policy-copy a:hover, .policy-copy a:focus-visible { color: var(--ink); text-decoration-thickness: 2px; }
.policy-document__footer { margin-top: clamp(56px, 8vw, 92px); padding: clamp(30px, 5vw, 52px); color: var(--white); background: var(--ink); }
.policy-document__footer > span { display: block; margin-bottom: 13px; color: #8fb4cc; font-family: var(--display); font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.policy-document__footer p { max-width: 650px; margin: 0 0 24px; color: #d2dce3; line-height: 1.7; }
.policy-document__footer .button { color: var(--ink); background: var(--white); }
.policy-document__footer .button:hover, .policy-document__footer .button:focus-visible { color: var(--white); background: var(--marine); }

.payment-methods { margin: 0 0 clamp(58px, 8vw, 90px); padding-bottom: clamp(46px, 6vw, 70px); border-bottom: 1px solid var(--line); }
.payment-methods__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr); gap: clamp(28px, 5vw, 60px); align-items: end; margin-bottom: 34px; }
.payment-methods__head .eyebrow { margin-bottom: 12px; }
.payment-methods__head h2 { margin: 0; color: var(--ink); font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1; }
.payment-methods__head p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.payment-methods__group + .payment-methods__group { margin-top: 34px; }
.payment-methods__group-title { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; padding: 11px 0; border-top: 1px solid var(--line); }
.payment-methods__group-title strong { color: var(--ink); font-family: var(--display); font-size: 1.02rem; }
.payment-methods__group-title span { color: var(--muted); font-size: .7rem; }
.payment-method-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.payment-method-card { display: grid; grid-template-columns: 108px minmax(0, 1fr); gap: 16px; align-items: center; min-width: 0; min-height: 104px; margin: 0; padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.payment-method-card figcaption { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.payment-method-card figcaption strong { overflow-wrap: anywhere; color: var(--ink); font-family: var(--display); font-size: .93rem; line-height: 1.05; }
.payment-method-card figcaption span { color: var(--muted); font-size: .65rem; line-height: 1.3; }
.payment-brand { position: relative; display: flex; width: 108px; height: 52px; align-items: center; justify-content: center; overflow: hidden; color: var(--ink); border: 1px solid #d5dde2; background: #fff; font-family: Arial, Helvetica, sans-serif; line-height: 1; }
.payment-brand--bank svg { width: 54px; height: 34px; color: #163f5e; }
.payment-brand--wise { gap: 5px; color: #173300; background: #9fe870; font-weight: 800; }
.payment-brand--wise b { font-size: 1.25rem; letter-spacing: -.35em; transform: translateX(-4px); }
.payment-brand--wise span { font-size: 1.15rem; }
.payment-brand--paypal { gap: 7px; color: #003087; font-weight: 700; font-style: italic; }
.payment-brand--paypal b { color: #009cde; font-size: 1.75rem; transform: skew(-8deg); }
.payment-brand--paypal span { font-size: .94rem; }
.payment-brand--visa { color: #1634a5; font-size: 1.65rem; font-weight: 900; font-style: italic; letter-spacing: -.08em; }
.payment-brand--mastercard i { position: absolute; width: 29px; height: 29px; border-radius: 50%; background: #eb001b; transform: translateX(-9px); }
.payment-brand--mastercard i + i { background: #f79e1b; transform: translateX(9px); opacity: .9; }
.payment-brand--mastercard b { position: absolute; bottom: 4px; color: #171717; font-size: .55rem; font-weight: 700; }
.payment-brand--amex { flex-direction: column; color: var(--white); border-color: #1677a9; background: #1677a9; font-size: .7rem; font-weight: 800; line-height: .9; text-align: center; }
.payment-brand--amex span:last-child { font-size: .82rem; }
.payment-brand--alipay { gap: 8px; color: var(--white); border-color: #1677ff; background: #1677ff; font-weight: 700; }
.payment-brand--alipay b { display: grid; width: 24px; height: 24px; place-items: center; border: 2px solid var(--white); border-radius: 5px; }
.payment-brand--alipay span { font-size: .9rem; }
.payment-brand--unionpay { gap: 7px; color: #17345e; font-weight: 700; }
.payment-brand--unionpay i { width: 31px; height: 22px; border-radius: 3px; background: linear-gradient(90deg, #d71920 0 33%, #0066a4 33% 66%, #00a44f 66%); transform: skew(-8deg); }
.payment-brand--unionpay span { font-size: .72rem; }
.payment-methods__legal { margin: 18px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.55; }
.not-found { display: flex; min-height: 65vh; align-items: center; color: var(--white); background: var(--ink); }
.not-found h1 { max-width: 900px; color: var(--white); }
.not-found p, .not-found .eyebrow { color: #bfd6e6; }
.confirmation-page { display: flex; min-height: 68vh; align-items: center; color: var(--white); background: var(--ink); }
.confirmation-inner { max-width: 1080px; }
.confirmation-inner h1 { max-width: 900px; margin-bottom: 30px; color: var(--white); }
.confirmation-inner > p, .confirmation-inner .eyebrow { max-width: 720px; margin-bottom: 34px; color: #bfd6e6; }
.sitemap-layout { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.sitemap-section { padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sitemap-section h2 { min-height: 90px; margin: 0; font-size: 2rem; }
.sitemap-section a { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); font-family: var(--display); font-weight: 600; }
.sitemap-section a:hover { color: var(--marine); }
.sitemap-section .sitemap-child { padding-left: 14px; color: var(--muted); font-size: .84rem; font-weight: 500; }

.site-footer { color: var(--white); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; padding-block: 90px; border-bottom: 1px solid rgba(255,255,255,.25); }
.footer-lead h2 { max-width: 850px; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; }
.footer-contact > span, .footer-links > div > span { color: #86abc4; font-family: var(--display); font-size: .78rem; text-transform: uppercase; }
.footer-contact a { font-family: var(--display); font-size: 1.35rem; font-weight: 600; }
.footer-contact p { color: #aabfcd; }
.footer-links { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 60px; padding-block: 60px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links > div > strong { font-family: var(--display); font-size: 1.6rem; }
.footer-links p, .footer-links a { color: #b6c8d3; font-size: .83rem; }
.footer-links p { max-width: 390px; }
.footer-links a:hover { color: var(--white); }
.newsletter { display: flex; width: 100%; margin: 10px 0; }
.newsletter input { width: calc(100% - 44px); padding: 10px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.4); border-radius: 0; outline: 0; color: var(--white); background: transparent; }
.footer-links .newsletter-privacy { max-width: 280px; margin: -2px 0 7px; color: #8fa8b8; font-size: .66rem; line-height: 1.45; }
.footer-links .newsletter-privacy a { color: #c9dae5; font-size: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-payment-methods { width: 100%; margin-top: 18px; }
.footer-payment-methods__head { margin-bottom: 10px; }
.footer-payment-methods__head a { display: inline-flex; align-items: center; gap: 5px; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.35); color: #c9dae5; font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.footer-payment-methods__head p { margin: 6px 0 0; color: #8fa8b8; font-size: .62rem; line-height: 1.4; }
.footer-payment-methods__head a:hover, .footer-payment-methods__head a:focus-visible { color: var(--white); border-bottom-color: var(--white); }
.footer-payment-methods__grid { display: grid; width: fit-content; grid-template-columns: repeat(4, 48px); gap: 7px; }
.footer-payment-method { position: relative; width: 48px; height: 32px; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.035); }
.footer-payment-method .payment-brand { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.42); transform-origin: center; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.2); color: #8fa8b8; font-family: var(--display); font-size: .75rem; text-transform: uppercase; }
.site-quick-tools { position: fixed; z-index: 30; right: 18px; bottom: max(18px, env(safe-area-inset-bottom)); display: grid; width: 174px; gap: 6px; filter: drop-shadow(0 8px 18px rgba(5,25,45,.14)); }
.site-quick-tool { display: grid; width: 100%; min-height: 46px; grid-template-columns: 32px minmax(0, 1fr); align-items: center; gap: 9px; padding: 6px 12px 6px 7px; border: 1px solid var(--line); border-radius: 0; background: var(--white); color: var(--ink); font-family: var(--display); font-size: .9rem; font-weight: 600; text-align: left; cursor: pointer; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.site-quick-tool span { display: grid; width: 32px; height: 32px; place-items: center; color: var(--white); background: var(--marine); font-family: var(--display); font-size: .72rem; font-weight: 700; }
.site-quick-tool strong { font: inherit; }
.site-quick-tool--inquiry { grid-template-columns: 32px minmax(0, 1fr) 24px; }
.site-quick-tool--inquiry span, .site-quick-tool--inquiry b { background: var(--ink); }
.site-quick-tool--inquiry b { display: grid; width: 24px; height: 24px; place-items: center; color: var(--white); font-size: .7rem; font-weight: 700; }
.site-quick-tool--whatsapp span { background: #176b52; }
.site-quick-tool:hover, .site-quick-tool:focus-visible { border-color: var(--ink); background: var(--ink); color: var(--white); transform: translateX(-3px); }
.site-quick-tool:focus-visible { outline: 3px solid rgba(23,91,130,.3); outline-offset: 2px; }
.enquiry-dialog { width: min(920px, calc(100% - 30px)); max-height: calc(100vh - 30px); padding: clamp(28px, 5vw, 60px); border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--white); }
.enquiry-dialog::backdrop { background: rgba(2,15,27,.75); backdrop-filter: blur(3px); }
.dialog-close { position: absolute; top: 18px; right: 18px; font-size: 1.6rem; }
.dialog-copy { max-width: 650px; margin-bottom: 35px; }
.dialog-copy h2 { margin-bottom: 16px; }
.dialog-copy p { color: var(--muted); }

@media (max-width: 1200px) {
  .process-stage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  .route-step-list li { min-height: 96px; padding-block: 15px; }
  .route-step-list li div { grid-template-columns: 1fr; align-items: start; gap: 6px; }
  .route-step-list small { text-align: left; }
  .product-preview-grid, .product-directory { grid-template-columns: repeat(2, 1fr); }
  .product-directory.wholesale-directory, .wholesale-media-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rail-row { grid-template-columns: 58px 80px minmax(170px, .8fr) 1fr 35px; }
  .category-rail .rail-row { grid-template-columns: 64px 42px 62px minmax(150px, .8fr) 1fr 30px; gap: 14px; }
  .collection-icon-wrap { width: 64px; height: 64px; }
  .collection-icon { width: 45px; height: 45px; }
  .sourcing-spec-layout { gap: 60px; }
  .fabric-name-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fabric-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .yarn-dyed-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 901px) and (max-width: 1535px) {
  .nav-row { gap: 18px; }
  .brand { min-width: auto; }
  .brand-logo { width: 180px; }
  .cart-trigger-label, .nav-cta { display: none; }
  .primary-nav { gap: 14px; }
  .primary-nav > a, .nav-item > a { font-size: 1.1rem; white-space: nowrap; }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .nav-row { gap: 10px; }
  .brand-logo { width: 160px; }
  .primary-nav { gap: 8px; }
  .primary-nav > a, .nav-item > a { font-size: .95rem; }
}

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .utility-inner { justify-content: space-between; gap: 12px; }
  .utility-inner a:nth-child(2), .utility-inner span { display: none; }
  .site-header { position: sticky; top: 0; }
  .nav-row { display: grid; min-height: 72px; grid-template-columns: minmax(0, 1fr) 42px 42px; gap: 8px; }
  .brand { min-width: 0; overflow: hidden; }
  .brand-logo { width: min(220px, 100%); }
  .menu-toggle { display: grid; width: 42px; height: 42px; min-width: 42px; flex: 0 0 42px; }
  .menu-toggle span:not(.sr-only) { position: absolute; width: 20px; height: 2px; background: var(--ink); transition: transform .2s; }
  .menu-toggle span:nth-child(2) { transform: translateY(-4px); }
  .menu-toggle span:last-child { transform: translateY(4px); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
  .primary-nav { position: fixed; z-index: 49; top: var(--mobile-menu-top, 106px); right: 0; bottom: 0; left: 0; display: block; visibility: hidden; overflow-x: hidden; overflow-y: auto; padding: 8px 20px max(28px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--white); opacity: 0; overscroll-behavior: contain; pointer-events: none; transform: translateX(100%); transition: opacity .2s, transform .25s, visibility .25s; }
  .primary-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateX(0); }
  .primary-nav > a, .nav-item > a { display: flex; min-height: 62px; align-items: center; padding: 0; border-bottom: 1px solid var(--line); font-size: 1.3rem; line-height: 1.1; }
  .primary-nav > a::after, .nav-item > a::after { display: none; }
  .nav-item { position: relative; }
  .nav-item > a { padding-right: 56px; }
  .submenu-toggle { position: absolute; top: 0; right: 0; display: grid; width: 52px; height: 62px; place-items: center; border: 0; border-left: 1px solid var(--line); background: transparent; font-size: 1.5rem; }
  .mega-menu { position: static; display: none; grid-template-columns: 1fr; visibility: visible; border-top: 0; border-bottom: 1px solid var(--line); opacity: 1; transform: none; }
  .has-mega.submenu-open .mega-menu { display: grid; }
  .mega-intro { display: none; }
  .mega-links { grid-template-columns: 1fr; }
  .wholesale-mega-menu { max-height: none; overflow: visible; }
  .wholesale-mega-section-head { min-height: 62px; }
  .wholesale-mega-section-head a { min-height: 62px; padding: 10px 0; }
  .wholesale-mega-section-head span { font-size: 1.2rem; }
  .wholesale-apparel-links, .wholesale-fabric-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wholesale-apparel-links .wholesale-mega-link, .wholesale-fabric-links .wholesale-mega-link { min-height: 70px; padding: 12px 0; border-right: 0; }
  .wholesale-apparel-links .wholesale-mega-link:nth-child(odd), .wholesale-fabric-links .wholesale-mega-link:nth-child(odd) { padding-right: 14px; border-right: 1px solid var(--line); }
  .wholesale-apparel-links .wholesale-mega-link:nth-child(even), .wholesale-fabric-links .wholesale-mega-link:nth-child(even) { padding-left: 14px; }
  .service-mega-links { grid-template-columns: 1fr; }
  .service-mega-link { min-height: 86px; gap: 4px; padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-mega-link:last-child { border-bottom: 0; }
  .service-mega-link small { max-width: none; }
  .mega-column { padding: 14px 0 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .mega-column:last-child { border-bottom: 0; }
  .mega-links .mega-parent { min-height: 50px; padding: 6px 0 10px; }
  .mega-links span { font-size: 1.18rem; }
  .mega-children { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px; }
  .mega-children a { display: flex; min-height: 36px; align-items: center; padding: 4px 0; overflow-wrap: anywhere; }
  .mobile-nav-actions { display: block; padding: 26px 0 6px; }
  .mobile-nav-actions > span { display: block; margin-bottom: 10px; color: var(--marine); font-family: var(--display); font-size: .76rem; font-weight: 700; text-transform: uppercase; }
  .mobile-nav-actions .button { width: 100%; }
  .mobile-nav-actions > div { display: flex; flex-wrap: wrap; gap: 5px 18px; margin-top: 15px; }
  .mobile-nav-actions a { color: var(--muted); font-size: .75rem; overflow-wrap: anywhere; }
  .wholesale-product-layout, .wholesale-product-layout--single, .wholesale-product-layout--two-charts { grid-template-columns: 1fr; gap: 30px; }
  .wholesale-product-chart { padding-top: 0; }
}

@media (max-width: 860px) {
  :root { --pad: 20px; }
  h1 { font-size: 3.65rem; }
  h2 { font-size: 2.75rem; }
  .section-pad { padding-block: 76px; }
  .hero { height: calc(100vh - 104px); min-height: 600px; max-height: 760px; }
  .hero-shade { background: rgba(3,15,28,.58); }
  .hero-inner { height: 100%; justify-content: center; padding-top: 16px; padding-bottom: 0; }
  .hero h1 { margin-bottom: 20px; font-size: clamp(3.45rem, 16vw, 5rem); }
  .hero .eyebrow { margin-bottom: 14px; }
  .hero p { margin-bottom: 24px; }
  .hero p { font-size: .92rem; }
  .hero-specs { min-height: 0; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0 24px; }
  .hero-specs div { min-height: 108px; grid-column: span 2; padding-block: 16px; }
  .hero-specs div:nth-child(n + 4) { grid-column: span 3; border-top: 1px solid rgba(255,255,255,.2); }
  .hero-specs span { font-size: .78rem; }
  .hero-specs strong { font-size: 1.45rem; }
  .split-heading, .page-hero-grid, .product-description-grid, .sourcing-spec-layout, .faq-layout, .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .service-index { top: 104px; overflow-x: auto; }
  .service-index-inner { width: max-content; min-width: 100%; grid-template-columns: repeat(4, minmax(180px, 1fr)); }
  .route-panel { min-height: 0; grid-template-columns: 1fr; }
  .route-visual { min-height: 360px; height: 360px; }
  .route-content { padding: 44px 32px 50px; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .sourcing-directory-row, .trim-directory-row { grid-template-columns: 48px 64px 1fr; gap: 12px; padding: 24px 0; }
  .sourcing-directory-row .directory-title, .trim-directory-row strong { grid-column: 3; }
  .fabric-name-list, .trim-directory-row p { grid-column: 3; }
  .fabric-name-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fabric-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .yarn-dyed-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .print-classifier { grid-template-columns: 1fr; }
  .print-axis, .print-axis:first-child, .print-axis:last-child { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .print-axis:last-child { border-bottom: 0; }
  .print-axis header { min-height: 75px; }
  .compatibility-note { grid-template-columns: 1fr; gap: 8px; }
  .rail-row, .material-list .rail-row, .service-directory-list .rail-row { min-height: 118px; grid-template-columns: 48px 70px 1fr 35px; gap: 10px; padding: 15px 10px; }
  .rail-row p, .rail-meta { display: none; }
  .category-rail .rail-row { min-height: 94px; grid-template-columns: 58px minmax(0, 1fr) 28px; gap: 14px; padding: 12px 0; }
  .category-rail .rail-index, .category-rail .rail-code { display: none; }
  .category-rail .collection-icon-wrap { width: 58px; height: 58px; grid-column: 1; }
  .category-rail .collection-icon { width: 42px; height: 42px; }
  .category-rail .rail-row strong { min-width: 0; grid-column: 2; overflow-wrap: anywhere; }
  .category-rail .rail-arrow { grid-column: 3; justify-self: end; }
  .service-directory-list .rail-row { grid-template-columns: 52px minmax(0, 1fr) 28px; gap: 14px; padding: 15px 0; }
  .service-directory-list .rail-index { display: none; }
  .service-directory-list .rail-code { grid-column: 1; }
  .service-directory-list .rail-row strong { min-width: 0; grid-column: 2; overflow-wrap: anywhere; }
  .service-directory-list .rail-arrow { grid-column: 3; justify-self: end; }
  .material-list .rail-row strong { grid-column: 3 / 5; }
  .service-directory-list .rail-row .text-button { justify-self: end; }
  .process-grid, .process-grid.six { grid-template-columns: repeat(2, 1fr); }
  .route-grid { grid-template-columns: 1fr; }
  .route-grid > div { min-height: 260px; }
  .route-grid h3 { margin-top: 55px; }
  .about-section-heading, .about-guangzhou-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-founder-grid { grid-template-columns: 1fr; }
  .about-founder-card { min-height: 255px; }
  .about-founder-card h3 { margin-top: 54px; }
  .about-guangzhou-copy > p { max-width: 760px; }
  .about-photo-ledger { max-width: 920px; }
  .service-path-grid { grid-template-columns: 1fr; }
  .service-path-grid a { min-height: 230px; }
  .service-path-grid h3 { margin-top: 40px; }
  .spec-matrix { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-summary { position: static; }
  .catalog-toolbar-shell { top: 104px; }
  .wholesale-catalog .catalog-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
  .wholesale-album-heading { grid-template-columns: 1fr; gap: 34px; }
  .wholesale-media-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-system-heading { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .process-system-heading p { max-width: 760px; }
  .process-stage-card { grid-template-columns: 178px minmax(0, 1fr); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-list article { grid-template-columns: 1fr 40px; padding-block: 34px; }
  .journal--trends .journal-list article { grid-template-columns: 76px minmax(0, 1fr) 32px; gap: 12px; }
  .journal--trends .journal-list time { grid-column: 1 / -1; grid-row: 1; }
  .journal--trends .journal-thumb { grid-column: 1; grid-row: 2; align-self: start; }
  .journal--trends .journal-thumb img { width: 100%; height: 76px; }
  .journal--trends .trend-row__content { grid-column: 2; grid-row: 2; }
  .journal--trends .journal-arrow { grid-column: 3; grid-row: 2; }
  .journal-list time { grid-column: 1; }
  .journal-list article > div { grid-column: 1; }
  .journal-arrow { grid-column: 2; grid-row: 1 / 3; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 45px 30px; }
  .sitemap-layout { grid-template-columns: 1fr; }
  .footer-top { padding-block: 70px; }
}

@media (max-width: 560px) {
  #manufacturing-services, #manufacturing-process, #production-process, #quality-control, #inspection-criteria { scroll-margin-top: 104px; }
  .process-system-heading { margin-bottom: 42px; }
  .process-system-heading h2 { font-size: 3rem; }
  .process-stage-card { grid-template-columns: 1fr; gap: 24px; padding-block: 34px; }
  .process-stage-marker { width: 164px; grid-template-columns: 96px 1fr; gap: 18px; }
  .process-stage-icon { width: 96px; height: 96px; }
  .process-stage-icon svg { width: 62px; height: 62px; }
  .process-stage-number { font-size: 1.5rem; }
  .process-stage-body h3 { font-size: 2.3rem; }
  .process-stage-copy { font-size: 1rem; }
  .process-stage-control { padding: 20px 18px; }
  .process-stage-evidence div { grid-template-columns: 1fr; gap: 3px; }
  .route-showcase { padding-block: 42px; }
  .route-visual { min-height: 255px; height: 255px; }
  .route-carousel-arrow { width: 44px; height: 54px; font-size: 1.25rem; }
  .route-carousel-arrow-prev { left: 0; }
  .route-carousel-arrow-next { right: 0; }
  .route-content { padding: 34px 20px 40px; }
  .route-content h2 { font-size: 2.6rem; }
  .route-content > p { font-size: 1rem; line-height: 1.6; }
  .route-step-list li { min-height: 96px; grid-template-columns: 34px minmax(0, 1fr); align-items: start; gap: 10px; padding-block: 18px; }
  .route-step-list li div { grid-template-columns: 1fr; align-items: start; gap: 7px; }
  .route-step-list strong { font-size: 1.4rem; }
  .route-step-list small { font-size: .94rem; line-height: 1.45; text-align: left; }
  .page-hero, .page-hero.compact { padding-block: 72px; }
  .page-hero h1 { font-size: 2.555rem; }
  .page-hero p { font-size: .95rem; }
  .about-guangzhou--intro { padding-top: 72px; }
  .about-guangzhou-copy h1 { font-size: 2.75rem; }
  .about-section-heading { margin-bottom: 34px; }
  .about-founder-card { min-height: 235px; padding: 28px 22px; }
  .about-founder-card h3 { margin-top: 42px; }
  .about-guangzhou-note strong { font-size: 1.45rem; }
  .about-photo-ledger { grid-template-columns: 1fr; gap: 10px; }
  .about-photo-ledger-main { grid-column: auto; min-height: 230px !important; }
  .about-photo-ledger figure { min-height: 205px; }
  .about-capability-grid > li { grid-template-columns: 38px minmax(0, 1fr); gap: 13px; min-height: 0; padding-block: 21px; }
  .about-capability-grid > li > div { display: grid; gap: 8px; }
  .about-capability-grid p { font-size: .88rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
  .hero-specs div, .hero-specs div:nth-child(n + 4) { min-height: 96px; grid-column: auto; border-top: 0; }
  .hero-specs div:nth-child(n + 3) { border-top: 1px solid rgba(255,255,255,.2); }
  .hero-specs div:last-child { grid-column: 1 / -1; }
  .hero-specs span { font-size: .72rem; }
  .hero-specs strong { font-size: 1.3rem; }
  .product-preview-grid, .product-directory { grid-template-columns: 1fr; }
  .product-directory.wholesale-directory, .wholesale-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wholesale-hero { padding-block: 58px; }
  .wholesale-hero h1 { font-size: clamp(2.205rem, 10.5vw, 3.08rem); }
  .catalog-toolbar-shell { margin-bottom: 18px; }
  .wholesale-catalog .catalog-toolbar { min-height: auto; grid-template-columns: 1fr; gap: 0; padding-right: 0; }
  .wholesale-catalog .catalog-toolbar > span { padding: 10px 20px 11px 0; font-size: .75rem; }
  .series-rail { width: 100%; }
  .series-rail .filter-button { min-height: 52px; padding-inline: 12px; }
  .wholesale-album .product-info { min-height: 138px; padding: 13px 12px; }
  .wholesale-album .product-info h3 { margin-top: 7px; font-size: 1.05rem; }
  .album-card-footer > span { max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .wholesale-product-hero { padding-block: 34px 60px; }
  .wholesale-product-summary .product-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .wholesale-product-summary .spec-table div { grid-template-columns: 1fr; }
  .wholesale-product-summary .spec-table span { min-height: 0; padding: 10px 14px 4px; border-right: 0; background: var(--white); }
  .wholesale-product-summary .spec-table strong { min-height: 0; padding: 4px 14px 12px; }
  .product-data-card > header { min-height: 64px; padding: 12px 14px; }
  .product-data-card h2 { font-size: 1.3rem; }
  .product-data-table { min-width: 480px; }
  .product-data-table th, .product-data-table td { min-width: 96px; height: 44px; padding: 9px 10px; }
  .wholesale-album-section { padding-block: 64px; }
  .wholesale-album-heading { margin-bottom: 22px; }
  .wholesale-media-caption { min-height: 58px; align-items: flex-start; flex-direction: column; gap: 3px; padding: 8px; }
  .wholesale-lightbox { width: 100%; height: 100%; max-height: 100%; padding: 52px 42px 12px; border: 0; }
  .wholesale-lightbox img { max-height: calc(100vh - 115px); }
  .lightbox-nav { width: 36px; height: 50px; }
  .lightbox-prev { left: 3px; }
  .lightbox-next { right: 3px; }
  .product-info { min-height: 125px; }
  .sourcing-directory-row, .trim-directory-row { grid-template-columns: 38px 52px 1fr; gap: 8px; }
  .directory-title h3, .trim-directory-row strong { font-size: 1.35rem; }
  .fabric-name-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fabric-name-list li { min-height: 54px; padding: 8px; font-size: .72rem; }
  .fabric-card-grid { grid-template-columns: 1fr; }
  .fabric-card__body { min-height: 0; }
  .fabric-selection-dialog { width: min(100% - 20px, 760px); padding: 26px 20px; }
  .fabric-color-picker__layout { grid-template-columns: 1fr; gap: 18px; padding: 16px; }
  .fabric-color-picker__wheel { width: min(230px, 100%); }
  .fabric-color-picker__controls { grid-template-columns: 1fr; }
  .fabric-unit-choice > div, .enquiry-form-actions { grid-template-columns: 1fr; }
  .fabric-unit-choice label { border-right: 0; border-bottom: 1px solid var(--line); }
  .fabric-unit-choice label:last-child { border-bottom: 0; }
  .fabric-sourcing-hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .fabric-brief-grid, .fabric-market-layout, .fabric-market-facts { grid-template-columns: 1fr; }
  .fabric-brief-grid article { min-height: 290px; padding: 26px 22px; }
  .fabric-brief-grid h3 { margin-top: 48px; }
  .fabric-market-layout { gap: 30px; }
  .fabric-market-facts > div { min-height: 115px; }
  .yarn-dyed-list div { min-height: 96px; padding: 14px; }
  .yarn-dyed-list strong { font-size: 1rem; }
  .accordion summary { min-height: 72px; grid-template-columns: 34px 1fr 24px; gap: 6px; font-size: 1.08rem; line-height: 1.15; }
  .accordion details p { margin: 0 24px 22px 34px; font-size: .86rem; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; }
  .process-grid, .process-grid.six { grid-template-columns: 1fr 1fr; }
  .process-grid div { min-height: 135px; }
  .final-cta-inner { min-height: 420px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .product-summary .text-link { margin: 22px 0 0; }
  .spec-table div { grid-template-columns: 1fr; gap: 4px; }
  .enquiry-form { grid-template-columns: 1fr; }
  .enquiry-form .full { grid-column: 1; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid div { min-height: 135px; padding: 18px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .site-quick-tools { right: max(10px, env(safe-area-inset-right)); bottom: max(10px, env(safe-area-inset-bottom)); width: 46px; gap: 8px; }
  .site-quick-tool, .site-quick-tool--inquiry { width: 46px; min-height: 46px; height: 46px; grid-template-columns: 1fr; place-items: center; gap: 0; padding: 6px; }
  .site-quick-tool span { width: 32px; height: 32px; }
  .site-quick-tool strong, .site-quick-tool--inquiry b { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .site-quick-tool:hover, .site-quick-tool:focus-visible { transform: translateY(-2px); }
  .enquiry-dialog { padding: 55px 22px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .route-carousel-image { transform: none; transition: none; }
}

@media (max-width: 360px) {
  :root { --pad: 16px; }
  h1 { font-size: 3.25rem; }
  .page-hero h1 { font-size: 2.275rem; }
  h2 { font-size: 2.5rem; }
  .wholesale-apparel-links, .wholesale-fabric-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wholesale-apparel-links .wholesale-mega-link, .wholesale-fabric-links .wholesale-mega-link { min-height: 62px; padding: 9px 0; }
  .wholesale-apparel-links .wholesale-mega-link:nth-child(odd), .wholesale-fabric-links .wholesale-mega-link:nth-child(odd) { padding-right: 8px; border-right: 1px solid var(--line); }
  .wholesale-apparel-links .wholesale-mega-link:nth-child(even), .wholesale-fabric-links .wholesale-mega-link:nth-child(even) { padding-left: 8px; border-right: 0; }
  .nav-row { grid-template-columns: minmax(0, 1fr) 40px 40px; gap: 6px; }
  .brand-logo { width: min(200px, 100%); }
  .menu-toggle { width: 40px; height: 40px; min-width: 40px; flex-basis: 40px; }
  .primary-nav { padding-right: 16px; padding-left: 16px; }
  .mega-children { grid-template-columns: 1fr; }
  .category-rail .rail-row { grid-template-columns: 50px minmax(0, 1fr) 22px; gap: 10px; padding: 12px 0; }
  .category-rail .collection-icon-wrap { width: 50px; height: 50px; }
  .category-rail .collection-icon { width: 36px; height: 36px; }
}

/* Wholesale catalog 1.5.4: scalable facets and aligned catalog headings */
.wholesale-type-switch { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wholesale-type-switch a { display: grid; min-width: 0; min-height: 104px; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 18px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wholesale-type-switch a > span { color: var(--marine); font-family: var(--display); font-size: .76rem; font-weight: 700; }
.wholesale-type-switch strong { font-family: var(--display); font-size: 1.8rem; font-weight: 600; }
.wholesale-type-switch small { color: var(--muted); font-size: .72rem; }
.wholesale-type-switch a:hover, .wholesale-type-switch a:focus-visible, .wholesale-type-switch a[aria-current="page"] { color: var(--white); background: var(--ink); }
.wholesale-type-switch a:hover > span, .wholesale-type-switch a:focus-visible > span, .wholesale-type-switch a[aria-current="page"] > span,
.wholesale-type-switch a:hover small, .wholesale-type-switch a:focus-visible small, .wholesale-type-switch a[aria-current="page"] small { color: #b8cfdd; }
.wholesale-fabric-empty { min-height: clamp(480px, 58vh, 760px); background: var(--white); }
.wholesale-fabric-empty h2 { margin: 8px 0 14px; font-size: clamp(3rem, 6vw, 6.5rem); }
.wholesale-fabric-empty p { margin: 0; color: var(--muted); font-size: 1rem; }
.wholesale-catalog { padding-top: clamp(34px, 5vw, 68px); }
.wholesale-catalog-mobilebar { display: none; }
.wholesale-catalog-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(28px, 3.6vw, 54px); align-items: start; }
.wholesale-filter-panel { position: static; max-height: none; overflow: visible; border-bottom: 1px solid var(--line); background: var(--white); }
.wholesale-filter-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 0 0 18px; border-bottom: 1px solid var(--line); }
.wholesale-filter-heading h2 { margin: 3px 0 0; font-size: 2rem; }
.wholesale-filter-close { display: none; }
.wholesale-facet { border-bottom: 1px solid var(--line); }
.wholesale-facet summary { display: grid; min-height: 52px; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 12px 0; font-family: var(--display); font-size: .9rem; font-weight: 600; cursor: pointer; list-style: none; }
.wholesale-facet summary::-webkit-details-marker { display: none; }
.wholesale-facet summary small { display: grid; min-width: 26px; height: 26px; place-items: center; color: var(--muted); border: 1px solid var(--line); font-family: var(--body); font-size: .62rem; font-weight: 500; }
.wholesale-facet-options { display: grid; max-height: 244px; gap: 1px; overflow-y: auto; padding: 0 0 14px; scrollbar-width: thin; }
.wholesale-facet-options label { display: grid; min-height: 34px; grid-template-columns: 18px minmax(0, 1fr) auto; align-items: center; gap: 9px; padding: 5px 6px 5px 0; color: #344454; font-size: .76rem; cursor: pointer; }
.wholesale-facet-options label:hover { color: var(--ink); background: var(--mist); }
.wholesale-facet-options input { width: 15px; height: 15px; margin: 0; accent-color: var(--ink); }
.wholesale-facet-options label > small { color: var(--muted); font-size: .62rem; }
.wholesale-facet--hierarchy .fabric-filter-groups { display: grid; max-height: 396px; overflow-y: auto; padding: 0 0 14px; scrollbar-width: thin; }
.fabric-filter-group { padding: 9px 0 3px; border-top: 1px solid var(--line); }
.fabric-filter-group:first-child { padding-top: 0; border-top: 0; }
.fabric-filter-group__title { display: flex; min-height: 28px; align-items: center; justify-content: space-between; gap: 12px; color: var(--marine); font-family: var(--display); font-size: .78rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.fabric-filter-group__title > span { color: var(--muted); font-family: var(--body); font-size: .62rem; font-weight: 600; }
.fabric-filter-group .wholesale-facet-options { max-height: none; gap: 0; overflow: visible; padding: 0 0 5px; }
.fabric-filter-group .wholesale-facet-options label { min-height: 32px; padding-left: 12px; border-left: 2px solid #d7e1e7; }
.fabric-filter-group .wholesale-facet-options label:hover { border-left-color: var(--marine); }
.fabric-filter-option--empty { color: #9aa7b2 !important; }
.fabric-filter-option--empty:hover { background: transparent !important; }
.wholesale-filter-actions { display: grid; gap: 15px; padding: 20px 0 4px; }
.wholesale-filter-actions .button { width: 100%; }
.wholesale-filter-actions .text-link { justify-self: start; }
.wholesale-filter-scrim { display: none; }
.wholesale-results { min-width: 0; }
.wholesale-results-head { display: flex; min-height: 72px; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 20px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.wholesale-results-head h2 { margin: 3px 0 0; font-size: clamp(2rem, 3vw, 3rem); }
.wholesale-results-head > span { color: var(--muted); font-family: var(--display); font-size: .78rem; text-transform: uppercase; }
.wholesale-results .product-directory.wholesale-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wholesale-album .product-info { min-height: 170px; padding: 18px; }
.product-fit-labels { display: flex; flex-wrap: wrap; gap: 5px; margin: 0 0 9px; }
.product-fit-labels span { display: inline-flex; min-height: 19px; align-items: center; padding: 3px 6px; color: var(--marine); border: 1px solid #b9cfdd; background: #f7fafc; font-family: var(--display); font-size: .61rem; font-weight: 700; letter-spacing: .03em; line-height: 1; text-transform: uppercase; }
.product-fit-labels .product-type-label { color: #24484d; border-color: #adc6b8; background: #f4faf6; }
.wholesale-album .product-info h3 { margin: 0 0 15px; }
.album-card-footer { align-items: center; gap: 14px; color: #405365; font-size: .82rem; font-weight: 600; }
.wholesale-album .product-info .product-inquiry-button { position: static; min-width: 126px; min-height: 46px; flex: 0 0 auto; justify-content: space-between; gap: 18px; padding: 10px 14px; border: 1px solid var(--ink); background: var(--ink); color: var(--white); font-size: 1rem; font-weight: 700; line-height: 1; text-decoration: none; transition: color .2s, background .2s, border-color .2s; }
.wholesale-album .product-info .product-inquiry-button > [data-cart-button-icon] { font-family: var(--body); font-size: 1.25rem; font-weight: 500; line-height: .8; }
.wholesale-album .product-info .product-inquiry-button:hover { border-color: var(--marine); background: var(--marine); color: var(--white); }
.wholesale-album .product-info .product-inquiry-button:focus-visible { outline: 3px solid rgba(18, 93, 137, .35); outline-offset: 3px; }
.catalog-empty { padding: 60px 0; }
.catalog-empty h3 { margin-bottom: 8px; }
.catalog-empty p { margin: 0 0 18px; }
.wholesale-media-caption { justify-content: flex-start; }

@media (min-width: 1600px) {
  .wholesale-catalog-layout { grid-template-columns: 280px minmax(0, 1fr); }
  .wholesale-results .product-directory.wholesale-directory { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1120px) {
  .wholesale-catalog-layout { grid-template-columns: 230px minmax(0, 1fr); gap: 28px; }
  .wholesale-results .product-directory.wholesale-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  body.wholesale-filter-open { overflow: hidden; }
  .wholesale-catalog { padding-top: 0; }
  .wholesale-type-switch a { min-height: 88px; grid-template-columns: 30px minmax(0, 1fr) auto; gap: 10px; padding: 14px 16px; }
  .wholesale-type-switch strong { font-size: 1.4rem; }
  .wholesale-catalog-mobilebar { position: sticky; z-index: 18; top: 104px; display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); }
  .wholesale-catalog-mobilebar > span { color: var(--muted); font-family: var(--display); font-size: .78rem; text-transform: uppercase; }
  .wholesale-filter-toggle { min-height: 42px; padding: 8px 15px; }
  .wholesale-filter-toggle span { display: inline-grid; min-width: 20px; height: 20px; place-items: center; margin-left: 8px; color: var(--ink); background: var(--white); font-family: var(--body); font-size: .66rem; }
  .wholesale-catalog-layout { display: block; padding-top: 28px; }
  .wholesale-filter-panel { position: fixed; z-index: 101; top: 0; left: 0; width: min(390px, 90vw); height: 100dvh; max-height: none; padding: 0 24px 28px; overflow-y: auto; visibility: hidden; border-top: 0; box-shadow: 18px 0 50px rgba(2,15,27,.2); transform: translateX(-105%); transition: transform .24s ease, visibility 0s linear .24s; }
  .wholesale-filter-panel.is-open { visibility: visible; transform: translateX(0); transition-delay: 0s; }
  .wholesale-filter-heading { position: sticky; z-index: 2; top: 0; padding-top: 24px; background: var(--white); }
  .wholesale-filter-close { display: grid; }
  .wholesale-filter-scrim { position: fixed; z-index: 100; inset: 0; display: block; padding: 0; border: 0; background: rgba(2,15,27,.52); opacity: 0; pointer-events: none; transition: opacity .24s ease; }
  body.wholesale-filter-open .wholesale-filter-scrim { opacity: 1; pointer-events: auto; }
  .wholesale-results-head { min-height: auto; }
}

@media (max-width: 560px) {
  .wholesale-type-switch a { min-height: 78px; grid-template-columns: 24px minmax(0, 1fr); gap: 8px; padding: 12px 10px; }
  .wholesale-type-switch strong { font-size: 1.15rem; }
  .wholesale-type-switch small { display: none; }
  .wholesale-fabric-empty { min-height: 430px; }
  .wholesale-catalog-mobilebar { top: 104px; }
  .wholesale-results-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .wholesale-results .product-directory.wholesale-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wholesale-album .product-info { min-height: 170px; padding: 13px 12px; }
  .wholesale-album .product-info h3 { margin-top: 0; }
  .album-card-footer { align-items: stretch; flex-direction: column; gap: 8px; }
  .album-card-footer > span { max-width: none; font-size: .78rem; }
  .wholesale-album .product-info .product-inquiry-button { width: 100%; min-width: 0; min-height: 46px; font-size: .96rem; }
}

@media (prefers-reduced-motion: reduce) {
  .wholesale-media-item img, .product-image img, .fabric-card__image { transition: none; }
}

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

/* Homepage Wholesale category rails and product carousels */
[data-home-catalog] { scroll-margin-top: 24px; }
.home-catalog-filter { --home-series-visible: 5; display: grid; min-width: 0; grid-template-columns: 48px minmax(0, 1fr) 48px; margin-top: -18px; margin-bottom: 34px; border: 1px solid var(--line); background: var(--white); }
.home-catalog-options { display: grid; min-width: 0; grid-auto-columns: calc(100% / var(--home-series-visible)); grid-auto-flow: column; overflow-x: auto; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: inline mandatory; scrollbar-width: none; }
.home-catalog-options::-webkit-scrollbar { display: none; }
.home-catalog-option { display: flex; min-width: 0; min-height: 62px; align-items: center; justify-content: center; gap: 9px; padding: 10px 14px; overflow: hidden; border-right: 1px solid var(--line); color: var(--ink); font-family: var(--display); font-size: .88rem; font-weight: 600; scroll-snap-align: start; transition: color .18s ease, background .18s ease; }
.home-catalog-option > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-catalog-option small { display: grid; min-width: 24px; height: 24px; place-items: center; padding-inline: 5px; color: var(--muted); border: 1px solid var(--line); font-family: var(--body); font-size: .62rem; font-weight: 600; }
.home-catalog-option:hover, .home-catalog-option:focus-visible, .home-catalog-option.is-active { color: var(--white); background: var(--marine); }
.home-catalog-option:hover small, .home-catalog-option:focus-visible small, .home-catalog-option.is-active small { color: var(--white); border-color: rgba(255,255,255,.48); }
.home-catalog-option:focus-visible { position: relative; z-index: 1; outline: 3px solid rgba(23,79,120,.3); outline-offset: -3px; }
.home-catalog-filter-arrow { display: grid; min-width: 0; min-height: 62px; place-items: center; padding: 0; border: 0; color: var(--ink); background: var(--white); font-size: 1.2rem; cursor: pointer; transition: color .18s ease, background .18s ease; }
.home-catalog-filter-arrow-prev { border-right: 1px solid var(--line); }
.home-catalog-filter-arrow-next { border-left: 1px solid var(--line); }
.home-catalog-filter-arrow:hover:not(:disabled), .home-catalog-filter-arrow:focus-visible { color: var(--white); background: var(--ink); }
.home-catalog-filter-arrow:focus-visible { position: relative; z-index: 2; outline: 3px solid rgba(23,79,120,.3); outline-offset: -3px; }
.home-catalog-filter-arrow:disabled { color: #aab5be; background: var(--mist); cursor: default; }
.home-catalog-product-carousel { --home-product-visible: 5; --home-product-rows: 2; --home-product-gap: clamp(14px, 1.4vw, 26px); --home-product-row-gap: clamp(26px, 3vw, 46px); min-width: 0; }
.home-fabric-product-carousel { --home-product-rows: 1; }
.home-fabric-item { --home-fabric-image-scale: 1.02; }
#home-fabric-wholesale .home-fabric-item[data-home-fabric-family="leather"] { --home-fabric-image-scale: 2; }
.home-fabric-item .product-image img { transform: scale(var(--home-fabric-image-scale)); transform-origin: center; }
.home-fabric-item:hover .product-image img { transform: scale(calc(var(--home-fabric-image-scale) + .035)); }
.home-catalog-product-bar { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.home-catalog-product-bar[hidden] { display: none; }
.home-catalog-product-progress { color: var(--muted); font-family: var(--display); font-size: .78rem; font-weight: 700; letter-spacing: .05em; font-variant-numeric: tabular-nums; }
.home-catalog-product-actions { display: flex; align-self: stretch; }
.home-catalog-product-arrow { display: grid; width: 48px; min-height: 48px; place-items: center; padding: 0; color: var(--ink); border: 0; border-left: 1px solid var(--line); background: var(--white); font-size: 1.15rem; cursor: pointer; transition: color .18s ease, background .18s ease; }
.home-catalog-product-arrow:hover:not(:disabled), .home-catalog-product-arrow:focus-visible { color: var(--white); background: var(--ink); }
.home-catalog-product-arrow:focus-visible { position: relative; z-index: 1; outline: 3px solid rgba(23,79,120,.3); outline-offset: -3px; }
.home-catalog-product-arrow:disabled { color: #aab5be; background: var(--mist); cursor: default; }
.catalog-band .home-catalog-grid { display: grid; min-width: 0; grid-template-columns: none; grid-template-rows: repeat(var(--home-product-rows), auto); grid-auto-columns: calc((100% - (var(--home-product-visible) - 1) * var(--home-product-gap)) / var(--home-product-visible)); grid-auto-flow: column; gap: var(--home-product-row-gap) var(--home-product-gap); align-items: stretch; overflow-x: auto; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: inline mandatory; scrollbar-width: none; }
.home-catalog-grid::-webkit-scrollbar { display: none; }
.home-catalog-grid { transition: opacity .22s ease; }
.home-catalog-grid.is-loading { opacity: .34; pointer-events: none; }
.home-catalog-grid .product-item { scroll-snap-align: start; }
.home-catalog-grid .wholesale-album .product-info { min-height: 174px; padding: 15px 14px; }
.home-catalog-grid .wholesale-album .product-info h3 { font-size: clamp(1.02rem, 1.05vw, 1.25rem); }
.home-catalog-grid .wholesale-album .product-inquiry-button { min-width: 108px; padding-inline: 12px; }

@media (max-width: 1120px) {
  .home-catalog-filter { --home-series-visible: 4; }
  .home-catalog-product-carousel { --home-product-visible: 4; }
}

@media (max-width: 980px) {
  .home-catalog-filter { --home-series-visible: 3; }
  .home-catalog-filter { margin-top: -24px; margin-bottom: 28px; }
  .home-catalog-product-carousel { --home-product-visible: 3; }
}

@media (max-width: 900px) {
  [data-home-catalog] { scroll-margin-top: 112px; }
}

@media (max-width: 680px) {
  .home-catalog-filter { --home-series-visible: 2; grid-template-columns: 40px minmax(0, 1fr) 40px; margin-top: -20px; margin-bottom: 22px; }
  .home-catalog-filter-arrow, .home-catalog-option { min-height: 54px; }
  .home-catalog-option { gap: 7px; padding-inline: 12px; }
  .home-catalog-product-carousel { --home-product-visible: 2; --home-product-gap: 12px; }
  .home-catalog-product-bar { min-height: 46px; margin-bottom: 14px; }
  .home-catalog-product-arrow { width: 46px; min-height: 46px; }
  .home-catalog-grid .wholesale-album .product-info { min-height: 170px; padding: 12px 10px; }
  .home-catalog-grid .wholesale-album .product-info h3 { font-size: 1rem; }
}

/* Homepage global sourcing route ledger */
.home-logistics { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.home-logistics-layout { display: grid; grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 6vw, 112px); align-items: center; }
.home-logistics-copy { min-width: 0; }
.home-logistics-copy h2 { max-width: 700px; margin: 14px 0 24px; color: var(--white); font-size: clamp(3rem, 5.4vw, 6rem); line-height: .92; letter-spacing: -.035em; }
.home-logistics-copy > p { max-width: 680px; margin: 0; color: rgba(255,255,255,.72); font-size: clamp(.96rem, 1.1vw, 1.12rem); line-height: 1.75; }
.home-logistics-ledger { margin: clamp(34px, 4vw, 54px) 0 0; border-top: 1px solid rgba(255,255,255,.24); }
.home-logistics-ledger > div { display: grid; grid-template-columns: minmax(130px, .8fr) minmax(150px, 1.2fr); gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.home-logistics-ledger dt { color: var(--sky); font-family: var(--display); font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.home-logistics-ledger dd { margin: 0; color: var(--white); font-size: .92rem; font-weight: 700; line-height: 1.45; }
.home-logistics-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.home-logistics-actions .text-link { padding-bottom: 5px; border-bottom-color: rgba(255,255,255,.55); }
.home-logistics-map { min-width: 0; margin: 0; }
.home-logistics-map svg { display: block; width: 100%; height: auto; border: 1px solid rgba(255,255,255,.2); background: #0a2741; }
.home-logistics-map-grid path { fill: none; stroke: rgba(140,184,210,.12); stroke-width: 1; vector-effect: non-scaling-stroke; }
.home-logistics-continent path { fill: rgba(140,184,210,.17); stroke: rgba(140,184,210,.58); stroke-width: 1.2; vector-effect: non-scaling-stroke; }
#home-logistics-arrow path { fill: var(--sky); stroke: none; }
.home-logistics-route-lines path { fill: none; stroke: #8cb8d2; stroke-width: 2; stroke-dasharray: 7 9; stroke-linecap: round; marker-end: url("#home-logistics-arrow"); vector-effect: non-scaling-stroke; animation: home-route-flow 7s linear infinite; }
.home-logistics-destination circle { fill: #0a2741; stroke: #fff; stroke-width: 3; vector-effect: non-scaling-stroke; }
.home-logistics-destination text, .home-logistics-origin text { fill: #fff; font-family: var(--display); font-size: 14px; font-weight: 700; letter-spacing: .02em; paint-order: stroke; stroke: #0a2741; stroke-linejoin: round; stroke-width: 5px; }
.home-logistics-origin-ring { fill: rgba(255,255,255,.08); stroke: #fff; stroke-width: 2; vector-effect: non-scaling-stroke; }
.home-logistics-origin-core { fill: #fff; }
.home-logistics-origin text { font-size: 18px; }
.home-logistics-region-list { display: none; }
.home-logistics-map figcaption { max-width: 760px; margin-top: 16px; color: rgba(255,255,255,.55); font-size: .72rem; line-height: 1.6; }

@keyframes home-route-flow {
  to { stroke-dashoffset: -64; }
}

.home-buyer-facts { background: var(--white); }
.home-buyer-facts.section-pad { padding-block: clamp(48px, 4.5vw, 72px); }
.home-buyer-facts-head { margin-bottom: 24px; }
.home-buyer-facts-head h2 { max-width: 1050px; font-size: clamp(3rem, 4vw, 4.5rem); }
.home-buyer-facts-grid { border-top: 1px solid var(--line); }
.home-buyer-fact { display: grid; min-width: 0; min-height: 0; grid-template-columns: 110px minmax(0, 1fr); gap: 28px; align-items: center; padding-block: clamp(18px, 1.4vw, 24px); border-bottom: 1px solid var(--line); }
.home-buyer-fact-index, .home-buyer-fact div > span { color: var(--marine); font-family: var(--display); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.home-buyer-fact > div { min-width: 0; max-width: 1320px; }
.home-buyer-fact h3 { max-width: 1320px; margin: 7px 0 9px; font-size: clamp(2rem, 2.4vw, 2.75rem); line-height: 1.02; }
.home-buyer-fact p { max-width: 1240px; margin: 0; color: #405365; font-size: 1rem; line-height: 1.65; }

@media (max-width: 1120px) {
  .home-logistics-layout { grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: 42px; }
  .home-logistics-destination text { font-size: 13px; }
  .home-logistics-origin text { font-size: 16px; }
}

@media (max-width: 900px) {
  .home-logistics-layout { grid-template-columns: 1fr; }
  .home-logistics-map { order: 2; }
  .home-logistics-copy h2 { max-width: 760px; }
  .home-logistics-region-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 16px 0 0; padding: 0; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); list-style: none; }
  .home-logistics-region-list li { display: flex; min-height: 44px; align-items: center; padding: 8px 10px; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); color: var(--white); font-family: var(--display); font-size: .78rem; font-weight: 700; line-height: 1.35; }
  .home-buyer-fact { min-height: 0; grid-template-columns: 80px minmax(0, 1fr); gap: 22px; }
}

@media (max-width: 620px) {
  .home-logistics-copy h2 { font-size: clamp(2.85rem, 14vw, 4.5rem); }
  .home-logistics-ledger > div { grid-template-columns: 1fr; gap: 7px; }
  .home-logistics-actions { align-items: stretch; flex-direction: column; }
  .home-logistics-actions .button { width: 100%; }
  .home-logistics-actions .text-link { align-self: flex-start; }
  .home-logistics-map { width: 100%; margin-left: 0; overflow: visible; }
  .home-logistics-map svg { width: 100%; max-width: none; }
  .home-logistics-region-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-logistics-region-list li:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .home-logistics-map figcaption { width: 100%; margin-left: 0; }
  .home-logistics-destination text { font-size: 22px; }
  .home-logistics-origin text { font-size: 24px; }
  .journal--trends.section-pad { padding-block: 56px; }
  .journal--trends .section-head { margin-bottom: 28px; }
  .home-buyer-facts.section-pad, .journal--home-trends.section-pad { padding-block: 48px; }
  .home-buyer-facts-head, .journal--home-trends .section-head { margin-bottom: 22px; }
  .home-buyer-fact { min-height: 0; grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
  .home-buyer-fact h3 { margin-top: 10px; font-size: 2rem; }
  .journal--trends .journal-list article { padding-block: 26px; }
  .journal--home-trends .journal-list article { padding-block: 20px; }
  .article-body .partner-media-grid--factory, .article-body .partner-media-grid--leather, .article-body .partner-material-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-body .partner-assurance-layout { grid-template-columns: 1fr; }
  .partner-leather-cta, .partner-fabric-cta { margin-block: 2.5em; }
}

@media (max-width: 560px) {
  .home-buyer-fact h3, .journal--home-trends .journal-list h2 { font-size: 2rem; }
  .article-body .partner-process-flow, .article-body .partner-material-showcase { grid-template-columns: 1fr; }
  .article-body .partner-material-showcase__wide { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .home-logistics-route-lines path { animation: none; }
}

@media (max-width: 1040px) {
  .policy-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .policy-hero__meta { max-width: 720px; }
  .policy-layout { grid-template-columns: minmax(190px, 230px) minmax(0, 1fr); gap: 46px; }
  .payment-method-card { grid-template-columns: 1fr; justify-items: start; }
}

@media (max-width: 780px) {
  .policy-hero { padding-block: 66px; }
  .policy-hero__title h1 { font-size: 3rem; }
  .policy-layout { grid-template-columns: 1fr; gap: 44px; }
  .policy-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .policy-sidebar nav + nav { margin-top: 0; }
  .policy-toc ol { max-height: 310px; overflow-y: auto; }
  .payment-methods__head { grid-template-columns: 1fr; }
  .payment-method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payment-method-card { grid-template-columns: 108px minmax(0, 1fr); }
}

@media (max-width: 540px) {
  .policy-hero__title h1 { font-size: 2.55rem; }
  .policy-hero__meta { grid-template-columns: 1fr; }
  .policy-hero__meta div { min-height: 0; padding: 16px; }
  .policy-sidebar { grid-template-columns: 1fr; }
  .policy-copy h2 { margin-top: 3.2rem; font-size: 1.8rem; }
  .policy-copy p, .policy-copy li { font-size: .95rem; line-height: 1.75; }
  .payment-methods__group-title { flex-direction: column; gap: 4px; }
  .payment-method-grid { grid-template-columns: 1fr; }
  .payment-method-card { grid-template-columns: 108px minmax(0, 1fr); min-height: 88px; }
  .footer-payment-methods { max-width: 280px; margin-top: 16px; }
}
