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

/*
 * Orange + near-black instance — white surfaces, near-black headlines,
 * one warm orange-red accent for CTAs, active nav, icons and the section-4
 * banner. Contrast-checked: white/orange fill 4.57:1, orange-ink/white
 * 4.95:1, ink/white 17.7:1 — all pass WCAG AA at normal text size.
 */

:root {
  --ink: #17181c;
  --ink-2: #4b4d55;
  --ink-3: #6b6e78;
  --rule: #e7e5e2;
  --rule-soft: #f0eeeb;
  --paper: #ffffff;
  --paper-2: #f7f7f8;
  --panel: #ffffff;
  --signal: #cf4816;
  --signal-fill: #cf4816;
  --signal-ink: #ffffff;
  --signal-soft: #fdece4;
  --signal-on-dark: #ff7a4a;
  --navy-band: #17181c;
  --orange: #cf4816;
  --orange-ink: #c8420f;
  --orange-dark: #b83c0f;
  --peach: #fdf1e9;
  --gold: #cf4816;
  --gold-dark: #c8420f;
  --gold-ink: #ffffff;
  --star: #cf4816;
  --accordion-bg: #ffffff;
  --accordion-ink: #17181c;
  --accordion-ink-2: #4b4d55;
  --accordion-accent: #cf4816;

  /* legacy names kept so shared partials keep resolving */
  --slate: #17181c;
  --slate-2: #ffffff;
  --slate-3: #f7f7f8;
  --navy: #17181c;
  --navy-deep: #0e0f12;
  --navy-mid: #4b4d55;
  --navy-line: #e7e5e2;
  --brass: #cf4816;
  --brass-light: #ff7a4a;
  --brass-dark: #b83c0f;
  --bone: #ffffff;
  --bone-warm: #f7f7f8;
  --ink-soft: #4b4d55;
  --muted: #6b6e78;
  --sea: #17181c;
  --amber: #cf4816;
  --amber-dark: #b83c0f;
  --teal: #17181c;
  --line: #e7e5e2;
  --line-soft: #f0eeeb;
  --paper-alt: #f7f7f8;

  --wrap: 1200px;
  --display: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --text: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --data: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --fs-xs: 13px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 17px;
  --fs-lg: 19px;
  --fs-xl: 21px;
  --fs-2xl: 23px;
  --tap: 54px;
  --gut: 18px;
  --r: 14px;
  --r-sm: 10px;
  --shadow: 0 6px 20px rgba(23,24,28,0.08);
  --shadow-lg: 0 18px 44px rgba(23,24,28,0.14);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  font-family: var(--text);
  font-size: var(--fs-base);
  line-height: 1.62;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(64px + env(safe-area-inset-bottom));
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.14; }
h1 { font-size: clamp(36px, 8.8vw, 58px); line-height: 1.04; letter-spacing: -0.03em; text-transform: uppercase; font-weight: 900; }
h2 { font-size: clamp(25px, 5.4vw, 34px); }
h3 { font-size: var(--fs-lg); }
p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gut) * 2); margin: 0 auto; padding: 0 var(--gut); }
.wrap-narrow { max-width: 820px; }

