/* ===================== HEADER & NAV ===================== */
.site-header{
  background: var(--black);
  padding: 0 28px;
  display: flex;
  align-items: center;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--red);
  gap: 0;
  /* overflow must be visible so the dropdown can escape */
  overflow: visible;
}

/* Logo — never wraps, never shrinks */
.nav-logo{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-logo span{ color: var(--red); }

/* Nav link list */
.nav-links{
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-links li{ list-style: none; }
.nav-links a{
  display: block;
  padding: 0 14px;
  height: 60px;
  line-height: 60px;
  color: #aaa;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active{ color: var(--white); }
#services-trigger{ cursor: pointer; }
#services-trigger:hover{ color: var(--white); }

/* CTA button */
.nav-cta{
  background: var(--red);
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 700;
  padding: 10px 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1.3;
}
.nav-cta:hover{ background: var(--red-dark); }

/* Mobile hamburger */
.nav-toggle{
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  flex-shrink: 0;
  margin-left: 8px;
  line-height: 1;
}

/* ── SERVICES MEGA DROPDOWN ─────────────────────────────────
   Lives OUTSIDE the <ul> as a direct child of <header>.
   Hidden by default via display:none — JS toggles .sd-open.
   ─────────────────────────────────────────────────────────── */
.sd{
  display: none;                  /* hidden by default — JS controls this */
  position: fixed;
  top: 62px;                      /* just below the sticky header */
  left: 0;
  right: 0;
  background: #111111;
  border-top: 2px solid var(--red);
  border-bottom: 1px solid #222;
  z-index: 999;
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}
.sd.sd-open{ display: block; }   /* JS adds this class */

.sd-inner{
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 8px 0;
}
.sd-col{
  padding: 20px 28px;
  border-right: 1px solid #1e1e1e;
}
.sd-col:last-child{ border-right: none; }
.sd-label{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #222;
}
.sd a{
  display: block;
  padding: 7px 0;
  font-size: 13px;
  color: #bbb;
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid #1a1a1a;
  transition: color 0.1s;
}
.sd a:last-child{ border-bottom: none; }
.sd a:hover{ color: var(--white); padding-left: 4px; }

/* ── MOBILE NAV ──────────────────────────────────────────── */
@media (max-width: 900px){
  .nav-links{ display: none; }
  .nav-toggle{ display: block; }

  /* Mobile: nav links panel drops down */
  .nav-links.mob-open{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--black);
    border-top: 1px solid var(--border);
    z-index: 998;
    padding: 0;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
  }
  .nav-links.mob-open li{ border-bottom: 1px solid var(--border); }
  .nav-links.mob-open a{
    height: auto;
    line-height: 1;
    padding: 16px 24px;
  }

  /* Mobile: services dropdown becomes inline block */
  .sd.sd-open{
    position: fixed;
    top: 62px;
  }
  .sd-inner{ grid-template-columns: 1fr; padding: 0; }
  .sd-col{ padding: 16px 24px; border-right: none; }
}

/* Breadcrumb uses header-aware top */
/* ===========================================================
   RED SYSTEMS — Global Stylesheet
   =========================================================== */

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

:root{
  --red: #C8201A;
  --red-dark: #9B1713;
  --black: #111111;        /* header/hero stays dark */
  --charcoal: #1E1E1E;     /* slightly lighter dark sections */
  --dark: #2A2A2A;
  --mid: #888888;
  --light: #F6F6F4;        /* section backgrounds - off white */
  --white: #FFFFFF;
  --border: #333333;
  --border-l: #E0E0E0;
  --section-bg: #F9F9F8;   /* very light warm grey for alternating sections */
  --text-dark: #1A1A1A;    /* body text on light backgrounds */
  --text-mid: #4A4A4A;     /* secondary text */
  --text-light: #6A6A6A;   /* tertiary text */
}

body{
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
}

h1,h2,h3,h4,h5{
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb{
  background: var(--charcoal);
  padding: 10px 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span{ font-size: 12px; color: #666; text-decoration: none; }
.breadcrumb a:hover{ color: #aaa; }
.breadcrumb .sep{ color: #444; }
.breadcrumb .current{ color: #aaa; }

/* ===================== HERO (homepage) ===================== */
.hero{
  background: var(--black);
  padding: 80px 32px;
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:'';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px);
  pointer-events: none;
}
.hero::after{ content:''; position: absolute; right: 0; top: 0; bottom: 0; width: 4px; background: var(--red); }
.hero-inner{ max-width: 720px; position: relative; z-index: 1; }
.hero-eyebrow{
  display: inline-block; background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; margin-bottom: 20px;
}
.hero h1{ font-size: 56px; font-weight: 800; color: var(--white); text-transform: uppercase; line-height: 1.0; margin-bottom: 20px; }
.hero h1 span{ color: var(--red); }
.hero-sub{ font-size: 17px; color: #bbb; line-height: 1.6; margin-bottom: 12px; max-width: 600px; }
.hero-support{ font-size: 13px; color: #666; margin-bottom: 32px; line-height: 1.5; }
.hero-btns{ display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero split layout with image */
.hero-split{
  min-height: 560px;
  padding: 0;
  align-items: stretch;
  display: flex;
}
.hero-split .hero-inner{
  padding: 72px 48px 72px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  z-index: 1;
}
.hero-image-wrap{
  width: 42%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap picture{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0.95;
  padding: 24px;
}
.hero-contact-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-contact-item{
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  font-weight: 500;
}
.hero-contact-item svg{ color: #C8201A; flex-shrink: 0; }
a.hero-contact-item:hover{ color: #ccc; }

@media (max-width: 900px){
  .hero-split{ flex-direction: column; }
  .hero-image-wrap{ width: 100%; height: 260px; }
  .hero-split .hero-inner{ padding: 48px 20px 32px; }
  .hero-contact-bar{ gap: 12px; }
  .hero-contact-item{ font-size: 12px; }
}

@media (max-width: 700px){
  .hero h1{ font-size: 38px; }
  .hero{ padding: 56px 20px; }
  .hero-image-wrap{ height: 200px; }
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero{
  background: var(--black);
  padding: 56px 32px;
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content:'';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.025) 40px);
}
.page-hero::after{ content:''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red); }
.page-hero-inner{ max-width: 760px; position: relative; z-index: 1; padding-left: 20px; }
.page-eyebrow{
  display: inline-block; background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; margin-bottom: 16px;
}
.page-hero h1{ font-size: 46px; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 16px; }
.page-hero-sub{ font-size: 16px; color: #bbb; line-height: 1.65; max-width: 620px; margin-bottom: 24px; }

@media (max-width: 700px){
  .page-hero h1{ font-size: 30px; }
  .page-hero-inner{ padding-left: 12px; }
}

/* ===================== BUTTONS ===================== */
.btn-primary{
  background: var(--red); color: var(--white);
  font-size: 13px; font-weight: 600; padding: 12px 28px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover{ background: var(--red-dark); }

.btn-outline{
  background: transparent; color: var(--white);
  font-size: 13px; font-weight: 600; padding: 12px 28px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid #555; cursor: pointer; font-family: 'Inter', sans-serif;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover{ border-color: var(--white); }
.btn-outline-dark{ background: transparent; color: var(--white); font-size: 13px; font-weight: 600; padding: 12px 28px; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid #555; cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none; display: inline-block; }
.btn-outline-light{ background: transparent; color: #ccc; font-size: 13px; font-weight: 600; padding: 12px 28px; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid #555; cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none; display: inline-block; }

.btn-white{
  background: var(--white); color: var(--red);
  font-size: 13px; font-weight: 700; padding: 14px 32px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  white-space: nowrap; text-decoration: none; display: inline-block;
}
.btn-white:hover{ background: var(--light); }

.btn-submit{
  background: var(--red); color: var(--white);
  font-size: 13px; font-weight: 700; padding: 14px 36px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  width: 100%; margin-top: 4px;
}
.btn-submit:hover{ background: var(--red-dark); }

/* ===================== TRUST BAR ===================== */
.trust-bar{ background: var(--charcoal); padding: 16px 32px; border-bottom: 1px solid var(--border); }
.trust-inner{ display: flex; gap: 0; flex-wrap: wrap; align-items: center; }
.trust-item{
  font-size: 12px; font-weight: 500; color: #999; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 24px 6px 0; margin-right: 24px; border-right: 1px solid var(--border); white-space: nowrap;
}
.trust-item:last-child{ border-right: none; }

/* ===================== GENERIC SECTIONS ===================== */
section, .section-wrap{ padding: 64px 32px; background: var(--white); }
.section-wrap.light, section.light-section{ background: var(--section-bg); }
.section-wrap.dark, section.dark-section{ background: var(--charcoal); }
section.dark-section .section-title{ color: var(--white); }
section.dark-section .section-sub{ color: #999; }

.section-label{
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.section-title{ font-size: 38px; font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 12px; line-height: 1.1; }
.section-title.white{ color: var(--white); }
.section-sub{ font-size: 16px; color: #555; line-height: 1.65; margin-bottom: 40px; max-width: 640px; }
.content-h2{ font-size: 30px; font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 16px; }
.content-p{ font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.content-p.light-text{ color: #aaa; }
.divider{ height: 1px; background: var(--border-l); margin: 36px 0; }

@media (max-width: 700px){
  .section-title{ font-size: 28px; }
  section, .section-wrap{ padding: 40px 20px; }
}

/* ===================== SERVICE CARDS (homepage) ===================== */
.services-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: #ddd; }
.service-card{ background: var(--white); padding: 28px 24px 24px 28px; border-left: 4px solid var(--red); position: relative; }
.service-card h3{ font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
.service-card p{ font-size: 14px; color: #555; line-height: 1.6; }
.service-card .card-link{ display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--red); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; }
.service-card .card-link::after{ content: ' \2192'; }
.service-icon{ width: 36px; height: 36px; background: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon svg{ fill: none; stroke: var(--white); stroke-width: 2; }

/* ===================== EMERGENCY BAND ===================== */
.emergency{ background: var(--red); padding: 56px 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.emergency h2{ font-size: 36px; font-weight: 800; text-transform: uppercase; color: var(--white); max-width: 500px; line-height: 1.1; }
.emergency p{ color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.6; max-width: 480px; margin-top: 12px; }
.emergency-content{ flex: 1; min-width: 280px; }
.emergency-cta{ flex-shrink: 0; }

/* ===================== PRODUCTS / TAGS ===================== */
.products-grid{ display: flex; flex-wrap: wrap; gap: 8px; }
.product-tag{ background: var(--white); border: 1px solid #ddd; padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--black); cursor: pointer; }
.product-tag:hover{ border-color: var(--red); color: var(--red); }

/* ===================== INDUSTRIES GRID ===================== */
.industries-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: #ddd; }
.industry-item{ background: var(--white); padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.industry-dot{ width: 8px; height: 8px; background: var(--red); flex-shrink: 0; }
.industry-item span{ font-size: 14px; font-weight: 500; color: var(--black); }

/* ===================== WHY GRID ===================== */
.why-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.why-copy{ color: #aaa; font-size: 15px; line-height: 1.7; }
.why-points, .why-list{ list-style: none; display: flex; flex-direction: column; gap: 0; }
.why-point, .why-item{ display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-l); }
section.dark-section .why-point, section.dark-section .why-item{ border-bottom: 1px solid var(--border); }
.why-point:first-child, .why-item:first-child{ border-top: 1px solid var(--border-l); }
section.dark-section .why-point:first-child, section.dark-section .why-item:first-child{ border-top: 1px solid var(--border); }
.why-check{ width: 20px; height: 20px; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-check::after{ content: '\2713'; color: white; font-size: 11px; font-weight: 700; }
.why-point span, .why-item span{ font-size: 14px; color: #ccc; line-height: 1.5; }

@media (max-width: 800px){
  .why-grid, .two-col{ grid-template-columns: 1fr; gap: 24px; }
}

/* ===================== SERVICE AREA TAGS ===================== */
.area-text{ font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 24px; max-width: 680px; }
.area-tags, .nearby-grid{ display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.area-tag, .nearby-tag{ background: var(--light); border: none; padding: 7px 14px; font-size: 13px; font-weight: 500; color: var(--black); text-decoration: none; display: inline-block; }
.nearby-tag{ background: var(--white); border: 1px solid var(--border-l); }
.nearby-tag:hover{ border-color: var(--red); color: var(--red); }

/* ===================== CONTACT / FORM ===================== */
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3{ font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; color: var(--white); }
.contact-info p{ font-size: 14px; color: #aaa; line-height: 1.65; margin-bottom: 24px; }
.contact-detail{ display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: #ccc; }
.contact-detail-label{ color: #666; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; width: 70px; flex-shrink: 0; }

.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group{ display: flex; flex-direction: column; gap: 4px; }
.form-group.full{ grid-column: 1 / -1; }
label{ font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #888; }
input, select, textarea{
  background: #2A2A2A; border: 1px solid var(--border); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 14px; padding: 10px 12px; width: 100%;
  outline: none; border-radius: 0; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus{ border-color: var(--red); }
select option{ background: var(--charcoal); }
textarea{ resize: vertical; min-height: 90px; }
.upload-zone{ background: #2A2A2A; border: 1px dashed #444; padding: 20px; text-align: center; cursor: pointer; }
.upload-zone:hover{ border-color: var(--red); }
.upload-zone span, .upload-zone p{ font-size: 13px; color: #666; }
.form-note{ font-size: 11px; color: #555; line-height: 1.5; margin-top: 6px; }
.form-privacy{ font-size: 11px; color: #444; text-align: center; margin-top: 10px; }

@media (max-width: 800px){
  .contact-grid, .form-grid, .page-layout{ grid-template-columns: 1fr !important; }
}

/* ===================== FOOTER ===================== */
footer{ background: var(--black); padding: 48px 32px 24px; border-top: 2px solid var(--red); }
.footer-grid{ display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand{ font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: 0.08em; margin-bottom: 12px; text-decoration: none; display: inline-block; }
.footer-brand span{ color: var(--red); }
.footer-desc{ font-size: 13px; color: #666; line-height: 1.65; }
.footer-col h4{ font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 14px; }
.footer-links{ list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a{ font-size: 13px; color: #666; text-decoration: none; }
.footer-links a:hover{ color: #ccc; }
.footer-bottom{ border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy{ font-size: 12px; color: #444; }

/* Simple one-line footer (inner pages) */
footer.footer-simple{
  padding: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-links-row{ display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links-row a{ font-size: 12px; color: #555; text-decoration: none; }
.footer-links-row a:hover{ color: #aaa; }

@media (max-width: 800px){
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ===================== TWO-COL LAYOUTS (about, mechanical, etc) ===================== */
.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.two-col-3{ display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border-l); }
@media (max-width: 800px){ .two-col-3{ grid-template-columns: 1fr; } }

/* ===================== PAGE LAYOUT (service + sidebar pages) ===================== */
.page-layout{ display: grid; grid-template-columns: 1fr 300px; gap: 0; align-items: start; }
.page-main{ padding: 56px 48px 56px 32px; }
.page-sidebar{ padding: 40px 32px 40px 0; position: sticky; top: 60px; }

@media (max-width: 900px){
  .page-main{ padding: 40px 20px; }
  .page-sidebar{ padding: 0 20px 40px; position: static; }
}

/* Symptoms / what-we-do / equipment grids */
.symptoms-grid, .symptom-grid, .check-2col{ display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-l); margin: 24px 0; }
.symptom-grid{ grid-template-columns: 1fr 1fr 1fr; }
.symptom-item, .check-item{ background: var(--section-bg); padding: 14px 16px; display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid var(--border-l); }
.check-item{ background: var(--light); }
.symptom-dot{ width: 6px; height: 6px; background: var(--red); flex-shrink: 0; margin-top: 6px; }
.symptom-item span, .check-item span{ font-size: 14px; color: #333; line-height: 1.4; }
.check-mark{ width: 16px; height: 16px; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-mark::after{ content: '\2713'; color: white; font-size: 9px; font-weight: 700; }

.what-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-l); margin: 24px 0; }
.what-item{ background: var(--light); padding: 18px 20px; border-left: 3px solid var(--red); }
.what-item h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.what-item p{ font-size: 13px; color: #555; line-height: 1.5; }

.equip-list, .equip-grid{ display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.equip-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.equip-tag, .equip-item{ background: var(--charcoal); color: #ccc; padding: 7px 14px; font-size: 13px; font-weight: 500; }
.equip-item span{ font-size: 13px; color: #ccc; }

@media (max-width: 700px){
  .symptoms-grid, .symptom-grid, .check-2col, .what-grid{ grid-template-columns: 1fr; }
}

/* Process steps */
.process-steps{ margin: 24px 0; }
.process-step{ display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border-l); }
.process-step:first-child{ border-top: 1px solid var(--border-l); }
.step-num{ font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--red); flex-shrink: 0; width: 32px; line-height: 1; }
.step-content h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.step-content p{ font-size: 14px; color: #555; line-height: 1.55; }

/* FAQ */
.faq-list{ margin: 24px 0; }
.faq-item{ border-bottom: 1px solid var(--border-l); }
.faq-q{ padding: 18px 0 12px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q::after{ content: '+'; font-size: 20px; color: var(--red); flex-shrink: 0; font-family: 'Inter', sans-serif; font-weight: 400; }
.faq-q.open::after{ content: '\2212'; }
.faq-a{ padding-bottom: 18px; font-size: 14px; color: #555; line-height: 1.65; display: none; }
.faq-a.open{ display: block; }

/* CTA band (inner pages) */
.cta-band{ background: var(--charcoal); border-left: 4px solid var(--red); padding: 32px; margin: 40px 0 0; }
.cta-band h3{ font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.cta-band p{ font-size: 14px; color: #aaa; line-height: 1.6; margin-bottom: 20px; }
.cta-band-btns{ display: flex; gap: 10px; flex-wrap: wrap; }
.cta-band.cta-red{ background: var(--red); padding: 56px 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; border-left: none; margin: 0; }
.cta-band.cta-red h2{ font-size: 34px; font-weight: 800; text-transform: uppercase; color: var(--white); max-width: 480px; line-height: 1.1; }
.cta-band.cta-red p{ color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 10px; line-height: 1.6; }

/* Related services list */
.related-list{ list-style: none; }
.related-list li{ border-bottom: 1px solid var(--border-l); }
.related-list a{ display: flex; align-items: center; justify-content: space-between; padding: 12px 0; font-size: 14px; font-weight: 500; color: var(--black); text-decoration: none; }
.related-list a:hover{ color: var(--red); }
.related-list a::after{ content: '\2192'; color: var(--red); font-size: 12px; }

/* Sidebar cards */
.sidebar-card{ background: var(--light); padding: 24px; margin-bottom: 20px; border-top: 3px solid var(--red); }
.sidebar-card h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 12px; }
.sidebar-contact{ background: var(--black); padding: 24px; margin-bottom: 20px; }
.sidebar-contact h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.sidebar-contact p{ font-size: 13px; color: #888; line-height: 1.55; margin-bottom: 16px; }
.sidebar-phone{ font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: var(--red); display: block; margin-bottom: 12px; letter-spacing: 0.02em; text-decoration: none; }
.btn-sidebar{ background: var(--red); color: var(--white); font-size: 12px; font-weight: 600; padding: 10px 20px; letter-spacing: 0.06em; text-transform: uppercase; border: none; cursor: pointer; font-family: 'Inter', sans-serif; width: 100%; margin-bottom: 8px; text-decoration: none; display: block; text-align: center; }
.btn-sidebar:hover{ background: var(--red-dark); }
.btn-sidebar-out{ background: transparent; color: var(--white); font-size: 12px; font-weight: 600; padding: 10px 20px; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid #444; cursor: pointer; font-family: 'Inter', sans-serif; width: 100%; text-decoration: none; display: block; text-align: center; }
.sidebar-areas{ font-size: 13px; color: #666; line-height: 1.8; }

.city-links{ list-style: none; display: flex; flex-direction: column; gap: 0; }
.city-links li{ border-bottom: 1px solid var(--border-l); }
.city-links a{ display: block; padding: 9px 0; font-size: 13px; font-weight: 500; color: #333; text-decoration: none; }
.city-links a:hover{ color: var(--red); }
.city-links a.current-city{ color: var(--red); font-weight: 600; }

.simple-list{ list-style: none; }
.simple-list li{ display: flex; gap: 8px; font-size: 13px; color: #444; margin-bottom: 8px; }
.simple-list li span.dash{ color: var(--red); font-weight: 700; flex-shrink: 0; }

/* Local stats bar */
.local-stats{ display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-l); margin: 28px 0; }
.stat-block{ background: var(--light); padding: 20px; text-align: center; }
.stat-num{ font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 4px; }
.stat-label{ font-size: 12px; color: #666; letter-spacing: 0.04em; text-transform: uppercase; }

.stat-row{ display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); margin: 40px 0; }
.stat-row .stat-block{ background: var(--charcoal); padding: 28px 20px; }
.stat-row .stat-label{ color: #888; line-height: 1.4; }

@media (max-width: 700px){
  .local-stats, .stat-row{ grid-template-columns: 1fr 1fr; }
}

/* Services 2-col list (city pages) */
.services-2col{ display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-l); margin: 24px 0; }
.service-row{ background: var(--white); padding: 14px 18px; display: flex; align-items: center; gap: 10px; border-left: 3px solid var(--red); }
.service-row span{ font-size: 14px; font-weight: 500; color: var(--black); }
@media (max-width: 700px){ .services-2col{ grid-template-columns: 1fr; } }

.industry-pills{ display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.industry-pill{ background: var(--light); border: none; padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--black); }

/* Identity blocks (about page) */
.identity-block{ border-left: 4px solid var(--red); padding: 24px 28px; background: var(--light); margin-bottom: 16px; }
.identity-block h3{ font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.identity-block p{ font-size: 14px; color: #555; line-height: 1.65; }

.value-card{ background: var(--white); padding: 28px 24px; }
.value-num{ font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 8px; }
.value-card h3{ font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.value-card p{ font-size: 13px; color: #555; line-height: 1.6; }

.cap-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-l); margin: 24px 0; }
.cap-item{ background: var(--white); padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; }
.cap-stripe{ width: 3px; background: var(--red); flex-shrink: 0; align-self: stretch; min-height: 20px; }
.cap-text h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 3px; }
.cap-text p{ font-size: 13px; color: #666; line-height: 1.5; }
@media (max-width: 700px){ .cap-grid{ grid-template-columns: 1fr; } }

/* Service blocks (mechanical services style) */
.service-blocks{ display: flex; flex-direction: column; gap: 1px; background: var(--border-l); margin: 24px 0; }
.service-block{ background: var(--white); display: grid; grid-template-columns: 200px 1fr; gap: 0; }
.service-block-label{ background: var(--charcoal); padding: 24px 20px; display: flex; flex-direction: column; justify-content: center; }
.service-block-label span{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--white); line-height: 1.2; }
.service-block-label .sub{ font-size: 11px; color: #888; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.service-block-body{ padding: 20px 24px; border-left: 3px solid var(--red); }
.service-block-body h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.service-block-body p{ font-size: 14px; color: #555; line-height: 1.6; }
.service-block-body ul{ list-style: none; margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.service-block-body ul li{ background: var(--light); padding: 3px 10px; font-size: 12px; color: #555; }
@media (max-width: 700px){ .service-block{ grid-template-columns: 1fr; } }

/* Industry / product / area cards (hub pages) */
.industry-cards, .product-cards, .area-cards{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--border-l); }
.industry-card, .area-card{ background: var(--white); padding: 28px 24px 24px; border-top: 3px solid var(--red); display: flex; flex-direction: column; }
.product-card{ background: var(--white); padding: 22px 20px 20px; border-top: 3px solid var(--red); }
.industry-card-num{ font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: 0.1em; margin-bottom: 10px; }
.industry-card h3, .area-card h3, .product-card h3{ font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
.product-card h3{ font-size: 18px; font-weight: 700; }
.industry-card p, .area-card p, .product-card p{ font-size: 14px; color: #555; line-height: 1.6; flex: 1; }
.product-card p{ font-size: 13px; margin-bottom: 12px; }
.industry-card-tags, .area-card-services, .product-card-tags{ display: flex; flex-wrap: wrap; gap: 4px; margin-top: 14px; }
.industry-tag, .area-tag, .product-card-tag{ background: var(--light); padding: 3px 10px; font-size: 11px; color: #555; }
.industry-card-link, .area-card-link, .product-card-link{ display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--red); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; }
.industry-card-link::after, .area-card-link::after, .product-card-link::after{ content: ' \2192'; }
.area-card-region{ font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #aaa; margin-bottom: 10px; }

.needs-grid{ display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border-l); margin-top: 28px; }
.need-item{ background: var(--charcoal); padding: 20px; }
.need-item h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.need-item p{ font-size: 13px; color: #888; line-height: 1.55; }
@media (max-width: 700px){ .needs-grid, .industry-cards, .product-cards, .area-cards{ grid-template-columns: 1fr; } }

.services-across{ display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border-l); margin-top: 24px; }
.svc-item{ background: var(--white); padding: 16px 18px; display: flex; gap: 10px; align-items: flex-start; }
.svc-dot{ width: 6px; height: 6px; background: var(--red); flex-shrink: 0; margin-top: 6px; }
.svc-item span{ font-size: 14px; font-weight: 500; color: var(--black); }
@media (max-width: 700px){ .services-across{ grid-template-columns: 1fr; } }

/* 404 page */
.error-page{ min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 64px 32px; background: var(--black); }
.error-code{ font-family: 'Barlow Condensed', sans-serif; font-size: 120px; font-weight: 800; color: var(--red); line-height: 1; }
.error-page h2{ font-size: 28px; color: var(--white); text-transform: uppercase; margin: 16px 0; }
.error-page p{ color: #888; max-width: 420px; margin-bottom: 28px; }


/* ===================== LIGHTER SCHEME ADDITIONS ===================== */
/* Alternating section backgrounds for breathing room */
.section-alt{ background: var(--section-bg) !important; }
.section-white{ background: var(--white) !important; }
.section-dark{ background: var(--charcoal) !important; }

/* Card backgrounds on light sections */
.service-card{ background: var(--white) !important; }
.what-item{ background: var(--section-bg) !important; }
.industry-item{ background: var(--white) !important; }

/* Better section titles on light bg */
.section-title{ color: var(--text-dark); }
.content-h2{ color: var(--text-dark); }

/* Image placeholder styles */
.img-placeholder{
  background: linear-gradient(135deg, #e8e8e6 0%, #d8d8d5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.img-placeholder::before{
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,0.03) 10px,
    rgba(0,0,0,0.03) 20px
  );
}
.img-placeholder-icon{
  font-size: 40px;
  margin-bottom: 12px;
  opacity: 0.4;
  position: relative;
  z-index: 1;
}
.img-placeholder-label{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}
.img-placeholder-desc{
  font-size: 11px;
  color: #999;
  margin-top: 6px;
  max-width: 200px;
  position: relative;
  z-index: 1;
}
.img-placeholder-tag{
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
}

/* Equipment/New Sales page specific */
.eq-category{ margin-bottom: 56px; }
.eq-header{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--charcoal);
  border-left: 4px solid var(--red);
  margin-bottom: 2px;
}
.eq-header h2{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.eq-header .eq-num{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.eq-intro{
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  padding: 14px 20px 18px;
  background: var(--section-bg);
  border-left: 4px solid var(--border-l);
  margin-bottom: 1px;
}
.eq-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-l);
}
.eq-card{
  background: var(--white);
  padding: 20px 18px;
  border-top: 2px solid transparent;
  transition: border-color 0.15s;
}
.eq-card:hover{ border-top-color: var(--red); }
.eq-card h3{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 6px;
}
.eq-card p{ font-size: 13px; color: var(--text-mid); line-height: 1.55; margin: 0 0 10px; }
.eq-vendors{
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 8px;
}
.eq-vendor{
  background: var(--light);
  border: 1px solid var(--border-l);
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eq-tag{
  background: var(--section-bg);
  padding: 2px 8px;
  font-size: 10px;
  color: #777;
}

/* Fabrication page */
.fab-capability-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-l);
  margin: 24px 0;
}
.fab-cap{
  background: var(--white);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fab-cap-icon{
  width: 40px;
  height: 40px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fab-cap-icon svg{ stroke: white; fill: none; stroke-width: 2; }
.fab-cap h4{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 6px;
}
.fab-cap p{ font-size: 13px; color: var(--text-mid); line-height: 1.55; margin: 0; }

/* Homepage hero lighter treatment for content sections below hero */
.home-section-light{
  background: var(--white);
  padding: 72px 32px;
}
.home-section-grey{
  background: var(--section-bg);
  padding: 72px 32px;
}

@media(max-width:800px){
  .eq-cards{ grid-template-columns: 1fr 1fr; }
  .fab-capability-grid{ grid-template-columns: 1fr; }
}
@media(max-width:600px){
  .eq-cards{ grid-template-columns: 1fr; }
}

/* ===================== HOMEPAGE SPECIFIC ===================== */
/* Hero quick-links bar */
.hero-quick{ display:flex; gap:0; margin-top:28px; border-top:1px solid rgba(255,255,255,0.1); padding-top:20px; }
.hero-quick-item{ padding:12px 24px 12px 0; margin-right:24px; border-right:1px solid rgba(255,255,255,0.12); text-decoration:none; display:flex; flex-direction:column; gap:3px; }
.hero-quick-item:last-child{ border-right:none; }
.hero-quick-label{ font-size:10px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:#888; }
.hero-quick-val{ font-size:14px; font-weight:600; color:var(--white); }
.hero-quick-red .hero-quick-val{ color:var(--red); }
.hero-image-caption{ position:absolute; bottom:0; left:0; right:0; background:rgba(0,0,0,0.7); color:#aaa; font-size:11px; padding:8px 14px; text-align:center; letter-spacing:0.04em; }

/* Division cards grid */
.divisions-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border-l); }
.division-card{ background:var(--white); display:flex; flex-direction:column; }
.division-img{ flex-shrink:0; }
.division-body{ padding:20px 18px 22px; flex:1; display:flex; flex-direction:column; }
.division-num{ font-family:'Barlow Condensed',sans-serif; font-size:12px; font-weight:700; color:var(--red); letter-spacing:0.1em; margin-bottom:8px; }
.division-body h3{ font-family:'Barlow Condensed',sans-serif; font-size:19px; font-weight:800; text-transform:uppercase; color:var(--text-dark); margin:0 0 8px; }
.division-body p{ font-size:13px; color:var(--text-mid); line-height:1.6; flex:1; margin:0 0 14px; }
.division-link{ font-size:11px; font-weight:700; color:var(--red); text-decoration:none; letter-spacing:0.06em; text-transform:uppercase; }

/* Service tiles */
.service-cards-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border-l); }
.service-hub-tile{ background:var(--white); padding:22px 20px; text-decoration:none; display:flex; flex-direction:column; border-top:2px solid transparent; transition:border-color 0.15s,background 0.15s; }
.service-hub-tile:hover{ border-top-color:var(--red); background:var(--section-bg); }
.sht-num{ font-family:'Barlow Condensed',sans-serif; font-size:13px; font-weight:700; color:var(--red); letter-spacing:0.1em; margin-bottom:8px; }
.service-hub-tile h3{ font-family:'Barlow Condensed',sans-serif; font-size:17px; font-weight:800; text-transform:uppercase; color:var(--text-dark); margin:0 0 8px; }
.service-hub-tile p{ font-size:13px; color:var(--text-mid); line-height:1.6; margin:0; }
.sht-red{ background:var(--charcoal) !important; border-top:2px solid var(--red) !important; }
.sht-red h3,.sht-red p{ color:var(--white) !important; }
.sht-red .sht-num{ color:var(--red); }

/* Home feature list */
.home-feature-list{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.home-feature-list li{ font-size:14px; color:var(--text-mid); padding-left:20px; position:relative; line-height:1.5; }
.home-feature-list li::before{ content:'\2014'; position:absolute; left:0; color:var(--red); font-weight:700; }

/* Buttons for light sections */
.btn-primary-dark{ display:inline-block; background:var(--text-dark); color:var(--white); padding:12px 24px; font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; text-decoration:none; }
.btn-primary-dark:hover{ background:var(--red); }
.btn-outline-dark{ display:inline-block; border:2px solid var(--text-dark); color:var(--text-dark); padding:10px 22px; font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; text-decoration:none; }
.btn-outline-dark:hover{ background:var(--text-dark); color:var(--white); }

/* Fabrication quick list */
.fab-quick-list{ display:flex; flex-direction:column; gap:6px; }
.fab-ql-item{ font-size:14px; color:var(--text-mid); display:flex; align-items:center; gap:10px; padding:6px 0; border-bottom:1px solid var(--border-l); }
.fab-ql-dot{ width:6px; height:6px; background:var(--red); flex-shrink:0; }

/* Industry list dark */
.industry-list-dark{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:#333; }
.ind-item-d{ background:var(--charcoal); padding:10px 14px; font-size:13px; color:#bbb; }

/* City grid dark */
.city-grid-dark{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:#333; }
.city-grid-dark a{ background:#2a2a2a; padding:8px 10px; font-size:12px; color:#aaa; text-decoration:none; text-align:center; }
.city-grid-dark a:hover{ color:var(--white); background:#333; }

@media(max-width:1000px){
  .divisions-grid{ grid-template-columns:1fr 1fr; }
  .service-cards-grid{ grid-template-columns:1fr 1fr; }
}
@media(max-width:700px){
  .hero-split{ flex-direction:column; }
  .hero-image-wrap{ width:100%; height:240px; }
  .divisions-grid,.service-cards-grid{ grid-template-columns:1fr; }
  .hero-quick{ flex-direction:column; gap:12px; }
  .city-grid-dark{ grid-template-columns:repeat(3,1fr); }
}
