@font-face {
  font-family: "MLW Display";
  src: url("/assets/fonts/mlw-heroscn-bold.woff") format("woff");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MLW Display";
  src: url("/assets/fonts/mlw-heroscn-regular.woff") format("woff");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --black: #090C10;
  --graphite: #121820;
  --panel: #151C26;
  --panel-2: #1A222E;
  --line-dark: #242E3B;
  --red: #E3262E;
  --red-deep: #A9141B;
  --steel: #6E7884;
  --steel-mid: #9AA5B1;
  --steel-light: #D7DDE3;
  --off-white: #F4F6F7;
  --white: #FFFFFF;
  --ink: #0D1218;
  --ink-body: #2A3340;
  --ink-muted: #57626F;
  --line-light: #DDE3E9;
  --font-display: "MLW Display", "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Liberation Sans", Arial, sans-serif;
  --fs-hero: clamp(2.75rem, 7vw, 4.75rem);
  --fs-h1: clamp(2.35rem, 5vw, 3.6rem);
  --fs-h2: clamp(1.9rem, 3.6vw, 2.75rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.55rem);
  --fs-lede: clamp(1.06rem, 1.4vw, 1.2rem);
  --container: 1280px;
  --gutter: clamp(16px, 4vw, 32px);
  --radius: 8px;
  --header-h: 72px;
  --shadow-card: 0 18px 40px -18px rgba(4, 8, 14, 0.55);
  --focus: var(--red);
}
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-body);
  background: var(--black);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-wrap: balance;
}
p { max-width: 68ch; }
a { color: inherit; }
ul, ol { padding-left: 1.2em; }
button { font: inherit; }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--red); color: var(--white); }
.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 200;
  background: var(--red);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.99rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-deep); }
