:root {
    --ink: #0d1726;
    --ink-2: #263244;
    --steel: #5e6b7b;
    --line: #dce1e7;
    --line-dark: #2f3a4a;
    --paper: #ffffff;
    --paper-2: #f4f6f8;
    --paper-3: #eaedf1;
    --navy: #07152a;
    --yellow: #f2c500;
    --yellow-dark: #cda600;
    --red: #b91c1c;
    --green: #126b45;
    --max: 1240px;
    --header-h: 82px;
    --ease: cubic-bezier(.2,.8,.2,1);
    --shadow: 0 24px 80px rgba(7,21,42,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
::selection { background: var(--yellow); color: var(--ink); }

h1, h2, h3, h4, p, ul, ol { margin-top: 0; }
h1, h2, h3, h4 {
    line-height: 1.08;
    letter-spacing: -.035em;
    text-wrap: balance;
}
h1 { font-size: clamp(3rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.25rem, 4.7vw, 4.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
p { color: var(--steel); }

.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: 16px;
    top: -100px;
    z-index: 9999;
    background: var(--yellow);
    color: var(--ink);
    padding: 12px 18px;
    font-weight: 800;
}
.skip-link:focus { top: 16px; }

.scroll-progress {
    position: fixed;
    inset: 0 0 auto 0;
    height: 3px;
    z-index: 1200;
    background: transparent;
}
.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--yellow);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    transition: box-shadow .3s ease, transform .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 35px rgba(7,21,42,.08); }
.header-shell {
    max-width: var(--max);
    min-height: var(--header-h);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}
.brand-wordmark,
.footer-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: .92;
}
.brand-primary {
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -.055em;
    text-transform: uppercase;
}
.brand-secondary {
    margin-top: 5px;
    color: var(--steel);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.desktop-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 30px;
}
.desktop-nav a {
    position: relative;
    padding: 30px 0 27px;
    color: var(--ink-2);
    font-size: .88rem;
    font-weight: 750;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 21px;
    height: 2px;
    background: var(--yellow);
    transition: right .28s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }
.header-cta,
.button {
    min-height: 48px;
    padding: 13px 19px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .01em;
    transition: transform .22s var(--ease), background .22s ease, color .22s ease, border-color .22s ease;
}
.header-cta:hover,
.button:hover { transform: translateY(-3px); background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.button-outline { background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.button-light { background: #fff; border-color: #fff; color: var(--ink); }
.button-light:hover { background: var(--yellow); border-color: var(--yellow); }
.button-yellow { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.button-yellow:hover { background: #fff; border-color: #fff; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.eyebrow {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-2);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 30px;
    height: 3px;
    background: var(--yellow);
}
.eyebrow-light { color: rgba(255,255,255,.76); }
.section-shell {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
}
.section-pad { padding: clamp(84px, 10vw, 150px) 0; }
.section-pad-sm { padding: clamp(60px, 7vw, 100px) 0; }
.section-heading {
    display: grid;
    grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 56px;
}
.section-heading h2 { margin-bottom: 0; max-width: 900px; }
.section-heading p { margin: 0; font-size: 1.08rem; }

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-h));
    display: grid;
    align-items: stretch;
    overflow: hidden;
    background: var(--paper);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(13,23,38,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(13,23,38,.035) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to right, #000, transparent 66%);
}
.hero-grid {
    width: min(100%, 1600px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
}
.hero-copy {
    position: relative;
    z-index: 2;
    padding: clamp(70px, 8vw, 130px) clamp(24px, 5vw, 84px) clamp(70px, 7vw, 110px) max(24px, calc((100vw - var(--max))/2 + 24px));
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero h1 { margin-bottom: 30px; max-width: 830px; }
.hero h1 .accent-line { display: block; color: var(--steel); }
.hero-lead { max-width: 740px; font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height: 1.65; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-facts {
    margin-top: clamp(55px, 7vw, 90px);
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.hero-fact strong { display: block; font-size: 1.18rem; }
.hero-fact span { color: var(--steel); font-size: .82rem; }
.hero-media {
    position: relative;
    min-height: 690px;
    background: var(--navy);
    overflow: hidden;
}
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; filter: saturate(.72) contrast(1.08); transform: scale(1.03); transition: transform 1.2s var(--ease); }
.hero-media.is-visible img { transform: scale(1); }
.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7,21,42,.04), rgba(7,21,42,.55));
}
.hero-media::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 11px;
    height: 100%;
    background: var(--yellow);
}
.hero-status {
    position: absolute;
    z-index: 3;
    left: 42px;
    right: 42px;
    bottom: 38px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
    color: #fff;
}
.hero-status p { margin: 0; color: rgba(255,255,255,.78); }
.hero-status strong { display: block; font-size: clamp(1.7rem, 3vw, 3.2rem); letter-spacing: -.04em; }
.hero-status-index { color: var(--yellow); font-weight: 900; font-size: .85rem; letter-spacing: .16em; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--paper-2); }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    min-height: 118px;
    padding: 28px 28px 25px;
    border-left: 1px solid var(--line);
}
.trust-item:last-child { border-right: 1px solid var(--line); }
.trust-item strong { display: block; font-size: 1.08rem; }
.trust-item span { color: var(--steel); font-size: .86rem; }

