/* ============================================================
   Revive Restoration - Demo Homepage
   Brand: navy #071E2E · cyan #14A4E0 · orange #F29E21
   Type: Lexend (headings) · Source Sans 3 (body)
   ============================================================ */

:root {
  --navy-950: #04121c;
  --navy-900: #071e2e;
  --navy-800: #0b2a3e;
  --navy-700: #103850;
  --navy-600: #16465f;
  --cyan: #14a4e0;
  --cyan-300: #4fc3f7;
  --cyan-100: #d3edfa;
  --orange: #f29e21;
  --orange-600: #db8a0e;
  --orange-100: #fdf0da;
  --surface: #f4f8fb;
  --white: #ffffff;
  --ink: #12283a;
  --ink-soft: #43596c;
  --line: #dbe6ee;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(7, 30, 46, 0.08);
  --shadow-md: 0 8px 28px rgba(7, 30, 46, 0.13);
  --shadow-lg: 0 20px 50px rgba(7, 30, 46, 0.22);
  --font-head: "Lexend", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --topbar-h: 42px;
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--orange); color: var(--navy-950);
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 0 0 10px 0; text-decoration: none;
}
.skip-link:focus { left: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

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

img, svg, video { display: block; max-width: 100%; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; text-wrap: balance; }

.container { width: min(1180px, 100% - 48px); margin-inline: auto; }
.section { padding: 96px 0; }
.section--dark { background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%); color: #dbe9f2; }

/* ---------- typographic helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-600); margin-bottom: 14px;
}
.eyebrow--cyan { color: var(--cyan-300); }
.eyebrow--orange { color: var(--orange); }

.section__title {
  font-size: clamp(30px, 4.2vw, 44px); font-weight: 700; color: var(--ink);
  text-align: center; max-width: 820px; margin: 0 auto 14px;
}
.section--dark .section__title { color: var(--white); }
.section__title--left { text-align: left; margin-left: 0; }
.section__sub { text-align: center; max-width: 640px; margin: 0 auto 56px; color: var(--ink-soft); font-size: 18px; }
.section__sub--light { color: #a9c3d4; }
.services .eyebrow, .reviews .eyebrow, .faq .eyebrow, .blog .eyebrow, .process .eyebrow, .instafeed .eyebrow { display: flex; justify-content: center; }
.text-cyan { color: var(--cyan-300); }
.text-orange { color: var(--orange); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  padding: 15px 28px; border-radius: 10px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary {
  background: linear-gradient(180deg, #f7ab39, var(--orange) 55%, var(--orange-600));
  color: var(--navy-950);
  box-shadow: 0 6px 20px rgba(242, 158, 33, 0.42);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(242, 158, 33, 0.55); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: rgba(255, 255, 255, 0.07); color: var(--white); border-color: rgba(255, 255, 255, 0.45); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
/* Ghost button on light/white backgrounds — never invisible */
.section:not(.section--dark) .btn--ghost,
.commercial-intro .btn--ghost,
.legal-content .btn--ghost { background: transparent; color: var(--navy-800); border-color: rgba(11,30,51,0.35); backdrop-filter: none; }
.section:not(.section--dark) .btn--ghost:hover,
.commercial-intro .btn--ghost:hover,
.legal-content .btn--ghost:hover { background: rgba(11,30,51,0.06); border-color: var(--navy-800); }
.btn--xl { padding: 18px 34px; font-size: 17px; border-radius: 12px; }
.btn--block { width: 100%; }
.btn:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 6px;
}

