@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ══════════════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --navy:        #122B46;
  --navy-mid:    #1A3A5C;
  --navy-light:  #1E4676;
  --navy-dark:   #0C1E30;
  --orange:      #E8650A;
  --orange-hot:  #F5720C;
  --orange-dark: #C05208;
  --orange-pale: #FEF0E6;
  --orange-50:   #FFF7F2;

  /* Neutral */
  --white:        #FFFFFF;
  --off-white:    #F9F8F6;
  --gray-bg:      #F1F4F8;
  --gray-100:     #E8ECF3;
  --border:       #D2DCE9;
  --border-light: #E8EDF5;

  /* Text */
  --text-dark:   #0F1A24;
  --text-body:   #374151;
  --text-muted:  #6B7280;

  /* Status */
  --green:       #166534;
  --green-light: #DCFCE7;
  --green-bg:    #F0FDF4;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(12,30,48,.08);
  --shadow-sm:  0 2px 8px rgba(12,30,48,.10), 0 1px 2px rgba(12,30,48,.05);
  --shadow:     0 4px 20px rgba(12,30,48,.12), 0 2px 6px rgba(12,30,48,.06);
  --shadow-md:  0 8px 32px rgba(12,30,48,.14), 0 3px 10px rgba(12,30,48,.08);
  --shadow-lg:  0 20px 56px rgba(12,30,48,.18), 0 6px 20px rgba(12,30,48,.10);
  --shadow-orange: 0 4px 18px rgba(232,101,10,.32);
  --shadow-orange-lg: 0 8px 28px rgba(232,101,10,.42);

  /* Radii */
  --r-xs:   4px;
  --r-sm:   7px;
  --r:      11px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  /* Typography */
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; color-scheme: light only; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: .9rem 1.85rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .18s, color .2s, border-color .2s;
  border: 2px solid transparent;
  white-space: nowrap;
  min-height: 48px;
  letter-spacing: .01em;
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none;
}
.btn:disabled { opacity: .65; cursor: not-allowed; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--orange-hot);
  box-shadow: var(--shadow-orange-lg);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover, .btn-navy:focus-visible {
  background: var(--navy-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-white-outline:hover, .btn-white-outline:focus-visible {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-lg {
  padding: 1.05rem 2.3rem;
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow .3s, border-color .3s;
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(12,30,48,.12);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.25rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo svg { height: 46px; width: auto; }

.nav-links {
  display: flex;
  gap: .2rem;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .83rem;
  color: var(--text-dark);
  padding: .45rem .7rem;
  border-radius: var(--r-xs);
  transition: color .18s, background .18s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.nav-links a:hover { color: var(--orange); background: var(--orange-50); }
.nav-links a.active { color: var(--orange); background: var(--orange-pale); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  padding: .575rem 1.2rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 44px;
  box-shadow: var(--shadow-orange);
  transition: background .2s, transform .18s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--orange-hot);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange-lg);
}
.nav-cta svg { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
  border-radius: var(--r-xs);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: .75rem 1.5rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-dark);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.active { color: var(--orange); }
.mobile-nav .nav-cta-mobile {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  padding: .9rem;
  border-radius: var(--r-sm);
  font-size: 1rem;
  box-shadow: var(--shadow-orange);
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: .9rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem 2.25rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .04em;
  white-space: nowrap;
  color: rgba(255,255,255,.9);
}
.trust-item::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M14 5.5L7.5 12.5 4 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ══════════════════════════════════════════════════════════════
   HERO — HOMEPAGE (2-column split)
══════════════════════════════════════════════════════════════ */
.hero {
  background:
    radial-gradient(ellipse at 68% 25%, rgba(30,70,118,.5) 0%, transparent 55%),
    linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -48deg,
    rgba(255,255,255,.014) 0px,
    rgba(255,255,255,.014) 1px,
    transparent 1px,
    transparent 52px
  );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--orange) 40%, var(--orange-hot) 60%, transparent 95%);
  opacity: .55;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 3.5rem;
  align-items: center;
}

.hero h1 { color: var(--white); margin-bottom: 1.1rem; text-shadow: 0 2px 24px rgba(0,0,0,.2); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 560px; line-height: 1.7; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.25rem; }

/* ── Hero Before/After teaser (sits above the CTA buttons so real
   photos are visible with zero scrolling on any device) ── */
