/* ────────────────────────────────────────────────────────
   PATCHES IN A DAY — Design System
   Navy + clean white, subtle blue accent, editorial type
   ──────────────────────────────────────────────────────── */

:root {
  --navy: #0f1e3d;
  --navy-2: #1a2d57;
  --slate: #2a3956;
  --ink: #10182a;
  --mute: #5a6781;
  --line: #e5e8ef;
  --paper: #ffffff;
  --off: #f6f8fc;
  --cream: #faf9f6;
  --accent: #1d4ed8;
  --accent-2: #2563eb;
  --gold: #b4894a;
  --cta: #f59e0b;      /* complement of the brand blue — header/action amber */
  --cta-2: #d97706;
  /* Smoked-glass surface system — one place to tune every panel on the site.
     Kept light so text contrast never drops below AA. */
  --glass: rgba(236, 239, 244, 0.72);
  --glass-solid: rgba(234, 237, 242, 0.97);
  --glass-edge: rgba(255, 255, 255, 0.7);
  --glass-line: rgba(15, 30, 61, 0.1);
  --success: #0f766e;
  --shadow-sm: 0 1px 2px rgba(15, 30, 61, 0.06), 0 1px 3px rgba(15, 30, 61, 0.05);
  --shadow-md: 0 4px 8px rgba(15, 30, 61, 0.06), 0 10px 24px rgba(15, 30, 61, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 30, 61, 0.1), 0 6px 12px rgba(15, 30, 61, 0.05);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --max: 1200px;
  --ff-serif: "Fraunces", "Playfair Display", Georgia, serif;
  --ff-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1em; color: var(--slate); }
.lede { font-size: 1.15rem; color: var(--mute); max-width: 60ch; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.eyebrow.on-dark { color: #9fc0ff; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
section.tight { padding: 56px 0; }

/* ────────────────────────────────────────────────────────
   HEADER — sticky, two-level
   ──────────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: #cfd9ee;
  font-size: 0.88rem;
}
.top-bar .wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
}
.top-bar a { color: #e5ecfb; }
.top-bar .phones { display: flex; gap: 18px; flex-wrap: wrap; }
.top-bar .phones a { display: inline-flex; gap: 6px; align-items: center; font-weight: 500; }
.top-bar .spacer { flex: 1; }
.top-bar .since { color: var(--gold); font-weight: 500; letter-spacing: 0.1em; font-size: 0.75rem; text-transform: uppercase; }

/* Smoked-glass panel: light grey tint over a blur, a bright top hairline for the
   "pane edge", and a soft drop shadow so the bar reads as a sheet floating above
   the page rather than a painted stripe. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--glass-solid);
  border-top: 1px solid var(--glass-edge);
  border-bottom: 1px solid var(--glass-line);
  box-shadow: 0 1px 3px rgba(15, 30, 61, 0.05), 0 8px 24px rgba(15, 30, 61, 0.05);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: var(--glass);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
  }
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-mark em {
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
}
.brand-sub {
  display: block;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
}
nav.primary { margin-left: auto; }
nav.primary > ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav.primary > ul > li { position: relative; }

/* Top-level links — pill hover + amber underline that wipes in from the left.
   Only opacity/transform animate, so nothing triggers layout or paint jank. */
nav.primary li:not(.nav-cta) > a {
  position: relative;
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 9px 13px;
  border-radius: 9px;
  border-bottom: none;
  transition: color 0.16s ease, background-color 0.16s ease;
}
nav.primary > ul > li:not(.nav-cta) > a::before {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--cta);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}
/* White pill, not --off: the header is now grey smoke, so the hover state has to
   lift toward white to stay visible. */
nav.primary li:not(.nav-cta) > a:hover { color: var(--accent); background: rgba(255, 255, 255, 0.85); }
nav.primary > ul > li:not(.nav-cta):hover > a::before,
nav.primary > ul > li:not(.nav-cta) > a:focus-visible::before { transform: scaleX(1); }

/* Current page — persistent amber underline so visitors always know where they are. */
nav.primary a[aria-current="page"] { color: var(--navy); font-weight: 600; }
nav.primary > ul > li > a[aria-current="page"]::before { transform: scaleX(1); }

/* Caret flips open on hover */
nav.primary .has-menu > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.8px solid var(--mute);
  border-bottom: 1.8px solid var(--mute);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
nav.primary .has-menu:hover > a::after {
  transform: translateY(1px) rotate(225deg);
  border-color: var(--accent);
}

/* ── Dropdown panels ── */
nav.primary .submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: -10px;
  list-style: none;
  background: var(--glass-solid);
  border: 1px solid var(--glass-line);
  border-top-color: var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
/* Invisible bridge so the pointer can travel from link to panel without it closing */
nav.primary .submenu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
nav.primary .has-menu:hover > .submenu,
nav.primary .has-menu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
nav.primary .submenu li { padding: 0; }
nav.primary .submenu ul { list-style: none; margin: 0; padding: 0; }
nav.primary .submenu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  border-bottom: none;
  font-size: 0.93rem;
  color: var(--ink);
  transition: background-color 0.14s ease, color 0.14s ease;
}
nav.primary .submenu a:hover { background: rgba(255, 255, 255, 0.9); color: var(--accent); }
nav.primary .submenu strong {
  display: block;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.3;
  color: inherit;
}
nav.primary .submenu em {
  display: block;
  font-style: normal;
  font-size: 0.79rem;
  line-height: 1.4;
  color: var(--mute);
  margin-top: 2px;
}