/* ---------- top bar ---------- */
.topbar { background: var(--navy-950); color: #bcd6e6; font-size: 14px; position: relative; z-index: 60; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--topbar-h); padding-block: 6px; }
.topbar__msg { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #e8f3fa; }
.topbar__right { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.topbar__hours { color: #7fa6bd; }
.topbar__phone { color: var(--orange); font-family: var(--font-head); font-weight: 700; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d399; flex: none; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  50% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); }
}

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 30, 46, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.header.is-scrolled { background: rgba(6, 24, 37, 0.97); box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.header__logo img { width: 200px; height: auto; }
.nav { display: flex; gap: 30px; }
.nav a {
  font-family: var(--font-head); font-size: 15px; font-weight: 500; color: #cfe2ee;
  text-decoration: none; padding: 8px 2px; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.22s ease;
}
.nav a:hover { color: var(--white); text-decoration: none; }
.nav a:hover::after { transform: scaleX(1); }

.btn--phone {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(180deg, #f7ab39, var(--orange) 55%, var(--orange-600));
  color: var(--navy-950); padding: 9px 20px; border-radius: 10px;
  font-family: var(--font-head); text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(242, 158, 33, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn--phone:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(242, 158, 33, 0.55); }
.btn--phone svg { width: 22px; height: 22px; }
.btn--phone__label { display: flex; flex-direction: column; line-height: 1.15; font-weight: 700; font-size: 16px; }
.btn--phone__label small { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--white); margin: 5.5px 0; border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 24px; background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-nav a { color: #dbe9f2; font-family: var(--font-head); font-weight: 500; padding: 13px 4px; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.mobile-nav .btn { margin-top: 14px; border: 0; }
.mobile-nav.is-open { display: flex; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(92vh, 880px); display: flex; align-items: center; overflow: hidden; background: var(--navy-900); }
.hero__media { position: absolute; inset: 0; }
.hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 28, 0.92) 0%, rgba(4, 18, 28, 0.72) 40%, rgba(4, 18, 28, 0.3) 75%, rgba(4, 18, 28, 0.45) 100%),
    linear-gradient(0deg, rgba(4, 18, 28, 0.65) 0%, transparent 35%);
}
.hero__content { position: relative; z-index: 2; padding: 120px 0 150px; max-width: 780px; }
.hero__kicker {
  border-left: 3px solid var(--orange);
  padding: 3px 0 3px 16px;
  font-size: 17.5px; color: #c1d7e5;
  max-width: 520px; margin-bottom: 24px;
}
.hero__kicker strong { color: var(--white); font-weight: 600; }
.hero__title { font-size: clamp(36px, 5.6vw, 62px); font-weight: 800; color: var(--white); margin-bottom: 22px; letter-spacing: -0.01em; }
.hero__sub { font-size: clamp(17px, 2vw, 20px); color: #c8dce9; max-width: 600px; margin-bottom: 36px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; }
.hero__trust li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: 14px; font-weight: 500; color: #d9eaf4;
}
.hero__trust svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; pointer-events: none; }
.hero__wave svg { width: 100%; height: clamp(40px, 8vw, 110px); }

/* ---------- stats ---------- */
.stats { background: var(--surface); padding: 10px 0 26px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 34px 28px; margin-top: -10px; position: relative; z-index: 4;
}
.stat { text-align: center; }
.stat__num {
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
  font-family: var(--font-head); font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; color: var(--navy-800);
}
.stat__num .star { width: 26px; height: 26px; color: var(--orange); align-self: center; }
.stat__label { display: block; margin-top: 4px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }

/* ---------- emergency strip ---------- */
.emergency { background: var(--surface); padding: 44px 0 10px; }
.emergency__card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg); padding: 46px 50px; color: #dbe9f2;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.emergency__card::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(20, 164, 224, 0.25), transparent 70%); pointer-events: none;
}
.emergency__left h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.emergency__steps { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.emergency__steps li { display: flex; gap: 16px; align-items: flex-start; }
.emergency__steps li span {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: var(--navy-950);
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
}
.emergency__steps a { color: var(--orange); font-weight: 700; }

/* ---------- services ---------- */
.services { background: var(--surface); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; gap: 14px;
  position: relative; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(20, 164, 224, 0.45); }
.service h3 { font-size: 21px; font-weight: 700; color: var(--navy-800); }
.service p { color: var(--ink-soft); font-size: 16px; }
.service__icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(20, 164, 224, 0.14), rgba(20, 164, 224, 0.05));
  color: var(--cyan); border: 1px solid rgba(20, 164, 224, 0.25);
}
.service__icon svg { width: 30px; height: 30px; }
.service__icon--flame { background: linear-gradient(140deg, rgba(242, 158, 33, 0.16), rgba(242, 158, 33, 0.05)); color: var(--orange-600); border-color: rgba(242, 158, 33, 0.3); }
.service__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy-800);
}
.service__link svg { width: 17px; height: 17px; transition: transform 0.2s ease; color: var(--orange-600); }
.service__link:hover { color: var(--orange-600); text-decoration: none; }
.service__link:hover svg { transform: translateX(4px); }