.hero-ba { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.85rem; }
.hero-ba-pair { display: flex; gap: .65rem; max-width: 360px; }
.hero-ba-pair figure {
  position: relative;
  margin: 0;
  flex: 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow-md);
}
.hero-ba-pair img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-ba-pair .gallery-tag { font-size: .62rem; padding: .24rem .55rem; top: .45rem; left: .45rem; }
.hero-ba-caption { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.85); }

/* Safari/WebKit only (all iOS browsers + macOS Safari use WebKit under the hood):
   aspect-ratio on a `flex: 1` item fails to compute a height there, collapsing
   the box to just its border. Chrome/Firefox/Android are unaffected and never
   see this block — falls back to the aspect-ratio rules above for everyone else. */
@supports (-webkit-touch-callout: none) {
  .hero-ba-pair figure {
    aspect-ratio: unset;
    height: 0;
    padding-top: 125%;
  }
  .hero-ba-pair img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (max-width: 480px) {
  .hero-ba-pair { max-width: 300px; }
}

.hero-micro { display: flex; flex-wrap: wrap; gap: .75rem 2rem; }
.micro-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .79rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: .02em;
}
.micro-badge .star { color: #FCD34D; }
.micro-badge .badge-short { display: none; }

/* ── Hero Quote Card (homepage right column) ── */
.hero-quote-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--orange);
  overflow: hidden;
}
.hero-quote-card-body {
  padding: 1.75rem 2rem 2rem;
}
.hero-quote-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
}
.hero-quote-card .hqf-note {
  font-size: .73rem;
  color: var(--text-muted);
  margin-top: .65rem;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   HERO QUOTE FORM (service pages — 2nd grid column)
══════════════════════════════════════════════════════════════ */
.hero-quote-form {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--orange);
  padding: 1.75rem 2rem 2rem;
  max-width: 100%;
  margin-top: 0;
}
.hero-quote-form h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
}

.hqf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin-bottom: .7rem;
}
.hqf-field { margin-bottom: .7rem; }

.hqf-row input,
.hqf-field input,
.hqf-field select,
.hero-quote-form input,
.hero-quote-form select,
.hero-quote-card input,
.hero-quote-card select {
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
  appearance: none;
}
.hqf-row input:focus,
.hqf-field input:focus,
.hqf-field select:focus,
.hero-quote-form input:focus,
.hero-quote-form select:focus,
.hero-quote-card input:focus,
.hero-quote-card select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,101,10,.12);
}
.hero-quote-form .btn,
.hero-quote-card .btn {
  width: 100%;
  margin-top: .5rem;
}
.hqf-note {
  font-size: .73rem;
  color: var(--text-muted);
  margin-top: .65rem;
  text-align: center;
  line-height: 1.45;
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO — SERVICE PAGES (2-column split)
══════════════════════════════════════════════════════════════ */
.page-hero {
  background:
    radial-gradient(ellipse at 70% 25%, rgba(30,70,118,.45) 0%, transparent 55%),
    linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -48deg,
    rgba(255,255,255,.014) 0px, rgba(255,255,255,.014) 1px,
    transparent 1px, transparent 52px
  );
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--orange) 40%, var(--orange-hot) 60%, transparent 95%);
  opacity: .45;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 3rem;
  align-items: start;
}

.page-hero-content h1 { color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,.2); }
.page-hero-content p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 1.35rem; line-height: 1.7; }
.page-hero-content .hero-micro { margin-top: 1.5rem; }

.hero-phone-link {
  margin-top: .85rem;
  font-size: .95rem;
  color: rgba(255,255,255,.75);
}
.hero-phone-link a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════════════════════════════════════
   SECTION LABELS & HEADERS
══════════════════════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .65rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ══════════════════════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 2rem 1.85rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot));
  opacity: 0;
  transition: opacity .22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,101,10,.18);
}
.service-card:hover::after { opacity: 1; }

.card-icon { width: 60px; height: 60px; margin-bottom: 1.25rem; }

