:root {
  --blue-950: #052a49;
  --blue-800: #073b66;
  --blue-650: #0a568d;
  --orange: #ed620b;
  --orange-dark: #bd4300;
  --ink: #14212b;
  --muted: #5d6872;
  --line: #d9e0e5;
  --mist: #f3f6f7;
  --white: #ffffff;
  --green: #126b58;
  --shadow: 0 20px 55px rgba(5, 42, 73, .12);
  --wrap: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, "Segoe UI", Arial, sans-serif; line-height: 1.65; letter-spacing: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { color: inherit; }
svg { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.wrap { width: min(calc(100% - 48px), var(--wrap)); 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; z-index: 1000; top: 8px; left: 8px; padding: 10px 14px; background: var(--white); color: var(--blue-950); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ffb14b; outline-offset: 3px; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.95); border-bottom: 1px solid transparent; backdrop-filter: blur(14px); transition: box-shadow .25s, border-color .25s; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 25px rgba(5,42,73,.08); }
.header-inner { width: min(calc(100% - 40px), 1320px); min-height: 82px; margin: auto; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--blue-950); min-width: 210px; }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand span { display: grid; line-height: 1.05; text-transform: uppercase; }
.brand b { font-size: 18px; }
.brand small { margin-top: 5px; color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 25px; flex: 1; }
.site-nav > a, .nav-products > button { position: relative; border: 0; padding: 29px 0; background: none; text-decoration: none; font-size: 14px; font-weight: 750; cursor: pointer; }
.site-nav > a::after, .nav-products > button::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--orange); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .22s; }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after, .nav-products > button:hover::after { transform: scaleX(1); }
.nav-products { position: relative; }
.nav-products > button { display: flex; align-items: center; gap: 5px; }
.nav-products > button svg { width: 14px; transform: rotate(90deg); transition: transform .2s; }
.nav-products > button[aria-expanded="true"] svg { transform: rotate(-90deg); }
.product-menu { position: absolute; top: 75px; left: 50%; width: 420px; padding: 10px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: .2s; }
.nav-products:hover .product-menu, .nav-products:focus-within .product-menu, .nav-products > button[aria-expanded="true"] + .product-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.product-menu a { display: block; padding: 10px 12px; border-left: 2px solid transparent; color: var(--ink); font-size: 13px; line-height: 1.35; text-decoration: none; }
.product-menu a:hover, .product-menu a[aria-current="page"] { background: var(--mist); border-left-color: var(--orange); color: var(--blue-800); }
.header-call { display: flex; align-items: center; gap: 8px; padding: 11px 15px; background: var(--blue-800); color: var(--white); font-size: 13px; font-weight: 800; text-decoration: none; }
.header-call:hover { background: var(--orange-dark); }
.menu-toggle { display: none; }
.icon-button { width: 42px; height: 42px; padding: 0; display: inline-grid; place-items: center; border: 1px solid currentColor; background: transparent; cursor: pointer; }

