:root {
  --accent: #ff0047;
  --accent-dark: #d9003b;
  --accent-soft: #ffe0e9;
  --signal: #ff0047;
  --signal-dark: #d9003b;
  --ink: #252525;
  --ink-soft: #3d3d3d;
  --surface: #f6f6f6;
  --line: #dddddd;
  --copy: #353535;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: none; background: var(--ink); }
html::-webkit-scrollbar { display: none; width: 0; height: 0; }
body { width: 100%; margin: 0; color: var(--copy); background: #fff; font-family: "Open Sans", Arial, sans-serif; font-size: 16px; line-height: 1.75; }
body.no-scroll { overflow: hidden; }
.reveal-on-scroll { opacity: 0; transform: translate3d(0,-32px,0); }
.reveal-on-scroll.is-revealed { animation: fade-in-down .8s ease both; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.content-width { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }
.site-header { height: 90px; background: #000; color: #fff; position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #242424; }
.site-header::before { display: none; }
.header-inner { width: min(1140px, calc(100% - 40px)); height: 90px; margin: auto; position: relative; top: 0; display: flex; align-items: center; }
.brand { width: 280px; flex: 0 0 280px; }
.brand img { width: 280px; height: auto; }
.desktop-nav { margin: 0 0 0 auto; height: 90px; display: flex; align-items: center; gap: 4px; font: 400 19px/45px "Oswald", sans-serif; }
.desktop-nav > a, .nav-item > a { white-space: nowrap; }
.desktop-nav > a, .nav-item > a { display: block; height: 45px; padding: 0 20px; font: inherit; line-height: 45px; }
.nav-item { position: relative; height: 60px; display: flex; align-items: center; }
.nav-item::after { content: ""; position: absolute; left: 0; right: 0; bottom: -13px; height: 3px; background: var(--accent); transform: scaleX(0); transition: .2s; }
.nav-item:hover::after { transform: scaleX(1); }
.header-tools { position: absolute; top: -29px; right: 0; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.88); font-size: 12px; }
.inquiry-pill { min-width: 82px; padding: 2px 15px; border-radius: 4px; color: #fff; background: var(--signal); text-align: center; transition: background-color .2s; font-weight: 700; }
.inquiry-pill:hover { background: var(--signal-dark); }
.search-button { width: 28px; height: 28px; padding: 0; border: 0; background: none; cursor: pointer; position: relative; }
.search-button span { position: absolute; width: 18px; height: 18px; border: 2px solid #fff; border-radius: 50%; left: 1px; top: 1px; }
.search-button span::after { content: ""; width: 8px; height: 2px; background: #fff; position: absolute; right: -6px; bottom: -3px; transform: rotate(48deg); }
.dropdown { visibility: hidden; opacity: 0; transform: translateY(10px); transition: .18s; position: absolute; top: 40px; background: #fff; color: var(--copy); box-shadow: 0 12px 28px rgba(0,0,0,.18); font: 14px/1.4 "Open Sans", sans-serif; z-index: 20; }
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown { visibility: visible; opacity: 1; transform: translateY(0); }
.about-dropdown { left: -20px; width: 230px; padding: 12px 0; }
.about-dropdown a { display: block; padding: 10px 20px; }
.about-dropdown a:hover, .mega-column a:hover { color: var(--accent); }
.mega-menu { position: fixed; top: 90px; left: 0; right: 0; padding: 28px max(40px, calc((100% - 1140px)/2)); display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-height: calc(100vh - 90px); overflow: auto; }
.mega-column { display: flex; flex-direction: column; gap: 5px; }
.mega-column .mega-title { color: var(--accent); font: 500 19px/1.5 "Oswald", sans-serif; border-bottom: 1px solid var(--line); margin-bottom: 5px; }
.menu-button, .mobile-search-button { display: none; }
.mobile-drawer, .page-mask, .search-panel { display: none; }

.home-slider { position: relative; height: min(620px, calc(100vh - 180px)); min-height: 500px; overflow: hidden; background: var(--ink); }
.home-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; pointer-events: none; }
.home-slide.active { opacity: 1; pointer-events: auto; }
.home-slide picture, .home-slide picture img { width: 100%; height: 100%; }
.home-slide picture img { object-fit: cover; object-position: center; }
.hero-inner { width: min(1140px, calc(100% - 40px)); height: 100%; margin: auto; display: flex; align-items: center; }
.home-slide .hero-inner { position: absolute; inset: 0; width: 88%; max-width: 1253px; }
.hero-title-wrap { width: 50%; padding: 5px 5px 5px 15px; }
.home-slide h1 { margin: 0; color: #fff; font: 400 54px/1.2 "Oswald", sans-serif; letter-spacing: 0; text-shadow: 0 1px 3px rgba(0,0,0,.25); }
.desktop-hero-text { display: block; transform: scaleX(.953); transform-origin: left center; }
.hero-line { display: table; white-space: nowrap; background: rgba(217,0,59,.93); box-shadow: -16px 0 0 rgba(217,0,59,.93); padding: 2px 0 4px; }
.mobile-hero-text { display: none; }
.category-strip { height: 120px; display: grid; grid-template-columns: repeat(8, 1fr); background: #fff; }
.category-strip button { min-width: 0; border: 0; border-right: 1px solid var(--line); padding: 0; color: var(--accent); background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; text-align: center; font: 400 16px/1.05 "Open Sans", sans-serif; cursor: pointer; transition: background-color .2s, color .2s; }
.category-strip button.active, .category-strip button:hover { color: #fff; background: var(--accent); }
.category-strip span { width: 44px; height: 44px; display: grid; place-items: center; }
.category-strip span img { width: 40px; height: 40px; object-fit: contain; }
.category-strip button.active span img, .category-strip button:hover span img { filter: brightness(0) invert(1); }
.category-strip b { font-weight: 400; }
.home-category-select { display: none; }
.home-product-panels { min-height: 600px; background: var(--ink); }
.home-product-panel { display: none; min-height: 600px; padding: 120px 20px 50px; align-items: center; justify-content: center; color: #fff; background-position: center; background-size: cover; }
.home-product-panel.active { display: flex; }
.home-product-info { width: min(720px, 100%); text-align: center; }
.home-product-info > p { margin: 0 0 42px; font-weight: 300; line-height: 1.8; }
.home-product-info h2 { margin: 0 0 20px; color: #fff; font: 400 24px/1.2 "Oswald", sans-serif; }
.home-product-info > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 65px; }
.home-product-info a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.65); font: 300 18px/1.4 "Oswald", sans-serif; }
.home-stainless-products { background: var(--surface); padding: 58px 0 78px; }
.home-stainless-products h2 { margin: 0 0 30px; color: #111; text-align: center; font: 400 42px/1.2 "Oswald", sans-serif; }
.home-stainless-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 38px 28px; }
.home-stainless-card { min-width: 0; color: #111; text-align: center; }
.home-stainless-card img { width: 100%; aspect-ratio: 570 / 360; object-fit: cover; background: #ddd; }
.home-stainless-card h3 { margin: 14px 0 0; font: 400 17px/1.35 "Oswald", sans-serif; }
.home-stainless-card:hover h3 { color: var(--accent); }
.blue-button { display: inline-flex; align-items: center; justify-content: center; min-width: 188px; height: 42px; padding: 0 24px; background: var(--accent); color: #fff; border-radius: 5px; font-size: 14px; transition: background-color .2s; }
.blue-button:hover { background: var(--accent-dark); }

.products-overview { min-height: 800px; padding-top: 1px; background: url("assets/images/products-overview-bg.jpg") center top/cover no-repeat; }
.breadcrumbs { height: 66px; min-height: 66px; padding: 33px 0 13px; display: block; font-size: 13px; line-height: 1.45; color: var(--accent); }
.breadcrumbs a { color: #888; }
.breadcrumbs a::after { content: "›"; margin: 0 15px; color: #888; font-weight: 700; }
.overview-title { margin: 100px 0 30px; color: #fff; font: 400 42px/1.2 "Oswald", sans-serif; }
.overview-grid { display: grid; grid-template-columns: repeat(4, 270px); column-gap: 20px; margin-inline: 0; padding: 0 0 70px; }
.overview-card { margin-bottom: 50px; padding-inline: 0; }
.overview-card { position: relative; display: block; aspect-ratio: 3/2; overflow: hidden; }
.overview-card-bg { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform .3s ease; }
.overview-card-copy { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(37,37,37,.9); color: #fff; text-align: center; border: 2px solid var(--accent); transition: background-color .2s linear, border-color .2s linear; }
.overview-card:hover .overview-card-copy { background: rgba(37,37,37,0); border-color: transparent; }
.overview-card:hover .overview-card-bg { transform: scale(1.04); }
.overview-card-copy img { width: 84px; height: 84px; object-fit: contain; margin-bottom: 8px; filter: brightness(0) invert(1); opacity: 1; transform: scale(1); transition: opacity .2s linear, transform .2s linear; }
.overview-card:hover .overview-card-copy img { opacity: 0; transform: scale(.92); }
.overview-card-copy b { font: 400 24px/1.2 "Oswald", sans-serif; }
.overview-card:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.overview-card:focus-visible .overview-card-copy { background: rgba(37,37,37,0); border-color: transparent; }
.overview-card:focus-visible .overview-card-bg { transform: scale(1.04); }
.overview-card:focus-visible .overview-card-copy img { opacity: 0; transform: scale(.92); }

.category-page { min-height: 800px; background: var(--surface); padding-bottom: 90px; }
.page-title { color: #000; text-align: center; font: 400 42px/1.2 "Oswald", sans-serif; margin: 60px 0 30px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-inline: -15px; }
.product-card { margin-bottom: 40px; padding-inline: 15px; }
.product-card { display: block; overflow: hidden; }
.product-card img { width: 100%; aspect-ratio: 570/360; object-fit: cover; transform: scale(1); transition: transform .3s ease; }
.product-card h2 { color: #111; text-align: center; font: 400 18px/1.2 "Oswald", sans-serif; margin: 20px 0 0; transition: color .3s ease; }
.product-card:hover img { transform: scale(1.1); }
.product-card:hover h2 { color: var(--accent); }
.product-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.product-card:focus-visible img { transform: scale(1.1); }
.product-card:focus-visible h2 { color: var(--accent); }

.about-banner { height: 216px; background: url("assets/images/about-banner.webp") center/cover; color: #fff; position: relative; }
.about-banner h1 { font: 400 42px/1 "Oswald", sans-serif; padding-top: 83px; }
.about-tabs { position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); display: flex; width: max-content; }
.about-tabs a { height: 50px; margin: 0 25px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; font-weight: 300; }
.about-tabs a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; border-bottom: 8px solid #fff; }
.about-content { padding: 30px 0 80px; }
.about-content-full { padding: 0; }
.about-story { padding: 80px 0; text-align: center; }
.about-story-inner { width: min(1140px, calc(100% - 40px)); }
.story-block + .story-block { margin-top: 28.8px; }
.story-block h2 { margin: 0 0 30px; color: #111; font: 700 32px/38.4px "Oswald", sans-serif; }
.story-block p { width: 60%; max-width: 684px; margin: 0 auto; font-size: 16px; font-weight: 300; line-height: 28.8px; }
.story-block p + p { margin-top: 0; }
.story-block a { color: var(--accent); }
.story-graphic { width: 100%; max-width: 420px; max-height: 195px; margin: 50px auto 0; object-fit: contain; }
.about-ending { min-height: 540px; background: url("assets/images/about-ending.webp") center/cover no-repeat; }
.about-section { padding: 55px 0; }
.about-section + .about-section { border-top: 1px solid #e5e5e5; }
.about-section h2 { color: #090909; font: 500 32px/1.2 "Oswald", sans-serif; }
.centered { text-align: center; }
.centered > p { max-width: 680px; margin: 0 auto 38px; }
.wide-illustration { width: min(760px, 90%); max-height: 350px; object-fit: contain; margin: 25px auto 0; }
.about-section.alt { background: #f7f7f7; margin-inline: calc((1140px - 100vw)/2); padding-inline: max(20px, calc((100vw - 1140px)/2)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img { width: 100%; height: 330px; object-fit: cover; }
.value-grid, .company-grid, .office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 45px; }
.value-grid article, .company-grid article, .office-grid article { border: 1px solid #ddd; padding: 30px; text-align: left; }
.value-grid b, .company-grid b { display: block; color: var(--accent); font: 500 24px/1.2 "Oswald", sans-serif; }
.company-grid span { color: #777; }.office-grid h3 { font: 500 24px/1.2 "Oswald", sans-serif; }
.office-grid a { color: var(--accent); }
.policy { max-width: 840px; margin: auto; }.policy h3 { color: var(--accent); margin-top: 32px; }
.certificate-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 35px; }
.certificate-list a { border: 1px solid #ddd; padding: 18px; display: flex; align-items: center; gap: 18px; text-align: left; }
.certificate-list span { width: 70px; height: 54px; display: grid; place-items: center; background: var(--accent); color: #fff; font: 500 17px "Oswald", sans-serif; }

/* Source page layouts for the About CANARY subpages. */
.vision-intro { min-height: 343.5859375px; padding: 80px 0; text-align: center; }
.vision-intro h2, .vision-values-band h2, .certificates-source h2 { color: #111; font: 400 32px/1.2 "Oswald", sans-serif; margin: 0 0 30px; }
.vision-intro p, .vision-values-band .vision-lead { width: min(680px, calc(100% - 40px)); margin: auto; font-weight: 300; line-height: 1.8; }
.vision-values-band { min-height: 558.7734375px; padding: 80px 0; color: #fff; text-align: center; background: linear-gradient(rgba(0,0,0,.46), rgba(0,0,0,.46)), url("assets/images/vision-values-bg.webp") center/cover no-repeat; }
.vision-values-band h2 { color: #fff; }
.vision-values-band .vision-lead { padding-bottom: 50px; }
.core-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; text-align: left; }
.core-values-grid article h3 { margin: 0 0 17px; color: #fff; font: 400 23px/1.2 "Oswald", sans-serif; }
.core-values-grid article p { margin: 0; font-weight: 300; line-height: 1.8; }
.affiliate-list { padding: 80px 0; }
.affiliate-row { display: grid; grid-template-columns: 33.333% 66.667%; gap: 0; margin-bottom: 50px; }
.affiliate-lead { padding-right: 55px; }
.affiliate-lead h3, .affiliate-details h4 { margin: 0 0 12px; color: #111; font: 400 24px/1.25 "Oswald", sans-serif; }
.affiliate-lead p, .affiliate-details p { margin: 0; font-weight: 300; line-height: 1.75; }
.affiliate-details { border-left: 1px solid #ddd; padding-left: 55px; }
.affiliate-details h4:not(:first-child) { margin-top: 30px; }
.affiliate-details b { display: block; margin-bottom: 7px; color: #777; font-size: 14px; font-weight: 400; }
.office-source { padding: 70px 0 120px; }
.office-source-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px; }
.office-source-grid.office-source-single { grid-template-columns: minmax(0, 560px); justify-content: center; text-align: center; }
.office-source-grid article { min-height: 250px; }
.office-source-grid h3 { margin: 0 0 25px; color: #111; font: 400 24px/1.25 "Oswald", sans-serif; }
.office-source-grid p { margin: 0 0 13px; font-weight: 300; line-height: 1.75; }
.office-source-grid p span { display: inline-block; min-width: 44px; color: #777; font-size: 13px; }
.office-source-grid a { display: block; color: var(--accent); font-weight: 300; line-height: 1.8; }
.office-source-grid .contact-label { margin-top: 24px; margin-bottom: 0; }
.policy-source { padding: 70px 0 100px; }
.policy-source > .content-width { max-width: 1140px; }
.policy-source p { margin: 0 auto 40px; max-width: 1140px; font-weight: 300; line-height: 1.8; }
.policy-source h3 { margin: 0 0 24px; color: #111; font: 400 28px/1.25 "Oswald", sans-serif; }
.certificates-source { padding: 80px 0; }
.certificates-source > .content-width > p { width: min(680px, calc(100% - 40px)); margin: 0 auto 50px; font-weight: 300; }
.certificate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-inline: -10px; }
.certificate-card { text-align: center; }
.certificate-card { min-height: 140.390625px; margin-bottom: 50px; padding-inline: 10px; }
.certificate-card img { display: none; }
.certificate-card h3 { min-height: 47px; margin: 0 0 18px; color: #111; font: 300 20px/1.2 "Oswald", sans-serif; }
.certificate-card .blue-button { min-width: 140px; height: 42px; border-radius: 22px; font-size: 13px; }

.detail-page { background: #fff; padding-bottom: 0; }
.product-detail { display: grid; grid-template-columns: 58% 39%; justify-content: space-between; gap: 0; padding: 40px 0 0; margin-inline: -10px; }
.gallery { width: 100%; }
.gallery-stage { width: 100%; aspect-ratio: 570/360; background: #111; }
.gallery-stage { overflow: hidden; }
.gallery-stage img { display: block; width: 100%; height: 100%; border: 0; object-fit: cover; animation: gallery-image-in .3s ease both; }
.thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 10px; margin-bottom: 30px; }
.thumbnails button { position: relative; min-width: 0; border: 2px solid transparent; padding: 0; background: #fff; cursor: pointer; opacity: .6; transition: border-color .5s, opacity .5s; }.thumbnails button:hover, .thumbnails button.active { border-color: var(--accent); opacity: 1; }
.thumbnails img { width: 100%; height: 78px; object-fit: cover; }
.detail-copy { padding-left: 10px; }
.detail-copy h1 { color: #090909; font: 400 32px/1 "Oswald", sans-serif; margin-bottom: 30px; }
.detail-copy p { line-height: 1.8; }
.properties { background: #fff; margin: 50px 0; padding: 0; text-align: center; }
.properties h2, .spec-section h2, .applications > h2, .related > h2 { color: #111; font: 500 24px/1.2 "Oswald", sans-serif; text-align: center; margin-bottom: 10px; }
.properties > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; min-height: 196px; }.properties article { padding: 20px 55px; min-height: 196px; border-right: 1px solid #ddd; }.properties article:last-child { border-right: 0; }.properties b { color: #111; font: 400 22px/1.2 "Oswald", sans-serif; }
.spec-section { padding: 110px 0 80px; }
.applications { padding: 80px 0; }
.related { margin-inline: calc((1140px - 100vw)/2); padding: 90px max(20px, calc((100vw - 1140px)/2)) 40px; background: var(--surface); }
.spec-tabs { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); }
.spec-tabs button { flex: 1 1 0; min-width: 0; min-height: 93.59375px; border: 0; border-right: 1px solid #fff; padding: 18px 10px; background: #e0e0e0; color: var(--ink-soft); font-family: "Oswald", sans-serif; font-size: 16px; font-weight: 400; line-height: 28.8px; cursor: pointer; transition: background-color .2s linear, color .2s linear; }.spec-tabs button:last-child { border-right: 0; }.spec-tabs button.active { background: var(--accent); color: #fff; }
.spec-panel { display: none; padding-top: 60px; overflow-x: auto; }.spec-panel.active { display: block; }
.spec-panel h2, .spec-panel h3 { color: #111; font-family: "Oswald", sans-serif; font-weight: 400; }
.spec-panel img { max-width: 100%; height: auto; }
.spec-panel table { width: 100%; border-collapse: collapse; min-width: 680px; }.spec-panel th, .spec-panel td { border: 1px solid #e0e0e0; padding: 10px; text-align: left; vertical-align: top; font-weight: 200; }.spec-panel thead th, .spec-panel thead td { background: var(--accent); color: #fff; }
.standard-load { background: var(--accent-dark); height: 40px; color: #fff; text-align: center; line-height: 40px; font-weight: 200; }
.spec-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 50px; border-left: 1px solid #e0e0e0; border-right: 1px solid #e0e0e0; }
.spec-wrap table { min-width: 800px; border-collapse: collapse; }
.spec-wrap table td { min-height: 40px; min-width: 100px; text-align: center; font-weight: 200; padding: 10px; box-sizing: border-box; background-clip: padding-box; position: relative; border: 0; }
.spec-wrap table td:not(:last-child) { border-right: 1px solid #e0e0e0; }
.spec-wrap table tr { border-bottom: 1px solid #e0e0e0; }
.spec-wrap .ts01 thead td, .spec-wrap .ts02 thead td, .spec-wrap .ts03 thead td { border-right: 1px solid #ff85a9; color: #fff; min-height: 40px; border-top: 0; line-height: 100%; }
.spec-wrap .ts01 thead tr.blue, .spec-wrap .ts02 thead tr.blue, .spec-wrap .ts03 thead tr.blue { background: var(--accent); }
.spec-wrap .ts01 .gray, .spec-wrap .ts02 .gray, .spec-wrap .ts03 .gray { background-color: #f9f9f9; }
.spec-wrap .ts01 .b-blue, .spec-wrap .ts02 .b-blue, .spec-wrap .ts03 .b-blue { background-color: var(--accent); color: #fff; }
.spec-wrap .ts01 .d-blue, .spec-wrap .ts02 .d-blue, .spec-wrap .ts03 .d-blue { background-color: var(--accent-dark); color: #fff; min-height: 40px; padding: 10px; text-align: center; font-weight: 200; }
.spec-wrap .ts02 td { border-left: 0; }
.spec-wrap .ts03 td { text-align: left; vertical-align: top; }
.spec-panel .spec-data-table { table-layout: auto; }
.spec-panel .spec-data-table th,
.spec-panel .spec-data-table td {
  text-align: center !important;
  vertical-align: middle !important;
  word-break: normal;
  overflow-wrap: normal;
}
.spec-panel .spec-data-table .compact-cell { white-space: nowrap; }
.spec-panel .spec-data-table thead td > p,
.spec-panel .spec-data-table thead th > p { margin: 0; }
.spec-panel .spec-data-table td:has(> p > img) { padding-block: 20px; }
.spec-panel .spec-data-table td > p:has(> img) { margin: 0; }
.spec-panel .spec-data-table td > p > img { margin-inline: auto; }
.spec-panel .spec-data-table td > p:has(> img) + p { margin: 12px 0 0; }
.spec-wrap .colsapn-2-style { padding: 0 !important; position: relative; }
.spec-wrap .colsapn-2-info { display: flex; align-items: stretch; min-height: 100%; }
.spec-wrap .colsapn-2-info::after { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: #e0e0e0; }
.spec-wrap .colsapn-2-info > div { width: 50% !important; padding: 10px; display: flex; align-items: center; justify-content: center; }
.chem-box { display: flex; flex-flow: row nowrap; align-items: stretch; }
.chem-box .wrap-R { flex: 0 0 auto; width: 20%; display: flex; flex-direction: column; justify-content: center; padding: 20px 8px; background-color: #ff85a9; color: #fff; font-family: "Open Sans", sans-serif; font-weight: 200; text-align: center; box-sizing: border-box; }
.chem-box .wrap-L { flex: 1 1 auto; width: 80%; min-width: 0; display: flex; flex-direction: column; }
.chem-box .spec-wrap { margin-bottom: 0 !important; flex: 1 1 auto; }
.chem-box .wrap-L > table { width: 100%; }
@keyframes gallery-image-in { from { opacity: .45; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }
@keyframes fade-in-down { from { opacity: 0; transform: translate3d(0,-32px,0); } to { opacity: 1; transform: translate3d(0,0,0); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
.spec-wrap .table-divider { padding: 0 !important; position: relative; }
.spec-wrap .table-divider:has(> p:nth-child(2)) {
  min-width: 160px !important;
  height: 96px !important;
  background: linear-gradient(to top right, var(--accent) calc(50% - 1px), #ff85a9 50%, var(--accent) calc(50% + 1px));
}
.spec-wrap .table-divider > p { position: absolute; z-index: 1; display: block; max-width: calc(100% - 16px); padding: 0; margin: 0; line-height: 1.15; }
.spec-wrap .table-divider > p:first-child { top: 8px; right: 8px; text-align: right !important; }
.spec-wrap .table-divider > p:nth-child(2) { bottom: 8px; left: 8px; text-align: left !important; }
@media (min-width: 768px) {
  .standard-load { height: 60px; line-height: 60px; }
}
@media (min-width: 576px) and (max-width: 991px) {
  .chem-box .wrap-R { width: 30%; }
  .chem-box .wrap-L { width: 70%; }
}
@media (min-width: 992px) {
  .spec-wrap table td { min-height: 60px; }
  .spec-wrap .ts01 thead td, .spec-wrap .ts02 thead td, .spec-wrap .ts03 thead td { height: 60px; }
}
@media (min-width: 1200px) {
  .chem-box .wrap-R { width: 190px; }
  .chem-box .wrap-L { width: 950px; }
  .spec-wrap .ts02 td { min-width: 190px; }
  .spec-wrap .ts03 td { padding: 20px 30px; }
}
.applications > h2 { margin-bottom: 60px; font-size: 32px; line-height: 38.4px; font-weight: 400; }.applications > div { display: flex; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: -15px; }
.applications article { flex: 0 0 33.333333%; scroll-snap-align: start; padding: 0 15px 25px; }.applications article img { width: 100%; aspect-ratio: 360/240; object-fit: cover; margin-bottom: 30px; }.applications h3 { font: 400 22px/1.2 "Oswald", sans-serif; margin-bottom: 20px; }.applications article p { font-weight: 300; line-height: 1.75; }
.quote-link { width: 160px; height: 42px; margin: 35px auto 0; border-radius: 5px; display: flex; align-items: center; justify-content: center; background: var(--signal); color: #fff; font-size: 14px; font-weight: 700; transition: background-color .2s; }.quote-link:hover { background: var(--signal-dark); }
.related > h2 { margin-bottom: 20px; }.related > div { display: flex; flex-wrap: wrap; overflow: hidden; margin-inline: -15px; }.related > div > a { flex: 0 0 25%; padding: 0 15px; margin-bottom: 40px; }.related img { width: 100%; aspect-ratio: 570/360; object-fit: cover; }.related h3 { text-align: center; font: 200 18px/1.3 "Open Sans", sans-serif; margin-top: 20px; }

.side-contact { position: fixed; right: 16px; top: 50%; z-index: 45; width: 60px; height: 60px; transform: translateY(-50%); background: var(--signal); display: grid; place-items: center; transition: background-color .2s; }.side-contact:hover { background: var(--signal-dark); }.side-contact img { width: 30px; }
.site-footer { min-height: 104px; padding: 0; border-top: 0; background: var(--ink); color: #fff; }
.footer-inner { width: min(1140px, calc(100% - 40px)); min-height: 102px; margin: auto; display: grid; grid-template-columns: minmax(250px, 1fr) auto minmax(360px, 1fr); align-items: center; gap: 30px; }
.footer-company { font-size: 13px; font-weight: 600; white-space: nowrap; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 24px; white-space: nowrap; font-size: 13px; }
.footer-links a { opacity: .78; transition: color .2s, opacity .2s; }
.footer-links a:hover { color: var(--accent); opacity: 1; }
.footer-copyright { margin: 0; justify-self: end; text-align: right; font-size: 12px; line-height: 1.5; opacity: .58; }
.search-panel { position: fixed; inset: 0; z-index: 120; background: rgba(255,255,255,.98); padding: 14vh max(20px, calc((100% - 760px)/2)); }.search-panel.show { display: block; }.search-panel label { color: #111; display: block; font: 400 40px/1.2 "Oswald", sans-serif; margin-bottom: 25px; }.search-panel input { width: 100%; height: 55px; border: 0; border-bottom: 2px solid #111; outline: 0; font-size: 20px; }.search-close { position: absolute; top: 25px; right: 30px; border: 0; background: none; font-size: 40px; cursor: pointer; }.search-results a { padding: 12px 0; display: flex; justify-content: space-between; border-bottom: 1px solid #ddd; }.search-results span { color: #999; }

@media (max-width: 1099px) {
  .site-header { height: 64px; position: relative; top: auto; }.site-header::before { display: none; }.header-inner { top: 0; height: 100%; justify-content: center; width: 100%; }.brand, .brand img { width: 230px; }.brand { flex: 0 0 230px; }
  .desktop-nav, .header-tools { display: none; }.menu-button { display: flex; position: absolute; left: 0; top: 0; width: 64px; height: 64px; border: 0; background: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; }.menu-button span { width: 24px; height: 2px; background: var(--accent); }
  .mobile-search-button { display: block; position: absolute; right: 0; top: 50%; width: 50px; height: 50px; transform: translateY(-50%); border: 0; background: none; cursor: pointer; }.mobile-search-button span { position: absolute; width: 18px; height: 18px; border: 2px solid var(--accent); border-radius: 50%; left: 14px; top: 13px; }.mobile-search-button span::after { content: ""; position: absolute; right: -6px; bottom: -3px; width: 8px; height: 2px; background: var(--accent); transform: rotate(48deg); }
  .mobile-drawer { display: block; position: fixed; z-index: 100; top: 0; left: -280px; bottom: 0; width: 280px; background: var(--surface); transition: left .25s; }.mobile-drawer.show { left: 0; }.drawer-top { height: 44px; background: var(--accent); color: #fff; display: flex; align-items: center; gap: 24px; padding: 0 22px; }.drawer-close { display: none; position: absolute; left: 280px; top: 0; width: 44px; height: 44px; border: 0; background: transparent; color: #111; font-size: 34px; }.mobile-drawer.show .drawer-close { display: block; }.drawer-links a { min-height: 42px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; padding: 0 22px; font: 400 16px "Oswald", sans-serif; }.drawer-links b { color: var(--accent); font-size: 28px; font-weight: 300; }.page-mask { position: fixed; inset: 0; z-index: 90; background: rgba(31,42,42,.7); }.page-mask.show { display: block; }
  .category-strip { overflow-x: auto; grid-template-columns: repeat(8, 125px); height: 105px; }.mega-menu { display: none; }
  .about-tabs a { margin-inline: 20px; }.about-banner h1 { padding-top: 55px; }
  .certificate-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr auto; gap: 8px 24px; padding: 18px 0; }
  .footer-copyright { grid-column: 1 / -1; justify-self: start; text-align: left; }
}

@media (min-width: 1100px) {
  .home-route .site-header { position: fixed; inset: 0 auto auto 0; width: 100%; }
  .home-slider { height: 80vh; min-height: 0; }
  .home-slide .hero-inner { transform: translateY(39px); }
  .home-product-panels { min-height: 80vh; margin-top: -120px; }
  .home-product-panel { min-height: 80vh; }
  .about-section.alt, .related { margin-inline: calc((1156px - 100vw)/2); }
  .about-section.alt, .related { padding-inline: max(20px, calc((100vw - 1156px)/2)); }
}

@media (max-width: 767px) {
  body { font-size: 14px; }.content-width { width: calc(100% - 30px); }.site-header { height: 40px; }.header-inner { height: 40px; }.brand, .brand img { width: 170px; }.brand { flex: 0 0 170px; }.menu-button { width: 55px; height: 40px; }.menu-button span { width: 21px; }.breadcrumbs { height: 35px; min-height: 35px; padding: 10px 0 6px; white-space: nowrap; overflow-x: auto; }.breadcrumbs a::after { margin: 0 10px; }
  .home-slider { width: 100%; height: auto; min-height: 0; aspect-ratio: 4/5; }.hero-inner { width: 88%; align-items: flex-end; padding-bottom: 95px; }.hero-title-wrap { width: 300px; padding: 5px 5px 5px 15px; }.home-slide h1 { width: 100%; padding: 0; font-size: 22px; line-height: 1.2; }.desktop-hero-text { display: none; transform: none; }.mobile-hero-text { display: inline; background: rgba(217,0,59,.93); padding: 1px 0; box-shadow: -8px 0 0 rgba(217,0,59,.93); box-decoration-break: clone; -webkit-box-decoration-break: clone; }.home-category-strip { position: relative; z-index: 8; display: block; height: 0; overflow: visible; }.home-category-strip button { display: none; }.home-category-select { position: absolute; top: 20px; left: 6%; display: block; width: 88%; height: 40px; padding: 0 5px; border: 1px solid #c8c8c8; border-radius: 4px; background: #fff; color: var(--ink-soft); font-size: 16px; }.category-strip span { width: 34px; height: 34px; }.category-strip span img { width: 32px; height: 32px; }
  .home-product-panels, .home-product-panel { min-height: 514.609375px; }.home-product-panel { padding: 100px 0 50px; }.home-product-info { width: 80%; }.home-product-info > p { margin-bottom: 0; padding-bottom: 50px; font-weight: 200; line-height: 1.65; }.home-product-info h2 { font-size: 24px; margin-bottom: 20px; }.home-product-info > div { flex-direction: column; gap: 10px; }.home-product-info a { font-size: 16px; line-height: 24px; align-self: stretch; }
  .home-stainless-products { padding: 38px 0 54px; }.home-stainless-products h2 { margin-bottom: 24px; font-size: 28px; }.home-stainless-grid { grid-template-columns: 1fr; gap: 28px; }.home-stainless-card h3 { margin-top: 10px; font-size: 18px; }
  .products-overview > .content-width, .category-page > .content-width { width: 88%; }.products-overview { min-height: 100vh; }.overview-title { margin: 20px 0; font-size: 22px; line-height: 26.4px; }.overview-grid { grid-template-columns: 1fr; gap: 0; padding: 0; margin-inline: 0; }.overview-card { width: 100%; margin-bottom: 10px; padding-inline: 0; }.overview-card:nth-child(2) { aspect-ratio: 8/5; }.overview-card-copy img { width: 84px; height: 84px; margin-bottom: 8px; }.overview-card-copy b { font-size: 18px; line-height: 24px; }
  .category-page { padding-bottom: 0; }.page-title { font-size: 22px; line-height: 26.4px; margin: 20px 0; }.product-grid { grid-template-columns: 1fr; gap: 0; margin-inline: 0; }.product-card { margin-bottom: 0; padding-inline: 0; }.product-card img { aspect-ratio: 570/360; }.product-card h2 { font-size: 18px; line-height: 21.6px; margin-top: 20px; }
  .about-banner { height: 216px; }.about-banner h1 { font-size: 28px; line-height: 33.6px; padding-top: 92px; }.about-tabs { display: none; }.about-content { padding-top: 10px; }.about-content-full { padding-top: 0; }.about-story { padding: 30px 0; }.about-story-inner { width: 100%; padding-inline: 20px; }.story-block + .story-block { margin-top: 28.8px; }.story-block h2 { margin-bottom: 15px; font-size: 22px; line-height: 26.4px; }.story-block p { width: 90%; font-size: 16px; line-height: 24px; }.story-graphic { max-width: 420px; margin-top: 20px; }.about-ending { min-height: 300px; }.about-section { padding: 40px 0; }.about-section h2 { font-size: 28px; }.split { grid-template-columns: 1fr; gap: 25px; }.value-grid, .company-grid, .office-grid { grid-template-columns: 1fr; }.certificate-list { grid-template-columns: 1fr; }
  .vision-intro { padding: 30px 0; }.vision-values-band { min-height: 0; padding: 30px 0; }.vision-intro h2, .vision-values-band h2, .certificates-source h2 { margin-bottom: 15px; font-size: 22px; }.vision-intro p, .vision-values-band .vision-lead { width: 90%; line-height: 1.6; }.vision-values-band .vision-lead { padding-bottom: 25px; }.core-values-grid { grid-template-columns: 1fr; gap: 25px; }.core-values-grid article h3 { margin-bottom: 10px; font-size: 20px; }.core-values-grid article p { line-height: 1.65; }
  .affiliate-list { padding: 30px 0 10px; }.affiliate-row { grid-template-columns: 1fr; margin-bottom: 35px; }.affiliate-lead { padding: 0 0 20px; }.affiliate-details { border-left: 0; border-top: 1px solid #ddd; padding: 20px 0 0; }.affiliate-lead h3, .affiliate-details h4 { font-size: 20px; }.affiliate-lead p, .affiliate-details p { line-height: 1.65; }
  .office-source { padding: 30px 0 50px; }.office-source-grid { grid-template-columns: 1fr; gap: 35px; }.office-source-grid article { min-height: 0; }.office-source-grid h3 { margin-bottom: 15px; font-size: 20px; }
  .policy-source { padding: 30px 0 50px; }.policy-source p { margin-bottom: 30px; line-height: 1.65; }.policy-source h3 { margin-bottom: 15px; font-size: 22px; }
  .certificates-source { padding: 30px 0; }.certificates-source > .content-width > p { width: 90%; margin-bottom: 20px; font-size: 16px; line-height: 24px; }.certificate-grid { grid-template-columns: 1fr; gap: 0; }.certificate-card { min-height: 0; margin-bottom: 50px; }.certificate-card img { height: auto; max-height: 420px; }.certificate-card h3 { min-height: 0; margin-bottom: 46px; font-size: 16px; line-height: 24px; }.certificate-card .blue-button { height: 34px; font-size: 16px; line-height: 34px; }
  .detail-page { padding-bottom: 177px; font-size: 16px; line-height: 24px; }.detail-page > .content-width { width: 88%; }.product-detail { grid-template-columns: 1fr; gap: 0; padding: 19px 0 32px; margin-inline: 0; }.gallery-stage { width: calc(100% - 10px); margin-inline: auto; }.detail-copy { padding-left: 0; }.detail-copy h1 { font-size: 24px; line-height: 24px; }.detail-copy p { line-height: 24px; }.thumbnails { display: flex; overflow-x: auto; width: 291px; height: 55px; margin: 10px auto 30px; }.thumbnails button { flex: 0 0 87px; }.thumbnails img { height: 55px; }.properties { margin: 50px -30px; padding: 0 60px; }.properties h2 { font-size: 18px; line-height: 24px; }.properties > div { display: flex; height: 196px; min-height: 196px; overflow-x: auto; scroll-snap-type: x mandatory; }.properties article { flex: 0 0 100%; height: 196px; min-height: 196px; overflow: hidden; border-right: 0; padding: 20px 15px; scroll-snap-align: start; }.spec-section { padding: 80px 10px 60px; margin-inline: -10px; }.spec-tabs { flex-wrap: nowrap; overflow-x: auto; }.spec-tabs button { flex: 0 0 calc(100% / 3); min-width: calc(100% / 3); min-height: 108px; white-space: normal; font-size: 16px; line-height: 24px; }.spec-panel { padding-top: 30px; }.spec-panel table { min-width: 800px; }.applications { margin-inline: -30px; padding: 80px 56.4px 60px; }.applications > h2 { margin-bottom: 40px; font-size: 24px; line-height: 28.8px; }.applications > div { margin-inline: -15px; }.applications article { flex-basis: calc(100% + 30px); }.applications article img { aspect-ratio: 3/2; margin-bottom: 20px; }.applications h3 { margin-bottom: 10px; }.applications article p { line-height: 24px; }.quote-link { width: 150px; height: 40px; margin-top: 30px; }.related { margin-inline: -22.4375px; padding: 37.3984375px 22.4375px; }.related > h2 { font-size: 18px; line-height: 24px; }.related > div { display: block; margin-inline: 0; overflow: visible; }.related > div > a { display: block; width: 100%; min-height: 45.6px; margin-bottom: 30px; padding: 0 15px; }.related img { display: none; }.related h3 { font-size: 18px; line-height: 24px; margin: 0; padding-top: 18px; }
  .side-contact { width: 40px; height: 40px; right: 15px; }.side-contact img { width: 22px; }.site-footer { min-height: 0; }.footer-inner { width: 90%; min-height: 0; grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }.footer-company { white-space: normal; font-size: 12px; }.footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 6px 18px; white-space: normal; font-size: 13px; }.footer-copyright { grid-column: auto; font-size: 11px; opacity: .5; }.search-panel label { font-size: 30px; }
}
