:root {
  --ink: #101827;
  --ink-soft: #2e3b4d;
  --paper: #f3f5f2;
  --white: #ffffff;
  --line: rgba(16, 24, 39, 0.16);
  --lime: #c9f36b;
  --blue: #0874b9;
  --muted: #667181;
  --radius: 16px;
  --display: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --body: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); font-size: 15px; -webkit-font-smoothing: antialiased; }
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.section-pad { padding-left: clamp(24px, 5vw, 88px); padding-right: clamp(24px, 5vw, 88px); }

.site-header { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 0 clamp(24px, 5vw, 88px); background: var(--paper); border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 190px; }
.brand-symbol { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(16,24,39,.12); border-radius: 50%; background: #ffffff; box-shadow: 0 4px 12px rgba(16,24,39,.1); }
.brand-symbol img { width: 100%; max-width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: grid; gap: 2px; font-family: var(--display); letter-spacing: .04em; }
.brand-copy strong { font-size: 15px; letter-spacing: .14em; }
.brand-copy small { font-size: 8px; letter-spacing: .2em; opacity: .6; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 48px); margin-left: auto; margin-right: clamp(48px, 5vw, 72px); font-size: 13px; font-weight: 700; }
.desktop-nav a, .header-mail { position: relative; }
.desktop-nav a::after, .header-mail::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover::after, .header-mail:hover::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav a.is-current::after { transform: scaleX(1); }
.nav-product { align-self: stretch; display: flex; align-items: center; }
.product-nav-link { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.nav-chevron { color: var(--blue); font-size: 14px; transition: transform .25s ease; }
.nav-product.is-open .nav-chevron { transform: rotate(180deg); }
.product-mega-menu { position: absolute; top: calc(100% + 1px); left: max(24px, 5vw); right: max(24px, 5vw); display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 32px; padding: 27px 30px 31px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(16,24,39,.12); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(9px); transition: opacity .22s ease, transform .22s ease, visibility .22s ease; }
.nav-product.is-open .product-mega-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.product-menu-intro { display: grid; align-content: start; gap: 13px; padding: 4px 20px 0 0; border-right: 1px solid var(--line); }
.product-menu-intro span, .product-menu-intro small { color: var(--muted); font: 900 9px/1.2 var(--display); letter-spacing: .14em; text-transform: uppercase; }
.product-menu-intro strong { font: 800 25px/1.03 var(--display); letter-spacing: -.045em; }
.product-menu-intro small { margin-top: 10px; line-height: 1.45; letter-spacing: .08em; }
.product-menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px 25px; }
.product-menu-category { min-width: 0; padding: 10px 0 13px; border-top: 1px solid var(--line); }
.product-menu-category > a { display: block; }
.product-menu-category a::after { display: none; }
.product-menu-category-title { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--ink); font: 800 14px/1.1 var(--display); letter-spacing: -.02em; }
.product-menu-category-title > span:first-child { color: var(--ink); font-size: 14px; font-weight: 800; }
.product-menu-category-title > span:last-child { color: var(--blue); font-size: 17px; font-weight: 400; }
.product-menu-category p { margin: 7px 0 10px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.product-menu-reps { display: grid; gap: 5px; }
.product-menu-rep { display: grid; grid-template-columns: 31px minmax(0, 1fr); align-items: center; gap: 8px; min-width: 0; color: var(--muted); font-size: 10px; line-height: 1.15; }
.product-menu-rep img { width: 31px; height: 31px; object-fit: contain; background: #eef1f2; }
.product-menu-rep span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-mail { padding: 12px 0; font-size: 13px; font-weight: 800; }
.header-mail span, .button span, .text-link span { display: inline-block; margin-left: 8px; transition: transform .25s ease; }
.header-mail:hover span, .button:hover span, .text-link:hover span { transform: translate(3px, -3px); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; padding: 0; }
.menu-toggle span:not(.sr-only) { display: block; width: 16px; height: 1px; background: var(--ink); margin: 4px auto; transition: transform .25s ease; }
.mobile-menu { display: none; }

.hero { min-height: 650px; display: grid; grid-template-columns: minmax(0, 760px); align-items: center; padding-top: clamp(64px, 8vw, 104px); padding-bottom: clamp(64px, 8vw, 104px); position: relative; isolation: isolate; overflow: hidden; background: #dfe5e2 url("assets/video/hero-poster.webp") center / cover no-repeat; }
.hero-video { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; }
.hero-copy { position: relative; z-index: 1; width: min(100%, 750px); padding: 30px 34px 31px; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; background: linear-gradient(105deg, rgba(7,16,25,.78) 0%, rgba(7,16,25,.66) 63%, rgba(7,16,25,.38) 100%); -webkit-backdrop-filter: blur(8px) saturate(.82); backdrop-filter: blur(8px) saturate(.82); box-shadow: 0 18px 44px rgba(7,16,25,.22), inset 0 1px 0 rgba(255,255,255,.1); color: #f8fbff; text-shadow: 0 2px 5px rgba(7,16,25,.94); }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 20px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase; }
.eyebrow-line { width: 26px; height: 2px; flex: 0 0 auto; background: var(--lime); }
.hero h1, .specs-heading h2, .gallery-heading h2, .contact-copy h2, .production-details h2, .company h2 { max-width: 760px; margin: 0; font: 800 clamp(30px, 2.7vw, 42px)/1.02 var(--display); letter-spacing: -.035em; }
.hero h1 { max-width: 700px; color: #ffffff; font-size: clamp(30px, 2.9vw, 42px); -webkit-text-stroke: .3px rgba(7,16,25,.7); }
.hero h1 em, .specs-heading h2 em, .gallery-heading h2 em, .contact-copy h2 em, .company h2 em { color: var(--blue); font-style: normal; }
.hero-features { max-width: 650px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 26px; margin: 27px 0 0; padding: 0; list-style: none; }
.hero-features li { padding: 8px 10px 8px 15px; border-left: 3px solid var(--lime); color: #ffffff; font-size: 14px; font-weight: 800; line-height: 1.4; text-shadow: 0 2px 4px rgba(7,16,25,.9); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 51px; padding: 0 21px; border: 1px solid transparent; border-radius: 999px; font-size: 12px; font-weight: 900; letter-spacing: .03em; white-space: nowrap; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--blue); }
.text-link { padding: 10px 0; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 900; }
.hero-proof { display: flex; align-items: center; gap: 15px; margin-top: 50px; }
.hero-proof > span { font: 800 42px/.8 var(--display); letter-spacing: -.06em; }
.hero-proof p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.hero-proof strong { color: var(--ink); }
.hero .eyebrow { color: #ffffff; }
.hero h1 em { color: var(--lime); }
.hero .button-dark { color: var(--ink); background: var(--lime); border-color: rgba(255,255,255,.72); box-shadow: 0 8px 24px rgba(7,16,25,.28); text-shadow: none; }
.hero .button-dark:hover { color: var(--ink); background: #ddff94; }
.hero .text-link { padding: 10px 14px; border: 1px solid rgba(255,255,255,.58); border-radius: 999px; background: rgba(7,16,25,.35); color: #ffffff; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.hero .text-link:hover { background: rgba(7,16,25,.62); }
.hero-proof > span { color: #ffffff; }
.hero-proof p { color: rgba(255,255,255,.86); }
.hero-proof strong { color: #ffffff; }
.hero-service-promise { position: absolute; z-index: 2; top: 12%; right: clamp(42px, 7vw, 112px); width: clamp(350px, 26vw, 400px); overflow: hidden; padding: 20px 24px 21px; border: 1px solid rgba(255,255,255,.3); border-radius: 14px; background: rgba(7,16,25,.9); box-shadow: 0 16px 42px rgba(7,16,25,.32), inset 0 1px 0 rgba(255,255,255,.11); color: #ffffff; text-transform: uppercase; isolation: isolate; will-change: transform; animation: service-promise-float 7.6s cubic-bezier(.45,.05,.55,.95) infinite; }
.hero-service-promise::after { content: ""; position: absolute; z-index: -1; inset: 0; width: 45%; background: linear-gradient(105deg, transparent, rgba(195,247,98,.2), transparent); transform: translateX(-180%); animation: service-promise-sheen 4.4s cubic-bezier(.16,1,.3,1) infinite; pointer-events: none; }
.hero-service-promise span, .hero-service-promise strong { position: relative; z-index: 1; display: block; white-space: nowrap; }
.hero-service-promise span { color: #ffffff; font: 850 clamp(14px, 1.05vw, 16px)/1.25 var(--display); letter-spacing: .04em; }
.hero-service-promise strong { margin-top: 9px; color: var(--lime); font: 900 clamp(23px, 1.85vw, 29px)/1 var(--display); letter-spacing: -.035em; }
@keyframes service-promise-float { 0%, 100% { transform: translate3d(0,0,0) rotate(0); } 23% { transform: translate3d(15px,-10px,0) rotate(.35deg); } 51% { transform: translate3d(-7px,-15px,0) rotate(-.3deg); } 77% { transform: translate3d(-16px,8px,0) rotate(.24deg); } }
@keyframes service-promise-sheen { 0%, 58% { transform: translateX(-180%); opacity: 0; } 68% { opacity: 1; } 88%, 100% { transform: translateX(360%); opacity: 0; } }
.hero-visual { min-width: 0; position: relative; }
.visual-frame { min-height: 500px; position: relative; padding: 21px 22px 17px; background: rgba(233,237,240,.8); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); overflow: hidden; }
.visual-frame::before { content: ""; position: absolute; width: 380px; height: 380px; right: -100px; top: -120px; border: 1px solid rgba(19,132,214,.28); border-radius: 50%; box-shadow: 0 0 0 30px rgba(19,132,214,.06), 0 0 0 60px rgba(19,132,214,.04); }
.visual-frame::after { content: ""; position: absolute; width: 17px; height: 17px; right: 26px; bottom: 25px; border-radius: 50%; background: var(--lime); }
.visual-topline, .visual-caption { position: relative; z-index: 2; display: flex; justify-content: space-between; color: rgba(16,24,39,.6); font: 10px/1 var(--display); letter-spacing: .14em; text-transform: uppercase; }
.visual-frame img { width: 100%; height: 420px; object-fit: contain; position: relative; z-index: 1; mix-blend-mode: multiply; filter: saturate(1.1) contrast(1.02); }
.visual-stamp { position: absolute; z-index: 3; left: 25px; bottom: 54px; width: 104px; height: 104px; display: grid; align-content: center; padding-left: 17px; background: var(--lime); color: var(--ink); border-radius: 50%; transform: rotate(-8deg); font-family: var(--display); }
.visual-stamp span, .visual-stamp strong { display: block; font-size: 20px; font-weight: 900; line-height: .9; letter-spacing: -.08em; }
.visual-stamp small { display: block; margin-top: 8px; font: 700 8px/1 var(--display); letter-spacing: .16em; }
.visual-caption { margin-top: 3px; }
.visual-side-note { position: absolute; right: -13px; top: 34%; color: rgba(16,24,39,.27); font: 800 12px/1.1 var(--display); letter-spacing: .12em; text-align: left; }

.ticker { overflow: hidden; background: var(--blue); color: var(--white); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 18px 0; font: 900 15px/1 var(--display); letter-spacing: .1em; animation: ticker 28s linear infinite; }
.ticker-track i { color: var(--lime); font-style: normal; font-size: 22px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.trust-row { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 25px; padding-top: 64px; padding-bottom: 68px; border-bottom: 1px solid var(--line); }
.trust-intro { display: grid; gap: 10px; }
.trust-intro span { color: var(--muted); font: 900 10px/1 var(--display); letter-spacing: .15em; }
.trust-intro strong { font: 800 24px/1.02 var(--display); letter-spacing: -.045em; }
.trust-item { display: grid; align-content: start; gap: 8px; padding-left: 18px; border-left: 1px solid var(--line); }
.trust-item b { color: var(--blue); font: 900 12px/1 var(--display); }
.trust-item span { font: 800 17px/1.15 var(--display); letter-spacing: -.025em; }
.trust-item small { color: var(--muted); font-size: 12px; line-height: 1.5; }

.about-hero { min-height: 680px; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(44px, 7vw, 112px); align-items: center; padding-top: clamp(82px, 9vw, 122px); padding-bottom: clamp(82px, 9vw, 122px); border-bottom: 1px solid var(--line); }
.about-hero-copy { max-width: 650px; }
.about-hero h1 { max-width: 720px; margin: 0; font: 800 clamp(40px, 4.8vw, 70px)/.98 var(--display); letter-spacing: -.055em; }
.about-hero h1 em, .regional-support h2 em, .factory-proof h2 em { color: var(--blue); font-style: normal; }
.about-hero-copy > p:not(.eyebrow) { max-width: 610px; margin: 27px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.about-hero-copy > p + p:not(.eyebrow) { margin-top: 14px; }
.about-hero-media { margin: 0; overflow: hidden; border-radius: var(--radius); background: #e9edf0; }
.about-hero-media img { width: 100%; aspect-ratio: 1.12; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.about-hero-media:hover img { transform: scale(1.025); }
.about-hero-media figcaption { display: flex; justify-content: space-between; gap: 15px; padding: 14px 16px 15px; color: var(--ink-soft); font: 900 10px/1.2 var(--display); letter-spacing: .1em; text-transform: uppercase; }

.regional-support { padding-top: clamp(88px, 10vw, 132px); padding-bottom: clamp(88px, 10vw, 132px); background: var(--ink); color: var(--white); }
.regional-support-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(35px, 7vw, 110px); align-items: end; }
.regional-support .eyebrow { grid-column: 1 / -1; margin-bottom: -4px; color: rgba(255,255,255,.56); }
.regional-support h2, .factory-proof h2 { max-width: 760px; margin: 0; font: 800 clamp(32px, 3.8vw, 54px)/1 var(--display); letter-spacing: -.045em; }
.regional-support-heading > p:last-child { max-width: 550px; margin: 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.75; }
.regional-support-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: clamp(54px, 7vw, 86px); border-top: 1px solid rgba(255,255,255,.2); }
.regional-support-grid article { min-width: 0; padding: 27px clamp(22px, 3vw, 44px) 4px 0; }
.regional-support-grid article + article { padding-left: clamp(22px, 3vw, 44px); border-left: 1px solid rgba(255,255,255,.2); }
.regional-support-grid span { color: var(--lime); font: 900 11px/1 var(--display); letter-spacing: .1em; }
.regional-support-grid h3 { margin: 18px 0 13px; font: 800 clamp(21px, 2vw, 28px)/1.05 var(--display); letter-spacing: -.035em; }
.regional-support-grid p { max-width: 410px; margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.68; }

.factory-proof { padding-top: clamp(88px, 10vw, 132px); padding-bottom: clamp(88px, 10vw, 132px); border-bottom: 1px solid var(--line); }
.factory-proof-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 45px; align-items: start; }
.factory-proof-heading .eyebrow { margin-top: 8px; }
.factory-proof-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 6vw, 88px); align-items: center; margin-top: clamp(46px, 6vw, 76px); }
.factory-proof-image { margin: 0; overflow: hidden; border-radius: var(--radius); background: #e9edf0; }
.factory-proof-image img { width: 100%; aspect-ratio: 1.34; object-fit: cover; }
.factory-checklist { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.factory-checklist li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 16px; align-items: center; min-height: 62px; border-bottom: 1px solid var(--line); }
.factory-checklist span { color: var(--blue); font: 900 10px/1 var(--display); letter-spacing: .08em; }
.factory-checklist strong { font-size: 14px; line-height: 1.4; }

.factory-faq { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(42px, 8vw, 130px); padding-top: clamp(88px, 10vw, 132px); padding-bottom: clamp(88px, 10vw, 132px); border-bottom: 1px solid var(--line); }
.factory-faq-heading { align-self: start; position: sticky; top: 35px; }
.factory-faq h2 { max-width: 520px; margin: 0; font: 800 clamp(32px, 3.8vw, 52px)/1 var(--display); letter-spacing: -.045em; }
.factory-faq h2 em { color: var(--blue); font-style: normal; }
.factory-faq-list { border-top: 1px solid var(--ink); }
.factory-faq-list details { border-bottom: 1px solid var(--line); }
.factory-faq-list summary { position: relative; padding: 25px 50px 25px 0; cursor: pointer; font: 800 clamp(18px, 1.7vw, 23px)/1.22 var(--display); letter-spacing: -.025em; list-style: none; }
.factory-faq-list summary::-webkit-details-marker { display: none; }
.factory-faq-list summary::after { content: "+"; position: absolute; top: 23px; right: 4px; color: var(--blue); font: 400 25px/1 var(--display); }
.factory-faq-list details[open] summary::after { content: "−"; }
.factory-faq-list p { max-width: 760px; margin: -5px 50px 26px 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.company { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(40px, 7vw, 112px); align-items: center; padding-top: clamp(86px, 10vw, 132px); padding-bottom: clamp(86px, 10vw, 132px); border-bottom: 1px solid var(--line); }
.company-intro { max-width: 560px; }
.company-lede { max-width: 510px; margin: 27px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.company-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 39px; }
.company-facts div { display: grid; gap: 7px; padding-top: 15px; border-top: 1px solid var(--line); }
.company-facts strong { font: 800 22px/1 var(--display); letter-spacing: -.035em; }
.company-facts span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.company-image { margin: 0; background: #e9edf0; border-radius: var(--radius); overflow: hidden; }
.company-image img { width: 100%; aspect-ratio: 1.25; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.company-image:hover img { transform: scale(1.035); }
.company-image figcaption { display: flex; justify-content: space-between; gap: 15px; padding: 13px 16px 14px; color: var(--muted); font: 10px/1.2 var(--display); letter-spacing: .1em; text-transform: uppercase; }
.company-process { grid-column: 1 / -1; margin-top: 6px; padding-top: 30px; border-top: 1px solid var(--line); }
.process-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.process-heading > span { color: var(--muted); font: 900 11px/1 var(--display); letter-spacing: .13em; text-transform: uppercase; }
.process-heading h3 { margin: 0; font: 800 clamp(22px, 2.1vw, 29px)/1.05 var(--display); letter-spacing: -.03em; }
.process-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 27px; }
.process-card { display: grid; grid-template-columns: minmax(155px, .78fr) minmax(0, 1.22fr); min-height: 198px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease; }
.process-card:hover { transform: translateY(-5px); border-color: var(--blue); }
.process-card-image { min-height: 198px; overflow: hidden; background: #e9edf0; }
.process-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.process-card:hover .process-card-image img { transform: scale(1.055); }
.process-card-copy { display: flex; flex-direction: column; justify-content: center; padding: 23px; }
.process-card-copy > span { color: var(--blue); font: 900 10px/1 var(--display); letter-spacing: .12em; text-transform: uppercase; }
.process-card-copy h4 { margin: 10px 0 9px; font: 800 23px/1.05 var(--display); letter-spacing: -.035em; }
.process-card-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.production-details { padding-top: clamp(88px, 10vw, 132px); padding-bottom: clamp(88px, 10vw, 132px); background: var(--paper); border-bottom: 1px solid var(--line); }
.production-intro { max-width: 820px; }
.production-kicker { margin: 0 0 18px; color: var(--blue); font: 800 14px/1.2 var(--display); }
.production-details h2 { font-size: clamp(32px, 3.3vw, 48px); }
.production-details h2 em { color: var(--blue); font-style: normal; }
.production-intro > p:last-child { max-width: 690px; margin: 25px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.72; }
.production-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: clamp(46px, 6vw, 72px); }
.production-card { min-width: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease; }
.production-card:hover { transform: translateY(-5px); border-color: rgba(19,132,214,.52); box-shadow: 0 18px 42px rgba(16,24,39,.08); }
.production-photo { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: #e7ecef; }
.production-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.production-card:hover .production-photo img { transform: scale(1.035); }
.production-copy { position: relative; min-height: 196px; padding: 28px 76px 29px 29px; }
.production-number { position: absolute; top: 29px; right: 28px; color: var(--blue); font: 900 12px/1 var(--display); letter-spacing: .08em; }
.production-copy h3 { max-width: 430px; margin: 0; font: 800 clamp(21px, 2vw, 27px)/1.06 var(--display); letter-spacing: -.035em; }
.production-copy p { max-width: 520px; margin: 15px 0 0; color: var(--muted); font-size: 13px; line-height: 1.68; }

.product-catalog { padding-top: 106px; padding-bottom: 112px; border-bottom: 1px solid var(--line); }
.catalog-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 35px; align-items: end; }
.catalog-intro h1, .catalog-intro h2 { max-width: 760px; margin: 0; font: 800 clamp(30px, 3vw, 44px)/1.02 var(--display); letter-spacing: -.035em; }
.catalog-intro h1 em, .catalog-intro h2 em { color: var(--blue); font-style: normal; }
.catalog-intro-copy { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 25px; }
.catalog-intro-copy > p { max-width: 350px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.catalog-summary { display: grid; grid-template-columns: auto auto; align-items: end; gap: 8px; padding-left: 18px; border-left: 1px solid var(--line); }
.catalog-summary strong { color: var(--blue); font: 800 45px/.75 var(--display); letter-spacing: -.08em; }
.catalog-summary span { color: var(--muted); font: 900 9px/1.35 var(--display); letter-spacing: .1em; text-transform: uppercase; }
.catalog-toolbar { display: block; margin-top: 63px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.catalog-filters { width: 100%; display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); align-items: stretch; }
.catalog-filter { position: relative; min-width: 0; min-height: 66px; display: flex; align-items: center; padding: 14px 12px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); font: 800 13px/1.25 var(--display); letter-spacing: .005em; text-align: left; }
.catalog-filter:first-child { padding-left: 0; }
.catalog-filter:last-child { padding-right: 0; border-right: 0; }
.catalog-filter::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.catalog-filter:hover, .catalog-filter.is-active { color: var(--ink); }
.catalog-filter.is-active::after { transform: scaleX(1); }
.catalog-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.product-card { min-width: 0; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(19,132,214,.5); box-shadow: 0 16px 36px rgba(16,24,39,.08); }
.product-card.is-hidden { display: none; }
.product-card-image { width: 100%; aspect-ratio: 1.06; display: block; padding: 14px; border: 0; background: #edf0f1; overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-card-image img { transform: scale(1.045); }
.product-card-copy { display: flex; flex: 1; flex-direction: column; padding: 18px 18px 19px; }
.product-card-model { color: var(--blue); font: 900 10px/1 var(--display); letter-spacing: .13em; }
.product-card h3 { margin: 10px 0 9px; font: 800 18px/1.08 var(--display); letter-spacing: -.035em; }
.product-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.product-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 15px; }
.product-card-tags span, .product-modal-tags span { padding: 5px 7px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font: 900 8px/1 var(--display); letter-spacing: .07em; text-transform: uppercase; }
.product-card-open { align-self: flex-start; margin-top: auto; padding: 18px 0 2px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; color: var(--ink); font: 900 10px/1 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.product-card-open span { display: inline-block; margin-left: 8px; transition: transform .25s ease; }
.product-card-open:hover span { transform: translate(3px, -3px); }

.catalog-page-main { min-height: calc(100dvh - 112px); padding-top: clamp(74px, 8vw, 112px); }

.product-detail { padding-top: clamp(42px, 5vw, 72px); padding-bottom: clamp(78px, 8vw, 116px); }
.product-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 34px; color: var(--muted); font-size: 11px; font-weight: 800; }
.product-breadcrumb a { color: var(--ink); }
.product-breadcrumb a:hover { color: var(--blue); }
.product-breadcrumb span[aria-hidden] { opacity: .45; }
.product-detail-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); gap: clamp(42px, 6vw, 92px); align-items: start; }
.product-detail-media { min-width: 0; }
.product-detail-stage { min-height: 580px; display: grid; place-items: center; padding: clamp(24px, 4vw, 54px); background: #e9edef; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.product-detail-stage img { width: 100%; height: 500px; object-fit: contain; mix-blend-mode: multiply; }
.product-detail-gallery { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-top: 11px; }
.product-detail-gallery button { aspect-ratio: 1; padding: 7px; border: 1px solid transparent; border-radius: 10px; background: #e9edef; transition: border-color .2s ease, transform .2s ease; }
.product-detail-gallery button:hover, .product-detail-gallery button.is-active { border-color: var(--blue); }
.product-detail-gallery button:active { transform: scale(.98); }
.product-detail-gallery img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-detail-copy { position: sticky; top: 28px; padding-top: 26px; }
.product-detail-model { color: var(--blue); font: 900 11px/1 var(--display); letter-spacing: .14em; }
.product-detail-copy h1 { max-width: 620px; margin: 16px 0 24px; font: 800 clamp(32px, 3.2vw, 48px)/1.01 var(--display); letter-spacing: -.045em; }
.product-detail-description { max-width: 600px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.product-detail-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.product-detail-tags span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font: 900 9px/1 var(--display); letter-spacing: .07em; text-transform: uppercase; }
.product-detail-selection { max-width: 590px; display: grid; grid-template-columns: minmax(0, 1fr) max-content; gap: 24px; align-items: end; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.product-detail-actions { width: max-content; max-width: 100%; display: flex; flex-direction: column; align-items: center; gap: 11px; margin: 0; }
.product-detail-actions .button { flex: 0 0 auto; width: fit-content; max-width: 100%; min-height: 46px; padding-inline: 19px; }
.product-detail-actions .text-link { flex: 0 0 auto; display: inline-flex; align-items: center; min-height: 28px; padding: 0 2px; white-space: nowrap; }
.product-detail-note { min-width: 0; margin: 0; padding: 0; }
.product-detail-note strong { font: 800 14px/1.2 var(--display); }
.product-detail-note p { margin: 9px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.product-technical-copy { margin-top: clamp(62px, 7vw, 94px); padding-top: clamp(42px, 5vw, 64px); border-top: 1px solid var(--line); }
.product-technical-heading h2 { margin: 0; font: 800 clamp(28px, 3vw, 40px)/1.04 var(--display); letter-spacing: -.04em; }
.product-technical-heading p { max-width: 850px; margin: 20px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.product-technical-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(34px, 6vw, 88px); margin-top: 38px; }
.product-technical-grid article { min-width: 0; padding-top: 20px; border-top: 1px solid var(--ink); }
.product-technical-grid h3 { margin: 0; font: 800 18px/1.2 var(--display); letter-spacing: -.02em; }
.product-technical-grid p { margin: 15px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.product-technical-grid ul { display: grid; gap: 15px; margin: 17px 0 0; padding: 0; list-style: none; }
.product-technical-grid li { display: grid; grid-template-columns: minmax(125px, .42fr) minmax(0, 1fr); gap: 18px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.product-technical-grid li strong { color: var(--ink); font-weight: 800; }
.related-products { padding-top: 77px; padding-bottom: 96px; background: var(--white); border-top: 1px solid var(--line); }
.related-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.related-heading h2 { margin: 0; font: 800 clamp(27px, 3vw, 40px)/1 var(--display); letter-spacing: -.04em; }
.related-heading a { padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 900; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 38px; }
.related-card { display: grid; grid-template-columns: minmax(140px, .8fr) minmax(0, 1.2fr); min-height: 190px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s ease, border-color .3s ease; }
.related-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.related-card-image { display: grid; place-items: center; padding: 14px; background: #e9edef; }
.related-card-image img { width: 100%; height: 155px; object-fit: contain; mix-blend-mode: multiply; transition: transform .4s ease; }
.related-card:hover .related-card-image img { transform: scale(1.04); }
.related-card-copy { display: flex; flex-direction: column; justify-content: center; padding: 20px; }
.related-card-copy small { color: var(--blue); font: 900 9px/1 var(--display); letter-spacing: .12em; }
.related-card-copy strong { margin-top: 10px; font: 800 17px/1.08 var(--display); letter-spacing: -.025em; }
.related-card-copy > span { margin-top: 22px; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.specs { padding-top: 101px; padding-bottom: 96px; }
.specs-heading { display: flex; align-items: center; justify-content: space-between; gap: clamp(28px, 5vw, 76px); }
.specs-heading h2 { font-size: clamp(30px, 3vw, 44px); }
.specs-products-button { flex: 0 0 auto; min-width: 190px; }
.spec-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 14px; margin-top: 54px; }
.spec-feature { min-height: 430px; display: flex; flex-direction: column; padding: 0; background: var(--blue); color: var(--white); border-radius: var(--radius); overflow: hidden; position: relative; }
.spec-feature::before { content: ""; position: absolute; right: -90px; bottom: -110px; width: 310px; height: 310px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 0 0 32px rgba(255,255,255,.07), 0 0 0 65px rgba(255,255,255,.05); }
.spec-feature-image { position: relative; z-index: 1; height: 218px; flex: 0 0 auto; background: var(--white); overflow: hidden; }
.spec-feature-image img { position: absolute; inset: 18px; width: calc(100% - 36px); height: calc(100% - 36px); max-width: none; object-fit: contain; mix-blend-mode: multiply; transform: scale(1.28); }
.spec-feature-copy { position: relative; z-index: 1; display: flex; flex: 1; flex-direction: column; padding: 24px 29px 27px; }
.spec-feature-number { position: relative; z-index: 1; color: var(--lime); font: 900 52px/.8 var(--display); letter-spacing: -.06em; }
.spec-feature strong { position: relative; z-index: 1; margin-top: 22px; font: 800 21px/1.1 var(--display); letter-spacing: -.025em; }
.spec-feature p { position: relative; z-index: 1; margin: 11px 0 0; color: rgba(255,255,255,.67); font: 12px/1.5 var(--display); }
.spec-feature-line { position: relative; z-index: 1; width: 100%; height: 1px; margin-top: 28px; background: rgba(255,255,255,.38); }
.spec-feature-foot { position: relative; z-index: 1; margin-top: 13px; font: 900 9px/1 var(--display); letter-spacing: .1em; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.spec-grid article { min-height: 130px; display: flex; flex-direction: column; justify-content: center; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.spec-grid span { color: var(--muted); font-size: 11px; }
.spec-grid strong { margin-top: 10px; font: 800 clamp(17px, 1.55vw, 21px)/1.1 var(--display); letter-spacing: -.025em; }
.spec-grid small { margin-top: 10px; color: var(--muted); font-size: 10px; }
.spec-footnote { margin: 18px 0 0; color: var(--muted); font-size: 11px; }

.gallery { padding-top: 98px; padding-bottom: 108px; background: var(--ink); color: var(--white); }
.gallery .eyebrow { color: rgba(255,255,255,.58); }
.gallery-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; }
.gallery-heading .eyebrow { grid-column: 1 / -1; }
.gallery-heading h2 { font-size: clamp(30px, 3vw, 44px); }
.gallery-heading > p { max-width: 330px; margin: 0 0 8px; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.65; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 52px; }
.gallery-item { min-width: 0; min-height: 0; display: grid; grid-template-rows: auto auto; padding: 0; background: var(--white); border: 0; text-align: left; overflow: hidden; }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: contain; background: var(--white); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span { display: block; padding: 13px 15px 14px; border-top: 1px solid rgba(16,24,39,.1); color: var(--ink); font: 900 9px/1.2 var(--display); letter-spacing: .13em; }

.industry-scenes { padding-top: clamp(92px, 10vw, 132px); padding-bottom: clamp(92px, 10vw, 132px); background: var(--white); border-bottom: 1px solid var(--line); }
.industry-scenes-heading { max-width: 760px; }
.industry-scenes-heading h2 { margin: 0; font: 800 clamp(32px, 3.3vw, 48px)/1.02 var(--display); letter-spacing: -.04em; }
.industry-scenes-heading h2 em { color: var(--blue); font-style: normal; }
.industry-scenes-heading p { max-width: 660px; margin: 24px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.industry-scenes-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: clamp(46px, 6vw, 68px); }
.industry-scene { min-width: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease; }
.industry-scene:hover { transform: translateY(-5px); border-color: rgba(19,132,214,.5); box-shadow: 0 17px 38px rgba(16,24,39,.08); }
.industry-scene figure { aspect-ratio: 3 / 2; margin: 0; overflow: hidden; background: #dfe5e8; }
.industry-scene img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.industry-scene:hover img { transform: scale(1.035); }
.industry-scene > div { min-height: 132px; padding: 21px 22px 23px; }
.industry-scene h3 { margin: 0; font: 800 21px/1.1 var(--display); letter-spacing: -.03em; }
.industry-scene p { margin: 11px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.purpose { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(48px, 7vw, 108px); align-items: center; padding-top: clamp(92px, 10vw, 132px); padding-bottom: clamp(92px, 10vw, 132px); border-bottom: 1px solid var(--line); }
.purpose-copy { max-width: 590px; }
.purpose h2 { max-width: 650px; margin: 0; font: 800 clamp(30px, 3vw, 44px)/1.02 var(--display); letter-spacing: -.035em; }
.purpose h2 em { color: var(--blue); font-style: normal; }
.purpose-lede { margin: 30px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.72; }
.purpose-body { display: grid; gap: 17px; margin-top: 25px; }
.purpose-body p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.purpose-commitment { margin: 31px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--ink); font: 800 18px/1.3 var(--display); letter-spacing: -.02em; }
.purpose-media { min-width: 0; min-height: 620px; display: grid; grid-template-columns: minmax(0, 1.17fr) minmax(0, .83fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 12px; }
.purpose-image { min-width: 0; min-height: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; margin: 0; background: var(--white); border-radius: var(--radius); overflow: hidden; }
.purpose-image-main { grid-row: 1 / span 2; }
.purpose-image img { width: 100%; height: 100%; min-height: 0; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.purpose-image:hover img { transform: scale(1.035); }
.purpose-image figcaption { padding: 12px 14px 13px; color: var(--muted); font: 900 9px/1.2 var(--display); letter-spacing: .11em; text-transform: uppercase; }

.home-journal { padding-top: clamp(92px, 10vw, 132px); padding-bottom: clamp(92px, 10vw, 132px); background: var(--white); border-bottom: 1px solid var(--line); }
.home-journal-heading { display: flex; align-items: end; justify-content: space-between; gap: 42px; }
.home-journal-heading h2 { margin: 0; font: 800 clamp(32px, 3.3vw, 48px)/1.02 var(--display); letter-spacing: -.04em; }
.home-journal-heading h2 em { color: var(--blue); font-style: normal; }
.home-journal-heading p { max-width: 620px; margin: 23px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.home-journal-all { flex: 0 0 auto; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 900; }
.home-journal-all span, .home-journal-link span { display: inline-block; margin-left: 8px; transition: transform .22s ease; }
.home-journal-all:hover span, .home-journal-link:hover span { transform: translate(3px, -3px); }
.home-journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 16px; margin-top: clamp(46px, 6vw, 68px); }
.home-journal-card { min-width: 0; display: grid; grid-template-rows: 280px minmax(0, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease; }
.home-journal-card:hover { transform: translateY(-5px); border-color: rgba(19,132,214,.5); box-shadow: 0 17px 38px rgba(16,24,39,.08); }
.home-journal-image { min-width: 0; overflow: hidden; background: #dfe4e6; }
.home-journal-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.home-journal-card:hover .home-journal-image img { transform: scale(1.035); }
.home-journal-image.is-product-image { display: grid; place-items: center; padding: 30px; background: var(--white); }
.home-journal-image.is-product-image img { object-fit: contain; }
.home-journal-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 28px 27px 29px; }
.home-journal-meta { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font: 900 9px/1.3 var(--display); letter-spacing: .09em; text-transform: uppercase; }
.home-journal-card .home-journal-meta { width: 100%; }
.home-journal-copy h3 { margin: 19px 0 0; font: 800 clamp(21px, 1.8vw, 27px)/1.06 var(--display); letter-spacing: -.04em; }
.home-journal-copy > p { margin: 17px 0 0; color: var(--muted); font-size: 13px; line-height: 1.68; }
.home-journal-link { display: inline-flex; align-items: center; align-self: flex-start; margin-top: auto; padding-top: 25px; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--blue); font-size: 11px; font-weight: 900; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 10vw, 150px); align-items: stretch; padding-top: 72px; padding-bottom: 72px; background: var(--lime); }
.contact-copy { display: flex; flex-direction: column; justify-content: center; }
.eyebrow.dark { color: rgba(16,24,39,.6); }
.contact-copy h2 { font-size: clamp(30px, 3vw, 44px); }
.contact-copy h2 em { color: var(--ink); }
.contact-copy > p:not(.eyebrow) { max-width: 500px; margin: 25px 0 0; color: rgba(16,24,39,.72); font-size: 15px; line-height: 1.72; }
.contact-direct { min-height: 205px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 28px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid rgba(16,24,39,.35); color: var(--ink); }
.contact-direct > span { font: 900 10px/1 var(--display); letter-spacing: .14em; }
.contact-direct strong { margin-top: 21px; font: 800 clamp(24px, 2.8vw, 39px)/1 var(--display); letter-spacing: -.045em; }
.contact-direct small { max-width: 430px; margin-top: 18px; color: rgba(16,24,39,.68); font-size: 12px; line-height: 1.6; }
.site-footer { padding-top: 34px; padding-bottom: 25px; background: var(--ink); color: var(--white); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 37px; border-bottom: 1px solid rgba(255,255,255,.18); }
.footer-brand .brand-symbol { border-color: rgba(255,255,255,.22); box-shadow: 0 5px 16px rgba(7,16,25,.3); }
.footer-contact { display: grid; justify-items: center; gap: 10px; text-align: center; }
.footer-top p { margin: 0; color: rgba(255,255,255,.65); font: 800 19px/1.1 var(--display); letter-spacing: -.03em; }
.footer-email { padding-bottom: 3px; border-bottom: 1px solid rgba(201,243,107,.55); color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .02em; transition: color .2s ease, border-color .2s ease; }
.footer-email:hover { color: var(--white); border-bottom-color: var(--white); }
.back-top { padding-bottom: 4px; border-bottom: 1px solid var(--lime); color: var(--lime); font-size: 11px; font-weight: 900; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; color: rgba(255,255,255,.56); font: 10px/1.3 var(--display); letter-spacing: .05em; text-transform: uppercase; }

.lightbox { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 40px; background: rgba(16,24,39,.92); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(90vw, 900px); max-height: 85vh; object-fit: contain; background: #e9edf0; }
.lightbox-close { position: absolute; top: 22px; right: 28px; width: 45px; height: 45px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: transparent; color: var(--white); font-size: 28px; line-height: 1; }

.product-modal { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 32px; background: rgba(16,24,39,.78); opacity: 0; pointer-events: none; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.product-modal.is-open { opacity: 1; pointer-events: auto; visibility: visible; }
.product-modal-panel { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); width: min(1080px, 100%); max-height: min(760px, calc(100dvh - 64px)); overflow: auto; background: var(--white); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.product-modal-media { min-width: 0; padding: 25px; background: #edf0f1; }
.product-modal-media > img { width: 100%; aspect-ratio: 1.08; object-fit: contain; mix-blend-mode: multiply; }
.product-modal-gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 7px; margin-top: 12px; }
.product-modal-gallery button { aspect-ratio: 1; padding: 3px; border: 1px solid transparent; background: rgba(255,255,255,.65); }
.product-modal-gallery button.is-active, .product-modal-gallery button:hover { border-color: var(--blue); }
.product-modal-gallery img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-modal-copy { display: flex; flex-direction: column; justify-content: center; padding: 50px 48px 48px; }
.product-modal-copy .eyebrow { margin-bottom: 24px; }
.product-modal-model { color: var(--blue); font: 900 10px/1 var(--display); letter-spacing: .14em; }
.product-modal-copy h2 { max-width: 470px; margin: 13px 0 19px; font: 800 clamp(27px, 3vw, 43px)/1.02 var(--display); letter-spacing: -.045em; }
.product-modal-copy > p:not(.eyebrow) { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.product-modal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }
.product-modal-copy .button { align-self: flex-start; margin-top: 34px; }
.product-modal-close { position: absolute; z-index: 2; top: 15px; right: 17px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.8); color: var(--ink); font-size: 24px; line-height: 1; }

.blog-index { padding-top: 100px; padding-bottom: 112px; }
.blog-index-header { max-width: 820px; }
.blog-index-header h1 { margin: 0; font: 800 clamp(38px, 4.7vw, 68px)/.98 var(--display); letter-spacing: -.055em; }
.blog-index-header h1 em { color: var(--blue); font-style: normal; }
.blog-index-header > p:last-child { max-width: 610px; margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.blog-feature { min-height: 520px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr); margin-top: 68px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink); color: var(--white); }
.blog-feature-image { min-width: 0; overflow: hidden; background: #dfe4e6; }
.blog-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.blog-feature-image.is-product-image, .blog-card-image.is-product-image, .article-hero.is-product-image { background: var(--white); }
.blog-feature-image.is-product-image img, .blog-card-image.is-product-image img, .article-hero.is-product-image img { object-fit: contain; padding: clamp(24px, 4vw, 58px); }
.blog-feature:hover .blog-feature-image img { transform: scale(1.025); }
.blog-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 56px 50px; }
.blog-card-meta { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font: 900 10px/1.3 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.blog-feature .blog-card-meta { color: rgba(255,255,255,.58); }
.blog-feature-copy h2 { margin: 24px 0 20px; font: 800 clamp(30px, 3vw, 45px)/1.02 var(--display); letter-spacing: -.045em; }
.blog-feature-copy p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.75; }
.blog-read-link { align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; margin-top: 31px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--blue); font-size: 12px; font-weight: 900; }
.blog-read-link span { transition: transform .2s ease; }
.blog-read-link:hover span { transform: translate(3px,-3px); }
.blog-feature .blog-read-link { color: var(--lime); }
.blog-library { margin-top: 112px; }
.blog-library-heading { max-width: 620px; }
.blog-library-heading h2 { margin: 0; font: 800 clamp(31px, 3.2vw, 46px)/1 var(--display); letter-spacing: -.045em; }
.blog-library-heading p { max-width: 560px; margin: 22px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 48px; }
.blog-card { min-width: 0; display: grid; grid-template-columns: minmax(190px, .78fr) minmax(0, 1.22fr); min-height: 310px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.blog-card:last-child { grid-column: 1 / -1; grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); }
.blog-card-image { min-width: 0; overflow: hidden; background: #e4e8e9; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.blog-card:hover .blog-card-image img { transform: scale(1.035); }
.blog-card-copy { display: flex; flex-direction: column; align-items: flex-start; padding: 30px 28px 27px; }
.blog-card-copy .blog-card-meta { width: 100%; }
.blog-card h3 { margin: 21px 0 15px; font: 800 clamp(21px, 1.8vw, 28px)/1.06 var(--display); letter-spacing: -.04em; }
.blog-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.blog-card .blog-read-link { margin-top: auto; padding-top: 23px; }
.blog-contact { min-height: 270px; display: flex; align-items: center; justify-content: space-between; gap: 45px; margin-top: 92px; padding: 46px 50px; border-radius: var(--radius); background: var(--blue); color: var(--white); }
.blog-contact > div > span { font: 900 10px/1 var(--display); letter-spacing: .13em; }
.blog-contact h2 { max-width: 680px; margin: 18px 0 0; font: 800 clamp(28px, 3.2vw, 45px)/1.02 var(--display); letter-spacing: -.045em; }
.blog-contact .button-dark { flex: 0 0 auto; background: var(--lime); color: var(--ink); }

.article-template { padding-top: 70px; padding-bottom: 112px; }
.article-back { display: inline-block; padding-bottom: 4px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 800; }
.article-header { max-width: 1010px; margin: 64px auto 0; }
.article-meta { display: flex; gap: 25px; color: var(--blue); font: 900 10px/1 var(--display); letter-spacing: .11em; text-transform: uppercase; }
.article-meta span + span { padding-left: 25px; border-left: 1px solid var(--line); color: var(--muted); }
.article-header h1 { max-width: 980px; margin: 28px 0 25px; font: 800 clamp(40px, 5.2vw, 74px)/.98 var(--display); letter-spacing: -.058em; }
.article-header > p { max-width: 760px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.article-hero { max-width: 1180px; margin: 65px auto 0; overflow: hidden; border-radius: var(--radius); background: #dfe4e6; }
.article-hero img { width: 100%; height: clamp(390px, 52vw, 680px); object-fit: cover; }
.article-layout { max-width: 1080px; display: grid; grid-template-columns: 220px minmax(0, 720px); justify-content: space-between; gap: 70px; margin: 88px auto 0; }
.article-aside { align-self: start; position: sticky; top: 30px; display: grid; gap: 18px; padding-top: 5px; }
.article-aside > span { color: var(--muted); font: 900 9px/1 var(--display); letter-spacing: .13em; }
.article-aside nav { display: grid; border-top: 1px solid var(--line); }
.article-aside nav span { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 700; line-height: 1.4; }
.article-aside > a { margin-top: 10px; color: var(--blue); font-size: 11px; font-weight: 900; line-height: 1.4; }
.article-body { min-width: 0; }
.article-body section + section { margin-top: 64px; padding-top: 57px; border-top: 1px solid var(--line); }
.article-body h2 { max-width: 650px; margin: 0 0 26px; font: 800 clamp(27px, 2.8vw, 38px)/1.05 var(--display); letter-spacing: -.042em; }
.article-body p { margin: 0; color: #374354; font-size: 16px; line-height: 1.82; }
.article-body p + p { margin-top: 21px; }
.article-body ul { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.article-body li { position: relative; padding-left: 22px; color: #374354; font-size: 15px; line-height: 1.65; }
.article-body li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 2px; background: var(--blue); }
.article-next { max-width: 1080px; margin: 96px auto 0; padding-top: 35px; border-top: 1px solid var(--ink); }
.article-next > span { color: var(--muted); font: 900 9px/1 var(--display); letter-spacing: .13em; }
.article-next > a { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 35px; margin-top: 22px; }
.article-next strong { max-width: 800px; font: 800 clamp(26px, 3.4vw, 48px)/1.03 var(--display); letter-spacing: -.045em; }
.article-next b { color: var(--blue); font-size: 35px; font-weight: 400; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .reveal { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 900px) {
  .desktop-nav, .header-mail { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { display: grid; position: fixed; inset: 0; z-index: 15; align-content: start; gap: 0; padding: 116px 24px 24px; background: var(--paper); border-bottom: 1px solid var(--line); transform: translateY(-100%); transition: transform .3s ease; overflow: auto; }
  .mobile-menu.is-open { transform: translateY(0); }
  .mobile-menu a { padding: 17px 0; border-bottom: 1px solid var(--line); font: 800 24px/1 var(--display); letter-spacing: -.05em; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-video { display: none; }
  .hero-visual { max-width: 720px; width: 100%; justify-self: center; }
  .trust-row { grid-template-columns: repeat(3, 1fr); }
  .trust-intro { grid-column: 1 / -1; margin-bottom: 20px; }
  .about-hero { min-height: 0; grid-template-columns: 1fr; }
  .about-hero-copy { max-width: 760px; }
  .about-hero-media { max-width: 820px; }
  .regional-support-heading { grid-template-columns: 1fr; }
  .regional-support .eyebrow { grid-column: auto; }
  .factory-proof-heading { grid-template-columns: 1fr; gap: 8px; }
  .factory-proof-layout { grid-template-columns: 1fr; }
  .factory-faq { grid-template-columns: 1fr; }
  .factory-faq-heading { position: static; }
  .company { grid-template-columns: 1fr; gap: 52px; }
  .company-intro { max-width: 720px; }
  .company-image { max-width: 760px; }
  .purpose { grid-template-columns: 1fr; gap: 50px; }
  .purpose-copy { max-width: 720px; }
  .purpose-media { min-height: 760px; }
  .production-grid { gap: 14px; }
  .production-copy { min-height: 210px; padding-right: 60px; }
  .catalog-intro { grid-template-columns: 1fr; gap: 27px; }
  .catalog-intro-copy { max-width: 690px; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-detail-copy { position: static; padding-top: 0; }
  .related-grid { grid-template-columns: 1fr; }
  .spec-layout { grid-template-columns: 1fr; }
  .industry-scenes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-journal-card { grid-template-rows: 260px minmax(0, 1fr); }
  .home-journal-card:last-child { grid-column: 1 / -1; grid-template-columns: minmax(310px, .82fr) minmax(0, 1.18fr); grid-template-rows: none; }
  .product-modal-panel { grid-template-columns: 1fr 1fr; }
  .product-modal-copy { padding: 38px 30px 34px; }
  .blog-index { padding-top: 78px; padding-bottom: 92px; }
  .blog-feature { min-height: 0; grid-template-columns: 1fr; margin-top: 54px; }
  .blog-feature-image { min-height: 390px; }
  .blog-feature-copy { padding: 45px 42px 48px; }
  .blog-library { margin-top: 88px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:last-child { grid-column: auto; grid-template-columns: minmax(230px, .78fr) minmax(0, 1.22fr); }
  .blog-contact { margin-top: 74px; }
  .article-template { padding-top: 54px; padding-bottom: 92px; }
  .article-header { margin-top: 50px; }
  .article-layout { grid-template-columns: 1fr; gap: 52px; margin-top: 68px; }
  .article-aside { position: static; grid-template-columns: 160px minmax(0, 1fr); column-gap: 34px; padding: 23px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .article-aside > span { padding-top: 13px; }
  .article-aside nav { grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 0; column-gap: 28px; }
  .article-aside > a { grid-column: 2; }
}

@media (max-width: 650px) {
  .site-header { min-height: 76px; }
  .brand { min-width: 0; }
  .brand-symbol { width: 40px; height: 40px; flex-basis: 40px; }
  .brand-copy strong { font-size: 13px; }
  .hero { padding-top: 42px; padding-bottom: 42px; }
  .hero-copy { width: 100%; padding: 25px 20px 26px; background: rgba(7,16,25,.7); -webkit-backdrop-filter: blur(7px) saturate(.82); backdrop-filter: blur(7px) saturate(.82); }
  .hero h1, .specs-heading h2, .gallery-heading h2, .contact-copy h2, .production-details h2, .company h2 { font-size: clamp(28px, 8.4vw, 36px); line-height: 1.02; }
  .hero h1 { font-size: clamp(29px, 8vw, 35px); }
  .hero-features { grid-template-columns: 1fr; gap: 4px; margin-top: 23px; }
  .hero-features li { padding-top: 7px; padding-bottom: 7px; font-size: 13px; }
  .hero-actions { flex-wrap: wrap; gap: 13px 14px; margin-top: 29px; }
  .hero-proof { margin-top: 34px; }
  .hero-proof p { font-size: 12px; }
  .hero-service-promise { width: 100%; margin-top: 16px; padding: 17px 18px 18px; }
  .hero-service-promise span { font-size: clamp(11px, 3.25vw, 13px); letter-spacing: .025em; }
  .hero-service-promise strong { font-size: clamp(19px, 5.8vw, 23px); }
  .visual-frame { min-height: 400px; }
  .visual-frame img { height: 330px; }
  .visual-stamp { width: 82px; height: 82px; left: 17px; bottom: 46px; padding-left: 14px; }
  .visual-stamp span, .visual-stamp strong { font-size: 16px; }
  .visual-side-note { display: none; }
  .trust-row { grid-template-columns: 1fr; gap: 25px; padding-top: 55px; padding-bottom: 60px; }
  .trust-intro { margin-bottom: 8px; }
  .trust-item { min-height: 68px; grid-template-columns: 35px 1fr; gap: 4px 12px; padding-left: 0; border-left: 0; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .trust-item b { grid-row: 1 / span 2; }
  .trust-item small { grid-column: 2; }
  .about-hero { gap: 38px; padding-top: 68px; padding-bottom: 72px; }
  .about-hero h1 { font-size: clamp(36px, 11vw, 48px); line-height: .98; }
  .about-hero-copy > p:not(.eyebrow) { margin-top: 22px; font-size: 15px; line-height: 1.7; }
  .about-hero-copy > p + p:not(.eyebrow) { margin-top: 12px; }
  .about-hero-media figcaption { flex-direction: column; gap: 5px; }
  .regional-support { padding-top: 73px; padding-bottom: 77px; }
  .regional-support h2, .factory-proof h2 { font-size: clamp(30px, 9.2vw, 40px); }
  .regional-support-heading { gap: 22px; }
  .regional-support-grid { grid-template-columns: 1fr; margin-top: 43px; }
  .regional-support-grid article { padding: 25px 0 26px; }
  .regional-support-grid article + article { padding-left: 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .factory-proof { padding-top: 73px; padding-bottom: 77px; }
  .factory-proof-layout { margin-top: 36px; }
  .factory-checklist li { grid-template-columns: 35px minmax(0, 1fr); min-height: 59px; }
  .factory-faq { gap: 36px; padding-top: 73px; padding-bottom: 77px; }
  .factory-faq h2 { font-size: clamp(30px, 9.2vw, 40px); }
  .factory-faq-list summary { padding: 21px 42px 21px 0; font-size: 18px; }
  .factory-faq-list summary::after { top: 19px; }
  .factory-faq-list p { margin-right: 20px; }
  .company { gap: 39px; padding-top: 74px; padding-bottom: 77px; }
  .company-lede { margin-top: 22px; font-size: 15px; line-height: 1.7; }
  .company-facts { gap: 12px; margin-top: 30px; }
  .company-facts strong { font-size: 19px; }
  .company-facts span { font-size: 11px; }
  .company-image figcaption { flex-direction: column; gap: 5px; }
  .company-process { margin-top: 1px; padding-top: 24px; }
  .process-heading { display: grid; gap: 14px; }
  .process-heading h3 { font-size: 25px; }
  .process-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 22px; }
  .process-card { grid-template-columns: 1fr; }
  .process-card-image { min-height: 195px; }
  .process-card-copy { padding: 21px; }
  .production-details { padding-top: 73px; padding-bottom: 77px; }
  .production-kicker { margin-bottom: 15px; font-size: 13px; }
  .production-intro > p:last-child { margin-top: 21px; font-size: 15px; line-height: 1.67; }
  .production-grid { grid-template-columns: 1fr; gap: 13px; margin-top: 38px; }
  .production-copy { min-height: 0; padding: 23px 56px 25px 22px; }
  .production-number { top: 25px; right: 21px; }
  .production-copy h3 { font-size: 22px; }
  .product-catalog { padding-top: 75px; padding-bottom: 78px; }
  .catalog-intro-copy { grid-template-columns: 1fr; gap: 25px; }
  .catalog-summary { justify-self: start; }
  .catalog-toolbar { margin-top: 45px; }
  .catalog-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-filter { min-height: 58px; padding: 13px 12px; font-size: 13px; border-bottom: 1px solid var(--line); }
  .catalog-filter:nth-child(2n) { border-right: 0; }
  .catalog-filter:first-child { padding-left: 12px; }
  .catalog-filter:last-child { padding-right: 12px; border-bottom: 0; }
  .catalog-filter:nth-last-child(2) { border-bottom: 0; }
  .catalog-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card { display: grid; grid-template-columns: 42% 58%; }
  .product-card-image { aspect-ratio: auto; min-height: 180px; }
  .product-card-copy { padding: 17px 17px 18px; }
  .product-card h3 { font-size: 17px; }
  .catalog-page-main { padding-top: 68px; }
  .product-detail { padding-top: 31px; padding-bottom: 72px; }
  .product-breadcrumb { margin-bottom: 25px; font-size: 10px; }
  .product-detail-layout { gap: 34px; }
  .product-detail-stage { min-height: 360px; padding: 20px; }
  .product-detail-stage img { height: 320px; }
  .product-detail-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-detail-copy h1 { margin-top: 13px; font-size: clamp(29px, 8vw, 35px); }
  .product-detail-description { font-size: 14px; line-height: 1.7; }
  .product-detail-selection { display: block; margin-top: 30px; padding-top: 22px; }
  .product-detail-actions { flex-direction: column; align-items: center; gap: 9px; margin-top: 22px; }
  .product-detail-actions .button { min-height: 48px; padding-inline: 18px; }
  .product-detail-actions .text-link { min-height: 36px; }
  .product-technical-copy { margin-top: 58px; padding-top: 39px; }
  .product-technical-heading p { margin-top: 17px; font-size: 14px; line-height: 1.7; }
  .product-technical-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 31px; }
  .product-technical-grid li { grid-template-columns: 1fr; gap: 4px; }
  .related-products { padding-top: 62px; padding-bottom: 70px; }
  .related-heading { align-items: flex-start; flex-direction: column; }
  .related-grid { margin-top: 30px; }
  .related-card { grid-template-columns: 42% 58%; min-height: 175px; }
  .related-card-image img { height: 145px; }
  .product-modal { padding: 12px; }
  .product-modal-panel { display: block; max-height: calc(100dvh - 24px); }
  .product-modal-media { padding: 18px; }
  .product-modal-media > img { aspect-ratio: 1.2; }
  .product-modal-copy { padding: 30px 24px 27px; }
  .product-modal-copy h2 { font-size: 31px; }
  .product-modal-copy .button { margin-top: 26px; }
  .product-modal-close { top: 10px; right: 10px; }
  .specs, .gallery { padding-top: 75px; padding-bottom: 78px; }
  .gallery-heading { grid-template-columns: 1fr; gap: 24px; }
  .gallery-heading .eyebrow { grid-column: auto; }
  .specs-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
  .specs-products-button { min-width: 0; }
  .spec-layout { margin-top: 46px; }
  .spec-feature { min-height: 430px; }
  .spec-feature-image { height: 225px; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-grid article { min-height: 123px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 46px; }
  .gallery-item { min-height: 0; }
  .industry-scenes { padding-top: 75px; padding-bottom: 78px; }
  .industry-scenes-heading h2 { font-size: clamp(28px, 8.4vw, 36px); }
  .industry-scenes-heading p { margin-top: 20px; font-size: 14px; line-height: 1.68; }
  .industry-scenes-grid { grid-template-columns: 1fr; gap: 13px; margin-top: 40px; }
  .industry-scene > div { min-height: 0; padding: 20px 21px 22px; }
  .industry-scene h3 { font-size: 20px; }
  .purpose { grid-template-columns: 1fr; gap: 43px; padding-top: 75px; padding-bottom: 78px; }
  .purpose-copy { max-width: 720px; }
  .purpose h2 { font-size: clamp(28px, 8.4vw, 36px); }
  .purpose-media { min-height: 720px; grid-template-columns: 1fr 1fr; grid-template-rows: minmax(360px, 1.25fr) minmax(270px, .75fr); }
  .purpose-image-main { grid-column: 1 / -1; grid-row: auto; }
  .home-journal { padding-top: 75px; padding-bottom: 78px; }
  .home-journal-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
  .home-journal-heading h2 { font-size: clamp(28px, 8.4vw, 36px); }
  .home-journal-heading p { margin-top: 19px; font-size: 14px; line-height: 1.68; }
  .home-journal-grid { grid-template-columns: 1fr; gap: 13px; margin-top: 40px; }
  .home-journal-card, .home-journal-card:last-child { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: 225px minmax(0, 1fr); }
  .home-journal-copy { padding: 24px 22px 26px; }
  .home-journal-copy h3 { font-size: 23px; }
  .home-journal-meta { flex-wrap: wrap; gap: 8px 15px; }
  .home-journal-image.is-product-image { padding: 21px; }
  .home-journal-link { padding-top: 23px; }
  .contact { grid-template-columns: 1fr; gap: 35px; padding-top: 62px; padding-bottom: 64px; }
  .contact-copy > p:not(.eyebrow) { margin-top: 22px; font-size: 14px; }
  .contact-direct { min-height: 165px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-contact { justify-items: start; text-align: left; }
  .footer-top p { font-size: 18px; }
  .blog-index { padding-top: 58px; padding-bottom: 76px; }
  .blog-index-header h1 { font-size: clamp(34px, 10.5vw, 44px); line-height: 1.01; }
  .blog-index-header > p:last-child { margin-top: 22px; font-size: 14px; line-height: 1.67; }
  .blog-feature { margin-top: 40px; }
  .blog-feature-image { min-height: 235px; }
  .blog-feature-copy { padding: 30px 23px 33px; }
  .blog-feature-copy h2 { margin: 19px 0 15px; font-size: clamp(26px, 8vw, 34px); }
  .blog-feature-copy p { line-height: 1.68; }
  .blog-card-meta { flex-wrap: wrap; gap: 8px 18px; }
  .blog-read-link { margin-top: 25px; }
  .blog-library { margin-top: 69px; }
  .blog-library-heading h2 { font-size: 33px; }
  .blog-library-heading p { margin-top: 17px; }
  .blog-grid { gap: 13px; margin-top: 32px; }
  .blog-card, .blog-card:last-child { grid-template-columns: 1fr; min-height: 0; }
  .blog-card-image { min-height: 230px; aspect-ratio: 1.35; }
  .blog-card-copy { padding: 25px 22px 27px; }
  .blog-card h3 { margin: 17px 0 12px; font-size: 24px; }
  .blog-card p { font-size: 13px; }
  .blog-card .blog-read-link { margin-top: 0; padding-top: 23px; }
  .blog-contact { min-height: 0; align-items: flex-start; flex-direction: column; gap: 30px; margin-top: 57px; padding: 32px 24px 35px; }
  .blog-contact h2 { margin-top: 14px; font-size: 30px; }
  .blog-contact .button { width: 100%; justify-content: space-between; }
  .article-template { padding-top: 32px; padding-bottom: 76px; }
  .article-header { margin-top: 38px; }
  .article-meta { flex-wrap: wrap; gap: 11px 18px; }
  .article-meta span + span { padding-left: 18px; }
  .article-header h1 { margin: 21px 0 19px; font-size: clamp(33px, 10.3vw, 44px); line-height: 1; }
  .article-header > p { font-size: 15px; line-height: 1.68; }
  .article-hero { margin-top: 38px; }
  .article-hero img { height: 245px; }
  .article-layout { gap: 42px; margin-top: 48px; }
  .article-aside { display: grid; grid-template-columns: 1fr; gap: 13px; padding: 21px 0 24px; }
  .article-aside > span { padding-top: 0; }
  .article-aside nav { grid-template-columns: 1fr; }
  .article-aside nav span { padding: 10px 0; }
  .article-aside > a { grid-column: auto; margin-top: 4px; }
  .article-body section + section { margin-top: 48px; padding-top: 42px; }
  .article-body h2 { margin-bottom: 21px; font-size: 29px; }
  .article-body p { font-size: 15px; line-height: 1.76; }
  .article-next { margin-top: 70px; padding-top: 29px; }
  .article-next > a { gap: 22px; }
  .article-next strong { font-size: 28px; }
}

@media (max-width: 1150px) {
  .hero-service-promise { position: relative; top: auto; right: auto; align-self: start; justify-self: start; width: min(100%, 420px); margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-service-promise, .hero-service-promise::after { animation: none; }
}

@media (max-width: 900px) {
  .mobile-product { border-bottom: 1px solid var(--line); }
  .mobile-product-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 17px 0; border: 0; background: transparent; color: var(--ink); font: 800 24px/1 var(--display); letter-spacing: -.05em; text-align: left; }
  .mobile-product-toggle span { color: var(--blue); font-size: 25px; font-weight: 400; }
  .mobile-product-links { display: none; padding: 0 0 10px; }
  .mobile-product-links.is-open { display: grid; }
  .mobile-product-links a { padding: 13px 0 13px 14px; border-top: 1px solid var(--line); font: 800 16px/1.1 var(--display); letter-spacing: -.03em; }
  .mobile-product-links a span { display: block; margin-top: 5px; color: var(--muted); font: 10px/1.3 var(--body); letter-spacing: 0; }
}

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