/* Services mega panel — split by audience: homeowners on the left, trade on the right */
nav.primary .submenu.mega {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 26px;
  min-width: 648px;
  left: -24px;
}
.mega-col { display: flex; flex-direction: column; }
.mega-head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* Brand gold is 3.17:1 on white and ~2.9:1 on the glass panel — both fail AA at
     11px. This is the darkest-usable gold that clears 4.5:1 on the panel tint. */
  color: #86612a;
  padding: 2px 12px 8px;
}
.mega-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 13px 12px 2px;
  border-top: 1px solid var(--line);
}
.mega-foot .note { font-size: 0.85rem; color: var(--mute); }
.mega-foot .note b { color: var(--navy); font-weight: 600; }
.mega-foot .acts { display: flex; align-items: center; gap: 8px; }
nav.primary .mega-foot a.mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
nav.primary .mega-foot a.mini.solid { background: var(--cta); color: var(--navy); }
nav.primary .mega-foot a.mini.solid:hover { background: var(--cta-2); color: var(--navy); }
nav.primary .mega-foot a.mini.line { border: 1px solid var(--glass-line); background: rgba(255,255,255,0.7); color: var(--navy); }
nav.primary .mega-foot a.mini.line:hover { border-color: var(--navy); background: rgba(255,255,255,0.9); color: var(--navy); }

/* Who We Serve panel — icon + descriptor rows */
nav.primary .submenu.audience { min-width: 348px; }
nav.primary .submenu.audience a { display: flex; gap: 13px; align-items: center; padding: 10px 12px; }
/* Icon sits in a tinted tile — the standard mega-menu treatment; keeps a stroke
   icon from floating unanchored next to two lines of text. */
