:root {
  --beige: #1a1b1d;
  --dark-beige: #1a1b1d;
  --charcoal: #151515;
  --menu-bg: #151515;
  --brown: #1a1b1d;
  --red: #ed0925;
  --black: #f5f6f7;
  --white: #f5f6f7;
  --page-pad: clamp(28px, 4vw, 78px);
  --header-h: clamp(88px, 6.5vw, 108px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--black); background: var(--beige); font-family: Roboto, Arial, sans-serif; font-size: 20px; overflow-x: hidden; opacity: 1; transition: opacity .24s ease; }
body.page-leaving { opacity: 0; }
.home-page { font-family: Poppins, sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.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; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
.page-width { width: 100%; max-width: 1920px; margin: 0 auto; padding-left: var(--page-pad); padding-right: var(--page-pad); }
.section-bg-darkbeige { background: var(--dark-beige); }
.section-bg-beige { background: var(--beige); }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: var(--header-h); background: var(--charcoal); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.15); transition: background .28s ease, color .28s ease, transform .34s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
.site-header.header-hidden { transform: translateY(-101%); }
.header-inner { height: 100%; max-width: 1920px; margin: 0 auto; padding: 0 var(--page-pad); display: flex; align-items: center; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; color: var(--white); line-height: 1; }
.brand-wordmark { height: clamp(37px, 3.2vw, 50px); display: inline-flex; align-items: center; gap: clamp(5px, .55vw, 9px); }
.brand-wordmark img { width: auto; object-fit: contain; mix-blend-mode: screen; }
.brand-wordmark-text { height: 48%; aspect-ratio: 1210 / 175; }
.brand-wordmark-symbol { height: 78%; aspect-ratio: 420 / 250; mix-blend-mode: normal !important; }
.main-nav { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: clamp(22px, 2.8vw, 46px); font-family: Poppins, sans-serif; font-weight: 500; }
.main-nav ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; }
.nav-primary { gap: clamp(15px, 2vw, 35px); }
.main-nav > .nav-primary > li > a, .nav-trigger { font-size: clamp(10px, .82vw, 14px); text-transform: uppercase; letter-spacing: .01em; }
.main-nav > .nav-primary > li > a { display: block; padding: 14px 0; white-space: nowrap; }
.nav-trigger { border: 0; padding: 14px 0; background: transparent; color: inherit; cursor: pointer; display: flex; align-items: center; gap: 9px; white-space: nowrap; }
.nav-trigger:focus { outline: none; }
.chevron { width: 7px; height: 7px; border-right: 1.2px solid currentColor; border-bottom: 1.2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .25s; }
.nav-item.active .nav-trigger { color: var(--red); }
.nav-item.active .chevron { transform: rotate(225deg) translate(-2px, -1px); }

.search-button { position: relative; width: 27px; height: 27px; border: 0; padding: 0; background: transparent; color: inherit; cursor: pointer; }
.search-button::before { content: ""; position: absolute; left: 2px; top: 1px; width: 16px; height: 16px; border: 2px solid currentColor; border-radius: 50%; }
.search-button::after { content: ""; position: absolute; left: 19px; top: 18px; width: 9px; height: 2px; background: currentColor; transform: rotate(48deg); transform-origin: left center; }

