:root {
  --bg: #070707;
  --panel: #101010;
  --panel-2: #151515;
  --text: #f7f2e6;
  --muted: #c3c3c3;
  --red: #b91918;
  --red-bright: #d72c22;
  --gold: #f0b81d;
  --gold-soft: #ffcf43;
  --line: #b58a42;
  --shadow: 0 20px 55px rgba(0,0,0,0.45);
  --radius: 18px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #070707;
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.page-shell { width: 100%; margin: 0; background: #070707; border-radius: 0; border: 0; box-shadow: none; overflow: hidden; }
.browser-bar, .browser-dot, .dot-red, .dot-yellow, .dot-green { display: none; }
.top-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(5,5,5,0.98), rgba(10,10,10,0.98));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px 0;
}
.brand { display:flex; align-items:center; gap:18px; min-width:0; }
.brand img { width: 182px; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4)); }
.brand-meta { display:none; }
.menu-toggle {
  display:none; background:none; border:1px solid rgba(255,255,255,.15); color:white; border-radius:10px; padding:10px 12px;
}
.nav-links {
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.nav-links a {
  padding: 14px 18px;
  font-family: Oswald, sans-serif;
  font-size: 1.06rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: .2s ease;
}
.nav-links a.active,
.nav-links a:hover {
  background: linear-gradient(180deg, #c2271d, #991715);
}
.call-chip {
  display:flex; align-items:center; gap:12px;
  padding: 10px 14px;
  border: 1px solid rgba(240,184,29,0.45);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
}
.call-icon {
  width:40px; height:40px; border-radius: 10px;
  background: linear-gradient(180deg, #d8261b, #84140f);
  display:grid; place-items:center; color:var(--gold); font-size:1.2rem; font-weight:800;
}
.call-chip span { display:block; }
.call-chip .small { font-size:.78rem; color:#f8d15d; text-transform:uppercase; letter-spacing:.05em; font-weight:700; }
.call-chip .number { font-family: Oswald, sans-serif; font-size:1.35rem; line-height:1; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.70) 36%, rgba(0,0,0,0.54) 58%, rgba(0,0,0,0.68) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.42) 100%),
    url("assets/hero-custom-bg.png") center center / cover no-repeat;
  min-height: 760px;
}
.hero::before,
.hero::after {
  top:0; right:0; width:42%; height:100%;
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.16) 35%, rgba(0,0,0,.58) 100%);
  pointer-events:none;
}
.hero::before {
  left:0; right:0; bottom:0; height:22%; width:100%;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.34) 38%, rgba(0,0,0,.74) 100%);
  opacity:1;
}
.hero-grid {
  position: relative;
  display:grid;
  grid-template-columns: 1.55fr .9fr;
  gap: 32px;
  align-items: start;
  padding: 54px 0 18px;
}
.hero-copy { padding: 14px 0 18px 6px; max-width: 760px; position: relative; z-index: 2; }
.kicker {
  color: var(--gold); font-weight: 900; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase;
}
.hero h1 {
  margin: 18px 0 10px;
  font-family: Oswald, sans-serif;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: .015em;
  text-shadow: 0 5px 26px rgba(0,0,0,.55);
}
.hero h1 .accent {
  display:block;
  color: #d42922;
}
.hero-sub {
  margin: 14px 0 10px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.3vw, 2.15rem);
  line-height: 1.1;
}
.hero-tagline {
  text-shadow: 0 3px 14px rgba(0,0,0,.35);
  color: var(--gold);
  font-family: Oswald, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 24px;
}
.check-grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px 28px;
  max-width: 640px;
}
.check-item {
  display:flex; align-items:center; gap:10px;
  font-size: 1.33rem;
  font-weight: 600;
}
.check-item .check {
  width: 24px; height: 24px; border-radius:999px;
  display:grid; place-items:center;
  background: linear-gradient(180deg, #f3c22e, #c89611);
  color:#171717; font-size:.9rem; font-weight:900; flex:none;
}

.hero-visual {
  display:none;
}
.excavator-body, .excavator-arm, .excavator-boom, .excavator-bucket,
.excavator-cab, .excavator-track {
  position:absolute; background: linear-gradient(180deg, #e4ac1b, #a96f00);
  border: 4px solid #1a1a1a;
}
.excavator-body {
  bottom: 62px; left: 75px; width: 160px; height: 70px; border-radius: 18px 10px 10px 10px;
}
.excavator-cab {
  bottom: 92px; left: 142px; width: 70px; height: 76px; background: linear-gradient(180deg, #1f2428, #090909); border-radius: 10px;
}
.excavator-track {
  bottom: 30px; left: 58px; width: 208px; height: 44px; background: linear-gradient(180deg, #191919, #000000); border-radius: 30px;
}
.excavator-boom {
  width: 150px; height: 24px; left: 25px; top: 85px; transform: rotate(-18deg); border-radius: 16px;
}
.excavator-arm {
  width: 125px; height: 20px; left: -38px; top: 52px; transform: rotate(-38deg); border-radius: 16px;
}
.excavator-bucket {
  width: 44px; height: 56px; left: -48px; top: 19px; transform: rotate(-50deg); border-radius: 0 0 20px 20px;
}
.form-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #c92520, #8f1614);
  border: 3px solid rgba(255,185,86,0.24);
  border-radius: 12px;
  padding: 18px 16px 16px;
  box-shadow: 0 20px 34px rgba(0,0,0,.38);
  margin-top: 16px;
}
.form-card h2 {
  margin:0;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 2vw, 2.5rem);
  line-height:1;
}
.form-card p { margin: 4px 0 14px; font-weight: 600; color:#fff5e6; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  border: none;
  border-radius: 4px;
  padding: 13px 14px;
  margin-bottom: 11px;
  background: #f6f1e8;
  font: inherit;
  color: #1a1a1a;
}
.form-card textarea { min-height: 78px; resize: vertical; }
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  border:none; cursor:pointer; border-radius: 4px;
  padding: 16px 22px;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-gold { background: linear-gradient(180deg, #f7cb2f, #ddaa0d); color:#101010; width:100%; }
.btn-red { background: linear-gradient(180deg, #cf2b21, #931511); color:white; }
.btn-outline { border:1px solid rgba(255,255,255,.14); background: transparent; color:#fff; }

.info-strip {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid rgba(240,184,29,.5);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #101010, #090909);
}
.strip-item {
  display:flex; gap:18px; align-items:center;
  padding: 24px 26px;
  border-right: 1px solid rgba(240,184,29,.28);
}
.strip-item:last-child { border-right:none; }
.strip-icon {
  width:66px; height:66px; flex:none; border-radius:999px;
  border: 2px solid rgba(240,184,29,.52);
  display:grid; place-items:center; color:var(--gold); font-size:1.9rem; font-weight:900;
}
.strip-item h3 {
  margin:0 0 4px;
  font-family: Oswald, sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.strip-item p { margin:0; color:var(--muted); font-size:1.06rem; }

.location-band {
  display:grid; grid-template-columns: .95fr 1.35fr .95fr;
  background:
    linear-gradient(90deg, rgba(115,12,12,.95), rgba(150,24,18,.88) 35%, rgba(90,11,10,.88) 100%),
    radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 24%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 2px solid rgba(240,184,29,.36);
}
.band-left, .band-copy, .band-right { padding: 30px 28px; }
.band-left { border-right: 1px solid rgba(255,255,255,0.12); }
.band-right { border-left: 1px solid rgba(255,255,255,0.12); display:grid; place-items:center; }
.band-left .loc-title { color: var(--gold-soft); text-transform: uppercase; font-weight: 800; letter-spacing: .04em; }
.band-left .city { font-family: Oswald, sans-serif; font-size: clamp(2.1rem, 3vw, 3rem); line-height: .95; text-transform: uppercase; margin: 6px 0; }
.band-copy h2 { margin: 0 0 10px; font-family: Oswald, sans-serif; text-transform: uppercase; font-size: clamp(2.4rem, 3.4vw, 4.15rem); line-height: .95; }
.band-copy p { margin:0; font-size:1.06rem; max-width:460px; color:#f1dfd2; }
.truck-card {
  width: 100%; max-width: 320px; aspect-ratio: 1.35/1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 40%, rgba(255,255,255,.2), transparent 30%),
    linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,0)),
    linear-gradient(180deg, #222, #050505);
  position:relative;
  overflow:hidden;
  box-shadow: 0 18px 28px rgba(0,0,0,.32);
}
.truck-card::before {
  content:""; position:absolute; bottom: 28px; left: 26px; width: 120px; height: 52px;
  background: #090909; border-radius: 10px 12px 8px 8px;
  box-shadow: 112px 0 0 0 #111;
}
.truck-card::after {
  content:""; position:absolute; bottom: 20px; left: 42px; width: 62px; height: 62px; border-radius: 999px; background:#1a1a1a; box-shadow: 160px 0 0 #1a1a1a;
}
.truck-cab {
  position:absolute; bottom: 78px; left: 76px; width: 110px; height: 56px; background: linear-gradient(180deg, #2b2b2b, #0d0d0d); border-radius: 10px 10px 4px 4px;
}
.truck-ladder {
  position:absolute; top:16px; right: 16px; width: 18px; height: 90px; background: linear-gradient(180deg, #ffcf43, #bb8510); border-radius: 8px;
}

.cta-row {
  display:grid; grid-template-columns: 1.15fr 1fr 1fr;
  gap: 0;
  background: linear-gradient(180deg, #0a0a0a, #060606);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cta-card {
  padding: 22px 26px;
  display:flex; align-items:center; gap:18px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.cta-card:last-child { border-right:none; }
.cta-box { width:72px; height:72px; border-radius:12px; display:grid; place-items:center; flex:none; font-size:2rem; font-weight:900; }
.cta-card h3, .cta-card .big-number {
  margin:0;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  line-height: .95;
}
.cta-card p { margin: 6px 0 0; color:#d6d6d6; }
.phone-box { background: linear-gradient(180deg, #cd261f, #881410); color:white; }
.center-card {
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
  justify-content:center;
}
.center-card .btn { width: 100%; max-width: 290px; }
.shield-box { border:2px solid rgba(240,184,29,.4); color:var(--gold); }

.site-footer {
  background: #060606;
}
.footer-grid {
  display:grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  padding: 24px 0 14px;
}
.footer-col {
  padding: 8px 20px 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.footer-col:last-child { border-right:none; }
.footer-logo img { width: 170px; }
.footer-title {
  margin: 6px 0 10px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: 1.45rem;
}
.footer-col p, .footer-col a { margin: 6px 0; color:#ddd; font-size:1rem; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 14px 0 18px; color:#d5d5d5; font-size:.94rem;
}
.socials { display:flex; gap:10px; }
.socials a {
  width: 36px; height: 36px; border-radius:999px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.15);
}

.page-hero {
  background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.52) 70%), linear-gradient(180deg, #5e412d, #1a1613 50%, #0a0a0a);
  padding: 48px 0 42px;
}
.page-hero h1 { margin:0; font-family: Oswald, sans-serif; text-transform: uppercase; font-size: clamp(3rem, 5vw, 5rem); line-height:.95; }
.page-hero p { max-width: 820px; color:#f3e9dc; font-size:1.15rem; }
.section { padding: 42px 0; }
.section.dark { background: linear-gradient(180deg, #0c0c0c, #070707); }
.section.light-panel { background: #f4efe7; color:#1a1a1a; }
.section-title { margin:0 0 16px; font-family: Oswald, sans-serif; text-transform: uppercase; font-size: clamp(2.3rem, 3vw, 3.4rem); line-height:.95; color:inherit; }
.section-title .gold { color: var(--gold); }
.section-sub { color:#d7d7d7; max-width: 830px; font-size:1.06rem; }
.card-grid {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.service-card {
  background: #f6f1e8; color:#1a1a1a; border-radius: 10px; padding: 22px 18px; border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.service-card .icon {
  width:50px; height:50px; border-radius:999px; border:2px solid #cf3022; color:#cf3022; display:grid; place-items:center; font-weight:900; font-size:1.2rem; margin-bottom:12px;
}
.service-card h3 { margin:0 0 10px; font-family: Oswald, sans-serif; text-transform: uppercase; font-size:1.35rem; line-height:1; }
.service-card p { margin:0; color:#444; line-height:1.5; font-size:.98rem; }
.highlight-band {
  margin-top: 26px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.64)), linear-gradient(180deg, #5e4023, #17120d);
}
.highlight-inner { display:grid; grid-template-columns: 1.2fr 1fr; gap: 24px; padding: 28px; align-items:center; }
.highlight-inner h2 { margin:0 0 12px; font-family: Oswald, sans-serif; text-transform: uppercase; font-size: clamp(2rem, 3vw, 3.2rem); line-height:.95; }
.bullet-list { display:grid; grid-template-columns: repeat(2, 1fr); gap: 10px 22px; }
.bullet-list div { display:flex; align-items:center; gap:10px; font-weight:600; }
.highlight-art {
  min-height: 230px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent), linear-gradient(180deg, #1f1f1f, #070707);
  position:relative;
}
.highlight-art::before,
.highlight-art::after {
  content:""; position:absolute; border-radius: 999px; background:#161616;
}
.highlight-art::before { width: 58px; height:58px; bottom: 18px; left: 38px; box-shadow: 155px 0 0 #161616; }
.highlight-art::after { width: 220px; height: 18px; left: 26px; bottom: 42px; background:#090909; border-radius: 18px; }
.about-grid {
  display:grid; grid-template-columns: 1.12fr .88fr; gap: 26px;
}
.value-row {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0;
}
.value-card {
  background:#f6f1e8; color:#1a1a1a; border-radius:10px; padding:18px 14px; text-align:center;
}
.value-card .icon { width:54px; height:54px; margin:0 auto 12px; border:2px solid #ca2d20; color:#ca2d20; display:grid; place-items:center; border-radius:999px; font-size:1.2rem; font-weight:900; }
.value-card h3 { margin:0 0 8px; font-family: Oswald, sans-serif; text-transform:uppercase; font-size:1.3rem; }
.value-card p { margin:0; color:#555; font-size:.95rem; }
.owner-card {
  display:grid; grid-template-columns: 240px 1fr; gap: 24px;
  background: linear-gradient(180deg, #111, #0a0a0a);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; overflow:hidden;
}
.owner-photo {
  min-height: 290px;
  background: linear-gradient(180deg, #2c2c2c, #0a0a0a);
  position:relative;
}
.owner-photo::before {
  content:""; position:absolute; left:50%; top:34px; transform:translateX(-50%);
  width:118px; height:118px; border-radius:999px; background: linear-gradient(180deg, #d6b28d, #a77952);
  box-shadow: 0 138px 0 54px #222;
}
.owner-photo::after {
  content:""; position:absolute; left:50%; top: 20px; transform: translateX(-50%);
  width: 132px; height: 58px; border-radius: 60px 60px 28px 28px; background:#121212;
}
.owner-content { padding: 24px 24px 26px 0; }
.owner-kicker { color: var(--gold); text-transform: uppercase; font-weight: 800; letter-spacing: .05em; }
.owner-name { margin:6px 0 14px; font-family: Oswald, sans-serif; text-transform: uppercase; font-size: clamp(2rem, 3vw, 3rem); }
.contact-grid {
  display:grid; grid-template-columns: .95fr 1.05fr; gap: 24px;
}
.contact-panel, .contact-form-wrap {
  background: linear-gradient(180deg, #111, #0a0a0a);
  border-radius: 12px; border: 1px solid rgba(255,255,255,.08); padding: 28px;
}
.contact-panel h2, .contact-form-wrap h2 { margin:0 0 12px; font-family: Oswald, sans-serif; text-transform: uppercase; font-size: 2.3rem; }
.contact-list { display:grid; gap: 14px; margin: 18px 0 22px; }
.contact-item { display:flex; gap:14px; align-items:flex-start; }
.contact-item .mini { width:42px; height:42px; display:grid; place-items:center; border-radius:10px; background:linear-gradient(180deg, #c9261f, #8b1410); color:white; font-weight:900; }
.contact-form-wrap .form-card { margin:0; box-shadow:none; }
.floating-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  display:inline-flex; align-items:center; gap:12px;
  background: linear-gradient(180deg, #d32920, #931511); color:white;
  border-radius: 999px; padding: 14px 18px; box-shadow: 0 16px 40px rgba(0,0,0,.35);
  font-weight:800;
}
.mobile-callbar { display:none; }
.small-note { color:#888; font-size:.94rem; }

@media (max-width: 1180px) {
  .nav-inner { flex-wrap: wrap; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { right: 8%; top: 102px; opacity: .42; }
  .form-card { max-width: 470px; }
  .location-band, .cta-row, .footer-grid, .highlight-inner, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .value-row { grid-template-columns: repeat(2, 1fr); }
  .info-strip { grid-template-columns: 1fr; }
  .strip-item { border-right:none; border-bottom:1px solid rgba(240,184,29,.28); }
  .strip-item:last-child { border-bottom:none; }
  .footer-col, .cta-card, .band-left, .band-copy, .band-right { border: none; }
}

@media (max-width: 860px) {
  .container { width: min(var(--max), calc(100% - 22px)); }
  .menu-toggle { display:block; }
  .nav-links {
    display:none; width:100%; flex-direction:column; align-items:stretch; padding-top:10px;
  }
  .nav-links.open { display:flex; }
  .call-chip { width:100%; justify-content:center; }
  .hero { min-height: auto; }
  .hero-copy { padding-top:0; }
  .hero h1 { font-size: 3.6rem; }
  .hero-sub { font-size: 1.45rem; }
  .hero-tagline { font-size: 1.15rem; }
  .check-grid { grid-template-columns: 1fr; gap: 8px; }
  .check-item { font-size: 1.18rem; }
  .hero-visual { display:none; }
  .form-card { max-width: none; }
  .card-grid, .value-row { grid-template-columns: 1fr; }
  .owner-card { grid-template-columns: 1fr; }
  .owner-content { padding: 0 18px 20px; }
  .footer-grid { padding-top: 18px; }
  .copyright { flex-direction: column; }
  .floating-call { display:none; }
  .mobile-callbar {
    display:grid; grid-template-columns: 1fr 1fr; position: sticky; bottom:0; z-index:50;
  }
  .mobile-callbar a {
    padding: 14px 12px; text-align:center; font-family: Oswald, sans-serif; text-transform:uppercase; letter-spacing:.03em;
  }
  .mobile-callbar .phone { background: linear-gradient(180deg, #d32920, #941410); }
  .mobile-callbar .quote { background: linear-gradient(180deg, #f4c72d, #d8a20e); color:#111; }
}

/* Real-site refinements */
.top-nav {
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.hero {
  border-bottom: 2px solid rgba(240,184,29,.38);
}
.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 1180px) {
  .hero { min-height: auto; }
}





/* Full-width color bands with centered content */
.info-strip,
.location-band,
.cta-row {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow: visible !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

/* Keep the three top benefit boxes centered, but let the black/gold background span edge-to-edge */
.info-strip {
  display: grid !important;
  grid-template-columns:
    minmax(16px, 1fr)
    minmax(0, calc(var(--max) / 3))
    minmax(0, calc(var(--max) / 3))
    minmax(0, calc(var(--max) / 3))
    minmax(16px, 1fr) !important;
  background:
    linear-gradient(180deg, #101010, #080808) !important;
  border-top: 2px solid rgba(240,184,29,.55) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
.info-strip .strip-item:nth-child(1) { grid-column: 2; }
.info-strip .strip-item:nth-child(2) { grid-column: 3; }
.info-strip .strip-item:nth-child(3) { grid-column: 4; }
.info-strip .strip-item {
  background: linear-gradient(180deg, rgba(16,16,16,.98), rgba(8,8,8,.98));
}

/* Full-width red location/profit band, with the content still aligned to the page */
.location-band {
  display: grid !important;
  grid-template-columns:
    minmax(16px, 1fr)
    minmax(0, calc(var(--max) * .29))
    minmax(0, calc(var(--max) * .42))
    minmax(0, calc(var(--max) * .29))
    minmax(16px, 1fr) !important;
  background:
    linear-gradient(90deg, #6e0808 0%, #981512 23%, #a01814 52%, #7a0c0a 100%) !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  border-bottom: 2px solid rgba(240,184,29,.38) !important;
}
.location-band .band-left { grid-column: 2; }
.location-band .band-copy { grid-column: 3; }
.location-band .band-right { grid-column: 4; }
.location-band .band-left,
.location-band .band-copy,
.location-band .band-right {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-band .band-right {
  align-items: center;
}

/* Full-width bottom CTA bar, centered content */
.cta-row {
  display: grid !important;
  grid-template-columns:
    minmax(16px, 1fr)
    minmax(0, calc(var(--max) / 3))
    minmax(0, calc(var(--max) / 3))
    minmax(0, calc(var(--max) / 3))
    minmax(16px, 1fr) !important;
  background: linear-gradient(180deg, #0b0b0b, #050505) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
.cta-row .cta-card:nth-child(1) { grid-column: 2; }
.cta-row .cta-card:nth-child(2) { grid-column: 3; }
.cta-row .cta-card:nth-child(3) { grid-column: 4; }
.cta-row .cta-card {
  background: linear-gradient(180deg, rgba(10,10,10,.98), rgba(5,5,5,.98));
}

/* Make the red band headline fit better at the centered page width */
.band-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
}

@media (max-width: 1180px) {
  .info-strip,
  .location-band,
  .cta-row {
    grid-template-columns: 1fr !important;
  }
  .info-strip .strip-item,
  .location-band .band-left,
  .location-band .band-copy,
  .location-band .band-right,
  .cta-row .cta-card {
    grid-column: 1 !important;
  }
  .location-band .band-left,
  .location-band .band-copy,
  .location-band .band-right {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .info-strip,
  .location-band,
  .cta-row {
    width: 100% !important;
  }
}


/* On smaller screens, use real HTML text instead of shrinking the wide banner too far */
@media (max-width: 760px) {
  .location-band.promo-final-band {
    position: relative;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(138,14,12,.96), rgba(74,5,5,.98)),
      url("assets/location-banner.png") 73% center / cover no-repeat !important;
  }

  .location-band.promo-final-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(108,8,7,.97), rgba(128,13,11,.90) 62%, rgba(35,3,3,.84)),
      linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.22));
    pointer-events: none;
  }

  .promo-final-image {
    display: none;
  }

  .promo-final-mobile {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .promo-final-location {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 14px;
  }

  .promo-final-pin {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 900;
    color: #1a1100;
    background: linear-gradient(180deg, #ffcf43, #b87910);
    box-shadow: 0 10px 18px rgba(0,0,0,.28);
  }

  .promo-final-kicker {
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    color: var(--gold-soft);
    font-size: 1.05rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 7px;
  }

  .promo-final-city {
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    color: #fff8ed;
    font-size: clamp(2.05rem, 11vw, 3.2rem);
    line-height: .92;
    font-weight: 700;
    letter-spacing: .02em;
    text-shadow: 0 4px 12px rgba(0,0,0,.45);
  }

  .promo-final-area {
    margin-top: 8px;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    color: #fff2e8;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
  }

  .promo-final-copy h2 {
    margin: 0 0 12px !important;
    font-family: Oswald, sans-serif;
    color: #fff8ee;
    text-transform: uppercase;
    font-size: clamp(2.25rem, 12vw, 3.65rem) !important;
    line-height: .95 !important;
    letter-spacing: .02em;
    text-shadow: 0 6px 18px rgba(0,0,0,.48);
  }

  .promo-final-copy p {
    margin: 0;
    max-width: 520px;
    color: #fff1e4;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 600;
    text-shadow: 0 3px 10px rgba(0,0,0,.45);
  }
}

@media (min-width: 1600px) {
  .promo-final-image {
    max-height: 470px;
  }
}


/* Coded-text promo banner - blended truck version */
.location-band.promo-coded-band {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 230px !important;
  display: block !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 82% 35%, rgba(255,125,35,.09), transparent 30%),
    radial-gradient(circle at 15% 12%, rgba(255,213,62,.11), transparent 28%),
    linear-gradient(90deg, #6d0807 0%, #a91511 40%, #8a0f0d 64%, #590706 100%) !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  border-bottom: 3px solid rgba(240,184,29,.78) !important;
}

.location-band.promo-coded-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.08), transparent 38%, rgba(0,0,0,.10)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.024) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 105% 50%, rgba(0,0,0,.20), transparent 26%);
  pointer-events: none;
}

.location-band.promo-coded-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(175,124,34,.30), #f0b81d, rgba(175,124,34,.30));
  pointer-events: none;
}

.promo-coded-content {
  position: relative;
  z-index: 2;
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(320px, .95fr) 1px minmax(500px, 1.38fr);
  align-items: center;
  gap: clamp(22px, 2.4vw, 34px);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: clamp(210px, 22vw, 360px);
}

.promo-coded-location {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.promo-coded-pin-wrap {
  position: relative;
  width: 62px;
  height: 74px;
  display: block;
}

.promo-coded-pin {
  position: absolute;
  left: 6px;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(180deg, #ffcf43, #b87910);
  box-shadow: 0 10px 18px rgba(0,0,0,.30);
}

.promo-coded-pin::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #8e110d;
  box-shadow: inset 0 2px 8px rgba(0,0,0,.26);
}

.promo-coded-pin-ring {
  position: absolute;
  left: 10px;
  bottom: 3px;
  width: 44px;
  height: 10px;
  border: 3px solid rgba(240,184,29,.68);
  border-top: 0;
  border-radius: 50%;
}

.promo-coded-kicker {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-size: clamp(1rem, 1.16vw, 1.34rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .035em;
  margin-bottom: 8px;
}

.promo-coded-city {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  color: #fff8ee;
  font-size: clamp(2rem, 2.25vw, 2.9rem);
  line-height: .94;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  text-shadow: 0 5px 16px rgba(0,0,0,.44);
}

.promo-coded-area {
  margin-top: 8px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  color: #fff2e7;
  font-size: clamp(.92rem, 1vw, 1.14rem);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.promo-coded-divider {
  width: 1px;
  align-self: stretch;
  min-height: 155px;
  background: linear-gradient(180deg, transparent, rgba(240,184,29,.78), transparent);
}

.promo-coded-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  max-width: 760px;
}

.promo-coded-copy h2 {
  margin: 0 0 10px !important;
  font-family: Oswald, sans-serif;
  color: #fff8ee;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 2.95vw, 3.75rem) !important;
  line-height: .96 !important;
  letter-spacing: .02em;
  text-shadow: 0 6px 18px rgba(0,0,0,.48);
}

.promo-coded-copy p {
  margin: 0;
  max-width: 640px;
  color: #fff1e4;
  font-size: clamp(.96rem, .98vw, 1.08rem);
  line-height: 1.45;
  font-weight: 600;
  text-shadow: 0 3px 10px rgba(0,0,0,.42);
}

.promo-coded-art {
  position: absolute;
  right: max(6px, calc((100vw - var(--max)) / 2 - 8px));
  bottom: 0;
  width: clamp(210px, 21vw, 360px);
  height: calc(100% - 14px);
  background: url("assets/promo-truck-blend.png") left bottom / contain no-repeat;
  pointer-events: none;
  opacity: .98;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

@media (max-width: 1180px) {
  .promo-coded-content {
    grid-template-columns: minmax(275px, .88fr) 1px minmax(410px, 1.18fr);
    padding-right: clamp(175px, 18vw, 260px);
  }

  .promo-coded-city {
    font-size: clamp(1.72rem, 2.25vw, 2.4rem);
  }

  .promo-coded-copy h2 {
    font-size: clamp(2.02rem, 3.25vw, 3.1rem) !important;
  }

  .promo-coded-art {
    width: clamp(180px, 18vw, 260px);
  }
}

@media (max-width: 900px) {
  .location-band.promo-coded-band {
    min-height: auto !important;
  }

  .promo-coded-content {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 26px;
    padding-bottom: 128px;
    padding-right: 0;
  }

  .promo-coded-divider {
    display: none;
  }

  .promo-coded-location {
    grid-template-columns: 60px 1fr;
    gap: 14px;
    max-width: 620px;
  }

  .promo-coded-city,
  .promo-coded-area {
    white-space: normal;
  }

  .promo-coded-city {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .promo-coded-copy {
    max-width: 640px;
  }

  .promo-coded-copy h2 {
    font-size: clamp(2.2rem, 9vw, 3.7rem) !important;
  }

  .promo-coded-copy p {
    max-width: 560px;
  }

  .promo-coded-art {
    right: -8vw;
    width: min(78vw, 360px);
    height: 150px;
    opacity: .22;
    bottom: 0;
  }
}

@media (max-width: 560px) {
  .promo-coded-content {
    padding-top: 22px;
    padding-bottom: 115px;
  }

  .promo-coded-kicker {
    font-size: .98rem;
    margin-bottom: 6px;
  }

  .promo-coded-city {
    font-size: clamp(1.8rem, 10.5vw, 2.7rem);
  }

  .promo-coded-area {
    font-size: .92rem;
  }

  .promo-coded-copy h2 {
    font-size: clamp(1.95rem, 12vw, 3.05rem) !important;
    margin-bottom: 10px !important;
  }

  .promo-coded-copy p {
    font-size: .95rem;
    line-height: 1.42;
  }

  .promo-coded-art {
    width: 92vw;
    right: -28vw;
    height: 135px;
    opacity: .18;
  }
}


/* Override truck art to use transparent cutout without hard background */
.promo-coded-art {
  right: max(8px, calc((100vw - var(--max)) / 2 - 6px)) !important;
  bottom: 4px !important;
  width: clamp(220px, 20vw, 330px) !important;
  height: clamp(150px, 18vw, 245px) !important;
  background: url("assets/promo-truck-cutout.png") center bottom / contain no-repeat !important;
  opacity: 1 !important;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)) !important;
}

@media (max-width: 1180px) {
  .promo-coded-art {
    width: clamp(190px, 18vw, 255px) !important;
    height: clamp(138px, 16vw, 210px) !important;
  }
}

@media (max-width: 900px) {
  .promo-coded-art {
    right: -8vw !important;
    width: min(76vw, 340px) !important;
    height: 145px !important;
    opacity: .20 !important;
  }
}

@media (max-width: 560px) {
  .promo-coded-art {
    width: 88vw !important;
    right: -26vw !important;
    height: 128px !important;
    opacity: .14 !important;
  }
}


/* Override truck art again: smoother crop with softer background integration */
.promo-coded-art {
  right: max(4px, calc((100vw - var(--max)) / 2 - 12px)) !important;
  bottom: 2px !important;
  width: clamp(235px, 22vw, 360px) !important;
  height: clamp(155px, 18vw, 238px) !important;
  background: url("assets/promo-truck-smooth.png") center bottom / contain no-repeat !important;
  opacity: .92 !important;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18)) !important;
}

@media (max-width: 1180px) {
  .promo-coded-art {
    width: clamp(200px, 19vw, 280px) !important;
    height: clamp(140px, 16vw, 205px) !important;
    opacity: .88 !important;
  }
}

@media (max-width: 900px) {
  .promo-coded-art {
    right: -10vw !important;
    width: min(72vw, 320px) !important;
    height: 138px !important;
    opacity: .18 !important;
  }
}

@media (max-width: 560px) {
  .promo-coded-art {
    width: 85vw !important;
    right: -28vw !important;
    height: 122px !important;
    opacity: .12 !important;
  }
}


/* Final truck edge blend fix */
.promo-coded-art {
  /* Fade both sides and a touch of top/bottom so there is no hard image cutoff */
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.15) 8%,
    rgba(0,0,0,0.9) 20%,
    #000 30%,
    #000 78%,
    rgba(0,0,0,0.9) 88%,
    rgba(0,0,0,0.15) 95%,
    transparent 100%),
    linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,0.9) 12%,
    #000 24%,
    #000 88%,
    rgba(0,0,0,0.5) 96%,
    transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.15) 8%,
    rgba(0,0,0,0.9) 20%,
    #000 30%,
    #000 78%,
    rgba(0,0,0,0.9) 88%,
    rgba(0,0,0,0.15) 95%,
    transparent 100%),
    linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,0.9) 12%,
    #000 24%,
    #000 88%,
    rgba(0,0,0,0.5) 96%,
    transparent 100%);
  mask-composite: intersect;
}

@supports not ((mask-image: linear-gradient(black, black))) {
  .promo-coded-art {
    opacity: .82 !important;
  }
}



/* Logo polish: use transparent PNG and intentional dark placements */
.brand {
  padding: 0;
}

.brand img {
  width: clamp(150px, 12vw, 210px);
  max-height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.52));
}

.top-nav .brand {
  background: radial-gradient(circle at center, rgba(255,255,255,.06), rgba(255,255,255,0) 68%);
  border-radius: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: clamp(150px, 12vw, 205px);
  max-height: 118px;
  object-fit: contain;
  padding: 6px;
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(255,255,255,.055), rgba(255,255,255,0) 70%);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.48));
}

@media (max-width: 860px) {
  .brand img {
    width: 142px;
    max-height: 88px;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .footer-logo img {
    width: 150px;
    max-height: 92px;
    padding: 0;
  }
}


/* Custom generated hero background overrides */
@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.50) 42%, rgba(0,0,0,0.74) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.38) 55%, rgba(0,0,0,0.52) 100%),
      url("assets/hero-custom-bg.png") 34% center / cover no-repeat;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.54) 38%, rgba(0,0,0,0.78) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.44) 100%),
      url("assets/hero-custom-bg.png") 28% center / cover no-repeat;
  }
}



/* Mobile promo banner spacing fix */
@media (max-width: 900px) {
  .promo-coded-content {
    padding-bottom: 34px !important;
  }

  .promo-coded-art {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .promo-coded-content {
    padding-bottom: 28px !important;
  }
}



/* Remove sticky/header call button on mobile */
@media (max-width: 860px) {
  .top-nav .call-chip {
    display: none !important;
  }
}



/* Desktop promo truck position refinement */
@media (min-width: 901px) {
  .promo-coded-content {
    padding-right: clamp(260px, 25vw, 410px) !important;
  }

  .promo-coded-art {
    right: max(-34px, calc((100vw - var(--max)) / 2 - 48px)) !important;
    width: clamp(205px, 18vw, 300px) !important;
    height: clamp(145px, 16vw, 220px) !important;
    opacity: .74 !important;
    background-position: right bottom !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .promo-coded-content {
    padding-right: clamp(220px, 23vw, 300px) !important;
  }

  .promo-coded-art {
    right: max(-28px, calc((100vw - var(--max)) / 2 - 36px)) !important;
    width: clamp(180px, 17vw, 245px) !important;
    height: clamp(132px, 15vw, 195px) !important;
    opacity: .68 !important;
  }
}



/* Better yellow truck icon for the right info strip */
.info-strip .strip-item:nth-child(3) .strip-icon {
  color: transparent !important;
  font-size: 0 !important;
  position: relative;
}

.info-strip .strip-item:nth-child(3) .strip-icon::before {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23f0bf2f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 38V24h28v14'/%3E%3Cpath d='M36 28h10l8 8v8H36z'/%3E%3Cpath d='M46 28v8h8'/%3E%3Ccircle cx='20' cy='46' r='5' fill='%23f0bf2f' stroke='none'/%3E%3Ccircle cx='46' cy='46' r='5' fill='%23f0bf2f' stroke='none'/%3E%3Cpath d='M8 38h46'/%3E%3Cpath d='M10 24h22'/%3E%3C/g%3E%3C/svg%3E");
  filter: drop-shadow(0 0 1px rgba(240,191,47,.25));
}



/* Final desktop truck cleanup: make the truck a subtle far-right accent */
@media (min-width: 901px) {
  .promo-coded-content {
    padding-right: clamp(290px, 27vw, 430px) !important;
  }

  .promo-coded-art {
    right: max(-44px, calc((100vw - var(--max)) / 2 - 70px)) !important;
    bottom: 6px !important;
    width: clamp(170px, 15vw, 245px) !important;
    height: clamp(120px, 13vw, 190px) !important;
    opacity: 0.26 !important;
    background-size: contain !important;
    background-position: right bottom !important;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,.14)) !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .promo-coded-content {
    padding-right: clamp(230px, 24vw, 310px) !important;
  }

  .promo-coded-art {
    right: max(-34px, calc((100vw - var(--max)) / 2 - 48px)) !important;
    width: clamp(150px, 14vw, 210px) !important;
    height: clamp(110px, 12vw, 170px) !important;
    opacity: 0.22 !important;
  }
}



/* Make red-section truck a far-right subtle watermark only */
@media (min-width: 901px) {
  .promo-coded-content {
    padding-right: 0 !important;
    grid-template-columns: minmax(320px, .85fr) 1px minmax(520px, 1.6fr) !important;
  }

  .promo-coded-copy,
  .promo-coded-location,
  .promo-coded-divider {
    position: relative;
    z-index: 4;
  }

  .promo-coded-art {
    right: max(-140px, calc((100vw - var(--max)) / 2 - 150px)) !important;
    bottom: 4px !important;
    width: clamp(220px, 22vw, 390px) !important;
    height: clamp(135px, 15vw, 225px) !important;
    opacity: 0.13 !important;
    z-index: 1 !important;
    background-position: right bottom !important;
    filter: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .promo-coded-content {
    grid-template-columns: minmax(275px, .9fr) 1px minmax(420px, 1.35fr) !important;
  }

  .promo-coded-art {
    right: -115px !important;
    width: clamp(190px, 20vw, 310px) !important;
    opacity: 0.10 !important;
  }
}



/* Services page icon color/style unification */
.service-card .icon {
  border-color: var(--gold) !important;
  color: transparent !important;
  font-size: 0 !important;
  position: relative;
}

.service-card .icon::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 0 1px rgba(240,191,47,.14));
}

.service-card:nth-child(1) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23f0bf2f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='32' r='8'/%3E%3Cpath d='M32 12v6M32 46v6M12 32h6M46 32h6M18 18l4 4M42 42l4 4M46 18l-4 4M18 46l4-4'/%3E%3C/g%3E%3C/svg%3E");
}

.service-card:nth-child(2) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23f0bf2f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 42h28M22 42V24h20v18M22 28h20M18 20h28M26 18v-4M38 18v-4M26 46v4M38 46v4'/%3E%3C/g%3E%3C/svg%3E");
}

.service-card:nth-child(3) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23f0bf2f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M34 10 18 36h12l-2 18 18-28H34l0-16Z'/%3E%3C/g%3E%3C/svg%3E");
}

.service-card:nth-child(4) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23f0bf2f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 10c7 10 12 16 12 24a12 12 0 1 1-24 0c0-8 5-14 12-24Z'/%3E%3Cpath d='M28 42c2 2 6 2 8 0'/%3E%3C/g%3E%3C/svg%3E");
}

.service-card:nth-child(5) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23f0bf2f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='28' cy='28' r='10'/%3E%3Cpath d='m36 36 10 10'/%3E%3Cpath d='M28 24v8M24 28h8'/%3E%3C/g%3E%3C/svg%3E");
}

.service-card:nth-child(6) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23f0bf2f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 20h36M14 32h36M14 44h36'/%3E%3Ccircle cx='18' cy='20' r='3' fill='%23f0bf2f' stroke='none'/%3E%3Ccircle cx='46' cy='32' r='3' fill='%23f0bf2f' stroke='none'/%3E%3Ccircle cx='26' cy='44' r='3' fill='%23f0bf2f' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
}

.service-card:nth-child(7) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23f0bf2f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 38V24h28v14'/%3E%3Cpath d='M36 28h10l8 8v8H36z'/%3E%3Cpath d='M46 28v8h8'/%3E%3Ccircle cx='20' cy='46' r='5' fill='%23f0bf2f' stroke='none'/%3E%3Ccircle cx='46' cy='46' r='5' fill='%23f0bf2f' stroke='none'/%3E%3Cpath d='M8 38h46'/%3E%3C/g%3E%3C/svg%3E");
}

.service-card:nth-child(8) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23f0bf2f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 24h32v24H16z'/%3E%3Cpath d='M24 24v-6h16v6M24 34h16M24 42h10'/%3E%3C/g%3E%3C/svg%3E");
}



/* Services page icons back to red */
.service-card .icon {
  border-color: #cf3022 !important;
}

.service-card .icon::before {
  filter: drop-shadow(0 0 1px rgba(207,48,34,.14)) !important;
}

.service-card:nth-child(1) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23cf3022' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='32' r='8'/%3E%3Cpath d='M32 12v6M32 46v6M12 32h6M46 32h6M18 18l4 4M42 42l4 4M46 18l-4 4M18 46l4-4'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.service-card:nth-child(2) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23cf3022' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 42h28M22 42V24h20v18M22 28h20M18 20h28M26 18v-4M38 18v-4M26 46v4M38 46v4'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.service-card:nth-child(3) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23cf3022' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M34 10 18 36h12l-2 18 18-28H34l0-16Z'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.service-card:nth-child(4) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23cf3022' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 10c7 10 12 16 12 24a12 12 0 1 1-24 0c0-8 5-14 12-24Z'/%3E%3Cpath d='M28 42c2 2 6 2 8 0'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.service-card:nth-child(5) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23cf3022' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='28' cy='28' r='10'/%3E%3Cpath d='m36 36 10 10'/%3E%3Cpath d='M28 24v8M24 28h8'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.service-card:nth-child(6) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23cf3022' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 20h36M14 32h36M14 44h36'/%3E%3Ccircle cx='18' cy='20' r='3' fill='%23cf3022' stroke='none'/%3E%3Ccircle cx='46' cy='32' r='3' fill='%23cf3022' stroke='none'/%3E%3Ccircle cx='26' cy='44' r='3' fill='%23cf3022' stroke='none'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.service-card:nth-child(7) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23cf3022' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 38V24h28v14'/%3E%3Cpath d='M36 28h10l8 8v8H36z'/%3E%3Cpath d='M46 28v8h8'/%3E%3Ccircle cx='20' cy='46' r='5' fill='%23cf3022' stroke='none'/%3E%3Ccircle cx='46' cy='46' r='5' fill='%23cf3022' stroke='none'/%3E%3Cpath d='M8 38h46'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.service-card:nth-child(8) .icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23cf3022' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 24h32v24H16z'/%3E%3Cpath d='M24 24v-6h16v6M24 34h16M24 42h10'/%3E%3C/g%3E%3C/svg%3E") !important;
}



/* Final Services page callout section */
.services-callout {
  margin-top: 34px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.76)),
    linear-gradient(180deg, #15120e, #050505) !important;
  border: 1px solid rgba(240,184,29,.22) !important;
  box-shadow: 0 22px 52px rgba(0,0,0,.28) !important;
}

.services-callout-inner {
  display: grid !important;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr) !important;
  gap: 30px !important;
  align-items: center !important;
  padding: clamp(24px, 3vw, 38px) !important;
}

.services-callout-copy {
  color: #f7f1e8 !important;
  min-width: 0 !important;
}

.services-callout .callout-kicker {
  color: var(--gold) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
  margin-bottom: 10px !important;
}

.services-callout h2 {
  margin: 0 0 14px !important;
  color: #fff7ea !important;
  font-family: Oswald, sans-serif !important;
  text-transform: uppercase !important;
  font-size: clamp(2.35rem, 3.6vw, 4.25rem) !important;
  line-height: .94 !important;
  letter-spacing: .02em !important;
  text-shadow: 0 6px 20px rgba(0,0,0,.5) !important;
}

.services-callout h2 .gold {
  color: var(--gold) !important;
}

.services-callout .callout-lead {
  color: #e8ded1 !important;
  font-size: 1.08rem !important;
  line-height: 1.58 !important;
  max-width: 660px !important;
  margin: 0 0 18px !important;
}

.services-callout .bullet-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 11px 22px !important;
  margin: 0 0 24px !important;
}

.services-callout .bullet-list div {
  color: #f2eee8 !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.services-callout .bullet-list .check {
  color: var(--gold) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.services-callout .callout-btn {
  width: auto !important;
  min-width: 210px !important;
  box-shadow: 0 14px 28px rgba(183,25,24,.24) !important;
}

.services-callout-image {
  min-height: 330px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.10), rgba(0,0,0,.34)),
    url("assets/services-repair-callout.jpg") center center / cover no-repeat !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 18px 38px rgba(0,0,0,.32) !important;
}

.services-callout .highlight-art,
.services-callout .highlight-art::before,
.services-callout .highlight-art::after {
  display: none !important;
}

@media (max-width: 1180px) {
  .services-callout-inner {
    grid-template-columns: 1fr !important;
  }

  .services-callout-image {
    min-height: 360px !important;
  }
}

@media (max-width: 640px) {
  .services-callout-inner {
    padding: 20px !important;
    gap: 20px !important;
  }

  .services-callout h2 {
    font-size: clamp(2rem, 10vw, 3.15rem) !important;
  }

  .services-callout .callout-lead {
    font-size: 1rem !important;
  }

  .services-callout .bullet-list {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .services-callout .callout-btn {
    width: 100% !important;
  }

  .services-callout-image {
    min-height: 235px !important;
  }
}



/* Compact services callout refinement */
.services-callout {
  margin-top: 28px !important;
}

.services-callout-inner {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .92fr) !important;
  gap: 22px !important;
  padding: 18px 22px !important;
}

.services-callout .callout-kicker {
  margin-bottom: 8px !important;
  font-size: .86rem !important;
}

.services-callout h2 {
  font-size: clamp(2rem, 3vw, 3.35rem) !important;
  margin: 0 0 10px !important;
  line-height: .95 !important;
}

.services-callout .callout-lead {
  font-size: .98rem !important;
  line-height: 1.48 !important;
  max-width: 560px !important;
  margin: 0 0 14px !important;
}

.services-callout .bullet-list {
  gap: 8px 18px !important;
  margin: 0 0 18px !important;
}

.services-callout .bullet-list div {
  font-size: .96rem !important;
}

.services-callout .callout-btn {
  min-width: 176px !important;
  padding: 14px 22px !important;
}

.services-callout-image {
  min-height: 230px !important;
  border-radius: 15px !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,.34)),
    url("assets/services-repair-callout.jpg") center center / cover no-repeat !important;
}