nav.primary .submenu.audience .ico {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(29, 78, 216, 0.09);
  color: var(--accent);
  transition: background-color 0.16s ease, color 0.16s ease;
}
nav.primary .submenu.audience .ico svg { width: 20px; height: 20px; display: block; }
nav.primary .submenu.audience a:hover .ico { background: var(--accent); color: #fff; }

@media (max-width: 1180px) {
  nav.primary > ul { gap: 1px; }
  nav.primary li:not(.nav-cta) > a { font-size: 0.89rem; padding: 9px 9px; }
  nav.primary > ul > li:not(.nav-cta) > a::before { left: 9px; right: 9px; }
  nav.primary .submenu.mega { min-width: 540px; }
}

/* ── Header CTA — amber, the complement of the brand blue, so it reads as the
   one action on a page of navy and blue links. ── */
.nav-cta { margin-left: 10px; }
.nav-cta > a.btn {
  background: var(--cta);
  color: var(--navy);
  white-space: nowrap;
  border: none;
  border-bottom: none;
  padding: 11px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(180, 112, 8, 0.28);
}
.nav-cta > a.btn:hover {
  background: var(--cta-2);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(180, 112, 8, 0.34);
}
.nav-cta > a.btn .arw {
  display: inline-block;
  margin-left: 2px;
  transition: transform 0.18s ease;
}
.nav-cta > a.btn:hover .arw { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  nav.primary *, .nav-cta > a.btn, .nav-cta > a.btn .arw { transition: none !important; }
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  margin-left: auto;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (max-width: 960px) {
  nav.primary { display: none; }
  nav.primary.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-solid);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--glass-line);
    padding: 12px 24px 22px;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }
  nav.primary.open > ul { flex-direction: column; align-items: stretch; gap: 0; }
  nav.primary.open li:not(.nav-cta) > a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    width: 100%;
    font-size: 1rem;
  }
  nav.primary.open li:not(.nav-cta) > a:hover { background: transparent; }
  nav.primary.open > ul > li:not(.nav-cta) > a::before { left: 2px; right: auto; width: 26px; bottom: 0; }

  /* Panels collapse in place; the caret rotates to show open/closed state. */
  nav.primary.open .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 4px 0 10px 12px;
    min-width: 0;
    display: none;
  }
  nav.primary.open .submenu::before { display: none; }
  nav.primary.open .has-menu.open-sub > .submenu { display: block; }
  nav.primary.open .submenu.mega { grid-template-columns: 1fr; gap: 0; }
  nav.primary.open .submenu a { padding: 11px 10px; border-bottom: none; }
  nav.primary.open .mega-head { padding: 12px 10px 4px; }
  nav.primary.open .mega-foot { flex-direction: column; align-items: stretch; margin-top: 6px; }
  nav.primary.open .mega-foot .acts { flex-direction: column; align-items: stretch; }
  nav.primary.open .mega-foot a.mini { justify-content: center; }
  nav.primary.open .has-menu > a::after { float: right; margin-top: 7px; }
  nav.primary.open .has-menu.open-sub > a::after { transform: translateY(1px) rotate(225deg); border-color: var(--accent); }

  /* Keep the quote CTA reachable inside the drawer instead of dropping it. */
  .nav-cta { margin: 14px 0 0; }
  .nav-cta > a.btn { display: flex; justify-content: center; padding: 14px 20px; font-size: 1rem; }
  .nav-toggle { display: block; }
  .top-bar .since { display: none; }
}

/* ────────────────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.3);
}
.btn-primary:hover { background: var(--accent-2); color: #fff; transform: translateY(-1px); }
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-2); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost.on-dark:hover { background: #fff; color: var(--navy); }
.btn-sm { padding: 10px 16px; font-size: 0.88rem; }
.btn-lg { padding: 18px 28px; font-size: 1.05rem; }

/* ────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2fa 100%);
  padding: 90px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(29,78,216,0.08), transparent 60%),
    radial-gradient(50% 50% at 15% 100%, rgba(180,137,74,0.08), transparent 60%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 14px; }
.hero h1 span { color: var(--accent); font-style: italic; }
.hero .sub { font-size: 1.18rem; color: var(--slate); max-width: 52ch; margin-bottom: 28px; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero .proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero .proof .item { display: flex; flex-direction: column; gap: 2px; }
.hero .proof .num { font-family: var(--ff-serif); font-size: 1.6rem; color: var(--navy); font-weight: 600; }
.hero .proof .lbl { font-size: 0.82rem; color: var(--mute); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: #0f1e3d;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}
.hero-visual .badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 82%;
}
.hero-visual .badge .stars { color: #f5b301; letter-spacing: 2px; font-size: 0.95rem; }
.hero-visual .badge .text { font-size: 0.88rem; color: var(--navy); line-height: 1.35; }
.hero-visual .badge strong { display: block; font-size: 0.92rem; }

@media (max-width: 860px) {
  .hero { padding: 56px 0 72px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { aspect-ratio: 4/3; max-width: 520px; margin: 0 auto; }
  .hero .proof { grid-template-columns: repeat(2, 1fr); }
}

/* ────────────────────────────────────────────────────────
   TRUST BAR
   ──────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  color: #e3ecfb;
  padding: 22px 0;
}
.trust-bar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.trust-bar .item { display: flex; gap: 10px; align-items: center; justify-content: center; font-size: 0.96rem; }
.trust-bar svg { flex: 0 0 auto; opacity: 0.9; }
@media (max-width: 720px) {
  .trust-bar .wrap { grid-template-columns: repeat(2, 1fr); }
}

/* ────────────────────────────────────────────────────────
   AUDIENCE SPLIT
   ──────────────────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow { display: block; }
.section-head h2 { max-width: 22ch; margin: 0 auto 12px; }
.section-head p { max-width: 58ch; margin: 0 auto; color: var(--mute); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.audience-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.audience-card h3 { margin: 0; }
.audience-card ul { list-style: none; padding: 0; margin: 6px 0 16px; display: flex; flex-direction: column; gap: 8px; }
.audience-card ul li { display: flex; gap: 8px; color: var(--slate); font-size: 0.96rem; }
.audience-card ul li::before { content: "✓"; color: var(--accent); font-weight: 700; flex: 0 0 16px; }
.audience-card .more { margin-top: auto; color: var(--accent); font-weight: 600; font-size: 0.94rem; }
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────────────────────
   SERVICE GRID
   ──────────────────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); color: inherit; }
.service-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eaf0fd;
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.service-card h3 {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
}
.service-card p { font-size: 0.92rem; color: var(--mute); margin: 0; }
.service-card .more { color: var(--accent); font-weight: 600; font-size: 0.88rem; margin-top: 6px; }
@media (max-width: 1000px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .service-grid { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────────────────────
   BEFORE / AFTER
   ──────────────────────────────────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ba-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #0f1e3d;
  box-shadow: var(--shadow-md);
}
.ba-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,30,61,0) 50%, rgba(15,30,61,0.85) 100%);
}
.ba-card img { width: 100%; height: 100%; object-fit: cover; }
.ba-card .caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: #fff;
  z-index: 2;
}
.ba-card .caption .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c2d5ff;
}
.ba-card .caption h4 { color: #fff; font-family: var(--ff-serif); font-size: 1.2rem; margin: 4px 0 0; }
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ba-grid { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────────────────────
   VERIFIED BEFORE / AFTER PAIRS
   Same wall, same spot, same job. Only real pairs go here.
   ──────────────────────────────────────────────────────── */
