:root {
	--font-body: 'Plus Jakarta Sans', sans-serif;
	--font-head: 'Marcellus', sans-serif;
	--link-font-family: 'Plus Jakarta Sans', sans-serif;
	--heading-font-color: #171717;
	--heading-font-weight: 700;
	--body-font-color: #616670;
	--paragraph-color: #616670;
	--section-background: #F3F3F3;
	--body-font-size: 16px;
	--body-font-weight: 400;
	--body-line-height: 1.875em;
	--section-title-line-height: 1.25em;
	--footer-font-colour: rgba(255, 255, 255, 0.8);
	--transision: all 0.3s ease-out 0s;
	--border-colour: #E3E3E3;
	--brand-black: #171717;
	--brand-white: #ffffff;	
	--brand-primary: #0c3a59;
	--brand-dark:    #111418;
	--brand-steel:   #c08a3e;
	--brand-steel-dk: #080b11;
	--brand-mid:     #2c3545;
	--brand-gray:    #5a6372;
	--brand-light:   #f4f5f6;
	--brand-accent:  #d4a017;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--brand-dark);
  background: var(--brand-white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.text-brand-steel { color: var(--brand-steel) !important; }
.text-primary    { color: var(--brand-primary) !important; }
.bg-steel    { background-color: var(--brand-steel); }
.bg-primary    { background-color: var(--brand-primary)!important; }
.bg-white    { background-color: var(--brand-white); }
.bg-dark-brand { background-color: var(--brand-dark); }
.bg-mid    { background-color: var(--brand-mid); }
.bg-gray    { background-color: var(--brand-gray); }
.bg-light    { background-color: var(--brand-light); }

.bg-steel h1, .bg-steel h2, .bg-steel h3, .bg-steel h4, .bg-steel h5, .bg-steel h6 {
	color: var(--brand-white);
}

.bg-steel p, .bg-steel a, .bg-steel span {
	color: var(--brand-white);
}

.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5, .bg-primary h6 {
	color: var(--brand-white);
}

.bg-primary p, .bg-primary a, .bg-primary span {
	color: var(--brand-white);
}

.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6 {
	color: var(--brand-dark);
}

.bg-white p, .bg-white a, .bg-white span {
	color: var(--brand-dark);
}

.bg-dark-brand h1, .bg-dark-brand h2, .bg-dark-brand h3, .bg-dark-brand h4, .bg-dark-brand h5, .bg-dark-brand h6 {
	color: var(--brand-white);
}

.bg-dark-brand p, .bg-dark-brand a, .bg-dark-brand span {
	color: var(--brand-white);
}

.bg-mid h1, .bg-mid h2, .bg-mid h3, .bg-mid h4, .bg-mid h5, .bg-mid h6 {
	color: var(--brand-dark);
}

.bg-mid p, .bg-mid a, .bg-mid span {
	color: var(--brand-dark);
}

.bg-gray h1, .bg-gray h2, .bg-gray h3, .bg-gray h4, .bg-gray h5, .bg-gray h6 {
	color: var(--brand-dark);
}

.bg-gray p, .bg-gray a, .bg-gray span {
	color: var(--brand-dark);
}

.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4, .bg-light h5, .bg-light h6 {
	color: var(--brand-dark);
}

.bg-light p, .bg-light a, .bg-light span {
	color: var(--brand-dark);
}

/* ── NAVBAR ── */
.navbar-summit {
  background: var(--brand-light);
  padding: 0;
  border-bottom: 3px solid var(--brand-primary);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-summit .navbar-brand img { height: 52px; }
.navbar-summit .nav-link {
  color: var(--brand-primary) !important;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1.1rem 1rem !important;
  transition: color .2s;
}
.navbar-summit .nav-link:hover { color: var(--brand-dark) !important; }
.navbar-summit .btn-nav-quote {
  background: var(--brand-steel);
  color: var(--brand-white) !important;
  border-radius: 0;
  padding: .65rem 1.4rem !important;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s;
}
.navbar-summit .btn-nav-quote:hover { background: var(--brand-dark); }
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
	linear-gradient(110deg, rgba(17,20,24,.92) 0%, rgba(17,20,24,.60) 60%, rgba(17,20,24,.35) 100%),
	url('../images/home-hero-banner.jpg');
  background-size: cover;
  background-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--brand-dark), transparent);
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-steel);
  border-left: 3px solid var(--brand-steel);
  padding-left: .75rem;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--brand-steel); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.78) !important;
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.2rem;
}
.hero-pills span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 2px;
}
.btn-hero-primary {
  background: var(--brand-steel);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: .75rem 2rem;
  border: none;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
  position: relative;
}
.btn-hero-primary:hover {
  background: var(--brand-steel-dk);
  color: #fff;
  transform: translateY(-2px);
}
.btn-hero-secondary {
  background: transparent;
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.hero-stat-bar {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-steel);
  line-height: 1;
}
.hero-stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-steel);
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--brand-dark);
}
.section-title-light { color: var(--brand-light); }
.section-title-dark { color: var(--brand-steel); }
.section-divider {
  width: 50px;
  height: 4px;
  background: var(--brand-steel);
  margin: 1rem 0 1.5rem;
}