@media (max-width: 1180px) {
  .services-callout-inner {
    grid-template-columns: 1fr !important;
    padding: 20px !important;
    gap: 18px !important;
  }

  .services-callout-image {
    min-height: 260px !important;
  }
}

@media (max-width: 640px) {
  .services-callout-inner {
    padding: 18px !important;
    gap: 16px !important;
  }

  .services-callout h2 {
    font-size: clamp(1.95rem, 9vw, 2.8rem) !important;
    margin-bottom: 10px !important;
  }

  .services-callout .callout-lead {
    font-size: .98rem !important;
  }

  .services-callout .bullet-list {
    gap: 9px !important;
    margin-bottom: 16px !important;
  }

  .services-callout .callout-btn {
    width: auto !important;
    min-width: 0 !important;
    display: inline-flex !important;
    justify-content: center !important;
  }

  .services-callout-image {
    min-height: 210px !important;
  }
}



/* Remove paragraph spacing from Services callout */
.services-callout .callout-lead {
  display: none !important;
}

.services-callout .bullet-list {
  margin-top: 4px !important;
}



/* Center services icons inside the circles */
.service-card .icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center !important;
  padding: 0 !important;
}

.service-card .icon::before {
  margin: 0 auto !important;
  position: static !important;
}



/* About page mission image + owner section color fixes */
.about-grid .highlight-art {
  min-height: 230px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,.34)),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    url("assets/about-mission-image.jpg") center center / cover no-repeat !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.18) !important;
}

