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

/*
 * "Kitchen" — clean white/ice-blue surfaces, one confident blue accent, deep
 * navy CTA bands. Poppins for display, Inter for text. Soft rounding, light
 * borders and lifted cards rather than heavy shadows.
 */

:root {
  --ink: #0f172a;
  --ink-2: #475569;
  --ink-3: #5b6675;
  --rule: #e2e8f0;
  --rule-soft: #eef2f7;
  --paper: #ffffff;
  --paper-2: #f5f8fc;
  --panel: #ffffff;
  --signal: #1d4ed8;
  --signal-fill: #1d4ed8;
  --signal-ink: #ffffff;
  --signal-soft: #eaf1fe;
  --signal-on-dark: #93b4ff;
  --navy-band: #12224a;
  --star: #f5a623;
  --accordion-bg: #ffffff;
  --accordion-ink: #0f172a;
  --accordion-ink-2: #475569;
  --accordion-accent: #1d4ed8;

  /* legacy names kept so shared partials keep resolving */
  --slate: #0f172a;
  --slate-2: #ffffff;
  --slate-3: #f5f8fc;
  --navy: #12224a;
  --navy-deep: #0b1733;
  --navy-mid: #475569;
  --navy-line: #e2e8f0;
  --brass: #1d4ed8;
  --brass-light: #2563eb;
  --brass-dark: #1741ad;
  --bone: #ffffff;
  --bone-warm: #f5f8fc;
  --ink-soft: #475569;
  --muted: #5b6675;
  --sea: #1d4ed8;
  --amber: #1d4ed8;
  --amber-dark: #1741ad;
  --teal: #1d4ed8;
  --line: #e2e8f0;
  --line-soft: #eef2f7;
  --paper-alt: #f5f8fc;

  --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: 12px;
  --r-sm: 8px;
  --shadow: 0 6px 20px rgba(15,23,42,0.07);
  --shadow-lg: 0 18px 44px rgba(15,23,42,0.12);
}

*, *::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: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1.16; }
h1 { font-size: clamp(34px, 8.4vw, 54px); line-height: 1.06; letter-spacing: -0.03em; }
h2 { font-size: clamp(25px, 5.4vw, 33px); }
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(--signal);
}
.plate--light { color: var(--signal-on-dark); }
.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(--signal-fill); border-color: var(--signal-fill); color: var(--signal-ink); }
.btn--primary:hover { background: var(--brass-dark); border-color: var(--brass-dark); }
.btn--navy { background: var(--navy-band); border-color: var(--navy-band); color: #fff; }
.btn--navy:hover { background: var(--signal-fill); border-color: var(--signal-fill); }
.btn--outline { background: var(--paper); border-color: var(--rule); color: var(--signal); }
.btn--outline:hover { border-color: var(--signal); background: var(--signal-soft); }
.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,.94); 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: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: var(--r-sm);
  border: 1.5px solid var(--ink); color: var(--ink);
}
.brand__mark svg { width: 24px; height: 24px; stroke-width: 1.7; }
.brand__name { display: block; font-family: var(--display); font-size: 18px; font-weight: 700; 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: 600; letter-spacing: 0.11em; line-height: 1.4; color: var(--ink-2); 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: 26px; }
.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(--signal); }
.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(--signal); }
.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(--signal); }

.header__phone { display: none; align-items: center; gap: 8px; font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--signal); letter-spacing: -0.01em; }
.header__phone svg { width: 17px; height: 17px; stroke-width: 2.2; }
.header__phone:hover { color: var(--brass-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(--signal-fill); 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 ---------- */
.hero { position: relative; background: var(--paper); overflow: hidden; }
.hero__inner { display: grid; gap: 0; padding-block: 0; }
.hero__lead { padding: 34px 0 30px; }
.hero h1 { margin: 0 0 14px; }
.hero h1 em { font-style: normal; color: var(--signal); }
.hero__sub { font-size: var(--fs-lg); font-weight: 500; color: var(--ink-2); margin: 0 0 6px; font-family: var(--text); }
.hero__support { margin: 0 0 24px; font-size: var(--fs-md); font-weight: 600; color: var(--signal); }
.hero__actions { display: grid; gap: 10px; }
.hero__actions .btn { width: 100%; }

.hero__trust { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 10px; }
.hero__trust li { display: flex; align-items: flex-start; gap: 9px; font-family: var(--data); font-size: var(--fs-xs); font-weight: 600; color: var(--ink-2); line-height: 1.35; }
.hero__trust svg { width: 17px; height: 17px; flex: none; stroke: var(--signal); stroke-width: 2; margin-top: 1px; }
.hero__spec { display: none; }

.hero__media { position: relative; margin: 0 calc(var(--gut) * -1); }
.hero__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
/* Feathers the photo into the white copy panel instead of a hard seam. */
.hero__media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,.72) 12%, rgba(255,255,255,0) 34%);
}

