/* ========================================
   RESET & BASE
   Brand colors from logo:
   Orange  : #C94A1A  (Ash)
   Dark    : #1A3329  (Build / dark green)
   Accent  : #C94A1A
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  color: #1f2328;
  line-height: 1.65;
  background: #fff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: auto; }

/* ========================================
   UTILITIES
======================================== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C94A1A;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  color: #1A3329;
  line-height: 1.2;
  margin-bottom: 12px;
}
h3 { font-size: 18px; font-weight: 700; color: #1A3329; margin-bottom: 8px; }
h4 { font-size: 15px; font-weight: 700; color: #1A3329; margin-bottom: 6px; }

.section-sub {
  color: #57606a;
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  border: 2px solid transparent;
  letter-spacing: .2px;
}
.btn-orange { background: #C94A1A; color: #fff; border-color: #C94A1A; }
.btn-orange:hover { background: #a83a12; border-color: #a83a12; }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: #fff; color: #1A3329; }
.btn-outline-dark { background: transparent; color: #1A3329; border-color: #1A3329; }
.btn-outline-dark:hover { background: #1A3329; color: #fff; }

.link-orange {
  font-size: 13px;
  font-weight: 700;
  color: #C94A1A;
  display: inline-block;
  margin-top: 16px;
  letter-spacing: .2px;
}
.link-orange:hover { text-decoration: underline; }

/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow .2s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  transition: color .2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: #C94A1A; border-bottom-color: #C94A1A; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.phone { font-size: 13px; font-weight: 700; color: #1A3329; white-space: nowrap; }
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #1A3329; line-height: 1; }

/* ── Nav dropdown (desktop only) ── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.nav-arrow { display: none; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  background: transparent;
  z-index: 2000;
}
/* invisible bridge fills the gap so hover isn't lost */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown-menu-inner {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26,51,41,.12);
  min-width: 210px;
  padding: 8px 0;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #444;
  border-bottom: none !important;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover { background: #f7f8fa; color: #C94A1A; }

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  background: url('images/residential-before.webp') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(15, 22, 18, 0.88) 0%,
    rgba(26, 51, 41, 0.72) 50%,
    rgba(26, 51, 41, 0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 36px;
}
.hero-content h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.hero-lead {
  color: rgba(255,255,255,.95);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,.72);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero badge strip */
.hero-badges {
  position: relative;
  z-index: 1;
  background: rgba(26, 51, 41, 0.65);
  border-top: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
}
.hero-badges-inner {
  display: flex;
}
.badge-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  border-right: 1px solid rgba(255,255,255,.12);
}
.badge-item:last-child { border-right: none; }
.badge-icon { font-size: 20px; }

