*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --void:    #050507;
  --ink:     #0c0c10;
  --panel:   #111116;
  --surface: #18181f;
  --border:  rgba(255,255,255,.07);
  --cyan:    #00e5c8;
  --white:   #ffffff;
  --off:     #e8e8ee;
  --muted:   #9ca0b0;
}

html { scroll-behavior: smooth; }

/* Body copy in main content bands only; nav/hero/CTA/footer stay on body (Inter). Eyebrows, section titles, and labels keep explicit DM Mono / Inter in their own rules. */
.ab2-content,
.service-continue {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

body {
  background: var(--void);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 72px;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s;
}
nav.stuck {
  background: rgba(5,5,7,.92);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}
.nav-wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-wordmark .nm-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.nav-center { display: flex; gap: 40px; list-style: none; }
.nav-center a {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); text-decoration: none; transition: color .2s;
}
.nav-center a:hover { color: var(--cyan); }
.nav-end { display: flex; align-items: center; gap: 20px; }
.nav-tel {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: var(--white); text-decoration: none; transition: color .2s;
}
.nav-tel:hover { color: var(--cyan); }
.nav-btn {
  border: 1px solid var(--cyan); color: var(--cyan);
  padding: 9px 22px; font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: background .2s, color .2s;
  position: relative; overflow: hidden;
}
.nav-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease; z-index: -1;
}
.nav-btn:hover { color: var(--void); }
.nav-btn:hover::before { transform: scaleX(1); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--white);
  flex-shrink: 0;
}
.nav-toggle:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: currentColor; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-backdrop { display: none; }

/* Split hero (matches about.html) */
.ab2-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  max-height: 960px;
  background: var(--void);
  border-bottom: 1px solid var(--border);
}
.ab2-hero__text {
  position: relative;
  padding: 120px 48px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.ab2-hero__text::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 20% 30%, rgba(0,229,200,.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0,229,200,.04) 0%, transparent 50%),
    var(--void);
  pointer-events: none;
}
.ab2-hero__text::after {
  content: '';
  position: absolute; inset: 0;
  opacity: .035;
  background-image:
    linear-gradient(var(--cyan) 1px, transparent 1px),
    linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.ab2-hero__inner { position: relative; z-index: 2; max-width: 520px; }
.ab2-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.ab2-eyebrow::before { content: '//'; opacity: .5; }
.ab2-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 800; line-height: .98; letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 20px;
}
.ab2-hero__meta {
  font-family: 'DM Mono', monospace;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 229, 200, 0.22);
  max-width: 380px;
}
.ab2-hero__inner .btn-cyan {
  margin-top: 28px;
  display: inline-block;
}
.ab2-hero__visual {
  position: relative;
  min-height: 320px;
  background: var(--ink);
}
.ab2-hero__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(55%) brightness(.68);
}
.ab2-hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--void) 0%, rgba(5,5,7,.2) 28%, rgba(5,5,7,.1) 100%),
    linear-gradient(to top, rgba(5,5,7,.75) 0%, transparent 45%);
  pointer-events: none;
}
.ab2-hero__edge {
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 3px; background: linear-gradient(180deg, var(--cyan), rgba(0,229,200,.2));
  z-index: 2;
  pointer-events: none;
}