.ba-jobs { display: grid; gap: 40px; }
.ba-job {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.ba-job-head { padding: 22px 24px 0; }
.ba-job-head .label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
  font-weight: 600;
}
.ba-job-head h3 {
  font-family: var(--ff-serif);
  font-size: 1.32rem;
  color: var(--navy);
  margin: 6px 0 0;
}
.ba-job-head p { color: var(--mute); font-size: 0.97rem; margin: 8px 0 0; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 20px 24px 24px; }
.ba-shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off);
}
.ba-shot img { width: 100%; height: auto; display: block; aspect-ratio: 3/4; object-fit: cover; }
.ba-shot figcaption {
  font-size: 0.87rem;
  color: var(--mute);
  padding: 10px 2px 0;
  line-height: 1.45;
}
.ba-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
}
.ba-chip.is-before { background: rgba(15, 30, 61, 0.9); }
.ba-chip.is-after { background: var(--success); }
@media (max-width: 560px) {
  .ba-pair { grid-template-columns: 1fr; gap: 20px; }
  .ba-job-head, .ba-pair { padding-left: 16px; padding-right: 16px; }
}

/* Team / crew photo band */
.team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--off);
}
.team-photo img { width: 100%; height: auto; display: block; aspect-ratio: 4/3; object-fit: cover; }
.team-photo figcaption {
  font-size: 0.9rem;
  color: var(--mute);
  padding: 14px 18px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

/* ────────────────────────────────────────────────────────
   AUTHORITY / PROOF
   ──────────────────────────────────────────────────────── */
.authority {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.authority .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.stat { padding: 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.stat .num { font-family: var(--ff-serif); font-size: 2.3rem; color: var(--navy); font-weight: 600; line-height: 1; }
.stat .lbl { color: var(--mute); font-size: 0.92rem; margin-top: 6px; }

.reviews { display: flex; flex-direction: column; gap: 16px; }
.review {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.review .stars { color: #f5b301; letter-spacing: 2px; font-size: 0.9rem; }
.review p { font-size: 1.02rem; color: var(--slate); margin: 10px 0 10px; }
.review .by { font-size: 0.88rem; color: var(--mute); }
.review .by strong { color: var(--navy); }

@media (max-width: 900px) { .authority .wrap { grid-template-columns: 1fr; gap: 32px; } }

/* ────────────────────────────────────────────────────────
   SERVICE AREAS
   ──────────────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.area-card {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.area-card:hover { border-color: var(--accent); color: inherit; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.area-card .region {
  font-size: 0.75rem;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.area-card h4 { font-family: var(--ff-sans); font-size: 1.05rem; color: var(--navy); margin: 4px 0 0; font-weight: 600; }
.area-card ul { margin: 10px 0 0; padding: 0; list-style: none; font-size: 0.88rem; color: var(--mute); display: flex; flex-wrap: wrap; gap: 4px 10px; }
@media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .areas-grid { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────────────────────
   PROCESS
   ──────────────────────────────────────────────────────── */
.process {
  background: var(--navy);
  color: #e3ecfb;
}
.process h2 { color: #fff; }
.process .section-head p { color: #b8c6e3; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  border-radius: var(--radius);
}
.step .n {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.2em;
}
.step h4 { color: #fff; margin: 8px 0 6px; font-family: var(--ff-sans); font-size: 1.08rem; font-weight: 600; }
.step p { color: #b8c6e3; font-size: 0.96rem; margin: 0; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────────────────────
   CTA STRIP
   ──────────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(120deg, var(--accent) 0%, var(--navy) 100%);
  color: #fff;
  padding: 72px 0;
}
.cta-strip .wrap {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 32px;
  align-items: center;
}
.cta-strip h2 { color: #fff; margin: 0 0 6px; max-width: 24ch; }
.cta-strip p { color: #cfe0ff; margin: 0; max-width: 50ch; }
.cta-strip .buttons { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .cta-strip .wrap { grid-template-columns: 1fr; }
  .cta-strip .buttons { justify-content: flex-start; }
}

/* ────────────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────────────── */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px 22px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding-bottom: 18px; margin: 0; color: var(--slate); }

/* ────────────────────────────────────────────────────────
   PAGE HEADER (inner pages)
   ──────────────────────────────────────────────────────── */
.page-head {
  background: linear-gradient(180deg, #eff3fb 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 56px;
}
.page-head .eyebrow { color: var(--accent); }
.page-head h1 { margin: 0 0 14px; }
.page-head p { max-width: 60ch; font-size: 1.1rem; color: var(--mute); }

/* Article-style content pages */
.prose { max-width: 760px; }
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 28px; }
.prose ul, .prose ol { padding-left: 1.2em; color: var(--slate); }
.prose li { margin: 6px 0; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  margin: 24px 0;
  padding: 6px 0 6px 20px;
  color: var(--slate);
  font-style: italic;
}

/* ────────────────────────────────────────────────────────
   CONTACT
   ──────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fcfdff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }

/* Quote-form: photo/in-person choice + file uploads (added 2026-09-02) */
.choice {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; margin: 0 0 14px; background: #fcfdff;
}
.choice legend {
  font-size: 0.86rem; font-weight: 600; color: var(--navy); padding: 0 6px;
}
.choice label {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; line-height: 1.45; color: var(--ink);
  cursor: pointer; padding: 6px 0;
}
.choice input {
  margin-top: 3px; flex: none; width: 16px; height: 16px;
  accent-color: var(--accent); cursor: pointer;
}
.choice input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.uploads .hint {
  font-size: 0.78rem; line-height: 1.5; color: var(--mute); margin: 0 0 10px;
}
.uploads .hint a { color: var(--accent); text-decoration: underline; }
.uploads input[type="file"] {
  display: block; width: 100%; margin-bottom: 8px;
  padding: 10px 12px; border: 1px dashed var(--line); border-radius: 10px;
  background: #fcfdff; font: inherit; font-size: 0.85rem; color: var(--mute);
  cursor: pointer;
}
.uploads input[type="file"]:last-of-type { margin-bottom: 0; }
.uploads input[type="file"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Quote-form consent (TCPA) — optional opt-in, never gates submission */
.consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 2px 0 16px; font-size: 0.78rem; line-height: 1.5;
  color: var(--mute); cursor: pointer;
}
.consent input {
  margin-top: 3px; flex: none; width: 15px; height: 15px;
  accent-color: var(--accent); cursor: pointer;
}
.consent input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.form-fine {
  font-size: 0.78rem; line-height: 1.5; color: var(--mute);
  margin: 14px 0 0; text-align: center;
}
.form-fine a { color: var(--accent); text-decoration: underline; }
.contact-info {
  background: var(--navy);
  color: #e3ecfb;
  border-radius: var(--radius);
  padding: 36px;
}
.contact-info h3 { color: #fff; margin-top: 0; }
.contact-info .phone-list { list-style: none; padding: 0; margin: 18px 0 24px; }
.contact-info .phone-list li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-info .phone-list li:last-child { border-bottom: none; }
.contact-info .phone-list .region { font-size: 0.78rem; color: #9fc0ff; text-transform: uppercase; letter-spacing: 0.14em; }
.contact-info .phone-list a { display: block; color: #fff; font-family: var(--ff-serif); font-size: 1.35rem; margin-top: 4px; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────── */
footer.site-footer {
  background: var(--ink);
  color: #aab5cf;
  padding: 72px 0 28px;
  font-size: 0.93rem;
}
footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
footer h5 { color: #fff; font-family: var(--ff-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.18em; margin: 0 0 14px; font-weight: 600; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: 4px 0; }
footer ul a { color: #aab5cf; }
footer ul a:hover { color: #fff; }
footer .brand-block p { color: #aab5cf; max-width: 38ch; }
footer .brand-mark { color: #fff; }
footer .brand-mark em{color:var(--gold)} /* was inheriting navy on navy — 1.07:1, effectively invisible */
footer .brand-sub { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #7a87a6;
  font-size: 0.82rem;
}
@media (max-width: 820px) { footer .wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer .wrap { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────────────────────
   STICKY MOBILE CTA
   ──────────────────────────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 60;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) { .mobile-cta { display: block; } }

/* Utility */
.center { text-align: center; }
.mt-lg { margin-top: 40px; }
.mt-md { margin-top: 24px; }
.mb-sm { margin-bottom: 12px; }
.text-mute { color: var(--mute); }

/* ────────────────────────────────────────────────────────
   BRAND ICON SYSTEM
   Mask-based monochrome icons — inherit currentColor.
   Use: <i class="icon i-phone"></i>
   ──────────────────────────────────────────────────────── */
.icon {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  vertical-align: -0.18em;
  background-color: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
  flex-shrink: 0;
}
.icon-sm { width: 0.9em; height: 0.9em; }
.icon-md { width: 1.25em; height: 1.25em; }
.icon-lg { width: 1.5em; height: 1.5em; }

/* Drywall handset — slightly tapered, brand-rounded */
.i-phone {
  --icon-url: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='M5.5 4.2c0-.66.54-1.2 1.2-1.2h2.06c.56 0 1.05.39 1.18.94l.78 3.32a1.2 1.2 0 0 1-.33 1.13l-1.18 1.17a13.7 13.7 0 0 0 5.21 5.21l1.17-1.18c.31-.31.76-.44 1.18-.34l3.31.78c.55.13.94.62.94 1.18v2.06c0 .66-.54 1.2-1.2 1.2h-.62A14.5 14.5 0 0 1 5.5 4.82z'/></svg>");
}
/* Right arrow */
.i-arrow {
  --icon-url: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 6l6 6-6 6'/></svg>");
}
/* Check */
.i-check {
  --icon-url: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12.5l4.5 4.5L19 7.5'/></svg>");
}
/* Map pin */
.i-pin {
  --icon-url: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s7-6.3 7-12a7 7 0 1 0-14 0c0 5.7 7 12 7 12z'/><circle cx='12' cy='9' r='2.5'/></svg>");
}

/* ────────────────────────────────────────────────────────
   BUTTON IMPROVEMENTS — focus rings + light variant + lift
   ──────────────────────────────────────────────────────── */
.btn { isolation: isolate; will-change: transform; -webkit-tap-highlight-color: transparent; }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(29,78,216,0.18), 0 6px 18px rgba(29,78,216,0.28);
}
.btn-primary { background-image: linear-gradient(180deg, #2456e6 0%, var(--accent) 100%); }
.btn-primary:hover { background-image: linear-gradient(180deg, #2c63ee 0%, var(--accent-2) 100%); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(29,78,216,0.34); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(29,78,216,0.22); }

.btn-dark { background-image: linear-gradient(180deg, #1c305a 0%, var(--navy) 100%); }
.btn-dark:hover { background-image: linear-gradient(180deg, #233b6a 0%, var(--navy-2) 100%); }

.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(15,30,61,0.18);
}
.btn-light:hover {
  background: #f6f8fc;
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15,30,61,0.24);
}
.btn-light:focus-visible {
  box-shadow: 0 0 0 3px rgba(180,137,74,0.45), 0 6px 18px rgba(15,30,61,0.18);
}

/* Icon-trailing arrow utility for primary CTAs */
.btn .icon { transition: transform 0.18s ease; }
.btn-arrow .icon { margin-left: 4px; }
.btn-arrow:hover .icon { transform: translateX(3px); }

/* ────────────────────────────────────────────────────────
   AUDIENCE TAG ICONS — replace emoji
   ──────────────────────────────────────────────────────── */
.audience-card .tag { gap: 8px; }
.audience-card .tag .icon {
  width: 1.1em;
  height: 1.1em;
  background-color: var(--accent);
}

/* ────────────────────────────────────────────────────────
   SERVICE CARD ICON — brand-tinted gold accent stripe
   ──────────────────────────────────────────────────────── */
.service-card .icon-tile {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf0fd 0%, #dde7fb 100%);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  overflow: hidden;
}
.service-card .icon-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.service-card:hover .icon-tile::after { transform: scaleX(1); }
.service-card .icon-tile svg { stroke-width: 1.6; }

/* ────────────────────────────────────────────────────────
   TRUST BAR — modernized gold-accented inline icons
   ──────────────────────────────────────────────────────── */
.trust-bar .item { gap: 12px; font-weight: 500; }
.trust-bar .item svg {
  flex: 0 0 auto;
  opacity: 1;
  color: var(--gold);
  stroke-width: 1.6;
}

/* ────────────────────────────────────────────────────────
   TOP BAR + MOBILE CTA — phone icon spacing
   ──────────────────────────────────────────────────────── */
.top-bar .phones a .icon { color: var(--gold); }
.mobile-cta { display: none; }
.mobile-cta .icon { margin-right: 6px; vertical-align: -0.16em; }
@media (max-width: 720px) {
  .mobile-cta { display: inline-flex; align-items: center; justify-content: center; gap: 4px; }
}

/* Brand logo — real PIAD mark, replaces the text wordmark in the header.
   Aspect 537×190; height-constrained so the intrinsic w/h prevents layout shift. */
.brand-logo { height: 54px; width: auto; display: block; }
@media (max-width: 1080px) { .brand-logo { height: 44px; } }
@media (max-width: 640px) { .brand-logo { height: 40px; } }


/* ────────────────────────────────────────────────────────
   SMOKED-GLASS PANELS — every card surface shares the header's material.
   Tint stays light (≈#eaedf2) so slate/mute body copy holds AA contrast.
   ──────────────────────────────────────────────────────── */
.audience-card,
.service-card,
.stat,
.review,
.area-card,
.faq-item,
.process-step,
.authority-card {
  background: var(--glass-solid);
  border-color: var(--glass-line);
  border-top-color: var(--glass-edge);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .audience-card,
  .service-card,
  .stat,
  .review,
  .area-card,
  .faq-item,
  .process-step,
  .authority-card {
    background: var(--glass);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
  }
}
/* Hover lifts the pane toward white rather than darkening it. */
.audience-card:hover,
.service-card:hover,
.area-card:hover { background: rgba(255, 255, 255, 0.86); }

/* header quote pill clipped its label (padding-inline computed 0) — fixed at cutover */
.hdr .btn-quote,.nav-cta .btn{padding-inline:22px}

/* Footer profile links — Google Business Profile, Yelp, Facebook (added 2026-08-25) */
.foot-social{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px;padding:0;list-style:none}
.foot-social li{padding:0}
.foot-social a{display:inline-flex;align-items:center;gap:8px;min-height:44px;box-sizing:border-box;padding:12px 16px;border:1px solid rgba(255,255,255,.18);border-radius:999px;color:#dbe2f2;font-size:.85rem;line-height:1;text-decoration:none;transition:background .15s,border-color .15s,color .15s}
.foot-social a:hover,.foot-social a:focus-visible{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.45);color:#fff}
.foot-social a:focus-visible{outline:2px solid var(--gold);outline-offset:2px}
.foot-social svg{width:16px;height:16px;flex:none}
@media (max-width:420px){.foot-social a{padding:12px 13px;font-size:.8rem}}