.plate {
  display: inline-block; margin: 0 0 12px;
  font-family: var(--data); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--orange-ink);
}
.plate--light { color: var(--orange); }
.lede { font-size: var(--fs-md); line-height: 1.62; color: var(--ink-2); }
.lede--light { color: rgba(255,255,255,0.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: var(--tap); padding: 14px 24px;
  font-family: var(--data); font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: var(--r-sm); cursor: pointer; text-align: center;
  background: transparent; color: var(--ink);
  transition: background .15s linear, color .15s linear, border-color .15s linear;
}
.btn svg { width: 17px; height: 17px; flex: none; stroke-width: 2.1; }
.btn--primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--navy { background: var(--navy-band); border-color: var(--navy-band); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn--navy-solid { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn--navy-solid:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--gold { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn--gold:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--white { background: #ffffff; border-color: #ffffff; color: var(--orange-ink); }
.btn--white:hover { background: #fdf1e9; }
.btn--outline { background: var(--paper); border-color: var(--rule); color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); background: var(--paper-2); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--rule); }
.header__inner { display: flex; align-items: center; gap: 14px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; min-width: 0; padding: 9px 0; }
.brand__mark {
  width: 34px; height: 34px; flex: none; display: grid; place-items: center;
  color: var(--orange);
}
.brand__mark svg { width: 30px; height: 30px; stroke-width: 1.8; }
.brand__name { display: block; font-family: var(--display); font-size: 18px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: var(--ink); text-transform: uppercase; }
.brand__line2 { display: block; font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.11em; line-height: 1.4; color: var(--orange-ink); text-transform: uppercase; margin-top: 2px; }
.brand__sub { display: block; font-family: var(--data); font-size: 10px; letter-spacing: 0.02em; color: var(--ink-3); margin-top: 2px; }

.nav { display: none; align-items: center; gap: 24px; }
.nav__link { font-family: var(--data); font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-2); transition: color .15s linear; }
.nav__link:hover { color: var(--orange-ink); }
.nav__link--active { color: var(--orange-ink); }
.nav__item { position: relative; }
.nav__toggle { display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; padding: 0; cursor: pointer; font: inherit; font-family: var(--data); font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-2); }
.nav__toggle:hover { color: var(--orange-ink); }
.nav__caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px, -2px); transition: transform .18s ease; }
.nav__item[data-open="true"] .nav__caret { transform: rotate(-135deg) translate(-2px, -2px); }
.nav__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  min-width: 260px; padding: 10px; margin: 0; list-style: none;
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r);
  box-shadow: var(--shadow-lg); display: none; max-height: 60vh; overflow-y: auto;
}
.nav__item[data-open="true"] .nav__menu { display: block; }
.nav__menu a { display: block; padding: 9px 12px; border-radius: var(--r-sm); font-size: var(--fs-sm); font-weight: 500; color: var(--ink-2); }
.nav__menu a:hover { background: var(--signal-soft); color: var(--orange-ink); }

.header__phone { display: none; align-items: center; gap: 8px; font-family: var(--display); font-size: 19px; font-weight: 800; color: var(--orange-ink); letter-spacing: -0.01em; }
.header__phone svg { width: 18px; height: 18px; stroke-width: 2.2; color: var(--orange); }
.header__phone:hover { color: var(--orange-dark); }
.header__cta { display: none; }
.header__call {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; flex: none;
  min-height: 42px; padding: 0 16px; border-radius: var(--r-sm);
  background: var(--orange); color: #fff;
  font-family: var(--data); font-size: var(--fs-sm); font-weight: 700;
}
.header__call svg { width: 16px; height: 16px; stroke-width: 2.2; }
.header__call span { display: none; }

/* ---------- Hero — plain photo panel, no bg-image overlay ---------- */
.hero { position: relative; background: var(--paper); overflow: hidden; }
.hero__inner { display: grid; gap: 28px; padding-block: 30px; }
.hero h1 { margin: 0 0 14px; color: var(--ink); }
.hero__sub { font-size: var(--fs-xl); font-weight: 700; color: var(--orange-ink); margin: 0 0 8px; font-family: var(--display); }
.hero__equip { margin: 0 0 22px; font-size: var(--fs-md); font-weight: 500; color: var(--ink-3); }
.hero__h2-seo { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hero__actions { display: grid; gap: 10px; }
.hero__actions .btn { width: 100%; }

.hero__trust { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.hero__trust li { display: flex; align-items: center; gap: 7px; font-family: var(--data); font-size: 12px; font-weight: 600; color: var(--ink-2); line-height: 1.3; }
.hero__trust svg { width: 15px; height: 15px; flex: none; stroke: var(--orange); stroke-width: 2; }
.hero__trust li:not(:last-child)::after { content: ''; }
.hero__trust-rating { gap: 5px; }
.hero__stars { display: inline-flex; gap: 1px; }
.hero__stars svg { width: 13px; height: 13px; fill: var(--orange); stroke: none; }
.hero__spec { display: none; }

.hero__media { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; }
.hero__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); }