.gbadge {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 14px var(--gut) 0; padding: 10px 16px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r);
  box-shadow: var(--shadow);
}
.gbadge__g { width: 26px; height: 26px; flex: none; }
.gbadge__txt { display: block; font-family: var(--data); font-size: var(--fs-sm); font-weight: 600; color: var(--ink); line-height: 1.3; }
.gbadge__stars { display: flex; gap: 2px; margin-top: 2px; }
.gbadge__stars svg { width: 12px; height: 12px; fill: var(--star); }

.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(--signal); }
.hero__phoneline:hover, .hero__phoneline a:hover { color: var(--brass-dark); }

/* ---------- 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; }
.section__head p { margin-bottom: 0; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Active leak strip ---------- */
.urgency { background: var(--paper-2); border-block: 1px solid var(--rule); padding: 40px 0; }
.urgency__inner { display: grid; gap: 22px; align-items: center; }
.urgency h2 { color: var(--ink); margin: 0 0 12px; }
.urgency h2 span { color: var(--signal); }
.urgency p { color: var(--ink-2); margin: 0 0 20px; }
.urgency .btn { width: auto; }
.urgency__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); }

/* ---------- Problem grid (static cards, no collapsing) ---------- */
.probgrid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.probgrid li { display: flex; }
.probcard {
  flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px; padding: 22px 12px;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  transition: background .15s linear;
}
.probcard:hover { background: var(--signal-soft); }
.probgrid li:nth-child(2n) .probcard { border-right: 0; }
.probcard__icon { color: var(--signal); }
.probcard__icon svg { width: 30px; height: 30px; stroke-width: 1.6; }
.probcard__label { font-family: var(--display); font-size: var(--fs-sm); font-weight: 700; color: var(--ink); line-height: 1.3; }
.probcard__note { font-family: var(--data); font-size: var(--fs-xs); color: var(--ink-3); line-height: 1.4; }
.probgrid__note { margin: 22px 0 0; text-align: center; font-family: var(--data); font-size: var(--fs-xs); color: var(--ink-3); }
.probgrid__more { margin: 20px 0 0; text-align: center; }
.probgrid__more a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--data); font-size: var(--fs-sm); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--signal); }
.probgrid__more a:hover { color: var(--brass-dark); }

/* ---------- Split feature (integrated / panel-ready) ---------- */
.feature { display: grid; gap: 0; align-items: stretch; }
.feature__media img { width: 100%; height: 100%; min-height: 240px; max-height: 500px; object-fit: cover; }
.feature__body { padding: 32px var(--gut); background: var(--paper); }
.feature__body h2 { margin: 0 0 14px; }
.feature__body p { color: var(--ink-2); margin: 0 0 20px; }
.feature__body .btn { width: auto; }
.feature__list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.feature__list li { padding: 7px 14px; border: 1px solid var(--rule); border-radius: 999px; font-family: var(--data); font-size: var(--fs-xs); font-weight: 600; color: var(--ink-2); }

/* ---------- 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(6, 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: 16px 0 0; text-align: center; font-size: var(--fs-sm); font-style: italic; color: var(--ink-3); }
.brands__fine { margin: 22px auto 0; max-width: 78ch; text-align: center; font-size: var(--fs-xs); line-height: 1.6; color: var(--ink-3); }

.brandgroup { margin: 0 0 22px; }
.brandgroup h3 { font-family: var(--data); font-size: var(--fs-xs); font-weight: 700; color: var(--signal); margin: 0 0 12px; text-transform: uppercase; letter-spacing: .08em; }
.brandgroup__list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.brandgroup__list li { padding: 9px 15px; border: 1px solid var(--rule); border-radius: 999px; background: var(--paper); font-family: var(--data); font-size: var(--fs-sm); font-weight: 600; color: var(--ink-2); }

/* ---------- Process strip ---------- */
.process { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 14px; position: relative; }
.process__step { text-align: center; }
.process__num { display: block; font-family: var(--display); font-size: var(--fs-sm); font-weight: 700; color: var(--ink-3); margin-bottom: 10px; }
.process__ico { display: grid; place-items: center; margin: 0 auto 12px; color: var(--signal); }
.process__ico svg { width: 30px; height: 30px; stroke-width: 1.6; }
.process__step h3 { font-size: var(--fs-md); margin: 0 0 5px; }
.process__step p { font-size: var(--fs-sm); color: var(--ink-3); line-height: 1.45; margin: 0; }

