:root {
  --graphite: #22272c;
  --graphite-2: #2d3339;
  --graphite-3: #3a4148;
  --paper: #f4f5f3;
  --white: #ffffff;
  --ink: #1c2024;
  --steel: #56616b;
  --rule: #d8dcde;
  --rule-dark: #434b53;
  --spark: #f0782f;
  --spark-hover: #ff8a42;
  --probe: #149c8f;
  --probe-ink: #0e7f74;
  --on-dark: #eceff1;
  --on-dark-muted: #aab3bb;
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(64px, 8vw, 112px);
  --radius: 3px;
  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-stretch: 100%;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; color: inherit; }
h1 { font-size: clamp(2.3rem, 4.8vw, 4rem); font-weight: 800; font-stretch: 118%; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 760; font-stretch: 112%; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 700; font-stretch: 104%; line-height: 1.2; }
h4 { font-size: 1rem; font-weight: 700; }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid var(--spark); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--spark); color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--graphite); color: var(--on-dark); }
.section--dark .lead, .section--dark p { color: var(--on-dark-muted); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head h2 + p { margin-top: 16px; }
.section-head--split { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.section-head--split > div { max-width: 700px; }
.lead { font-size: 1.1875rem; line-height: 1.55; color: var(--steel); max-width: 68ch; }
.muted { color: var(--steel); }
h2 + .lead, h2 + p { margin-top: 16px; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--spark); color: var(--ink); padding: 10px 16px; font-weight: 700; z-index: 200; text-decoration: none; }
.skip-link:focus { top: 12px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px;
  font: inherit; font-size: 1rem; font-weight: 700; font-stretch: 108%;
  line-height: 1.1; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; border-radius: var(--radius);
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary { background: var(--spark); color: var(--ink); }
.btn--primary:hover { background: var(--spark-hover); }
.btn--ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.section:not(.section--dark) .btn--ghost:hover { background: var(--paper); }
.btn--dark { background: var(--graphite); color: var(--on-dark); }
.btn--dark:hover { background: var(--graphite-3); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { font-weight: 700; color: var(--ink); text-decoration: underline; text-decoration-color: var(--spark); text-decoration-thickness: 2px; }
.text-link:hover { color: var(--probe-ink); }
.section--dark .text-link { color: var(--on-dark); }

/* Top bar */
.topbar { background: var(--graphite); color: var(--on-dark-muted); font-size: .875rem; font-stretch: 92%; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; }
.topbar ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 24px; }
.topbar a { color: var(--on-dark); text-decoration: none; }
.topbar a:hover { color: var(--spark); }
.topbar li { display: inline-flex; align-items: center; gap: 8px; }
.topbar svg { width: 15px; height: 15px; opacity: .8; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--rule); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 70px; width: auto; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav__list { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px;
  font-weight: 600; font-stretch: 104%; font-size: .98rem; text-decoration: none; color: var(--ink);
  border-radius: var(--radius); background: none; border: 0; font-family: inherit; cursor: pointer;
}
.nav__link:hover { background: var(--paper); }
.nav__link[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--spark); border-radius: 0; }
.nav__item--has-menu { position: relative; }
.nav__link svg { width: 14px; height: 14px; transition: transform .15s ease; }
.nav__item--has-menu.is-open .nav__link svg { transform: rotate(180deg); }
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 560px;
  display: none; grid-template-columns: 1fr 1fr; gap: 0 24px; padding: 20px 24px;
  background: var(--white); border: 1px solid var(--rule); border-top: 3px solid var(--spark);
  box-shadow: 0 18px 40px -18px rgba(28,32,36,.35);
}
.nav__item--has-menu.is-open .submenu { display: grid; }
.submenu h3 { font-size: .8125rem; font-weight: 700; font-stretch: 90%; color: var(--steel); margin: 4px 0 8px; }
.submenu ul { list-style: none; margin-bottom: 12px; }
.submenu a { display: block; padding: 6px 0; font-size: .95rem; text-decoration: none; }
.submenu a:hover { color: var(--probe-ink); text-decoration: underline; }
.nav__cta { margin-left: 12px; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--rule); background: var(--white); border-radius: var(--radius); cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }

