/* ============================================
   MISSOULA HEATING & AC — MAIN STYLESHEET
   ============================================ */

/* ── VARIABLES ── */
:root {
  --teal-dark:    #0a3447;
  --teal-mid:     #0e6a8a;
  --crimson:      #a31515;
  --crimson-light:#c01818;
  --off-white:    #f0f0f0;
  --white:        #ffffff;
  --charcoal:     #1c1c1c;
  --gray:         #6b7280;
  --light-gray:   #e8e8e8;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-body {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  font-weight: 300;
  color: #555;
  line-height: 1.65;
  max-width: 600px;
}
section { padding: 80px 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--crimson);
  color: white;
  padding: 16px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--crimson-light); transform: translateY(-1px); color: white; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 15px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }

.btn-white {
  display: inline-block;
  background: white;
  color: var(--crimson);
  padding: 16px 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  margin: 0 8px;
}
.btn-white:hover { background: #f0f0f0; color: var(--crimson); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 14px 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
  margin: 0 8px;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--teal-dark);
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--off-white);
  letter-spacing: 0.04em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
.site-nav {
  top: 37px;
}
.top-bar a { color: var(--off-white); }
.top-bar .emergency {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--crimson);
  padding: 4px 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 12px;
  transition: background 0.2s;
}
.top-bar .emergency:hover { background: var(--crimson-light); }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--white);
  border-bottom: 3px solid var(--teal-dark);
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Push page content down to account for fixed nav + top bar */
body {
  padding-top: 160px;
}

@media (max-width: 900px) {
  body { padding-top: 130px; }
  .site-nav { top: 33px; }
}
.site-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.nav-logo { display: flex; align-items: center; }
.site-logo {
  height: 120px;
  width: auto;
  display: block;
}
@media (max-width: 900px) {
  .site-logo { height: 80px; }
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 6px 0;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li > a:hover { color: var(--teal-mid); }
.nav-menu > li > a .arrow {
  font-size: 9px;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-menu > li:hover > a .arrow { transform: rotate(180deg); }

/* CTA button in nav */
.nav-menu .nav-cta > a {
  background: var(--crimson) !important;
  color: white !important;
  padding: 10px 22px !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}
.nav-menu .nav-cta > a:hover { background: var(--crimson-light) !important; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-top: 3px solid var(--crimson);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, top 0.2s;
  z-index: 200;
}
.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: 100%;
}
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.15s, color 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--teal-dark); color: white; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--teal-dark);
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--teal-dark);
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 998;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu ul { padding: 12px 0 20px; }
.mobile-menu ul li a {
  display: block;
  padding: 13px 28px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu ul li a:hover { background: rgba(255,255,255,0.08); color: white; }
.mobile-menu .mobile-sub a {
  padding-left: 44px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}
.mobile-menu .mobile-sub a:hover { color: white; }
.mobile-menu .mobile-cta-wrap {
  padding: 20px 28px 8px;
}
.mobile-menu .mobile-cta {
  display: block;
  text-align: center;
  background: var(--crimson);
  color: white;
  padding: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  background: var(--teal-dark);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.015) 60px,
    rgba(255,255,255,0.015) 61px
  );
}
.hero-mountain-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  opacity: 0.06;
  pointer-events: none;
}
.hero-mountain-bg svg { width: 100%; height: auto; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--crimson);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  color: white;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--crimson); }
.hero-sub {
  font-family: 'Source Serif 4', serif;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Form Card */
.hero-card {
  background: white;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--light-gray);
}
.hero-card .form-group { margin-bottom: 12px; }
.hero-card input,
.hero-card select,
.hero-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--light-gray);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  background: var(--off-white);
  border-radius: 1px;
  appearance: none;
}
.hero-card input:focus,
.hero-card select:focus,
.hero-card textarea:focus {
  border-color: var(--teal-mid);
  background: white;
}
.hero-card textarea { resize: none; height: 80px; }
.hero-card .submit-btn {
  width: 100%;
  background: var(--crimson);
  color: white;
  border: none;
  padding: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.hero-card .submit-btn:hover { background: var(--crimson-light); }
.hero-card .form-privacy {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid #ddd;
  padding: 20px 40px;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.trust-icon {
  width: 30px;
  height: 30px;
  background: var(--teal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  flex-shrink: 0;
}
.trust-divider { width: 1px; height: 28px; background: #ccc; flex-shrink: 0; }

/* ── ABOUT ── */
.about-section { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--light-gray);
  margin-top: 40px;
}
.stat-box {
  background: white;
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--crimson); }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.about-img-wrap { position: relative; }
.about-img-placeholder {
  background: var(--teal-dark);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-placeholder svg { opacity: 0.12; width: 60%; }
.about-img-placeholder img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-img-tag {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--crimson);
  color: white;
  padding: 18px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  z-index: 2;
}

/* ── SERVICES ── */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: var(--light-gray);
}
.service-card {
  background: white;
  padding: 36px 28px;
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--crimson);
  transition: width 0.3s;
}
.service-card:hover { background: var(--teal-dark); }
.service-card:hover::after { width: 100%; }
.service-card:hover .service-title { color: white; }
.service-card:hover .service-desc { color: rgba(255,255,255,0.7); }
.service-card:hover .service-icon { background: rgba(255,255,255,0.1); color: white; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: all 0.2s;
  color: var(--teal-mid);
}
.service-title {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: color 0.2s;
  line-height: 1.2;
}
.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  transition: color 0.2s;
  margin-bottom: 16px;
}
.service-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
  transition: color 0.2s;
}
.service-card:hover .service-link { color: rgba(255,255,255,0.7); }