.hero__phoneline { margin: 18px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; }
.hero__phoneline span { font-family: var(--data); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.hero__phoneline,
.hero__phoneline a { font-family: var(--display); font-size: clamp(26px, 7vw, 34px); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.hero__phoneline:hover, .hero__phoneline a:hover { color: var(--orange-ink); }

/* ---------- Sections ---------- */
.section { padding: 44px 0; }
.section--paper { background: var(--paper); }
.section--warm { background: var(--paper-2); }
.section--navy { background: var(--navy-band); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section__head { margin-bottom: 26px; max-width: 62ch; }
.section__head h2 { margin-bottom: 12px; text-transform: uppercase; }
.section__head p { margin-bottom: 0; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Problem grid (plain, no side card) ---------- */
.probgrid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.probgrid li { display: flex; }
.probcard {
  flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px; padding: 24px 12px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r);
  transition: border-color .15s linear, box-shadow .15s linear;
}
.probcard:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.probcard__icon { color: var(--orange); }
.probcard__icon svg { width: 30px; height: 30px; stroke-width: 1.7; }
.probcard__label { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.probcard__call { margin-top: 4px; font-family: var(--data); font-size: 12px; font-weight: 700; letter-spacing: .03em; color: var(--orange-ink); }
.probcard__call:hover { color: var(--orange-dark); }

/* ---------- Full-width orange CTA banner ---------- */
.urgencyband { background: var(--orange); padding: 30px 0; }
.urgencyband__inner { display: grid; gap: 18px; align-items: center; }
.urgencyband__msg { display: flex; align-items: center; gap: 14px; }
.urgencyband__icon { flex: none; color: #fff; }
.urgencyband__icon svg { width: 30px; height: 30px; stroke-width: 1.7; }
.urgencyband__msg h2 { color: #fff; margin: 0 0 4px; font-size: var(--fs-xl); text-transform: uppercase; }
.urgencyband__msg p { color: rgba(255,255,255,.92); margin: 0; font-size: var(--fs-sm); }
.urgencyband .btn--white { width: 100%; }

/* ---------- Everyday / premium split ---------- */
.splitgrid { display: grid; gap: 30px; }
.splitgrid__col h2 { margin: 0 0 10px; font-size: clamp(20px, 4.6vw, 26px); }
.splitgrid__col p { color: var(--ink-2); margin: 0 0 18px; }
.splitgrid__media { border-radius: var(--r); overflow: hidden; }
.splitgrid__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Brand row ---------- */
.brandrow { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.brandrow__item { display: flex; }
.brandrow__logo {
  flex: 1; display: grid; place-items: center; min-height: 68px; padding: 12px 14px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r);
}
.brandrow__logo img { max-height: 28px; max-width: 100%; width: auto; object-fit: contain; }

@media (min-width: 560px) {
  .brandrow { grid-template-columns: repeat(7, 1fr); gap: 12px; }
  .brandrow__logo { min-height: 76px; padding: 14px 18px; }
  .brandrow__logo img { max-height: 34px; }
}
.brandrow__fallback { font-family: var(--display); font-size: var(--fs-lg); font-weight: 700; color: var(--ink); letter-spacing: -0.01em; opacity: .78; }
.brandrow__more { margin: 18px 0 0; text-align: center; font-size: var(--fs-sm); color: var(--ink-3); }

/* ---------- What We Repair — appliance-category cards ---------- */
.repairgrid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.repaircard { display: block; }
.repaircard__media { display: block; border-radius: var(--r); overflow: hidden; margin-bottom: 12px; }
.repaircard__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .3s ease; }
.repaircard:hover .repaircard__media img { transform: scale(1.03); }
.repaircard__label { display: block; font-family: var(--display); font-size: var(--fs-md); font-weight: 800; color: var(--ink); text-transform: uppercase; margin-bottom: 4px; }
.repaircard__caption { display: block; font-size: var(--fs-xs); color: var(--ink-3); }

/* ---------- Detail blocks (two-column) ---------- */
.detail { display: grid; gap: 30px; }
.detail__lead .plate { margin-bottom: 14px; }
.detail__lead h2 { margin: 0 0 14px; text-transform: none; }
.detail__lead .lede { margin: 0 0 22px; }
.detail__lead .btn { width: auto; }
.detail__cols { display: grid; gap: 18px; }
.detail__col {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r);
  padding: 22px 22px 20px; box-shadow: var(--shadow);
}
.detail__col h3 {
  font-size: var(--fs-sm); font-weight: 700; margin: 0 0 16px; padding-bottom: 12px;
  color: var(--orange-ink); text-transform: uppercase; letter-spacing: .06em;
  border-bottom: 2px solid var(--signal-soft);
}
.detail__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.detail__col li {
  position: relative; padding: 10px 0 10px 22px; font-size: var(--fs-sm); color: var(--ink-2);
  border-bottom: 1px solid var(--rule-soft);
}
.detail__col li:last-child { border-bottom: 0; }
.detail__col li::before {
  content: ''; position: absolute; left: 2px; top: 17px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
}

.safetybit { margin: 10px 0 30px !important; padding: 16px 18px; border-radius: var(--r-sm); background: var(--peach); border: 1px solid #f3d9c4; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.55; }
.safetybit strong { color: var(--orange-ink); text-transform: uppercase; font-size: 12px; letter-spacing: .04em; }
.safetybit--gas { background: #fdeceb; border-color: #f3c8c4; }
.safetybit--gas strong { color: #b3261e; }

/* ---------- Repair Without the Guesswork ---------- */
.processgrid { display: grid; gap: 34px; }
.processgrid__lead h2 { margin: 0 0 12px; text-transform: uppercase; }
.processgrid__lead .lede { margin: 0 0 20px; }
.processgrid__lead { display: flex; flex-direction: column; }
.processgrid__media { border-radius: var(--r); overflow: hidden; margin-top: auto; }
.processgrid__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; max-height: 340px; }

.processgrid__steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-content: center; height: 100%; }
.procstep {
  text-align: center; padding: 22px 14px; background: var(--paper-2);
  border: 1px solid var(--rule); border-radius: var(--r);
}
.procstep__num { display: block; font-family: var(--data); font-size: 11px; font-weight: 700; color: var(--ink-3); letter-spacing: .06em; margin-bottom: 10px; }
.procstep__badge {
  display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 12px;
  border-radius: 50%; background: #fff; color: var(--orange); box-shadow: var(--shadow);
}
.procstep__badge svg { width: 26px; height: 26px; stroke-width: 1.7; }
.procstep__label { display: block; font-family: var(--display); font-size: 12px; font-weight: 700; color: var(--ink); letter-spacing: .02em; }

.process__callout {
  margin: 32px auto 0; max-width: 68ch; text-align: center; padding: 18px 20px;
  background: var(--peach); border: 1px solid #f3d9c4; border-radius: var(--r-sm);
  font-family: var(--display); font-size: var(--fs-md); font-weight: 700; color: var(--ink);
  text-transform: uppercase;
}

/* ---------- Communities / chips ---------- */
.communities { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.communities li { padding: 9px 15px; border: 1px solid var(--rule); border-radius: 999px; background: var(--paper); font-family: var(--data); font-size: var(--fs-sm); color: var(--ink-2); }
.areanotes { display: grid; gap: 18px; }
.areanotes__item h3 { font-size: var(--fs-md); margin: 0 0 7px; }
.areanotes__item p { font-size: var(--fs-sm); color: var(--ink-2); margin: 0; }

/* ---------- Reviews + trust badges (4-col row) ---------- */
.testimony { display: grid; gap: 14px; }
.testify { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; }
.testify__stars { display: flex; gap: 3px; margin-bottom: 12px; }
.testify__stars svg { width: 14px; height: 14px; fill: var(--orange); }
.testify blockquote { margin: 0 0 14px; font-size: var(--fs-sm); line-height: 1.6; color: var(--ink-2); font-style: italic; }
.testify__who { margin-top: auto; font-family: var(--data); font-size: var(--fs-xs); color: var(--ink-3); }
.testify__who strong { font-family: var(--display); font-size: var(--fs-sm); font-weight: 700; color: var(--ink); }
.reviews__cta { margin: 22px 0 0; text-align: center; }
.reviews__cta .btn { width: auto; }

.trustbadges { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 22px; display: grid; gap: 16px; align-content: center; }
.trustbadges__item { display: flex; align-items: center; gap: 10px; }
.trustbadges__item svg { width: 20px; height: 20px; flex: none; color: var(--orange); stroke-width: 1.8; }
.trustbadges__item span { font-family: var(--display); font-size: 12px; font-weight: 700; color: var(--ink); letter-spacing: .02em; }

/* ---------- FAQ accordion (2-col grid) ---------- */
.faq { display: grid; gap: 10px; }
.checklist__item { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; }
.checklist__item[open] { border-color: var(--orange); }
.checklist__summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 17px 18px; }
.checklist__summary::-webkit-details-marker { display: none; }
.checklist__label { flex: 1; font-family: var(--display); font-size: var(--fs-md); font-weight: 600; color: var(--ink); line-height: 1.35; }
.checklist__chev { flex: none; width: 10px; height: 10px; border-right: 2px solid var(--orange-ink); border-bottom: 2px solid var(--orange-ink); transform: rotate(45deg); transition: transform .2s ease; margin-right: 4px; }
.checklist__item[open] .checklist__chev { transform: rotate(-135deg); margin-top: 5px; }
.checklist__body { padding: 0 18px 20px; }
.checklist__body p { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; }

/* ---------- Inline call rule ---------- */
.callrule { margin: 26px 0 0; padding: 20px; background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--r); display: grid; gap: 14px; }
.callrule__txt { margin: 0; font-family: var(--data); font-size: var(--fs-sm); font-weight: 600; color: var(--ink-2); }
.callrule .btn { width: 100%; }
.callrule--light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.callrule--light .callrule__txt { color: rgba(255,255,255,.82); }

/* ---------- Form ---------- */
.formgrid { display: grid; gap: 26px; }
.formcard { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 24px 20px; box-shadow: var(--shadow); }
.fieldrow { display: grid; gap: 0; }
.field { margin-bottom: 15px; }
.field label { display: block; font-family: var(--data); font-size: var(--fs-xs); font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field__opt { font-weight: 400; color: var(--ink-3); }
.field input, .field select {
  width: 100%; min-height: 50px; padding: 12px 14px;
  font-family: var(--text); font-size: var(--fs-base); color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-sm);
  transition: border-color .15s linear, box-shadow .15s linear;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--signal-soft); }
.field__err { display: block; margin-top: 6px; font-size: var(--fs-xs); font-weight: 600; color: #b3261e; }
.formalt { margin: 20px 0 6px; font-family: var(--data); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.formnote { margin: 14px 0 0; font-size: var(--fs-xs); line-height: 1.6; color: var(--ink-3); }
.formok { margin: 0 0 18px; padding: 14px 16px; border-radius: var(--r-sm); background: var(--signal-soft); color: var(--ink); font-family: var(--data); font-size: var(--fs-sm); font-weight: 600; }

/* ---------- Final CTA band — dark near-black, distinct from orange banner ---------- */
.band { background: var(--navy-band); color: #fff; padding: 40px 0; }
.band__inner { display: grid; gap: 22px; align-items: center; }
.band h2 { color: #fff; font-size: clamp(24px, 5.6vw, 32px); margin: 0; text-transform: uppercase; }
.band__sub { font-family: var(--display); font-size: var(--fs-lg); font-weight: 700; color: var(--orange); margin: 8px 0 12px; }
.band__line { font-size: var(--fs-xs); color: rgba(255,255,255,.65); margin: 2px 0 0; }
.band__actions { display: grid; gap: 10px; }

/* ---------- Footer (4-column, light, beneath dark band) ---------- */
.footer { background: var(--paper-2); padding: 44px 0 26px; }
.footer__grid { display: grid; gap: 30px; }
.footer h4 { margin: 0 0 14px; font-family: var(--data); font-size: var(--fs-xs); font-weight: 700; color: var(--ink); letter-spacing: .07em; text-transform: uppercase; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; font-size: var(--fs-sm); color: var(--ink-2); }
.footer a { color: var(--ink-2); transition: color .15s linear; }
.footer a:hover { color: var(--orange-ink); }
.footer__cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; }
.footer__brandrow { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.footer__line { margin: 0 0 6px; font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.footer__sub { margin: 0 0 16px; font-size: var(--fs-sm); color: var(--ink-3); }
.footer__social { display: flex; gap: 10px; }
.footer__social-ico { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); border: 1px solid var(--rule); color: var(--ink-2); }
.footer__social-ico:hover { color: var(--orange-ink); border-color: var(--orange); }
.footer__social-ico svg { width: 16px; height: 16px; }
.footer__num { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--orange-ink); margin: 2px 0 12px; }
.footer__num svg { width: 16px; height: 16px; stroke-width: 2.2; color: var(--orange); }
.footer__loc { display: flex; align-items: center; gap: 8px; margin: 0 0 8px; font-size: var(--fs-sm); color: var(--ink-2); }
.footer__loc svg { width: 15px; height: 15px; flex: none; stroke: var(--ink-3); stroke-width: 1.8; }
.footer__parent { margin: 30px 0 0; padding-top: 22px; border-top: 1px solid var(--rule); font-size: var(--fs-xs); color: var(--ink-3); }
.footer__parent a { color: var(--orange-ink); font-weight: 600; }
.footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--rule); font-size: var(--fs-xs); color: var(--ink-3); }
.footer__base a { color: var(--ink-3); }
.footer__base a:hover { color: var(--orange-ink); }

/* ---------- Sticky mobile call bar (CALL NOW gets the larger share) ---------- */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: flex; border-top: 1px solid var(--rule); }
.callbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 56px; font-family: var(--data); font-size: var(--fs-sm); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.callbar__call { flex: 1.6; background: var(--orange); color: #fff; }
.callbar__call svg { width: 18px; height: 18px; stroke-width: 2.2; }
.callbar__alt { flex: 1; background: var(--navy-band); color: #fff; }

/* ---------- Desktop floating call button ---------- */
.fab {
  display: none; position: fixed; right: 22px; bottom: 22px; z-index: 75;
  align-items: center; gap: 9px; padding: 14px 20px; border-radius: 999px;
  background: var(--orange); color: #fff; box-shadow: var(--shadow-lg);
  font-family: var(--data); font-size: var(--fs-sm); font-weight: 700;
}
.fab:hover { background: var(--orange-dark); }
.fab svg { width: 18px; height: 18px; stroke-width: 2.2; flex: none; }

/* ---------- Callback popup ---------- */
.pop { position: fixed; inset: 0; z-index: 90; display: none; align-items: flex-end; justify-content: center; background: rgba(23,24,28,.6); }
.pop[data-open="true"] { display: flex; }
.pop__panel { position: relative; width: 100%; max-width: 440px; background: var(--paper); border-radius: var(--r) var(--r) 0 0; padding: 28px 22px 24px; max-height: 92vh; overflow-y: auto; }
.pop__close { position: absolute; top: 8px; right: 10px; width: 38px; height: 38px; display: grid; place-items: center; background: none; color: var(--ink-3); border: 0; cursor: pointer; font-size: 22px; line-height: 1; }
.pop__close:hover { color: var(--ink); }
.pop__lab { display: block; margin: 0 0 10px; font-family: var(--data); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-ink); }
.pop h3 { font-size: clamp(23px, 6vw, 28px); margin: 0 0 10px; text-transform: none; }
.pop__sub { font-size: var(--fs-sm); color: var(--ink-2); margin: 0 0 18px; }
.pop__num { display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: var(--r-sm); background: var(--orange); color: #fff; padding: 15px; font-family: var(--display); font-size: 24px; font-weight: 700; }
.pop__num:hover { background: var(--orange-dark); }
.pop__num svg { width: 19px; height: 19px; stroke-width: 2.2; flex: none; }
.pop__hours { margin: 10px 0 0; font-size: var(--fs-xs); color: var(--ink-3); text-align: center; }

/* ---------- Scroll reveal ---------- */
.js-reveal .reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s cubic-bezier(.22,.61,.36,1); }
.js-reveal .reveal.is-in { opacity: 1; transform: none; }
.pulse:not(.fab):not(.callbar__call) { position: relative; }

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

/* ---------- 620px ---------- */
@media (min-width: 620px) {
  :root { --gut: 24px; }
  .hero__actions { display: flex; }
  .hero__actions .btn { width: auto; min-width: 220px; }
  .probgrid { grid-template-columns: repeat(3, 1fr); }
  .repairgrid { grid-template-columns: repeat(2, 1fr); }
  .testimony { grid-template-columns: repeat(2, 1fr); }
  .areanotes { grid-template-columns: repeat(2, 1fr); }
  .fieldrow { grid-template-columns: 1fr 1fr; column-gap: 14px; }
  .callrule { grid-template-columns: 1fr auto; align-items: center; }
  .callrule .btn { width: auto; min-width: 220px; }
  .splitgrid { grid-template-columns: 1fr 1fr; }
  .urgencyband__inner { grid-template-columns: 1fr auto; }
  .urgencyband .btn--white { width: auto; }
  .band__inner { grid-template-columns: 1.2fr .8fr; }
  .band__actions { grid-template-columns: 1fr 1fr; }
  .pop { align-items: center; padding: 22px; }
  .pop__panel { border-radius: var(--r); }
  .detail__cols { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .processgrid__steps { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 1000px ---------- */
@media (min-width: 1000px) {
  body { padding-bottom: 0; }
  .callbar { display: none; }
  .fab { display: inline-flex; }
  .nav { display: flex; }
  .header__phone { display: inline-flex; }
  .header__call { display: none; }

  .section { padding: 62px 0; }
  .section__head { margin-bottom: 34px; }

  .hero__inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 48px; padding-block: 58px; }
  .hero__media img { min-height: 420px; }

  .probgrid { grid-template-columns: repeat(5, 1fr); }
  .repairgrid { grid-template-columns: repeat(4, 1fr); }
  .processgrid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .testimony { grid-template-columns: repeat(4, 1fr); }
  .areanotes { grid-template-columns: repeat(2, 1fr); }
  .formgrid { grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
  .formcard { padding: 30px 26px; }
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}