.service__photo {
  width: calc(100% + 60px); max-width: none;
  height: 190px; object-fit: cover;
  margin: -34px -30px 6px;
  border-radius: 21px 21px 0 0;
}
.service--featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: minmax(320px, 0.85fr) 1.3fr;
  padding: 0; overflow: hidden; gap: 0;
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border: 1px solid var(--navy-600);
  color: #d9eaf4;
}
.service--featured .service__media { position: relative; min-height: 100%; }
.service--featured .service__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: bottom; }
.service--featured .service__body { padding: 38px 42px; display: flex; flex-direction: column; gap: 14px; }
.service--featured h3 { color: var(--white); font-size: 26px; }
.service--featured p { color: #b7cedd; }
.service--featured .service__icon { background: rgba(20, 164, 224, 0.16); border-color: rgba(20, 164, 224, 0.4); color: var(--cyan-300); width: 68px; height: 68px; }
.service--featured .service__link { color: var(--orange); }
.service--featured:hover { border-color: var(--cyan); }
.service__badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-head); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  background: var(--orange); color: var(--navy-950);
  padding: 6px 12px; border-radius: 100px;
}
.service__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 6px 0 10px; }
.service__list li { position: relative; padding-left: 26px; font-size: 15.5px; color: #cfe2ee; }
.service__list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px; border-radius: 4px;
  background: var(--cyan); opacity: 0.9;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.services__more { margin-top: 42px; text-align: center; color: var(--ink-soft); font-size: 15.5px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; }
.services__more span {
  display: inline-block; background: var(--white); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 100px; font-family: var(--font-head);
  font-size: 13.5px; font-weight: 500; color: var(--navy-700);
}

/* ---------- process ---------- */
.process { position: relative; overflow: hidden; }
.process::before {
  content: ""; position: absolute; left: -140px; bottom: -180px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(20, 164, 224, 0.14), transparent 70%);
}
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.process__step {
  background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg); padding: 32px 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.process__step:hover { transform: translateY(-5px); border-color: rgba(20, 164, 224, 0.5); background: rgba(20, 164, 224, 0.07); }
.process__num {
  font-family: var(--font-head); font-size: 42px; font-weight: 800;
  background: linear-gradient(180deg, var(--cyan-300), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.process__step h3 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.process__step p { font-size: 15.5px; color: #a9c3d4; }
.process__step a { color: var(--orange); font-weight: 700; }

/* ---------- why us ---------- */
.why { background: var(--white); }
.why__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.why__media { position: relative; }
.why__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 620px; object-fit: cover; }
.why__media-card {
  position: absolute; left: -20px; bottom: 30px;
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 16px 22px;
  border: 1px solid var(--line);
}
.why__media-card svg { width: 34px; height: 34px; color: var(--cyan); flex: none; }
.why__media-card strong { display: block; font-family: var(--font-head); font-size: 15.5px; color: var(--navy-800); }
.why__media-card span { font-size: 13.5px; color: var(--ink-soft); }
.why__content > p { color: var(--ink-soft); font-size: 17.5px; margin-bottom: 26px; }
.why__checks { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 34px; }
.why__checks li { display: flex; gap: 14px; align-items: flex-start; }
.why__checks svg {
  flex: none; width: 26px; height: 26px; padding: 4px;
  background: var(--orange-100); color: var(--orange-600); border-radius: 8px; margin-top: 2px;
}
.why__checks div { color: var(--ink-soft); font-size: 16.5px; }
.why__checks strong { color: var(--ink); }
.why__partners { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-size: 15px; color: var(--ink-soft); }
.why__partner-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.partner-logo {
  height: 56px; width: auto; background: var(--white);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 8px 14px; object-fit: contain;
}
.partner-badge {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--navy-700); background: var(--surface);
  border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px;
}

/* ---------- service area ---------- */
.area__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 60px; align-items: start; }
.area__content > p { color: #a9c3d4; font-size: 17.5px; margin-bottom: 34px; max-width: 640px; }
.area__content em { color: var(--cyan-300); font-style: italic; }
.area__counties { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.area__county {
  background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg); padding: 28px;
}
.area__county h3 {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 19px; margin-bottom: 18px;
}
.area__county h3 svg { width: 20px; height: 20px; color: var(--orange); }
.area__county ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 14px; }
.area__county li { font-size: 15px; color: #bcd6e6; position: relative; padding-left: 14px; }
.area__county li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }
.area__note { margin-top: 30px; color: #a9c3d4; font-size: 16px; }
.area__note a { color: var(--orange); font-weight: 700; }
.area__map { position: sticky; top: calc(var(--header-h) + 24px); }
.area__map-card {
  background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow-lg);
}
#areaMap {
  width: 100%; height: 460px; border-radius: 12px;
  background: var(--navy-800); z-index: 1;
}
.area__map-legend {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  padding: 14px 8px 4px; font-size: 13.5px; color: #bcd6e6;
  font-family: var(--font-head); font-weight: 500;
}
.legend-dot { display: inline-block; width: 11px; height: 11px; border-radius: 3px; margin-right: 7px; vertical-align: -1px; }
.legend-dot--cyan { background: var(--cyan); }
.legend-dot--orange { background: var(--orange); }
.area__map-note { margin-left: auto; color: #7fa6bd; font-weight: 400; font-family: var(--font-body); }
.map-hq-pin { filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)); }
.leaflet-container { font-family: var(--font-body); }
.leaflet-popup-content-wrapper { background: var(--navy-900); color: #e8f3fa; border-radius: 10px; font-family: var(--font-head); }
.leaflet-popup-tip { background: var(--navy-900); }

/* ---------- reviews ---------- */
.reviews { background: var(--surface); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 30px; display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review__stars { color: var(--orange); font-size: 19px; letter-spacing: 3px; }
.review blockquote { color: var(--ink-soft); font-size: 16px; flex: 1; }
.review figcaption strong { display: block; font-family: var(--font-head); font-size: 15.5px; color: var(--navy-800); }
.review figcaption span { font-size: 13.5px; color: var(--ink-soft); }
.reviews__social {
  margin-top: 44px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px;
  color: var(--ink-soft); font-size: 15.5px;
}
.reviews__social a {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy-800);
  background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 10px 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.reviews__social a:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--cyan); text-decoration: none; }
