:root {
  --navy: #061b3a;
  --navy-deep: #031126;
  --blue: #0868f5;
  --blue-bright: #2d83ff;
  --graphite: #59616d;
  --ink: #0d1c30;
  --mist: #edf1f5;
  --line: #dce3ea;
  --white: #fff;
  --shell: min(1180px, calc(100vw - 48px));
  --shadow: 0 24px 70px rgba(3, 17, 38, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: var(--shell); margin-inline: auto; }
.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; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 10px 16px; color: var(--white); background: var(--blue); transition: top .2s; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(3,17,38,.38);
  backdrop-filter: blur(14px);
  transition: background .25s, box-shadow .25s;
}
.site-header.scrolled { background: rgba(3,17,38,.94); box-shadow: 0 12px 40px rgba(0,0,0,.18); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 270px; flex: 0 0 auto; }
.brand img { width: 100%; }
.main-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.78); font-size: .88rem; font-weight: 650; }
.main-nav a { transition: color .2s; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--white); }
.nav-cta { padding: 11px 17px; border: 1px solid rgba(255,255,255,.25); color: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); }

.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,17,38,.98) 0%, rgba(3,17,38,.92) 34%, rgba(3,17,38,.38) 70%, rgba(3,17,38,.18) 100%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent); opacity: .75; }
.hero-content { position: relative; z-index: 1; padding-top: 116px; }
.hero-copy { max-width: 735px; padding-bottom: 56px; }
.eyebrow, .kicker { margin: 0 0 18px; color: var(--blue); font-size: .77rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.72); }
.eyebrow span { width: 36px; height: 2px; background: var(--blue); }
h1, h2, h3, p { text-wrap: pretty; }
h1 { margin: 0; max-width: 760px; font-size: clamp(3.45rem, 6.2vw, 6.3rem); line-height: .96; letter-spacing: -.055em; font-weight: 820; }
h1 em { color: var(--blue-bright); font-style: normal; }
.hero-intro { max-width: 670px; margin: 28px 0 0; color: rgba(255,255,255,.76); font-size: clamp(1.04rem, 1.4vw, 1.22rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; padding-bottom: 64px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 0 22px; border: 1px solid transparent; font-weight: 780; font-size: .92rem; letter-spacing: .01em; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--white); box-shadow: 0 14px 36px rgba(8,104,245,.26); }
.button-primary:hover { background: #1b75f7; }
.button-ghost { border-color: rgba(255,255,255,.32); color: var(--white); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.hero-specs { position: absolute; right: 0; bottom: -118px; width: min(680px, 58vw); display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.hero-specs > div { min-height: 118px; display: flex; align-items: center; gap: 16px; padding: 22px 24px; border-right: 1px solid var(--line); }
.hero-specs > div:last-child { border: 0; }
.hero-specs strong { color: var(--blue); font-size: .75rem; letter-spacing: .12em; }
.hero-specs span { font-size: .87rem; font-weight: 760; line-height: 1.35; }

.capability-strip { color: rgba(255,255,255,.72); background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); }
.capability-list { min-height: 78px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.capability-list span { padding-left: 24px; border-left: 2px solid rgba(8,104,245,.55); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .7fr); gap: 90px; align-items: end; margin-bottom: 58px; }
.section-heading.compact { grid-template-columns: 1fr; max-width: 760px; }
.section-heading h2, .bespoke h2, .quality h2, .contact h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4.35rem); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p { margin: 0 0 6px; color: var(--graphite); }

.solutions { background: #f7f9fb; }
.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: var(--line); gap: 1px; }
.solution-card { position: relative; min-height: 565px; padding: 28px; overflow: hidden; background: var(--white); transition: transform .25s, box-shadow .25s; }
.solution-card:hover { z-index: 2; transform: translateY(-7px); box-shadow: 0 24px 50px rgba(3,17,38,.12); }
.card-index { color: #9ca8b6; font-size: .7rem; font-weight: 800; letter-spacing: .16em; }
.product-visual { position: relative; display: grid; place-items: center; height: 190px; margin: 18px -28px 28px; overflow: hidden; background: linear-gradient(135deg, #071a34, #123258); }
.product-visual::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(45,131,255,.9), transparent); }
.product-visual img { width: 110%; height: 100%; object-fit: contain; filter: drop-shadow(0 14px 18px rgba(0,0,0,.32)); transition: transform .35s ease; }
.solution-card:hover .product-visual img { transform: scale(1.035); }
.product-visual-metal img { width: 96%; }
.product-visual figcaption { position: absolute; left: 16px; bottom: 13px; z-index: 1; padding: 5px 8px; color: rgba(255,255,255,.82); background: rgba(3,17,38,.74); font-size: .62rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.solution-card h3 { margin: 0 0 17px; font-size: 1.38rem; line-height: 1.18; letter-spacing: -.02em; }
.solution-card p { margin: 0; color: var(--graphite); font-size: .93rem; }
.solution-card ul { margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.solution-card li { position: relative; margin: 8px 0; padding-left: 16px; color: #405064; font-size: .82rem; }
.solution-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 2px; background: var(--blue); }
.technical-note { margin: 24px 0 0; color: #6e7885; font-size: .8rem; }

.bespoke { color: var(--white); background: var(--navy); overflow: hidden; }
.bespoke-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: 86px; align-items: center; }
.bespoke-image { position: relative; }
.bespoke-image::before { content: ""; position: absolute; inset: -20px 70px 42px -20px; border: 1px solid rgba(45,131,255,.5); }
.bespoke-image img { position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: 0 28px 80px rgba(0,0,0,.3); }
.image-tag { position: absolute; right: -28px; bottom: 36px; width: 265px; padding: 18px 22px; background: var(--blue); }
.image-tag span { display: block; margin-bottom: 4px; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; opacity: .8; }
.image-tag strong { font-size: .88rem; line-height: 1.35; }
.kicker-light { color: #65a4ff; }
.bespoke-lead { margin: 26px 0 34px; color: rgba(255,255,255,.68); font-size: 1.04rem; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.process-list > li > span { color: var(--blue-bright); font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.process-list h3 { margin: 0; font-size: 1rem; }
.process-list p { margin: 3px 0 0; color: rgba(255,255,255,.62); font-size: .87rem; }
.text-link { display: inline-flex; gap: 22px; align-items: center; margin-top: 28px; color: var(--white); font-weight: 780; border-bottom: 2px solid var(--blue); padding-bottom: 6px; }
.machining-feature { display: grid; grid-template-columns: .72fr 1.28fr; align-items: stretch; gap: 0; margin-top: 92px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.035); }
.machining-copy { display: flex; flex-direction: column; justify-content: center; padding: 42px; }
.machining-copy .kicker { margin-bottom: 14px; }
.machining-copy h3 { max-width: 410px; margin: 0; font-size: clamp(1.8rem, 2.8vw, 3rem); line-height: 1.08; letter-spacing: -.035em; }
.machining-copy > p:not(.kicker) { max-width: 480px; margin: 22px 0 0; color: rgba(255,255,255,.64); font-size: .94rem; }
.machining-specs { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.machining-specs span { padding: 7px 10px; border: 1px solid rgba(125,179,255,.3); color: rgba(255,255,255,.72); background: rgba(8,104,245,.1); font-size: .66rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.machining-image { position: relative; min-height: 430px; margin: 0; overflow: hidden; }
.machining-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,17,38,.24), transparent 35%); pointer-events: none; }
.machining-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s ease; }
.machining-feature:hover .machining-image img { transform: scale(1.025); }
.machining-image figcaption { position: absolute; right: 22px; bottom: 22px; z-index: 2; min-width: 220px; padding: 15px 18px; background: rgba(3,17,38,.9); border-left: 3px solid var(--blue); }
.machining-image figcaption span, .machining-image figcaption strong { display: block; }
.machining-image figcaption span { color: #82b6ff; font-size: .62rem; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.machining-image figcaption strong { margin-top: 3px; color: var(--white); font-size: .87rem; }

.sectors { background: var(--white); }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector { position: relative; min-height: 260px; padding: 30px; border: 1px solid var(--line); background: var(--white); overflow: hidden; }
.sector::before { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 0; background: var(--blue); transition: height .3s; }
.sector:hover::before { height: 100%; }
.sector-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.sector-top > span { color: var(--blue); font-size: .72rem; font-weight: 800; }
.sector-icon { width: 50px; height: 50px; padding: 10px; color: var(--blue); border: 1px solid #cbd9ea; background: #f4f8fd; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; transition: color .25s, background .25s, transform .25s; }
.sector-icon-aircraft { fill: currentColor; stroke: none; padding: 12px; }
.sector:hover .sector-icon { color: var(--white); background: var(--blue); transform: translateY(-3px); }
.sector h3 { margin: 42px 0 12px; font-size: 1.18rem; }
.sector p { margin: 0; color: var(--graphite); font-size: .9rem; }

.quality { color: var(--white); background: var(--navy-deep); }
.quality-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 86px; align-items: start; }
.quality-title h2 { max-width: 610px; }
.quality-title-copy { max-width: 570px; margin: 24px 0 0; color: rgba(255,255,255,.66); font-size: .98rem; }
.quality-emblem { display: flex; align-items: center; gap: 18px; margin-top: 30px; }
.quality-emblem-icon { width: 62px; height: 62px; padding: 10px; color: #7db3ff; border: 1px solid rgba(125,179,255,.36); background: rgba(8,104,245,.1); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.quality-emblem strong, .quality-emblem span { display: block; }
.quality-emblem strong { font-size: .9rem; letter-spacing: .03em; }
.quality-emblem span { margin-top: 4px; color: rgba(255,255,255,.53); font-size: .75rem; }
.quality-diagram { margin-top: 35px; padding: 22px 18px 13px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.025); }
.quality-diagram svg { display: block; width: 100%; height: auto; overflow: visible; }
.diagram-hose, .diagram-tag, .diagram-checks, .diagram-callouts { fill: none; stroke: rgba(255,255,255,.7); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.diagram-hose { stroke-width: 2.6; }
.diagram-tag { stroke: #72abff; }
.diagram-checks { color: #72abff; stroke: currentColor; }
.diagram-checks circle { fill: var(--navy-deep); }
.diagram-callouts { stroke: rgba(114,171,255,.72); stroke-width: 1.2; }
.diagram-callouts text { fill: rgba(255,255,255,.54); stroke: none; font-family: inherit; font-size: 10px; font-weight: 780; letter-spacing: .12em; }
.quality-copy > p { max-width: 660px; margin: 4px 0 18px; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.quality-copy > .quality-copy-secondary { margin-bottom: 34px; color: rgba(255,255,255,.56); font-size: .93rem; }
.quality-points { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.quality-points > div { min-height: 184px; padding: 22px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.quality-point-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.quality-points .quality-point-head span { color: var(--blue-bright); font-size: .68rem; }
.quality-point-head svg { width: 29px; height: 29px; color: #7db3ff; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.quality-points strong { display: block; font-size: .9rem; line-height: 1.4; }
.quality-points > div > p { margin: 10px 0 0; color: rgba(255,255,255,.52); font-size: .78rem; line-height: 1.55; }

.sem-link { padding: 35px 0; color: var(--white); background: var(--blue); }
.sem-link-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sem-link-inner > div { display: flex; align-items: center; gap: 24px; }
.sem-mark { display: inline-grid; place-items: center; width: 76px; height: 48px; border: 2px solid rgba(255,255,255,.9); font-weight: 900; letter-spacing: .08em; }
.sem-link p { margin: 0; font-size: .93rem; }
.sem-link-inner > p { color: rgba(255,255,255,.78); }

.contact { color: var(--white); background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 95px; }
.contact-copy > p:not(.kicker) { max-width: 520px; color: rgba(255,255,255,.66); }
.direct-contact { display: grid; gap: 14px; margin-top: 42px; }
.direct-contact a { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.18); }
.direct-contact small { display: block; color: #85b5ff; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.direct-contact strong { font-size: 1.05rem; }
.contact-form { padding: 40px; color: var(--ink); background: var(--white); box-shadow: 0 28px 90px rgba(0,0,0,.22); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 17px; color: #39485a; font-size: .75rem; font-weight: 760; letter-spacing: .03em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #ced7e0; border-radius: 0; padding: 13px 14px; color: var(--ink); background: #fbfcfd; outline: none; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,104,245,.12); }
.contact-form textarea { resize: vertical; min-height: 135px; }
.contact-form input[type="file"] { padding: 10px; background: var(--white); }
.contact-form input[type="file"]::file-selector-button { margin-right: 12px; border: 0; padding: 9px 12px; color: var(--white); background: var(--navy); font-weight: 720; cursor: pointer; }
.file-field span { color: #727c88; font-size: .7rem; font-weight: 500; letter-spacing: 0; }
.captcha-field { max-width: 310px; }
.captcha-field input { max-width: 90px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-privacy { margin: 2px 0 18px; color: #66717f; font-size: .72rem; line-height: 1.55; }
.form-privacy a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.form-submit { border: 0; }
.form-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.form-help { margin: 13px 0 0; color: #727c88; font-size: .75rem; }
.form-help.is-success { color: #087b4d; font-weight: 720; }
.form-help.is-error { color: #b42318; font-weight: 720; }

.site-footer { padding: 55px 0 26px; color: rgba(255,255,255,.7); background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.09); }
.footer-top { display: grid; grid-template-columns: 1.35fr .6fr .9fr .75fr; gap: 45px; padding-bottom: 42px; }
.footer-brand { width: 280px; }
.footer-top > div { display: grid; align-content: start; gap: 8px; }
.footer-top small { margin-bottom: 6px; color: #78adff; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-top a { font-size: .86rem; }
.footer-top a:hover { color: var(--white); }
.footer-link { width: fit-content; border: 0; padding: 0; color: inherit; background: transparent; font-size: .86rem; text-align: left; }
.footer-link:hover, .footer-link:focus-visible { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }
.mobile-call { display: none; }

.cookie-banner { position: fixed; z-index: 90; right: 24px; bottom: 24px; width: min(620px, calc(100vw - 48px)); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 22px; color: var(--ink); background: var(--white); border: 1px solid var(--line); box-shadow: 0 24px 70px rgba(3,17,38,.28); }
.cookie-banner[hidden] { display: none; }
.cookie-copy strong { color: var(--navy); font-size: .94rem; }
.cookie-copy p { margin: 5px 0 0; color: #586574; font-size: .78rem; line-height: 1.55; }
.cookie-copy a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 9px; }
.cookie-button { min-height: 42px; border: 1px solid var(--navy); padding: 0 15px; font-size: .78rem; font-weight: 780; }
.cookie-reject { color: var(--navy); background: var(--white); }
.cookie-accept { color: var(--white); background: var(--navy); }

.legal-page { min-height: 100vh; color: var(--ink); background: var(--mist); }
.legal-header { position: static; background: var(--navy-deep); }
.legal-header .header-inner { height: 82px; }
.legal-back { color: rgba(255,255,255,.82); font-size: .86rem; font-weight: 720; }
.legal-back:hover { color: var(--white); }
.legal-main { padding: 72px 0 90px; }
.legal-document { max-width: 880px; padding: 48px 54px; background: var(--white); box-shadow: var(--shadow); }
.legal-document .kicker { margin-bottom: 14px; }
.legal-document h1 { margin: 0 0 30px; color: var(--navy); font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -.04em; }
.legal-document h2 { margin: 34px 0 10px; color: var(--navy); font-size: 1.25rem; line-height: 1.25; }
.legal-document p, .legal-document li { color: #4c5969; font-size: .94rem; }
.legal-document ul { padding-left: 20px; }
.legal-document a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-document address { font-style: normal; }
.legal-footer { padding: 28px 0; }
.legal-footer .footer-bottom { padding-top: 0; border-top: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1050px) {
  .brand { width: 225px; }
  .main-nav { gap: 18px; }
  .solution-grid, .sector-grid { grid-template-columns: 1fr 1fr; }
  .bespoke-grid { gap: 50px; }
  .quality-grid, .contact-grid { gap: 55px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 34px, 680px); }
  .section { padding: 84px 0; }
  .header-inner { height: 72px; }
  .brand { width: 210px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 72px 0 auto; display: grid; gap: 0; padding: 10px 17px 24px; background: rgba(3,17,38,.98); border-top: 1px solid rgba(255,255,255,.1); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .22s; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-cta { margin-top: 10px; text-align: center; border: 1px solid rgba(255,255,255,.25) !important; }
  .hero { min-height: 720px; }
  .hero-media img { object-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,17,38,.98), rgba(3,17,38,.78)); }
  .hero-content { padding-top: 100px; }
  .hero-copy { padding-bottom: 0; }
  .hero-actions { padding-bottom: 0; }
  .hero-specs { position: static; width: 100%; margin-top: 48px; }
  .hero-specs > div { min-height: 92px; padding: 17px; }
  .capability-list { grid-template-columns: 1fr 1fr; gap: 22px 0; padding: 25px 0; }
  .section-heading, .bespoke-grid, .quality-grid, .contact-grid, .sem-link-inner { grid-template-columns: 1fr; gap: 42px; }
  .section-heading { margin-bottom: 42px; }
  .bespoke-image { max-width: 560px; }
  .bespoke-image img { aspect-ratio: 5 / 4; }
  .image-tag { right: 20px; }
  .machining-feature { grid-template-columns: 1fr; margin-top: 70px; }
  .machining-image { min-height: 360px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  body { padding-bottom: 62px; }
  .brand { width: 184px; }
  .hero { min-height: auto; padding: 122px 0 44px; }
  .hero-content { padding-top: 0; }
  h1 { font-size: clamp(3.05rem, 14.5vw, 4.2rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-specs { grid-template-columns: 1fr; margin-top: 38px; }
  .hero-specs > div { min-height: 78px; border-right: 0; border-bottom: 1px solid var(--line); }
  .capability-list { grid-template-columns: 1fr; }
  .solution-grid, .sector-grid, .quality-points, .form-row { grid-template-columns: 1fr; }
  .quality-points > div { min-height: 0; }
  .solution-card { min-height: 0; }
  .bespoke-image::before { display: none; }
  .bespoke-image img { aspect-ratio: 4 / 5; }
  .image-tag { right: 10px; bottom: 20px; width: calc(100% - 20px); }
  .machining-feature { margin-top: 56px; }
  .machining-copy { padding: 30px 22px; }
  .machining-image { min-height: 265px; }
  .machining-image figcaption { right: 10px; bottom: 10px; min-width: 0; padding: 12px 14px; }
  .contact-form { padding: 24px 19px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; width: 235px; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { right: 12px; bottom: 74px; width: calc(100vw - 24px); grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .legal-main { padding: 28px 0 60px; }
  .legal-document { padding: 30px 20px; }
  .mobile-call { position: fixed; z-index: 60; inset: auto 0 0; height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; color: var(--white); background: var(--blue); box-shadow: 0 -10px 30px rgba(3,17,38,.25); }
  .mobile-call span { font-size: .76rem; }
  .mobile-call strong { font-size: .95rem; }
}