/* ---------- Three-up highlight cards ---------- */
.trio { display: grid; gap: 14px; align-items: stretch; }
.tcard { display: flex; flex-direction: column; background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--r); padding: 24px; }
.tcard--blue { background: var(--signal-soft); border-color: #d3e2fd; }
.tcard__lab { font-family: var(--data); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 10px; }
.tcard h3 { margin: 0 0 12px; font-size: var(--fs-xl); }
.tcard p { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; margin: 0 0 16px; }
.tcard__link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 4px; font-family: var(--data); font-size: var(--fs-sm); font-weight: 700; color: var(--signal); }
.tcard__link:hover { color: var(--brass-dark); }
.tcard__media { margin: 0 0 16px; border-radius: var(--r-sm); overflow: hidden; }
.tcard__media img { width: 100%; aspect-ratio: 16/13; object-fit: cover; }
.tcard__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0 0 16px; }
.tcard__thumbs img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--r-sm); }
.tcard__quote { font-size: var(--fs-md); font-style: italic; color: var(--ink); line-height: 1.6; margin: 0 0 12px; }
.tcard__who { font-family: var(--data); font-size: var(--fs-xs); font-weight: 600; color: var(--ink-3); margin-bottom: 16px; }
.tcard__stars { display: flex; gap: 3px; margin-bottom: 12px; }
.tcard__stars svg { width: 15px; height: 15px; fill: var(--star); }

/* ---------- 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; }

/* ---------- Work gallery ---------- */
.workphotos { display: grid; gap: 12px; margin: 0 0 24px; }
.workphoto { border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; background: var(--paper); }
.workphoto img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.workphoto figcaption { padding: 11px 13px; font-family: var(--data); font-size: var(--fs-xs); color: var(--ink-3); line-height: 1.45; }
.worklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.worklist li { display: grid; gap: 3px; padding: 15px 16px; background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-sm); }
.worklist__unit { font-family: var(--display); font-size: var(--fs-md); font-weight: 700; color: var(--ink); }
.worklist__job { font-family: var(--data); font-size: var(--fs-sm); color: var(--ink-2); }
.worklist__place { font-family: var(--data); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--signal); }

/* ---------- Reviews ---------- */
.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(--star); }
.testify blockquote { margin: 0 0 14px; font-size: var(--fs-sm); line-height: 1.6; color: var(--ink-2); }
.testify__who { margin-top: auto; font-family: var(--data); font-size: var(--fs-xs); color: var(--ink-3); }
.testify__who strong { display: block; font-family: var(--display); font-size: var(--fs-md); font-weight: 700; color: var(--ink); margin-bottom: 1px; }
.reviews__cta { margin: 22px 0 0; text-align: center; }
.reviews__cta .btn { width: auto; }
.reviews__empty { padding: 20px 0; color: var(--ink-3); font-size: var(--fs-sm); }

/* ---------- Long-form copy blocks ---------- */
.expertise h2 { margin: 0 0 14px; }
.expertise p { font-size: var(--fs-md); color: var(--ink-2); }

/* ---------- FAQ accordion ---------- */
.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(--signal); }
.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(--signal); border-bottom: 2px solid var(--signal); 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(--signal); 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(--signal); font-family: var(--data); font-size: var(--fs-sm); font-weight: 600; }