.about-grid .highlight-art::before,
.about-grid .highlight-art::after {
  display: none !important;
}

.owner-card {
  background: linear-gradient(135deg, #141414 0%, #090909 100%) !important;
  border: 1px solid rgba(240,184,29,.16) !important;
  box-shadow: 0 20px 42px rgba(0,0,0,.20) !important;
}

.owner-photo {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.05), rgba(255,255,255,0) 45%),
    linear-gradient(180deg, #303030, #0b0b0b) !important;
}

.owner-content {
  padding: 26px 28px 28px 0 !important;
  color: #e7ddd0 !important;
}

.owner-kicker {
  color: var(--gold) !important;
}

.owner-name {
  color: #fff5e8 !important;
  margin: 6px 0 14px !important;
  text-shadow: 0 3px 14px rgba(0,0,0,.25);
}

.owner-content p {
  color: #ded4c6 !important;
  line-height: 1.6 !important;
  margin-bottom: 14px !important;
}

.owner-content p:last-child {
  color: #e4d2b7 !important;
  font-weight: 700 !important;
}

@media (max-width: 860px) {
  .about-grid .highlight-art {
    min-height: 250px !important;
  }

  .owner-content {
    padding: 0 18px 22px !important;
  }
}



/* Move red-section truck farther right */
@media (min-width: 901px) {
  .promo-coded-content {
    padding-right: 0 !important;
    grid-template-columns: minmax(320px, .9fr) 1px minmax(520px, 1.55fr) !important;
  }

  .promo-coded-art {
    right: max(-185px, calc((100vw - var(--max)) / 2 - 190px)) !important;
    width: clamp(230px, 22vw, 380px) !important;
    height: clamp(145px, 16vw, 230px) !important;
    opacity: 0.12 !important;
    background-position: right bottom !important;
    z-index: 1 !important;
  }

  .promo-coded-copy,
  .promo-coded-location,
  .promo-coded-divider {
    position: relative;
    z-index: 3;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .promo-coded-art {
    right: -150px !important;
    width: clamp(205px, 20vw, 300px) !important;
    opacity: 0.10 !important;
  }
}



/* Remove truck image from red promo section */
.promo-coded-art {
  display: none !important;
}

@media (min-width: 901px) {
  .promo-coded-content {
    padding-right: 0 !important;
    grid-template-columns: minmax(320px, .9fr) 1px minmax(520px, 1.55fr) !important;
  }
}

@media (max-width: 900px) {
  .promo-coded-content {
    padding-bottom: 34px !important;
  }
}



/* Larger mobile hamburger menu button */
@media (max-width: 860px) {
  .menu-toggle {
    width: 72px !important;
    height: 72px !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    font-size: 2.05rem !important;
    line-height: 1 !important;
    border-radius: 18px !important;
    border: 2px solid rgba(255,255,255,.18) !important;
    background: rgba(255,255,255,.025) !important;
  }

  .nav-links a {
    font-size: 1.22rem !important;
    padding: 16px 18px !important;
  }
}

@media (max-width: 480px) {
  .menu-toggle {
    width: 68px !important;
    height: 68px !important;
    font-size: 1.95rem !important;
  }
}



/* Mobile homepage text scale refinement */
@media (max-width: 640px) {
  /* Red Cleveland / downtime section */
  .promo-coded-content {
    padding-top: 22px !important;
    padding-bottom: 26px !important;
    gap: 16px !important;
  }

  .promo-coded-location {
    grid-template-columns: 54px 1fr !important;
    gap: 12px !important;
  }

  .promo-coded-pin-wrap {
    width: 50px !important;
    height: 58px !important;
  }

  .promo-coded-pin {
    width: 42px !important;
    height: 42px !important;
    left: 4px !important;
  }

  .promo-coded-pin::before {
    inset: 12px !important;
  }

  .promo-coded-pin-ring {
    width: 38px !important;
    height: 9px !important;
    left: 6px !important;
    bottom: 1px !important;
  }

  .promo-coded-kicker {
    font-size: .88rem !important;
    margin-bottom: 5px !important;
  }

  .promo-coded-city {
    font-size: clamp(1.7rem, 8.8vw, 2.35rem) !important;
    line-height: .96 !important;
    letter-spacing: .01em !important;
  }

  .promo-coded-area {
    font-size: .82rem !important;
    margin-top: 5px !important;
  }

  .promo-coded-copy h2 {
    font-size: clamp(1.9rem, 9.8vw, 2.72rem) !important;
    line-height: .98 !important;
    margin-bottom: 8px !important;
    letter-spacing: .01em !important;
  }

  .promo-coded-copy p {
    font-size: .92rem !important;
    line-height: 1.42 !important;
    max-width: 94% !important;
  }

  /* Black CTA row directly below red section */
  .cta-card {
    padding: 18px 18px !important;
  }

  .cta-card .big-number {
    font-size: 2.15rem !important;
    line-height: 1 !important;
  }

  .cta-card h3 {
    font-size: 1.25rem !important;
  }

  .cta-card p {
    font-size: .92rem !important;
  }

  .center-card .btn,
  .cta-card .btn {
    font-size: 1.2rem !important;
    padding: 14px 18px !important;
  }

  .cta-box {
    width: 58px !important;
    height: 58px !important;
    font-size: 1.55rem !important;
  }

  /* Hero text on small phones */
  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem) !important;
  }

  .hero-sub {
    font-size: 1.18rem !important;
  }

  .hero-tagline {
    font-size: 1.03rem !important;
  }

  .check-item {
    font-size: 1.02rem !important;
  }
}

@media (max-width: 420px) {
  .promo-coded-city {
    font-size: clamp(1.55rem, 8.5vw, 2.05rem) !important;
  }

  .promo-coded-copy h2 {
    font-size: clamp(1.72rem, 9.1vw, 2.35rem) !important;
  }

  .promo-coded-copy p {
    font-size: .88rem !important;
  }

  .cta-card .big-number {
    font-size: 1.95rem !important;
  }
}



/* Slightly smaller mobile hamburger menu button */
@media (max-width: 860px) {
  .menu-toggle {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.7rem !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 480px) {
  .menu-toggle {
    width: 58px !important;
    height: 58px !important;
    font-size: 1.6rem !important;
  }
}
\n\n
/* Form submission status messages */
.form-status {
  margin-top: 12px;
  font-weight: 700;
  font-size: .95rem;
  color: #fff4d0;
}

.form-status.success {
  color: #d6ffd8;
}

.form-status.error {
  color: #ffd6d6;
}

.lead-form button:disabled {
  opacity: .72;
  cursor: wait;
}