/* Hero */
.hero { position: relative; color: var(--on-dark); background: var(--graphite); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(34,39,44,.96) 0%, rgba(34,39,44,.9) 38%, rgba(34,39,44,.62) 70%, rgba(34,39,44,.5) 100%); }
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: clamp(32px, 5vw, 72px); align-items: start; padding-top: clamp(56px, 7vw, 96px); padding-bottom: 40px; }
.hero__copy h1 { max-width: 18ch; font-size: clamp(2.2rem, 3.8vw, 3.3rem); }
.hero__copy .lead { color: #c9d0d6; margin: 24px 0 32px; max-width: 56ch; }
.hero__copy .btn--ghost { color: var(--on-dark); }

.quote-card { background: var(--white); color: var(--ink); padding: 28px; border-radius: var(--radius); border-top: 4px solid var(--spark); }
.quote-card h2 { font-size: 1.5rem; font-stretch: 108%; }
.quote-card > p { font-size: .95rem; color: var(--steel); margin: 8px 0 18px; }

/* Measure bar: stats as a chain dimension */
.measure { position: relative; list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); margin: 24px 0 0; padding: 0 0 48px; }
.measure li { position: relative; text-align: center; padding: 0; }
.measure__value, .measure__label { padding-left: 10px; padding-right: 10px; }
.measure__value { display: block; font-size: clamp(1.6rem, 2.6vw, 2.25rem); font-weight: 800; font-stretch: 112%; line-height: 1; padding-bottom: 14px; color: var(--white); }
.measure__line { position: relative; display: block; height: 2px; background: var(--probe); transform-origin: left center; }
.measure li:first-child .measure__line::before,
.measure__line::after {
  content: ""; position: absolute; top: -9px; width: 2px; height: 20px; background: var(--probe); transform: rotate(45deg);
}
.measure li:first-child .measure__line::before { left: 0; }
.measure__line::after { right: -1px; }
.measure__label { display: block; padding-top: 14px; font-size: .9rem; font-stretch: 92%; color: var(--on-dark-muted); line-height: 1.35; }
.measure__ext { position: absolute; left: 0; top: -6px; bottom: -6px; width: 1px; }

@media (prefers-reduced-motion: no-preference) {
  .js .measure .measure__line { transform: scaleX(0); }
  .js .measure .measure__value, .js .measure .measure__label { opacity: 0; transform: translateY(6px); }
  .js .measure.is-drawn .measure__line { transform: scaleX(1); transition: transform .5s cubic-bezier(.2,.7,.2,1); }
  .js .measure.is-drawn li:nth-child(2) .measure__line { transition-delay: .35s; }
  .js .measure.is-drawn li:nth-child(3) .measure__line { transition-delay: .7s; }
  .js .measure.is-drawn li:nth-child(4) .measure__line { transition-delay: 1.05s; }
  .js .measure.is-drawn li:nth-child(5) .measure__line { transition-delay: 1.4s; }
  .js .measure.is-drawn .measure__value, .js .measure.is-drawn .measure__label { opacity: 1; transform: none; transition: opacity .4s ease, transform .4s ease; }
  .js .measure.is-drawn li:nth-child(1) :is(.measure__value, .measure__label) { transition-delay: .3s; }
  .js .measure.is-drawn li:nth-child(2) :is(.measure__value, .measure__label) { transition-delay: .65s; }
  .js .measure.is-drawn li:nth-child(3) :is(.measure__value, .measure__label) { transition-delay: 1s; }
  .js .measure.is-drawn li:nth-child(4) :is(.measure__value, .measure__label) { transition-delay: 1.35s; }
  .js .measure.is-drawn li:nth-child(5) :is(.measure__value, .measure__label) { transition-delay: 1.7s; }
}