.ab2-content {
  background: #1d2928;
  border-top: 1px solid #11403A;
  border-bottom: 1px solid #11403A;
  padding: 60px 220px;
}
/* Full-width sections (align with homepage); inner copy uses horizontal padding */
.ab2-content__inner {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.ab2-content__inner > h2 {
  color: #00e5c8;
  padding-bottom: 15px;
  font-family: 'Inter', sans-serif;
}
.ab2-content p {
  font-size: 18px; color: rgba(255, 255, 255, 0.9);
  line-height: 1.2; font-weight: 400; margin-bottom: 22px;
}
.ab2-content p:last-child { margin-bottom: 0; }

/* Remainder of service page (more copy, services track, cert) — same ink field as .ab2-content */
.service-continue {
  background: var(--ink);
  width: 100%;
  box-sizing: border-box;
}

/* ─── SERVICES — Horizontal Cinematic Panels (from homepage) ─── */
.services-outer {
  background: var(--void);
  padding: 80px 0 0;
  margin: 0;
  overflow-x: visible;
  overflow-y: hidden;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.services-header {
  padding: 0 56px 64px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.services-header-left {}
.services-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 16px; display: flex; align-items: center; gap: 14px;
}
.services-eyebrow::before { content: '//'; opacity: .5; }
.services-header h2 {
  font-family: 'Inter', sans-serif; font-size: clamp(27px, 3.0vw, 45px);
  font-weight: 800; letter-spacing: -.03em; color: var(--white); line-height: .95;
}
.services-header-right {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(0,229,200,.3); padding-bottom: 3px;
}

.services-track-wrap {
  overflow: visible;
  width: 100%;
  max-width: 100%;
}

.services-track {
  display: flex; gap: 0;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: 0 0 80px;
  box-sizing: border-box;
}

.svc-panel {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  height: 520px;
  position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: flex .4s cubic-bezier(.16,1,.3,1);
}
a.svc-panel {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
a.svc-panel:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.svc-panel:last-child { border-right: none; }
.svc-panel:hover {
  flex: 1.1 1 0;
  z-index: 1;
}

.svc-panel-char {
  position: absolute; top: -20px; right: -10px;
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 320px; line-height: 1;
  color: rgba(255,255,255,.03); letter-spacing: -.05em;
  pointer-events: none; user-select: none;
  transition: color .4s, transform .4s;
}
.svc-panel:hover .svc-panel-char {
  color: rgba(0,229,200,.06); transform: translateY(-10px);
}

.svc-panel-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  filter: brightness(0.58) saturate(0.95);
  transition: filter .45s ease, opacity .5s, transform .45s ease;
}
.svc-panel:first-child .svc-panel-bg {
  transform: scale(1.12);
  transform-origin: center center;
}
.svc-panel:hover .svc-panel-bg {
  filter: brightness(0.38) saturate(0.72);
}

.svc-panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,229,200,.22) 0%, rgba(0,229,200,.06) 35%, transparent 65%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.svc-panel:hover .svc-panel-overlay { opacity: 1; }

.svc-panel-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 22px;
  min-width: 0;
  box-sizing: border-box;
}

.svc-panel-num {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  transition: color .3s;
}
.svc-panel:hover .svc-panel-num { color: var(--cyan); }

.svc-panel-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 1.35vw, 26px);
  font-weight: 800;
  color: var(--white); line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: 0;
  transition: color .3s;
}
.svc-panel:hover .svc-panel-name { color: var(--white); }

.svc-panel-detail {
  overflow: hidden; max-height: 0;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), opacity .3s;
  opacity: 0;
}
.svc-panel:hover .svc-panel-detail {
  max-height: 240px; opacity: 1;
}

.svc-panel-desc {
  font-size: 18px; color: rgba(255, 255, 255, 0.9);
  line-height: 1.75; font-weight: 400; margin-top: 16px;
  overflow-wrap: break-word;
}
.svc-panel-scope {
  margin-top: 16px; display: flex; flex-direction: column; gap: 6px;
}
.svc-panel-scope span {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan); display: flex; align-items: center; gap: 8px;
}
.svc-panel-scope span::before { content: '↳'; opacity: .6; }
.svc-panel-arrow {
  position: absolute; top: 24px; right: 22px;
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255, 255, 255, 0.9);
  transition: border-color .3s, color .3s, background .3s;
}
.svc-panel:hover .svc-panel-arrow {
  border-color: var(--cyan); color: var(--cyan);
  background: rgba(0,229,200,.08);
}

/* Current service page: permanent “hover” look, no link */
.svc-panel--current {
  flex: 1.1 1 0;
  z-index: 1;
  cursor: default;
}
.svc-panel--current .svc-panel-char {
  color: rgba(0,229,200,.06);
  transform: translateY(-10px);
}
.svc-panel--current .svc-panel-bg {
  filter: brightness(0.38) saturate(0.72);
}
.svc-panel--current .svc-panel-overlay { opacity: 1; }
.svc-panel--current .svc-panel-num { color: var(--cyan); }
.svc-panel--current .svc-panel-detail {
  max-height: 240px;
  opacity: 1;
}