.reviews__social svg { width: 18px; height: 18px; color: var(--cyan); }

.reviews__widget {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 18px; min-height: 320px;
}
.reviews__widget iframe { border-radius: 12px; min-height: 420px; }

/* ---------- blog ---------- */
.blog { background: var(--white); border-top: 1px solid var(--line); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog__card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; color: inherit; text-decoration: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.blog__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(20, 164, 224, 0.45); }
.blog__tag {
  align-self: flex-start;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); background: rgba(20, 164, 224, 0.1);
  border: 1px solid rgba(20, 164, 224, 0.3);
  padding: 5px 12px; border-radius: 100px;
}
.blog__card h3 { font-size: 18.5px; font-weight: 700; color: var(--navy-800); line-height: 1.35; }
.blog__card p { color: var(--ink-soft); font-size: 15.5px; flex: 1; }
.blog__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--orange-600);
}
.blog__more svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.blog__card:hover .blog__more svg { transform: translateX(4px); }
.blog__cta { text-align: center; margin-top: 40px; }
.btn--outline {
  background: transparent; color: var(--navy-800);
  border: 2px solid var(--navy-800);
}
.btn--outline:hover { background: var(--navy-800); color: var(--white); transform: translateY(-2px); }
.btn--outline svg { width: 18px; height: 18px; }