.price-badge {
  display: inline-flex;
  align-items: center;
  background: var(--orange-pale);
  color: var(--orange-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: .33rem .9rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(232,101,10,.22);
}

.service-card h3 { margin-bottom: .65rem; }
.service-card > p { color: var(--text-muted); font-size: .93rem; line-height: 1.65; }

.card-link {
  margin-top: auto;
  padding-top: 1.25rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .18s, gap .2s;
}
.card-link:hover { color: var(--orange); gap: .7rem; }

/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════════ */
.why-section { background: var(--gray-bg); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-list { display: flex; flex-direction: column; gap: .9rem; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--text-body);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .62rem;
  margin-top: .18rem;
  box-shadow: 0 2px 6px rgba(22,101,52,.25);
}

/* ══════════════════════════════════════════════════════════════
   BEFORE & AFTER GALLERY
══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.gallery-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.gallery-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-light);
}

.gallery-img-pair figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--gray-bg);
}
.gallery-img-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-tag {
  position: absolute;
  top: .6rem;
  left: .6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: var(--r-full);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.gallery-tag.tag-before { background: rgba(12,30,48,.75); }
.gallery-tag.tag-after  { background: var(--orange); }

.gallery-caption {
  padding: 1.1rem 1.35rem 1.3rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}

/* ══════════════════════════════════════════════════════════════
   JOB PHOTOS (single-image documentary grid — service pages)
══════════════════════════════════════════════════════════════ */
.jobphoto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.jobphoto-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.jobphoto-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.jobphoto-card figure { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; background: var(--gray-bg); }
.jobphoto-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.jobphoto-caption {
  padding: .9rem 1.1rem 1.1rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: .88rem;
}
.jobphoto-caption span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  font-size: .82rem;
  margin-top: .25rem;
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 2rem 1.85rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: .75rem;
  right: 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  color: var(--orange);
  opacity: .1;
  line-height: 1;
  pointer-events: none;
}

.stars { color: #F59E0B; font-size: 1rem; margin-bottom: .85rem; letter-spacing: 2px; }
.review-quote { font-size: .92rem; color: var(--text-body); font-style: italic; margin-bottom: 1.25rem; line-height: 1.65; flex: 1; }
.reviewer { font-family: var(--font-head); font-weight: 700; font-size: .8rem; color: var(--navy); letter-spacing: .03em; }

/* ══════════════════════════════════════════════════════════════
   OFFER BANNER
══════════════════════════════════════════════════════════════ */
.offer-banner {
  background: linear-gradient(140deg, var(--orange) 0%, var(--orange-hot) 100%);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.offer-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg, rgba(255,255,255,.045) 0, rgba(255,255,255,.045) 2px,
    transparent 2px, transparent 30px
  );
}
.offer-banner .container { position: relative; z-index: 1; }
.offer-banner h2 { color: var(--white); margin-bottom: .75rem; font-size: clamp(1.5rem, 3vw, 2.1rem); text-shadow: 0 2px 12px rgba(0,0,0,.15); }
.offer-banner p { color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ══════════════════════════════════════════════════════════════
   SERVICE AREA — PILL GRID
══════════════════════════════════════════════════════════════ */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.75rem 0;
  justify-content: center;
}
.area-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: .45rem 1.15rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .84rem;
  color: var(--navy);
  transition: background .18s, border-color .18s, color .18s, transform .18s;
  box-shadow: var(--shadow-xs);
  cursor: default;
}
.area-item:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -48deg, rgba(255,255,255,.012) 0, rgba(255,255,255,.012) 1px,
    transparent 1px, transparent 52px
  );
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); margin-bottom: .75rem; font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
.final-cta p { color: rgba(255,255,255,.82); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.final-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ══════════════════════════════════════════════════════════════
   INCLUDED PACKAGE CARD
══════════════════════════════════════════════════════════════ */
.package-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 2.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
}
.package-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: .875rem;
  border-bottom: 1.5px solid var(--border-light);
}