@media (max-width: 1200px) {
  .services-track {
    flex-direction: column;
    padding: 0 0 48px;
  }
  .svc-panel {
    flex: none;
    width: 100%;
    min-height: 360px;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .svc-panel:hover { flex: none; }
  .svc-panel-char { font-size: 140px; top: 10px; right: 0; }
  .svc-panel-detail {
    max-height: 280px;
    opacity: 1;
  }
  .svc-panel-bg { filter: brightness(0.45) saturate(0.85); }
  .svc-panel-overlay { opacity: 0.35; }
  .svc-panel--current { flex: none; }
  .svc-panel--current .svc-panel-bg { filter: brightness(0.38) saturate(0.72); }
  .svc-panel--current .svc-panel-overlay { opacity: 1; }
}

.cert-block {
  width: 100%;
  max-width: 100%;
  margin: 0 0 80px;
  padding: 48px 56px 48px;
  border-top: 1px solid var(--border);
  box-sizing: border-box;
  text-align: center;
}
.cert-block h3 {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.about-certs {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch;
  justify-content: center;
  list-style: none; margin: 0; padding: 0;
}
.about-cert--logo {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  width: 160px; height: 160px;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1px solid rgba(0,229,200,.2);
  background: rgba(255,255,255,.02);
}
.about-cert--logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  object-position: center;
}

.svc-asbestos-more {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 66px 56px 44px;
  border-top: 1px solid var(--border);
  box-sizing: border-box;
}
.svc-asbestos-more__inner {
  display: grid;
  grid-template-columns: 33vw minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.svc-asbestos-more__media {
  position: relative;
  min-width: 0;
}
.svc-asbestos-more__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.svc-asbestos-more__copy {
  min-width: 0;
  text-align: left;
}
.svc-asbestos-more__h {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px; margin-top: 28px;
}
.svc-asbestos-more__h:first-child { margin-top: 0; }
.svc-asbestos-more__copy p {
  font-size: 18px; color: rgba(255, 255, 255, 0.9); line-height: 1.2; font-weight: 400;
  margin-bottom: 18px;
}
.svc-asbestos-more__list {
  list-style: none; margin: 0 0 8px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-asbestos-more__list li {
  font-size: 18px; color: rgba(255, 255, 255, 0.9); line-height: 1.65; font-weight: 400;
  padding-left: 22px; position: relative;
  text-align: left;
}
.svc-asbestos-more__list li::before {
  content: '↳'; position: absolute; left: 0; top: 0;
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--cyan); opacity: .7;
}
.svc-asbestos-more__list strong { color: rgba(255, 255, 255, 0.9); font-weight: 600; }
.svc-asbestos-more__copy p strong { color: rgba(255, 255, 255, 0.9); }

.cta {
  background: var(--void); padding: 40px 56px;
  position: relative; overflow: hidden; text-align: center;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0,229,200,.06) 0%, transparent 70%);
}
.cta-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 14px;
}
.cta-eyebrow::before { content: '//'; opacity: .5; }
.cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5.2vw, 81px);
  font-weight: 800; letter-spacing: -.04em; color: var(--white); line-height: .88;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.cta h2 em {
  font-style: normal;
  font-weight: 800;
  color: var(--cyan);
  -webkit-text-stroke: 0;
}
.cta p { font-size: 16px; color: rgba(255, 255, 255, 0.9); max-width: 500px; margin: 0 auto 52px; font-weight: 400; line-height: 1.75; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 20px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-contact { margin-top: 64px; display: flex; justify-content: center; gap: 64px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-contact a {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: color .2s;
}
.cta-contact a:hover { color: var(--cyan); }
.cta-contact strong { display: block; font-size: 18px; color: rgba(255, 255, 255, 0.9); font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 2px; }
.btn-cyan {
  background: var(--cyan); color: var(--void);
  padding: 16px 40px; font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  box-shadow: 0 0 40px rgba(0,229,200,.3);
  transition: box-shadow .3s, transform .2s;
}
.btn-cyan:hover { box-shadow: 0 0 60px rgba(0,229,200,.5); transform: translateY(-2px); }
.btn-ghost-cyan {
  color: var(--cyan); font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(0,229,200,.3);
  padding-bottom: 2px; transition: border-color .2s;
}
.btn-ghost-cyan:hover { border-color: var(--cyan); }

footer { background: var(--panel); border-top: 1px solid var(--border); padding: 80px 56px 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-brand-word {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 800;
  letter-spacing: .04em; color: var(--white); text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand-word .fd { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
footer .f-tag { font-size: 13px; color: rgba(255, 255, 255, 0.9); line-height: 1.7; max-width: 220px; font-weight: 400; }
.f-wbe { margin-top: 20px; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); border: 1px solid rgba(0,229,200,.2); display: inline-block; padding: 6px 12px; text-decoration: none; transition: border-color .2s, background .2s; }
.f-wbe:hover { border-color: rgba(0,229,200,.45); background: rgba(0,229,200,.08); }
footer h5 { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9); margin-bottom: 20px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
footer ul a { font-size: 13px; color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: color .2s; }
footer ul a:hover { color: var(--cyan); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255, 255, 255, 0.9); letter-spacing: .08em; }

@media (max-width: 1024px) {
  .ab2-hero { grid-template-columns: 1fr; max-height: none; min-height: 60vh; }
  .ab2-hero__text { padding: 120px 40px 48px; order: 1; }
  .ab2-hero__visual { order: 0; min-height: 38vh; max-height: 420px; }
  .ab2-hero__edge { top: 10%; bottom: 10%; }
  .svc-asbestos-more { padding: 28px 40px 40px; }
  .svc-asbestos-more__inner { grid-template-columns: 1fr; gap: 32px; }
  .services-header { padding: 0 40px 48px; }
  .services-outer { padding-top: 64px; }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px; min-height: 64px; height: auto;
    padding-top: 10px; padding-bottom: 10px; flex-wrap: nowrap; align-items: center;
  }
  .nav-wordmark { order: 1; z-index: 202; position: relative; font-size: 12px; gap: 8px; }
  .nav-end { order: 2; margin-left: auto; z-index: 202; position: relative; gap: 10px; }
  .nav-tel { font-size: 11px; }
  .nav-btn { padding: 8px 14px; font-size: 10px; }
  .nav-toggle { display: flex; order: 3; margin-left: 6px; z-index: 202; position: relative; }
  .nav-center {
    position: fixed; left: 0; right: 0; top: 72px; bottom: 0; z-index: 199;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    margin: 0; padding: 8px 0 32px; list-style: none;
    background: rgba(17, 17, 22, 0.98); border-top: 1px solid var(--border);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
  }
  nav.nav-open .nav-center { transform: translateX(0); visibility: visible; }
  .nav-center li { border-bottom: 1px solid var(--border); }
  .nav-center li:last-child { border-bottom: none; }
  .nav-center a { display: block; padding: 16px 24px; font-size: 12px; letter-spacing: 0.12em; }
  nav.nav-open .nav-backdrop { display: block; position: fixed; inset: 0; z-index: 198; background: rgba(0,0,0,.55); cursor: pointer; }
  nav.nav-open > .nav-wordmark, nav.nav-open > .nav-end, nav.nav-open > .nav-toggle { z-index: 203; }
  nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.nav-menu-open { overflow: hidden; touch-action: none; }
  .ab2-content { padding: 64px 24px 64px; }
  .svc-asbestos-more { padding: 28px 24px 36px; }
  .svc-asbestos-more__inner { gap: 28px; }
  .services-header {
    padding: 0 24px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .services-outer { padding-top: 56px; }
  .cert-block { margin: 0 0 80px; padding: 48px 24px 48px; }
  .cta { padding: 40px 24px; }
  .cta-contact { flex-direction: column; gap: 28px; margin-top: 48px; }
  footer { padding: 56px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .nav-wordmark { font-size: 11px; }
  .nav-tel { font-size: 10px; }
  .nav-center { top: 68px; }
  .ab2-hero__text { padding: 100px 16px 40px; }
  .ab2-content { padding: 56px 16px; }
  .svc-asbestos-more { padding-left: 16px; padding-right: 16px; }
  .services-header { padding: 0 16px 32px; }
  .services-outer { padding-top: 40px; }
  .cert-block { margin: 0 0 80px; padding: 40px 16px 48px; }
  .cta { padding: 40px 16px; }
  footer { padding: 44px 16px 0; }
}