.desktop-tools { margin-left: clamp(20px, 2.4vw, 46px); display: flex; align-items: center; gap: clamp(14px, 1.7vw, 28px); font-family: Poppins, sans-serif; }
.language-control { position: relative; display: inline-flex; align-items: center; color: var(--white); }
.language-select { min-width: 46px; height: 42px; padding: 0 18px 0 4px; border: 0; outline: 0; appearance: none; background: transparent; color: inherit; font-family: Poppins, sans-serif; font-size: clamp(10px, .76vw, 13px); font-weight: 500; cursor: pointer; }
.language-select option { background: var(--menu-bg); color: var(--white); }
.language-chevron { position: absolute; right: 4px; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); pointer-events: none; }
.header-contact { min-width: clamp(150px, 12vw, 205px); min-height: 58px; padding: 14px 27px; display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--red); color: var(--white); font-family: Poppins, sans-serif; font-size: clamp(10px, .76vw, 13px); font-weight: 500; text-transform: uppercase; letter-spacing: .1em; transform: skew(-12deg); transition: background .2s ease, translate .2s ease; }
.header-contact > * { transform: skew(12deg); }
.header-contact b { font-size: 1.8em; font-weight: 300; line-height: 1; }
.header-contact:hover { background: #c90012; translate: 0 -2px; }
.mobile-nav-tools { display: none; }

.mega-menu { position: absolute; left: 0; right: 0; top: 100%; z-index: -1; max-height: calc(100vh - var(--header-h)); overflow-y: auto; background: var(--menu-bg); color: var(--white); padding: 44px var(--page-pad) 48px; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.nav-item.active .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.mega-grid { width: 100%; max-width: 1920px; margin: auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(36px, 5vw, 100px); }
.menu-column { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.menu-column a { position: relative; font-size: clamp(20px, 1.65vw, 32px); line-height: 1.22; font-weight: 500; }
.menu-column a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--red); transition: width .22s; }
.menu-column a:hover::after, .menu-column a:focus-visible::after { width: 100%; }
.menu-column .menu-heading { margin-bottom: 8px; color: #dbd4ca; font-size: clamp(17px, 1.25vw, 24px); }
.mega-about .mega-grid { padding-bottom: 10px; }
.site-header.menu-open { background: var(--charcoal); color: var(--white); }
.mobile-actions { display: none; align-items: center; gap: 17px; }
.mobile-toggle { display: none; }

.mega-expertises { padding-top: 28px; padding-bottom: 22px; }
.expertise-grid { width: 100%; max-width: 1920px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mega-divisions { padding-top: 28px; padding-bottom: 22px; }
.divisions-grid { width: 100%; max-width: 1920px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.divisions-grid .expertise-column { min-height: 540px; padding: 0 clamp(14px, 1.55vw, 30px); }
.divisions-grid .expertise-column h2 { min-height: 58px; margin-bottom: 10px; font-size: clamp(18px, 1.25vw, 24px); }
.division-title { display: inline-block; transition: color .2s ease; }
.division-title:hover, .division-title:focus-visible { color: var(--red); }
.division-description { min-height: 48px; margin: 0 0 18px; color: #aeb4bb; font-size: clamp(10px, .72vw, 13px); line-height: 1.35; }
.divisions-grid .expertise-links { gap: clamp(8px, .65vw, 12px); }
.divisions-grid .expertise-links a { font-size: clamp(11px, .76vw, 14px); }
.expertise-column { min-width: 0; min-height: 520px; padding: 0 clamp(20px, 2.2vw, 42px); display: flex; flex-direction: column; }
.expertise-column:first-child { padding-left: 0; }
.expertise-column:last-child { padding-right: 0; }
.expertise-column + .expertise-column { border-left: 1px solid rgba(255,255,255,.14); }
.expertise-number, .expertise-label { margin: 0; text-transform: uppercase; }
.expertise-number { color: var(--red); font-family: Poppins, sans-serif; font-size: clamp(13px, .94vw, 17px); font-weight: 600; line-height: 1; }
.expertise-label { margin-top: 7px; color: #aeb4bb; font-size: clamp(9px, .66vw, 11px); letter-spacing: .08em; }
.expertise-column h2 { min-height: 68px; margin: 10px 0 24px; color: var(--white); font-family: Poppins, sans-serif; font-size: clamp(19px, 1.4vw, 27px); font-weight: 600; line-height: 1.13; letter-spacing: -.02em; }
.expertise-links { display: flex; flex-direction: column; gap: clamp(10px, .84vw, 15px); }
.expertise-links a { position: relative; padding-right: 18px; color: #e3e6e9; font-size: clamp(12px, .88vw, 16px); line-height: 1.22; }
.expertise-links a::after { content: "›"; position: absolute; right: 0; top: -.14em; color: #c5cad0; font-size: 1.55em; font-weight: 300; }
.expertise-links a:hover, .product-link:hover, .all-products:hover, .expertise-cta:hover { color: var(--red); }
.expertise-cta { width: max-content; max-width: 100%; margin-top: auto; padding: 22px 0 10px; border-bottom: 1px solid #aeb4bb; color: var(--white); font-size: clamp(11px, .78vw, 14px); font-weight: 500; }
.expertise-cta span { margin-left: 14px; font-size: 1.45em; }
.product-links { display: flex; flex-direction: column; gap: 5px; }
.product-link { min-height: 64px; display: grid; grid-template-columns: clamp(66px, 5vw, 88px) minmax(0, 1fr) 12px; align-items: center; gap: 10px; color: var(--white); }
.product-link img { width: 100%; height: 58px; object-fit: cover; mix-blend-mode: screen; }
.product-link > span, .all-products > span:not(.plus) { min-width: 0; display: flex; flex-direction: column; }
.product-link strong, .all-products strong { font-size: clamp(11px, .78vw, 14px); line-height: 1.2; }
.product-link small, .all-products small { margin-top: 3px; color: #aeb4bb; font-size: clamp(9px, .62vw, 11px); line-height: 1.2; }
.product-link b, .all-products b { color: #c5cad0; font-size: 24px; font-weight: 300; }
.all-products { margin-top: auto; min-height: 62px; display: grid; grid-template-columns: 46px minmax(0, 1fr) 12px; align-items: center; gap: 12px; color: var(--white); }
.all-products .plus { width: 44px; height: 44px; border-radius: 50%; background: #3a4149; display: grid; place-items: center; font-size: 28px; font-weight: 300; }

.hero { position: relative; min-height: max(760px, 100svh); display: flex; align-items: center; padding: calc(var(--header-h) + 54px) 0 72px; overflow: hidden; background: #1a1b1d; color: var(--white); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: url("assets/homepage-track-technical-v2.png"); background-repeat: no-repeat; background-position: right clamp(22px, 4.5vw, 86px) center; background-size: min(67vw, 1280px) auto; opacity: .96; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 48%, rgba(64,66,69,.15), transparent 41%), linear-gradient(90deg, rgba(26,27,29,1) 0%, rgba(26,27,29,.96) 29%, rgba(26,27,29,.58) 46%, rgba(26,27,29,.12) 66%, rgba(26,27,29,.04) 100%); }
.hero-grid { position: relative; z-index: 1; align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding-bottom: 118px; }
.hero-main { width: min(760px, 57vw); }
.eyebrow { margin: 0 0 34px; display: flex; align-items: center; gap: 18px; color: #aeb2b7; font-family: Poppins, sans-serif; font-size: clamp(12px, .88vw, 16px); text-transform: uppercase; letter-spacing: .28em; }
.eyebrow span { width: clamp(38px, 4vw, 74px); height: 3px; flex: 0 0 auto; background: var(--red); }
.section-kicker { margin: 0 0 54px; font-size: 18px; }
h1, h2, .statement-copy, .footer-column h2 { font-family: Poppins, sans-serif; font-weight: 400; }
h1 { margin: 0; font-size: clamp(58px, 5.3vw, 98px); line-height: 1.03; font-weight: 600; letter-spacing: clamp(-4px, -.14vw, -2px); }
.hero-dot { color: var(--red); }
.hero-description { width: min(590px, 100%); max-width: 100%; margin: 38px 0 0; color: #e4e6e8; font-size: clamp(17px, 1.22vw, 22px); line-height: 1.45; }
.hero-cta { width: max-content; max-width: 100%; min-height: 66px; margin-top: 34px; padding: 18px 34px; display: inline-flex; align-items: center; justify-content: space-between; gap: 44px; background: var(--red); color: var(--white); font-family: Poppins, sans-serif; font-size: clamp(12px, .85vw, 15px); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; transform: skew(-12deg); transition: background .2s ease, translate .2s ease; }
.hero-cta > * { transform: skew(12deg); }
.hero-cta span { font-size: 1.7em; font-weight: 300; line-height: 1; }
.hero-cta span:first-child { font-size: inherit; font-weight: inherit; line-height: inherit; }
.hero-cta:hover { background: #c90012; translate: 0 -2px; }
.hero-industries { position: absolute; top: 16px; right: var(--page-pad); display: flex; flex-direction: column; align-items: flex-end; gap: 5px; font-family: Poppins, sans-serif; font-size: clamp(9px, .65vw, 12px); font-style: normal; text-transform: uppercase; letter-spacing: .13em; line-height: 1.25; }
.hero-industries span:nth-child(1) { color: rgba(245,246,247,1); }
.hero-industries span:nth-child(2) { color: rgba(245,246,247,.86); }
.hero-industries span:nth-child(3) { color: rgba(245,246,247,.72); }
.hero-industries span:nth-child(4) { color: rgba(245,246,247,.58); }
.hero-industries span:nth-child(5) { color: rgba(245,246,247,.45); }
.hero-industries span:nth-child(6) { color: rgba(245,246,247,.33); }
.hero-industries span:nth-child(7) { color: rgba(245,246,247,.22); }
.hero-slides { position: absolute; top: 49%; right: var(--page-pad); padding-left: 18px; display: flex; flex-direction: column; gap: 22px; border-left: 1px solid rgba(255,255,255,.58); font-family: Poppins, sans-serif; font-size: clamp(12px, .85vw, 15px); }
.hero-slides strong { color: rgba(245,246,247,1); font-weight: 600; }
.hero-slides span:nth-child(2) { color: rgba(245,246,247,.56); }
.hero-slides span:nth-child(3) { color: rgba(245,246,247,.28); }
.scroll-cue { position: absolute; right: var(--page-pad); bottom: 0; display: flex; align-items: center; gap: 17px; color: var(--white); font-family: Poppins, sans-serif; font-size: clamp(10px, .72vw, 13px); font-weight: 500; text-transform: uppercase; letter-spacing: .09em; }
.scroll-cue i { width: clamp(38px, 4.4vw, 82px); height: 1px; display: block; background: rgba(255,255,255,.8); }
.scroll-cue b { font-size: 28px; font-weight: 300; line-height: 1; }
.hero-values { position: absolute; left: var(--page-pad); bottom: 0; width: min(950px, calc(100% - (var(--page-pad) * 2))); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hero-value { min-width: 0; display: flex; align-items: center; gap: 18px; padding-right: clamp(20px, 2.8vw, 54px); }
.hero-value + .hero-value { padding-left: clamp(20px, 2.8vw, 54px); border-left: 1px solid rgba(255,255,255,.26); }
.value-slash { width: 18px; height: 44px; flex: 0 0 auto; background: var(--red); transform: skew(-26deg); }
.hero-value > span:last-child { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.hero-value strong { color: var(--white); font-family: Poppins, sans-serif; font-size: clamp(11px, .8vw, 14px); font-weight: 500; text-transform: uppercase; letter-spacing: .12em; }
.hero-value small { color: #aeb2b7; font-size: clamp(11px, .78vw, 14px); line-height: 1.25; white-space: nowrap; }

.split-intro { padding: clamp(140px, 11.16vw, 214px) 0; }
.split-grid { display: grid; grid-template-columns: minmax(300px, .74fr) minmax(480px, 1fr); align-items: start; gap: clamp(110px, 13.6vw, 260px); }
.copy-block { max-width: 610px; }
.copy-block h2, .feature h2 { margin: 0 0 28px; font-size: clamp(30px, 2.23vw, 46px); line-height: 1.15; letter-spacing: -1px; }
.copy-block p, .feature-copy p { margin: 0; font-size: clamp(17px, 1.2vw, 23px); line-height: 1.17; }
.media-frame { margin: 0; overflow: hidden; border-radius: 7px; aspect-ratio: 1.5; background: #cfc5b6; }

.statement { background: var(--brown); color: var(--white); padding: clamp(100px, 8vw, 150px) 0; }
.statement .section-kicker { margin: 0 0 30px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.25); font-size: 14px; }
.hairline { height: 1px; width: 100%; background: rgba(255,255,255,.35); }
.statement .hairline { display: none; }
.hairline.dark { background: rgba(255,255,255,.28); }
.statement-copy { margin: 0; max-width: 1500px; font-family: Poppins, sans-serif; font-size: clamp(44px, 4.5vw, 82px); font-weight: 500; line-height: 1.05; letter-spacing: -.035em; }
.red-slash { display: inline-block; width: .55em; height: .48em; margin-left: .14em; background: var(--red); transform: skew(-28deg); }

.feature { padding: clamp(110px, 10vw, 190px) 0; }
.feature .section-kicker { margin-bottom: 28px; }
.feature .hairline { margin-bottom: 70px; }
.feature-grid { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(500px, 1.35fr); align-items: center; gap: clamp(70px, 10vw, 190px); }
.feature-copy { max-width: 600px; }
.feature-copy p { max-width: 590px; }
.feature .media-frame { aspect-ratio: 1.5; }
.feature-large .feature-grid { grid-template-columns: minmax(310px, .68fr) minmax(560px, 1.45fr); }
.feature-reverse .feature-grid { grid-template-columns: minmax(560px, 1.35fr) minmax(300px, .9fr); }
.primary-btn { display: inline-flex; align-items: center; min-height: 76px; max-width: 430px; margin-top: 28px; padding: 15px 40px; border-radius: 5px; background: var(--red); color: white; font-family: Poppins, sans-serif; font-size: 20px; font-weight: 500; line-height: 1.15; transition: background .2s, transform .2s; }
.primary-btn:hover { background: #c90012; transform: translateY(-2px); }

.site-footer { background: #000; color: white; padding: 130px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .85fr .65fr .6fr; gap: clamp(50px, 8vw, 150px); }
.brand-footer .brand-wordmark { height: clamp(42px, 3.5vw, 58px); }
.tagline { margin: 50px 0 52px; font-size: clamp(22px, 1.5vw, 30px); }
.footer-brand > p:last-of-type { font-size: 20px; line-height: 1.3; }
.socials { display: flex; gap: 14px; margin-top: 52px; }
.socials a { width: 50px; height: 50px; border: 1px solid white; border-radius: 50%; display: grid; place-items: center; font-family: Poppins, sans-serif; font-weight: 600; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.footer-column h2 { margin: 0 0 10px; font-size: clamp(30px, 2.4vw, 46px); line-height: 1.3; }
.footer-column h2:not(:first-child) { margin-top: 24px; }
.footer-column a { font-size: 17px; line-height: 1.3; }
.footer-line { border-top: 1px solid #555; margin-top: 110px; }

.contact-page { min-height: 100svh; background: #1a1b1d; color: var(--white); }
.contact-hero { position: relative; min-height: 100svh; padding: calc(var(--header-h) + clamp(64px, 7vw, 120px)) 0 clamp(72px, 7vw, 120px); overflow: hidden; }
.contact-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,11,.97) 0%, rgba(8,9,11,.9) 46%, rgba(8,9,11,.62) 100%), url("assets/hero-industrial-track.png") center / cover no-repeat; filter: saturate(.8); }
.contact-hero::after { content: ""; position: absolute; width: 46vw; height: 120vh; right: -14vw; top: -18vh; background: linear-gradient(180deg, rgba(237,9,37,.44), rgba(237,9,37,0)); transform: skew(-24deg); pointer-events: none; }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(340px, .85fr) minmax(520px, 1fr); align-items: center; gap: clamp(70px, 9vw, 170px); }
.contact-intro { max-width: 650px; }
.contact-intro h1 { max-width: 720px; font-size: clamp(58px, 5.2vw, 98px); }
.contact-lead { max-width: 610px; margin: 32px 0 0; color: #c9cdd1; font-size: clamp(17px, 1.15vw, 22px); line-height: 1.5; }
.contact-details { margin-top: clamp(48px, 5vw, 82px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.18); }
.contact-detail { min-height: 116px; padding: 23px 25px; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; background: rgba(13,15,17,.9); }
.contact-detail small { color: #8e949a; font-family: Poppins, sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.contact-detail a { font-size: clamp(15px, 1vw, 19px); line-height: 1.3; }
.contact-panel { position: relative; padding: clamp(32px, 3.4vw, 62px); border: 1px solid rgba(255,255,255,.15); background: rgba(21,21,21,.9); box-shadow: 0 28px 90px rgba(0,0,0,.42); backdrop-filter: blur(14px); }
.contact-panel::before { content: ""; position: absolute; top: 0; left: 0; width: 94px; height: 4px; background: var(--red); }
.contact-number { margin: 0 0 14px; color: var(--red); font-family: Poppins, sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .14em; }
.contact-panel h2 { margin: 0 0 36px; font-size: clamp(31px, 2.45vw, 48px); line-height: 1.12; font-weight: 500; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 22px; }
.form-field { min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { color: #aeb3b8; font-family: Poppins, sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); border-radius: 0; outline: 0; padding: 10px 0 13px; background: transparent; color: var(--white); font: 16px/1.35 Roboto, sans-serif; transition: border-color .2s ease; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #aeb3b8 50%), linear-gradient(135deg, #aeb3b8 50%, transparent 50%); background-position: calc(100% - 6px) 52%, 100% 52%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form-field select option { background: #151515; color: var(--white); }
.form-field textarea { min-height: 106px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-bottom-color: var(--red); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #676d73; }
.contact-submit { grid-column: 1 / -1; width: max-content; min-width: min(290px, 100%); min-height: 66px; margin-top: 8px; padding: 16px 29px; border: 0; display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; background: var(--red); color: var(--white); font-family: Poppins, sans-serif; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; transform: skew(-12deg); transition: background .2s ease, translate .2s ease; }
.contact-submit > * { transform: skew(12deg); }
.contact-submit b { font-size: 24px; font-weight: 300; }
.contact-submit:hover { background: #c90012; translate: 0 -2px; }
.form-status { grid-column: 1 / -1; min-height: 1.3em; margin: -10px 0 0; color: #aeb3b8; font-size: 13px; }
.contact-footer { position: relative; z-index: 1; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); display: flex; justify-content: space-between; gap: 24px; color: #7f858b; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

/* Division and about pages */
.division-page-body { --division-subnav-h: 68px; background: #1a1b1d; }
.division-subnav { position: absolute; left: 0; right: 0; top: 100%; height: var(--division-subnav-h); padding: 0 var(--page-pad); display: flex; align-items: center; gap: clamp(48px, 8vw, 140px); background: #202327; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.09); color: var(--white); font-family: Poppins, sans-serif; }
.division-name { min-width: clamp(220px, 21vw, 390px); font-size: clamp(13px, .95vw, 18px); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.division-tabs { align-self: stretch; display: flex; align-items: stretch; gap: clamp(36px, 5vw, 90px); }
.division-tabs > a, .division-tab-trigger { position: relative; display: flex; align-items: center; border: 0; padding: 0; background: transparent; color: var(--white); font-family: Poppins, sans-serif; font-size: clamp(11px, .83vw, 15px); font-weight: 400; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; }
.division-tab-trigger { gap: 13px; }
.division-tab-trigger::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.division-tab-trigger.active::after { transform: scaleX(1); }
.division-tab-trigger.active .chevron { transform: rotate(225deg) translate(-2px, -1px); }
.division-local-panel { position: absolute; left: clamp(260px, 25vw, 470px); right: var(--page-pad); top: 100%; max-height: calc(100vh - var(--header-h) - var(--division-subnav-h)); overflow-y: auto; padding: 20px 28px 24px; background: #17191b; border: 1px solid rgba(255,255,255,.24); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.division-local-panel.active { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.division-local-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.local-menu-column { min-width: 0; padding: 0 clamp(20px, 2.2vw, 42px); }
.local-menu-column:first-child { padding-left: 0; }
.local-menu-column:last-child { padding-right: 0; }
.local-menu-column + .local-menu-column { border-left: 1px solid rgba(255,255,255,.22); }
.local-menu-column > p { margin: 0 0 15px; display: flex; align-items: center; gap: 15px; color: #d9dcdf; font-size: clamp(11px, .78vw, 14px); text-transform: uppercase; letter-spacing: .07em; }
.local-menu-column > p span { width: 42px; height: 2px; background: var(--red); }
.local-menu-column > div { display: flex; flex-direction: column; }
.local-menu-column a { min-height: 54px; padding: 10px 7px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.018); font-size: clamp(12px, .86vw, 16px); transition: color .2s, background .2s; }
.local-menu-column a:hover { color: var(--red); background: rgba(255,255,255,.04); }
.local-menu-column a b { color: var(--red); font-size: 20px; font-weight: 300; }
.local-product-card { grid-template-columns: 92px minmax(0, 1fr) 18px; }
.local-product-card img { width: 82px; height: 54px; object-fit: cover; filter: saturate(.72) contrast(1.08); }
.local-product-card > span, .local-brand-card > span { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.local-product-card strong, .local-brand-card strong { font-family: Poppins, sans-serif; font-size: clamp(12px, .86vw, 16px); font-weight: 500; }
.local-product-card small, .local-brand-card small { color: #9da2a7; font-family: Poppins, sans-serif; font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }
.local-brand-card { min-height: 76px !important; padding: 14px 18px !important; background: rgba(255,255,255,.035) !important; }
.local-brand-card strong { font-size: clamp(18px, 1.55vw, 29px); font-weight: 600; font-style: italic; letter-spacing: -.04em; }
.local-partner-card { min-height: 76px !important; padding: 14px 18px !important; justify-content: flex-start !important; gap: 18px !important; background: rgba(255,255,255,.035) !important; }
.local-partner-card i { width: 52px; color: var(--white); font-family: Poppins, sans-serif; font-size: 28px; font-weight: 600; font-style: italic; text-align: center; }
.local-partner-card strong { flex: 1; font-family: Poppins, sans-serif; font-size: clamp(11px, .78vw, 14px); font-weight: 500; text-transform: uppercase; letter-spacing: .09em; }
.local-column-cta { min-height: 52px !important; margin-top: 18px; padding: 12px 20px !important; background: var(--red) !important; font-family: Poppins, sans-serif; font-size: 11px !important; text-transform: uppercase; letter-spacing: .07em; transform: skew(-10deg); }
.local-column-cta > * { transform: skew(10deg); }
.local-column-cta b { color: var(--white) !important; }
.division-page-body .compact-global-menu { top: calc(100% + var(--division-subnav-h)); }
.compact-global-menu { padding-top: 28px; padding-bottom: 28px; }
.compact-expertise-grid, .compact-division-grid { width: 100%; max-width: 1920px; margin: 0 auto; display: grid; }
.compact-expertise-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.compact-expertise-grid > a { min-height: 150px; padding: 20px clamp(20px, 2vw, 40px); display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,.14); }
.compact-expertise-grid > a:first-child { border-left: 0; }
.compact-expertise-grid small, .compact-division small { color: var(--red); font-size: 13px; }
.compact-expertise-grid strong { margin: 13px 0 12px; font-size: clamp(17px, 1.3vw, 25px); line-height: 1.15; }
.compact-expertise-grid span { color: #aeb4bb; font-size: clamp(11px, .78vw, 14px); }
.compact-division-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.compact-division { min-height: 118px; padding: 14px clamp(18px, 1.8vw, 34px); border-left: 1px solid rgba(255,255,255,.14); }
.compact-division:first-child { border-left: 0; }
.compact-division p { margin: 0 0 14px; }
.compact-division a { display: flex; justify-content: space-between; gap: 12px; font-family: Poppins, sans-serif; font-size: clamp(15px, 1.1vw, 21px); font-weight: 500; line-height: 1.15; }
.compact-division a span { color: var(--red); }

.division-page { background: #1a1b1d; color: var(--white); }
.division-hero-page { position: relative; min-height: 100svh; padding: calc(var(--header-h) + var(--division-subnav-h) + 72px) 0 0; overflow: hidden; background: #1a1b1d; }
.division-hero-page::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(11,13,15,.98) 0%, rgba(11,13,15,.78) 43%, rgba(11,13,15,.58) 100%), var(--division-image); background-position: center; background-size: cover; opacity: .42; filter: grayscale(1) contrast(1.14); }
.division-hero-page::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.025), transparent 45%, rgba(0,0,0,.72)); pointer-events: none; }
.division-hero-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, transparent 20%, black 60%); }
.division-hero-layout { position: relative; z-index: 1; min-height: calc(100svh - var(--header-h) - var(--division-subnav-h) - 185px); display: grid; grid-template-columns: minmax(350px, .72fr) minmax(500px, 1.25fr) 120px; align-items: center; gap: clamp(45px, 6vw, 110px); }
.division-copy { max-width: 580px; }
.division-copy h1 { font-size: clamp(52px, 4.3vw, 82px); line-height: 1.02; }
.division-copy h1 span { color: var(--red); }
.division-copy > p:not(.eyebrow) { max-width: 520px; margin: 28px 0 0; color: #d3d6d9; font-size: clamp(17px, 1.2vw, 22px); line-height: 1.45; }
.division-visual { position: relative; height: min(52vh, 540px); min-height: 400px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: #151719; box-shadow: 0 26px 80px rgba(0,0,0,.38); }
.division-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(237,9,37,.22), transparent 38%, rgba(0,0,0,.1)); }
.division-visual img { filter: grayscale(.88) contrast(1.2) brightness(.64); }
.visual-grid { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 72px 72px; pointer-events: none; }
.division-progress { align-self: center; padding-left: 22px; display: flex; flex-direction: column; gap: 48px; border-left: 1px solid rgba(255,255,255,.7); }
.division-progress div { display: flex; flex-direction: column; gap: 8px; color: #aeb3b8; font-family: Poppins, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.division-progress strong { color: inherit; font-size: 13px; font-weight: 500; }
.division-progress .active { color: var(--white); }
.division-progress .active strong { color: var(--red); }
.division-bottom { position: relative; z-index: 2; padding-top: 24px; padding-bottom: 38px; border-top: 1px solid rgba(255,255,255,.3); }
.division-bottom > p { margin: 0 0 22px; display: flex; align-items: center; gap: 14px; font-family: Poppins, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.division-bottom > p span { width: 44px; height: 2px; background: var(--red); }
.division-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.division-feature { min-height: 62px; padding: 0 clamp(15px, 1.6vw, 30px); display: flex; align-items: center; gap: 14px; border-left: 1px solid rgba(255,255,255,.22); }
.division-feature:first-child { padding-left: 0; border-left: 0; }
.division-feature span { color: var(--red); font-family: Poppins, sans-serif; font-size: 11px; }
.division-feature strong { font-family: Poppins, sans-serif; font-size: clamp(10px, .72vw, 13px); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; line-height: 1.25; }
.division-feature-product { min-width: 0; gap: 14px; }
.division-feature-product img { width: clamp(76px, 5.7vw, 102px); height: 68px; flex: 0 0 auto; object-fit: contain; filter: brightness(2.15) contrast(1.08); mix-blend-mode: screen; transform: scale(1.12); }
.division-feature-product i { width: 64px; color: var(--white); font-family: Poppins, sans-serif; font-size: 34px; font-weight: 300; font-style: normal; line-height: 1; text-align: center; }

/* Normand Innovation: dedicated first screen */
[data-division="innovation"] { background: #1a1b1d; }
[data-division="innovation"] .division-subnav { background: #242527; }
[data-division="innovation"] .division-local-panel { padding: 18px 28px 20px; background: #1a1b1d; border-color: rgba(255,255,255,.18); box-shadow: 0 24px 50px rgba(0,0,0,.42); }
.division-page-body .page-global-menu { top: calc(100% + var(--division-subnav-h)); max-height: calc(100vh - var(--header-h) - var(--division-subnav-h)); }
[data-division="innovation"] .local-menu-column { display: flex; flex-direction: column; }
[data-division="innovation"] .local-menu-column > div { gap: 0; }
[data-division="innovation"] .local-menu-column a { min-height: 65px; }
[data-division="innovation"] .local-product-card { display: grid; }
.division-page-innovation { background: #1a1b1d; }
.division-page-innovation .division-hero-page { background: #1a1b1d; }
.division-page-innovation .division-hero-page::before { background-image: radial-gradient(ellipse at 58% 42%, rgba(62,64,67,.14), transparent 43%), linear-gradient(180deg, #1a1b1d 0%, #1c1d1f 54%, #1a1b1d 100%); opacity: 1; filter: none; }
.division-page-innovation .division-hero-page::after { background: linear-gradient(180deg, rgba(0,0,0,.08), transparent 54%, rgba(8,9,10,.26)); }
.division-page-innovation .division-hero-overlay { opacity: .26; mask-image: none; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 178px), linear-gradient(108deg, transparent 0 58%, rgba(255,255,255,.025) 58.1% 58.2%, transparent 58.3%); background-size: auto; }
.division-page-innovation .division-hero-layout { grid-template-columns: minmax(330px, .52fr) minmax(580px, 1.08fr) 110px; gap: clamp(32px, 4vw, 76px); }
.division-page-innovation .division-copy { max-width: 430px; }
.division-page-innovation .division-copy h1 { font-size: clamp(54px, 4.1vw, 76px); font-weight: 600; letter-spacing: -.045em; }
.division-page-innovation .division-copy > p:not(.eyebrow) { max-width: 410px; color: #d7dade; }
.division-page-innovation .division-visual { height: min(50vh, 500px); min-height: 380px; overflow: visible; border: 0; background: transparent; box-shadow: none; }
.division-page-innovation .division-visual::after { display: none; }
.division-page-innovation .division-visual img { object-fit: contain; filter: none; opacity: .9; mix-blend-mode: screen; -webkit-mask-image: radial-gradient(ellipse 74% 76% at 50% 52%, #000 52%, transparent 100%); mask-image: radial-gradient(ellipse 74% 76% at 50% 52%, #000 52%, transparent 100%); }
.division-page-innovation .visual-grid { display: none; }
.division-page-innovation .division-bottom { background: #1a1b1d; }
.division-page-innovation .division-bottom > p { color: #e6e8ea; }
.division-page-innovation .division-feature-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.division-page-innovation .division-feature { min-height: 86px; }

.innovation-synergy { position: relative; min-height: min(760px, 82svh); padding: clamp(82px, 7vw, 128px) 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.12); background: radial-gradient(ellipse at 64% 48%, rgba(62,64,67,.13), transparent 40%), linear-gradient(180deg, #1b1c1e 0%, #191a1c 100%); color: var(--white); }
.innovation-synergy::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(255,255,255,.014) 0 1px, transparent 1px 178px); pointer-events: none; }
.innovation-synergy-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(104deg, transparent 0 58%, rgba(255,255,255,.035) 58.1% 58.2%, transparent 58.3%), radial-gradient(circle at 70% 45%, transparent 0 145px, rgba(255,255,255,.06) 146px 147px, transparent 148px); }
.innovation-synergy-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(360px, .58fr) minmax(560px, 1.18fr); align-items: center; gap: clamp(58px, 7vw, 132px); }
.innovation-synergy-copy { max-width: 500px; }
.innovation-synergy-copy h2 { margin: 0; font-family: Poppins, sans-serif; font-size: clamp(50px, 4.25vw, 78px); font-weight: 600; line-height: 1.02; letter-spacing: -.045em; }
.innovation-synergy-copy h2 span { color: var(--red); }
.innovation-synergy-copy > p:not(.eyebrow) { max-width: 460px; margin: 28px 0 0; color: #d6d8da; font-size: clamp(17px, 1.18vw, 22px); line-height: 1.5; }
.innovation-video-card { min-height: 460px; position: relative; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.28); border-radius: 22px; background: rgba(18,19,21,.5); box-shadow: inset 0 0 80px rgba(0,0,0,.18); }
.innovation-video-card::before { content: ""; position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 110px 110px; }
.innovation-video-logo { width: min(400px, 52%); height: 84px; position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 10px; }
.innovation-video-logo img { width: auto; object-fit: contain; mix-blend-mode: screen; }
.innovation-video-logo img:first-child { height: 46%; }
.innovation-video-logo img:last-child { height: 72%; mix-blend-mode: normal; }
.innovation-play { width: 104px; height: 78px; position: absolute; left: 64%; top: 50%; z-index: 2; border: 0; display: grid; place-items: center; background: var(--red); color: var(--white); transform: translateY(-50%) skew(-12deg); cursor: pointer; }
.innovation-play span { font-size: 36px; font-weight: 300; transform: skew(12deg); }
.home-page .site-footer { background: #1a1b1d; border-top: 1px solid rgba(255,255,255,.14); }

/* Homepage — expertise, sectors and contact */
.home-video-showcase, .home-expertise-showcase, .home-sector-showcase, .home-history-showcase, .home-contact-strip { background: #181a1c; color: var(--white); font-family: Poppins, sans-serif; }
.home-video-showcase { position: relative; padding: clamp(54px, 5vw, 92px) 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); background: #181a1c; }
.home-video-layout { position: relative; z-index: 1; }
.home-video-player { width: 100%; aspect-ratio: 16 / 8.8; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: #111212; box-shadow: 0 34px 90px rgba(0,0,0,.42); }
.home-video-slides, .home-video-slides img, .home-video-shade { position: absolute; inset: 0; }
.home-video-slides { opacity: 0; transition: opacity .65s ease; }
.home-video-player.is-playing .home-video-slides { opacity: 1; }
.home-video-slides img { opacity: 0; transform: scale(1.025); transition: opacity .9s ease, transform 5.5s ease; }
.home-video-slides img.is-active { opacity: 1; transform: scale(1.08); }
.home-video-shade { z-index: 1; background: rgba(8,9,10,.16); transition: background .55s ease; }
.home-video-player.is-playing .home-video-shade { background: linear-gradient(180deg, rgba(8,9,10,.04), rgba(8,9,10,.22)); }
.home-video-logo { width: min(560px, 46%); height: clamp(70px, 7vw, 126px); position: absolute; left: 50%; top: 50%; z-index: 2; display: flex; align-items: center; justify-content: center; gap: clamp(10px, 1vw, 18px); transform: translate(-50%, -50%); transition: opacity .35s ease, transform .45s ease; }
.home-video-logo img { width: auto; object-fit: contain; }
.home-video-logo img:first-child { height: 52%; mix-blend-mode: screen; }
.home-video-logo img:last-child { height: 82%; }
.home-video-player.is-playing .home-video-logo { opacity: 0; transform: translate(-50%, -50%) scale(.92); }
.home-video-control { width: clamp(72px, 5vw, 96px); height: clamp(68px, 4.7vw, 90px); position: absolute; right: clamp(18px, 2.2vw, 42px); bottom: clamp(18px, 2.2vw, 42px); z-index: 3; display: grid; place-items: center; border: 0; border-radius: 3px; background: var(--red); color: var(--white); cursor: pointer; box-shadow: 0 16px 42px rgba(0,0,0,.35); transition: background .2s ease, scale .2s ease; }
.home-video-control:hover { background: #ff1432; scale: 1.04; }
.home-video-control:focus-visible { outline: 3px solid var(--white); outline-offset: 5px; }
.home-video-control-icon { width: 0; height: 0; margin-left: 5px; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 17px solid currentColor; }
.home-video-player.is-playing .home-video-control-icon { width: 16px; height: 20px; margin-left: 0; border: 0; border-left: 5px solid currentColor; border-right: 5px solid currentColor; }
.home-video-progress { height: 2px; position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; overflow: hidden; background: rgba(255,255,255,.22); }
.home-video-progress span { width: 100%; height: 100%; display: block; background: var(--red); transform: scaleX(0); transform-origin: left; }
.home-video-player.is-playing .home-video-progress span { animation: home-video-progress 3.2s linear infinite; }
@keyframes home-video-progress { to { transform: scaleX(1); } }
.home-expertise-showcase { padding: clamp(88px, 7vw, 132px) 0; border-top: 1px solid rgba(255,255,255,.12); }
.home-showcase-heading { max-width: 900px; margin-bottom: clamp(48px, 6vw, 92px); }
.home-showcase-heading .section-kicker, .home-sector-copy .section-kicker, .home-history-copy .section-kicker, .home-contact-strip .section-kicker { margin: 0 0 20px; color: var(--red); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .2em; }
.home-showcase-heading h2, .home-sector-copy h2, .home-history-copy h2, .home-contact-intro > h2 { margin: 0; font-size: clamp(46px, 4.35vw, 82px); font-weight: 600; line-height: 1.01; letter-spacing: -.045em; }
.home-showcase-heading h2 span, .home-sector-copy h2 span, .home-history-copy h2 span, .home-contact-intro > h2 span { color: var(--red); }
.home-showcase-heading > p:last-child { max-width: 650px; margin: 24px 0 0; color: #bdc2c7; font-size: clamp(14px, 1vw, 18px); line-height: 1.55; }
.home-expertise-list { border-top: 1px solid rgba(255,255,255,.2); }
.home-expertise-row { height: clamp(320px, 23vw, 410px); min-height: 0; display: grid; grid-template-columns: 64px minmax(280px, .75fr) minmax(460px, 1.25fr); align-items: stretch; border-bottom: 1px solid rgba(255,255,255,.18); background: #1b1d1f; transition: background .25s ease; }
.home-expertise-row:hover { background: #202326; }
.home-expertise-number { padding: 34px 10px 0; color: var(--red); font-size: 16px; font-weight: 600; }
.home-expertise-row > div { align-self: center; padding: 34px clamp(30px, 4vw, 74px) 34px 20px; }
.home-expertise-row h3 { margin: 0; font-size: clamp(29px, 2.25vw, 43px); font-weight: 600; line-height: .98; letter-spacing: -.04em; }
.home-expertise-row p { max-width: 420px; margin: 20px 0; color: #bcc1c6; font-size: clamp(13px, .9vw, 16px); line-height: 1.5; }
.home-expertise-row small { color: var(--red); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.home-expertise-row figure { min-width: 0; min-height: 0; height: 100%; margin: 0; overflow: hidden; }
.home-expertise-row img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .3s; filter: saturate(.72) brightness(.78); }
.home-expertise-row:hover img { transform: scale(1.035); filter: saturate(.88) brightness(.86); }
.home-sector-showcase { padding: clamp(90px, 8vw, 150px) 0; border-top: 1px solid rgba(255,255,255,.12); background: #1a1c1e; }
.home-sector-layout { display: grid; grid-template-columns: minmax(380px, .78fr) minmax(570px, 1.22fr); align-items: center; gap: clamp(55px, 8vw, 145px); }
.home-sector-copy { max-width: 680px; }
.home-sector-copy h2 { max-width: 690px; }
.home-sector-copy > p:not(.section-kicker) { margin: 26px 0 0; color: #d0d3d6; font-size: clamp(16px, 1.1vw, 21px); line-height: 1.48; }
.home-sector-copy .primary-btn { min-height: 62px; font-size: 15px; }
.home-sector-copy .primary-btn span { margin-left: 24px; font-size: 24px; }
.home-sector-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; border: 1px solid rgba(255,255,255,.3); border-radius: 14px; }
.home-sector-grid a { min-width: 0; height: clamp(235px, 20vw, 360px); position: relative; overflow: hidden; }
.home-sector-grid img { filter: saturate(.82) brightness(.78); transition: transform .6s, filter .3s; }
.home-sector-grid a:hover img { transform: scale(1.045); filter: saturate(.95) brightness(.86); }
.home-sector-grid span { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 20px 16px; background: linear-gradient(transparent, rgba(12,13,14,.9)); font-size: 15px; }
.home-history-showcase { padding: clamp(90px, 8vw, 150px) 0; border-top: 1px solid rgba(255,255,255,.12); background: #181a1c; }
.home-history-layout { display: grid; grid-template-columns: minmax(410px, .88fr) minmax(540px, 1.12fr); align-items: center; gap: clamp(58px, 8vw, 140px); }
.home-history-copy { max-width: 680px; }
.home-history-copy > p:not(.section-kicker) { margin: 28px 0 0; color: #d0d3d6; font-size: clamp(16px, 1.08vw, 20px); line-height: 1.5; }
.home-history-copy .primary-btn { margin-top: 34px; min-height: 62px; font-size: 15px; }
.home-history-media { min-width: 0; height: clamp(500px, 43vw, 720px); margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; }
.home-history-media img { object-position: center; filter: saturate(.78) brightness(.83); }
.home-contact-strip { padding: clamp(78px, 7vw, 126px) 0; border-top: 1px solid rgba(255,255,255,.14); background: radial-gradient(ellipse at 80% 30%, rgba(237,9,37,.13), transparent 38%), #17191b; }
.home-contact-layout { display: grid; grid-template-columns: minmax(360px, .78fr) minmax(520px, 1.12fr); align-items: start; gap: clamp(58px, 8vw, 140px); }
.home-contact-intro { position: sticky; top: calc(var(--header-h) + 38px); }
.home-contact-intro > p:not(.section-kicker) { max-width: 620px; margin: 30px 0 0; color: #c2c7cb; font-size: clamp(16px, 1.05vw, 20px); line-height: 1.55; }
.home-contact-details { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.home-contact-intro .home-contact-details { margin-top: 34px; }
.home-contact-details > a:not(.hero-cta) { color: #f2f3f4; font-size: clamp(17px, 1.3vw, 23px); }
.home-contact-panel { width: 100%; background: rgba(23,24,26,.96); }

/* Normand Innovation — products only */
.division-page-innovation .division-visual { height: min(56vh, 560px); min-height: 420px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: #151719; box-shadow: 0 26px 80px rgba(0,0,0,.34); }
.division-page-innovation .division-visual img { object-fit: cover; object-position: center; opacity: 1; filter: saturate(.88) brightness(.82); mix-blend-mode: normal; -webkit-mask-image: none; mask-image: none; }
.innovation-products-page { background: #181a1c; color: var(--white); font-family: Poppins, sans-serif; }
.innovation-about-product { padding-top: clamp(88px, 8vw, 150px); padding-bottom: clamp(88px, 8vw, 150px); display: grid; grid-template-columns: minmax(370px, .78fr) minmax(520px, 1.22fr); align-items: center; gap: clamp(58px, 8vw, 148px); }
.innovation-about-copy .section-kicker, .innovation-catalog-heading .section-kicker { margin: 0 0 22px; color: #c4c8cc; font-size: 11px; text-transform: uppercase; letter-spacing: .22em; }
.innovation-about-copy h2, .innovation-catalog-heading h2 { margin: 0; font-size: clamp(48px, 4.2vw, 78px); font-weight: 600; line-height: 1.02; letter-spacing: -.045em; }
.innovation-about-copy h2 span, .innovation-catalog-heading h2 span { color: var(--red); }
.innovation-about-copy > p:not(.section-kicker) { margin: 28px 0 0; color: #cdd1d5; font-size: clamp(16px, 1.08vw, 20px); line-height: 1.55; }
.innovation-about-media { min-width: 0; height: clamp(520px, 45vw, 760px); margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; }
.innovation-about-media img { object-position: center 44%; filter: saturate(.88) brightness(.84); }
.innovation-catalog { padding-top: clamp(84px, 7vw, 128px); padding-bottom: clamp(90px, 8vw, 144px); border-top: 1px solid rgba(255,255,255,.14); }
.innovation-catalog-products { background: #1a1c1e; }
.innovation-catalog-heading { max-width: 980px; margin-bottom: 38px; }
.innovation-catalog-heading > p:last-child { margin: 20px 0 0; color: #c0c4c8; font-size: clamp(15px, 1vw, 18px); }
.innovation-tabbar { margin-bottom: 26px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,.2); }
.innovation-tabbar > * { min-height: 68px; display: grid; place-items: center; color: #e2e4e6; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
.innovation-tabbar .active { background: var(--red); color: var(--white); }
.innovation-product-grid { display: grid; gap: 16px; }
.innovation-sector-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.innovation-family-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.innovation-product-card { min-width: 0; min-height: 280px; position: relative; overflow: hidden; border: 1px solid #3b3e42; background: #202224; }
.innovation-product-card img { transition: transform .65s, filter .3s; filter: saturate(.8) brightness(.78); }
.innovation-product-card:hover img { transform: scale(1.04); filter: saturate(.95) brightness(.88); }
.innovation-product-card > span { position: absolute; left: 0; right: 0; bottom: 0; min-height: 68px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: linear-gradient(180deg, rgba(20,22,24,.58), rgba(20,22,24,.96)); }
.innovation-product-card strong { font-size: clamp(18px, 1.35vw, 26px); font-weight: 500; }
.innovation-product-card b { color: var(--red); font-size: 28px; font-weight: 300; }
.innovation-product-card-large { min-height: clamp(340px, 30vw, 500px); }
.innovation-product-card-large em { flex: 0 0 auto; padding: 12px 18px; background: var(--red); color: var(--white); font-size: 11px; font-style: normal; text-transform: uppercase; letter-spacing: .1em; }
.innovation-wide-cta { min-height: 70px; margin-top: 30px; padding: 18px 34px; display: flex; align-items: center; justify-content: center; gap: 28px; background: var(--red); color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: .1em; transform: skew(-10deg); }
.innovation-wide-cta > * { transform: skew(10deg); }
.innovation-text-cta { width: max-content; margin: 38px auto 0; padding-bottom: 8px; display: flex; gap: 24px; border-bottom: 1px solid #8f9499; font-size: 14px; }
.innovation-text-cta span { color: var(--red); }

/* Division continuation sections */
.division-continuation { position: relative; background: #1a1b1d; color: var(--white); font-family: Poppins, sans-serif; }
.division-process { padding-top: 34px; padding-bottom: 34px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid rgba(255,255,255,.14); }
.division-process article { min-width: 0; padding: 6px clamp(20px, 2.6vw, 48px); display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: start; gap: 16px; border-left: 1px solid rgba(255,255,255,.18); }
.division-process article:first-child { padding-left: 0; border-left: 0; }
.division-process article:last-child { padding-right: 0; }
.division-process article > strong { color: var(--red); font-size: 18px; font-weight: 600; }
.division-process article > span { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.division-process b { font-size: 15px; font-weight: 500; }
.division-process small { color: #9fa4aa; font-size: 11px; line-height: 1.5; }
.division-services { padding-top: clamp(76px, 7vw, 126px); padding-bottom: clamp(80px, 8vw, 140px); }
.division-section-heading { margin-bottom: 44px; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); align-items: end; gap: clamp(40px, 8vw, 145px); }
.division-section-heading .section-kicker, .division-story-copy .section-kicker { margin: 0 0 18px; display: flex; align-items: center; gap: 16px; color: #c7cbd0; font-size: 10px; text-transform: uppercase; letter-spacing: .22em; }
.division-section-heading .section-kicker::before, .division-story-copy .section-kicker::before { content: ""; width: 44px; height: 2px; flex: 0 0 auto; background: var(--red); }
.division-section-heading h2 { max-width: 980px; margin: 0; font-size: clamp(45px, 4.25vw, 78px); font-weight: 600; line-height: 1; letter-spacing: -.045em; }
.division-section-heading h2 span, .division-story-copy h2 span, .division-final-cta h2 span { color: var(--red); }
.division-section-heading > p { max-width: 490px; margin: 0; color: #bfc3c7; font-size: clamp(14px, 1vw, 18px); line-height: 1.6; }
.division-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.division-service-card { min-width: 0; overflow: hidden; border: 1px solid #3c3f43; background: #202224; color: var(--white); transition: border-color .3s ease, transform .3s ease; }
.division-service-card:hover { border-color: #696e74; transform: translateY(-5px); }
.division-service-media { height: clamp(245px, 20vw, 360px); display: block; overflow: hidden; background: #151719; }
.division-service-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.06) brightness(.76); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.division-service-card:hover .division-service-media img { transform: scale(1.04); filter: saturate(.82) contrast(1.04) brightness(.86); }
.division-service-copy { position: relative; min-height: 110px; padding: 20px 56px 20px 22px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid #3c3f43; }
.division-service-copy strong { font-size: clamp(17px, 1.25vw, 23px); font-weight: 500; line-height: 1.2; }
.division-service-copy small { color: #aeb3b8; font-size: 11px; line-height: 1.45; }
.division-service-copy > b { position: absolute; right: 22px; top: 22px; color: var(--red); font-size: 24px; font-weight: 300; }
.division-service-grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.division-service-grid-6 .division-service-media { height: clamp(220px, 17vw, 310px); }
.division-story { border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); background: #181a1c; }
.division-story-layout { min-height: 590px; display: grid; grid-template-columns: minmax(500px, 1.22fr) minmax(380px, .78fr); align-items: stretch; }
.division-story-media { min-width: 0; margin-left: calc(var(--page-pad) * -1); overflow: hidden; }
.division-story-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.66) brightness(.68); }
.division-story-copy { align-self: center; max-width: 650px; padding: 72px 0 72px clamp(52px, 7vw, 130px); }
.division-story-copy h2 { margin: 0; font-size: clamp(43px, 3.7vw, 68px); font-weight: 600; line-height: 1.02; letter-spacing: -.045em; }
.division-story-copy > p:not(.section-kicker) { margin: 28px 0; color: #c2c6ca; font-size: clamp(15px, 1.05vw, 19px); line-height: 1.6; }
.division-story-copy > a { width: max-content; padding: 10px 0; display: flex; align-items: center; gap: 30px; border-bottom: 2px solid var(--red); color: #f2f3f4; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .13em; }
.division-story-copy > a span { color: var(--red); font-size: 20px; }
.division-final-cta { overflow: hidden; background: linear-gradient(112deg, #1e2023 0%, #1a1c1e 58%, #222529 100%); }
.division-final-cta > div { min-height: 190px; display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.division-final-cta h2 { margin: 0; font-size: clamp(38px, 3.5vw, 66px); font-weight: 600; line-height: 1; letter-spacing: -.035em; }
.division-final-cta .hero-cta { margin: 0; flex: 0 0 auto; }
.division-footer { padding: 42px 0 30px; border-top: 1px solid rgba(255,255,255,.14); background: #151719; }
.division-footer > div { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 42px; }
.division-footer .brand-wordmark { height: 34px; }
.division-footer p { margin: 0; color: #747a80; font-size: 9px; text-transform: uppercase; letter-spacing: .19em; }
.division-footer nav { display: flex; align-items: center; gap: 24px; }
.division-footer nav a { color: #aeb3b8; font-size: 11px; }
.division-footer nav a:hover { color: var(--white); }
.division-page-innovation + * { background-color: #1a1b1d; }

/* Careers */
.career-page-body { background: #1a1b1d; color: var(--white); font-family: Poppins, sans-serif; }
.career-page-body .nav-primary > li > a[href="carrieres.html"] { color: var(--red); }
.career-page { background: #1a1b1d; }
.career-hero { position: relative; min-height: 100svh; padding: calc(var(--header-h) + clamp(74px, 7vw, 128px)) 0 0; overflow: hidden; background: radial-gradient(ellipse at 76% 38%, rgba(69,72,76,.34), transparent 34%), linear-gradient(150deg, #1a1b1d 0%, #18191b 58%, #202225 100%); }
.career-hero::before { content: ""; position: absolute; width: min(47vw, 820px); aspect-ratio: .72; right: -8vw; top: -12%; background: linear-gradient(180deg, rgba(237,9,37,.23), rgba(237,9,37,0)); transform: skew(-22deg); }
.career-grid { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 88px 88px; mask-image: linear-gradient(90deg, transparent 18%, black 70%); pointer-events: none; }
.career-hero-layout { position: relative; z-index: 1; min-height: calc(100svh - var(--header-h) - 190px); display: grid; grid-template-columns: minmax(430px, .82fr) minmax(520px, 1fr); align-items: center; gap: clamp(60px, 8vw, 150px); }
.career-copy { max-width: 720px; }
.career-copy h1 { font-size: clamp(58px, 5.3vw, 102px); line-height: .98; }
.career-copy > p:not(.eyebrow) { max-width: 650px; margin: 32px 0 0; color: #cdd1d5; font-size: clamp(17px, 1.15vw, 22px); line-height: 1.5; }
.career-actions { margin-top: 34px; display: flex; align-items: center; gap: 34px; }
.career-actions .hero-cta { margin-top: 0; }
.career-text-link { display: inline-flex; gap: 11px; align-items: center; color: #d8dbde; font-size: 13px; text-transform: uppercase; letter-spacing: .07em; }
.career-text-link span { color: var(--red); font-size: 22px; }
.career-hero-art { min-height: min(58vh, 580px); position: relative; display: grid; place-items: center; }
.career-hero-art::before { content: ""; position: absolute; inset: 5% 2% 8%; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.008)); box-shadow: inset 0 0 80px rgba(0,0,0,.26), 0 28px 80px rgba(0,0,0,.25); }
.career-symbol { width: min(390px, 60%); position: relative; z-index: 2; filter: drop-shadow(0 18px 40px rgba(237,9,37,.25)); }
.career-symbol img { height: auto; object-fit: contain; }
.career-orbit { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; transform: rotate(-14deg); }
.career-orbit-one { width: 72%; aspect-ratio: 1; }
.career-orbit-two { width: 48%; aspect-ratio: 1; }
.career-art-caption { position: absolute; right: 7%; bottom: 12%; z-index: 3; display: grid; grid-template-columns: auto auto; gap: 3px 12px; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.6); }
.career-art-caption small { grid-row: 1 / 3; color: var(--red); font-size: 12px; }
.career-art-caption strong { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.career-art-caption span { color: #9ca2a8; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.career-principles { position: relative; z-index: 2; margin-top: 34px; padding-top: 26px; padding-bottom: 30px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.19); }
.career-principles article { min-width: 0; padding: 0 clamp(20px, 3vw, 55px); display: flex; gap: 18px; align-items: flex-start; border-left: 1px solid rgba(255,255,255,.18); }
.career-principles article:first-child { padding-left: 0; border-left: 0; }
.career-principles article > span { color: var(--red); font-size: 11px; }
.career-principles article div { display: flex; flex-direction: column; gap: 5px; }
.career-principles strong { font-size: 13px; text-transform: uppercase; letter-spacing: .11em; }
.career-principles small { color: #9da2a7; font-size: 11px; }
.career-openings { padding: clamp(100px, 9vw, 170px) 0; border-top: 1px solid rgba(255,255,255,.08); background: #1a1b1d; }
.career-section-heading { margin-bottom: clamp(54px, 6vw, 92px); display: grid; grid-template-columns: 1.15fr .7fr; align-items: end; gap: clamp(45px, 9vw, 160px); }
.career-section-heading .eyebrow { margin-bottom: 24px; }
.career-section-heading h2, .career-spontaneous h2 { margin: 0; font-size: clamp(46px, 4.3vw, 82px); font-weight: 600; line-height: 1.02; letter-spacing: -.045em; }
.career-section-heading h2 span, .career-spontaneous h2 span { color: var(--red); }
.career-section-heading > p { margin: 0; color: #adb2b7; font-size: clamp(16px, 1.05vw, 20px); line-height: 1.55; }
.career-jobs { border-top: 1px solid rgba(255,255,255,.28); }
.career-job { min-height: 150px; padding: 28px 6px; display: grid; grid-template-columns: 58px minmax(300px, 1fr) minmax(260px, .65fr) 42px; align-items: center; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.18); transition: background .25s ease, padding .25s ease; }
.career-job:hover, .career-job:focus-visible { padding-left: 24px; padding-right: 24px; background: rgba(255,255,255,.035); }
.career-job-number { color: var(--red); font-size: 12px; }
.career-job-main small { color: #969ca2; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.career-job-main h3 { margin: 8px 0 0; font-size: clamp(24px, 2vw, 38px); font-weight: 500; line-height: 1.16; }
.career-job-meta { display: flex; gap: 28px; color: #bfc3c7; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.career-job b { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--red); border-radius: 50%; color: var(--red); transition: transform .25s, border-color .25s, background .25s; }
.career-job b svg { width: 19px; height: 19px; display: block; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.career-job:hover b { transform: translate(3px,-3px); border-color: var(--red); }
.career-spontaneous { padding: clamp(90px, 8vw, 150px) 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.12); background: radial-gradient(ellipse at 22% 60%, rgba(66,69,73,.26), transparent 40%), #191a1c; }
.career-spontaneous-layout { display: grid; grid-template-columns: 1fr .7fr; align-items: center; gap: clamp(60px, 10vw, 180px); }
.career-spontaneous-layout > div:last-child > p { margin: 0; color: #bdc1c5; font-size: clamp(16px, 1.1vw, 21px); line-height: 1.55; }
.career-spontaneous .hero-cta { margin-top: 32px; }
.career-footer { padding: 28px 0; border-top: 1px solid rgba(255,255,255,.14); background: #151515; color: #8f959b; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.career-footer > div { display: flex; justify-content: space-between; gap: 24px; }
.career-footer a { color: var(--white); }

/* Application */
.application-page { min-height: 100svh; background: #1a1b1d; }
.application-hero { position: relative; min-height: 100svh; padding: calc(var(--header-h) + clamp(58px, 5vw, 90px)) 0 clamp(70px, 6vw, 110px); overflow: hidden; background: radial-gradient(ellipse at 12% 36%, rgba(65,68,72,.24), transparent 38%), #1a1b1d; }
.application-hero::after { content: ""; position: absolute; width: 38vw; height: 130%; right: -18vw; top: -15%; background: linear-gradient(180deg, rgba(237,9,37,.3), transparent 70%); transform: skew(-22deg); }
.application-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(380px, .72fr) minmax(560px, 1fr); align-items: start; gap: clamp(60px, 8vw, 150px); }
.application-intro { position: sticky; top: calc(var(--header-h) + 48px); }
.application-back { display: inline-flex; margin-bottom: clamp(50px, 6vw, 90px); color: #9da3a9; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.application-reference { margin: 0 0 17px; color: var(--red); font-size: 11px; font-weight: 600; letter-spacing: .13em; }
.application-intro h1 { max-width: 720px; font-size: clamp(48px, 4.4vw, 82px); line-height: 1.02; }
.application-intro > p:not(.eyebrow):not(.application-reference) { max-width: 570px; margin: 28px 0 0; color: #c1c5c9; font-size: clamp(16px, 1vw, 20px); line-height: 1.55; }
.application-highlights { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 10px; }
.application-highlights span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); color: #aeb3b8; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.application-panel { padding: clamp(28px, 3vw, 54px); border: 1px solid rgba(255,255,255,.17); background: rgba(21,21,21,.88); box-shadow: 0 30px 90px rgba(0,0,0,.35); backdrop-filter: blur(14px); }
.application-panel::before { content: ""; display: block; width: 90px; height: 3px; margin: calc(clamp(28px, 3vw, 54px) * -1) 0 clamp(28px, 3vw, 48px) calc(clamp(28px, 3vw, 54px) * -1); background: var(--red); }
.application-panel-head { margin-bottom: 38px; display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.application-panel-head > span { font-size: clamp(22px, 1.7vw, 31px); font-weight: 500; }
.application-panel-head small { color: var(--red); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; text-align: right; }
.application-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px 24px; }
.application-form .form-field input, .application-form .form-field select, .application-form .form-field textarea { font-family: Poppins, sans-serif; }
.application-form textarea { min-height: 120px; }
.cv-dropzone { min-height: 118px; padding: 20px; display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 18px; border: 1px dashed rgba(255,255,255,.3); background: rgba(255,255,255,.018); cursor: pointer; transition: border-color .2s, background .2s; }
.cv-dropzone:hover { border-color: var(--red); background: rgba(237,9,37,.035); }
.cv-dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.cv-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: var(--white); font-size: 23px; }
.cv-dropzone > span:nth-of-type(2) { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.cv-dropzone strong { max-width: 100%; overflow: hidden; color: var(--white); font-size: 13px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.cv-dropzone small { color: #848a90; font-size: 9px; }
.cv-dropzone b { color: var(--red); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.application-consent { display: flex; align-items: flex-start; gap: 12px; color: #969ca2; font-size: 11px; line-height: 1.4; }
.application-consent input { accent-color: var(--red); }
.contact-submit:disabled { cursor: wait; opacity: .8; }
.contact-submit.is-sent { background: #394147; }

.about-page-body { background: #1a1b1d; }
.about-page { min-height: 100svh; padding-top: var(--header-h); background: #1a1b1d; color: var(--white); }
.about-page-body .main-nav > .nav-primary > li:last-child > a { color: var(--red); }
.about-hero-page { position: relative; min-height: 54vw; max-height: 790px; padding: clamp(82px, 7vw, 130px) 0 80px; overflow: hidden; background: radial-gradient(circle at 72% 46%, rgba(56,61,66,.56), transparent 35%), #1a1b1d; }
.about-hero-page::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 86px 86px; mask-image: linear-gradient(90deg, transparent 25%, black 65%); }
.about-hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(500px, 1fr) minmax(480px, 1fr); align-items: center; gap: clamp(60px, 8vw, 150px); }
.about-copy h1 { font-size: clamp(48px, 4vw, 76px); }
.about-copy > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 0; color: #d0d3d6; font-size: clamp(17px, 1.25vw, 23px); line-height: 1.45; }
.about-symbol { min-height: 430px; position: relative; display: grid; place-items: center; }
.about-symbol::before, .about-symbol::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.about-symbol::before { width: 76%; aspect-ratio: 1; }
.about-symbol::after { width: 50%; aspect-ratio: 1; }
.about-symbol img { width: min(520px, 82%); height: auto; position: relative; z-index: 1; }
.about-symbol > span { position: absolute; right: 0; z-index: 2; color: #c6cacf; font-family: Poppins, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; line-height: 1.5; }
.about-strength { padding-top: 60px; padding-bottom: 60px; }
.about-strength-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.about-strength-heading h2 { margin: 0; font-size: clamp(42px, 3.5vw, 68px); }
.about-strength-heading h2 span { color: var(--red); }
.about-strength-heading p { max-width: 590px; margin: 0; padding-left: 28px; border-left: 1px solid rgba(255,255,255,.55); font-size: 18px; line-height: 1.45; }
.about-division-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.about-division-grid a { min-height: 150px; padding: 20px 28px; display: flex; flex-direction: column; gap: 10px; border-left: 1px solid rgba(255,255,255,.24); }
.about-division-grid a:first-child { border-left: 0; padding-left: 0; }
.about-division-grid small, .about-division-grid span { color: var(--red); font-size: 12px; }
.about-division-grid strong { margin-top: auto; font-family: Poppins, sans-serif; font-size: clamp(14px, 1vw, 19px); line-height: 1.2; }
.about-values { padding-top: 36px; padding-bottom: 60px; border-top: 1px solid rgba(255,255,255,.2); }
.about-values > div { display: grid; grid-template-columns: repeat(3, 1fr) auto; align-items: center; gap: 28px; }
.about-values article { display: flex; flex-direction: column; gap: 8px; }
.about-values article strong { font-family: Poppins, sans-serif; }
.about-values article span { color: #aeb3b8; font-size: 14px; }
.about-values .hero-cta { margin-top: 0; }

.accessibility { position: fixed; left: 18px; bottom: 18px; z-index: 70; width: 58px; height: 58px; border: 0; border-radius: 50%; background: #f22418; color: white; font-size: 28px; box-shadow: inset 0 0 0 4px #f22418, inset 0 0 0 6px white; cursor: pointer; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --header-h: 88px; --page-pad: 36px; }
  .main-nav { gap: 20px; }
  .nav-primary { gap: 14px; }
  .main-nav > .nav-primary > li > a, .nav-trigger { font-size: 10px; }
  .desktop-tools { margin-left: 18px; gap: 12px; }
  .header-contact { min-width: 142px; min-height: 54px; padding: 12px 20px; font-size: 10px; }
  .menu-column { gap: 20px; }
  .hero { padding-top: calc(var(--header-h) + 48px); }
  .hero-industries, .scroll-cue { display: none; }
  .feature-grid, .feature-large .feature-grid, .feature-reverse .feature-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-column:last-child { display: none; }
  .division-local-panel { left: var(--page-pad); }
  .division-hero-layout { grid-template-columns: minmax(310px, .75fr) minmax(400px, 1fr) 90px; gap: 34px; }
  .division-page-innovation .division-hero-layout { grid-template-columns: minmax(290px, .52fr) minmax(410px, 1.08fr) 74px; gap: 22px; }
  .innovation-synergy-layout { grid-template-columns: minmax(300px, .58fr) minmax(420px, 1.18fr); gap: 38px; }
  .about-hero-layout { grid-template-columns: 1fr 1fr; gap: 50px; }
  .career-hero-layout { grid-template-columns: minmax(350px, .82fr) minmax(430px, 1fr); gap: 42px; }
  .application-layout { grid-template-columns: minmax(330px, .72fr) minmax(500px, 1fr); gap: 42px; }
}

@media (max-width: 1080px) {
  :root { --page-pad: 22px; --header-h: 76px; }
  body { font-size: 18px; }
  .header-inner { justify-content: space-between; }
  .brand-wordmark { height: 38px; gap: 5px; }
  .mobile-actions { display: flex; }
  .desktop-tools { display: none; }
  .mobile-actions .search-button { display: block; color: var(--white); }
  .mobile-toggle { display: flex; width: 44px; height: 44px; border: 0; background: transparent; flex-direction: column; justify-content: center; gap: 8px; padding: 7px; color: inherit; }
  .mobile-toggle span { display: block; width: 100%; height: 2px; background: currentColor; transition: transform .2s; }
  .site-header.mobile-open .mobile-toggle span:first-child { transform: translateY(5px) rotate(45deg); }
  .site-header.mobile-open .mobile-toggle span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; height: calc(100vh - var(--header-h)); display: none; overflow-y: auto; padding: 28px var(--page-pad) 60px; background: var(--charcoal); color: white; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 24px; }
  .site-header.mobile-open .main-nav { display: flex; }
  .site-header.mobile-open { background: var(--charcoal); color: white; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .nav-primary { gap: 0; }
  .mobile-nav-tools { margin-top: 34px; padding-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; border-top: 1px solid rgba(255,255,255,.15); }
  .mobile-nav-tools .language-select { height: 38px; padding-left: 0; font-size: 16px; }
  .mobile-nav-tools .header-contact { min-width: min(270px, 100%); min-height: 60px; padding: 15px 27px; font-size: 12px; }
  .main-nav .nav-primary > li > a,
  .main-nav .nav-primary > li > .nav-trigger { width: 100%; justify-content: space-between; padding: 16px 0; font-size: 22px; font-weight: 500; line-height: 1.2; letter-spacing: .01em; }
  .mega-menu { position: static; z-index: auto; padding: 0; max-height: 0; overflow: hidden; transform: none; transition: max-height .35s ease, opacity .2s; }
  .nav-item.active .mega-menu { max-height: 4200px; padding: 22px 0 36px; overflow: visible; }
  .mega-grid { grid-template-columns: 1fr; gap: 34px; }
  .menu-column { gap: 16px; }
  .menu-column a, .menu-column .menu-heading { font-size: 18px; }
  .expertise-grid, .divisions-grid { grid-template-columns: 1fr; gap: 30px; }
  .expertise-column { min-height: 0; padding: 28px 0 0; }
  .divisions-grid .expertise-column { min-height: 0; padding: 28px 0 0; }
  .divisions-grid .expertise-column h2 { min-height: 0; font-size: 25px; }
  .division-description { min-height: 0; margin-bottom: 20px; font-size: 13px; }
  .expertise-column:first-child { padding-top: 0; }
  .expertise-column + .expertise-column { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .expertise-number { font-size: 15px; }
  .expertise-label { font-size: 10px; }
  .expertise-column h2 { min-height: 0; margin-bottom: 22px; font-size: 25px; }
  .expertise-links { gap: 12px; }
  .expertise-links a { font-size: 16px; }
  .expertise-cta, .all-products { margin-top: 28px; }
  .product-link { grid-template-columns: 82px minmax(0, 1fr) 12px; }
  .product-link strong, .all-products strong { font-size: 14px; }
  .product-link small, .all-products small { font-size: 11px; }
  .hero { min-height: 100svh; align-items: flex-start; padding: calc(var(--header-h) + 76px) 0 76px; }
  .hero::before { background-position: 64% 72%; background-size: 178% auto; opacity: .66; }
  .hero::after { background: linear-gradient(105deg, rgba(26,27,29,.98) 0%, rgba(26,27,29,.9) 48%, rgba(26,27,29,.34) 100%); }
  .hero-main { width: 100%; }
  .hero-grid { justify-content: flex-start; padding-bottom: 0; }
  .hero-grid, .split-grid, .feature-grid, .feature-large .feature-grid, .feature-reverse .feature-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(46px, 12vw, 64px); line-height: 1.01; }
  .hero-description { max-width: 520px; margin-top: 36px; }
  .hero-cta { min-height: 62px; margin-top: 30px; padding: 16px 25px; gap: 28px; font-size: 12px; }
  .hero-industries, .scroll-cue { display: none; }
  .hero-slides { position: static; width: max-content; margin-top: 48px; padding-left: 12px; gap: 15px; font-size: 12px; }
  .hero-values { position: static; width: 100%; margin-top: 72px; display: grid; grid-template-columns: 1fr; gap: 12px; }
  .hero-value { padding: 0; gap: 16px; }
  .hero-value + .hero-value { padding-left: 0; border-left: 0; }
  .value-slash { width: 13px; height: 32px; }
  .hero-value strong { font-size: 12px; }
  .hero-value small { font-size: 12px; white-space: normal; }
  .split-intro, .feature { padding: 95px 0; }
  .split-grid { margin-right: 0; }
  .split-grid, .feature-grid { gap: 48px; }
  .copy-block h2, .feature h2 { font-size: 38px; }
  .statement { padding: 84px 0; }
  .statement-copy { font-size: clamp(34px, 8.8vw, 48px); line-height: 1.08; letter-spacing: -.03em; }
  .feature-reverse .feature-copy { order: -1; }
  .feature .hairline { margin-bottom: 46px; }
  .primary-btn { min-height: 64px; font-size: 17px; padding: 14px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 28px; }
  .home-expertise-row { height: 300px; min-height: 0; grid-template-columns: 54px minmax(250px, .82fr) minmax(350px, 1.18fr); }
  .home-sector-layout, .home-history-layout, .home-contact-layout, .innovation-about-product { grid-template-columns: 1fr; gap: 52px; }
  .home-sector-copy, .home-history-copy, .home-contact-layout > div:first-child, .innovation-about-copy { max-width: 760px; }
  .home-history-media { height: min(76vw, 700px); }
  .home-contact-intro { position: static; }
  .home-sector-grid a { height: clamp(235px, 40vw, 360px); }
  .innovation-about-media { height: min(76vw, 720px); }
  .innovation-sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-hero { padding-top: calc(var(--header-h) + 66px); }
  .contact-hero::before { background-position: 62% center; }
  .contact-hero::after { width: 65vw; right: -34vw; opacity: .7; }
  .contact-layout { grid-template-columns: 1fr; gap: 62px; }
  .contact-intro h1 { font-size: clamp(48px, 12vw, 70px); }
  .contact-panel { padding: 34px 24px; }
  .division-page-body { --division-subnav-h: 60px; }
  .division-subnav { padding: 0 var(--page-pad); gap: 26px; }
  .division-name { min-width: 0; flex: 1; font-size: 12px; }
  .division-tabs { gap: 24px; }
  .division-tabs > a, .division-tab-trigger { font-size: 10px; }
  .site-header.mobile-open .division-subnav { display: none; }
  .division-page-body .compact-global-menu { top: auto; }
  .division-page-body .page-global-menu { top: auto; max-height: 0; }
  .division-page-body .nav-item.active .page-global-menu { max-height: 4200px; }
  .compact-expertise-grid, .compact-division-grid { grid-template-columns: 1fr; }
  .compact-expertise-grid > a, .compact-division { min-height: 0; padding: 18px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .division-local-panel { position: fixed; left: 0; right: 0; top: calc(var(--header-h) + var(--division-subnav-h)); max-height: calc(100vh - var(--header-h) - var(--division-subnav-h)); padding: 26px var(--page-pad); }
  .division-local-grid { grid-template-columns: 1fr; gap: 26px; }
  .local-menu-column { padding: 24px 0 0; }
  .local-menu-column:first-child { padding-top: 0; }
  .local-menu-column + .local-menu-column { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .division-hero-page { padding-top: calc(var(--header-h) + var(--division-subnav-h) + 70px); }
  .division-hero-layout { min-height: auto; grid-template-columns: 1fr; gap: 46px; }
  .division-copy h1 { font-size: clamp(46px, 11vw, 68px); }
  .division-visual { min-height: 310px; height: 44vh; }
  .division-progress { position: absolute; left: var(--page-pad); bottom: 24px; z-index: 2; flex-direction: row; gap: 24px; border-left: 0; }
  .division-progress div { display: none; }
  .division-progress .active { display: flex; }
  .division-bottom { margin-top: 58px; }
  .division-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .division-feature { border-top: 1px solid rgba(255,255,255,.14); border-left: 0; padding: 16px 12px; }
  .division-page-innovation .division-hero-layout { grid-template-columns: 1fr; }
  .division-page-innovation .division-copy { max-width: 560px; }
  .division-page-innovation .division-visual { min-height: 300px; height: 42vh; }
  .division-page-innovation .division-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .division-feature-product img { width: 78px; height: 58px; }
  .innovation-synergy { min-height: auto; }
  .innovation-synergy-layout { grid-template-columns: 1fr; gap: 58px; }
  .innovation-video-card { min-height: 340px; }
  .division-process { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-top: 20px; padding-bottom: 20px; }
  .division-process article { min-height: 92px; padding: 18px 24px; border-top: 1px solid rgba(255,255,255,.12); }
  .division-process article:nth-child(odd) { padding-left: 0; border-left: 0; }
  .division-process article:nth-child(-n+2) { border-top: 0; }
  .division-section-heading { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .division-service-grid, .division-service-grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .division-service-media, .division-service-grid-6 .division-service-media { height: 300px; }
  .division-story-layout { min-height: 520px; grid-template-columns: minmax(370px, 1.06fr) minmax(330px, .94fr); }
  .division-story-copy { padding-left: 44px; }
  .division-footer > div { grid-template-columns: auto 1fr; }
  .division-footer nav { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
  .about-page { padding-top: var(--header-h); }
  .about-hero-page { min-height: auto; max-height: none; }
  .about-hero-layout { grid-template-columns: 1fr; }
  .about-symbol { min-height: 330px; }
  .about-strength-heading { grid-template-columns: 1fr; gap: 26px; }
  .about-strength-heading p { padding-left: 0; border-left: 0; }
  .about-division-grid { grid-template-columns: 1fr 1fr; }
  .about-division-grid a { border-top: 1px solid rgba(255,255,255,.18); border-left: 0; padding: 20px 14px; }
  .about-values > div { grid-template-columns: 1fr; }
  .career-hero { padding-top: calc(var(--header-h) + 74px); }
  .career-hero-layout, .career-section-heading, .career-spontaneous-layout, .application-layout { grid-template-columns: 1fr; }
  .career-hero-layout { min-height: auto; gap: 48px; }
  .career-copy { max-width: 760px; }
  .career-hero-art { min-height: 390px; }
  .career-principles { margin-top: 62px; }
  .career-job { grid-template-columns: 48px minmax(0,1fr) 42px; }
  .career-job-meta { grid-column: 2; }
  .career-job b { grid-column: 3; grid-row: 1 / 3; }
  .application-intro { position: static; }
  .application-back { margin-bottom: 46px; }
  .application-panel { max-width: 850px; }
}

@media (max-width: 620px) {
  .page-width { min-width: 0; }
  .site-footer { padding: 72px 0 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid, .footer-grid > * { min-width: 0; }
  .footer-brand { grid-column: auto; margin-bottom: 8px; }
  .tagline { margin: 30px 0; font-size: 20px; }
  .footer-brand > p:last-of-type { font-size: 16px; overflow-wrap: anywhere; }
  .socials { margin-top: 30px; }
  .socials a { width: 42px; height: 42px; }
  .footer-brand a, .footer-column a { max-width: 100%; overflow-wrap: anywhere; }
  .footer-column:last-child { display: flex; }
  .footer-column { min-width: 0; padding-top: 26px; gap: 12px; border-top: 1px solid rgba(255,255,255,.14); }
  .footer-column h2 { margin-bottom: 4px; font-size: 29px; line-height: 1.15; }
  .footer-column h2:not(:first-child) { margin-top: 20px; }
  .footer-column a { font-size: 15px; }
  .footer-line { margin-top: 58px; }
  .home-expertise-showcase { padding: 76px 0; }
  .home-video-showcase { padding: 34px 0; }
  .home-video-player { aspect-ratio: 4 / 3; }
  .home-video-logo { width: 68%; height: 64px; gap: 7px; }
  .home-video-control { width: 58px; height: 54px; right: 12px; bottom: 12px; }
  .home-video-control-icon { border-top-width: 9px; border-bottom-width: 9px; border-left-width: 14px; }
  .home-showcase-heading h2, .home-sector-copy h2, .home-history-copy h2, .home-contact-intro > h2 { font-size: clamp(40px, 11.8vw, 52px); }
  .home-history-copy h2 { font-size: 36px; line-height: 1.04; }
  .home-expertise-row { height: 186px; min-height: 186px; grid-template-columns: 28px minmax(112px, .82fr) minmax(0, 1.18fr); }
  .home-expertise-number { padding: 17px 2px 0 0; font-size: 12px; }
  .home-expertise-row > div { min-width: 0; align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: 15px 10px 15px 2px; }
  .home-expertise-row h3 { font-size: 16px; line-height: 1.02; }
  .home-expertise-row p { margin: 10px 0; font-size: 9px; line-height: 1.4; }
  .home-expertise-row small { font-size: 8px; letter-spacing: .035em; }
  .home-expertise-row figure { grid-column: auto; height: 100%; }
  .home-sector-showcase, .home-history-showcase, .home-contact-strip { padding: 76px 0; }
  .home-history-copy > p:not(.section-kicker) { font-size: 16px; }
  .home-history-copy .primary-btn { width: 100%; justify-content: space-between; font-size: 14px; }
  .home-history-media { height: 300px; border-radius: 10px; }
  .home-sector-grid { border-radius: 9px; }
  .home-sector-grid a { height: 175px; }
  .home-sector-grid span { padding: 28px 12px 10px; font-size: 12px; }
  .home-sector-copy .primary-btn { width: 100%; max-width: 100%; justify-content: space-between; font-size: 14px; }
  .home-contact-details { min-width: 0; }
  .home-contact-details > a:not(.hero-cta) { max-width: 100%; overflow-wrap: anywhere; font-size: 17px; }
  .home-contact-panel { padding: 30px 20px; }
  .division-page-innovation .division-visual { height: 310px; min-height: 310px; border-radius: 12px; }
  .innovation-about-product { padding-top: 76px; padding-bottom: 76px; }
  .innovation-about-copy h2, .innovation-catalog-heading h2 { font-size: clamp(40px, 11.5vw, 52px); }
  .innovation-about-media { height: min(118vw, 560px); border-radius: 12px; }
  .innovation-tabbar > * { min-height: 60px; font-size: 11px; }
  .innovation-sector-grid, .innovation-family-grid { grid-template-columns: 1fr; }
  .innovation-product-card, .innovation-product-card-large { min-height: 245px; }
  .innovation-product-card strong { font-size: 19px; }
  .innovation-product-card-large em { padding: 10px 12px; font-size: 9px; }
  .innovation-wide-cta { padding: 16px 24px; font-size: 11px; }
  .contact-layout > *, .contact-details, .contact-panel { min-width: 0; }
  .contact-detail a { overflow-wrap: anywhere; }
  .contact-details, .contact-form { grid-template-columns: 1fr; }
  .form-field-full, .contact-submit, .form-status { grid-column: auto; }
  .contact-footer { flex-direction: column; }
  .division-subnav { gap: 14px; }
  .division-tabs > a { display: none; }
  .division-visual { min-height: 270px; }
  .division-feature-grid, .about-division-grid { grid-template-columns: 1fr; }
  .division-page-innovation .division-feature-grid { grid-template-columns: 1fr; }
  [data-division="innovation"] .local-product-card { grid-template-columns: 76px minmax(0, 1fr) 16px; }
  [data-division="innovation"] .local-product-card img { width: 68px; height: 48px; }
  .innovation-synergy { padding: 82px 0; }
  .innovation-synergy-copy h2 { font-size: clamp(44px, 12vw, 60px); }
  .innovation-video-card { min-height: 230px; border-radius: 14px; }
  .innovation-video-logo { width: 58%; height: 60px; }
  .innovation-play { width: 74px; height: 58px; left: 67%; }
  .division-process { grid-template-columns: 1fr; padding-top: 10px; padding-bottom: 10px; }
  .division-process article, .division-process article:nth-child(odd) { min-height: 0; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .division-process article:first-child { border-top: 0; }
  .division-services { padding-top: 72px; padding-bottom: 78px; }
  .division-section-heading { margin-bottom: 32px; }
  .division-section-heading h2 { font-size: clamp(40px, 11.5vw, 54px); }
  .division-service-grid, .division-service-grid-6 { grid-template-columns: 1fr; gap: 14px; }
  .division-service-media, .division-service-grid-6 .division-service-media { height: clamp(230px, 68vw, 320px); }
  .division-service-copy { min-height: 96px; padding: 17px 50px 17px 18px; }
  .division-service-copy strong { font-size: 18px; }
  .division-story-layout { min-height: 0; grid-template-columns: 1fr; }
  .division-story-media { height: min(82vw, 390px); margin: 0 calc(var(--page-pad) * -1); }
  .division-story-copy { padding: 56px 0 66px; }
  .division-story-copy h2 { font-size: clamp(39px, 11vw, 52px); }
  .division-final-cta > div { min-height: 0; padding-top: 54px; padding-bottom: 58px; align-items: flex-start; flex-direction: column; gap: 30px; }
  .division-final-cta h2 { font-size: 41px; }
  .division-final-cta .hero-cta { width: calc(100% - 12px); justify-content: space-between; }
  .division-footer { padding-top: 34px; }
  .division-footer > div { grid-template-columns: 1fr; gap: 22px; }
  .division-footer nav { grid-column: auto; align-items: flex-start; flex-direction: column; gap: 12px; }
  .about-symbol > span { right: 4px; }
  .about-values > div, .about-values article { min-width: 0; }
  .about-copy .hero-cta, .about-values .hero-cta { width: calc(100% - 12px); min-width: 0; justify-content: space-between; gap: 14px; }
  .about-copy .hero-cta span:first-child, .about-values .hero-cta span:first-child { min-width: 0; white-space: normal; }
  .career-copy h1 { font-size: clamp(45px, 13vw, 58px); }
  .career-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .career-hero-art { min-height: 280px; }
  .career-hero-art::before { inset: 0; border-radius: 14px; }
  .career-symbol { width: 58%; }
  .career-art-caption { right: 5%; bottom: 8%; }
  .career-principles { grid-template-columns: 1fr; gap: 0; }
  .career-principles article { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .career-principles article:first-child { border-top: 0; }
  .career-section-heading { gap: 28px; }
  .career-section-heading h2, .career-spontaneous h2 { font-size: clamp(40px, 12vw, 54px); }
  .career-job { min-height: 0; padding: 28px 0; grid-template-columns: 34px minmax(0,1fr) 38px; gap: 12px; }
  .career-job:hover, .career-job:focus-visible { padding-left: 8px; padding-right: 8px; }
  .career-job-main h3 { font-size: 23px; }
  .career-job-meta { flex-direction: column; gap: 5px; }
  .career-footer > div { flex-direction: column; }
  .application-hero { padding-top: calc(var(--header-h) + 45px); }
  .application-layout > * { min-width: 0; }
  .application-intro h1 { max-width: 100%; font-size: clamp(36px, 10.2vw, 46px); overflow-wrap: normal; }
  .application-intro h1.application-long-title { font-size: clamp(28px, 8.5vw, 40px); letter-spacing: -.045em; }
  .application-intro > p, .application-highlights { max-width: 100%; }
  .application-panel { padding: 28px 18px; }
  .application-panel::before { margin: -28px 0 28px -18px; }
  .application-panel-head { align-items: flex-start; flex-direction: column; }
  .application-panel-head small { text-align: left; }
  .application-form { grid-template-columns: 1fr; }
  .application-form .form-field-full, .application-consent, .application-form .contact-submit, .application-form .form-status { grid-column: auto; }
  .cv-dropzone { grid-template-columns: 42px minmax(0,1fr); }
  .cv-dropzone b { grid-column: 2; }
  .accessibility { width: 48px; height: 48px; left: 10px; bottom: 10px; font-size: 23px; box-shadow: inset 0 0 0 3px #f22418, inset 0 0 0 5px white; }
  .hero-cta { max-width: calc(100% - 12px); margin-left: 6px; }
}

/* Normand Industriel — service detail pages */
.industrial-service-page-body { --industrial-breadcrumb-main-h: 58px; --industrial-breadcrumb-h: 110px; --industrial-stage-h: 760px; --industrial-expertise-h: 173px; margin: 0; background: #1a1b1d; color: var(--white); font-family: Poppins, sans-serif; }
.industrial-service-page-body .page-global-menu { top: calc(100% + var(--industrial-breadcrumb-h)); max-height: calc(100vh - var(--header-h) - var(--industrial-breadcrumb-h)); }
.industrial-breadcrumb { position: absolute; left: 0; right: 0; top: 100%; height: var(--industrial-breadcrumb-h); border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.1); background: #232427; color: var(--white); font-family: Poppins, sans-serif; }
.industrial-breadcrumb-main { height: var(--industrial-breadcrumb-main-h); padding: 0 var(--page-pad); display: grid; grid-template-columns: clamp(230px, 25vw, 430px) 1fr; align-items: center; gap: clamp(38px, 5vw, 90px); }
.industrial-breadcrumb-brand { font-size: clamp(13px, .96vw, 18px); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.industrial-breadcrumb-main nav { min-width: 0; display: flex; align-items: center; gap: 18px; color: #b7bbc0; font-size: clamp(10px, .78vw, 14px); }
.industrial-breadcrumb-main nav a { color: #eceef0; }
.industrial-breadcrumb-main nav span { color: var(--red); font-size: 19px; }
.industrial-breadcrumb-main nav strong { min-width: 0; overflow: hidden; color: #aeb3b8; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
.industrial-service-nav { height: calc(var(--industrial-breadcrumb-h) - var(--industrial-breadcrumb-main-h)); padding: 0 var(--page-pad); display: flex; align-items: stretch; gap: clamp(22px, 2.2vw, 42px); overflow-x: auto; border-top: 1px solid rgba(255,255,255,.09); background: #1d1f21; scrollbar-width: none; }
.industrial-service-nav::-webkit-scrollbar { display: none; }
.industrial-service-nav > span, .industrial-service-nav a { flex: 0 0 auto; display: flex; align-items: center; color: #abb0b5; font-size: clamp(9px, .68vw, 12px); text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }
.industrial-service-nav > span { padding-right: clamp(20px, 2.2vw, 42px); color: #f0f1f2; font-weight: 600; }
.industrial-service-nav a { position: relative; transition: color .2s ease; }
.industrial-service-nav a:hover, .industrial-service-nav a.active { color: var(--white); }
.industrial-service-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--red); }
.industrial-service-page-many-nav { --industrial-breadcrumb-h: 182px; }
.industrial-service-nav-many { height: calc(var(--industrial-breadcrumb-h) - var(--industrial-breadcrumb-main-h)); display: grid; grid-template-columns: minmax(150px, 1.05fr) repeat(5, minmax(120px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); column-gap: clamp(14px, 1.5vw, 30px); row-gap: 0; overflow: hidden; }
.industrial-service-nav-many > span { grid-row: 1 / 3; padding-right: 0; }
.industrial-service-nav-many a { min-width: 0; justify-content: flex-start; white-space: normal; line-height: 1.25; }
.industrial-service { min-height: 100svh; background: #1a1b1d; }
.industrial-service-hero { position: relative; min-height: max(820px, 100svh); padding-top: calc(var(--header-h) + var(--industrial-breadcrumb-h)); overflow: hidden; isolation: isolate; background: #1a1b1d; }
.industrial-service-image { position: absolute; z-index: -3; top: calc(var(--header-h) + var(--industrial-breadcrumb-h)); right: 0; left: 0; height: calc(var(--industrial-stage-h) + var(--industrial-expertise-h)); overflow: hidden; background: #151618; }
.industrial-service-image img { width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: saturate(.8) contrast(1.05) brightness(.8); transform: scale(1.055); }
.industrial-service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #161719 0%, rgba(22,23,25,.98) 23%, rgba(22,23,25,.68) 39%, rgba(22,23,25,.1) 64%, rgba(22,23,25,.14) 100%), linear-gradient(180deg, rgba(26,27,29,.05) 58%, #18191b 91%, #18191b 100%); }
.industrial-service-grid { position: absolute; z-index: -2; inset: calc(var(--header-h) + var(--industrial-breadcrumb-h)) 0 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px); background-size: 86px 86px; mask-image: linear-gradient(90deg, transparent 10%, #000 58%, transparent 100%); pointer-events: none; }
.industrial-service-layout { height: var(--industrial-stage-h); min-height: var(--industrial-stage-h); display: grid; grid-template-columns: minmax(390px, .55fr) minmax(420px, 1fr) 126px; align-items: center; gap: clamp(24px, 3vw, 62px); }
.industrial-service-copy { position: relative; z-index: 2; max-width: 600px; padding: 55px 0 36px; }
.industrial-service-copy .eyebrow { margin-bottom: 30px; color: #d0d3d6; }
.industrial-service-copy h1 { max-width: 650px; font-size: clamp(58px, 5.2vw, 96px); font-weight: 600; line-height: .96; letter-spacing: -.055em; }
.industrial-service-copy-compact h1 { font-size: clamp(45px, 4.25vw, 78px); line-height: .94; }
.industrial-service-copy h1 em { display: inline-block; margin-top: 7px; font-size: .54em; font-style: normal; letter-spacing: -.02em; }
.industrial-service-copy > p:not(.eyebrow) { max-width: 490px; margin: 25px 0 0; color: #d6d9dc; font-family: Poppins, sans-serif; font-size: clamp(16px, 1.12vw, 21px); line-height: 1.48; }
.industrial-service-copy .hero-cta { margin-top: 30px; }
.industrial-service-progress { grid-column: 3; position: relative; z-index: 2; padding-left: 20px; display: flex; flex-direction: column; gap: clamp(32px, 4.2vh, 48px); border-left: 1px solid rgba(255,255,255,.72); }
.industrial-service-progress a { display: flex; flex-direction: column; gap: 7px; color: rgba(245,246,247,.52); font-size: clamp(9px, .72vw, 12px); text-transform: uppercase; letter-spacing: .1em; line-height: 1.3; transition: color .2s ease; }
.industrial-service-progress a:hover { color: var(--white); }
.industrial-service-progress strong { font-size: 12px; font-weight: 500; }
.industrial-service-progress .active { color: var(--white); }
.industrial-service-progress .active strong { color: var(--red); }
.industrial-service-expertise { position: relative; z-index: 2; padding-top: 24px; padding-bottom: 30px; border-top: 1px solid rgba(255,255,255,.28); background: linear-gradient(90deg, rgba(24,25,27,.96), rgba(24,25,27,.82)); }
.industrial-service-expertise::before { content: ""; position: absolute; z-index: -1; top: -1px; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%); background: linear-gradient(180deg, rgba(24,25,27,.91), #18191b); }
.industrial-service-expertise > p { margin: 0 0 18px; display: flex; align-items: center; gap: 14px; font-size: 12px; text-transform: uppercase; letter-spacing: .11em; }
.industrial-service-expertise > p span { width: 44px; height: 2px; background: var(--red); }
.industrial-service-expertise > div { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.industrial-service-feature { min-width: 0; min-height: 82px; padding: 0 clamp(24px, 2.6vw, 52px); display: flex; align-items: center; gap: clamp(18px, 1.9vw, 34px); border-left: 1px solid rgba(255,255,255,.2); }
.industrial-service-feature:first-child { padding-left: 0; border-left: 0; }
.industrial-service-feature svg { width: clamp(58px, 4.3vw, 82px); height: clamp(58px, 4.3vw, 82px); flex: 0 0 auto; color: #f1f3f4; }
.industrial-service-feature strong { font-size: clamp(10px, .78vw, 14px); font-weight: 400; text-transform: uppercase; letter-spacing: .08em; line-height: 1.35; }

@media (max-width: 1280px) {
  .industrial-service-layout { grid-template-columns: minmax(330px, .56fr) minmax(300px, 1fr) 100px; }
  .industrial-service-feature { padding: 0 22px; gap: 16px; }
}

@media (max-width: 1080px) {
  .industrial-service-page-body { --industrial-breadcrumb-main-h: 56px; --industrial-breadcrumb-h: 106px; }
  .industrial-service-page-many-nav { --industrial-breadcrumb-h: 280px; }
  .industrial-service-page-body .page-global-menu { top: auto; max-height: 0; }
  .industrial-service-page-body .nav-item.active .page-global-menu { max-height: 4200px; }
  .site-header.mobile-open .industrial-breadcrumb { display: none; }
  .industrial-breadcrumb-main { padding: 0 var(--page-pad); grid-template-columns: auto minmax(0, 1fr); gap: 24px; }
  .industrial-breadcrumb-main nav { justify-content: flex-end; }
  .industrial-service-nav { padding: 0 var(--page-pad); gap: 27px; }
  .industrial-service-nav-many { height: 224px; padding: 8px var(--page-pad); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: 36px repeat(4, minmax(0, 1fr)); gap: 5px 24px; overflow: hidden; }
  .industrial-service-nav-many > span { grid-column: 1 / -1; grid-row: auto; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .industrial-service-nav-many a { min-width: 0; white-space: normal; }
  .industrial-service-hero { min-height: 100svh; }
  .industrial-service-image { top: calc(var(--header-h) + var(--industrial-breadcrumb-h)); bottom: 0; height: auto; }
  .industrial-service-image img { object-position: 62% center; transform: none; }
  .industrial-service-image::after { background: linear-gradient(105deg, #17181a 0%, rgba(23,24,26,.94) 44%, rgba(23,24,26,.4) 78%, rgba(23,24,26,.28) 100%), linear-gradient(180deg, transparent 55%, #18191b 90%); }
  .industrial-service-layout { height: auto; min-height: auto; padding-top: 66px; padding-bottom: 70px; grid-template-columns: minmax(0, 1fr); }
  .industrial-service-copy { max-width: 610px; min-height: 580px; padding: 0; display: flex; flex-direction: column; justify-content: center; }
  .industrial-service-copy h1 { font-size: clamp(50px, 10.5vw, 78px); }
  .industrial-service-copy-compact h1 { font-size: clamp(44px, 8.8vw, 68px); }
  .industrial-service-progress { grid-column: auto; flex-direction: row; gap: 30px; border-left: 0; padding: 0; }
  .industrial-service-progress a { display: none; }
  .industrial-service-progress .active { display: flex; }
  .industrial-service-expertise { padding-top: 26px; padding-bottom: 34px; }
  .industrial-service-expertise > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industrial-service-feature { min-height: 100px; border-top: 1px solid rgba(255,255,255,.14); }
  .industrial-service-feature:nth-child(odd) { padding-left: 0; border-left: 0; }
}

@media (max-width: 620px) {
  .industrial-service-page-body { --industrial-breadcrumb-main-h: 52px; --industrial-breadcrumb-h: 100px; }
  .industrial-service-page-many-nav { --industrial-breadcrumb-h: 318px; }
  .industrial-breadcrumb-main { gap: 12px; }
  .industrial-breadcrumb-brand { font-size: 11px; }
  .industrial-breadcrumb-main nav { gap: 9px; font-size: 9px; }
  .industrial-breadcrumb-main nav a, .industrial-breadcrumb-main nav span { display: none; }
  .industrial-service-nav { gap: 24px; }
  .industrial-service-nav-many { height: 266px; padding: 8px var(--page-pad); grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 34px repeat(5, minmax(0, 1fr)); gap: 5px 18px; }
  .industrial-service-nav > span, .industrial-service-nav a { font-size: 9px; }
  .industrial-service-image img { object-position: 66% center; }
  .industrial-service-image::after { background: linear-gradient(105deg, #17181a 0%, rgba(23,24,26,.94) 61%, rgba(23,24,26,.5) 100%), linear-gradient(180deg, transparent 48%, #18191b 88%); }
  .industrial-service-layout { padding-top: 50px; padding-bottom: 52px; }
  .industrial-service-copy { min-height: 535px; justify-content: flex-start; padding-top: 45px; }
  .industrial-service-copy .eyebrow { margin-bottom: 24px; font-size: 10px; letter-spacing: .17em; }
  .industrial-service-copy .eyebrow span { width: 34px; }
  .industrial-service-copy h1 { font-size: clamp(43px, 13.5vw, 61px); }
  .industrial-service-copy-compact h1 { font-size: clamp(38px, 11vw, 52px); }
  .industrial-service-copy > p:not(.eyebrow) { max-width: 370px; font-size: 15px; }
  .industrial-service-copy .hero-cta { width: calc(100% - 12px); }
  .industrial-service-expertise > div { grid-template-columns: 1fr; }
  .industrial-service-feature { min-height: 88px; padding: 12px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .industrial-service-feature svg { width: 60px; height: 60px; }
  .industrial-service-feature strong { font-size: 11px; }
}

/* Products and realizations catalog pages */
.catalog-page-body { margin: 0; overflow-x: hidden; background: #1a1b1d; color: var(--white); font-family: Poppins, sans-serif; }
.catalog-page { min-height: 100svh; padding-top: var(--header-h); background: #1a1b1d; }
.catalog-intro { padding-top: clamp(70px, 8vw, 142px); padding-bottom: clamp(42px, 5vw, 78px); }
.catalog-breadcrumb { margin: 0 0 38px; display: flex; gap: 12px; color: #aeb2b7; font-size: 14px; }
.catalog-breadcrumb a { color: #e7e9eb; }
.catalog-breadcrumb span { color: var(--red); }
.catalog-intro .eyebrow { margin-bottom: 20px; color: var(--red); font-size: 13px; font-weight: 600; letter-spacing: .22em; }
.catalog-intro h1 { max-width: 1120px; margin: 0; font-size: clamp(58px, 6.6vw, 112px); font-weight: 500; line-height: .94; letter-spacing: -.055em; }
.catalog-intro h1 span, .catalog-cta h2 span, .projects-cta h2 span { color: var(--red); }
.catalog-lead { max-width: 670px; margin: 30px 0 0; color: #d5d8da; font-size: clamp(17px, 1.45vw, 25px); line-height: 1.48; }
.catalog-filter-label { margin: 44px 0 16px; color: #c6c9cc; font-size: 12px; text-transform: uppercase; letter-spacing: .2em; }
.catalog-filters { max-width: 1060px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.catalog-filters button { min-height: 54px; padding: 10px 20px; border: 1px solid #5c6065; border-radius: 999px; background: transparent; color: #f0f1f2; font: 500 14px/1.2 Poppins, sans-serif; cursor: pointer; transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.catalog-filters button:hover { border-color: #f1f2f3; transform: translateY(-2px); }
.catalog-filters button.active { border-color: var(--red); background: var(--red); color: var(--white); }
.catalog-list { padding-bottom: clamp(80px, 9vw, 150px); }
.catalog-count { margin: 0 0 20px; color: #9fa4a9; font-size: 14px; }
.catalog-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.catalog-product-card { min-width: 0; overflow: hidden; border: 1px solid #3b3e42; border-radius: 14px; background: #202224; transition: border-color .25s ease, transform .25s ease; }
.catalog-product-card:hover { border-color: #656a6f; transform: translateY(-4px); }
.catalog-product-media { min-height: 320px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 52%, #3a3c3e 0, #282a2c 43%, #1a1b1d 100%); }
.catalog-product-media img { width: 86%; height: 300px; padding: 22px; object-fit: contain; filter: grayscale(.25) contrast(1.05); }
.catalog-product-info { min-height: 142px; padding: 24px 26px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 24px; border-top: 1px solid #3b3e42; }
.catalog-product-info h2 { margin: 0; font-size: clamp(23px, 1.8vw, 32px); line-height: 1.1; }
.catalog-product-info p { margin: 7px 0 4px; color: #d0d3d6; font-size: 14px; line-height: 1.45; }
.catalog-product-info small { color: #9ea3a8; font-size: 11px; }
.catalog-product-info a { min-width: 185px; padding-left: 24px; display: flex; justify-content: space-between; gap: 20px; border-left: 1px solid #4a4d51; color: #ff3347; font-size: 13px; font-weight: 600; }
.catalog-product-info a span { font-size: 22px; line-height: 1; }
.catalog-filterable[hidden] { display: none !important; }
.catalog-cta { overflow: hidden; border-top: 1px solid #33363a; border-bottom: 1px solid #33363a; background: #18191b; }
.catalog-cta-layout { min-height: 530px; display: grid; grid-template-columns: minmax(310px, .72fr) minmax(450px, 1.28fr); align-items: stretch; gap: clamp(45px, 6vw, 100px); }
.catalog-cta-layout > div { align-self: center; padding: 60px 0; }
.catalog-cta h2 { margin: 0; font-size: clamp(44px, 4.1vw, 72px); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.catalog-cta p { max-width: 530px; margin: 24px 0 31px; color: #d0d3d6; font-size: clamp(16px, 1.3vw, 22px); line-height: 1.48; }
.catalog-cta .hero-cta { margin: 0; }
.catalog-cta img { width: calc(100% + var(--page-pad)); height: 100%; min-height: 530px; object-fit: cover; object-position: center; filter: saturate(.7) brightness(.75); }
.catalog-footer { background: #151515; }

.projects-page .catalog-intro { padding-bottom: 45px; }
.projects-page .catalog-intro h1 { font-size: clamp(54px, 6vw, 102px); }
.projects-page .catalog-filters { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 34px; }
.catalog-project-grid { padding-bottom: clamp(62px, 7vw, 110px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.catalog-project-card { position: relative; min-height: 340px; overflow: hidden; border: 1px solid #373a3e; background: #121315; color: var(--white); }
.catalog-project-card:first-child { grid-column: 1 / -1; min-height: 470px; }
.catalog-project-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.76); transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.catalog-project-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(5,6,7,.9) 100%); }
.catalog-project-copy { position: absolute; left: clamp(22px, 3vw, 50px); right: 86px; bottom: clamp(22px, 2.6vw, 42px); display: flex; flex-direction: column; gap: 5px; }
.catalog-project-copy small { color: var(--red); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; }
.catalog-project-copy strong { font-size: clamp(23px, 2.1vw, 36px); font-weight: 500; line-height: 1.15; }
.catalog-project-card b { position: absolute; right: 24px; bottom: 24px; width: 48px; height: 48px; display: grid; place-items: center; background: var(--red); font-size: 22px; font-weight: 400; }
.catalog-project-card:hover img { transform: scale(1.035); filter: saturate(.86) brightness(.88); }
.projects-cta { padding-top: 58px; padding-bottom: 90px; border-top: 1px solid #43464a; }
.projects-cta h2 { margin: 0 0 28px; font-size: clamp(42px, 5vw, 82px); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.projects-cta .hero-cta { margin: 0; }

@media (max-width: 1080px) {
  .catalog-intro { padding-top: 72px; }
  .catalog-product-grid { grid-template-columns: 1fr; }
  .catalog-cta-layout { grid-template-columns: minmax(280px, .9fr) minmax(350px, 1.1fr); gap: 42px; }
  .catalog-project-card, .catalog-project-card:first-child { min-height: 350px; }
}

@media (max-width: 760px) {
  .catalog-intro { padding-top: 48px; padding-bottom: 42px; }
  .catalog-breadcrumb { margin-bottom: 30px; font-size: 12px; }
  .catalog-intro h1, .projects-page .catalog-intro h1 { font-size: clamp(45px, 12.5vw, 68px); line-height: .96; }
  .catalog-lead { margin-top: 24px; font-size: 17px; }
  .catalog-filter-label { margin-top: 34px; }
  .catalog-filters, .projects-page .catalog-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .catalog-filters button { min-height: 48px; padding: 8px 10px; font-size: 12px; }
  .catalog-product-grid { gap: 16px; }
  .catalog-product-media { min-height: 250px; }
  .catalog-product-media img { width: 94%; height: 250px; padding: 18px; }
  .catalog-product-info { min-height: 0; padding: 19px 20px; grid-template-columns: 1fr; gap: 18px; }
  .catalog-product-info p { font-size: 13px; }
  .catalog-product-info a { min-width: 0; padding: 16px 0 0; border-top: 1px solid #4a4d51; border-left: 0; }
  .catalog-cta-layout { min-height: 0; grid-template-columns: 1fr; gap: 0; }
  .catalog-cta-layout > div { padding: 65px 0 45px; }
  .catalog-cta img { width: 100%; height: auto; min-height: 0; max-height: 460px; border-radius: 10px; object-position: center; }
  .catalog-cta-layout { padding-bottom: 46px; }
  .catalog-project-grid { grid-template-columns: 1fr; gap: 14px; }
  .catalog-project-card, .catalog-project-card:first-child { grid-column: auto; min-height: 270px; }
  .catalog-project-copy { left: 20px; right: 74px; bottom: 19px; }
  .catalog-project-copy strong { font-size: 23px; }
  .catalog-project-card b { right: 18px; bottom: 18px; width: 42px; height: 42px; }
  .projects-cta { padding-top: 44px; padding-bottom: 70px; }
}

@media (max-width: 420px) {
  .catalog-intro h1, .projects-page .catalog-intro h1 { font-size: 45px; }
  .catalog-filters button { font-size: 11px; }
  .catalog-product-media { min-height: 220px; }
  .catalog-product-media img { height: 220px; }
  .catalog-cta h2 { font-size: 42px; }
  .catalog-project-card, .catalog-project-card:first-child { min-height: 230px; }
}

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