.included-list { display: flex; flex-direction: column; gap: 1.1rem; }
.included-item { display: flex; align-items: flex-start; gap: .9rem; }
.included-item .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .22rem;
  box-shadow: 0 2px 6px rgba(22,101,52,.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M15 6.5L8.5 13.5 5 10' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.included-item .check::after { display: none; }
.included-item strong { color: var(--navy); display: block; margin-bottom: .15rem; font-size: .95rem; }
.included-item p { margin: 0; font-size: .9rem; color: var(--text-muted); line-height: 1.55; }

.price-callout {
  margin-top: 2rem;
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: var(--r);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.price-callout .price-big {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
}
.price-callout .price-label { font-size: 1rem; font-weight: 600; }
.price-callout .price-note { font-size: .82rem; color: rgba(255,255,255,.6); }
.price-compare { margin-top: 1rem; font-size: .88rem; color: var(--text-muted); font-style: italic; }

/* ══════════════════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--border-light), var(--border));
  z-index: 0;
}

.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--orange), var(--orange-hot));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: var(--shadow-orange);
}
.step-card h4 { font-size: .95rem; margin-bottom: .5rem; color: var(--navy); }
.step-card p { font-size: .85rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ══════════════════════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 1.1rem 1.35rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .18s;
  line-height: 1.4;
}
.faq-q:hover { background: var(--gray-bg); }
.faq-q[aria-expanded="true"] { background: var(--navy); color: var(--white); }
.faq-chevron { transition: transform .28s ease; flex-shrink: 0; font-size: .7rem; opacity: .7; }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); opacity: 1; }

.faq-a {
  display: none;
  padding: 1.1rem 1.35rem 1.35rem;
  font-size: .9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  background: var(--gray-bg);
  line-height: 1.65;
}
.faq-a.open { display: block; }

/* ══════════════════════════════════════════════════════════════
   URGENCY / CTA BANNER (service pages)
══════════════════════════════════════════════════════════════ */
.urgency-banner {
  background: linear-gradient(140deg, var(--orange) 0%, var(--orange-hot) 100%);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.urgency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 2px,
    transparent 2px, transparent 30px
  );
}
.urgency-banner .container { position: relative; z-index: 1; }
.urgency-banner h2 { color: var(--white); margin-bottom: .75rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.urgency-banner p { color: rgba(255,255,255,.9); max-width: 520px; margin: 0 auto 2rem; font-size: 1rem; }

.slots-counter {
  display: inline-block;
  background: rgba(0,0,0,.2);
  border-radius: var(--r-sm);
  padding: .4rem 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════════════════════════ */
.problem-section { background: var(--gray-bg); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.problem-infographic {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.duct-comparison { display: flex; gap: 1rem; justify-content: center; align-items: center; margin-bottom: 1rem; }
.duct-box { flex: 1; border-radius: var(--r-sm); padding: 1.25rem; text-align: center; }
.duct-box.dirty { background: rgba(139,111,71,.08); border: 1.5px solid #8B6F47; }
.duct-box.clean { background: rgba(22,101,52,.07); border: 1.5px solid var(--green); }
.duct-label { font-family: var(--font-head); font-weight: 700; font-size: .78rem; margin-top: .5rem; }
.duct-photo-frame { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-sm); box-shadow: var(--shadow-xs); background: var(--gray-bg); }
.duct-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.duct-vs { font-family: var(--font-head); font-weight: 900; color: var(--orange); font-size: 1.1rem; }

/* ══════════════════════════════════════════════════════════════
   DANGER / WARNING SECTION
══════════════════════════════════════════════════════════════ */
.danger-section {
  background: var(--orange-50);
  border-left: 4px solid var(--orange);
  padding: 3.5rem 0;
}
.warning-list { display: flex; flex-direction: column; gap: .8rem; margin: 1.5rem 0; }
.warning-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 600;
  font-size: .93rem;
  color: var(--text-dark);
}
.warning-item::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(232,101,10,.18);
}

/* ══════════════════════════════════════════════════════════════
   DRYER VENT CALCULATOR
══════════════════════════════════════════════════════════════ */
.calculator-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.calculator-box h3 { margin-bottom: 1.35rem; }
.calc-input-row { display: flex; gap: 1rem; align-items: flex-end; margin-bottom: 1.25rem; flex-wrap: wrap; }
.calc-field { display: flex; flex-direction: column; gap: .35rem; flex: 1; min-width: 140px; }
.calc-field label { font-family: var(--font-head); font-weight: 700; font-size: .79rem; color: var(--navy); letter-spacing: .03em; }
.calc-field input {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .72rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
.calc-field input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(18,43,70,.1);
}
.calc-result {
  background: var(--gray-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1.1rem 1.35rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
}
.calc-result span { color: var(--orange); }

/* ══════════════════════════════════════════════════════════════
   STATS PANEL
══════════════════════════════════════════════════════════════ */
.stats-panel {
  background: linear-gradient(150deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-48deg, rgba(255,255,255,.012) 0, rgba(255,255,255,.012) 1px, transparent 1px, transparent 52px);
}
.stats-panel .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stats-grid > div {
  padding: 1rem;
  position: relative;
}
.stats-grid > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; height: 70%;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.stat-num { font-family: var(--font-head); font-weight: 900; font-size: 2.8rem; color: var(--orange); line-height: 1; margin-bottom: .5rem; }
.stat-label { font-size: .88rem; color: rgba(255,255,255,.72); line-height: 1.45; max-width: 200px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════════════
   PRICING TABLE
══════════════════════════════════════════════════════════════ */
.pricing-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }

.pricing-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row.highlight { background: var(--orange-pale); }
.pricing-row .pr-label { font-weight: 600; font-size: .93rem; color: var(--text-dark); }
.pricing-row .pr-price { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--navy); }
.pricing-row .pr-price.orange { color: var(--orange); }

/* ══════════════════════════════════════════════════════════════
   ADD-ONS
══════════════════════════════════════════════════════════════ */
.addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.addon-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: border-color .18s, box-shadow .18s;
}
.addon-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.addon-card .addon-name { font-weight: 700; font-size: .93rem; color: var(--navy); }
.addon-card .addon-desc { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; }
.addon-card .addon-price { font-family: var(--font-head); font-weight: 800; color: var(--orange); white-space: nowrap; font-size: .95rem; }

/* ══════════════════════════════════════════════════════════════
   FIREPLACE TYPES
══════════════════════════════════════════════════════════════ */
.fp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.fp-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
  box-shadow: var(--shadow-xs);
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.fp-card:hover { border-color: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.fp-icon { font-size: 1.75rem; margin-bottom: .65rem; }

/* ══════════════════════════════════════════════════════════════
   TEAM CARDS
══════════════════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--navy), var(--navy-light));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(18,43,70,.25);
}
.team-name { font-size: 1.1rem; margin-bottom: .3rem; }
.team-title { color: var(--orange); font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; margin-bottom: .85rem; }
.team-bio { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   CERTIFICATIONS
══════════════════════════════════════════════════════════════ */
.certs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; max-width: 680px; margin: 0 auto; }
.cert-badge {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, border-color .2s;
}
.cert-badge:hover { box-shadow: var(--shadow-sm); border-color: var(--orange); }
.cert-icon { font-size: 1.75rem; flex-shrink: 0; }
.cert-name { font-family: var(--font-head); font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: .2rem; }
.cert-sub { font-size: .78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   VALUES GRID
══════════════════════════════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
}
.value-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.value-icon { font-size: 2rem; margin-bottom: .75rem; }
.value-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.value-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .79rem;
  color: var(--navy);
  margin-bottom: .4rem;
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: border-color .18s, box-shadow .18s;
  background: var(--white);
  -webkit-appearance: none;
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(18,43,70,.08);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #DC2626; }
.form-group .error-msg { color: #DC2626; font-size: .78rem; margin-top: .3rem; display: none; }
.form-group .error-msg.show { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success {
  display: none;
  background: var(--green-bg);
  border: 1.5px solid #86EFAC;
  border-radius: var(--r-sm);
  padding: 1.5rem;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green);
  font-size: 1rem;
}
.form-success.show { display: block; }

.form-error {
  display: none;
  background: #FEF2F2;
  border: 1.5px solid #FCA5A5;
  border-radius: var(--r-sm);
  padding: 1.5rem;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: #B91C1C;
  font-size: .95rem;
}
.form-error.show { display: block; }

/* Inline status line for the smaller quick-quote widgets */
.hqf-status {
  display: none;
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-head);
  border-radius: var(--r-sm);
  padding: .65rem .85rem;
  margin-top: .6rem;
  text-align: center;
}
.hqf-status.show { display: block; }
.hqf-status.success { background: var(--green-bg); color: var(--green); border: 1.5px solid #86EFAC; }
.hqf-status.error { background: #FEF2F2; color: #B91C1C; border: 1.5px solid #FCA5A5; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.c-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--orange);
  border: 1px solid rgba(232,101,10,.2);
}
.c-label { font-family: var(--font-head); font-weight: 700; font-size: .74rem; color: var(--orange); text-transform: uppercase; letter-spacing: .09em; margin-bottom: .25rem; }
.c-value { font-size: .95rem; color: var(--text-body); }
.c-value a:hover { color: var(--orange); }

.map-placeholder {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  border-radius: var(--r-md);
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
  margin-top: 2rem;
}
.map-pin { font-size: 2.5rem; margin-bottom: .75rem; }
.map-placeholder h3 { color: var(--white); font-size: 1.05rem; margin-bottom: .5rem; }
.map-placeholder p { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; }

.trust-bullets { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.5rem; }
.trust-bullet {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: var(--text-body);
}

/* ══════════════════════════════════════════════════════════════
   CHIMNEY DIAGRAM
══════════════════════════════════════════════════════════════ */
.chimney-diagram { max-width: 400px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 4rem 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--orange) 35%, var(--orange-hot) 65%, transparent 95%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo { margin-bottom: 1.1rem; }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.58); line-height: 1.72; max-width: 320px; }

.footer-grid > div > h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .76rem;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.1rem;
}

