:root {
  --ink: #101210;
  --ink-soft: #1a1d1a;
  --paper: #f3f1e9;
  --paper-deep: #e7e3d7;
  --white: #fffef8;
  --orange: #ff5b1f;
  --orange-dark: #d93f08;
  --line: rgba(16, 18, 16, 0.18);
  --muted: #686b64;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --shell: min(1240px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.scroll-progress { position: fixed; inset: 0 auto auto 0; z-index: 1000; width: 100%; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; will-change: transform; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.page-shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 999; background: var(--orange); color: #fff; padding: 12px 18px; transition: top .2s; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .3s, height .3s, box-shadow .3s;
}
.site-header.scrolled { height: 72px; background: rgba(16,18,16,.96); box-shadow: 0 12px 35px rgba(0,0,0,.18); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; }
.brand-mark { display: grid; place-items: center; width: 48px; height: 48px; background: var(--orange); }
.brand-mark svg { width: 34px; height: 34px; fill: var(--white); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--display); font-size: 23px; letter-spacing: .025em; }
.brand-copy small { margin-top: 5px; font-size: 9px; font-weight: 600; letter-spacing: .43em; }
.site-nav { display: flex; align-items: center; gap: 36px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: right .2s; }
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.site-nav > a[aria-current="page"]::after { right: 0; }
.nav-machine-wrap { position: static; }
.nav-machine-button { position: relative; display: inline-flex; align-items: center; gap: 7px; padding: 0; color: inherit; background: none; border: 0; font: inherit; cursor: pointer; }
.nav-machine-button > span { color: var(--orange); font-size: 18px; line-height: 1; transition: transform .2s; }
.nav-machine-button[aria-expanded="true"] > span { transform: rotate(45deg); }
.nav-machine-button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: right .2s; }
.nav-machine-button:hover::after, .nav-machine-button[aria-current="page"]::after { right: 0; }
.mega-menu { position: fixed; z-index: 99; left: 0; right: 0; top: 88px; padding: 38px max(24px, calc((100vw - 1240px) / 2)) 42px; color: var(--ink); background: var(--white); border-top: 4px solid var(--orange); box-shadow: 0 28px 60px rgba(0,0,0,.25); opacity: 0; visibility: hidden; transform: translateY(-12px); pointer-events: none; transition: opacity .22s, visibility .22s, transform .22s, top .3s; }
.site-header.scrolled .mega-menu { top: 72px; }
.mega-menu.open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mega-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.mega-top span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.mega-top a { color: var(--orange); font-weight: 700; }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 46px; }
.mega-column strong { display: block; margin-bottom: 13px; font-family: var(--display); font-size: 20px; text-transform: uppercase; }
.mega-column a { display: block; padding: 5px 0; color: var(--muted); font-size: 13px; font-weight: 500; }
.mega-column a:hover { color: var(--orange); }
.nav-cta { padding: 13px 18px; border: 1px solid rgba(255,255,255,.45); transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: 780px; height: 100svh; max-height: 980px; color: var(--white); overflow: hidden; background: var(--ink); }
.hero-image { position: absolute; inset: -4% 0; width: 100%; height: 108%; object-fit: cover; object-position: center; transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.04); animation: hero-in 1.4s ease-out both; will-change: transform; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,11,9,.94) 0%, rgba(9,11,9,.72) 33%, rgba(9,11,9,.18) 66%, rgba(9,11,9,.16) 100%), linear-gradient(0deg, rgba(9,11,9,.62) 0%, transparent 42%); }
.hero-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, black, transparent 68%); animation: grid-drift 16s linear infinite; }
.hero-content { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-top: 70px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; }
.eyebrow span { display: block; width: 42px; height: 2px; background: var(--orange); }
.hero .eyebrow, .hero h1, .hero-lede, .hero-actions, .inner-hero-content > *, .contact-hero-grid > * { animation: content-rise .8s cubic-bezier(.2,.75,.25,1) both; }
.hero h1, .inner-hero-content h1 { animation-delay: .12s; }
.hero-lede, .inner-hero-content > p:last-child, .contact-hero-grid > a { animation-delay: .24s; }
.hero-actions { animation-delay: .36s; }
.eyebrow.dark { color: #4c4f49; }
.eyebrow.light { color: #b5b8b0; }
.hero h1, .section h2, .location h2, .cta-section h2 { margin: 0; font-family: var(--display); font-size: clamp(76px, 8.6vw, 132px); line-height: .82; letter-spacing: -.045em; text-transform: uppercase; }
.hero h1 em, .about h2 em { color: var(--orange); font-style: normal; }
.hero-lede { max-width: 560px; margin: 30px 0 0; color: #d7d8d2; font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.button { position: relative; min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 0 24px; overflow: hidden; isolation: isolate; font-weight: 700; font-size: 14px; transition: color .25s, background .25s, transform .25s, box-shadow .25s; }
.button::before { content: ""; position: absolute; inset: -2px; z-index: -1; background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.32) 46%, transparent 67%); transform: translateX(-130%); transition: transform .65s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(16,18,16,.2); }
.button:hover::before { transform: translateX(130%); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s; }
.button:hover svg { transform: translateX(4px); }
.button-primary { color: white; background: var(--orange); }
.button-primary:hover { background: var(--orange-dark); }
.text-link { color: #fff; font-size: 14px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 5px; }
.text-link span { margin-left: 7px; color: var(--orange); }
.hero-side-label { position: absolute; right: 22px; top: 50%; writing-mode: vertical-rl; transform: translateY(-50%); text-transform: uppercase; font-size: 10px; letter-spacing: .32em; color: rgba(255,255,255,.6); }

.signal-bar { position: relative; z-index: 2; margin-top: -1px; background: var(--orange); color: #fff; }
.signal-grid { min-height: 116px; display: grid; grid-template-columns: repeat(3, 1fr); }
.signal-item { display: flex; align-items: center; gap: 20px; padding: 20px 40px; border-left: 1px solid rgba(255,255,255,.25); }
.signal-item:last-child { border-right: 1px solid rgba(255,255,255,.25); }
.signal-number { color: rgba(255,255,255,.55); font-family: var(--display); font-size: 18px; }
.signal-item div { display: flex; flex-direction: column; }
.signal-item strong { font-family: var(--display); font-size: 25px; line-height: 1; text-transform: uppercase; letter-spacing: .02em; }
.signal-item small { margin-top: 8px; font-size: 12px; color: rgba(255,255,255,.75); }

.section { padding: 140px 0; }
.section-heading { display: grid; grid-template-columns: 1.6fr .7fr; gap: 80px; align-items: end; }
.section h2 { font-size: clamp(58px, 7vw, 98px); }
.section-heading > p { max-width: 440px; margin: 0 0 8px; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { position: relative; min-height: 450px; padding: 44px 38px 34px; border-left: 1px solid var(--line); transition: color .3s, background .3s, transform .3s, box-shadow .3s; overflow: hidden; }
.service-card:last-child { border-right: 1px solid var(--line); }
.service-card::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { color: #fff; background: var(--ink); transform: translateY(-10px); box-shadow: 0 24px 50px rgba(16,18,16,.18); }
.service-card::after, .machine-type-card::after, .machine-category::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; background: radial-gradient(420px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255,91,31,.17), transparent 45%); transition: opacity .3s; }
.service-card:hover::after, .machine-type-card:hover::after, .machine-category:hover::after { opacity: 1; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover p, .service-card:hover .card-index { color: #aeb2aa; }
.service-card.featured { background: var(--paper-deep); }
.service-card.featured:hover { background: var(--ink); }
.service-icon svg { width: 72px; height: 72px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: square; stroke-linejoin: miter; }
.card-index { position: absolute; right: 26px; top: 28px; color: #8f918a; font-family: var(--display); }
.service-card h3 { margin: 62px 0 18px; font-family: var(--display); font-size: 34px; line-height: 1; text-transform: uppercase; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.75; transition: color .3s; }
.service-card a { position: absolute; left: 38px; bottom: 36px; color: var(--orange); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.service-card a span { margin-left: 8px; }

.about { position: relative; color: var(--white); background: var(--ink); overflow: hidden; }
.about::after { content: "GH"; position: absolute; right: -30px; bottom: -150px; color: rgba(255,255,255,.025); font-family: var(--display); font-weight: 800; font-size: 600px; line-height: 1; }
.about-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 9vw; align-items: center; }
.about-visual { position: relative; }
.about-photo-wrap { position: relative; min-height: 620px; clip-path: polygon(0 0, 91% 0, 100% 10%, 100% 100%, 9% 100%, 0 90%); overflow: hidden; }
.about-photo-wrap img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: 73% center; filter: grayscale(.45) contrast(1.08) brightness(.72); }
.about-stamp { position: absolute; right: 0; bottom: 0; width: 175px; height: 175px; display: flex; align-items: center; justify-content: center; gap: 12px; color: white; background: var(--orange); }
.about-stamp strong { font-family: var(--display); font-size: 68px; line-height: 1; }
.about-stamp span { font-family: var(--display); text-transform: uppercase; line-height: 1.05; font-size: 15px; }
.measurement { display: flex; align-items: center; gap: 12px; margin-top: 17px; color: #787d75; font-family: monospace; font-size: 10px; letter-spacing: .17em; }
.measurement span { height: 1px; flex: 1; background: #383b37; }
.about h2 { font-size: clamp(66px, 7vw, 104px); }
.about-copy { position: relative; z-index: 2; }
.about-copy .large-copy { margin: 38px 0 20px; color: #f0f0eb; font-size: 21px; line-height: 1.55; }
.about-copy > p:not(.eyebrow):not(.large-copy) { color: #989d95; }
.promise { display: flex; gap: 22px; align-items: center; margin-top: 44px; padding-top: 28px; border-top: 1px solid #343834; }
.promise-mark { flex: 0 0 auto; display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid var(--orange); color: var(--orange); font-family: var(--display); font-size: 30px; }
.promise p { margin: 0; color: #999e97; font-size: 14px; }
.promise strong { display: block; color: white; text-transform: uppercase; letter-spacing: .08em; }

.process { background: var(--white); }
.process-top { display: grid; grid-template-columns: .6fr 1.4fr; align-items: end; }
.process-top .eyebrow { align-self: start; margin-top: 12px; }
.process-list { margin: 85px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: .6fr 1.4fr; padding: 36px 0; border-bottom: 1px solid var(--line); transition: padding-left .2s, background .2s; }
.process-list li:hover { padding-left: 18px; background: #f7f5ee; }
.process-list > li > span { color: var(--orange); font-family: var(--display); font-size: 24px; }
.process-list li div { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.process-list h3 { margin: 0; font-family: var(--display); font-size: 32px; text-transform: uppercase; }
.process-list p { margin: 0; color: var(--muted); }

.location { display: grid; grid-template-columns: 1.6fr 1fr; min-height: 700px; color: var(--white); background: #242724; }
.map-frame { min-height: 620px; background: #ddd; filter: grayscale(1) contrast(1.05); }
.map-frame iframe { width: 100%; height: 100%; min-height: 700px; border: 0; }
.location-panel { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(40px, 6vw, 96px); background: var(--ink); }
.location h2 { font-size: clamp(62px, 6vw, 90px); }
.contact-row { display: grid; grid-template-columns: 90px 1fr; gap: 24px; margin-top: 34px; padding-top: 25px; border-top: 1px solid #333733; }
.contact-row > span { color: #7d827a; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }
.contact-row p { margin: 0; font-size: 17px; }
.contact-row a { color: var(--orange); font-size: 22px; font-weight: 600; }
.contact-row small { color: #878c84; }
.location-panel .button { align-self: flex-start; margin-top: 42px; }

.cta-section { position: relative; overflow: hidden; padding: 135px 0; background: var(--orange); }
.cta-gear { position: absolute; right: -120px; top: 50%; width: 500px; height: 500px; transform: translateY(-50%) rotate(var(--gear-turn, 0deg)); border: 80px dashed rgba(16,18,16,.09); border-radius: 50%; will-change: transform; }
.cta-inner { position: relative; }
.cta-section h2 { font-size: clamp(62px, 7.5vw, 108px); }
.cta-phone { display: inline-flex; align-items: center; gap: 26px; margin-top: 48px; padding-bottom: 8px; border-bottom: 2px solid rgba(16,18,16,.35); font-family: var(--display); font-size: clamp(32px, 4vw, 54px); font-weight: 600; line-height: 1; }
.cta-phone > span { font-family: var(--body); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; }
.cta-phone svg { width: 56px; height: 56px; margin-left: 18px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s; }
.cta-phone:hover svg { transform: translate(5px, -5px); }

.site-footer { padding: 75px 0 26px; color: #fff; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 2fr .7fr .8fr 1.2fr; gap: 50px; padding-bottom: 55px; }
.footer-brand { margin-bottom: 24px; }
.footer-grid > div:first-child > p, .footer-address p { color: #82877f; font-size: 14px; }
.footer-links, .footer-address { display: flex; flex-direction: column; gap: 11px; }
.footer-links > span, .footer-address > span { margin-bottom: 10px; color: #666b64; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; }
.footer-links a { font-size: 14px; }
.footer-links a:hover { color: var(--orange); }
.footer-address p { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; color: #646962; border-top: 1px solid #2c302c; font-size: 11px; }
.footer-bottom p { margin: 0; }
.mobile-call { display: none; }

/* Interior pages */
.inner-header { background: rgba(16,18,16,.96); }
.inner-hero { position: relative; min-height: 680px; display: flex; align-items: flex-end; color: var(--white); background: var(--ink); overflow: hidden; }
.inner-hero > img { position: absolute; inset: -4% 0; width: 100%; height: 108%; object-fit: cover; object-position: 66% center; transform: translate3d(0, var(--hero-shift, 0px), 0); will-change: transform; }
.inner-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,11,9,.96) 0%, rgba(9,11,9,.77) 42%, rgba(9,11,9,.16) 78%), linear-gradient(0deg, rgba(9,11,9,.74), transparent 52%); }
.inner-hero-content { position: relative; padding: 175px 0 90px; }
.inner-hero h1, .contact-hero h1 { max-width: 1040px; margin: 0; font-family: var(--display); font-size: clamp(70px, 8vw, 118px); line-height: .86; letter-spacing: -.045em; text-transform: uppercase; }
.inner-hero h1 em, .contact-hero h1 em, .spec-section h2 em { color: var(--orange); font-style: normal; }
.inner-hero-content > p:last-child { max-width: 570px; margin: 28px 0 0; color: #c4c8c0; font-size: 20px; }
.about-page-hero > img { filter: grayscale(.28) brightness(.72); transform: scaleX(-1); object-position: 38% center; }

.machine-category-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 76px; }
.machine-category { position: relative; min-height: 680px; padding: 42px 46px; color: var(--ink); background: var(--paper-deep); overflow: hidden; }
.machine-category.dark-card { color: var(--white); background: var(--ink); }
.machine-tag { position: relative; z-index: 2; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--orange); }
.machine-line-art { height: 285px; margin: 20px -18px 12px; }
.machine-line-art svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; opacity: .48; }
.machine-category h3 { margin: 0; font-family: var(--display); font-size: 43px; line-height: 1; text-transform: uppercase; }
.machine-category p { max-width: 570px; color: var(--muted); }
.machine-category.dark-card p { color: #a2a79f; }
.machine-category ul { margin: 24px 0 0; padding: 20px 0 0; list-style: none; border-top: 1px solid currentColor; border-color: rgba(127,127,127,.25); }
.machine-category li { position: relative; padding: 8px 0 8px 22px; font-size: 14px; }
.machine-category li::before { content: "+"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.catalogue-section { padding: 130px 0 145px; background: var(--white); }
.catalogue-heading { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; }
.catalogue-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(58px, 7vw, 96px); line-height: .88; letter-spacing: -.04em; text-transform: uppercase; }
.catalogue-tools { display: grid; grid-template-columns: minmax(280px, 1fr) auto; gap: 28px; align-items: center; margin-top: 70px; }
.machine-search { display: flex; align-items: center; gap: 14px; min-height: 64px; padding: 0 20px; border: 1px solid var(--line); background: var(--paper); }
.machine-search:focus-within { border-color: var(--orange); outline: 2px solid rgba(255,91,31,.12); }
.machine-search svg { flex: 0 0 auto; width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 2; }
.machine-search input { width: 100%; padding: 0; color: var(--ink); background: transparent; border: 0; outline: 0; font: 500 16px var(--body); }
.machine-search input::placeholder { color: #8b8e87; }
.catalogue-filters { display: flex; gap: 6px; }
.catalogue-filters button { min-height: 48px; padding: 0 18px; color: var(--muted); background: transparent; border: 1px solid var(--line); font: 700 11px var(--body); text-transform: uppercase; letter-spacing: .08em; cursor: pointer; }
.catalogue-filters button:hover, .catalogue-filters button.active { color: #fff; background: var(--ink); border-color: var(--ink); }
.catalogue-meta { display: flex; justify-content: space-between; margin-top: 26px; color: var(--muted); font-size: 12px; }
.catalogue-meta p { margin: 0; }
.catalogue-meta strong { color: var(--orange); font-size: 16px; }
.machine-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 24px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.machine-type-card { position: relative; min-height: 315px; padding: 34px 30px 70px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .24s, background .24s; }
.machine-type-card:hover { color: #fff; background: var(--ink); }
.machine-type-card[hidden] { display: none; }
.type-code { color: var(--orange); font-family: var(--display); font-size: 19px; }
.type-family { float: right; color: #92958e; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.machine-type-card h3 { margin: 58px 0 13px; font-family: var(--display); font-size: 31px; line-height: 1; text-transform: uppercase; }
.machine-type-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; transition: color .24s; }
.machine-type-card:hover p { color: #aeb2aa; }
.machine-type-card a { position: absolute; left: 30px; bottom: 28px; color: var(--orange); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.catalogue-empty { margin: 40px 0 0; padding: 28px; color: var(--muted); background: var(--paper); text-align: center; }
.spec-section { padding: 130px 0; color: var(--white); background: var(--ink); }
.spec-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; }
.spec-section h2 { margin: 0; font-family: var(--display); font-size: clamp(58px, 6vw, 92px); line-height: .9; text-transform: uppercase; }
.spec-list { border-top: 1px solid #363a35; }
.spec-list > div { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 25px 0; border-bottom: 1px solid #363a35; }
.spec-list span { color: var(--orange); font-family: var(--display); font-size: 19px; }
.spec-list p { margin: 0; color: #999e96; }
.spec-list strong { display: block; color: var(--white); font-size: 17px; }
.compact-cta { padding-block: 110px; }

.story-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 10vw; }
.story-copy .lead { margin-top: 44px; color: var(--ink); font-size: 23px; line-height: 1.5; }
.story-copy p { color: var(--muted); }
.values-section { padding: 120px 0; color: var(--white); background: var(--ink); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 58px; border-top: 1px solid #373b36; border-bottom: 1px solid #373b36; }
.values-grid article { min-height: 330px; padding: 38px 28px; border-left: 1px solid #373b36; }
.values-grid article:last-child { border-right: 1px solid #373b36; }
.values-grid article > span { color: var(--orange); font-family: var(--display); font-size: 20px; }
.values-grid h3 { margin: 100px 0 14px; font-family: var(--display); font-size: 30px; text-transform: uppercase; }
.values-grid p { margin: 0; color: #90958d; font-size: 14px; }
.local-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: center; }
.local-number { color: var(--orange); font-family: var(--display); font-size: clamp(140px, 20vw, 280px); font-weight: 800; line-height: .65; letter-spacing: -.06em; }
.local-number span { display: block; color: var(--ink); font-size: .18em; letter-spacing: .22em; }
.local-grid h2 { font-size: clamp(56px, 6vw, 88px); }
.local-grid p { max-width: 560px; color: var(--muted); }
.button-dark { margin-top: 25px; color: white; background: var(--ink); }
.button-dark:hover { background: var(--orange); }

.contact-hero { min-height: 650px; display: flex; align-items: flex-end; padding: 180px 0 85px; color: white; background: var(--ink); }
.contact-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 7vw; align-items: end; }
.contact-hero h1 { font-size: clamp(75px, 9vw, 126px); }
.contact-hero-grid > div > p:last-child { max-width: 520px; color: #9fa49c; font-size: 18px; }
.contact-big-phone { position: relative; display: block; padding: 32px 72px 32px 0; color: var(--orange); border-top: 1px solid #3a3e39; border-bottom: 1px solid #3a3e39; font-family: var(--display); font-size: clamp(42px, 5vw, 66px); line-height: 1; }
.contact-big-phone span { display: block; margin-bottom: 14px; color: #888d85; font-family: var(--body); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }
.contact-big-phone svg { position: absolute; right: 0; bottom: 35px; width: 54px; height: 54px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s; }
.contact-big-phone:hover svg { transform: translate(5px,-5px); }
.contact-details { padding: 95px 0; background: var(--paper); }
.contact-detail-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr .8fr; }
.contact-detail-grid article { min-height: 270px; padding: 15px 34px 20px; border-left: 1px solid var(--line); }
.contact-detail-grid article:last-child { border-right: 1px solid var(--line); }
.detail-label { color: var(--orange); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .17em; }
.contact-detail-grid h2 { min-height: 112px; margin: 54px 0 24px; font-family: var(--display); font-size: clamp(25px, 2.4vw, 37px); line-height: 1.08; text-transform: uppercase; }
.contact-detail-grid a { display: inline-block; margin: 0 16px 8px 0; color: var(--orange); font-size: 13px; font-weight: 700; }
.contact-map { position: relative; min-height: 650px; background: #ddd; }
.contact-map iframe { width: 100%; height: 650px; border: 0; filter: grayscale(1) contrast(1.05); }
.map-card { position: absolute; left: max(24px, calc((100% - 1240px) / 2)); top: 50%; width: min(400px, calc(100% - 48px)); padding: 42px; color: white; background: var(--ink); transform: translateY(-50%); }
.map-card.visible { transform: translateY(-50%); }
.map-card > span { color: var(--orange); font-size: 10px; text-transform: uppercase; letter-spacing: .17em; }
.map-card h2 { margin: 14px 0 22px; font-family: var(--display); font-size: 37px; line-height: 1; text-transform: uppercase; }
.map-card ul { margin: 0; padding: 18px 0 0; list-style: none; border-top: 1px solid #343833; }
.map-card li { padding: 7px 0; color: #a2a79f; font-size: 14px; }
.map-card li::before { content: "+"; margin-right: 12px; color: var(--orange); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s cubic-bezier(.2,.75,.25,1), transform .8s cubic-bezier(.2,.75,.25,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes hero-in { from { opacity: 0; filter: saturate(.5) brightness(.6); } to { opacity: 1; filter: saturate(1) brightness(1); } }
@keyframes content-rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes grid-drift { to { background-position: 80px 80px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } .hero-image, .inner-hero > img { transform: none !important; } .scroll-progress { display: none; } }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 760px); }
  .site-header { height: 72px; padding-inline: 18px; }
  .site-nav { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; justify-content: flex-start; gap: 28px; padding: 112px 18px 90px; overflow-x: hidden; overflow-y: auto; background: var(--ink); font-family: var(--display); font-size: 34px; text-transform: uppercase; transform: translateY(-100%); transition: transform .35s ease; }
  .site-nav.open { transform: translateY(0); }
  .nav-cta { font-family: var(--body); font-size: 14px; text-transform: none; }
  .menu-toggle { display: block; color: white; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:first-child { 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); }
  .hero { min-height: 720px; height: 92svh; }
  .hero-image { object-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(9,11,9,.93), rgba(9,11,9,.5)), linear-gradient(0deg, rgba(9,11,9,.5), transparent); }
  .hero h1 { font-size: clamp(64px, 12vw, 100px); }
  .signal-item { padding: 20px 16px; gap: 12px; }
  .signal-item strong { font-size: 20px; }
  .section { padding: 100px 0; }
  .section-heading, .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 380px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .about-visual { max-width: 680px; }
  .about-photo-wrap, .about-photo-wrap img { min-height: 500px; }
  .process-top { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 100px 1fr; }
  .location { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe { min-height: 480px; }
  .location-panel { padding: 90px max(24px, calc((100vw - 760px) / 2)); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-address { grid-column: 1 / -1; }
  .machine-category-grid, .story-grid, .spec-grid, .local-grid, .contact-hero-grid { grid-template-columns: 1fr; }
  .mega-menu { top: auto; position: static; width: min(720px, calc(100vw - 36px)); max-height: 0; padding: 0; color: white; background: transparent; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; overflow: hidden; }
  .mega-menu.open { max-height: 1200px; padding-top: 18px; }
  .mega-top { margin-bottom: 16px; padding-bottom: 12px; border-color: #363a35; font-family: var(--body); }
  .mega-top span { display: none; }
  .mega-top a { font-size: 13px; }
  .mega-grid { grid-template-columns: 1fr 1fr; gap: 22px 30px; }
  .mega-column strong { color: white; font-size: 18px; }
  .mega-column a { padding: 4px 0; color: #939890; font-family: var(--body); font-size: 12px; text-transform: none; }
  .nav-machine-wrap { text-align: center; }
  .nav-machine-button { position: relative; font-size: 34px; text-transform: uppercase; }
  .catalogue-tools { grid-template-columns: 1fr; }
  .catalogue-filters { flex-wrap: wrap; }
  .machine-type-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .values-grid article { border-bottom: 1px solid #373b36; }
  .local-number { font-size: 210px; }
  .contact-detail-grid { grid-template-columns: 1fr 1fr; }
  .contact-detail-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 30px); }
  .brand-mark { width: 42px; height: 42px; }
  .brand-mark svg { width: 30px; height: 30px; }
  .brand-copy strong { font-size: 20px; }
  .brand-copy small { font-size: 8px; }
  .hero { min-height: 700px; max-height: 820px; }
  .hero-image { object-position: 67% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(9,11,9,.95), rgba(9,11,9,.38)), linear-gradient(0deg, rgba(9,11,9,.82), transparent 65%); }
  .hero-content { justify-content: flex-end; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(58px, 18vw, 84px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 30px; }
  .hero-side-label { display: none; }
  .signal-grid { width: 100%; grid-template-columns: 1fr; }
  .signal-item { min-height: 84px; padding-left: 26px; border: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .signal-item:last-child { border-right: 0; border-bottom: 0; }
  .section { padding: 82px 0; }
  .section h2, .about h2, .location h2, .cta-section h2 { font-size: clamp(53px, 16vw, 72px); }
  .section-heading { gap: 26px; }
  .service-grid { margin-top: 48px; }
  .service-card { padding-inline: 26px; }
  .service-card a { left: 26px; }
  .about-grid { gap: 60px; }
  .about-photo-wrap, .about-photo-wrap img { min-height: 400px; }
  .about-stamp { width: 130px; height: 130px; }
  .about-stamp strong { font-size: 50px; }
  .about-stamp span { font-size: 12px; }
  .process-list { margin-top: 55px; }
  .process-list li, .process-list li div { grid-template-columns: 1fr; gap: 10px; }
  .process-list > li > span { margin-bottom: 4px; }
  .process-list p { margin-top: 6px; }
  .location-panel { padding: 76px 22px; }
  .contact-row { grid-template-columns: 1fr; gap: 7px; }
  .cta-section { padding: 90px 0; }
  .cta-phone { align-items: flex-start; flex-direction: column; gap: 12px; }
  .cta-phone svg { position: absolute; right: 0; bottom: 5px; width: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-address { grid-column: 1 / -1; }
  .footer-bottom { gap: 20px; }
  .mobile-call { position: fixed; z-index: 90; right: 16px; bottom: 16px; display: flex; align-items: center; gap: 9px; padding: 13px 18px; color: white; background: var(--orange); box-shadow: 0 10px 30px rgba(0,0,0,.28); font-size: 13px; font-weight: 700; }
  .mobile-call svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
  .site-nav { justify-content: flex-start; padding: 112px 18px 90px; overflow-y: auto; }
  .mega-grid { grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .mega-menu { width: calc(100vw - 36px); }
  .catalogue-section { padding: 82px 0 95px; }
  .catalogue-heading { grid-template-columns: 1fr; align-items: start; }
  .catalogue-heading .button { justify-self: start; }
  .catalogue-tools { margin-top: 48px; }
  .catalogue-filters { display: grid; grid-template-columns: 1fr 1fr; }
  .catalogue-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .machine-type-grid { grid-template-columns: 1fr; }
  .inner-hero { min-height: 630px; }
  .inner-hero-content { padding: 160px 0 70px; }
  .inner-hero h1, .contact-hero h1 { font-size: clamp(58px, 17vw, 82px); }
  .inner-hero-content > p:last-child { font-size: 17px; }
  .machine-category { min-height: auto; padding: 34px 24px 42px; }
  .machine-line-art { height: 220px; }
  .machine-category h3 { font-size: 36px; }
  .spec-section, .values-section { padding: 80px 0; }
  .values-grid, .contact-detail-grid { grid-template-columns: 1fr; }
  .values-grid article { min-height: 260px; border-right: 1px solid #373b36; }
  .values-grid h3 { margin-top: 62px; }
  .local-number { font-size: 150px; }
  .contact-hero { min-height: 720px; padding: 150px 0 70px; }
  .contact-big-phone { padding-right: 0; font-size: 42px; }
  .contact-big-phone svg { display: none; }
  .contact-detail-grid article, .contact-detail-grid article:last-child { grid-column: auto; min-height: 230px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .contact-detail-grid h2 { min-height: auto; margin-top: 40px; }
  .contact-map, .contact-map iframe { min-height: 720px; height: 720px; }
  .map-card { top: auto; bottom: 20px; transform: none; }
  .map-card.visible { transform: none; }
}