/* ========================================
   SERVICES
======================================== */
.services { background: #fff; text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
  text-align: left;
}
.service-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s;
}
.service-card:hover { box-shadow: 0 6px 28px rgba(26,51,41,.10); }
.service-img-wrap { height: 210px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-img-wrap img { transform: scale(1.04); }
.service-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { margin-bottom: 8px; }
.service-body p { font-size: 14px; color: #57606a; margin-bottom: 14px; }
.service-body ul { flex: 1; }
.service-body ul li {
  font-size: 13.5px;
  color: #444;
  padding: 4px 0 4px 18px;
  position: relative;
  border-bottom: 1px solid #f0f1f3;
}
.service-body ul li:last-child { border-bottom: none; }
.service-body ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #C94A1A;
  font-weight: 700;
}

/* ========================================
   DESIGN BUILD
======================================== */
.design-build { background: #f7f8fa; }
.design-build-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.db-text p { color: #57606a; margin-bottom: 20px; font-size: 15px; line-height: 1.7; }
.db-list { margin-bottom: 30px; }
.db-list li {
  font-size: 14px;
  color: #444;
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.5;
}
.db-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #C94A1A;
  font-weight: 700;
}
.db-image img {
  border-radius: 12px;
  height: 400px;
  object-fit: cover;
  object-position: center top;
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-us { background: #fff; text-align: center; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
  text-align: left;
}
.why-card {
  background: #f7f8fa;
  border-radius: 10px;
  padding: 28px 26px;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #C94A1A;
}
.why-icon { display: none; }
.why-card h4 { color: #1A3329; margin-bottom: 8px; font-size: 15.5px; }
.why-card p { font-size: 14px; color: #57606a; line-height: 1.65; }

/* ========================================
   HOW IT WORKS
======================================== */
.how-it-works { background: #1A3329; text-align: center; }
.how-it-works .overline { color: #C94A1A; }
.how-it-works h2 { color: #fff; }
.how-it-works .section-sub { color: rgba(255,255,255,.65); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 32px 22px;
  text-align: left;
}
.step-num {
  width: 44px;
  height: 44px;
  background: #C94A1A;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-card h4 { color: #fff; font-size: 15px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials { background: #fff; text-align: center; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
  text-align: left;
}
.testi-card {
  background: #f7f8fa;
  border-radius: 10px;
  padding: 28px 26px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars { color: #C94A1A; font-size: 17px; letter-spacing: 3px; }
.testi-card > p { font-size: 14px; color: #444; font-style: italic; line-height: 1.75; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1A3329;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: .5px;
}
.testi-author strong { font-size: 14px; color: #1A3329; }
.testi-author small { font-size: 12px; color: #57606a; }

/* ========================================
   SERVICE AREA
======================================== */
.service-area { background: #f7f8fa; }
.service-area-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.sa-text h2 { margin-bottom: 14px; }
.sa-text > p { color: #57606a; margin-bottom: 26px; font-size: 15px; line-height: 1.7; }
.sa-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
}
.sa-cities span {
  font-size: 14px;
  color: #1A3329;
  font-weight: 600;
  padding: 5px 0 5px 16px;
  position: relative;
  border-bottom: 1px solid #e5e7eb;
}
.sa-cities span::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #C94A1A;
  font-size: 11px;
  top: 7px;
}
.sa-map img {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  width: 100%;
  height: auto;
}

/* ========================================
   QUOTE SECTION
======================================== */
.quote-section { background: #1A3329; }
.quote-section .overline { color: #C94A1A; }
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: start;
}
.quote-text h2 { color: #fff; margin-bottom: 16px; }
.quote-text > p { color: rgba(255,255,255,.72); font-size: 15px; margin-bottom: 28px; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.contact-info li {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.ci-label {
  font-weight: 700;
  color: #fff;
  min-width: 60px;
  font-size: 13px;
  flex-shrink: 0;
}
.fine-print { font-size: 12px; color: rgba(255,255,255,.38); margin-top: 8px; }

/* form */
.quote-form { background: #fff; border-radius: 14px; padding: 36px 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group.full { width: 100%; }
.form-group label { font-size: 13px; font-weight: 700; color: #1A3329; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  color: #1f2328;
  outline: none;
  transition: border-color .2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #C94A1A; }
.form-group textarea { resize: vertical; }
.copy-check { margin-bottom: 14px; }
.copy-check label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #1A3329; cursor: pointer; }
.copy-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: #C94A1A; cursor: pointer; flex-shrink: 0; }
.full-btn { width: 100%; text-align: center; padding: 14px; font-size: 15px; border-radius: 7px; }

/* ========================================
   FOOTER
======================================== */
.footer { background: #0e1e18; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 44px;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-logo-img { height: 40px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.28) !important; margin-top: 10px; font-style: italic; }
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li,
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.55; }
.footer-col ul li a:hover { color: #C94A1A; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-bottom-inner p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-links a:hover { color: #C94A1A; }

/* ========================================
   RESPONSIVE — TABLET  (≤ 1024px)
======================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .design-build-inner { gap: 40px; }
  .quote-inner   { gap: 40px; }
}

/* ========================================
   RESPONSIVE — MOBILE  (≤ 768px)
======================================== */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 24px;
    gap: 20px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; font-weight: 600; padding: 6px 0; border-bottom: 1px solid #f0f1f3; }
  .nav-links a:last-child { border-bottom: none; }
  .hamburger { display: block; }
  /* dropdown on mobile: inline expand on tap */
  .nav-dropdown { position: static; display: block; width: 100%; }
  .nav-dropdown-toggle { display: block; font-size: 16px; font-weight: 600; padding: 6px 0; border-bottom: 1px solid #f0f1f3; width: 100%; text-align: center; }
  .nav-arrow { display: none; }
  .nav-dropdown-menu {
    display: none;
    position: static;
    transform: none;
    padding-top: 0;
    background: transparent;
    z-index: auto;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu.open { display: block; }
  .nav-dropdown-menu-inner {
    background: #f7f8fa;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
    padding: 4px 0 4px 0;
  }
  .nav-dropdown-menu a {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
    color: #444;
    border-bottom: 1px solid #f0f1f3;
  }
  .nav-dropdown-menu a:last-child { border-bottom: none; }
  /* hide phone + CTA button in nav on small screens */
  .phone { display: none; }
  .nav-right .btn { display: none; }

  /* ── Hero ── */
  .hero { min-height: 480px; }
  .hero-content { padding-top: 60px; padding-bottom: 28px; }
  .hero-content h1 { font-size: 36px; margin-bottom: 14px; }
  .hero-lead { font-size: 16px; }
  .hero-sub { font-size: 14px; max-width: 100%; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-btns .btn { width: 100%; text-align: center; padding: 14px; font-size: 15px; }

  /* ── Hero badge strip — 2-col grid ── */
  .hero-badges-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .badge-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 14px 16px;
    font-size: 12px;
  }
  .badge-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.12); }
  .badge-item:nth-child(3),
  .badge-item:nth-child(4)    { border-bottom: none; }

  /* ── Sections ── */
  .section { padding: 52px 0; }
  h2 { font-size: 26px; }
  .section-sub { font-size: 14px; margin-bottom: 32px; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
  .service-img-wrap { height: 200px; }

  /* ── Design Build ── */
  .design-build-inner { grid-template-columns: 1fr; gap: 32px; }
  .db-image { order: -1; }
  .db-image img { height: 230px; }
  .db-text p { font-size: 14px; }

  /* ── Why Us ── */
  .why-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
  .why-card { padding: 22px 20px; }

  /* ── How It Works ── */
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
  .step-card { padding: 24px 18px; }

  /* ── Testimonials ── */
  .testi-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .testi-card { padding: 22px 20px; }

  /* ── Service Area ── */
  .service-area-inner { grid-template-columns: 1fr; gap: 32px; }
  .sa-cities { grid-template-columns: repeat(2, 1fr); gap: 8px 16px; }

  /* ── Quote / Form ── */
  .quote-inner { grid-template-columns: 1fr; gap: 36px; }
  .quote-form { padding: 28px 20px; border-radius: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .full-btn { padding: 15px; font-size: 15px; }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px 28px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 18px 24px;
  }
  .footer-links { justify-content: center; }
}

/* ========================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
======================================== */
@media (max-width: 480px) {

  /* ── Navbar ── */
  .nav-inner { height: 60px; }
  .logo-img  { height: 36px; }
  .nav-links { top: 60px; }

  /* ── Hero ── */
  .hero { min-height: 420px; }
  .hero-content h1 { font-size: 28px; line-height: 1.15; }
  .hero-lead  { font-size: 14px; }
  .hero-sub   { font-size: 13px; }
  .hero-btns .btn { font-size: 14px; padding: 13px; }

  /* badge strip — stack to 1 col */
  .hero-badges-inner { grid-template-columns: 1fr; }
  .badge-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 12px 16px;
  }
  .badge-item:last-child { border-bottom: none; }

  /* ── General ── */
  .section  { padding: 44px 0; }
  h2        { font-size: 23px; }
  .overline { font-size: 10px; }

  /* ── Services ── */
  .service-img-wrap { height: 180px; }
  .service-body { padding: 18px 18px 20px; }

  /* ── How It Works ── */
  .steps-grid { grid-template-columns: 1fr; }

  /* ── Cities ── */
  .sa-cities { grid-template-columns: 1fr 1fr; }

  /* ── Form ── */
  .quote-form { padding: 20px 14px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; /* prevents iOS zoom */ }

  /* ── Footer ── */
  .footer-grid  { padding: 36px 20px 24px; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
}

/* ========================================
   PAGE HERO (inner pages)
======================================== */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15,22,18,.88) 0%, rgba(26,51,41,.72) 55%, rgba(26,51,41,.42) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 52px;
}
.page-hero-content h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 680px;
}
.page-hero-content p {
  color: rgba(255,255,255,.80);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.page-hero-content .btn { margin-top: 16px; }

/* ========================================
   BREADCRUMB
======================================== */
.breadcrumb-bar {
  background: #f7f8fa;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
  font-size: 13px;
  color: #57606a;
}
.breadcrumb-bar a { color: #57606a; }
.breadcrumb-bar a:hover { color: #C94A1A; }
.breadcrumb-bar span { color: #1A3329; font-weight: 600; }
.breadcrumb-bar a::after { content: ""; margin: 0 2px; }

/* ========================================
   STAT STRIP (inner page hero bottom)
======================================== */
.stat-strip { background: #1A3329; }
.stat-strip-inner {
  display: flex;
}
.stat-item {
  flex: 1;
  padding: 20px 22px;
  border-right: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  display: block;
}
.stat-item span { font-size: 12px; color: rgba(255,255,255,.6); }

/* ========================================
   TWO-COLUMN SECTION (shared)
======================================== */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-section.reverse .tc-image { order: -1; }
.tc-text h2 { margin-bottom: 14px; }
.tc-text p { color: #57606a; margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.tc-image img { border-radius: 12px; width: 100%; height: 360px; object-fit: cover; }

/* ========================================
   BACKGROUND VARIANTS
======================================== */
.bg-light { background: #f7f8fa; }
.bg-white { background: #fff; }
.bg-dark   { background: #1A3329; }
.bg-dark .tc-text h2 { color: #fff; }

/* ========================================
   ABOUT PAGE
======================================== */
.about-body-text { color: #57606a; font-size: 15px; line-height: 1.8; margin-bottom: 16px; max-width: 800px; }
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.vmv-card {
  border: 1px solid #e5e7eb;
  border-top: 3px solid #C94A1A;
  border-radius: 8px;
  padding: 26px 22px;
  background: #fff;
}
.vmv-card h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C94A1A;
  margin-bottom: 12px;
}
.vmv-card p { font-size: 14px; color: #57606a; line-height: 1.7; }

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f7f8fa;
  border-radius: 8px;
  padding: 20px 18px;
  border: 1px solid #e5e7eb;
}
.expect-num {
  width: 32px;
  height: 32px;
  background: #C94A1A;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.expect-item p { font-size: 14px; color: #444; margin: 0; line-height: 1.55; }

/* ========================================
   SERVICES PAGE — list & outline button
======================================== */
.svc-list {
  margin: 14px 0 20px;
}
.svc-list li {
  font-size: 14px;
  color: #444;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid #f0f1f3;
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: "–"; position: absolute; left: 0; color: #C94A1A; font-weight: 700; }

.btn-outline-orange {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #C94A1A;
  color: #C94A1A;
  background: transparent;
  transition: background .2s, color .2s;
}
.btn-outline-orange:hover { background: #C94A1A; color: #fff; }

/* step cards on white bg */
.step-light {
  background: #f7f8fa !important;
  border: 1px solid #e5e7eb !important;
}
.step-light h4 { color: #1A3329 !important; }
.step-light p  { color: #57606a !important; }

/* ========================================
   ICON SERVICES GRID
======================================== */
.icon-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  text-align: left;
}
.icon-services-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.icon-svc-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 26px 22px;
  transition: box-shadow .2s;
}
.icon-svc-card:hover { box-shadow: 0 4px 18px rgba(26,51,41,.09); }
.icon-svc-icon { font-size: 28px; margin-bottom: 14px; }
.icon-svc-card h4 { font-size: 15px; margin-bottom: 8px; }
.icon-svc-card p  { font-size: 14px; color: #57606a; line-height: 1.6; }

/* ========================================
   NUMBERED PROCESS LIST
======================================== */
.numbered-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.numbered-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.nl-num {
  font-size: 13px;
  font-weight: 800;
  color: #C94A1A;
  min-width: 28px;
  padding-top: 2px;
}
.numbered-list li > div strong { font-size: 15px; color: #1A3329; display: block; margin-bottom: 4px; }
.numbered-list li > div p { font-size: 14px; color: #57606a; margin: 0; line-height: 1.6; }

/* ========================================
   ARROW LIST
======================================== */
.arrow-list {
  list-style: none;
  margin: 18px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.arrow-list li {
  font-size: 14px;
  color: #444;
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.arrow-list li::before { content: "→"; position: absolute; left: 0; color: #C94A1A; font-weight: 700; }

/* ========================================
   FAQ ACCORDION
======================================== */
.faq-section { max-width: 800px; }
.faq-section h2 { margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid #e5e7eb; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 36px 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: #1A3329;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  line-height: 1.4;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #C94A1A;
  font-weight: 400;
  transition: transform .2s;
}
.faq-q[aria-expanded="true"]::after { content: "–"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open {
  max-height: 400px;
  padding-bottom: 18px;
}
.faq-a p {
  font-size: 14px;
  color: #57606a;
  line-height: 1.7;
  margin: 0;
  padding-top: 4px;
}

/* ========================================
   CTA BANNER
======================================== */
.cta-banner { background: #C94A1A; padding: 64px 0; text-align: center; }
.cta-banner-inner h2 { color: #fff; font-size: clamp(22px, 3vw, 32px); margin-bottom: 12px; }
.cta-banner-inner p  { color: rgba(255,255,255,.85); font-size: 15px; max-width: 560px; margin: 0 auto 28px; line-height: 1.7; }

/* ========================================
   PORTFOLIO PAGE
======================================== */
.filter-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0 40px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid #e5e7eb;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.filter-btn.active,
.filter-btn:hover { background: #C94A1A; border-color: #C94A1A; color: #fff; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.portfolio-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  text-align: left;
  transition: box-shadow .2s, opacity .3s;
}
.portfolio-card.hidden { display: none; }
.portfolio-card:hover { box-shadow: 0 6px 24px rgba(26,51,41,.10); }
.portfolio-img { height: 210px; overflow: hidden; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.portfolio-card:hover .portfolio-img img { transform: scale(1.04); }
.portfolio-card-body { padding: 18px 18px 22px; }
.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.portfolio-tag.residential { background: #e8f4ec; color: #1A6B3A; }
.portfolio-tag.commercial  { background: #fef0e8; color: #C94A1A; }
.portfolio-tag.exterior    { background: #e8ecf4; color: #2255a4; }
.portfolio-tag.design      { background: #f4e8f4; color: #7c2aac; }
.portfolio-card-body h4 { margin-bottom: 6px; font-size: 15px; }
.portfolio-card-body p  { font-size: 13px; color: #57606a; margin-bottom: 8px; line-height: 1.55; }
.portfolio-card-body small { font-size: 12px; color: #999; }

/* Before & After */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
  text-align: left;
}
.ba-pair { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; background: #fff; }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-img-wrap { position: relative; overflow: hidden; }
.ba-img-wrap img { height: 180px; width: 100%; object-fit: cover; display: block; }
.ba-label {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  border-radius: 3px;
  z-index: 1;
}
.ba-label.before { background: #1A3329; color: #fff; }
.ba-label.after  { background: #C94A1A; color: #fff; }
.ba-caption {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ba-caption strong { font-size: 14px; color: #1A3329; }
.ba-caption span   { font-size: 12px; color: #57606a; }

/* ========================================
   RESPONSIVE — NEW COMPONENTS
======================================== */
@media (max-width: 1024px) {
  .icon-services-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-services-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .vmv-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* stat strip */
  .stat-strip-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* two-col sections */
  .two-col-section { grid-template-columns: 1fr; gap: 28px; }
  .two-col-section.reverse .tc-image { order: 0; }
  .tc-image img { height: 240px; }

  /* grids */
  .icon-services-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
  .icon-services-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .vmv-grid { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ba-grid { grid-template-columns: 1fr; }

  /* page hero */
  .page-hero { min-height: 260px; }
  .page-hero-content { padding-top: 52px; padding-bottom: 36px; }
  .page-hero-content h1 { font-size: 28px; }

  /* cta banner */
  .cta-banner { padding: 48px 0; }

  /* faq */
  .faq-section { max-width: 100%; }
}

@media (max-width: 480px) {
  .stat-item { flex: 1 1 100%; border-right: none !important; }
  .icon-services-grid { grid-template-columns: 1fr; }
  .icon-services-grid.cols-4 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .filter-btns { gap: 8px; }
  .filter-btn { font-size: 12px; padding: 8px 14px; }
  .page-hero-content h1 { font-size: 24px; }
  .ba-images { grid-template-columns: 1fr 1fr; }
  .ba-img-wrap img { height: 130px; }
}