.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.58);
  transition: color .18s, padding-left .18s;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem 0;
  min-height: 44px;
}
.footer-links a:hover { color: rgba(255,255,255,.95); padding-left: .25rem; }

.footer-hours { font-size: .88rem; color: rgba(255,255,255,.58); line-height: 1.8; margin-top: 1.35rem; }

.footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.fc-item { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: rgba(255,255,255,.58); }
.fc-item a { display: inline-flex; align-items: center; min-height: 44px; transition: color .18s; }
.fc-item a:hover { color: var(--orange); }

.social-row { display: flex; gap: .65rem; margin-top: 1.1rem; }
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, border-color .18s, transform .18s;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  font-family: var(--font-head);
  font-weight: 700;
}
.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}

.bbb-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm);
  padding: .55rem 1rem;
  margin-top: 1.1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  color: #FCD34D;
  letter-spacing: .03em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.35rem 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.38);
}
.footer-bottom a { display: inline-flex; align-items: center; min-height: 44px; color: rgba(255,255,255,.38); margin: 0 .5rem; transition: color .18s; }
.footer-bottom a:hover { color: rgba(255,255,255,.75); }

/* ══════════════════════════════════════════════════════════════
   STICKY MOBILE CALL BAR
══════════════════════════════════════════════════════════════ */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot));
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.sticky-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  padding: .875rem 1.5rem;
  min-height: 44px;
}
@media (max-width: 768px) {
  .sticky-call-bar { display: block; }
  body { padding-bottom: 68px; }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   FOCUS / ACCESSIBILITY
══════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-quote-card { max-width: 520px; }

  .page-hero-inner { grid-template-columns: 1fr; }
  .hero-quote-form { max-width: 520px; margin-top: 1.5rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .jobphoto-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 3.5rem 0 3rem; }
  .page-hero { padding: 3rem 0 2.5rem; }

  .hero-inner { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .hero-quote-card, .hero-quote-form { max-width: 100%; margin-top: 1.75rem; }

  .hero h1, .page-hero-content h1 { font-size: 1.7rem; line-height: 1.3; margin-bottom: 1.15rem; }
  .hero p, .page-hero-content p { font-size: .97rem; line-height: 1.65; margin-bottom: 1.5rem; }

  .hero-ba { align-items: center; text-align: center; }
  .hero-ba-pair { margin: 0 auto; }

  .trust-bar { padding: .7rem 0; }
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem .75rem;
  }
  .trust-item { font-size: .68rem; white-space: normal; }
  .trust-item::before { width: 13px; height: 13px; }

  .hero-micro {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: .5rem .85rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .hero-micro::-webkit-scrollbar { display: none; }
  .hero-micro .micro-badge { font-size: .7rem; white-space: nowrap; flex-shrink: 0; }
  .hero-micro .badge-full { display: none; }
  .hero-micro .badge-short { display: inline; }

  .pricing-compare-grid { grid-template-columns: 1fr; }

  /* Long button labels (e.g. "Schedule My Cleaning — Starting at $79") were
     clipped on mobile because .btn is white-space:nowrap by default. Let
     button text wrap on small screens instead of overflowing/clipping. */
  .btn { white-space: normal; text-align: center; line-height: 1.3; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .jobphoto-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid > div:not(:last-child)::after { display: none; }
  .addons-grid { grid-template-columns: 1fr; }
  .fp-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:first-child { grid-column: auto; }

  .hero-btns .btn { width: 100%; }
  .final-cta-btns .btn { width: 100%; }
  .chimney-diagram { max-width: 100%; }
}

@media (max-width: 480px) {
  .fp-grid { grid-template-columns: 1fr; }
  .hqf-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
