:root {
  --red: #cc1019;
  --red-dark: #990c12;
  --ink: #18212a;
  --ink-2: #263440;
  --green: #123f3a;
  --green-soft: #e8f1ee;
  --text: #586572;
  --muted: #7b8791;
  --line: #dfe5e8;
  --soft: #f5f7f8;
  --paper: #fff;
  --warm: #f7f2e7;
  --shadow: 0 20px 50px rgba(19, 31, 41, .12);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.06; letter-spacing: 0; }
h1 { font-size: 58px; margin-bottom: 22px; font-weight: 850; }
h2 { font-size: 40px; margin-bottom: 16px; font-weight: 820; }
h3 { font-size: 22px; margin-bottom: 10px; font-weight: 800; }
p { margin-bottom: 0; }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.narrow { max-width: 850px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 99; padding: 10px 14px; background: var(--ink); color: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 40; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.06); transition: transform 220ms ease, box-shadow 220ms ease; }
.site-header.is-hidden { transform: translateY(-100%); }
.topbar { background: var(--ink); color: rgba(255,255,255,.82); font-size: 13px; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.topbar a { color: #fff; font-weight: 750; }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 176px; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 24px; color: var(--ink-2); font-weight: 760; font-size: 15px; }
.nav-item { position: relative; padding: 28px 0; }
.nav-panel {
  position: absolute;
  top: 100%;
  left: -18px;
  display: none;
  min-width: 310px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.nav-panel--small { min-width: 230px; }
.nav-panel a { display: block; padding: 10px 12px; border-radius: 6px; }
.nav-panel a:hover { background: var(--soft); color: var(--ink); }
.nav-panel__all { color: var(--red); font-weight: 850; }
.nav-item:hover .nav-panel, .nav-item:focus-within .nav-panel { display: block; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn--small { min-height: 42px; padding: 11px 16px; font-size: 14px; }
.btn--secondary { background: #fff; color: var(--red); }
.btn--secondary:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--secondary-light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); color: #fff; }
.btn--secondary-light:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn--light { background: #fff; border-color: #fff; color: var(--red-dark); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.82); color: #fff; }
.btn--ghost-light:hover { background: #fff; border-color: #fff; color: var(--ink); }
.text-link { color: var(--red); font-weight: 850; }
.eyebrow { display: block; margin-bottom: 12px; color: var(--red); font-size: 13px; font-weight: 900; text-transform: uppercase; }

.home-hero { position: relative; min-height: 720px; display: grid; align-items: end; background: var(--ink); overflow: hidden; }
.home-hero__media, .home-hero__shade { position: absolute; inset: 0; }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.home-hero__shade { background: linear-gradient(90deg, rgba(16,24,32,.94), rgba(16,24,32,.68) 42%, rgba(16,24,32,.12) 82%), linear-gradient(0deg, rgba(16,24,32,.72), rgba(16,24,32,0) 55%); }
.home-hero__content { position: relative; z-index: 2; padding: 110px 0 180px; }
.home-hero h1 { max-width: 880px; color: #fff; }
.home-hero p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,.86); font-size: 21px; }
.home-hero .eyebrow { color: #ffc2c6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.proof-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -110px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.proof-row div { min-height: 116px; padding: 24px; border-right: 1px solid var(--line); }
.proof-row div:last-child { border-right: 0; }
.proof-row strong { display: block; color: var(--red); font-size: 32px; line-height: 1; }
.proof-row span { display: block; margin-top: 10px; color: var(--ink-2); font-weight: 760; }

.page-hero {
  --hero-accent: var(--red);
  position: relative;
  display: grid;
  min-height: 570px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: rgba(255,255,255,.84);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16,24,32,.99) 0%, rgba(16,24,32,.94) 42%, rgba(16,24,32,.68) 64%, rgba(16,24,32,.2) 100%),
    linear-gradient(0deg, rgba(16,24,32,.78), rgba(16,24,32,0) 48%);
}
.page-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 84px;
  background: var(--paper);
  clip-path: polygon(0 68%, 34% 86%, 72% 58%, 100% 76%, 100% 100%, 0 100%);
}
.page-hero--accent-green { --hero-accent: #28705f; }
.page-hero--accent-amber { --hero-accent: #b15f00; }
.page-hero--accent-teal { --hero-accent: #087184; }
.page-hero--accent-slate { --hero-accent: #4b5965; }
.page-hero--accent-violet { --hero-accent: #6d3f83; }
.page-hero--accent-brown { --hero-accent: #8f4d2d; }
.page-hero--accent-blue { --hero-accent: #176b9a; }
.page-hero--accent-forest { --hero-accent: #2f5a3b; }
.page-hero__media {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: -3;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.02);
}
.page-hero--mountain-road .page-hero__media img { object-position: center 44%; }
.page-hero--mountain-lake-close .page-hero__media img,
.page-hero--mountain-lake .page-hero__media img { object-position: center 52%; }
.page-hero--hzmt-truck-yard-wide .page-hero__media img,
.page-hero--hzmt-truck-dock .page-hero__media img { object-position: center 55%; }
.page-hero--hazardous-drums-totes .page-hero__media img { object-position: center 50%; }
.page-hero--biomedical-waste-supplies .page-hero__media img { object-position: center 48%; }
.page-hero--hazmat-drum-handling .page-hero__media img { object-position: center 52%; }
.page-hero--field-drum-transfer .page-hero__media img { object-position: center 47%; }
.page-hero--hzmt-truck-loading-bay .page-hero__media img,
.page-hero--hzmt-truck-yard-wide-new .page-hero__media img { object-position: center 56%; }
.page-hero--industrial-mountain-new .page-hero__media img { object-position: center 48%; }
.page-hero--mountain-lake-wide .page-hero__media img,
.page-hero--mountain-lake-close-new .page-hero__media img { object-position: center 52%; }
.page-hero--mountain-road-new .page-hero__media img { object-position: center 44%; }
.page-hero__rail {
  position: absolute;
  z-index: 1;
  top: -12%;
  bottom: 11%;
  left: 56%;
  width: 8px;
  transform: skewX(-12deg);
  background: var(--hero-accent);
  box-shadow: 20px 0 0 rgba(255,255,255,.14);
}
.page-hero__gridline {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 100%);
}
.page-hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .38fr);
  min-height: 570px;
  align-items: center;
  gap: 48px;
  padding: 82px 0 120px;
}
.page-hero__copy {
  position: relative;
  max-width: 850px;
  padding-left: 28px;
}
.page-hero__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 6px;
  border-radius: 99px;
  background: var(--hero-accent);
}
.page-hero__copy h1 {
  max-width: 860px;
  color: #fff;
}
.page-hero__copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,.86);
  font-size: 19px;
}
.page-hero__copy .eyebrow {
  color: #ffc2c6;
}
.page-hero__note {
  align-self: end;
  justify-self: end;
  width: min(100%, 360px);
  margin-bottom: 28px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-top: 4px solid var(--hero-accent);
  border-radius: 8px;
  background: rgba(16,24,32,.68);
  color: rgba(255,255,255,.78);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
}
.page-hero__note span {
  display: block;
  color: #ffc2c6;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.page-hero__note strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}
.page-hero__note p {
  margin-top: 10px;
  font-size: 14px;
}

.section { padding: 88px 0; }
.section--light { background: var(--soft); }
.section-head { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-head--left { margin-left: auto; margin-right: auto; text-align: left; }
.band { background: var(--green); color: rgba(255,255,255,.82); }
.band h2, .band h3 { color: #fff; }
.split, .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: start; }
.split--reverse > :first-child { order: 2; }
.panel, .quote-card, .contact-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f9fbfb);
  box-shadow: 0 10px 28px rgba(19,31,41,.06);
}
.panel::before, .quote-card::before, .contact-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: var(--red);
}
.quote-card { position: sticky; top: 130px; }
.content-block p { font-size: 18px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.home-industries .card-grid { grid-template-columns: repeat(4, 1fr); }
.location-grid .card-grid { grid-template-columns: repeat(4, 1fr); }
.home-industries .card { min-height: 220px; }
.location-grid .card { min-height: 225px; padding: 22px; }
.location-grid .card h3 { font-size: 20px; }
.location-grid .card p { font-size: 14px; line-height: 1.45; }
.card {
  position: relative;
  display: flex;
  min-height: 235px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(19,31,41,.05);
  color: var(--text);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.card--link { cursor: pointer; }
.card--link:hover, .card--link:focus-visible {
  z-index: 2;
  transform: scale(1.025);
  border-color: rgba(204,16,25,.36);
  box-shadow: 0 18px 42px rgba(19,31,41,.14);
  color: var(--text);
}
.card--link:focus-visible {
  outline: 3px solid rgba(204,16,25,.25);
  outline-offset: 3px;
}
.card__kicker { display: block; margin-bottom: 14px; color: var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.card p { margin-bottom: 20px; }
.card__action { margin-top: auto; color: var(--ink); font-weight: 850; }
.card--link:hover .card__action, .card--link:focus-visible .card__action { color: var(--red); }
.related-services-panel h2 { font-size: 30px; }
.related-service-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.related-service {
  display: block;
  min-height: 0;
  padding: 16px 18px 16px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(19,31,41,.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.related-service:hover,
.related-service:focus-visible {
  transform: translateX(4px);
  border-color: rgba(204,16,25,.36);
  box-shadow: 0 14px 30px rgba(19,31,41,.1);
  color: var(--text);
}
.related-service:focus-visible {
  outline: 3px solid rgba(204,16,25,.25);
  outline-offset: 3px;
}
.related-service__kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.related-service strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.14;
}
.related-service > span:last-child {
  display: -webkit-box;
  margin-top: 6px;
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (prefers-reduced-motion: reduce) {
  .card, .related-service { transition: none; }
  .card--link:hover, .card--link:focus-visible, .related-service:hover, .related-service:focus-visible { transform: none; }
}
.check-list, .number-list { padding-left: 0; list-style: none; }
.check-list li, .number-list li { position: relative; margin: 12px 0; padding-left: 28px; color: var(--ink-2); }
.check-list li:before { content: ""; position: absolute; left: 0; top: 10px; width: 9px; height: 9px; border-radius: 50%; background: var(--red); }
.number-list { counter-reset: item; }
.number-list li:before { counter-increment: item; content: counter(item); position: absolute; left: 0; top: 0; color: var(--red); font-weight: 900; }
.signal-list, .tag-grid, .link-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.signal-list span, .tag-grid span { padding: 10px 12px; border: 1px solid var(--line); border-radius: 6px; background: var(--soft); color: var(--ink-2); font-weight: 760; }
.link-list a { padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; background: #fff; font-weight: 850; }
.image-stack { display: grid; gap: 16px; }
.image-stack img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 5 / 3; object-fit: cover; }
.image-stack img:last-child { aspect-ratio: 5 / 2; }
.image-frame {
  position: relative;
  align-self: stretch;
  min-height: 360px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.image-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 7px;
  border-radius: 5px 0 0 5px;
  background: var(--red);
}
.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process--large { grid-template-columns: repeat(3, 1fr); }
.process div { padding: 26px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); background: rgba(255,255,255,.08); }
.section--light .process div { border-color: var(--line); background: #fff; }
.process span { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 18px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 900; }
.section--light .process h3 { color: var(--ink); }
.section--light .process p { color: var(--text); }
.service-visual {
  --accent: var(--red);
  --accent-soft: #fff1f1;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #f6f8f7 100%);
}
.service-visual--hazardous-waste-disposal { --accent: #cc1019; --accent-soft: #fff1f1; }
.service-visual--regulated-non-regulated-industrial-waste { --accent: #28705f; --accent-soft: #e8f1ee; }
.service-visual--dangerous-goods-disposal { --accent: #b15f00; --accent-soft: #fff4e6; }
.service-visual--biomedical-waste-disposal { --accent: #087184; --accent-soft: #e7f5f7; }
.service-visual--secure-waste-destruction { --accent: #4b5965; --accent-soft: #edf1f3; }
.service-visual--lab-pack-field-chemist-services { --accent: #6d3f83; --accent-soft: #f4ecf7; }
.service-visual--tank-cleaning { --accent: #8f4d2d; --accent-soft: #f7eee9; }
.service-visual--vacuum-truck-services { --accent: #176b9a; --accent-soft: #e8f3f8; }
.service-visual--confined-space-services { --accent: #2f5a3b; --accent-soft: #eaf2ec; }
.service-visual__top {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}
.service-visual__top p:last-child {
  max-width: 710px;
  padding: 22px 24px;
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--ink-2);
  font-size: 18px;
}
.service-visual__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 20px;
  align-items: stretch;
}
.service-pathway,
.service-graph,
.service-route,
.service-decision {
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(19,31,41,.08);
}
.service-pathway {
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
}
.service-pathway ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-pathway li {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 104px;
  padding-bottom: 24px;
}
.service-pathway li:last-child { min-height: auto; padding-bottom: 0; }
.service-pathway li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
.service-pathway li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}
.service-pathway h3 { margin-bottom: 6px; }
.service-graph {
  padding: 30px;
  background: var(--ink);
  color: rgba(255,255,255,.78);
}
.service-graph h3 {
  color: #fff;
  margin-bottom: 24px;
}
.service-graph .eyebrow { color: #fff; opacity: .8; }
.service-bar { display: grid; gap: 9px; margin-top: 18px; }
.service-bar__label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.service-bar__label strong { color: #fff; }
.service-bar__track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
}
.service-bar__track span {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}
.service-decision-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.service-route,
.service-decision {
  border: 1px solid var(--line);
  background: #fff;
}
.service-route {
  padding: 26px;
  border-top: 5px solid var(--accent);
}
.service-route h3,
.service-decision h3 { font-size: 20px; }
.service-route__line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 18px;
}
.service-route__line span {
  position: relative;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 850;
  font-size: 14px;
}
.service-route__line span:not(:last-child)::after {
  content: "->";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 900;
}
.service-decision {
  padding: 24px;
  background: linear-gradient(180deg, #fff, var(--accent-soft));
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stats-grid div { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.stats-grid strong { display: block; color: var(--red); font-size: 30px; }
.callout { margin-top: 24px; padding: 18px; border-radius: var(--radius); background: var(--green-soft); color: var(--ink); font-weight: 850; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.faq-list summary { cursor: pointer; padding: 18px 20px; color: var(--ink); font-weight: 850; }
.faq-list p { padding: 0 20px 20px; }

.quote-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px; }
.quote-form label { display: grid; gap: 7px; color: var(--ink); font-weight: 760; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}
.quote-form textarea { resize: vertical; }
.span-2 { grid-column: 1 / -1; }
.form-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.turnstile-slot { min-height: 0; }
.turnstile-slot:empty { display: none; }
.form-note { color: var(--muted); font-size: 14px; }
.contact-panel p { margin-bottom: 18px; }
.contact-panel a { color: var(--red); font-weight: 850; }

.final-cta { padding: 68px 0; background: var(--red); color: rgba(255,255,255,.86); }
.final-cta h2, .final-cta .eyebrow { color: #fff; }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.final-cta h2 { max-width: 760px; margin-bottom: 0; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.site-footer { padding: 58px 0 28px; background: #151d24; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr 1.1fr; gap: 36px; }
.footer-grid img { width: 190px; height: auto; max-height: 40px; margin-bottom: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-grid h2 { color: #fff; font-size: 14px; text-transform: uppercase; margin-bottom: 14px; }
.footer-grid a { display: block; margin: 8px 0; color: rgba(255,255,255,.88); }
.footer-grid p a { display: inline; color: #fff; font-weight: 800; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; }
.sticky-call {
  position: fixed;
  display: none;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}
.sticky-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-call:hover { color: #fff; background: var(--red); }

@media (max-width: 1060px) {
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  .card-grid, .home-industries .card-grid, .location-grid .card-grid, .process, .process--large { grid-template-columns: repeat(2, 1fr); }
  .page-hero__grid, .split, .two-col { grid-template-columns: 1fr; }
  .quote-card { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { min-height: auto; }
  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(16,24,32,.96), rgba(16,24,32,.82) 58%, rgba(16,24,32,.34)),
      linear-gradient(0deg, rgba(16,24,32,.82), rgba(16,24,32,0) 58%);
  }
  .page-hero__media { inset: 0; clip-path: none; }
  .page-hero__rail { display: none; }
  .page-hero__gridline { width: 100%; opacity: .16; }
  .page-hero__grid { min-height: auto; gap: 28px; padding: 70px 0 112px; }
  .page-hero__copy { padding-left: 24px; }
  .page-hero__note { justify-self: start; width: min(100%, 430px); margin: 0; }
}

@media (max-width: 860px) {
  .topbar__inner { justify-content: center; flex-wrap: wrap; gap: 8px 14px; padding: 8px 0; }
  .nav { min-height: 72px; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-item { padding: 0; }
  .nav-menu > a, .nav-item > a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-panel { position: static; display: grid; min-width: 0; padding: 6px 0 12px; border: 0; box-shadow: none; }
  .home-hero { min-height: 640px; }
  .home-hero__content { padding: 80px 0 150px; }
  .home-hero__media img { object-position: 62% center; }
  .proof-row { grid-template-columns: 1fr 1fr; }
  .proof-row div { border-bottom: 1px solid var(--line); }
  .final-cta__inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .final-cta__actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  body { padding-bottom: 62px; }
  .container { width: min(100% - 32px, var(--container)); }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .brand img { width: 142px; }
  .topbar { font-size: 12px; }
  .topbar__inner { align-items: center; justify-content: flex-start; }
  .nav-menu { max-height: calc(100vh - 96px); overflow-y: auto; }
  .hero-actions, .final-cta__actions { width: 100%; flex-direction: column; }
  .btn { width: 100%; }
  .proof-row, .card-grid, .home-industries .card-grid, .location-grid .card-grid, .process, .process--large, .stats-grid, .footer-grid, .quote-form { grid-template-columns: 1fr; }
  .home-hero { min-height: 620px; }
  .home-hero__shade { background: linear-gradient(90deg, rgba(16,24,32,.96), rgba(16,24,32,.78) 58%, rgba(16,24,32,.36)), linear-gradient(0deg, rgba(16,24,32,.74), rgba(16,24,32,0) 58%); }
  .home-hero__content { padding: 64px 0 140px; }
  .home-hero p:not(.eyebrow), .page-hero__copy p:not(.eyebrow) { font-size: 17px; }
  .proof-row { margin-top: -84px; }
  .proof-row div { min-height: auto; padding: 20px; }
  .card, .panel, .quote-card, .contact-panel { padding: 22px; }
  .related-services-panel h2 { font-size: 26px; }
  .related-service { padding: 15px 16px; }
  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(16,24,32,.94), rgba(16,24,32,.74) 48%, rgba(16,24,32,.38)),
      linear-gradient(0deg, rgba(16,24,32,.7), rgba(16,24,32,0) 58%);
  }
  .page-hero::after { height: 66px; clip-path: polygon(0 80%, 38% 90%, 100% 64%, 100% 100%, 0 100%); }
  .page-hero__media img { object-position: 62% center; }
  .page-hero__grid { gap: 20px; padding: 50px 0 88px; }
  .page-hero__copy { padding-left: 18px; }
  .page-hero__copy::before { width: 4px; }
  .page-hero__note { width: 100%; padding: 18px; }
  .page-hero__note strong { font-size: 17px; }
  .image-stack img { aspect-ratio: 4 / 3; }
  .section { padding: 68px 0; }
  .sticky-call { display: block; left: 16px; right: 16px; text-align: center; }
}

@media (max-width: 860px) and (orientation: landscape) {
  body { padding-bottom: 0; }
  .home-hero { min-height: 520px; }
  .home-hero__content { padding: 46px 0 108px; }
  .proof-row { margin-top: -74px; }
  .sticky-call { display: none; }
}