/* Page hero (inner pages) */
.page-hero { position: relative; background: var(--graphite); color: var(--on-dark); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(34,39,44,.95) 0%, rgba(34,39,44,.85) 55%, rgba(34,39,44,.6) 100%); }
.page-hero .container { position: relative; padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(48px, 6vw, 80px); }
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); max-width: 20ch; }
.page-hero .lead { color: #c9d0d6; margin-top: 18px; }
.page-hero--plain { background: var(--graphite); }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: .875rem; font-stretch: 92%; color: var(--on-dark-muted); margin-bottom: 20px; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--rule-dark); }
.breadcrumb a { color: var(--on-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--spark); }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--wide-text { grid-template-columns: .9fr 1.1fr; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.split__media figcaption { font-size: .875rem; color: var(--steel); margin-top: 10px; font-stretch: 92%; }
.split h2 + p, .split h2 + .lead { margin-top: 18px; }

/* Divisions */
.divisions { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 40px; }
.division { background: var(--white); padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; }
.division__unit { font-size: .875rem; font-weight: 600; font-stretch: 90%; color: var(--probe-ink); margin-bottom: 8px; }
.division h3 { font-size: 1.5rem; font-stretch: 110%; margin-bottom: 12px; }
.division p { color: var(--steel); }
.ticks { list-style: none; display: grid; gap: 8px; margin: 8px 0 24px; }
.ticks li { position: relative; padding-left: 26px; }
.ticks li::before { content: ""; position: absolute; left: 3px; top: .8em; width: 13px; height: 2px; background: var(--probe); transform: rotate(-45deg); }
.division .text-link { margin-top: auto; align-self: flex-start; }

/* Catalogue plates */
.plates { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.plate { background: var(--white); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.plate__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper); border-bottom: 1px solid var(--rule); }
.plate__img img { width: 100%; height: 100%; object-fit: cover; }
.plate__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.plate__body h3 { font-size: 1.0625rem; }
.plate__body p { font-size: .95rem; color: var(--steel); margin: 0; }
.plate__more { margin-top: auto; padding-top: 10px; font-size: .9rem; font-weight: 700; font-stretch: 104%; color: var(--ink); }
.plate__more span { border-bottom: 2px solid var(--spark); }
.plate:hover .plate__body h3 { text-decoration: underline; text-decoration-color: var(--spark); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.plate:hover .plate__img { background: #eceeec; }
.plate--tool .plate__img { background: #eef1f3; }

/* Industries */
.industries { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule); }
.industries li { display: flex; gap: 14px; align-items: flex-start; padding: 22px 20px 22px 0; border-bottom: 1px solid var(--rule); }
.industries svg { width: 34px; height: 34px; flex: none; color: var(--graphite); stroke: currentColor; }
.industries h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.industries p { font-size: .925rem; color: var(--steel); margin: 0; line-height: 1.45; }

/* Reasons */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.reason { padding: 28px 28px 28px 0; border-top: 2px solid var(--graphite); margin-right: 28px; }
.section--dark .reason { border-top-color: var(--rule-dark); }
.reason h3 { margin-bottom: 8px; }
.reason p { color: var(--steel); margin: 0; font-size: .98rem; }
.section--dark .reason p { color: var(--on-dark-muted); }

/* Process (a true sequence) */
.process { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process li { counter-increment: step; position: relative; padding: 0 20px 0 0; }
.process li::before {
  content: counter(step); display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 2px solid var(--on-dark); border-radius: 50%;
  font-weight: 800; font-stretch: 110%; font-size: 1.05rem; background: var(--graphite); position: relative; z-index: 1;
}
.process li::after { content: ""; position: absolute; left: 44px; right: 0; top: 21px; height: 2px; background: var(--rule-dark); }
.process li:last-child::after { display: none; }
.process h3 { margin: 18px 0 8px; font-size: 1.0625rem; color: var(--on-dark); }
.process p { font-size: .95rem; margin: 0; }

/* Facility */
.facility { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.facility__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.facility__photos img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
.facility__photos img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.spec-list { list-style: none; border-top: 1px solid var(--rule); margin: 20px 0 28px; }
.spec-list li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--rule); font-size: .98rem; }
.spec-list li span:last-child { font-weight: 700; text-align: right; }

/* Regions */
.regions { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.regions li { padding: 8px 14px; border: 1px solid var(--rule); border-radius: 40px; font-size: .95rem; font-weight: 600; font-stretch: 100%; background: var(--white); }

/* CTA band */
.cta-band { background: var(--spark); color: var(--ink); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px 40px; flex-wrap: wrap; padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(40px, 5vw, 64px); }
.cta-band h2 { max-width: 20ch; }
.cta-band p { margin: 12px 0 0; max-width: 56ch; }
.cta-band .btn--ghost:hover { background: rgba(28,32,36,.08); }

/* Video */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.video-grid--single { grid-template-columns: 1fr; max-width: 960px; }
.video-card figure { margin: 0; }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--graphite-2); border-radius: var(--radius); overflow: hidden; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card figcaption { margin-top: 12px; }
.video-card figcaption strong { display: block; font-size: 1.0625rem; }
.video-card figcaption span { font-size: .95rem; color: var(--steel); }
.section--dark .video-card figcaption span { color: var(--on-dark-muted); }

/* Gallery */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-btn { font: inherit; font-size: .95rem; font-weight: 600; padding: 9px 16px; border: 1px solid var(--rule); background: var(--white); color: var(--ink); border-radius: 40px; cursor: pointer; }
.filter-btn:hover { border-color: var(--graphite); }
.filter-btn[aria-pressed="true"] { background: var(--graphite); color: var(--on-dark); border-color: var(--graphite); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__item { margin: 0; }
.gallery__item[hidden] { display: none; }
.gallery__btn { display: block; width: 100%; padding: 0; border: 0; background: var(--paper); cursor: zoom-in; border-radius: var(--radius); overflow: hidden; }
.gallery__btn img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.gallery__item--poster .gallery__btn img { object-position: top; }
.gallery__btn:hover img { transform: scale(1.03); }
.gallery__item figcaption { font-size: .925rem; color: var(--steel); margin-top: 8px; line-height: 1.4; }

.lightbox { border: 0; padding: 0; max-width: min(1200px, 94vw); width: 100%; background: transparent; color: var(--on-dark); }
.lightbox::backdrop { background: rgba(20,23,26,.92); }
.lightbox__stage { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lightbox__img { max-height: 80vh; width: auto; max-width: 100%; border-radius: var(--radius); background: var(--graphite-2); }
.lightbox__caption { font-size: .95rem; text-align: center; color: var(--on-dark); }
.lightbox__bar { display: flex; gap: 8px; justify-content: center; }
.lightbox__btn { font: inherit; font-weight: 700; min-height: 44px; padding: 10px 16px; border: 1px solid var(--rule-dark); background: var(--graphite); color: var(--on-dark); border-radius: var(--radius); cursor: pointer; }
.lightbox__btn:hover { border-color: var(--on-dark); }

/* Products page */
.cat-nav { position: sticky; top: var(--header-h); z-index: 50; background: var(--white); border-bottom: 1px solid var(--rule); }
.cat-nav ul { list-style: none; display: flex; gap: 4px; overflow-x: auto; padding: 10px 0; scrollbar-width: thin; }
.cat-nav a { display: block; white-space: nowrap; padding: 8px 14px; border-radius: 40px; font-size: .95rem; font-weight: 600; text-decoration: none; }
.cat-nav a:hover { background: var(--paper); }
.product { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 4vw, 56px); padding: clamp(32px, 4vw, 48px) 0; border-top: 1px solid var(--rule); align-items: start; }
.product:first-of-type { border-top: 0; }
.product__img { border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.product__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); font-stretch: 108%; margin-bottom: 12px; }
.product p { color: var(--steel); }
.specs { display: grid; grid-template-columns: max-content 1fr; margin: 18px 0; border-top: 1px solid var(--rule); font-size: .96rem; }
.specs dt, .specs dd { margin: 0; padding: 9px 0; border-bottom: 1px solid var(--rule); }
.specs dt { font-weight: 700; padding-right: 24px; }
.specs dd { color: var(--ink); }
.specs .dim { color: var(--probe-ink); font-weight: 700; }
.product .btn-row { margin-top: 20px; }
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.service { background: var(--white); padding: clamp(24px, 3vw, 36px); }
.service h3 { margin-bottom: 10px; }
.service p { color: var(--steel); }
.service .ticks { margin-bottom: 0; }

/* FAQ */
.faq { max-width: 860px; border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; font-weight: 700; font-size: 1.0625rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: translateY(-70%) rotate(45deg); transition: transform .15s ease; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { color: var(--steel); padding-bottom: 12px; max-width: 70ch; }

/* About */
.timeline { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; margin-top: 12px; }
.timeline li { position: relative; padding: 36px 24px 0 0; }
.timeline li::before { content: ""; position: absolute; top: 9px; left: 0; right: 0; height: 2px; background: var(--probe); }
.timeline li::after { content: ""; position: absolute; top: 0; left: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 2px solid var(--probe); }
.timeline li.is-next::before { background: repeating-linear-gradient(90deg, var(--probe) 0 8px, transparent 8px 14px); }
.timeline li.is-next::after { border-style: dashed; }
.timeline__year { display: block; font-size: 1.75rem; font-weight: 800; font-stretch: 114%; line-height: 1; margin-bottom: 8px; }
.timeline h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.timeline p { font-size: .95rem; color: var(--steel); margin: 0; }
.people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.person { background: var(--white); padding: 28px; }
.person h3 { font-size: 1.25rem; }
.person p { margin: 6px 0 0; color: var(--steel); }
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.mv h3 { font-size: 1.5rem; font-stretch: 110%; margin-bottom: 12px; color: var(--on-dark); }
.units { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.unit h3 { font-size: 1.375rem; font-stretch: 108%; margin-bottom: 6px; }
.unit > p { color: var(--steel); }
table.machines { width: 100%; border-collapse: collapse; font-size: .96rem; margin-top: 16px; }
table.machines caption { text-align: left; font-weight: 700; padding-bottom: 8px; }
table.machines th, table.machines td { text-align: left; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--rule); }
table.machines th { font-size: .85rem; font-stretch: 92%; color: var(--steel); font-weight: 600; border-bottom: 2px solid var(--graphite); }
table.machines td:last-child, table.machines th:last-child { text-align: right; padding-right: 0; }
table.machines td:last-child { font-weight: 700; }
.table-scroll { overflow-x: auto; }
.facts { display: grid; grid-template-columns: max-content 1fr; font-size: .98rem; border-top: 1px solid var(--rule); }
.facts dt, .facts dd { margin: 0; padding: 11px 0; border-bottom: 1px solid var(--rule); }
.facts dt { font-weight: 700; padding-right: 32px; }
.care { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 28px; }
.care li { background: var(--white); padding: 22px; }
.care h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.care p { margin: 0; font-size: .95rem; color: var(--steel); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-list { list-style: none; border-top: 1px solid var(--rule); }
.contact-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--rule); }
.contact-list svg { width: 26px; height: 26px; color: var(--graphite); margin-top: 2px; }
.contact-list h3 { font-size: .9rem; font-stretch: 92%; color: var(--steel); font-weight: 600; margin-bottom: 2px; }
.contact-list p, .contact-list a { margin: 0; font-weight: 600; font-size: 1.0625rem; }
.contact-list a { text-decoration: none; }
.contact-list a:hover { color: var(--probe-ink); text-decoration: underline; }
.map-frame { margin-top: 28px; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.form-panel { background: var(--paper); padding: clamp(24px, 3vw, 40px); border-radius: var(--radius); border-top: 4px solid var(--spark); }
.form-panel h2 { font-size: 1.75rem; }
.form-panel > p { color: var(--steel); margin: 10px 0 24px; }

/* Forms */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.form--stack { grid-template-columns: 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 600; }
.field label .req { color: #b3401a; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); width: 100%;
  min-height: 46px; padding: 10px 12px; background: var(--white);
  border: 1px solid #b9c0c5; border-radius: var(--radius);
}
.field textarea { min-height: 120px; resize: vertical; }
.form--stack .field textarea { min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--graphite); box-shadow: 0 0 0 3px rgba(240,120,47,.35); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #b3401a; }
.field .hint { font-size: .85rem; color: var(--steel); }
.consent { margin: 0; font-size: .875rem; line-height: 1.5; color: var(--steel); grid-column: 1 / -1; }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--graphite); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { grid-column: 1 / -1; font-size: .95rem; padding: 12px 14px; border-radius: var(--radius); display: none; }
.form-status.is-success { display: block; background: #e3f4f1; color: #0b5e56; border-left: 4px solid var(--probe); }
.form-status.is-error { display: block; background: #fbe9e1; color: #8c2f0e; border-left: 4px solid #b3401a; }
.form .btn { grid-column: 1 / -1; }
.form .btn[disabled] { opacity: .7; cursor: progress; }

/* Legal */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.5rem; font-stretch: 106%; margin: 40px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.125rem; margin: 24px 0 8px; }
.legal p, .legal li { color: #3a434b; }
.legal ul { padding-left: 1.25em; margin: 0 0 1em; }
.legal li { margin-bottom: .4em; }
.legal .updated { font-size: .95rem; color: var(--steel); }
.legal-toc { list-style: none; columns: 2; column-gap: 32px; padding: 20px 24px; background: var(--paper); border-radius: var(--radius); margin: 0 0 40px; }
.legal-toc li { break-inside: avoid; padding: 4px 0; font-size: .95rem; }

/* Footer: laid out as a drawing title block */
.site-footer { background: var(--graphite); color: var(--on-dark-muted); font-size: .95rem; padding-top: clamp(48px, 6vw, 72px); }
.titleblock { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; border-left: 1px solid var(--rule-dark); border-top: 1px solid var(--rule-dark); margin: 0 0 32px; }
.tb-cell { border-right: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); padding: 22px 24px; }
.tb-cell--brand img { width: 230px; height: auto; margin-bottom: 14px; }
.tb-label { display: block; font-size: .78rem; font-stretch: 88%; font-weight: 600; color: #8c969f; margin-bottom: 10px; }
.tb-cell ul { list-style: none; display: grid; gap: 6px; }
.tb-cell a { color: var(--on-dark); text-decoration: none; }
.tb-cell a:hover { color: var(--spark); text-decoration: underline; }
.tb-cell address { font-style: normal; color: var(--on-dark); line-height: 1.55; }
.tb-cell p { margin: 0 0 8px; }
.tb-strip { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); }
@supports (grid-template-columns: subgrid) { .tb-strip { grid-template-columns: subgrid; } }
.tb-strip .tb-cell { padding: 14px 24px; }
.tb-strip strong { color: var(--on-dark); font-weight: 600; font-stretch: 100%; letter-spacing: .01em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 0 0 32px; font-size: .875rem; }
.footer-bottom a { color: var(--on-dark-muted); }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #1f8f4e; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -8px rgba(0,0,0,.45); }
.wa-float:hover { background: #197a42; }
.wa-float svg { width: 30px; height: 30px; }

/* Error / thank-you */
.state { text-align: left; max-width: 720px; padding: clamp(64px, 10vw, 128px) 0; }
.state__code { font-size: clamp(4rem, 12vw, 8rem); font-weight: 800; font-stretch: 125%; line-height: .9; color: var(--graphite); }
.state h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0; }

/* Responsive */
@media (max-width: 1100px) {
  .plates { grid-template-columns: repeat(3, 1fr); }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .titleblock { grid-template-columns: 1fr 1fr; }
  .tb-strip { grid-template-columns: 1fr 1fr; }
  .tb-strip .tb-cell:nth-child(2) { border-right: 0; }
}
@media (max-width: 1024px) {
  :root { --header-h: 72px; }
  .brand img { height: 54px; }
  .nav-toggle { display: inline-flex; }
  .nav { position: fixed; inset: calc(var(--header-h) + 1px) 0 0 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 16px var(--gutter) 32px; overflow-y: auto; display: none; }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li { border-bottom: 1px solid var(--rule); }
  .nav__link { width: 100%; justify-content: space-between; padding: 16px 4px; font-size: 1.0625rem; }
  .nav__link[aria-current="page"] { box-shadow: inset 4px 0 0 var(--spark); padding-left: 14px; }
  .submenu { position: static; min-width: 0; box-shadow: none; border: 0; padding: 0 4px 12px; grid-template-columns: 1fr; }
  .nav__cta { margin: 20px 0 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .quote-card { max-width: 560px; }
  .process { grid-template-columns: 1fr; gap: 24px; }
  .process li { display: grid; grid-template-columns: 44px 1fr; gap: 0 18px; padding: 0; }
  .process li::before { grid-row: 1 / span 2; }
  .process li::after { left: 21px; right: auto; top: 44px; bottom: -24px; width: 2px; height: auto; }
  .process h3 { margin: 8px 0 6px; }
  .facility, .contact-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 32px; }
}
@media (max-width: 860px) {
  .split, .split--wide-text, .divisions, .units, .mv, .people, .services, .video-grid { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .plates { grid-template-columns: repeat(2, 1fr); }
  .reasons { grid-template-columns: 1fr 1fr; }
  .product { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .care { grid-template-columns: 1fr 1fr; }
  .measure { grid-template-columns: 1fr; gap: 0; padding-bottom: 40px; }
  .measure li { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 0 16px; text-align: left; padding: 12px 0 12px 22px; border-left: 2px solid var(--probe); }
  .measure li:first-child { padding-top: 4px; }
  .measure__line { display: none; }
  .measure li::before { content: ""; position: absolute; left: -9px; top: -1px; width: 16px; height: 2px; background: var(--probe); transform: rotate(-45deg); }
  .measure__value { padding: 0; font-size: 1.6rem; }
  .measure__label { padding: 0; }
  .js .measure .measure__value, .js .measure .measure__label { opacity: 1; transform: none; }
  .topbar .hide-sm { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .plates, .reasons, .industries, .gallery, .care, .timeline { grid-template-columns: 1fr; }
  .reason { margin-right: 0; padding-right: 0; }
  .form { grid-template-columns: 1fr; }
  .titleblock, .tb-strip { grid-template-columns: 1fr; }
  .tb-strip .tb-cell { border-right: 1px solid var(--rule-dark) !important; }
  .legal-toc { columns: 1; }
  .specs, .facts { grid-template-columns: 1fr; }
  .specs dt, .facts dt { border-bottom: 0; padding-bottom: 0; }
  .specs dd, .facts dd { padding-top: 2px; }
  .topbar .container { justify-content: center; }
  .topbar .topbar__wa { display: none; }
  .brand img { height: 48px; }
  .quote-card { padding: 22px; }
  .cta-band .btn-row { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
@media print {
  .topbar, .site-header, .wa-float, .cta-band, .quote-card, .cat-nav { display: none !important; }
  .hero, .page-hero, .site-footer { background: #fff !important; color: #000 !important; }
  .hero__bg, .page-hero__bg { display: none; }
}