.eyebrow { margin: 0 0 15px; color: var(--orange-dark); font-size: 12px; font-weight: 850; letter-spacing: 1.6px; text-transform: uppercase; }
.section-number { color: var(--blue-650); font-size: 12px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin-top: 0; color: var(--blue-950); line-height: 1.08; }
h1 { font-size: 56px; }
h2 { font-size: 42px; }
h3 { font-size: 22px; }
p { margin-top: 0; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 12px 19px; border: 1px solid transparent; text-decoration: none; font-size: 14px; font-weight: 850; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--orange); color: var(--white); }
.button.primary:hover { background: var(--orange-dark); }
.button.light { background: var(--white); color: var(--blue-950); }
.button.light:hover { background: #ffe7d7; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-800); font-size: 14px; font-weight: 850; text-decoration-color: var(--orange); text-underline-offset: 5px; }

.hero { position: relative; min-height: 650px; overflow: hidden; background: #eef3f5; }
.hero-grid, .product-grid-art { position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(7,59,102,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(7,59,102,.09) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(90deg, #000, transparent 80%); }
.hero::before { position: absolute; right: -160px; bottom: -300px; width: 720px; height: 720px; border: 120px solid rgba(237,98,11,.12); border-radius: 50%; content: ""; }
.hero-slide { position: absolute; inset: 0; width: min(calc(100% - 48px), 1240px); min-height: 650px; margin: auto; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 30px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .6s; }
.hero-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.hero-copy { position: relative; z-index: 2; max-width: 650px; padding: 50px 0 85px; }
.hero-copy h1 { margin-bottom: 12px; font-size: 22px; color: var(--orange-dark); text-transform: uppercase; }
.hero-copy .hero-brand { margin-bottom: 12px; color: var(--orange-dark); font-size: 18px; font-weight: 850; text-transform: uppercase; }
.hero-copy h2 { max-width: 690px; margin-bottom: 20px; font-size: 54px; }
.hero-copy > p:not(.eyebrow):not(.hero-brand) { max-width: 580px; color: #4e5c66; font-size: 18px; }
.hero-actions { margin-top: 30px; display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.hero-machine { position: relative; height: 560px; display: grid; place-items: center; }
.hero-machine img { position: relative; z-index: 1; width: 92%; height: 90%; object-fit: contain; filter: drop-shadow(0 24px 25px rgba(5,42,73,.18)); mix-blend-mode: multiply; transform: translateX(35px) scale(.97); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.hero-slide.is-active .hero-machine img { transform: translateX(0) scale(1); }
.machine-index { position: absolute; right: 0; top: 28px; color: rgba(7,59,102,.08); font-size: 150px; font-weight: 900; line-height: 1; }
.hero-controls { position: absolute; z-index: 5; left: max(24px, calc((100% - 1240px) / 2)); bottom: 34px; display: flex; align-items: center; gap: 18px; }
.slide-dots { display: flex; gap: 8px; }
.slide-dots button { width: 54px; height: 34px; padding: 15px 0; border: 0; background: transparent; cursor: pointer; }
.slide-dots span { display: block; height: 3px; background: #aab6be; }
.slide-dots button[aria-selected="true"] span { background: var(--orange); }
.slider-pause { width: 36px; height: 36px; color: var(--blue-800); }

.intro-band { padding: 90px 0; background: var(--blue-950); color: #d8e6ef; }
.intro-layout { display: grid; grid-template-columns: .5fr 1.2fr 1fr; gap: 70px; align-items: start; }
.intro-layout h2 { max-width: 600px; color: var(--white); }
.intro-layout > p:last-child { margin-top: 32px; }
.machine-showcase { padding-block: 110px; }
.section-head { margin-bottom: 50px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-head h2 { margin-bottom: 0; }
.machine-list { border-top: 1px solid var(--line); }
.machine-row { min-height: 150px; display: grid; grid-template-columns: 150px 1fr 50px; align-items: center; gap: 25px; border-bottom: 1px solid var(--line); color: inherit; text-decoration: none; transition: background .22s, padding .22s; }
.machine-row:hover { padding-inline: 18px; background: var(--mist); }
.machine-thumb { height: 140px; display: grid; place-items: center; overflow: hidden; }
.machine-thumb img { width: 130px; height: 125px; object-fit: contain; mix-blend-mode: multiply; transition: transform .25s; }
.machine-row:hover img { transform: scale(1.06); }
.machine-row > span:nth-child(2) { display: grid; grid-template-columns: 1fr 1.2fr; column-gap: 35px; align-items: center; }
.machine-row small { grid-column: 1 / -1; color: var(--orange-dark); font-weight: 800; text-transform: uppercase; }
.machine-row strong { color: var(--blue-950); font-size: 23px; line-height: 1.25; }
.machine-row em { color: var(--muted); font-size: 14px; font-style: normal; }
.machine-row > svg { color: var(--orange); font-size: 24px; }
.process-band { padding: 105px 0; background: #edf2f3; }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.process-layout > div > p:last-child { color: var(--muted); }
.process-layout ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid #bdc9cf; }
.process-layout li { padding: 25px 0; display: grid; grid-template-columns: 60px 1fr; gap: 18px; border-bottom: 1px solid #bdc9cf; }
.process-layout li > span { color: var(--orange-dark); font-weight: 900; }
.process-layout strong { color: var(--blue-950); font-size: 19px; }
.process-layout li p { margin: 5px 0 0; color: var(--muted); }
.market-strip { padding-block: 100px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.market-links { display: grid; grid-template-columns: 1fr 1fr; }
.market-links a { padding: 17px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 750; }
.market-links a:nth-child(odd) { margin-right: 30px; }
.market-links a:hover { color: var(--orange-dark); }
.final-cta { padding: 100px 0; background: var(--orange); color: var(--white); }
.final-cta .wrap { position: relative; }
.final-cta h2 { max-width: 770px; margin-bottom: 18px; color: var(--white); font-size: 50px; }
.final-cta .eyebrow { color: #fff3e9; }
.final-cta p:not(.eyebrow) { max-width: 650px; }
.final-cta .wrap > div { margin-top: 30px; display: flex; align-items: center; gap: 25px; }
.final-cta .wrap > div > a:not(.button) { color: var(--white); font-weight: 800; }

.breadcrumbs { min-height: 58px; display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { color: var(--blue-800); }
.breadcrumbs svg { width: 13px; }
.product-hero { min-height: 610px; display: grid; align-items: center; overflow: hidden; background: var(--mist); }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.product-copy h1 { margin-bottom: 25px; font-size: 50px; }
.product-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.product-visual { position: relative; min-height: 540px; margin: 0; display: grid; place-items: center; }
.product-visual img { position: relative; z-index: 2; width: 90%; height: 480px; object-fit: contain; filter: drop-shadow(0 25px 25px rgba(5,42,73,.16)); mix-blend-mode: multiply; }
.product-visual figcaption { position: absolute; z-index: 3; right: 0; bottom: 20px; left: 0; padding: 8px 12px; background: rgba(255,255,255,.92); color: var(--muted); font-size: 12px; text-align: center; }
.product-detail { padding-block: 105px; display: grid; grid-template-columns: 310px 1fr; gap: 105px; align-items: start; }
.product-aside { position: sticky; top: 110px; padding: 28px; background: var(--blue-950); color: var(--white); }
.product-aside .eyebrow { color: #ffb375; }
.product-aside > div { padding: 13px 0; display: flex; align-items: start; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.17); font-size: 14px; }
.product-aside > div svg { flex: 0 0 auto; color: #ffb375; }
.product-aside > a { margin-top: 22px; display: flex; justify-content: space-between; color: var(--white); font-size: 13px; font-weight: 800; }
.product-article h2 { max-width: 750px; margin-bottom: 25px; }
.product-article > p:not(.section-number) { color: var(--muted); font-size: 17px; }
.product-article hr { margin: 60px 0; border: 0; border-top: 1px solid var(--line); }
.application-list { margin: 30px 0 0; padding: 0; list-style: none; }
.application-list li { padding: 17px 0; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); color: var(--blue-950); font-size: 18px; font-weight: 750; }
.application-list svg { color: var(--orange); }
.questions { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.questions p { min-height: 130px; margin: 0; padding: 24px; display: grid; align-items: center; background: var(--white); font-weight: 700; }
.faq-band { padding: 95px 0; background: #eef3f4; }
.faq-list { max-width: 900px; }
.faq-list details { border-top: 1px solid #bac7cd; }
.faq-list details:last-child { border-bottom: 1px solid #bac7cd; }
.faq-list summary { padding: 22px 5px; display: flex; justify-content: space-between; gap: 20px; color: var(--blue-950); font-size: 18px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 24px; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 5px 20px; color: var(--muted); }
.related { padding-block: 100px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.related-grid a { min-width: 0; padding: 25px; background: var(--white); text-decoration: none; }
.related-grid img { width: 100%; height: 240px; object-fit: contain; mix-blend-mode: multiply; }
.related-grid span { min-height: 65px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--blue-950); font-weight: 800; line-height: 1.3; }
.related-grid svg { flex: 0 0 auto; color: var(--orange); }

.page-hero, .contact-hero { padding: 115px 0; background: var(--blue-950); color: #dce9f1; }
.page-hero h1, .contact-hero h1 { max-width: 980px; color: var(--white); }
.page-hero p:last-child, .contact-hero p:last-child { max-width: 730px; margin-bottom: 0; font-size: 18px; }
.story { padding-block: 105px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.story p { color: var(--muted); font-size: 17px; }
.identity-band { padding: 50px 0; background: var(--mist); }
.identity-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; }
.identity-grid > div { padding: 10px 32px; border-left: 3px solid var(--orange); }
.identity-grid span, .identity-grid strong { display: block; }
.identity-grid span { color: var(--muted); font-size: 12px; text-transform: uppercase; }
.identity-grid strong { margin-top: 5px; color: var(--blue-950); }
.values { padding-block: 100px; }
.value-columns { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-columns article { padding: 40px 35px; border-right: 1px solid var(--line); }
.value-columns article:last-child { border: 0; }
.value-columns span { color: var(--orange-dark); font-weight: 900; }
.value-columns h3 { margin: 40px 0 12px; }
.value-columns p { color: var(--muted); }
.market-directory { padding-block: 100px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.market-card { min-height: 165px; padding: 35px; display: grid; grid-template-columns: 1fr auto; align-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.market-card:nth-child(even) { border-right: 0; }
.market-card span { color: var(--blue-950); font-size: 32px; font-weight: 850; }
.market-card small { grid-column: 1; color: var(--muted); }
.market-card svg { grid-column: 2; grid-row: 1 / 3; color: var(--orange); font-size: 28px; transition: transform .2s; }
.market-card:hover svg { transform: translateX(6px); }
.market-note { margin-bottom: 100px; padding: 35px; display: flex; align-items: center; gap: 25px; background: var(--mist); }
.market-note > svg { flex: 0 0 auto; color: var(--orange); font-size: 34px; }
.market-note h2 { margin-bottom: 7px; font-size: 24px; }
.market-note p { margin: 0; color: var(--muted); }

.contact-layout { padding-block: 100px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; align-items: start; }
.contact-details { padding-top: 25px; }
.contact-details > a, .contact-details > div { padding: 22px 0; display: flex; gap: 18px; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-details svg { flex: 0 0 auto; margin-top: 4px; color: var(--orange); font-size: 21px; }
.contact-details span { display: grid; color: var(--blue-950); font-weight: 750; overflow-wrap: anywhere; }
.contact-details small { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.contact-details > p { margin-top: 25px; color: var(--muted); font-size: 13px; }
.enquiry-form { padding: 42px; background: var(--mist); }
.enquiry-form h2 { margin-bottom: 30px; }
.enquiry-form label { margin-bottom: 18px; display: grid; gap: 7px; color: var(--blue-950); font-size: 13px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #aebbc2; border-radius: 0; background: var(--white); color: var(--ink); }
.enquiry-form textarea { resize: vertical; }
.enquiry-form .consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-weight: 500; }
.enquiry-form .consent input { width: 19px; min-height: 19px; flex: 0 0 auto; }
.honeypot { position: absolute !important; left: -10000px !important; }
.form-status { padding: 12px 15px; border-left: 3px solid; }
.form-status.success { background: #e3f2ed; border-color: var(--green); color: var(--green); }
.form-status.error { background: #fff0e9; border-color: var(--orange-dark); color: #8e2f00; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: 12px; }
.policy { max-width: 840px; padding-block: 90px; }
.policy h2 { margin-top: 45px; font-size: 27px; }
.policy p { color: var(--muted); }
.error-page { min-height: 570px; padding-block: 120px; }
.error-page h1 { max-width: 850px; }
.error-page p:not(.eyebrow) { color: var(--muted); font-size: 18px; }

.site-footer { padding-top: 75px; background: #071f31; color: #c8d4dc; }
.footer-main { padding-bottom: 55px; display: grid; grid-template-columns: 1.4fr .6fr 1fr; gap: 70px; }
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand img { background: var(--white); }
.footer-brand strong { display: block; color: var(--white); font-size: 22px; }
.footer-brand p { max-width: 320px; margin: 7px 0 0; font-size: 13px; }
.footer-main h2 { margin-bottom: 18px; color: var(--white); font-size: 15px; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) a, .footer-main > div:not(.footer-brand) p { display: block; margin: 0 0 10px; color: #c8d4dc; font-size: 13px; text-decoration: none; overflow-wrap: anywhere; }
.footer-main a:hover { color: #ffb375; }
.footer-bottom { min-height: 65px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.14); font-size: 12px; }
.floating-call { position: fixed; z-index: 80; right: 18px; bottom: 18px; width: 52px; height: 52px; display: grid; place-items: center; background: var(--orange); color: var(--white); box-shadow: 0 10px 25px rgba(0,0,0,.23); }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s, transform .65s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .header-call span { display: none; }
  .header-call { width: 44px; height: 44px; padding: 0; justify-content: center; }
  .site-nav { gap: 18px; }
  .hero-copy h2 { font-size: 46px; }
  .intro-layout { grid-template-columns: 1fr 1fr; gap: 40px; }
  .intro-layout > .section-number { grid-column: 1 / -1; }
  .product-detail { grid-template-columns: 270px 1fr; gap: 60px; }
  .contact-layout { gap: 60px; }
}

@media (max-width: 820px) {
  .wrap { width: min(calc(100% - 36px), var(--wrap)); }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .header-inner { min-height: 72px; }
  .brand { min-width: 0; margin-right: auto; }
  .brand img { width: 48px; height: 48px; }
  .menu-toggle { display: inline-grid; order: 3; color: var(--blue-800); }
  .header-call { order: 2; }
  .site-nav { position: fixed; top: 72px; right: 0; left: 0; max-height: calc(100vh - 72px); padding: 20px; display: block; align-items: stretch; overflow-y: auto; background: var(--white); border-top: 1px solid var(--line); box-shadow: var(--shadow); }
  .js .site-nav { display: none; }
  .js .site-nav.is-open { display: block; }
  .site-nav > a, .nav-products > button { width: 100%; padding: 15px 5px; display: flex; text-align: left; border-bottom: 1px solid var(--line); }
  .site-nav > a::after, .nav-products > button::after { display: none; }
  .nav-products > button { justify-content: space-between; }
  .product-menu { position: static; width: 100%; padding: 0 0 0 12px; display: block; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .js .product-menu { display: none; }
  .nav-products > button[aria-expanded="true"] + .product-menu { display: block; }
  .product-menu a { padding-block: 11px; }
  .hero, .hero-slide { min-height: 750px; }
  .hero-slide { grid-template-columns: 1fr; align-content: start; gap: 0; }
  .hero-copy { padding: 55px 0 0; }
  .hero-copy h2 { font-size: 42px; }
  .hero-machine { height: 330px; }
  .hero-machine img { width: 88%; height: 100%; }
  .machine-index { font-size: 100px; }
  .hero-controls { left: 18px; bottom: 20px; }
  .intro-layout, .process-layout, .market-strip, .story, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .machine-row > span:nth-child(2) { grid-template-columns: 1fr; gap: 8px; }
  .machine-row strong, .machine-row em { grid-column: 1; }
  .product-hero-grid { grid-template-columns: 1fr; gap: 5px; }
  .product-copy { padding-top: 55px; }
  .product-copy h1 { font-size: 42px; }
  .product-visual { min-height: 400px; }
  .product-visual img { height: 360px; }
  .product-detail { grid-template-columns: 1fr; gap: 55px; }
  .product-aside { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .identity-grid { grid-template-columns: 1fr; gap: 25px; }
  .value-columns { grid-template-columns: 1fr; }
  .value-columns article { border-right: 0; border-bottom: 1px solid var(--line); }
  .market-directory { grid-template-columns: 1fr; }
  .market-card, .market-card:nth-child(even) { border-right: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  .brand span { display: none; }
  .header-inner { width: calc(100% - 24px); gap: 10px; }
  .hero, .hero-slide { min-height: 720px; }
  .hero-copy { padding-top: 40px; }
  .hero-copy h2 { font-size: 35px; }
  .hero-copy > p:not(.eyebrow):not(.hero-brand) { font-size: 16px; }
  .hero-machine { height: 285px; }
  .hero-actions { gap: 14px; }
  .hero-actions .button { width: 100%; }
  .slide-dots button { width: 39px; }
  .intro-band, .machine-showcase, .process-band, .market-strip, .related, .values { padding-block: 75px; }
  .intro-layout { grid-template-columns: 1fr; }
  .intro-layout > .section-number { grid-column: auto; }
  .machine-row { min-height: 120px; grid-template-columns: 92px 1fr 24px; gap: 12px; }
  .machine-thumb { height: 105px; }
  .machine-thumb img { width: 88px; height: 96px; }
  .machine-row strong { font-size: 17px; }
  .machine-row em { display: none; }
  .market-links { grid-template-columns: 1fr; }
  .market-links a:nth-child(odd) { margin-right: 0; }
  .final-cta { padding: 75px 0; }
  .final-cta h2 { font-size: 36px; }
  .breadcrumbs { overflow-x: auto; white-space: nowrap; }
  .product-copy h1 { font-size: 36px; }
  .product-visual { min-height: 330px; }
  .product-visual img { height: 300px; }
  .product-detail { padding-block: 75px; }
  .questions { grid-template-columns: 1fr; }
  .questions p { min-height: 100px; }
  .page-hero, .contact-hero { padding: 85px 0; }
  .market-card { min-height: 130px; padding: 25px 15px; }
  .market-card span { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .enquiry-form { padding: 28px 18px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; align-items: flex-start; }
  .footer-bottom { padding-block: 18px; display: grid; gap: 7px; }
}

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