.btn--secondary { background: transparent; color: var(--white); border-color: rgba(215, 221, 227, 0.55); }
.btn--secondary:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); }
.btn--secondary-dark { background: transparent; color: var(--ink); border-color: rgba(13, 18, 24, 0.4); }
.btn--secondary-dark:hover { border-color: var(--ink); background: rgba(13, 18, 24, 0.05); }
.btn--sm { padding: 10px 18px; font-size: 0.92rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
@media (prefers-reduced-motion: no-preference) {
  .btn--primary:hover, .btn--secondary:hover, .btn--secondary-dark:hover { transform: translateY(-2px); }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: var(--graphite);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  --focus: #fff;
}
.site-header--overlay {
  position: fixed;
  inset-inline: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.site-header--overlay.is-scrolled,
.site-header--overlay.nav-open {
  background: rgba(18, 24, 32, 0.97);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.8);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; }
.brand__img { width: auto; height: 30px; }
@media (max-width: 420px) { .brand__img { height: 24px; } }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__list > li > a:not(.btn) {
  display: inline-block;
  padding: 8px 2px;
  color: var(--steel-light);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav__list > li > a:not(.btn):hover { color: var(--white); border-bottom-color: var(--red); }
.site-nav__list > li > a[aria-current="page"] { color: var(--white); border-bottom-color: var(--red); }
.site-nav__cta { margin-left: 6px; }
.site-nav__cta .btn { white-space: nowrap; }
.site-nav__contact { display: none; }
@media (min-width: 1200px) {
  .site-nav__contact { display: inline-flex; }
  .site-nav__contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 2px;
    color: var(--steel-mid);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
  }
  .site-nav__contact a:hover { color: var(--white); }
  .site-nav__contact .ic-sm { width: 17px; height: 17px; color: var(--red); flex: none; }
}
.ic-sm { width: 18px; height: 18px; }
.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--steel-light);
  padding: 10px 14px;
  cursor: pointer;
}
.nav-toggle__label { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; }
.nav-toggle__box { position: relative; width: 20px; height: 14px; }
.nav-toggle__bar,
.nav-toggle__box::before,
.nav-toggle__box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle__box::before { top: 0; }
.nav-toggle__bar { top: 6px; }
.nav-toggle__box::after { top: 12px; }
.nav-open .nav-toggle__box::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle__bar { opacity: 0; }
.nav-open .nav-toggle__box::after { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 1060px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 12, 16, 0.985);
    padding: 20px var(--gutter) 40px;
    overflow-y: auto;
    display: none;
  }
  .nav-open .site-nav { display: block; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__list > li { border-bottom: 1px solid var(--line-dark); }
  .site-nav__list > li > a:not(.btn) {
    display: block;
    padding: 16px 4px;
    font-size: 1.15rem;
    border-bottom: none;
  }
  .site-nav__cta { border-bottom: none !important; padding-top: 20px; }
  .site-nav__cta .btn { width: 100%; padding: 16px; font-size: 1.05rem; }
  body.nav-open { overflow: hidden; }
  .site-nav__contact { display: block; border-bottom: none !important; }
  .site-nav__contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    color: var(--steel-light);
    font-weight: 600;
    text-decoration: none;
  }
  .site-nav__contact a:hover { border-color: var(--red); color: var(--white); }
  .site-nav__contact .ic-sm { width: 19px; height: 19px; color: var(--red); flex: none; }
}
.section { padding-block: clamp(64px, 9vw, 110px); }
.section--black { background: var(--black); color: var(--steel-light); }
.section--graphite { background: var(--graphite); color: var(--steel-light); }
.section--light { background: var(--off-white); }
.section--white { background: var(--white); }
.section--black h2, .section--black h3,
.section--graphite h2, .section--graphite h3 { color: var(--white); }
.section--black, .section--graphite { --focus: #fff; }
.section--tight { padding-block: clamp(48px, 6vw, 72px); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-deep);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); }
.section--black .eyebrow, .section--graphite .eyebrow, .page-hero .eyebrow, .hero .eyebrow { color: var(--steel-light); }
.section-head { max-width: 780px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 { font-size: var(--fs-h2); margin-top: 14px; }
.section-head .lede { margin-top: 16px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.lede { font-size: var(--fs-lede); line-height: 1.6; }
.section--light .lede, .section--white .lede { color: var(--ink-body); }
.section--black .lede, .section--graphite .lede { color: var(--steel-mid); }
.section--black p, .section--graphite p { color: var(--steel-mid); }
.section--black .strong-copy, .section--graphite .strong-copy { color: var(--steel-light); }
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); }
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: max(640px, 94svh);
  padding-top: calc(var(--header-h) + 40px);
  background: var(--black);
  color: var(--steel-light);
  overflow: hidden;
  isolation: isolate;
  --focus: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/img/hero-laser.svg");
  background-size: cover;
  background-position: center right;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 12, 16, 0.62) 0%, rgba(9, 12, 16, 0.25) 40%, rgba(9, 12, 16, 0.88) 100%),
    linear-gradient(90deg, rgba(9, 12, 16, 0.85) 0%, rgba(9, 12, 16, 0.35) 60%, rgba(9, 12, 16, 0.15) 100%);
}
.hero__inner { padding-bottom: clamp(36px, 6vw, 72px); }
.hero h1 {
  font-size: var(--fs-hero);
  color: var(--white);
  max-width: 13.5ch;
  margin-top: 18px;
}
.hero .lede { max-width: 58ch; margin-top: 22px; color: var(--steel-light); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__strip {
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid rgba(215, 221, 227, 0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
}
.hero__strip li {
  padding: 20px 18px 4px 0;
  border-right: 1px solid rgba(215, 221, 227, 0.12);
  padding-right: 18px;
}
.hero__strip li:last-child { border-right: none; }
.hero__strip li + li { padding-left: 18px; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: var(--red);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.stat__label { display: block; margin-top: 6px; font-size: 0.88rem; color: var(--steel-mid); line-height: 1.45; }
@media (max-width: 860px) {
  .hero__strip { grid-template-columns: 1fr 1fr; }
  .hero__strip li { border-right: none; border-top: 1px solid rgba(215, 221, 227, 0.1); padding-left: 0 !important; }
  .hero__strip li:nth-child(-n+2) { border-top: none; }
}
@media (max-width: 430px) {
  .hero { min-height: 100svh; }
  .hero__actions .btn { flex: 1 1 100%; }
}
.hero__laser {
  position: absolute;
  left: 0;
  right: 0;
  top: 29%;
  height: 2px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(227, 38, 46, 0.85) 45%, rgba(255, 120, 126, 0.95) 50%, rgba(227, 38, 46, 0.85) 55%, transparent);
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__laser { animation: laser-sweep 7s ease-in-out 0.6s 1 forwards; }
  @keyframes laser-sweep {
    0% { transform: translateX(-60%); opacity: 0; }
    12% { opacity: 0.9; }
    55% { opacity: 0.65; }
    100% { transform: translateX(60%); opacity: 0; }
  }
}
.page-hero {
  background:
    linear-gradient(180deg, rgba(227, 38, 46, 0.06), transparent 42%),
    var(--graphite);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(40px, 6vw, 72px) 0 clamp(40px, 6vw, 64px);
  color: var(--steel-light);
  --focus: #fff;
}
.page-hero h1 { color: var(--white); font-size: var(--fs-h1); margin-top: 14px; max-width: 22ch; }
.page-hero .lede { margin-top: 18px; max-width: 62ch; color: var(--steel-mid); }
.breadcrumbs { font-size: 0.88rem; color: var(--steel-mid); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 6px; }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: var(--steel); }
.breadcrumbs a { color: var(--steel-mid); text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--steel-light); }
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.card:hover::before, .card:focus-within::before { transform: scaleX(1); }
@media (prefers-reduced-motion: no-preference) {
  .card { transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
  .card:hover { transform: translateY(-5px); border-color: #2E3947; box-shadow: var(--shadow-card); }
}
.card__icon { width: 46px; height: 46px; margin-bottom: 20px; color: var(--red); }
.card h3 { color: var(--white); font-size: var(--fs-h3); }
.card p { margin-top: 12px; color: var(--steel-mid); font-size: 0.98rem; flex-grow: 1; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--steel-light);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.card__link::after { content: "→"; color: var(--red); transition: transform 0.2s ease; }
.card__link:hover { color: var(--white); }
.card__link:hover::after { transform: translateX(4px); }
.card__link--cover::before { content: ""; position: absolute; inset: 0; }
.card--light { background: var(--white); border-color: var(--line-light); }
.card--light h3 { color: var(--ink); }
.card--light p { color: var(--ink-body); }
.card--light .card__link { color: var(--ink); }
.card--light .card__link:hover { color: var(--red-deep); }
.cap-band { text-align: left; }
.cap-band__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: clamp(20px, 3vw, 32px); }
.cap { border-left: 3px solid var(--red); padding-left: 20px; }
.cap__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.cap__num .u { color: var(--red); }
.cap__label { display: block; margin-top: 10px; color: var(--steel-mid); font-size: 0.95rem; max-width: 26ch; }
.cap-facts {
  margin-top: clamp(30px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.cap-fact { background: var(--black); padding: 18px 20px; }
.cap-fact__label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-mid);
}
.cap-fact__value {
  display: block;
  margin-top: 6px;
  color: var(--steel-light);
  font-weight: 600;
  font-size: 0.99rem;
}
.cta-band__note {
  margin-top: 18px;
  font-size: 0.93rem;
  color: var(--steel-mid);
  max-width: 62ch;
}
.tech-note {
  margin-top: clamp(28px, 4vw, 44px);
  padding: 18px 22px;
  background: rgba(227, 38, 46, 0.06);
  border: 1px solid rgba(227, 38, 46, 0.25);
  border-radius: var(--radius);
  color: var(--steel-light);
  font-size: 0.95rem;
  max-width: 880px;
}
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: clamp(18px, 2.5vw, 26px); counter-reset: step; }
.step {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--red-deep);
}
.step h3 { font-size: 1.18rem; margin-top: 10px; }
.step p { margin-top: 8px; font-size: 0.95rem; color: var(--ink-muted); }
.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
.spec-table caption { caption-side: top; text-align: left; font-weight: 700; font-family: var(--font-display); font-size: 1.25rem; padding-bottom: 14px; color: var(--ink); }
.spec-table th, .spec-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line-light); vertical-align: top; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table th[scope="row"] { width: 44%; font-weight: 600; color: var(--ink); background: #FAFBFC; }
.spec-table td { color: var(--ink-body); }
.spec-table .hl { font-weight: 700; color: var(--red-deep); }
@media (max-width: 560px) {
  .spec-table th[scope="row"] { width: 42%; }
  .spec-table th, .spec-table td { padding: 12px 12px; font-size: 0.92rem; }
}
@media (max-width: 680px) {
  .spec-table--compare thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .spec-table--compare tr { display: block; padding: 6px 0 12px; border-bottom: 1px solid var(--line-light); }
  .spec-table--compare tr:last-child { border-bottom: none; }
  .spec-table--compare th[scope="row"], .spec-table--compare td { display: block; width: 100%; border-bottom: none; padding: 8px 14px; }
  .spec-table--compare th[scope="row"] { background: #FAFBFC; font-size: 1.02rem; }
  .spec-table--compare td::before { content: attr(data-th); display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 2px; }
}
.checklist { list-style: none; padding: 0; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 30px; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 14px;
  height: 3px;
  background: var(--red);
}
.checklist--2col { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); column-gap: 32px; }
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(24px, 4vw, 40px); padding: 0; list-style: none; }
.chip {
  border: 1px solid var(--line-light);
  background: var(--white);
  color: var(--ink-body);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.chip[aria-pressed="true"] { background: var(--graphite); border-color: var(--graphite); color: var(--white); box-shadow: inset 0 -2px 0 var(--red); }
.chip:hover { border-color: var(--steel); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: clamp(16px, 2.4vw, 24px); }
.g-card { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
.g-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.g-card figcaption { padding: 14px 18px; font-size: 0.9rem; color: var(--ink-muted); border-top: 1px solid var(--line-light); }
.g-card figcaption strong { display: block; color: var(--ink); font-size: 0.95rem; }
.g-card.is-hidden { display: none; }
.faq { max-width: 860px; }
.faq__item { border-bottom: 1px solid var(--line-light); }
.faq__item:first-child { border-top: 1px solid var(--line-light); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.faq__q:hover { color: var(--red-deep); }
.faq__q .ic { flex: none; width: 22px; height: 22px; position: relative; }
.faq__q .ic::before, .faq__q .ic::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--red);
  transition: transform 0.22s ease;
}
.faq__q .ic::before { width: 16px; height: 2px; }
.faq__q .ic::after { width: 2px; height: 16px; }
.faq__q[aria-expanded="true"] .ic::after { transform: rotate(90deg); }
.faq__a { padding: 0 40px 22px 4px; color: var(--ink-body); }
.faq__a p + p { margin-top: 10px; }
.form-shell { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: clamp(22px, 3.5vw, 40px); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 18px 22px; }
.form-grid .field--full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: 0.94rem; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--red-deep); }
.field .hint { display: block; font-weight: 400; color: var(--ink-muted); font-size: 0.85rem; margin-top: 2px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #C4CCD5;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 38, 46, 0.16);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red-deep); }
.field__error { display: none; margin-top: 6px; font-size: 0.86rem; font-weight: 600; color: var(--red-deep); }
.field.has-error .field__error { display: block; }
.cond-group { grid-column: 1 / -1; border: 1px solid var(--line-light); border-left: 3px solid var(--red); border-radius: var(--radius); padding: 20px 20px 22px; margin: 4px 0; }
.cond-group legend { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); padding: 0 8px; }
.cond-group .form-grid { margin-top: 8px; }
.check-row { display: flex; gap: 12px; align-items: flex-start; }
.check-row input { width: 24px; height: 24px; margin-top: 1px; flex: none; accent-color: var(--red); }
.check-row label { font-weight: 400; font-size: 0.93rem; color: var(--ink-body); margin: 0; }
.form-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.form-status { margin-top: 18px; font-weight: 600; display: none; padding: 14px 18px; border-radius: var(--radius); font-size: 0.96rem; }
.form-status.is-error { display: block; background: rgba(169, 20, 27, 0.07); border: 1px solid rgba(169, 20, 27, 0.35); color: var(--red-deep); }
.form-status.is-success { display: block; background: rgba(28, 108, 54, 0.08); border: 1px solid rgba(28, 108, 54, 0.4); color: #1C6C36; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.is-loading { position: relative; pointer-events: none; opacity: 0.7; }
.notice {
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--steel);
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.94rem;
  color: var(--ink-body);
}
.notice--action { border-left-color: var(--red); }
.notice a { color: var(--red-deep); font-weight: 600; }
.upload-off {
  border: 1px dashed #C4CCD5;
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--ink-muted);
  font-size: 0.92rem;
  background: #FAFBFC;
}
.cta-band {
  background:
    radial-gradient(70% 120% at 85% 0%, rgba(227, 38, 46, 0.14), transparent 60%),
    var(--black);
  border-top: 1px solid var(--line-dark);
  color: var(--steel-light);
  --focus: #fff;
}
.cta-band__inner { display: grid; gap: 22px; max-width: 820px; }
.cta-band h2 { color: var(--white); font-size: var(--fs-h2); }
.cta-band p { color: var(--steel-mid); }
.cta-band .hero__actions { margin-top: 6px; }
.prose { max-width: 760px; }
.prose h2 { font-size: 1.6rem; margin-top: 2.2em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6em; }
.prose p, .prose ul, .prose ol { margin-top: 0.9em; }
.prose li + li { margin-top: 0.35em; }
.prose a { color: var(--red-deep); }
.prose .updated { color: var(--ink-muted); font-size: 0.9rem; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
.contact-grid > * { min-width: 0; }
.contact-panel { background: var(--graphite); color: var(--steel-light); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 40px); --focus: #fff; }
.contact-panel h2 { color: var(--white); }
.contact-list { list-style: none; padding: 0; display: grid; gap: 14px; }
.contact-list strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.contact-panel .contact-list { list-style: none; padding: 0; margin-top: 20px; display: grid; gap: 14px; }
.contact-panel .contact-list a { color: var(--steel-light); }
.contact-panel .contact-list strong { color: var(--white); display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.quote-direct { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-card); }
.quote-direct__title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: var(--ink); }
.quote-direct__lede { margin-top: 10px; color: var(--ink-muted); }
.quote-direct__subtitle { margin-top: 30px; font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); }
.quote-direct__list { margin-top: 14px; }
.quote-direct__hint { margin-top: 14px; font-size: 0.92rem; color: var(--ink-muted); }
.quote-direct__note { margin-top: 22px; }
.quote-direct__timing { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line-light); display: grid; gap: 10px; font-size: 0.94rem; color: var(--ink-muted); }
.action-cards { margin-top: 24px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
@media (min-width: 620px) { .action-cards { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--ink);
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
@media (prefers-reduced-motion: reduce) { .action-card { transition: none; } }
.action-card:hover { border-color: var(--red); background: var(--white); }
.action-card:hover .action-card__icon { background: var(--red); color: var(--white); border-color: var(--red); }
.action-card__icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.action-card__icon svg { width: 21px; height: 21px; }
.action-card__text { display: grid; gap: 2px; min-width: 0; }
.action-card__text strong { font-size: 1.02rem; line-height: 1.3; }
.action-card__text span { font-size: 0.88rem; color: var(--ink-muted); overflow-wrap: anywhere; }
.action-card--primary { background: var(--graphite); border-color: var(--graphite); color: var(--white); --focus: #fff; }
.action-card--primary .action-card__text span { color: var(--steel-mid); }
.action-card--primary .action-card__icon { background: var(--red); border-color: var(--red); color: var(--white); }
.action-card--primary:hover { background: var(--black); border-color: var(--red); }
.address-card {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}
.address-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}
.address-card__label .ic-sm { color: var(--red); flex: none; }
.address-card__body {
  font-style: normal;
  line-height: 1.6;
  color: var(--steel-light);
  overflow-wrap: anywhere;
}
.address-card__name { display: block; color: var(--white); font-weight: 700; }
.address-card--light { background: var(--off-white); border-color: var(--line-light); }
.address-card--light .address-card__label { color: var(--ink); }
.address-card--light .address-card__body { color: var(--ink-body); }
.address-card--light .address-card__name { color: var(--ink); }
.contact-actions { display: grid; gap: 12px; margin-top: 28px; }
.contact-actions .btn { width: 100%; }
.contact-actions .ic-sm { flex: none; }
.contact-note { margin-top: 20px; font-size: 0.88rem; color: var(--steel-mid); }
.error-hero { min-height: 70vh; display: grid; align-items: center; background: var(--black); color: var(--steel-light); text-align: left; --focus: #fff; }
.error-hero .code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 16vw, 10rem);
  color: var(--white);
  line-height: 0.95;
  position: relative;
}
.error-hero .code::after { content: ""; display: block; width: 120px; height: 4px; background: var(--red); margin-top: 18px; }
.error-hero h1 { color: var(--white); margin-top: 26px; font-size: var(--fs-h2); }
.error-hero p { color: var(--steel-mid); margin-top: 12px; }
.site-footer { background: var(--black); color: var(--steel-mid); border-top: 1px solid var(--line-dark); padding: clamp(48px, 7vw, 80px) 0 28px; font-size: 0.94rem; --focus: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: clamp(28px, 4vw, 48px); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 52px; width: auto; }
.footer-tagline { margin-top: 18px; color: var(--steel-light); font-weight: 600; }
.footer-brandline { margin-top: 6px; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-display); font-size: 1.2rem; color: var(--red); font-weight: 700; }
.footer-col__title { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-contact li { line-height: 1.5; }
.footer-contact__label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--steel-mid);
  margin-bottom: 2px;
}
.footer-contact a { color: var(--steel-light); }
.footer-address { font-style: normal; line-height: 1.5; color: var(--steel-mid); overflow-wrap: anywhere; }
.footer-address strong { display: block; color: var(--steel-light); font-weight: 700; }
.footer-col a { color: var(--steel-mid); text-decoration: none; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-size: 0.86rem;
}
.footer-legal { list-style: none; display: flex; flex-wrap: wrap; gap: 20px; padding: 0; margin: 0; }
.footer-legal a { color: var(--steel-mid); text-decoration: none; }
.footer-legal a:hover { color: var(--white); text-decoration: underline; }
.footer-legal__btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--steel-mid);
  text-decoration: none;
  cursor: pointer;
}
.footer-legal__btn:hover { color: var(--white); text-decoration: underline; }
.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 190;
  background: var(--panel);
  border-top: 2px solid var(--red);
  box-shadow: 0 -18px 40px -18px rgba(4, 8, 14, 0.7);
  color: var(--steel-light);
}
.consent[hidden] { display: none; }
.consent:focus { outline: none; }
.consent__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 18px 28px;
  flex-wrap: wrap;
}
.consent__copy { flex: 1 1 400px; min-width: 0; }
.consent__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.consent__text { font-size: 0.9rem; line-height: 1.55; max-width: 78ch; }
.consent__text a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.consent__text a:hover { color: var(--red); }
.consent__actions { flex: 0 0 auto; display: flex; gap: 12px; flex-wrap: wrap; }
.consent__btn { min-width: 186px; }
@media (prefers-reduced-motion: no-preference) {
  .consent[data-open] { animation: consent-in 0.22s ease-out both; }
  @keyframes consent-in { from { transform: translateY(100%); } to { transform: none; } }
}
@media (max-width: 620px) {
  .consent__inner { padding: 16px var(--gutter); gap: 14px; }
  .consent__actions { width: 100%; }
  .consent__btn { flex: 1 1 100%; min-width: 0; }
}
html.js .reveal { opacity: 0; transform: translateY(18px); }
html.js .reveal.is-in { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .reveal.d1.is-in { transition-delay: 0.08s; }
html.js .reveal.d2.is-in { transition-delay: 0.16s; }
html.js .reveal.d3.is-in { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__laser { animation: none !important; opacity: 0 !important; }
  .card:hover { transform: none; }
  .btn:hover { transform: none !important; }
}
@media print {
  .site-header, .site-footer, .skip-link, .nav-toggle, .hero__laser, .hero__bg,
  .cta-band, .hero__actions, .btn, .gallery-filter, .consent { display: none !important; }
  body, .section--black, .section--graphite, .page-hero, .hero, .card, .contact-panel {
    background: #fff !important;
    color: #000 !important;
  }
  .hero { min-height: 0; padding-top: 0; }
  .hero::before { display: none; }
  h1, h2, h3, h4, .card h3, .page-hero h1, .hero h1, .cap__num,
  .section--black p, .section--graphite p, .stat__label, .cap__label { color: #000 !important; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
.mt-0 { margin-top: 0 !important; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: clamp(32px, 5vw, 48px); }
.maxw-prose { max-width: 68ch; }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
/* ==========================================================================
   v3.3.0 — quotation form, pipe & tube technical components, service areas
   Added, nothing above this line was changed.
   ========================================================================== */

/* ---- Request a Quote layout ---- */
.quote-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.quote-main { min-width: 0; }
@media (max-width: 980px) { .quote-layout { grid-template-columns: 1fr; } }

/* ---- form structure ---- */
.form-fieldset { border: 0; padding: 0; margin: 0 0 34px; }
.form-fieldset:last-of-type { margin-bottom: 0; }
.form-legend { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding: 0; }
.form-legend__num { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: var(--white); font-size: 0.95rem; line-height: 1; flex: none; }
.form-guidance { background: var(--off-white); border: 1px solid var(--line-light); border-left: 3px solid var(--steel); border-radius: var(--radius); padding: 14px 18px; font-size: 0.92rem; color: var(--ink-body); margin-bottom: 20px; max-width: none; }
.field .opt { font-weight: 400; color: var(--ink-muted); font-size: 0.85rem; }
.form-actions__note { font-size: 0.88rem; color: var(--ink-muted); margin: 0; }
.form-range-warning { margin-top: 18px; padding: 14px 18px; border-radius: var(--radius); background: rgba(227, 38, 46, 0.06); border: 1px solid rgba(169, 20, 27, 0.3); color: var(--red-deep); font-size: 0.93rem; font-weight: 600; max-width: none; }
.error-summary__list { margin: 10px 0 0; padding-left: 1.15em; font-weight: 500; }
.error-summary__list a { color: var(--red-deep); }

/* ---- DXF upload panel ---- */
.upload-panel { border: 1px dashed #B9C2CC; border-radius: var(--radius); background: var(--off-white); padding: 18px; }
.upload-panel input[type="file"] { width: 100%; font-size: 0.95rem; padding: 10px 0; background: transparent; border: 0; color: var(--ink-body); }
.upload-panel input[type="file"]::file-selector-button { font: inherit; font-weight: 600; margin-right: 14px; padding: 10px 16px; min-height: 44px; border: 1px solid var(--line-light); border-radius: 6px; background: var(--white); color: var(--ink); cursor: pointer; }
.upload-panel input[type="file"]::file-selector-button:hover { border-color: var(--red); color: var(--red-deep); }
.upload-panel__note { margin: 8px 0 0; font-size: 0.86rem; color: var(--ink-muted); max-width: none; }

/* ---- confirmed success panel ---- */
.form-success { background: var(--white); border: 1px solid rgba(28, 108, 54, 0.4); border-top: 4px solid #1C6C36; border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-card); }
.form-success:focus { outline: none; }
.form-success:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.form-success__icon { color: #1C6C36; margin-bottom: 12px; }
.form-success__title { font-size: var(--fs-h2); margin-bottom: 14px; }
.form-success__ref { font-family: var(--font-display); letter-spacing: 0.04em; color: var(--ink); background: var(--off-white); border: 1px solid var(--line-light); border-radius: 4px; padding: 2px 8px; white-space: nowrap; }
.form-success__note { margin-top: 12px; color: var(--ink-muted); font-size: 0.94rem; }

/* ---- numbered process steps ---- */
.process-steps { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 16px; }
.process-steps li { display: flex; gap: 14px; align-items: flex-start; }
.process-steps__num { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--red); color: var(--red); font-family: var(--font-display); font-weight: 700; flex: none; }
.process-steps strong { display: block; color: inherit; }
.quote-alt { margin-top: clamp(32px, 5vw, 48px); }
.quote-alt__title { font-size: var(--fs-h3); margin-bottom: 8px; }

/* ---- pipe & tube profile diagram (illustrative, not a photograph) ---- */
.profile-figure { background: var(--panel); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); }
.profile-figure svg { width: 100%; height: auto; display: block; }
.profile-figure figcaption { margin-top: 16px; color: var(--steel-mid); font-size: 0.9rem; }
.profile-figure--light { background: var(--white); border-color: var(--line-light); }
.profile-figure--light figcaption { color: var(--ink-muted); }

/* ---- capability cards ---- */
.cap-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 18px; margin-top: 28px; padding: 0; list-style: none; }
.cap-card { background: var(--white); border: 1px solid var(--line-light); border-top: 3px solid var(--red); border-radius: var(--radius); padding: 22px; }
.cap-card__label { display: block; font-size: 0.82rem; letter-spacing: 0.09em; text-transform: uppercase; font-weight: 700; color: var(--ink-muted); }
.cap-card__value { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; line-height: 1.15; color: var(--ink); margin-top: 8px; }
.cap-card__note { display: block; margin-top: 8px; font-size: 0.88rem; color: var(--ink-muted); }
.cap-cards--dark .cap-card { background: var(--panel); border-color: var(--line-dark); }
.cap-cards--dark .cap-card__label { color: var(--steel); }
.cap-cards--dark .cap-card__value { color: var(--off-white); }
.cap-cards--dark .cap-card__note { color: var(--steel-mid); }

/* ---- three-step quotation process ---- */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 20px; margin-top: 28px; padding: 0; list-style: none; counter-reset: mlwstep; }
.steps-row li { position: relative; background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 26px 24px 24px; }
.steps-row li::before { counter-increment: mlwstep; content: counter(mlwstep); position: absolute; top: -16px; left: 24px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: var(--white); font-family: var(--font-display); font-weight: 700; }
.steps-row h3 { font-size: 1.15rem; margin: 8px 0 8px; }
.steps-row p { font-size: 0.94rem; color: var(--ink-body); margin: 0; }

/* ---- service-area presentation ---- */
.area-line { display: flex; gap: 12px; align-items: flex-start; margin-top: 20px; font-size: 0.98rem; }
.area-line .ic-sm { color: var(--red); flex: none; margin-top: 3px; width: 20px; height: 20px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.area-chips li { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line-light); border-radius: 999px; padding: 8px 16px; font-size: 0.92rem; font-weight: 600; color: var(--ink); background: var(--white); }
.area-chips li svg { width: 15px; height: 15px; color: var(--red); flex: none; }
.area-chips--dark li { background: var(--panel); border-color: var(--line-dark); color: var(--steel-light); }