/* ---------- insurance band ---------- */
.insurance {
  background:
    linear-gradient(100deg, rgba(4, 18, 28, 0.92) 15%, rgba(7, 30, 46, 0.72) 55%, rgba(7, 30, 46, 0.45)),
    url("/assets/flood.jpg") center 40% / cover no-repeat;
  padding: 84px 0;
}
.insurance__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; }
.insurance__icon {
  width: 88px; height: 88px; border-radius: 24px; flex: none;
  background: rgba(20, 164, 224, 0.14); border: 1px solid rgba(20, 164, 224, 0.4);
  display: grid; place-items: center; color: var(--cyan-300);
}
.insurance__icon svg { width: 46px; height: 46px; }
.insurance h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); margin-bottom: 10px; max-width: 620px; }
.insurance p { color: #b7cedd; max-width: 640px; }
.insurance .btn { white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq__container { max-width: 860px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; margin-top: 48px; }
.faq__item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq__item[open] { border-color: rgba(20, 164, 224, 0.5); box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 26px; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--navy-800);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chevron { flex: none; width: 12px; height: 12px; border-right: 2.5px solid var(--orange-600); border-bottom: 2.5px solid var(--orange-600); transform: rotate(45deg); transition: transform 0.25s ease; margin-top: -4px; }
.faq__item[open] .faq__chevron { transform: rotate(225deg); margin-top: 4px; }
.faq__item p { padding: 0 26px 22px; color: var(--ink-soft); }

/* ---------- contact ---------- */
.contact { position: relative; overflow: hidden; }
.contact::after {
  content: ""; position: absolute; right: -160px; top: -120px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(242, 158, 33, 0.12), transparent 70%); pointer-events: none;
}
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; position: relative; z-index: 1; }
.contact__info > p { color: #a9c3d4; font-size: 17.5px; margin-bottom: 34px; max-width: 480px; }
.contact__methods { display: flex; flex-direction: column; gap: 16px; }
.contact__method {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 18px 22px; color: inherit; text-decoration: none !important;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
a.contact__method:hover { border-color: rgba(20, 164, 224, 0.55); background: rgba(20, 164, 224, 0.08); transform: translateX(4px); }
.contact__method svg { width: 30px; height: 30px; color: var(--orange); flex: none; }
.contact__method small { display: block; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #7fa6bd; font-weight: 600; }
.contact__method strong { font-family: var(--font-head); font-size: 17px; color: var(--white); font-weight: 600; }

.contact__form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 42px 40px; box-shadow: var(--shadow-lg); position: relative;
}
.contact__form h3 { font-size: 24px; color: var(--navy-800); margin-bottom: 6px; }
.contact__form-sub { color: var(--ink-soft); margin-bottom: 26px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.form__field label { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--ink); }
.form__field label span { color: #d9534f; }
.form__field input, .form__field select, .form__field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--surface); width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--cyan); background: var(--white);
  box-shadow: 0 0 0 4px rgba(20, 164, 224, 0.15);
}
.form__field input.is-invalid, .form__field select.is-invalid { border-color: #d9534f; }
.form__field textarea { resize: vertical; min-height: 88px; }
.form__note { margin-top: 16px; text-align: center; font-size: 14.5px; color: var(--ink-soft); }
.form__note a { color: var(--orange-600); font-weight: 700; }
.form__success[hidden] { display: none; }
.form__success {
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: var(--white); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 10px; padding: 40px;
}
.form__success svg { width: 62px; height: 62px; color: #2fa36b; }
.form__success strong { font-family: var(--font-head); font-size: 22px; color: var(--navy-800); }
.form__success span { color: var(--ink-soft); max-width: 340px; }
.form__success a { color: var(--orange-600); font-weight: 700; }

/* ---------- seo copy ---------- */
.seo-copy { background: var(--surface); padding: 56px 0; border-top: 1px solid var(--line); }
.seo-copy h2 { font-size: 20px; color: var(--navy-800); margin-bottom: 12px; }
.seo-copy p { font-size: 15px; color: var(--ink-soft); max-width: 980px; }

/* ---------- footer ---------- */
.footer { background: var(--navy-950); color: #9db8c9; padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1.15fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer__brand img { width: 220px; height: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 15px; max-width: 320px; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; margin-bottom: 26px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center; color: #cfe2ee;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer__social a:hover { background: var(--orange); color: var(--navy-950); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__col h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer__col a { display: block; color: #9db8c9; font-size: 15px; padding: 5.5px 0; text-decoration: none; transition: color 0.18s ease; }
/* 2-column city list in service areas footer */
.footer__col-counties { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 8px; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__col-counties a { font-size: 15px; font-weight: 600; color: #cfe2ee !important; padding: 4px 0; }
.footer__col--2col .footer__col-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.footer__col--2col .footer__col-links a { font-size: 15px; padding: 4.5px 0; }
.footer__col a:hover { color: var(--cyan-300); }
.footer__brand-name { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 15.5px; margin-bottom: 4px; }
.footer__phone { display: block; font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--orange); margin-top: 10px; text-decoration: none; }
.footer__email { display: block; color: #9db8c9; font-size: 15px; margin-top: 4px; text-decoration: none; }
.footer__email:hover { color: var(--cyan-300); }
.footer__col address, .footer__brand address { font-style: normal; font-size: 15px; margin-top: 10px; line-height: 1.6; }
.footer__hours { font-size: 14.5px; margin-top: 12px; }
.footer__cta-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 9px; padding: 10px 20px; text-decoration: none !important;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.footer__cta-btn:hover { border-color: var(--cyan); background: rgba(20, 164, 224, 0.1); transform: translateY(-2px); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 22px 0; font-size: 13.5px; color: #6d8ba0;
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between;
}
.footer__crumbs { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; order: -1; }
.footer__crumbs a { color: #8fa8ba; font-size: 13.5px; text-decoration: none; }
.footer__crumbs a:hover { color: var(--cyan-300); text-decoration: underline; }
.footer__crumbs span { color: #4a6376; font-size: 12px; }
.footer__copyright { color: #6d8ba0; }

/* ---------- legal pages (privacy / terms) ---------- */
.legal-hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 64px 0 48px; color: #dbe9f2;
  text-align: center;
}
.legal-hero .breadcrumbs { justify-content: center; }
.legal-hero h1 { margin-inline: auto; }
.legal-hero .container > p { max-width: 760px; margin-inline: auto; }
.legal-hero .eyebrow { color: var(--cyan-300); }
.legal-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 10px; }
.legal-hero p { color: #a9c3d4; font-size: 16px; }
.legal-content { padding: 64px 0 96px; }
.legal-prose { max-width: 760px; margin: 0 auto; }
.legal-prose h2 {
  font-size: 22px; color: var(--navy-800); margin: 44px 0 14px;
  padding-top: 6px; border-top: 1px solid var(--line);
}
.legal-prose h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-prose h3 { font-size: 17px; color: var(--navy-700); margin: 24px 0 8px; }
.legal-prose p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.legal-prose ul { margin: 0 0 14px 22px; color: var(--ink-soft); font-size: 15.5px; }
.legal-prose li { margin-bottom: 6px; }
.legal-prose a { color: var(--cyan); font-weight: 600; }
.legal-prose strong { color: var(--ink); }
.legal-notice {
  background: var(--orange-100); border: 1px solid rgba(242, 158, 33, 0.35);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 28px;
  font-size: 15px; color: var(--navy-800);
}
.legal-back {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  color: var(--cyan-300); margin-bottom: 28px; text-decoration: none !important;
}
.legal-back:hover { color: var(--white); }
.legal-back svg { width: 16px; height: 16px; }

.about-hero {
  padding: 96px 0 76px;
  background:
    linear-gradient(100deg, rgba(4, 18, 28, 0.93) 25%, rgba(7, 30, 46, 0.8) 60%, rgba(7, 30, 46, 0.55)),
    url("/assets/flood.jpg") center 30% / cover no-repeat;
}

/* ---------- migrated content pages ---------- */
.page-hero { padding: 72px 0 56px; }
.page-hero h1 { max-width: 920px; }
.page-hero--center { text-align: center; }
.page-hero--center h1 { margin-inline: auto; }
.page-hero--center .breadcrumbs { justify-content: center; }
.page-hero--center p:last-child { max-width: 680px; margin-inline: auto; }
.breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 13px; font-weight: 500;
  color: #7fa6bd; margin-bottom: 26px;
}
.breadcrumbs a { color: #9fc9e0; text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); text-decoration: underline; }
.breadcrumbs span[aria-current] { color: var(--white); }
.breadcrumbs__sep { color: #4a6376; }
.post-meta { color: #a9c3d4; font-size: 15px; }

.prose { max-width: 860px; margin: 0 auto; }
.prose h2 {
  font-family: var(--font-head); font-size: clamp(22px, 3vw, 28px); font-weight: 700;
  color: var(--navy-800); margin: 46px 0 16px; line-height: 1.25;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--navy-700); margin: 30px 0 10px; }
.prose h4, .prose h5, .prose h6 { font-family: var(--font-head); font-size: 17px; color: var(--navy-700); margin: 24px 0 8px; }
.prose p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 24px; color: var(--ink-soft); font-size: 16.5px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--cyan); font-weight: 600; }
.prose strong { color: var(--ink); }
.prose img {
  width: 100%; height: auto; max-height: 540px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin: 30px 0;
}

/* service-area hub: county cards with full city link lists */
.county-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 44px 0 8px; align-items: start; }
.county-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.county-card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(20, 164, 224, 0.14), rgba(20, 164, 224, 0.05));
  color: var(--cyan); border: 1px solid rgba(20, 164, 224, 0.25); margin-bottom: 16px;
}
.county-card__icon svg { width: 26px; height: 26px; }
.county-card h3 { font-size: 21px; margin: 0 0 8px; }
.county-card h3 a { color: var(--navy-800); text-decoration: none; }
.county-card h3 a:hover { color: var(--cyan); }
.county-card > p { color: var(--ink-soft); font-size: 15px; margin-bottom: 12px; }
.county-card__view {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--orange-600); margin-bottom: 18px; text-decoration: none;
}
.county-card__view svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.county-card__view:hover svg { transform: translateX(4px); }
.city-links { list-style: none; margin: 0; padding: 14px 0 0; border-top: 1px solid var(--line); }
.city-links li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 7.5px 0; border-bottom: 1px dashed var(--line); font-size: 15px;
}
.city-links li:last-child { border-bottom: none; }
.city-links .city { color: var(--navy-700); font-weight: 600; text-decoration: none; font-family: var(--font-head); font-size: 14.5px; }
.city-links .city:hover { color: var(--cyan); }
.city-links .wd { font-size: 12.5px; color: var(--cyan); white-space: nowrap; text-decoration: none; font-weight: 600; }
.city-links .wd:hover { text-decoration: underline; }
@media (max-width: 1080px) { .county-grid { grid-template-columns: 1fr; } }

/* blog index cards with thumbnails */
.blog__thumb {
  width: calc(100% + 56px); max-width: none; height: 200px; object-fit: cover;
  margin: -30px -28px 14px; border-radius: 21px 21px 0 0;
}
.blog-index__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 1080px) { .blog-index__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 820px) { .blog-index__grid { grid-template-columns: 1fr; } }