.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-card {
    position: relative;
    min-height: 360px;
    padding: 42px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    transition: background .3s ease;
}
.capability-card:hover { background: var(--paper-2); }
.capability-number { color: var(--yellow-dark); font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.capability-card h3 { margin: 75px 0 18px; font-size: clamp(1.8rem, 3vw, 3rem); }
.capability-card p { max-width: 520px; margin-bottom: 28px; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 850;
    font-size: .9rem;
}
.text-link::after { content: "→"; transition: transform .22s var(--ease); }
.text-link:hover::after { transform: translateX(6px); }
.capability-icon {
    position: absolute;
    right: -20px;
    top: -16px;
    width: 180px;
    height: 180px;
    color: rgba(13,23,38,.05);
}

.dark-section { background: var(--navy); color: #fff; }
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section p { color: rgba(255,255,255,.68); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid rgba(255,255,255,.15);
    border-left: 1px solid rgba(255,255,255,.15);
}
.stat {
    min-height: 220px;
    padding: 36px 30px;
    border-right: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.stat-value { display: block; margin-bottom: 12px; color: var(--yellow); font-size: clamp(2.8rem,5vw,5.2rem); line-height: 1; font-weight: 900; letter-spacing: -.055em; }
.stat-label { color: rgba(255,255,255,.72); font-size: .92rem; }

.process-grid { counter-reset: process; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-step {
    min-height: 310px;
    padding: 34px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.process-step::before {
    counter-increment: process;
    content: "0" counter(process);
    display: block;
    margin-bottom: 70px;
    color: var(--yellow-dark);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .14em;
}
.process-step h3 { margin-bottom: 16px; }
.process-step p { margin-bottom: 0; font-size: .94rem; }

.media-split { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 650px; }
.media-split-image { min-height: 500px; overflow: hidden; }
.media-split-image picture, .media-split-image img { width: 100%; height: 100%; }
.media-split-image img { object-fit: cover; filter: saturate(.75) contrast(1.04); transition: transform .9s var(--ease); }
.media-split-image:hover img { transform: scale(1.025); }
.media-split-copy { background: var(--paper-2); padding: clamp(55px,7vw,110px); display: flex; flex-direction: column; justify-content: center; }
.media-split-copy h2 { margin-bottom: 28px; }
.check-list { list-style: none; margin: 28px 0 36px; padding: 0; }
.check-list li { position: relative; padding: 13px 0 13px 34px; border-top: 1px solid var(--line); color: var(--ink-2); }
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 12px; color: var(--yellow-dark); font-weight: 900; }

.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.industry-card { background: #fff; padding: 32px; min-height: 245px; }
.industry-card .industry-code { display: block; margin-bottom: 70px; color: var(--steel); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.industry-card h3 { font-size: 1.35rem; }
.industry-card p { margin-bottom: 0; font-size: .9rem; }

.machine-teaser { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.machine-teaser-grid { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 660px; }
.machine-teaser-copy { padding: clamp(60px,7vw,110px) max(30px,calc((100vw - var(--max))/2 + 24px)); padding-right: clamp(40px,6vw,90px); display: flex; flex-direction: column; justify-content: center; }
.machine-teaser-copy h2 { margin-bottom: 26px; }
.machine-teaser-copy p { color: rgba(255,255,255,.66); }
.machine-list { margin: 34px 0; border-top: 1px solid rgba(255,255,255,.17); }
.machine-list div { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.machine-list span:last-child { color: var(--yellow); font-weight: 800; }
.machine-teaser-image { position: relative; min-height: 500px; }
.machine-teaser-image picture, .machine-teaser-image img { width: 100%; height: 100%; }
.machine-teaser-image img { object-fit: cover; filter: saturate(.65) contrast(1.08); }
.machine-teaser-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,var(--navy),transparent 38%); }

.page-hero { position: relative; padding: clamp(85px,11vw,155px) 0 clamp(65px,8vw,105px); background: var(--paper-2); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(13,23,38,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(13,23,38,.04) 1px,transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(90deg,transparent,#000); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { max-width: 1080px; margin-bottom: 28px; font-size: clamp(3.1rem,7vw,6.4rem); }
.page-hero p { max-width: 780px; margin: 0; font-size: clamp(1.05rem,1.7vw,1.35rem); }
.page-breadcrumb { margin-bottom: 34px; display: flex; gap: 10px; color: var(--steel); font-size: .82rem; font-weight: 750; }
.page-breadcrumb a:hover { color: var(--ink); }

.detail-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.detail-card { min-height: 330px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-card-number { display: block; margin-bottom: 74px; color: var(--yellow-dark); font-size: .76rem; font-weight: 900; letter-spacing: .14em; }
.detail-card h3 { font-size: 1.55rem; }
.detail-card ul { margin: 20px 0 0; padding: 0; list-style: none; }
.detail-card li { padding: 9px 0; border-top: 1px solid var(--line); color: var(--steel); font-size: .92rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.data-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.data-table th, .data-table td { padding: 17px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { background: var(--navy); color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table td:first-child { color: var(--ink); font-weight: 800; }
.data-table tbody tr:hover { background: var(--paper-2); }
.table-section + .table-section { margin-top: 54px; }
.table-section h2 { margin-bottom: 22px; font-size: clamp(1.8rem,3vw,2.8rem); }

.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-auto-rows: 310px; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; background: var(--paper-3); }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item picture, .gallery-item img { width: 100%; height: 100%; }
.gallery-item img { object-fit: cover; filter: saturate(.75); transition: transform .65s var(--ease), filter .4s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(.95); }
.gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; color: #fff; background: linear-gradient(transparent,rgba(7,21,42,.86)); font-weight: 800; }

.quote-block { padding: clamp(55px,8vw,100px); background: var(--yellow); color: var(--ink); }
.quote-block blockquote { margin: 0; max-width: 1100px; font-size: clamp(2rem,4.5vw,4.4rem); line-height: 1.1; font-weight: 850; letter-spacing: -.045em; }
.quote-block cite { margin-top: 30px; display: block; font-style: normal; font-weight: 850; }

.contact-layout { display: grid; grid-template-columns: .74fr 1.26fr; border: 1px solid var(--line); }
.contact-sidebar { padding: clamp(34px,5vw,64px); background: var(--navy); color: #fff; }
.contact-sidebar h2 { margin-bottom: 28px; font-size: clamp(2rem,3vw,3.3rem); }
.contact-sidebar p { color: rgba(255,255,255,.66); }
.contact-meta { margin-top: 48px; }
.contact-meta-block { padding: 23px 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-meta-block:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-meta-block span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-meta-block a, .contact-meta-block strong { font-size: 1.05rem; }
.contact-form-wrap { padding: clamp(34px,5vw,68px); background: #fff; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label, .form-legend { color: var(--ink-2); font-size: .82rem; font-weight: 850; }
.form-field input, .form-field textarea, .form-field select {
    width: 100%;
    min-height: 52px;
    border: 1px solid #bfc7d1;
    background: #fff;
    color: var(--ink);
    padding: 13px 14px;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 180px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--ink); box-shadow: inset 4px 0 0 var(--yellow); }
.form-field small { color: var(--steel); font-size: .76rem; }
.form-check { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; }
.form-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--ink); }
.form-check label { color: var(--steel); font-size: .84rem; }
.form-check a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-status { min-height: 24px; margin: 0; font-size: .9rem; }
.form-status.is-success { color: var(--green); }
.form-status.is-error { color: var(--red); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.turnstile-wrap { grid-column: 1 / -1; }

.legal-page { max-width: 920px; }
.legal-page h2 { margin: 60px 0 20px; font-size: clamp(1.55rem,2.5vw,2.35rem); }
.legal-page h3 { margin: 36px 0 12px; font-size: 1.25rem; }
.legal-page p, .legal-page li { color: var(--ink-2); }
.legal-page a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { padding: 22px; border-left: 5px solid var(--yellow); background: var(--paper-2); }

.site-footer { background: var(--navy); color: #fff; }
.footer-cta {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    padding: clamp(70px,9vw,120px) 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: end;
    border-bottom: 1px solid rgba(255,255,255,.17);
}
.footer-cta h2 { margin: 0; color: #fff; font-size: clamp(2.3rem,5vw,5rem); }
.footer-grid {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr .75fr .75fr;
    gap: 58px;
}
.footer-grid h3 { margin-bottom: 20px; color: rgba(255,255,255,.48); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid p, .footer-grid address { color: rgba(255,255,255,.62); }
.footer-grid a { display: inline-block; margin-bottom: 9px; color: rgba(255,255,255,.83); }
.footer-grid a:hover { color: var(--yellow); }
.footer-brand .brand-primary { color: #fff; font-size: 1.6rem; }
.footer-brand .brand-secondary { color: rgba(255,255,255,.5); }
.footer-brand p { max-width: 360px; margin-top: 25px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); padding: 20px max(24px,calc((100vw - var(--max))/2 + 24px)); display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.46); font-size: .78rem; }

.no-js [data-reveal], .no-js [data-stagger] > * { opacity: 1 !important; transform: none !important; }
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal="left"] { transform: translateX(-35px); }
[data-reveal="right"] { transform: translateX(35px); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(24px); }
[data-stagger].is-visible > * { animation: reveal-item .62s var(--ease) forwards; }
[data-stagger].is-visible > *:nth-child(2) { animation-delay: .08s; }
[data-stagger].is-visible > *:nth-child(3) { animation-delay: .16s; }
[data-stagger].is-visible > *:nth-child(4) { animation-delay: .24s; }
[data-stagger].is-visible > *:nth-child(5) { animation-delay: .32s; }
[data-stagger].is-visible > *:nth-child(6) { animation-delay: .40s; }
@keyframes reveal-item { to { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
    .desktop-nav { gap: 18px; }
    .header-cta { display: none; }
    .header-shell { grid-template-columns: auto 1fr; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { min-height: 650px; padding-left: max(24px,calc((100vw - var(--max))/2 + 24px)); padding-right: max(24px,calc((100vw - var(--max))/2 + 24px)); }
    .hero-media { min-height: 620px; }
    .section-heading { gap: 45px; }
    .stats-grid, .industry-grid { grid-template-columns: repeat(2,1fr); }
    .process-grid { grid-template-columns: repeat(2,1fr); }
    .detail-grid { grid-template-columns: repeat(2,1fr); }
    .machine-teaser-grid { grid-template-columns: 1fr; }
    .machine-teaser-copy { padding: 80px max(24px,calc((100vw - var(--max))/2 + 24px)); }
    .machine-teaser-image::after { background: linear-gradient(180deg,var(--navy),transparent 35%); }
    .footer-grid { grid-template-columns: 1.35fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
    :root { --header-h: 72px; }
    .header-shell { min-height: var(--header-h); padding: 0 18px; }
    .desktop-nav { display: none; }
    .menu-toggle {
        justify-self: end;
        width: 47px;
        height: 47px;
        padding: 12px;
        display: grid;
        align-content: center;
        gap: 5px;
        border: 1px solid var(--ink);
        background: #fff;
    }
    .menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu {
        position: fixed;
        inset: var(--header-h) 0 0;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: #fff;
        border-top: 1px solid var(--line);
        overflow-y: auto;
    }
    .mobile-menu[hidden] { display: none; }
    .mobile-menu nav { display: flex; flex-direction: column; }
    .mobile-menu nav a { padding: 19px 0; border-bottom: 1px solid var(--line); font-size: clamp(1.6rem,8vw,2.5rem); font-weight: 850; letter-spacing: -.04em; }
    .mobile-contact { padding: 35px 0 12px; display: flex; flex-direction: column; gap: 8px; color: var(--steel); }
    .section-shell { width: min(calc(100% - 36px), var(--max)); }
    .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
    .hero-copy { min-height: auto; padding: 72px 18px 64px; }
    .hero h1 { font-size: clamp(3rem,14vw,5.1rem); }
    .hero-facts { grid-template-columns: 1fr; }
    .hero-fact { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
    .hero-media { min-height: 510px; }
    .hero-status { left: 24px; right: 24px; bottom: 24px; }
    .trust-grid { grid-template-columns: repeat(2,1fr); }
    .capability-grid { grid-template-columns: 1fr; }
    .capability-card { min-height: 320px; padding: 32px; }
    .capability-card h3 { margin-top: 60px; }
    .media-split { grid-template-columns: 1fr; }
    .media-split-copy { order: -1; }
    .contact-layout { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; }
    .gallery-item:first-child { grid-row: auto; }
    .footer-cta { grid-template-columns: 1fr; align-items: start; }
    .footer-grid { grid-template-columns: repeat(2,1fr); gap: 42px; }
    .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
    .brand-primary { font-size: 1.08rem; }
    .brand-secondary { font-size: .62rem; }
    .section-pad { padding: 74px 0; }
    .section-pad-sm { padding: 55px 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-media { min-height: 430px; }
    .hero-status { grid-template-columns: 1fr; }
    .hero-status-index { display: none; }
    .trust-grid, .stats-grid, .industry-grid, .process-grid, .detail-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: 1px solid var(--line); }
    .stat { min-height: 180px; }
    .process-step { min-height: 260px; }
    .process-step::before { margin-bottom: 45px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field-full, .form-actions, .turnstile-wrap { grid-column: 1; }
    .form-actions .button { width: 100%; }
    .contact-form-wrap, .contact-sidebar { padding: 28px 22px; }
    .page-hero { padding-top: 68px; }
    .page-hero h1 { font-size: clamp(2.8rem,15vw,4.5rem); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}
