/*
Theme Name: Infrastructure Safety Solutions
Theme URI: https://infrastructuresafetysolutions.ca
Author: Infrastructure Safety Solutions Inc.
Description: Custom corporate WordPress theme for Infrastructure Safety Solutions Inc., including editable product records, Alberta inventory, H75 equipment video and quote-request workflow.
Version: 1.3.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: issi
*/

:root {
  --red: #e21b23;
  --red-dark: #b91017;
  --black: #090a0b;
  --ink: #121416;
  --graphite: #24272a;
  --steel: #6d7277;
  --line: #d0d3d5;
  --fog: #eef0f1;
  --paper: #f8f8f7;
  --white: #ffffff;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--red); color: var(--white); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.utility-bar {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 clamp(24px, 4vw, 72px);
  background: var(--black);
  color: #b9bdc0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}
.utility-bar p { display: flex; align-items: center; gap: 10px; margin: 0; }
.status-dot { width: 6px; height: 6px; display: inline-block; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(226,27,35,.15); }
.utility-contact { display: flex; align-items: center; gap: 30px; }
.utility-contact a { transition: color .2s ease; }
.utility-contact a:hover { color: var(--white); }

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(235px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 34px;
  padding: 0 clamp(24px, 4vw, 72px);
  background: rgba(255,255,255,.965);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.main-header::before { content: ""; position: absolute; left: 0; bottom: -1px; width: clamp(75px, 8vw, 145px); height: 4px; background: var(--red); }
.logo-link { width: clamp(220px, 17vw, 292px); }
.logo-link img { width: 100%; }
.main-header nav { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 2.2vw, 42px); }
.main-header nav a {
  position: relative;
  padding: 36px 0 32px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .095em;
  text-transform: uppercase;
}
.main-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 24px; height: 2px; background: var(--red); transition: right .22s ease; }
.main-header nav a:hover::after { right: 0; }
.header-quote {
  justify-self: end;
  width: min(100%, 205px);
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 17px;
  background: var(--ink);
  border-left: 5px solid var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  transition: background .2s ease;
}
.header-quote:hover { background: var(--red); }
.header-quote > span { color: var(--red); font-size: 15px; }
.header-quote:hover > span { color: var(--white); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 123px));
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% center; filter: saturate(.78) contrast(1.06) brightness(.88); transform: scale(1.005); }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,8,9,.98) 0%, rgba(7,8,9,.93) 34%, rgba(7,8,9,.49) 61%, rgba(7,8,9,.12) 82%),
    linear-gradient(0deg, rgba(7,8,9,.92) 0%, transparent 43%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .085;
  background-image:
    linear-gradient(90deg, transparent calc(100% - 1px), #fff 0),
    linear-gradient(transparent calc(100% - 1px), #fff 0);
  background-size: 92px 92px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.hero::before { content: ""; position: absolute; z-index: 2; left: 0; top: 0; bottom: 0; width: 7px; background: var(--red); }
.hero::after {
  content: "INFRASTRUCTURE SAFETY SOLUTIONS";
  position: absolute;
  z-index: 2;
  right: -97px;
  top: 45%;
  transform: rotate(90deg);
  color: rgba(255,255,255,.48);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .22em;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(860px, 66vw);
  min-height: min(700px, calc(100svh - 203px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vh, 115px) clamp(30px, 4vw, 72px) 125px;
}
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 21px; color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .19em; }
.eyebrow > span { display: inline-grid; place-items: center; min-width: 28px; height: 22px; padding: 0 5px; background: var(--red); color: var(--white); letter-spacing: .04em; }
.eyebrow.light { color: #f07176; }
.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 8.4vw, 138px);
  font-stretch: condensed;
  font-weight: 950;
  line-height: .78;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
h1 em, h2 em { color: var(--red); font-style: normal; }
.hero-lead { max-width: 690px; margin: 34px 0 0; color: #d0d2d3; font-size: clamp(13px, 1.02vw, 16px); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 35px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 0 20px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .115em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.button > span { font-size: 14px; }
.button-red { background: var(--red); color: var(--white); }
.button-red:hover { background: var(--red-dark); }
.button-ghost { border: 1px solid rgba(255,255,255,.48); color: var(--white); }
.button-ghost:hover { background: var(--white); border-color: var(--white); color: var(--black); }
.button-white { background: var(--white); color: var(--black); }
.button-white:hover { background: var(--fog); }
.hero-system-card {
  position: absolute;
  z-index: 4;
  right: clamp(30px, 4vw, 72px);
  bottom: 111px;
  width: min(350px, 30vw);
  padding: 22px 23px 20px;
  background: rgba(9,10,11,.89);
  border-top: 5px solid var(--red);
  box-shadow: 0 20px 55px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}
.system-card-top { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 14px; color: #93979a; font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.hero-system-card > strong { display: block; font-family: var(--display); font-size: 31px; line-height: 1; letter-spacing: -.025em; }
.hero-system-card p { margin: 10px 0 18px; color: #aeb2b4; font-size: 10px; line-height: 1.5; }
.hero-system-card > a { display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid #45484a; color: var(--white); font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.hero-system-card > a span { color: var(--red); font-size: 13px; }
.hero-index {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(24px, 4vw, 72px);
  background: rgba(9,10,11,.91);
  border-top: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}
.hero-index a { display: flex; align-items: center; gap: 15px; padding: 0 22px; border-right: 1px solid rgba(255,255,255,.14); color: #c6c9cb; font-size: 9px; font-weight: 900; letter-spacing: .1em; transition: color .2s ease, background .2s ease; }
.hero-index a:first-child { padding-left: 0; }
.hero-index a:last-child { border-right: 0; }
.hero-index a:hover { background: rgba(255,255,255,.05); color: var(--white); }
.hero-index a > span { color: var(--red); font-size: 8px; }

.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 clamp(24px, 4vw, 72px); background: var(--fog); border-bottom: 1px solid var(--line); }
.proof-strip article { min-height: 103px; display: flex; align-items: center; gap: 17px; padding: 20px 24px; border-right: 1px solid var(--line); }
.proof-strip article:first-child { padding-left: 0; }
.proof-strip article:last-child { border-right: 0; }
.proof-strip article > span { display: grid; place-items: center; flex: 0 0 33px; width: 33px; height: 33px; border: 1px solid #aeb2b5; color: var(--red); font-size: 8px; font-weight: 900; }
.proof-strip strong { display: block; font-size: 9px; letter-spacing: .085em; }
.proof-strip p { margin: 7px 0 0; color: var(--steel); font-size: 10px; }

.products-section { padding: 125px clamp(24px, 4vw, 72px); background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.1fr .68fr; gap: 10vw; align-items: end; margin-bottom: 58px; }
.section-heading h2, .support-intro h2, .quote-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6vw, 98px);
  font-stretch: condensed;
  font-weight: 950;
  line-height: .83;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.section-heading-copy { padding-bottom: 5px; }
.section-heading-copy > p { margin: 0 0 24px; color: #62676b; font-size: 13px; line-height: 1.75; }
.text-link { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 15px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-size: 9px; font-weight: 900; letter-spacing: .11em; }
.text-link span { color: var(--red); font-size: 14px; }

.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.product-card { grid-column: span 4; min-height: 610px; display: flex; flex-direction: column; overflow: hidden; background: var(--paper); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 22px 45px rgba(18,20,22,.12); }
.product-card.featured { grid-column: span 8; display: grid; grid-template-columns: 57% 43%; }
.product-image { position: relative; min-height: 275px; overflow: hidden; background: #25282b; }
.product-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,10,11,.38), transparent 45%); pointer-events: none; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.product-card:nth-child(4) .product-image img { object-fit: contain; padding: 26px; }
.product-card:hover .product-image img { transform: scale(1.025); filter: saturate(1.08); }
.featured .product-image { min-height: 100%; }
.featured .product-image img { object-fit: contain; padding: 38px; background: #1a1c1f; }
.image-action { position: absolute; z-index: 2; right: 14px; bottom: 14px; display: flex; align-items: center; gap: 14px; padding: 10px 11px; background: rgba(9,10,11,.88); color: var(--white); font-size: 7px; font-weight: 900; letter-spacing: .1em; opacity: 0; transform: translateY(5px); transition: opacity .2s ease, transform .2s ease; }
.product-image:hover .image-action { opacity: 1; transform: translateY(0); }
.product-copy { display: flex; flex-direction: column; flex: 1; padding: 27px 27px 25px; }
.featured .product-copy { padding: 36px 34px 31px; }
.product-meta { display: flex; align-items: center; gap: 13px; margin-bottom: 25px; }
.product-meta > span { display: grid; place-items: center; width: 31px; height: 31px; background: var(--red); color: var(--white); font-size: 8px; font-weight: 900; }
.product-meta > strong { color: var(--red); font-size: 8px; letter-spacing: .115em; }
.product-copy h3 { margin: 0 0 15px; font-family: var(--display); font-size: 29px; line-height: 1; letter-spacing: -.03em; text-transform: uppercase; }
.featured .product-copy h3 { font-size: clamp(34px, 3vw, 51px); }
.product-copy > p { margin: 0; color: #606569; font-size: 11px; line-height: 1.68; }
.product-copy ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 23px 0 27px; padding: 0; list-style: none; }
.product-copy li { padding: 7px 8px; background: var(--white); border: 1px solid #d5d7d9; color: #52575b; font-size: 7px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.product-quote { display: flex; justify-content: space-between; gap: 25px; margin-top: auto; padding: 15px 0 0; border-top: 1px solid #b6b9bb; font-size: 8px; font-weight: 900; letter-spacing: .11em; }
.product-quote span { color: var(--red); font-size: 14px; }
.exact-part-callout {
  position: relative;
  grid-column: span 8;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 38px;
  background:
    linear-gradient(0deg, rgba(9,10,11,.98) 0%, rgba(9,10,11,.82) 42%, rgba(9,10,11,.3) 100%),
    url("assets/products/reflector.webp") center 48% / cover no-repeat;
  color: var(--white);
}
.exact-part-callout::before { content: ""; position: absolute; left: 0; top: 0; width: 9px; height: 36%; background: var(--red); }
.exact-part-callout > div { display: flex; align-items: center; gap: 22px; }
.callout-mark { flex: 0 0 58px; width: 58px; height: 58px; display: grid; place-items: center; border: 2px solid var(--red); color: var(--red); font-family: var(--display); font-size: 34px; font-weight: 900; }
.exact-part-callout strong { font-family: var(--display); font-size: clamp(24px, 2.2vw, 36px); line-height: 1; letter-spacing: -.02em; }
.exact-part-callout p { margin: 10px 0 0; color: #bbbfc2; font-size: 11px; }
.exact-part-callout > a { display: flex; justify-content: space-between; margin-top: 25px; padding-top: 19px; border-top: 1px solid #55595c; font-size: 9px; font-weight: 900; letter-spacing: .11em; }
.exact-part-callout > a span { color: var(--red); font-size: 15px; }

.inventory-section { min-height: 750px; display: grid; grid-template-columns: 43% 57%; background: var(--black); color: var(--white); }
.inventory-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(34px, 5.2vw, 92px) 80px clamp(24px, 4vw, 72px); }
.inventory-code { align-self: flex-start; margin-bottom: 22px; padding: 8px 10px; background: var(--red); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.inventory-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(63px, 6.5vw, 106px); font-weight: 950; line-height: .8; letter-spacing: -.06em; text-transform: uppercase; }
.inventory-intro { max-width: 490px; margin: 27px 0; color: #b7bbbe; font-size: 12px; line-height: 1.72; }
.inventory-copy dl { margin: 0 0 18px; border-top: 1px solid #414447; }
.inventory-copy dl div { display: grid; grid-template-columns: 47% 53%; padding: 13px 0; border-bottom: 1px solid #414447; font-size: 8px; letter-spacing: .11em; }
.inventory-copy dt { color: #80858a; }
.inventory-copy dd { margin: 0; font-weight: 900; }
.inventory-note { max-width: 500px; margin: 0 0 27px; color: #73787c; font-size: 8px; line-height: 1.55; }
.inventory-copy .button { align-self: flex-start; }
.inventory-visual { position: relative; display: grid; place-items: center; overflow: hidden; padding: 8vw 5vw; background: #d7d9da; }
.inventory-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .52;
  background-image:
    linear-gradient(90deg, transparent calc(100% - 1px), #aeb2b5 0),
    linear-gradient(transparent calc(100% - 1px), #aeb2b5 0);
  background-size: 72px 72px;
}
.inventory-visual::after { content: "10200"; position: absolute; right: -12px; bottom: -50px; color: rgba(16,18,20,.07); font-family: var(--display); font-size: clamp(180px, 19vw, 340px); font-weight: 950; line-height: 1; letter-spacing: -.08em; }
.inventory-visual img { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 22px 26px rgba(0,0,0,.28)); }
.visual-label { position: absolute; z-index: 3; left: 31px; top: 31px; padding: 9px 11px; background: var(--black); color: var(--white); font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.dimension-line { position: absolute; z-index: 3; left: 10%; right: 10%; bottom: 76px; height: 1px; background: var(--ink); }
.dimension-line::before, .dimension-line::after { content: ""; position: absolute; top: -6px; width: 1px; height: 13px; background: var(--ink); }
.dimension-line::before { left: 0; }
.dimension-line::after { right: 0; }
.dimension-line span { position: absolute; left: 50%; top: -22px; transform: translateX(-50%); padding: 0 10px; background: #d7d9da; color: var(--ink); font-size: 8px; font-weight: 900; letter-spacing: .11em; white-space: nowrap; }
.visual-corner { position: absolute; z-index: 3; width: 39px; height: 39px; }
.visual-corner.top-left { left: 30px; bottom: 30px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); }
.visual-corner.bottom-right { right: 30px; top: 30px; border-right: 2px solid var(--red); border-top: 2px solid var(--red); }

.support-section { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0; padding: 125px clamp(24px, 4vw, 72px); background: var(--paper); }
.support-intro { grid-column: 1 / 6; padding-right: 5vw; }
.support-intro > p:last-child { max-width: 560px; margin: 29px 0 0; color: #62676b; font-size: 12px; line-height: 1.72; }
.support-flow { grid-column: 7 / 13; border-top: 1px solid #aeb2b4; }
.support-flow article { min-height: 120px; display: grid; grid-template-columns: 62px 1fr; gap: 22px; align-items: center; padding: 22px 0; border-bottom: 1px solid #aeb2b4; }
.step-number { width: 48px; height: 48px; display: grid; place-items: center; background: var(--red); color: var(--white); font-size: 9px; font-weight: 900; }
.support-flow h3 { margin: 0 0 9px; font-family: var(--display); font-size: 24px; line-height: 1; text-transform: uppercase; }
.support-flow p { margin: 0; color: #666b6f; font-size: 10px; line-height: 1.6; }
.support-image { position: relative; grid-column: 1 / 8; min-height: 505px; margin-top: 88px; overflow: hidden; background: var(--graphite); }
.support-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.1); transition: transform .6s ease; }
.support-image:hover img { transform: scale(1.02); }
.support-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,10,11,.65), transparent 52%); }
.support-image-caption { position: absolute; z-index: 2; left: 0; bottom: 0; min-width: 270px; padding: 19px 24px 21px; background: var(--red); color: var(--white); }
.support-image-caption span, .support-image-caption strong { display: block; }
.support-image-caption span { margin-bottom: 6px; font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.support-image-caption strong { font-family: var(--display); font-size: 24px; letter-spacing: -.02em; }
.support-capabilities { grid-column: 8 / 13; min-height: 505px; margin-top: 88px; background: var(--ink); color: var(--white); }
.support-capabilities article { min-height: 33.333%; display: grid; grid-template-columns: 35px 1fr; column-gap: 16px; align-content: center; padding: 27px 32px; border-bottom: 1px solid #414447; }
.support-capabilities article:last-child { border-bottom: 0; }
.support-capabilities article > span { grid-row: 1 / 3; color: var(--red); font-size: 8px; font-weight: 900; }
.support-capabilities strong { font-size: 9px; letter-spacing: .12em; }
.support-capabilities p { margin: 10px 0 0; color: #aeb2b5; font-size: 10px; line-height: 1.58; }

.catalogue-section { min-height: 700px; display: grid; grid-template-columns: 48% 52%; overflow: hidden; background: var(--graphite); color: var(--white); }
.catalogue-visual { position: relative; display: grid; place-items: center; overflow: hidden; padding: 70px 5vw; background: #d7d9da; }
.catalogue-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 42px, #9ca1a5 43px, transparent 44px);
}
.catalogue-frame { position: relative; z-index: 2; width: min(100%, 680px); padding: 13px; background: var(--white); box-shadow: 0 25px 60px rgba(0,0,0,.28); transform: rotate(-1.5deg); }
.catalogue-frame img { width: 100%; }
.catalogue-frame::after { content: ""; position: absolute; left: 0; top: 0; width: 9px; height: 100%; background: var(--red); }
.catalogue-edition { position: absolute; z-index: 3; right: 5vw; bottom: 52px; min-width: 112px; padding: 15px 17px; background: var(--black); border-bottom: 5px solid var(--red); }
.catalogue-edition span, .catalogue-edition strong { display: block; }
.catalogue-edition span { color: #8f9498; font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.catalogue-edition strong { margin-top: 4px; font-family: var(--display); font-size: 27px; }
.catalogue-copy { display: flex; flex-direction: column; justify-content: center; padding: 78px clamp(34px, 6vw, 108px); border-left: 7px solid var(--red); }
.catalogue-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(52px, 5.2vw, 85px); font-weight: 950; line-height: .84; letter-spacing: -.055em; text-transform: uppercase; }
.catalogue-copy > p:not(.eyebrow) { max-width: 640px; margin: 29px 0 24px; color: #b8bcbf; font-size: 12px; line-height: 1.72; }
.catalogue-list { display: grid; grid-template-columns: repeat(2, 1fr); margin-bottom: 31px; border-top: 1px solid #54585b; }
.catalogue-list span { padding: 12px 5px 12px 17px; border-bottom: 1px solid #54585b; color: #d6d8da; font-size: 8px; font-weight: 800; letter-spacing: .09em; position: relative; }
.catalogue-list span::before { content: ""; position: absolute; left: 0; top: 15px; width: 6px; height: 6px; background: var(--red); }
.catalogue-copy .button { align-self: flex-start; }

.quote-section { display: grid; grid-template-columns: 41% 59%; gap: 7vw; padding: 125px clamp(24px, 4vw, 72px); background: var(--fog); }
.quote-heading > p:not(.eyebrow) { max-width: 520px; margin: 29px 0 34px; color: #61666a; font-size: 12px; line-height: 1.72; }
.quote-contact { border-top: 1px solid #aeb2b4; }
.quote-contact a { display: grid; grid-template-columns: 1fr auto; gap: 7px 25px; padding: 16px 0; border-bottom: 1px solid #aeb2b4; }
.quote-contact small { grid-column: 1; color: var(--red); font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.quote-contact strong { grid-column: 1; overflow-wrap: anywhere; font-size: 12px; }
.quote-contact a > span { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--red); font-size: 15px; }
.location-block { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 27px; background: var(--line); border: 1px solid var(--line); }
.location-block span { padding: 14px; background: var(--white); text-align: center; font-size: 8px; font-weight: 900; letter-spacing: .11em; }
.location-block strong { grid-column: 1 / -1; padding: 10px; background: var(--ink); color: var(--white); text-align: center; font-size: 7px; letter-spacing: .13em; }
.quote-form { position: relative; align-self: start; padding: 42px; background: var(--white); border-top: 7px solid var(--red); box-shadow: 0 22px 55px rgba(15,17,18,.1); }
.quote-form::before { content: "RFQ"; position: absolute; right: 26px; top: 8px; color: #eceeef; font-family: var(--display); font-size: 68px; font-weight: 950; line-height: 1; pointer-events: none; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.quote-form label { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; color: #373b3e; font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; min-height: 49px; padding: 11px 12px; border: 1px solid #aeb2b5; border-radius: 0; outline: 0; background: var(--white); color: var(--ink); font: 500 12px Arial, sans-serif; letter-spacing: 0; }
.quote-form textarea { min-height: 125px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(226,27,35,.13); }
.quote-form > p { margin: 0 0 19px; color: #777c80; font-size: 8px; line-height: 1.55; }
.quote-form button { width: 100%; min-height: 55px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border: 0; background: var(--red); color: var(--white); font-size: 8px; font-weight: 900; letter-spacing: .12em; cursor: pointer; transition: background .2s ease; }
.quote-form button:hover { background: var(--red-dark); }
.quote-form button span { font-size: 15px; }

footer { background: var(--black); color: var(--white); border-top: 8px solid var(--red); }
.footer-main { display: grid; grid-template-columns: 2.2fr repeat(3, 1fr); gap: 6vw; padding: 70px clamp(24px, 4vw, 72px) 58px; }
.footer-brand img { width: min(330px, 100%); padding: 11px; background: var(--white); }
.footer-brand p { max-width: 390px; margin: 20px 0 0; color: #878c90; font-size: 10px; line-height: 1.6; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 12px; }
.footer-main > div > strong { margin-bottom: 8px; color: var(--red); font-size: 8px; letter-spacing: .14em; }
.footer-main a, .footer-main span { color: #b6babd; font-size: 9px; }
.footer-main a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 21px clamp(24px, 4vw, 72px); border-top: 1px solid #383b3e; color: #6e7377; font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.footer-bottom a:hover { color: var(--white); }
.floating-quote { display: none; }

.home-products { padding: 125px clamp(24px, 4vw, 72px); background: var(--white); }
.home-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.home-product-grid .product-card.compact { min-height: 595px; }
.home-product-grid .product-card.compact .product-image { min-height: 270px; }
.home-product-grid .product-card.compact:first-child .product-image img { object-fit: contain; padding: 30px; background: #1a1c1f; }

.home-inventory { min-height: 650px; display: grid; grid-template-columns: 58% 42%; background: var(--black); color: var(--white); }
.home-inventory-visual { position: relative; display: grid; place-items: center; overflow: hidden; padding: 8vw 5vw; background: #d7d9da; }
.home-inventory-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .48;
  background-image:
    linear-gradient(90deg, transparent calc(100% - 1px), #aeb2b5 0),
    linear-gradient(transparent calc(100% - 1px), #aeb2b5 0);
  background-size: 72px 72px;
}
.home-inventory-visual > span:first-child { position: absolute; z-index: 3; left: 30px; top: 30px; padding: 9px 11px; background: var(--black); color: var(--white); font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.home-inventory-visual img { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 22px 26px rgba(0,0,0,.28)); }
.home-inventory-copy { display: flex; flex-direction: column; justify-content: center; padding: 75px clamp(30px, 5vw, 88px); }
.home-inventory-copy h2, .home-support-heading h2, .home-catalogue h2, .inventory-locations h2, .inventory-coverage h2, .process-heading h2, .support-services h2, .support-use-cases h2, .catalogue-page-copy h2, .catalogue-process h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(49px, 5vw, 82px);
  font-weight: 950;
  line-height: .84;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.home-inventory-copy > p:not(.eyebrow) { max-width: 540px; margin: 28px 0 23px; color: #b6babd; font-size: 12px; line-height: 1.72; }
.mini-specs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 31px; }
.mini-specs span { padding: 8px 9px; border: 1px solid #4a4e51; color: #d4d6d7; font-size: 7px; font-weight: 900; letter-spacing: .09em; }
.home-inventory-copy .button { align-self: flex-start; }

.home-support { display: grid; grid-template-columns: 41% 59%; gap: 7vw; padding: 125px clamp(24px, 4vw, 72px); background: var(--paper); }
.home-support-heading { align-self: center; }
.home-support-heading .text-link { max-width: 450px; margin-top: 37px; }
.home-support-steps { border-top: 1px solid #aeb2b4; }
.home-support-steps article { min-height: 146px; display: grid; grid-template-columns: 55px 1fr; gap: 20px; align-content: center; padding: 25px 0; border-bottom: 1px solid #aeb2b4; }
.home-support-steps article > span { grid-row: 1 / 3; width: 44px; height: 44px; display: grid; place-items: center; background: var(--red); color: var(--white); font-size: 8px; font-weight: 900; }
.home-support-steps h3 { margin: 0 0 10px; font-family: var(--display); font-size: 24px; line-height: 1; text-transform: uppercase; }
.home-support-steps p { margin: 0; color: #666b6f; font-size: 10px; line-height: 1.6; }

.home-catalogue { min-height: 620px; display: grid; grid-template-columns: 44% 56%; overflow: hidden; background: var(--graphite); color: var(--white); }
.home-catalogue-cover { position: relative; display: grid; place-items: center; padding: 60px 5vw; background: #d7d9da; }
.home-catalogue-cover::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: repeating-linear-gradient(135deg, transparent 0, transparent 42px, #989da1 43px, transparent 44px); }
.home-catalogue-cover img { position: relative; z-index: 2; width: min(100%, 650px); padding: 10px; background: var(--white); border-left: 8px solid var(--red); box-shadow: 0 22px 50px rgba(0,0,0,.27); transform: rotate(-1.4deg); }
.home-catalogue > div:last-child { display: flex; flex-direction: column; justify-content: center; padding: 75px clamp(34px, 6vw, 108px); border-left: 7px solid var(--red); }
.home-catalogue > div:last-child > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 30px; color: #b8bcbf; font-size: 12px; line-height: 1.72; }
.home-catalogue .button { align-self: flex-start; }

.page-cta { min-height: 230px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; padding: 48px clamp(24px, 4vw, 72px); background: var(--red); color: var(--white); }
.page-cta p { margin: 0 0 10px; font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.page-cta h2 { margin: 0 0 11px; font-family: var(--display); font-size: clamp(35px, 4vw, 61px); line-height: .92; letter-spacing: -.04em; text-transform: uppercase; }
.page-cta div > span { color: #ffd8da; font-size: 11px; }
.page-cta .button { min-width: 235px; }

.interior-hero { position: relative; min-height: 555px; display: grid; grid-template-columns: 1fr; overflow: hidden; background: var(--black); color: var(--white); }
.interior-hero.with-image { grid-template-columns: 53% 47%; }
.interior-hero::before { content: ""; position: absolute; z-index: 3; left: 0; top: 0; bottom: 0; width: 7px; background: var(--red); }
.interior-hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(30px, 5vw, 90px) 82px clamp(24px, 4vw, 72px); overflow: hidden; }
.interior-hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .08;
  background-image:
    linear-gradient(90deg, transparent calc(100% - 1px), #fff 0),
    linear-gradient(transparent calc(100% - 1px), #fff 0);
  background-size: 82px 82px;
}
.interior-hero-copy h1 { max-width: 980px; margin: 0; font-family: var(--display); font-size: clamp(63px, 6.6vw, 108px); font-weight: 950; line-height: .81; letter-spacing: -.06em; text-transform: uppercase; }
.interior-hero-copy > p:not(.eyebrow) { max-width: 700px; margin: 29px 0 0; color: #b8bcbf; font-size: 12px; line-height: 1.72; }
.interior-hero-copy .button { align-self: flex-start; margin-top: 30px; }
.interior-hero-image { position: relative; overflow: hidden; background: #d5d7d8; border-left: 7px solid var(--red); }
.interior-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,10,11,.35), transparent 50%); }
.interior-hero-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.07); }

.products-page { padding-top: 115px; }

.product-detail-hero { min-height: 630px; display: grid; grid-template-columns: 51% 49%; background: var(--black); color: var(--white); }
.product-detail-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px clamp(34px, 5.2vw, 92px) 75px clamp(24px, 4vw, 72px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 42px; color: #7f8488; font-size: 7px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs strong { color: #c9ccce; }
.product-detail-copy h1 { max-width: 760px; margin: 0; font-family: var(--display); font-size: clamp(56px, 5.7vw, 93px); font-weight: 950; line-height: .83; letter-spacing: -.055em; text-transform: uppercase; }
.product-detail-copy > p:not(.eyebrow) { max-width: 620px; margin: 27px 0 22px; color: #b8bcbf; font-size: 12px; line-height: 1.72; }
.product-detail-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 30px; }
.product-detail-tags span { padding: 8px 9px; border: 1px solid #45494c; color: #d0d3d5; font-size: 7px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-detail-copy .button { align-self: flex-start; }
.product-detail-image { position: relative; display: grid; place-items: center; overflow: hidden; padding: 7vw 4vw; background: #d7d9da; border-left: 7px solid var(--red); }
.product-detail-image::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .44;
  background-image:
    linear-gradient(90deg, transparent calc(100% - 1px), #aeb2b5 0),
    linear-gradient(transparent calc(100% - 1px), #aeb2b5 0);
  background-size: 72px 72px;
}
.product-detail-image img { position: relative; z-index: 2; width: 100%; max-height: 470px; object-fit: contain; filter: drop-shadow(0 20px 28px rgba(0,0,0,.26)); transition: transform .35s ease; }
.product-detail-image:hover img { transform: scale(1.02); }
.product-detail-image > span { position: absolute; z-index: 3; right: 22px; bottom: 22px; display: flex; gap: 20px; padding: 11px 12px; background: var(--black); color: var(--white); font-size: 7px; font-weight: 900; letter-spacing: .1em; }
.product-detail-image > span span { color: var(--red); }

.category-overview { display: grid; grid-template-columns: 45% 55%; gap: 8vw; padding: 120px clamp(24px, 4vw, 72px); background: var(--white); }
.category-overview-copy { align-self: center; }
.category-overview-copy h2, .quote-checklist h2, .related-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 4.8vw, 78px);
  font-weight: 950;
  line-height: .85;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.category-overview-copy > p:not(.eyebrow) { max-width: 560px; margin: 28px 0 31px; color: #61666a; font-size: 12px; line-height: 1.72; }
.product-overview { max-width: 560px; margin: 28px 0 31px; color: #61666a; font-size: 12px; line-height: 1.72; }
.product-overview > :first-child { margin-top: 0; }
.product-overview > :last-child { margin-bottom: 0; }
.category-list-title { min-height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; background: var(--ink); color: var(--white); }
.category-list-title span { font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.category-list-title strong { color: var(--red); font-family: var(--display); font-size: 29px; }
.category-supply-list ul { margin: 0; padding: 0; list-style: none; border: 1px solid #abb0b3; border-top: 0; }
.category-supply-list li { min-height: 53px; display: grid; grid-template-columns: 45px 1fr; align-items: center; gap: 13px; padding: 8px 17px; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 700; }
.category-supply-list li:last-child { border-bottom: 0; }
.category-supply-list li span { color: var(--red); font-size: 7px; font-weight: 900; }

.quote-checklist { display: grid; grid-template-columns: 45% 55%; gap: 8vw; padding: 105px clamp(24px, 4vw, 72px); background: var(--ink); color: var(--white); }
.quote-checklist > div > p:last-child { max-width: 520px; margin: 27px 0 0; color: #aeb2b5; font-size: 11px; line-height: 1.7; }
.quote-checklist ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid #4a4e51; }
.quote-checklist li { min-height: 61px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; border-bottom: 1px solid #4a4e51; color: #d5d8da; font-size: 10px; }
.quote-checklist li span { color: var(--red); font-size: 8px; font-weight: 900; }

.related-products { padding: 105px clamp(24px, 4vw, 72px); background: var(--paper); }
.related-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 40px; }
.related-links { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #aeb2b4; border-left: 1px solid #aeb2b4; }
.related-links a { min-height: 130px; display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 16px; padding: 25px; border-right: 1px solid #aeb2b4; border-bottom: 1px solid #aeb2b4; transition: background .2s ease, color .2s ease; }
.related-links a:hover { background: var(--ink); color: var(--white); }
.related-links a > span { color: var(--red); font-size: 8px; font-weight: 900; }
.related-links a > strong { font-family: var(--display); font-size: 20px; line-height: 1; text-transform: uppercase; }
.all-products-link { display: flex; justify-content: space-between; gap: 30px; margin-top: 18px; padding: 17px 20px; background: var(--red); color: var(--white); font-size: 8px; font-weight: 900; letter-spacing: .11em; }

.inventory-locations { display: grid; grid-template-columns: 42% 58%; gap: 8vw; padding: 120px clamp(24px, 4vw, 72px); background: var(--white); }
.location-intro > p:not(.eyebrow) { max-width: 520px; margin: 28px 0 0; color: #62676b; font-size: 12px; line-height: 1.72; }
.location-cards { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #aeb2b4; border-left: 1px solid #aeb2b4; }
.location-cards article { min-height: 345px; display: flex; flex-direction: column; padding: 32px 27px; border-right: 1px solid #aeb2b4; border-bottom: 1px solid #aeb2b4; }
.location-cards article > span { color: var(--red); font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.location-cards article > strong { margin-top: 48px; font-family: var(--display); font-size: clamp(35px, 3.5vw, 54px); line-height: 1; }
.location-cards p { margin: 15px 0 25px; color: #62676b; font-size: 10px; line-height: 1.65; }
.location-cards a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid #aeb2b4; font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.location-cards a span { color: var(--red); font-size: 14px; }

.inventory-coverage { display: grid; grid-template-columns: 36% 64%; padding: 105px clamp(24px, 4vw, 72px); background: var(--paper); }
.inventory-coverage > div:first-child { padding-right: 5vw; }
.coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #aeb2b4; border-left: 1px solid #aeb2b4; }
.coverage-grid a { min-height: 105px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 13px; padding: 20px; border-right: 1px solid #aeb2b4; border-bottom: 1px solid #aeb2b4; transition: background .2s ease, color .2s ease; }
.coverage-grid a:hover { background: var(--ink); color: var(--white); }
.coverage-grid a > span { color: var(--red); font-size: 7px; font-weight: 900; }
.coverage-grid strong { font-size: 9px; letter-spacing: .08em; }
.inventory-coverage > p { grid-column: 2; margin: 18px 0 0; color: #7a7f83; font-size: 8px; line-height: 1.6; }

.support-page-process { display: grid; grid-template-columns: 42% 58%; gap: 8vw; padding: 120px clamp(24px, 4vw, 72px); background: var(--white); }
.process-heading > p:last-child { max-width: 520px; margin: 28px 0 0; color: #62676b; font-size: 12px; line-height: 1.72; }
.process-steps { border-top: 1px solid #aeb2b4; }
.process-steps article { min-height: 142px; display: grid; grid-template-columns: 55px 1fr; align-items: center; gap: 21px; padding: 24px 0; border-bottom: 1px solid #aeb2b4; }
.process-steps article > span { width: 46px; height: 46px; display: grid; place-items: center; background: var(--red); color: var(--white); font-size: 8px; font-weight: 900; }
.process-steps h3 { margin: 0 0 9px; font-family: var(--display); font-size: 24px; line-height: 1; text-transform: uppercase; }
.process-steps p { margin: 0; color: #666b6f; font-size: 10px; line-height: 1.6; }

.support-services { padding: 110px clamp(24px, 4vw, 72px); background: var(--ink); color: var(--white); }
.support-services-heading { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 50px; }
.support-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #4b4f52; border-left: 1px solid #4b4f52; }
.support-service-grid article { min-height: 245px; padding: 27px; border-right: 1px solid #4b4f52; border-bottom: 1px solid #4b4f52; }
.support-service-grid article > span { color: var(--red); font-size: 8px; font-weight: 900; }
.support-service-grid h3 { margin: 45px 0 13px; font-family: var(--display); font-size: 25px; line-height: 1; text-transform: uppercase; }
.support-service-grid p { margin: 0; color: #aeb2b5; font-size: 10px; line-height: 1.65; }

.support-use-cases { display: grid; grid-template-columns: 38% 62%; gap: 7vw; padding: 115px clamp(24px, 4vw, 72px); background: var(--paper); }
.use-case-grid { border-top: 1px solid #aeb2b4; }
.use-case-grid article { padding: 24px 0; border-bottom: 1px solid #aeb2b4; }
.use-case-grid article > span { color: var(--red); font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.use-case-grid h3 { margin: 10px 0; font-family: var(--display); font-size: 25px; line-height: 1; text-transform: uppercase; }
.use-case-grid p { margin: 0 0 15px; color: #62676b; font-size: 10px; line-height: 1.6; }
.use-case-grid a { display: flex; justify-content: space-between; padding-top: 13px; border-top: 1px solid #d3d5d7; font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.use-case-grid a span { color: var(--red); font-size: 14px; }

.catalogue-page-feature { min-height: 720px; display: grid; grid-template-columns: 48% 52%; background: var(--paper); }
.catalogue-page-visual { position: relative; display: grid; place-items: center; overflow: hidden; padding: 70px 5vw; background: #d7d9da; }
.catalogue-page-visual::before { content: ""; position: absolute; inset: 0; opacity: .34; background-image: repeating-linear-gradient(135deg, transparent 0, transparent 42px, #9ca1a5 43px, transparent 44px); }
.catalogue-page-copy { display: flex; flex-direction: column; justify-content: center; padding: 78px clamp(34px, 6vw, 108px); border-left: 7px solid var(--red); }
.catalogue-page-copy > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 23px; color: #62676b; font-size: 12px; line-height: 1.72; }
.catalogue-page-copy .catalogue-list { border-color: #aeb2b4; }
.catalogue-page-copy .catalogue-list span { color: #4f5458; border-color: #c8cbcd; }
.catalogue-page-copy .button { align-self: flex-start; }

.catalogue-process { display: grid; grid-template-columns: 38% 62%; gap: 8vw; padding: 110px clamp(24px, 4vw, 72px); background: var(--ink); color: var(--white); }
.catalogue-process-steps { border-top: 1px solid #4a4e51; }
.catalogue-process-steps article { min-height: 130px; display: grid; grid-template-columns: 38px 1fr; column-gap: 15px; align-content: center; padding: 23px 0; border-bottom: 1px solid #4a4e51; }
.catalogue-process-steps article > span { grid-row: 1 / 3; color: var(--red); font-size: 8px; font-weight: 900; }
.catalogue-process-steps strong { font-family: var(--display); font-size: 23px; text-transform: uppercase; }
.catalogue-process-steps p { margin: 8px 0 0; color: #aeb2b5; font-size: 10px; line-height: 1.6; }

.quote-page { padding-top: 110px; padding-bottom: 110px; }

.equipment-teaser { min-height: 610px; display: grid; grid-template-columns: 58% 42%; background: var(--black); color: var(--white); }
.equipment-teaser-image { position: relative; overflow: hidden; background: var(--graphite); }
.equipment-teaser-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,10,11,.48), transparent 58%); }
.equipment-teaser-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); transition: transform .45s ease; }
.equipment-teaser-image:hover img { transform: scale(1.02); }
.play-mark { position: absolute; z-index: 3; left: 50%; top: 50%; width: 72px; height: 72px; display: grid; place-items: center; transform: translate(-50%, -50%); padding-left: 4px; border: 2px solid var(--white); border-radius: 50%; background: rgba(9,10,11,.58); color: var(--white); font-size: 20px; backdrop-filter: blur(8px); transition: background .2s ease, border-color .2s ease; }
.equipment-teaser-image:hover .play-mark { background: var(--red); border-color: var(--red); }
.equipment-teaser-image small { position: absolute; z-index: 3; left: 24px; bottom: 22px; padding: 10px 12px; background: var(--black); color: var(--white); font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.equipment-teaser-copy { display: flex; flex-direction: column; justify-content: center; padding: 75px clamp(34px, 5.5vw, 98px); border-left: 7px solid var(--red); }
.equipment-teaser-copy h2, .equipment-video-heading h2, .equipment-capabilities h2, .equipment-service h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(49px, 5vw, 82px);
  font-weight: 950;
  line-height: .84;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.equipment-teaser-copy > p:not(.eyebrow) { max-width: 530px; margin: 28px 0 31px; color: #b7bbbe; font-size: 12px; line-height: 1.72; }
.equipment-teaser-copy .button { align-self: flex-start; }

.equipment-video-section { padding: 115px clamp(24px, 4vw, 72px); background: var(--white); }
.equipment-video-heading { display: grid; grid-template-columns: 1.1fr .65fr; gap: 9vw; align-items: end; margin-bottom: 52px; }
.equipment-video-heading > p { margin: 0 0 4px; color: #62676b; font-size: 12px; line-height: 1.72; }
.equipment-video-frame { overflow: hidden; background: var(--black); border-top: 7px solid var(--red); box-shadow: 0 25px 60px rgba(13,15,16,.18); }
.equipment-video-frame video { width: 100%; max-height: 78vh; display: block; aspect-ratio: 16 / 9; background: var(--black); object-fit: contain; }
.equipment-chapters { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #3d4144; }
.equipment-chapters button { position: relative; min-height: 82px; display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 11px; padding: 15px 17px; border: 0; border-right: 1px solid #3d4144; background: var(--black); color: var(--white); text-align: left; cursor: pointer; }
.equipment-chapters button:last-child { border-right: 0; }
.equipment-chapters button::before { content: ""; position: absolute; left: 0; right: 100%; top: 0; height: 4px; background: var(--red); transition: right .2s ease; }
.equipment-chapters button:hover::before, .equipment-chapters button.active::before { right: 0; }
.equipment-chapters button.active { background: #191b1d; }
.equipment-chapters button > span { color: var(--red); font-size: 7px; font-weight: 900; }
.equipment-chapters button > strong { font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.equipment-chapters button > small { color: #858a8e; font-size: 7px; font-weight: 900; letter-spacing: .08em; }

.equipment-capabilities { display: grid; grid-template-columns: 38% 62%; gap: 7vw; padding: 110px clamp(24px, 4vw, 72px); background: var(--ink); color: var(--white); }
.equipment-capabilities-heading > p:last-child { max-width: 520px; margin: 28px 0 0; color: #aeb2b5; font-size: 11px; line-height: 1.7; }
.equipment-capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #4a4e51; border-left: 1px solid #4a4e51; }
.equipment-capability-grid article { min-height: 225px; padding: 26px; border-right: 1px solid #4a4e51; border-bottom: 1px solid #4a4e51; }
.equipment-capability-grid article > span { color: var(--red); font-size: 8px; font-weight: 900; }
.equipment-capability-grid h3 { margin: 45px 0 13px; font-family: var(--display); font-size: 24px; line-height: 1; text-transform: uppercase; }
.equipment-capability-grid p { margin: 0; color: #aeb2b5; font-size: 10px; line-height: 1.65; }

.equipment-service { display: grid; grid-template-columns: 41% 59%; gap: 8vw; padding: 110px clamp(24px, 4vw, 72px); background: var(--paper); }
.equipment-service-list { border-top: 1px solid #aeb2b4; }
.equipment-service-list div { min-height: 76px; display: grid; grid-template-columns: 38% 62%; align-items: center; padding: 12px 0; border-bottom: 1px solid #aeb2b4; }
.equipment-service-list span { color: var(--red); font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.equipment-service-list strong { font-size: 10px; letter-spacing: .08em; }

@media (max-width: 1180px) {
  .main-header { grid-template-columns: minmax(215px, 1fr) auto 175px; gap: 22px; }
  .main-header nav { gap: 20px; }
  .hero-system-card { width: 310px; }
  .product-copy { padding: 24px 22px; }
  .product-copy h3 { font-size: 25px; }
  .proof-strip strong { font-size: 8px; }
  .support-intro { grid-column: 1 / 6; }
  .support-flow { grid-column: 6 / 13; }
}

@media (max-width: 940px) {
  .utility-bar p { display: none; }
  .utility-bar { justify-content: flex-end; }
  .main-header { min-height: 79px; grid-template-columns: 1fr auto auto; }
  .main-header nav { display: none; }
  .header-quote { width: 168px; min-height: 45px; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary { width: 42px; height: 42px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: var(--fog); cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 18px; height: 2px; background: var(--ink); }
  .mobile-menu > div { position: absolute; right: 0; top: 51px; width: 250px; display: flex; flex-direction: column; padding: 13px; background: var(--black); color: var(--white); box-shadow: 0 18px 40px rgba(0,0,0,.25); }
  .mobile-menu > div a { padding: 14px 12px; border-bottom: 1px solid #383b3e; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-menu > div a:last-child { background: var(--red); border-bottom: 0; }
  .hero { min-height: 730px; }
  .hero-content { width: 78vw; min-height: 648px; padding-bottom: 130px; }
  .hero h1 { font-size: clamp(73px, 11vw, 110px); }
  .hero-system-card { display: none; }
  .hero-index a { padding: 0 13px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip article:nth-child(2) { border-right: 0; }
  .proof-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .section-heading-copy { max-width: 650px; }
  .product-card { grid-column: span 6; }
  .product-card.featured { grid-column: span 12; }
  .exact-part-callout { grid-column: span 6; }
  .inventory-section { grid-template-columns: 1fr; }
  .inventory-copy { min-height: 700px; }
  .inventory-visual { min-height: 560px; }
  .support-intro { grid-column: 1 / 13; padding-right: 0; }
  .support-flow { grid-column: 1 / 13; margin-top: 55px; }
  .support-image { grid-column: 1 / 8; }
  .support-capabilities { grid-column: 8 / 13; }
  .catalogue-section { grid-template-columns: 1fr; }
  .catalogue-visual { min-height: 590px; }
  .catalogue-copy { min-height: 640px; border-left: 0; border-top: 7px solid var(--red); }
  .quote-section { grid-template-columns: 1fr; gap: 62px; }
  .quote-heading { max-width: 690px; }
  .footer-main { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .utility-bar { min-height: 30px; padding: 0 18px; }
  .utility-contact { width: 100%; justify-content: flex-end; }
  .utility-contact a:first-child { display: none; }
  .main-header { min-height: 72px; grid-template-columns: 1fr auto; gap: 13px; padding: 0 18px; }
  .main-header::before { width: 64px; }
  .logo-link, .custom-logo-link { width: 190px; }
  .header-quote { display: none; }
  .mobile-menu > div { top: 48px; }
  .hero { min-height: 710px; }
  .hero-background { object-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,8,9,.96) 0%, rgba(7,8,9,.78) 63%, rgba(7,8,9,.38)), linear-gradient(0deg, rgba(7,8,9,.94), transparent 52%); }
  .hero::after { display: none; }
  .hero-content { width: 100%; min-height: 622px; padding: 75px 22px 124px; justify-content: center; }
  .eyebrow { margin-bottom: 18px; font-size: 8px; line-height: 1.4; }
  .hero h1 { font-size: clamp(62px, 20vw, 86px); line-height: .82; }
  .hero-lead { max-width: 510px; margin-top: 27px; font-size: 12px; }
  .hero-actions { margin-top: 28px; }
  .button { min-height: 51px; gap: 28px; }
  .button-ghost { display: none; }
  .hero-index { min-height: 88px; grid-template-columns: repeat(2, 1fr); padding: 0 22px; }
  .hero-index a { min-height: 44px; padding: 0 10px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .hero-index a:first-child, .hero-index a:nth-child(3) { padding-left: 0; }
  .hero-index a:nth-child(2) { border-right: 0; }
  .hero-index a:nth-child(n+3) { border-bottom: 0; }
  .proof-strip { grid-template-columns: 1fr; padding: 0 22px; }
  .proof-strip article, .proof-strip article:first-child { min-height: 87px; padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip article:last-child { border-bottom: 0; }
  .products-section { padding: 88px 22px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .support-intro h2, .quote-heading h2 { font-size: clamp(50px, 15.2vw, 68px); }
  .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card, .product-card.featured, .exact-part-callout { grid-column: auto; }
  .product-card.featured { display: flex; }
  .product-card { min-height: 560px; }
  .featured .product-image { min-height: 245px; }
  .featured .product-copy { padding: 26px 23px; }
  .featured .product-copy h3 { font-size: 32px; }
  .exact-part-callout { min-height: 480px; padding: 27px 23px; }
  .exact-part-callout > div { align-items: flex-start; flex-direction: column; }
  .inventory-copy { min-height: 680px; padding: 75px 22px; }
  .inventory-copy h2 { font-size: 66px; }
  .inventory-visual { min-height: 410px; padding: 80px 24px; }
  .inventory-visual::after { font-size: 160px; }
  .visual-label { left: 20px; top: 20px; }
  .dimension-line { bottom: 52px; }
  .visual-corner.top-left { left: 20px; bottom: 20px; }
  .visual-corner.bottom-right { right: 20px; top: 20px; }
  .support-section { display: block; padding: 88px 22px; }
  .support-flow { margin-top: 50px; }
  .support-flow article { grid-template-columns: 52px 1fr; gap: 15px; }
  .support-image, .support-capabilities { min-height: 440px; margin-top: 55px; }
  .support-capabilities { margin-top: 0; }
  .support-capabilities article { min-height: 146px; padding: 24px 20px; }
  .catalogue-visual { min-height: 420px; padding: 48px 22px; }
  .catalogue-frame { padding: 8px; }
  .catalogue-edition { right: 22px; bottom: 28px; }
  .catalogue-copy { min-height: 590px; padding: 68px 22px; }
  .catalogue-copy h2 { font-size: 53px; }
  .catalogue-list { grid-template-columns: 1fr; }
  .quote-section { padding: 88px 22px 100px; }
  .quote-form { padding: 32px 20px 25px; }
  .quote-form::before { right: 14px; font-size: 55px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr; padding: 55px 22px; }
  .footer-brand { grid-column: auto; }
  .footer-main > div:not(.footer-brand) { padding-top: 13px; border-top: 1px solid #383b3e; }
  .footer-bottom { flex-direction: column; padding: 20px 22px 82px; }
  .floating-quote {
    position: fixed;
    z-index: 80;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .11em;
  }
  .floating-quote > span:first-child { display: inline; font-size: inherit; }
}

@media (max-width: 940px) {
  .home-product-grid { grid-template-columns: repeat(2, 1fr); }
  .home-product-grid .product-card:last-child { grid-column: 1 / -1; }
  .home-inventory { grid-template-columns: 1fr; }
  .home-inventory-visual { min-height: 520px; }
  .home-inventory-copy { min-height: 580px; }
  .home-support { grid-template-columns: 1fr; gap: 55px; }
  .home-catalogue { grid-template-columns: 1fr; }
  .home-catalogue-cover { min-height: 530px; }
  .home-catalogue > div:last-child { min-height: 560px; border-left: 0; border-top: 7px solid var(--red); }
  .interior-hero.with-image { grid-template-columns: 1fr; }
  .interior-hero-copy { min-height: 510px; }
  .interior-hero-image { min-height: 440px; border-left: 0; border-top: 7px solid var(--red); }
  .product-detail-hero { grid-template-columns: 1fr; }
  .product-detail-copy { min-height: 570px; }
  .product-detail-image { min-height: 520px; border-left: 0; border-top: 7px solid var(--red); }
  .category-overview, .quote-checklist { grid-template-columns: 1fr; gap: 55px; }
  .related-links { grid-template-columns: 1fr; }
  .inventory-locations { grid-template-columns: 1fr; gap: 55px; }
  .inventory-coverage { grid-template-columns: 1fr; gap: 45px; }
  .inventory-coverage > div:first-child { padding-right: 0; }
  .inventory-coverage > p { grid-column: 1; }
  .support-page-process { grid-template-columns: 1fr; gap: 55px; }
  .support-services-heading { grid-template-columns: 1fr; }
  .support-service-grid { grid-template-columns: repeat(2, 1fr); }
  .support-use-cases { grid-template-columns: 1fr; gap: 55px; }
  .catalogue-page-feature { grid-template-columns: 1fr; }
  .catalogue-page-visual { min-height: 590px; }
  .catalogue-page-copy { min-height: 620px; border-left: 0; border-top: 7px solid var(--red); }
  .catalogue-process { grid-template-columns: 1fr; gap: 55px; }
  .equipment-teaser { grid-template-columns: 1fr; }
  .equipment-teaser-image { min-height: 500px; }
  .equipment-teaser-copy { min-height: 560px; border-left: 0; border-top: 7px solid var(--red); }
  .equipment-video-heading { grid-template-columns: 1fr; gap: 30px; }
  .equipment-capabilities, .equipment-service { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 650px) {
  .home-products { padding: 88px 22px; }
  .home-product-grid { grid-template-columns: 1fr; }
  .home-product-grid .product-card:last-child { grid-column: auto; }
  .home-product-grid .product-card.compact { min-height: 555px; }
  .home-inventory-visual { min-height: 400px; padding: 80px 24px; }
  .home-inventory-visual > span:first-child { left: 20px; top: 20px; }
  .home-inventory-copy { min-height: 570px; padding: 68px 22px; }
  .home-inventory-copy h2, .home-support-heading h2, .home-catalogue h2, .inventory-locations h2, .inventory-coverage h2, .process-heading h2, .support-services h2, .support-use-cases h2, .catalogue-page-copy h2, .catalogue-process h2 { font-size: 52px; }
  .home-support { padding: 88px 22px; }
  .home-support-steps article { min-height: 135px; }
  .home-catalogue-cover { min-height: 395px; padding: 45px 22px; }
  .home-catalogue > div:last-child { min-height: 530px; padding: 65px 22px; }
  .page-cta { grid-template-columns: 1fr; gap: 29px; min-height: 300px; padding: 45px 22px; }
  .page-cta h2 { font-size: 42px; }
  .page-cta .button { min-width: 0; width: 100%; }
  .interior-hero-copy { min-height: 500px; padding: 68px 22px; }
  .interior-hero-copy h1 { font-size: 56px; }
  .interior-hero-image { min-height: 350px; }
  .product-detail-copy { min-height: 570px; padding: 60px 22px; }
  .breadcrumbs { margin-bottom: 32px; }
  .product-detail-copy h1 { font-size: 54px; }
  .product-detail-image { min-height: 390px; padding: 70px 24px; }
  .category-overview, .quote-checklist, .related-products, .inventory-locations, .inventory-coverage, .support-page-process, .support-services, .support-use-cases, .catalogue-process { padding: 82px 22px; }
  .category-overview-copy h2, .quote-checklist h2, .related-heading h2 { font-size: 49px; }
  .category-supply-list li { min-height: 50px; }
  .related-heading { display: block; }
  .related-links a { min-height: 105px; }
  .location-cards { grid-template-columns: 1fr; }
  .location-cards article { min-height: 300px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .support-service-grid { grid-template-columns: 1fr; }
  .support-service-grid article { min-height: 220px; }
  .catalogue-page-visual { min-height: 410px; padding: 45px 22px; }
  .catalogue-page-copy { min-height: 590px; padding: 65px 22px; }
  .catalogue-process-steps article { min-height: 125px; }
  .quote-page { padding-top: 82px; padding-bottom: 95px; }
  .equipment-teaser-image { min-height: 380px; }
  .equipment-teaser-copy { min-height: 520px; padding: 65px 22px; }
  .equipment-teaser-copy h2, .equipment-video-heading h2, .equipment-capabilities h2, .equipment-service h2 { font-size: 52px; }
  .play-mark { width: 62px; height: 62px; }
  .equipment-video-section { padding: 82px 22px; }
  .equipment-video-frame video { max-height: none; }
  .equipment-chapters { grid-template-columns: repeat(2, 1fr); }
  .equipment-chapters button { min-height: 75px; border-bottom: 1px solid #3d4144; }
  .equipment-chapters button:nth-child(2) { border-right: 0; }
  .equipment-capabilities, .equipment-service { padding: 82px 22px; }
  .equipment-capability-grid { grid-template-columns: 1fr; }
  .equipment-capability-grid article { min-height: 205px; }
  .equipment-service-list div { grid-template-columns: 1fr; gap: 8px; min-height: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* WordPress integration */
.admin-bar .main-header { top: 32px; }
.primary-navigation .primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-navigation .primary-menu li { margin: 0; }
.custom-logo-link { width: clamp(220px, 17vw, 292px); }
.custom-logo-link img { width: 100%; height: auto; }
.issi-editor-content {
  padding: 55px clamp(24px, 4vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.issi-editor-content:empty { display: none; }
.issi-editor-content > * { max-width: 980px; margin-left: auto; margin-right: auto; }
.issi-editor-content p, .issi-editor-content li { color: #565b5f; line-height: 1.75; }
.issi-editor-content a { color: var(--red-dark); text-decoration: underline; }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 14px 18px;
  clip: auto !important;
  background: var(--white);
  color: var(--black);
}
.wp-caption, .wp-caption-text, .gallery-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.sticky, .bypostauthor { display: block; }
.issi-standard-page { padding: 95px clamp(24px, 4vw, 72px); }
.issi-standard-page article { width: min(900px, 100%); margin: 0 auto; }
.issi-standard-page h1 { font-family: var(--display); font-size: clamp(52px, 6vw, 86px); line-height: .88; letter-spacing: -.045em; text-transform: uppercase; }
.issi-standard-page .entry-content { color: #565b5f; line-height: 1.8; }
.issi-admin-note { display: none; }

@media (max-width: 940px) {
  .admin-bar .main-header { top: 46px; }
  .primary-navigation { display: none; }
}

@media (max-width: 782px) {
  .admin-bar .main-header { top: 46px; }
}

/* Product inventory galleries */
.product-gallery-section { padding: 110px clamp(24px, 4vw, 72px); background: var(--black); color: var(--white); }
.product-gallery-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: end; margin-bottom: 48px; }
.product-gallery-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(54px, 6vw, 94px); font-stretch: condensed; font-weight: 900; letter-spacing: -.055em; line-height: .86; text-transform: uppercase; }
.product-gallery-heading h2 em { color: var(--red); font-style: normal; }
.product-gallery-intro { max-width: 560px; justify-self: end; }
.product-gallery-intro > p { margin: 0 0 24px; color: #b5b9bc; font-size: 11px; line-height: 1.75; }
.gallery-auto-status { display: inline-flex; align-items: center; gap: 9px; color: #d6d8da; font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.gallery-auto-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(226,27,35,.15); }
.product-gallery-shell { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 330px); border: 1px solid #35383b; background: #121416; }
.product-gallery-stage { position: relative; min-height: 610px; display: grid; place-items: center; padding: clamp(20px, 3vw, 48px); overflow: hidden; border-right: 1px solid #35383b; background: radial-gradient(circle at 50% 45%, #25282b 0%, #151719 56%, #0c0d0e 100%); }
.product-gallery-stage::before { content: "ISSI INVENTORY"; position: absolute; right: -6px; top: 18px; color: rgba(255,255,255,.055); font-family: var(--display); font-size: clamp(48px, 6.5vw, 105px); font-weight: 900; letter-spacing: -.05em; line-height: 1; white-space: nowrap; }
.product-gallery-stage img { position: relative; z-index: 1; width: 100%; height: 100%; max-height: 535px; object-fit: contain; animation: gallery-reveal .32s ease both; }
.gallery-enlarge { position: absolute; z-index: 2; left: 20px; bottom: 18px; padding: 9px 11px; background: rgba(8,9,10,.85); color: #d9dcde; font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.product-gallery-panel { display: flex; flex-direction: column; min-width: 0; padding: 35px 28px 28px; }
.gallery-count { display: flex; align-items: baseline; gap: 10px; }
.gallery-count strong { color: var(--red); font-family: var(--display); font-size: 78px; line-height: .8; }
.gallery-count span { color: #767b7f; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.product-gallery-panel > p { margin: auto 0 30px; color: #d7d9db; font-size: 11px; font-weight: 700; line-height: 1.75; overflow-wrap: anywhere; }
.gallery-buttons { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #45494c; }
.gallery-buttons button { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 14px; border: 0; border-right: 1px solid #45494c; background: transparent; color: var(--white); cursor: pointer; font-size: 15px; transition: background .2s ease, color .2s ease; }
.gallery-buttons button:last-child { border-right: 0; }
.gallery-buttons button span { font-size: 7px; font-weight: 900; letter-spacing: .1em; }
.gallery-buttons button:hover { background: var(--red); }
.product-gallery-index { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(72px, 1fr); gap: 1px; margin-top: 12px; overflow-x: auto; scrollbar-color: var(--red) #222527; scroll-snap-type: x proximity; }
.product-gallery-index button { min-height: 45px; border: 0; border-bottom: 3px solid #33373a; background: #17191b; color: #7d8286; cursor: pointer; scroll-snap-align: start; font-size: 7px; font-weight: 900; letter-spacing: .1em; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.product-gallery-index button:hover { color: var(--white); background: #212426; }
.product-gallery-index button.active { border-bottom-color: var(--red); background: #24272a; color: var(--white); }

/* Compact rental option teaser */
.compact-equipment-coming { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; min-height: 610px; overflow: hidden; background: var(--red); color: var(--white); }
.compact-equipment-video { position: relative; min-height: 610px; overflow: hidden; background: #090a0b; }
.compact-equipment-video video { width: 100%; height: 100%; min-height: 610px; display: block; object-fit: cover; background: #090a0b; }
.compact-video-badge { position: absolute; z-index: 2; top: 24px; left: 24px; padding: 10px 13px; border-left: 4px solid var(--red); background: rgba(9,10,11,.86); color: var(--white); font-size: 8px; font-weight: 900; letter-spacing: .14em; backdrop-filter: blur(8px); }
.compact-equipment-visual { position: relative; min-height: 610px; display: flex; flex-direction: column; justify-content: space-between; padding: 45px clamp(24px, 4vw, 65px); overflow: hidden; background: radial-gradient(circle at 24% 28%, #383c3f 0%, #17191b 46%, #090a0b 100%); }
.compact-equipment-visual::before { content: "02"; position: absolute; right: -2vw; bottom: -9vw; color: rgba(255,255,255,.055); font-family: var(--display); font-size: clamp(250px, 28vw, 520px); font-weight: 900; line-height: .8; }
.compact-status { position: relative; z-index: 1; display: inline-flex; align-items: center; align-self: flex-start; gap: 10px; padding: 10px 13px; border: 1px solid #55595c; color: #d9dcde; font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.compact-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(226,27,35,.18); }
.compact-equipment-mark { position: relative; z-index: 1; }
.compact-equipment-mark span { display: block; margin-bottom: 16px; color: #8f9498; font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.compact-equipment-mark strong { display: block; max-width: 690px; font-family: var(--display); font-size: clamp(64px, 7.6vw, 126px); letter-spacing: -.065em; line-height: .78; text-transform: uppercase; }
.compact-audio-line { position: relative; z-index: 1; height: 42px; display: flex; align-items: center; gap: 5px; }
.compact-audio-line i { width: 3px; height: 12px; display: block; background: var(--red); animation: compact-pulse 1.15s ease-in-out infinite alternate; }
.compact-audio-line i:nth-child(2n) { height: 28px; animation-delay: -.45s; }
.compact-audio-line i:nth-child(3n) { height: 19px; animation-delay: -.75s; }
.compact-equipment-copy { display: flex; flex-direction: column; justify-content: center; padding: 75px clamp(24px, 5vw, 82px); background: var(--red); }
.compact-equipment-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(58px, 6vw, 96px); font-weight: 900; letter-spacing: -.06em; line-height: .82; text-transform: uppercase; }
.compact-equipment-live .compact-equipment-copy h2 { font-size: clamp(50px, 5.1vw, 82px); }
.compact-equipment-copy h2 em { display: block; color: var(--black); font-style: normal; }
.compact-equipment-copy > p { max-width: 580px; margin: 32px 0 35px; color: rgba(255,255,255,.86); font-size: 11px; line-height: 1.75; }
.coming-feature-list { display: grid; grid-template-columns: repeat(2, 1fr); margin-bottom: 35px; border-top: 1px solid rgba(255,255,255,.42); border-left: 1px solid rgba(255,255,255,.42); }
.coming-feature-list span { min-height: 64px; display: flex; align-items: center; padding: 14px; border-right: 1px solid rgba(255,255,255,.42); border-bottom: 1px solid rgba(255,255,255,.42); font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.coming-video-label { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 18px; border: 1px solid var(--black); color: var(--black); font-size: 8px; font-weight: 900; letter-spacing: .12em; transition: background .2s ease, color .2s ease; }
.coming-video-label:hover, .coming-video-label:focus-visible { background: var(--black); color: var(--white); }
@keyframes gallery-reveal { from { opacity: .25; transform: scale(.985); } to { opacity: 1; transform: scale(1); } }
@keyframes compact-pulse { from { transform: scaleY(.45); } to { transform: scaleY(1.15); } }

@media (max-width: 940px) {
  .product-gallery-heading, .compact-equipment-coming { grid-template-columns: 1fr; }
  .product-gallery-intro { justify-self: start; }
  .product-gallery-shell { grid-template-columns: 1fr; }
  .product-gallery-stage { min-height: 520px; border-right: 0; border-bottom: 1px solid #35383b; }
  .product-gallery-panel { min-height: 240px; }
  .product-gallery-panel > p { margin-top: 45px; }
  .compact-equipment-visual { min-height: 520px; }
  .compact-equipment-video, .compact-equipment-video video { min-height: 520px; }
}

@media (max-width: 650px) {
  .product-gallery-section { padding: 82px 22px; }
  .product-gallery-heading { gap: 28px; margin-bottom: 35px; }
  .product-gallery-heading h2 { font-size: 52px; }
  .product-gallery-stage { min-height: 350px; padding: 20px; }
  .product-gallery-stage img { max-height: 310px; }
  .product-gallery-panel { min-height: 235px; padding: 27px 20px 20px; }
  .gallery-count strong { font-size: 60px; }
  .product-gallery-panel > p { margin: 34px 0 24px; }
  .product-gallery-index { grid-auto-columns: 66px; }
  .compact-equipment-visual { min-height: 430px; padding: 32px 22px; }
  .compact-equipment-mark strong { font-size: 66px; }
  .compact-equipment-copy { padding: 70px 22px; }
  .compact-equipment-copy h2 { font-size: 58px; }
  .compact-equipment-live .compact-equipment-copy h2 { font-size: 52px; }
  .compact-equipment-video, .compact-equipment-video video { min-height: 300px; }
  .compact-video-badge { top: 16px; left: 16px; max-width: calc(100% - 32px); font-size: 7px; }
  .coming-feature-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery-stage img, .compact-audio-line i { animation: none; }
}