/* ── PROCESS ── */
.process-section { background: var(--teal-dark); }
.process-section .section-title { color: white; }
.process-section .section-body { color: rgba(255,255,255,0.65); }
.process-section .section-label { color: rgba(255,255,255,0.5); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
  background: rgba(255,255,255,0.08);
}
.process-step {
  background: rgba(255,255,255,0.04);
  padding: 36px 28px;
  position: relative;
}
.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.step-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── REVIEWS ── */
.reviews-section { background: white; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  border: 1.5px solid var(--light-gray);
  padding: 32px 28px;
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: 'Source Serif 4', serif;
  font-size: 80px;
  color: var(--light-gray);
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
  font-weight: 600;
}
.review-stars { color: #f5a623; font-size: 15px; margin-bottom: 14px; margin-top: 20px; }
.review-text {
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  font-style: italic;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--light-gray);
  padding-top: 16px;
}
.review-avatar {
  width: 36px; height: 36px;
  background: var(--teal-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 13px; color: var(--charcoal); }
.review-location { font-size: 12px; color: var(--gray); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--crimson);
  padding: 60px 40px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 32px;
}

/* ── FAQ ── */
.faq-section { background: var(--off-white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 48px;
}
.faq-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.faq-a { font-size: 15px; color: #555; line-height: 1.65; }
.faq-cta {
  background: var(--teal-dark);
  padding: 40px 36px;
  color: white;
}
.faq-cta h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.faq-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.phone-big {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.phone-big:hover { color: var(--off-white); }

/* ── FOOTER ── */
.site-footer { background: var(--charcoal); }
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .brand-name {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-brand .brand-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-phone {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: white;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--off-white); }
.footer-addr { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: white; }
.footer-legal { display: flex; gap: 20px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge  { animation: fadeUp 0.5s ease both 0s; }
.hero h1     { animation: fadeUp 0.7s ease both 0.1s; }
.hero-sub    { animation: fadeUp 0.7s ease both 0.25s; }
.hero-actions{ animation: fadeUp 0.7s ease both 0.38s; }
.hero-card   { animation: fadeUp 0.7s ease both 0.2s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .top-bar { padding: 8px 24px; font-size: 11px; }
  .top-bar .tagline { display: none; }
  .site-nav .nav-inner { padding: 14px 24px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }

  /* Hero — fix cutoff and overflow */
  .hero { min-height: unset; overflow: visible; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 24px;
  }
  .hero-right { display: none; }

  /* Trust bar — strict 2 column grid on mobile */
  .trust-bar { padding: 20px 24px; }
  .trust-bar-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 10px;
    justify-items: start;
    align-items: center;
    flex-wrap: unset;
  }
  .trust-item {
    white-space: normal;
    font-size: 12px;
    width: 100%;
  }
  .trust-divider { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { display: block; margin-top: 20px; }
  .about-img-placeholder { aspect-ratio: 16/9; }
  .about-img-tag { bottom: 0; left: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  section { padding: 60px 0; }

  /* Mobile menu gap fix */
  .mobile-menu .mobile-sub { margin-bottom: 0; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 20px 24px; }
  .cta-band { padding: 48px 24px; }
  .btn-white, .btn-outline-white {
    display: block;
    margin: 8px auto;
    max-width: 280px;
    text-align: center;
  }
  .hero h1 { font-size: 38px; }
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--teal-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 60px,
    rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px
  );
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.0;
}
.page-hero-sub {
  font-family: 'Source Serif 4', serif;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  max-width: 560px;
  line-height: 1.6;
}

/* ── BLOG SECTION ── */
.blog-section { background: var(--off-white); padding: 80px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.blog-card {
  background: white;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.blog-card-img-wrap { overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta { margin-bottom: 10px; }
.blog-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
}
.blog-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.blog-card-title a { color: inherit; transition: color 0.2s; }
.blog-card-title a:hover { color: var(--teal-mid); }
.blog-card-excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.blog-read-more {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
  transition: color 0.2s;
  align-self: flex-start;
}
.blog-read-more:hover { color: var(--crimson-light); }
.blog-pagination {
  text-align: center;
  padding-top: 20px;
}
.blog-pagination .nav-links { display: flex; gap: 8px; justify-content: center; }
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dark);
  border: 2px solid var(--light-gray);
  transition: all 0.2s;
  text-decoration: none;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--teal-dark);
  color: white;
  border-color: var(--teal-dark);
}
.blog-empty {
  text-align: center;
  padding: 80px 0;
  font-size: 18px;
  color: var(--gray);
}

/* Blog responsive */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── INTERIOR PAGES ── */
.interior-content { padding: 80px 0; background: white; }
.page-content { max-width: 800px; font-size: 16px; line-height: 1.75; color: #444; }
.page-content h2, .page-content h3 { font-family: 'Oswald', sans-serif; color: var(--teal-dark); text-transform: uppercase; margin: 32px 0 16px; }
.page-content p { margin-bottom: 16px; }
.page-content ul { padding-left: 20px; margin-bottom: 16px; }

/* ── ABOUT PAGE ── */
.about-intro { background: white; padding: 80px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.about-intro-img { position: relative; }
.about-intro-img img { width: 100%; height: 500px; object-fit: cover; }
.about-intro-img .about-img-tag { position: absolute; bottom: -16px; left: -16px; background: var(--crimson); color: white; padding: 18px 24px; font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.3; }
.about-values { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-icon { width: 28px; height: 28px; background: var(--teal-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--teal-dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.value-item p { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 0; }
.about-stats-section { background: var(--off-white); padding: 60px 0; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--light-gray); }
.about-areas { background: white; padding: 80px 0; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.area-tag { background: var(--off-white); border: 1.5px solid var(--light-gray); padding: 10px 20px; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-dark); }

/* ── SERVICE DETAIL PAGES ── */
.service-detail-section { background: white; padding: 80px 0; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; width: 100%; }
.service-detail-content { min-width: 0; }
.service-detail-sidebar { min-width: 0; width: 340px; }
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li { padding: 10px 0; border-bottom: 1px solid var(--light-gray); font-size: 15px; color: #444; display: flex; align-items: center; gap: 10px; }
.service-list li::before { content: '✓'; color: var(--teal-mid); font-weight: 700; flex-shrink: 0; }
.service-list li a { color: inherit; transition: color 0.2s; }
.service-list li a:hover { color: var(--teal-mid); }
.sidebar-cta { background: var(--teal-dark); padding: 32px 28px; margin-bottom: 24px; }
.sidebar-cta h3 { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600; color: white; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; line-height: 1.5; }
.sidebar-estimate-link { display: block; text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 12px; transition: color 0.2s; }
.sidebar-estimate-link:hover { color: white; }
.sidebar-services { border: 1.5px solid var(--light-gray); padding: 24px; }
.sidebar-services h4 { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--light-gray); }
.sidebar-services ul li { margin-bottom: 10px; }
.sidebar-services ul li a { font-size: 13px; color: #555; transition: color 0.2s; }
.sidebar-services ul li a:hover { color: var(--teal-mid); }
.emergency-callout { background: var(--off-white); border-left: 4px solid var(--crimson); padding: 24px 28px; margin-top: 36px; display: flex; gap: 20px; align-items: flex-start; }
.emergency-callout-icon { font-size: 28px; flex-shrink: 0; }
.emergency-callout strong { display: block; font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.emergency-callout p { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }

/* ── SERVICES OVERVIEW PAGE ── */
.services-page-section { background: var(--off-white); padding: 80px 0; }
.services-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--light-gray); }
.service-page-card { background: white; padding: 36px 28px; display: flex; gap: 20px; align-items: flex-start; text-decoration: none; transition: background 0.2s; position: relative; overflow: hidden; }
.service-page-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--crimson); transition: width 0.3s; }
.service-page-card:hover { background: var(--teal-dark); }
.service-page-card:hover::after { width: 100%; }
.service-page-card:hover .service-page-title { color: white; }
.service-page-card:hover p { color: rgba(255,255,255,0.65); }
.service-page-card:hover .service-page-link { color: rgba(255,255,255,0.7); }
.service-page-icon { font-size: 28px; flex-shrink: 0; margin-top: 4px; }
.service-page-title { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; transition: color 0.2s; }
.service-page-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; transition: color 0.2s; }
.service-page-link { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--crimson); transition: color 0.2s; }
.why-us { background: white; padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.why-item { text-align: center; }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-item h3 { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── REVIEWS PAGE ── */
.reviews-page-section { background: var(--off-white); padding: 80px 0; }
.reviews-overall { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 2px solid var(--light-gray); }
.reviews-score { text-align: center; background: var(--teal-dark); padding: 40px 48px; }
.score-num { font-family: 'Oswald', sans-serif; font-size: 72px; font-weight: 700; color: white; line-height: 1; }
.score-stars { color: #f5a623; font-size: 24px; margin: 8px 0; }
.score-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600; }
.reviews-grid-full { grid-template-columns: repeat(3, 1fr); }

/* ── CONTACT PAGE ── */
.contact-section { background: white; padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--teal-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail-item strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-detail-item a, .contact-detail-item span { font-size: 16px; color: var(--charcoal); font-weight: 600; line-height: 1.5; }
.contact-detail-item a:hover { color: var(--teal-mid); }
.contact-form-wrap { background: var(--off-white); padding: 40px 36px; }
.contact-form-wrap h3 { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--light-gray); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--light-gray);
  font-family: 'Source Sans 3', sans-serif; font-size: 14px; color: var(--charcoal);
  outline: none; transition: border-color 0.2s; background: white; border-radius: 1px; appearance: none;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus { border-color: var(--teal-mid); }
.contact-form-wrap textarea { resize: none; height: 100px; }
.contact-form-wrap .submit-btn { width: 100%; background: var(--crimson); color: white; border: none; padding: 14px; font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.contact-form-wrap .submit-btn:hover { background: var(--crimson-light); }

/* ── SINGLE POST ── */
.single-post-section { background: var(--off-white); padding: 80px 0; }
.single-post-grid { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.single-post-content { background: white; padding: 48px 40px; }
.single-post-img { margin-bottom: 32px; }
.single-post-img img { width: 100%; height: auto; }
.post-body { font-size: 16px; line-height: 1.8; color: #444; }
.post-body h2, .post-body h3 { font-family: 'Oswald', sans-serif; color: var(--teal-dark); text-transform: uppercase; margin: 36px 0 16px; }
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 20px; }
.post-body li { margin-bottom: 8px; }
.post-nav { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 24px; border-top: 2px solid var(--light-gray); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.post-nav a { color: var(--teal-mid); transition: color 0.2s; }
.post-nav a:hover { color: var(--teal-dark); }

/* ── AREA DETAIL ── */
.area-detail-section { background: white; padding: 80px 0; }

/* ── RESPONSIVE INTERIOR ── */
@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-img img { height: 320px; }
  .about-values { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .services-page-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-overall { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid-full { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .single-post-grid { grid-template-columns: 1fr; }
  .single-post-content { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid-full { grid-template-columns: 1fr; }
  .service-detail-sidebar { grid-template-columns: 1fr; }
}

/* ── AREA PAGE PHOTO ── */
.area-photo-wrap {
  margin: 32px 0;
  overflow: hidden;
}
.area-photo-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
