/* ===================================================
   APPLIANCE INTERVENTION — Main Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* === VARIABLES === */
:root {
  --bg:          #F8F6F2;
  --bg-dark:     #1E2832;
  --bg-card:     #FFFFFF;
  --accent:      #C84B11;
  --accent-dark: #A33A09;
  --accent-light:#FFF0E8;
  --epa-green:   #1B6840;
  --epa-light:   #EAF4EE;
  --text:        #1A1A1A;
  --text-mid:    #4A4540;
  --text-muted:  #847E78;
  --border:      #E5DED5;
  --border-dark: #D0C8BC;
  --white:       #FFFFFF;
  --star:        #E8A900;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:   8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow:    0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  --max-width: 1160px;
  --nav-h: 72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-phone {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 18px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--white); color: var(--bg-dark); border-color: var(--white); }
.nav-toggle {
  display: none;
  color: #fff;
  font-size: 22px;
  padding: 4px;
  margin-left: auto;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 24px 20px;
}
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,75,17,0.35); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-dark);
}
.btn-outline-dark:hover { border-color: var(--text); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-tinted { background: #F0EDE7; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label-light { color: rgba(255,255,255,0.6); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title-light { color: #fff; }
.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.65;
}
.section-subtitle-light { color: rgba(255,255,255,0.7); }
.section-header { margin-bottom: 52px; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* === HERO === */
.hero {
  background: var(--bg-dark);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,75,17,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-content { padding-bottom: 80px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.hero-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: #4CAF50; flex-shrink: 0; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--accent); display: block; }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.hero-trust-item svg { flex-shrink: 0; }
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: end;
}
.hero-img-main {
  grid-column: 1 / -1;
  height: 260px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.hero-img-sm {
  height: 160px;
  object-fit: cover;
}
.hero-img-sm:first-child { border-radius: 0 0 0 12px; }
.hero-img-sm:last-child { border-radius: 0 0 12px 0; }

/* === TRUST BAR === */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-item-epa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--epa-light);
  border: 1px solid rgba(27,104,64,0.2);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--epa-green);
}

/* === STATS === */
.stats-row {
  display: flex;
  gap: 2px;
  background: var(--border);
}
.stat-block {
  flex: 1;
  background: var(--bg-card);
  padding: 36px 28px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 22px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.service-tag {
  font-size: 12px;
  background: #F0EDE7;
  color: var(--text-mid);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* === WHY US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-item {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-item p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-stars { color: var(--star); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; }
.review-source { font-size: 12px; color: var(--text-muted); }

/* === EPA BADGE === */
.epa-banner {
  background: var(--epa-green);
  color: #fff;
  padding: 20px 0;
}
.epa-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.epa-banner-text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.epa-logo {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.epa-banner-text h3 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.epa-banner-text p { font-size: 13px; opacity: 0.8; }

/* === FAQ === */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: all 0.2s;
}
.faq-item.open .faq-q-icon { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* === AREAS === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
}
.area-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.area-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.area-card span { font-size: 14px; font-weight: 500; }

/* === CTA SECTION === */
.cta-section {
  background: var(--accent);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 12px;
}
.cta-section p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--accent); }
.btn-white:hover { background: #f5f5f5; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* === SERVICE PAGE HERO === */
.page-hero {
  background: var(--bg-dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,75,17,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb-sep { font-size: 10px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  color: #fff;
  margin-bottom: 16px;
  max-width: 640px;
}
.page-hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 520px; margin-bottom: 32px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* === SYMPTOM GRID === */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.symptom-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.symptom-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.symptom-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.symptom-card p { font-size: 13px; color: var(--text-muted); }

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--border);
}
.process-step { text-align: center; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.process-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--text-muted); }

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-block { padding: 36px; background: var(--bg-dark); border-radius: var(--radius-lg); color: #fff; }
.contact-info-block h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.contact-detail-text h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-detail-text p, .contact-detail-text a { font-size: 16px; color: #fff; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,75,17,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === FOOTER === */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-epa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,104,64,0.25);
  border: 1px solid rgba(27,104,64,0.4);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #7EC8A0;
  margin-top: 16px;
}
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { font-size: 14px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; }

/* === CITY PAGE === */
.city-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.city-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

/* === UTILITY === */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.divider { border: none; border-top: 1px solid var(--border); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-images { display: none; }
  .hero-content { padding-bottom: 60px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 0; }
  .stats-row { flex-direction: column; gap: 2px; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ===================================================
   FULLBLEED HERO
   =================================================== */
.hero-fullbleed {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(0.8);
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(18,24,32,0.92) 0%,
    rgba(18,24,32,0.70) 50%,
    rgba(18,24,32,0.15) 100%
  );
  z-index: 1;
}
.hero-fullbleed-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-fullbleed-content {
  max-width: 580px;
}
/* reuse existing .hero-title, .hero-desc, .hero-trust, etc. */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

/* ===================================================
   PHOTO MOSAIC
   =================================================== */
.photo-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px;
  background: #F0EDE7;
  padding: 6px;
}
.mosaic-main {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  position: relative;
  overflow: hidden;
}
.mosaic-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.4s ease;
}
.mosaic-main:hover img { transform: scale(1.02); }
.mosaic-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  padding: 28px 16px 14px;
}
.mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mosaic-sm {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.mosaic-sm img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mosaic-sm:hover img { transform: scale(1.03); }
.mosaic-caption-sm {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 20px 12px 10px;
}
.mosaic-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mosaic-wide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mosaic-wide img:hover { transform: scale(1.02); }

@media (max-width: 768px) {
  .hero-fullbleed { min-height: 500px; }
  .hero-bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(18,24,32,0.85) 0%,
      rgba(18,24,32,0.75) 100%
    );
  }
  .photo-mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-main { grid-column: 1 / -1; }
  .mosaic-main img { height: 300px; }
  .mosaic-wide { grid-template-columns: 1fr 1fr; }
  .mosaic-wide img:last-child { display: none; }
}
@media (max-width: 480px) {
  .photo-mosaic { grid-template-columns: 1fr; }
  .mosaic-side { flex-direction: row; }
  .mosaic-wide { grid-template-columns: 1fr; }
}

/* ===================================================
   LOGO FIX — white transparent version
   =================================================== */
.nav-logo img {
  height: 44px;
  width: auto;
  filter: none !important;  /* override old invert filter */
}
.footer-logo img {
  height: 40px;
  width: auto;
  filter: none !important;
  opacity: 0.9;
}

/* ===================================================
   HERO PHOTO FIX — use stove-repair.jpeg (portrait, crop to landscape)
   =================================================== */
.hero-bg-img {
  object-position: center 20% !important;
}