/* ---------- team / leadership ---------- */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.team-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 76px; height: 76px; border-radius: 50%; flex: none;
  display: grid; place-items: center; margin-bottom: 14px;
  background: linear-gradient(150deg, var(--cyan), var(--navy-700));
  color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 24px;
}
.team-card h3 { font-size: 20px; color: var(--navy-800); }
.team-card .team-title {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange-600); margin-bottom: 10px;
}
.team-card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- about CTA band ---------- */
.about-cta { text-align: center; padding: 72px 0; }
.about-cta h2 { font-size: clamp(24px, 3vw, 32px); color: var(--white); margin-bottom: 14px; }
.about-cta p { color: #b7cedd; max-width: 600px; margin: 0 auto 28px; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; grid-template-columns: 1.3fr 1fr; gap: 1px;
  background: var(--navy-950);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(110%); transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px;
  padding: 16px 10px; text-decoration: none !important;
}
.sticky-cta svg { width: 19px; height: 19px; }
.sticky-cta__call { background: linear-gradient(180deg, #f7ab39, var(--orange) 60%, var(--orange-600)); color: var(--navy-950); }
.sticky-cta__form { background: var(--navy-800); color: var(--white); }

/* ---------- reveal animations (progressive enhancement - content is
   fully visible without JS so crawlers/prerender always see everything) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
html.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse-dot, .map-pin circle animate { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .service--featured { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .service--featured .service__media { min-height: 260px; }
  .blog__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .area__grid { grid-template-columns: 1fr; }
  .area__map { position: static; max-width: 460px; }
  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .why__media img { height: 440px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .insurance__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .topbar__msg { display: none; }
  .topbar__inner { justify-content: center; }
  .header__cta { display: none; }
  .header__logo img { width: 165px; }
  .hero { min-height: 0; }
  .hero__content { padding: 90px 0 130px; }
  .hero__ctas .btn { width: 100%; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 26px 12px; padding: 26px 18px; }
  .emergency__card { grid-template-columns: 1fr; padding: 34px 26px; gap: 26px; }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  #areaMap { height: 340px; }
  .area__counties { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__form { padding: 30px 22px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .sticky-cta { display: grid; }
  body { padding-bottom: 62px; }
  .why__media-card { left: 10px; bottom: 14px; padding: 12px 16px; }
  .why__media img { height: 340px; }
  .container { width: min(1180px, 100% - 40px); }
}

/* Instagram feed section */
.instafeed__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 40px; }
.instafeed__card { position: relative; display: block; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 24px rgba(11, 30, 51, 0.12); aspect-ratio: 1 / 1; }
.instafeed__card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.instafeed__card:hover img { transform: scale(1.04); }
.instafeed__overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 10px; background: rgba(11, 30, 51, 0.55); color: #fff; font-weight: 700; opacity: 0; transition: opacity 0.25s ease; }
.instafeed__overlay svg { width: 26px; height: 26px; }
.instafeed__card:hover .instafeed__overlay, .instafeed__card:focus-visible .instafeed__overlay { opacity: 1; }
.instafeed__cta { text-align: center; margin-top: 32px; }
.instafeed__cta .btn { background: rgba(11, 30, 51, 0.06); color: var(--navy-900, #0b1e33); border: 2px solid currentColor; }
.instafeed__cta .btn:hover { transform: translateY(-2px); }
@media (max-width: 960px) { .instafeed__grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; } }

/* Commercial page layout */
.commercial-intro__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center; }
.commercial-intro__media img { width: 100%; height: 100%; max-height: 440px; object-fit: cover; border-radius: 16px; box-shadow: 0 12px 32px rgba(11, 30, 51, 0.18); display: block; }
/* service page intro text — no max-width/auto-margin so it fills the grid column */
.commercial-intro__text { }
.commercial-intro__text .eyebrow { display: block; margin-bottom: 10px; }
.commercial-intro__text p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 16px; line-height: 1.7; }
.commercial-intro__text strong { color: var(--ink); }
.commercial-intro__text a:not(.btn) { color: var(--cyan); font-weight: 600; }
.service__title-sm { font-size: 21px; font-weight: 700; color: var(--navy-800); font-family: var(--font-head); margin: 0; }
.services__grid--compact .service { gap: 12px; }
@media (max-width: 1080px) { .commercial-intro__grid { grid-template-columns: 1fr; } .services__grid--compact { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .services__grid--compact { grid-template-columns: 1fr; } }

/* Services nav dropdown */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item__top { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret { width: 14px; height: 14px; transition: transform 0.2s ease; }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 280px; padding: 10px; z-index: 60;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 44px rgba(11, 30, 51, 0.22);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-dropdown a {
  color: var(--navy-800); font-family: var(--font-head); font-weight: 500; font-size: 14.5px;
  padding: 9px 14px; border-radius: 9px; text-decoration: none; white-space: nowrap;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: rgba(20, 164, 224, 0.09); color: var(--cyan); }
.nav-dropdown__all {
  margin-top: 6px; border-top: 1px solid var(--line);
  color: var(--orange-600) !important; font-weight: 700 !important;
}
.nav-dropdown__all:hover { background: rgba(242, 158, 33, 0.09) !important; color: var(--orange-600) !important; }

/* Mobile nav services group */
.mobile-nav__group { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.mobile-nav__group summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  color: #dbe9f2; font-family: var(--font-head); font-weight: 500; padding: 13px 4px;
}
.mobile-nav__group summary::-webkit-details-marker { display: none; }
.mobile-nav__group summary .nav-caret { width: 16px; height: 16px; transition: transform 0.2s ease; }
.mobile-nav__group[open] summary .nav-caret { transform: rotate(180deg); }
.mobile-nav__sub { display: flex; flex-direction: column; padding: 0 0 10px 14px; }
.mobile-nav__sub a { font-size: 14.5px; padding: 10px 4px; border-bottom: 1px dashed rgba(255, 255, 255, 0.06); }
.mobile-nav__sub a:last-child { border-bottom: none; }
/* E-E-A-T author byline */
.eeat-byline { display: flex; align-items: center; gap: 14px; background: #f0f6fb; border: 1px solid #d1e6f3; border-radius: 12px; padding: 14px 18px; margin-bottom: 28px; }
.eeat-byline__logo { width: 80px; height: auto; flex-shrink: 0; }
.eeat-byline__name { font-size: 14px; font-weight: 700; color: var(--navy-800); margin: 0 0 2px; }
.eeat-byline__creds { font-size: 13px; color: var(--ink-soft); margin: 0; }
.eeat-byline__creds a { color: var(--cyan); }
@media (max-width: 540px) { .eeat-byline { flex-direction: column; align-items: flex-start; } .eeat-byline__logo { width: 60px; } }
.eeat-byline--sm { background: none; border: none; border-top: 1px solid var(--line); border-radius: 0; padding: 14px 0 0; margin-top: 28px; }
.eeat-byline--sm .eeat-byline__logo { width: 44px; opacity: .7; }
.eeat-byline--sm .eeat-byline__name { font-size: 12.5px; }
.eeat-byline--sm .eeat-byline__creds { font-size: 11.5px; }

/* ── Service page redesign: stats bar ── */
.svc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0 0; }
.svc-stat { background: var(--navy-900); border-radius: 10px; padding: 14px 12px; text-align: center; }
.svc-stat__val { display: block; font-size: 19px; font-weight: 800; color: var(--cyan-300); line-height: 1.1; }
.svc-stat__lbl { display: block; font-size: 11.5px; color: #8eb5cc; margin-top: 3px; text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 860px) { .svc-stats { grid-template-columns: repeat(2, 1fr); } }

/* ── Service page redesign: process steps ── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.process-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 24px 22px; }
.process-card__num { font-size: 32px; font-weight: 900; color: var(--orange); opacity: .9; line-height: 1; margin-bottom: 10px; }
.process-card__title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.process-card p { font-size: 14px; color: #9db8c9; line-height: 1.6; margin: 0; }
@media (max-width: 1080px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .process-grid { grid-template-columns: 1fr; } }