/* ── INTRO ── */
.intro-section {
  padding: 72px 0 48px 0;
}
.intro-section p {
  font-size: 1.1rem;
  line-height: 1.8;
}
.intro-section strong { color: var(--brand-steel-dk); }

/* ── SERVICE AREA ── */
.service-area {
  padding: 80px 0;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.city-card {
  background: var(--brand-white);
  border: 1px solid #e2e5e9;
  border-left: 4px solid var(--brand-steel);
  padding: .8rem 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: box-shadow .2s, transform .15s;
}
.city-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.city-card i { color: var(--brand-steel); font-size: .9rem; }
.area-note {
  margin-top: 1.5rem;
  font-size: .95rem;
}

/* ── SERVICES ── */
.services-section {
  padding: 80px 0;
}
.service-card {
  background: var(--brand-primary);
  border-top: 4px solid var(--brand-steel);
  padding: 2rem 1.8rem;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: #fff;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.service-card p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  line-height: 1.7;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: .8rem 0 0;
}
.service-list li {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-white);
  flex-shrink: 0;
}

/* ── INDUSTRIES ── */
.industries-section {
  padding: 80px 0;
}
.industry-block {
  border: 1px solid var(--brand-gray);
  padding: 2rem;
  height: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.industry-block:hover {
  border-color: var(--brand-light);
  box-shadow: 0 4px 20px rgba(192,57,43,.12);
}
.industry-block h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.industry-block h3 i { color: var(--brand-white); }
.industry-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.industry-block ul li {
  padding: .35rem 0;
  border-bottom: 1px solid var(--brand-gray);
  font-size: .95rem;
  color: var(--brand-white);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.industry-block ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--brand-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── BENEFITS ── */
.benefits-section {
  padding: 80px 0;
}
.benefit-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.benefit-item h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.benefit-item p {
  font-size: .9rem;
  margin: 0;
  line-height: 1.6;
}

/* ── GALLERY ── */
.gallery-section {
  padding: 80px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 8px;
  margin-top: 2rem;
}
.gallery-grid .gitem { overflow: hidden; position: relative; }
.gallery-grid .gitem.featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.gallery-grid .gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-grid .gitem:hover img { transform: scale(1.05); }
.gallery-grid .gitem-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,20,24,.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-grid .gitem:hover .gitem-overlay { opacity: 1; }
.gallery-grid .gitem-label {
  position: absolute;
  bottom: .8rem;
  left: .8rem;
  color: rgba(255,255,255,.9);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-grid .gitem:hover .gitem-label { opacity: 1; }
@media (max-width: 768px) {
  .gallery-grid {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
  }
  .gallery-grid .gitem.featured { grid-column: auto; grid-row: auto; }
  .gallery-grid .gitem { height: 180px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gitem { height: 200px; }
}

/* ── ABOUT ── */
.about-section {
  padding: 80px 0;
}
.about-section p {
  font-size: 1.05rem;
  line-height: 1.85;
}
.about-badge {
  background: var(--brand-light);
  border-left: 4px solid var(--brand-steel);
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(0,0,0,.12);
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.75;
}
.btn-cta-white {
  background: #fff;
  color: var(--brand-steel) !important;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-cta-white:hover {
  background: var(--brand-light);
  color: var(--brand-steel-dk) !important;
  transform: translateY(-2px);
}
.btn-cta-outline {
  background: transparent;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s;
}
.btn-cta-outline:hover {
  border-color: #fff;
  color: #fff;
}

/* ── INTERNAL LINKS BAR ── */
.links-bar {
  background: var(--brand-steel);
  padding: 40px 0;
}
.links-bar h3 {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.link-chip {
  display: inline-block;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  text-decoration: none;
  margin: .25rem;
  transition: background .2s, color .2s;
}
.link-chip:hover {
  background: var(--brand-steel);
  border-color: var(--brand-steel);
  color: #fff;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--brand-dark);
  border-top: 3px solid var(--brand-steel);
  padding: 50px 0 24px;
}
.site-footer .footer-logo img { height: 48px; filter: brightness(0) invert(1); }
.site-footer p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  line-height: 1.7;
}
.site-footer .footer-links a {
  color: rgba(255,255,255,.55);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: .25rem 0;
  transition: color .2s;
}
.site-footer .footer-links a:hover { color: var(--brand-steel); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
}

/* ── INTRO SECTION (white bg) ── */
.intro-section {
  padding: 80px 0;
}
.intro-section p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--brand-gray);
  margin-bottom: 1rem;
}
.intro-section strong { color: var(--brand-dark); }

/* ── WHY CHOOSE SECTION ── */
.why-choose-section {
  padding: 80px 0;
}
.feature-card {
  border: 1px solid rgba(255,255,255,.1);
  border-top: 4px solid var(--brand-steel);
  padding: 1.8rem;
  height: 100%;
  transition: background .2s, box-shadow .2s;
}
.feature-card:hover {
  background: rgba(255,255,255,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}
.feature-card h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: .5rem;
}
.feature-card p {
  color: var(--brand-dark);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}
.feature-card-list {
  margin: 0;
  padding: 0 0 0 16px;  
}
/* ── BENEFITS SECTION ── */
.benefits-section {
  padding: 80px 0;
}
.benefits-intro {
  max-width: 620px;
  margin: 0 auto;
  color: var(--brand-gray);
  font-size: 1rem;
  line-height: 1.7;
}
.benefits-group-heading {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand-steel);
  border-bottom: 2px solid var(--brand-steel);
  padding-bottom: .5rem;
  margin-bottom: 1.5rem;
}
.benefit-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.benefit-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.benefit-item p {
  font-size: .88rem;
  margin: 0;
  line-height: 1.6;
}

/* ── SERVICE CARD LINK ── */
.service-link {
  color: var(--brand-white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: color .2s;
}
.service-link:hover { color: var(--brand-steel); }

/* ── CITY CARD LINK VARIANT ── */
.city-card-link {
  text-decoration: none;
  color: var(--brand-dark);
}
.city-card-link:hover {
  color: var(--brand-dark);
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(0,0,0,.1);
  pointer-events: none;
}
.cta-eyebrow {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: .6rem;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1rem, 5vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--brand-white);
}
.cta-section p {
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
}

/* ── FOOTER COLUMN HEADER ── */
.footer-col-head {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .8rem;
}
.footer-coverage {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  line-height: 1.9;
}

/* ── ABOUT BADGE ── */
.about-badge {
  background: var(--brand-light);
  border-left: 4px solid var(--brand-steel);
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bg-wrapper {
  position: relative;
}

.bg-wrapper > .container {
  position: relative;
  z-index: 1;
}

.concrete-driveway-bg{
  position: absolute;
  inset: 0;
  background-image:
	linear-gradient(110deg, rgba(17,20,24,.92) 0%, rgba(17,20,24,.60) 60%, rgba(17,20,24,.35) 100%),
	url('../images/concrete-driveway.jpg');
  background-size: cover;
  background-position: center 40%; 
}

.image-wrapper img {
  max-width: 100%;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  opacity: 0;
  animation: fadeUp .7s ease forwards;
}
.hero-content .hero-eyebrow { animation-delay: .1s; }
.hero-content h1            { animation-delay: .25s; }
.hero-content .hero-sub     { animation-delay: .4s; }
.hero-content .hero-pills   { animation-delay: .5s; }
.hero-content .hero-cta-row { animation-delay: .6s; }
.hero-content .hero-stat-bar{ animation-delay: .75s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-stat-bar { gap: 1.5rem; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .industry-block { margin-bottom: 1rem; }
}