/* ---------- Final CTA band ---------- */
.band { background: var(--navy-band); color: #fff; padding: 34px 0; }
.band__inner { display: grid; gap: 20px; align-items: center; }
.band h2 { color: #fff; font-size: clamp(22px, 5.2vw, 30px); margin: 0; }
.band__sub { font-family: var(--data); font-size: var(--fs-sm); color: rgba(255,255,255,.72); margin: 10px 0 0; }
.band__line { font-size: var(--fs-sm); color: rgba(255,255,255,.72); margin: 4px 0 0; }
.band__actions { display: grid; gap: 10px; }
.band__num { display: none; }
.band .btn--navy { background: var(--signal-fill); border-color: var(--signal-fill); color: #fff; }
.band .btn--navy:hover { background: var(--brass-light); border-color: var(--brass-light); }
.band .btn--outline { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); color: #fff; }
.band .btn--outline:hover { background: rgba(255,255,255,.18); border-color: #fff; }

/* ---------- LightShare block ---------- */
.lightshare-section { position: relative; background-size: cover; background-position: center; padding-block: 52px; }
.lightshare-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,.72), rgba(15,23,42,.82)); }
.lightshare-section .wrap { position: relative; z-index: 1; }
.lightshare { background: rgba(255,255,255,.97); border-radius: var(--r); padding: 30px 24px; text-align: center; }
.lightshare p { color: var(--ink-2); font-size: var(--fs-sm); }
.lightshare .btn { margin-top: 14px; width: auto; }

/* ---------- Footer ---------- */
.footer { background: var(--paper); border-top: 1px solid var(--rule); padding: 40px 0 26px; }
.footer__grid { display: grid; gap: 26px; }
.footer h4 { margin: 0 0 12px; 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: 8px; font-size: var(--fs-sm); color: var(--ink-2); }
.footer a { color: var(--ink-2); transition: color .15s linear; }
.footer a:hover { color: var(--signal); }
.footer__brandrow { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.footer__line { margin: 0 0 4px; font-size: var(--fs-sm); color: var(--ink-2); }
.footer__sub { margin: 0 0 4px; font-size: var(--fs-sm); color: var(--ink-3); }
.footer__hours { margin: 8px 0 0; font-family: var(--data); font-size: var(--fs-xs); color: var(--ink-3); }
.footer__num { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--signal); margin: 4px 0; }
.footer__num svg { width: 17px; height: 17px; stroke-width: 2.2; }
.footer__parent { margin: 14px 0 0; }
.footer__parent a { display: inline-flex; align-items: center; justify-content: center; padding: 11px 18px; border: 1px solid var(--signal); border-radius: var(--r-sm); font-family: var(--data); font-size: var(--fs-xs); font-weight: 700; color: var(--signal); }
.footer__parent a:hover { background: var(--signal-soft); }
.footer__loc { display: flex; align-items: center; gap: 8px; }
.footer__loc svg { width: 15px; height: 15px; flex: none; stroke: var(--ink-3); stroke-width: 1.8; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 12px 0 0; font-size: var(--fs-xs); }
.footer__fine { margin: 24px 0 0; padding-top: 18px; border-top: 1px solid var(--rule); font-size: var(--fs-xs); line-height: 1.6; color: var(--ink-3); }
.footer__base { display: grid; gap: 6px; margin-top: 14px; font-size: var(--fs-xs); color: var(--ink-3); }

/* ---------- Sticky mobile call bar ---------- */
.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.5; background: var(--signal-fill); color: #fff; }
.callbar__call svg { width: 18px; height: 18px; stroke-width: 2.2; }
.callbar__alt { 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(--signal-fill); color: #fff; box-shadow: var(--shadow-lg);
  font-family: var(--data); font-size: var(--fs-sm); font-weight: 700;
}
.fab:hover { background: var(--brass-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(15,23,42,.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(--signal); }
.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(--signal); }
.pop h3 { font-size: clamp(23px, 6vw, 28px); margin: 0 0 10px; }
.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(--signal-fill); color: #fff; padding: 15px; font-family: var(--display); font-size: 24px; font-weight: 700; }
.pop__num:hover { background: var(--brass-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; }
  .hero__trust { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .probgrid { grid-template-columns: repeat(4, 1fr); }
  .probgrid li:nth-child(2n) .probcard { border-right: 1px solid var(--rule); }
  .probgrid li:nth-child(4n) .probcard { border-right: 0; }
  .process { grid-template-columns: repeat(3, 1fr); }
  .trio { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, auto); align-items: start; }
  .trio > :first-child { grid-row: 1 / -1; align-self: stretch; }
  .workphotos { grid-template-columns: repeat(2, 1fr); }
  .worklist { 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; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
  .callrule { grid-template-columns: 1fr auto; align-items: center; }
  .callrule .btn { width: auto; min-width: 220px; }
  .urgency__inner { grid-template-columns: 1.1fr .9fr; }
  .feature { grid-template-columns: 1fr 1fr; }
  .feature__body { padding: 38px; display: flex; flex-direction: column; justify-content: center; }
  .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); }
}

/* ---------- 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__cta { display: inline-flex; }
  .header__call { display: none; }

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

  .hero__inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 44px; }
  .hero__lead { padding: 58px 0; }
  .hero__media { margin: 0 calc(var(--gut) * -1) 0 0; align-self: stretch; position: relative; }
  .hero__media img { height: 100%; aspect-ratio: auto; min-height: 420px; }
  .hero__media::after {
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,.75) 10%, rgba(255,255,255,0) 32%);
  }
  .gbadge { position: absolute; right: 24px; bottom: 24px; margin: 0; z-index: 1; }

  .probgrid { grid-template-columns: repeat(7, 1fr); }
  .probgrid li:nth-child(2n) .probcard,
  .probgrid li:nth-child(4n) .probcard { border-right: 1px solid var(--rule); }
  .probgrid li:nth-child(7n) .probcard { border-right: 0; }

  .process { grid-template-columns: repeat(3, 1fr); }
  .workphotos { grid-template-columns: repeat(3, 1fr); }
  .worklist { grid-template-columns: repeat(3, 1fr); }
  .testimony { grid-template-columns: repeat(3, 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.5fr 1.2fr 1fr 1fr; }
}
