/* Co Painting - SEO doc wireframe + brand (gold-first, squared) */

:root {
  --gold: #f8c616;
  --gold-dark: #c99810;
  --gold-light: #fad54a;
  --gold-soft: rgba(248, 198, 22, 0.14);
  --gold-bg: #fff6e5;
  --red: #c41e3a;
  --red-dark: #9b1830;
  --red-soft: rgba(196, 30, 58, 0.08);
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --white: #ffffff;
  --cream: #fffbf2;
  --warm: #fff3d6;
  --border: rgba(26, 26, 26, 0.12);
  --shadow: 0 4px 20px rgba(26, 26, 26, 0.07);
  --radius: 4px;
  --radius-sm: 3px;
  --header-h: 4.5rem;
  --font: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1080px, calc(100% - 2rem));
  --container-wide: min(1280px, calc(100% - 3rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  max-width: 100%;
}
@media (max-width: 767px) { body { padding-bottom: 3.25rem; } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }
a:hover { color: var(--gold-dark); }
.prose a, .service-block-copy a, .content-block a { color: var(--red); font-weight: 600; }
.prose a:hover, .service-block-copy a:hover, .content-block a:hover { color: var(--red-dark); }
.container { width: var(--container); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 0.75rem 1rem; background: var(--gold); color: var(--ink);
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.25rem; font-size: 0.875rem; font-weight: 700;
  border-radius: var(--radius); border: 2px solid transparent; cursor: pointer;
  text-decoration: none; transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary, .btn-red {
  background: var(--gold); color: var(--ink); border-color: var(--gold-dark);
}
.btn-primary:hover, .btn-red:hover {
  background: var(--gold-dark); color: var(--ink); border-color: var(--gold-dark);
}
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold-dark); }
.btn-call {
  background: var(--red); color: var(--white); border-color: var(--red-dark);
}
.btn-call:hover {
  background: var(--red-dark); color: var(--white); border-color: var(--red-dark);
}
.btn-outline {
  background: var(--white); color: var(--ink); border-color: var(--border);
}
.btn-outline:hover { border-color: var(--gold-dark); color: var(--ink); background: var(--gold-soft); }
.btn-full { width: 100%; }
.btn-sm { padding: 0.5rem 0.85rem; font-size: 0.8125rem; }
.btn-icon { gap: 0.45rem; }
.btn-icon svg, .mobile-bar-btn svg, .trust-pill svg {
  width: 1rem; height: 1rem; flex-shrink: 0;
}
.site-icon {
  width: 1rem; height: 1rem; flex-shrink: 0; display: block;
  stroke: currentColor; fill: none;
}
.site-icon--solid { fill: currentColor; stroke: none; }
.site-icon-pin {
  width: 1rem; height: 1rem; object-fit: contain;
}
.btn-icon svg, .btn-icon .site-icon { width: 1rem; height: 1rem; }
.btn-call svg, .btn-call .site-icon:not(.site-icon-pin) { color: var(--white); }
.mobile-bar-call svg { color: var(--white); }
.nav-drawer-phone svg { color: var(--red); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 400;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  overflow: visible;
  border-bottom: 3px solid var(--gold);
}
.header-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 0.75rem;
  width: min(1440px, calc(100% - 1.5rem));
  margin: 0 auto; padding: 0.55rem 0.75rem 0.45rem;
  min-height: var(--header-h);
  overflow: visible;
}
.logo { order: 1; display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; text-decoration: none; color: var(--ink); position: relative; z-index: 2; }
.logo-mark { height: 40px; width: auto; display: block; object-fit: contain; }
.logo-text { font-size: 1.05rem; font-weight: 800; }

.header-trust {
  order: 2;
  flex: 1;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0 0.75rem;
  text-decoration: none;
  color: inherit;
}
.header-trust:hover { color: inherit; }
.header-trust__google {
  width: 2rem;
  height: 2rem;
  max-width: 2rem;
  max-height: 2rem;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
}
.header-trust__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
  text-align: left;
}
.header-trust .review-stars-inline {
  color: var(--gold-dark);
  font-size: 0.65rem;
  line-height: 1;
}
.header-trust__score {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
}
.header-trust__score strong { color: var(--ink); }
.header-trust__score-detail--mobile { display: none; }
.header-trust__tagline {
  font-size: 0.6875rem;
  color: var(--muted);
  line-height: 1.25;
  white-space: nowrap;
}

.header-actions {
  order: 3; display: flex; align-items: center; gap: 0.5rem;
  margin-left: auto; flex-shrink: 0; position: relative; z-index: 5;
  background: rgba(255, 255, 255, 0.98);
}

.site-nav {
  order: 4; display: flex; align-items: center; flex-wrap: nowrap;
  gap: 0.1rem; flex: 1 1 100%; width: 100%;
  min-width: 0; margin: 0; padding: 0.35rem 0 0.1rem;
  justify-content: center; overflow: visible;
  border-top: 1px solid var(--border);
}
.nav-link {
  display: inline-flex; align-items: center; gap: 0.2rem;
  padding: 0.4rem 0.45rem; font-size: 0.75rem; font-weight: 600;
  color: var(--muted); background: none; border: none; border-radius: var(--radius-sm);
  cursor: pointer; text-decoration: none; font-family: inherit;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-link:hover, .nav-trigger[aria-expanded="true"] { color: var(--ink); background: var(--gold-soft); }

.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 0.35rem); left: 0;
  min-width: 240px; max-width: 300px; padding: 0.75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); z-index: 210;
}
.nav-dropdown-wide { min-width: 280px; }
.nav-dropdown[hidden] { display: none; }

@media (min-width: 1100px) {
  .nav-item.has-dropdown .nav-dropdown {
    position: fixed; top: var(--header-h); left: auto;
    transform: none;
  }
  .nav-item.has-dropdown:nth-child(3) .nav-dropdown { left: 22%; }
  .nav-item.has-dropdown:nth-child(4) .nav-dropdown { left: 32%; }
  .nav-item.has-dropdown:nth-child(5) .nav-dropdown { left: 42%; }
  .nav-item.has-dropdown:nth-child(6) .nav-dropdown { left: 52%; }
}

.nav-dropdown-feature {
  display: block; font-weight: 700; font-size: 0.875rem;
  color: var(--ink); padding: 0.4rem 0.5rem; margin-bottom: 0.35rem;
  border-bottom: 1px solid var(--border); text-decoration: none;
}
.nav-dropdown-feature:hover { color: var(--gold-dark); }
.nav-dropdown-link {
  display: block; padding: 0.4rem 0.5rem; font-size: 0.8125rem;
  font-weight: 500; color: var(--muted); text-decoration: none; border-radius: 6px;
}
.nav-dropdown-link:hover { color: var(--ink); background: var(--gold-soft); }
.nav-dropdown-link-all { color: var(--gold-dark); font-weight: 700; margin-top: 0.25rem; }
.nav-dropdown-text {
  display: block; padding: 0.35rem 0.5rem; font-size: 0.8125rem; color: var(--muted);
  opacity: 0.75;
}

.nav-chevron { transition: transform 0.25s var(--ease); flex-shrink: 0; }
.nav-trigger[aria-expanded="true"] .nav-chevron,
.nav-accordion-trigger[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.header-cta { padding: 0.55rem 0.85rem; font-size: 0.8125rem; white-space: nowrap; }
.header-cta.btn-call { padding: 0.55rem 0.75rem; }

@media (min-width: 768px) {
  :root { --header-h: 6.35rem; }
}

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.5rem; height: 2.5rem; padding: 0.5rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer;
}
.nav-toggle-bar {
  display: block; height: 2px; background: var(--ink); border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 300;
  visibility: hidden; pointer-events: none;
}
.nav-drawer.is-open { visibility: visible; pointer-events: auto; }
.nav-drawer-backdrop {
  position: absolute; inset: 0; background: rgba(26, 26, 26, 0.45);
  border: none; cursor: pointer; opacity: 0; transition: opacity 0.3s var(--ease);
}
.nav-drawer.is-open .nav-drawer-backdrop { opacity: 1; }
.nav-drawer-panel {
  position: absolute; top: 0; right: 0; width: min(100%, 380px); height: 100%;
  display: flex; flex-direction: column; background: var(--white);
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.1);
  transform: translateX(100%); transition: transform 0.35s var(--ease);
}
.nav-drawer.is-open .nav-drawer-panel { transform: translateX(0); }
.nav-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.25rem; border-bottom: 1px solid var(--border);
}
.nav-drawer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}
.nav-drawer-brand:hover { color: var(--ink); }
.nav-drawer-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-drawer-close {
  width: 2.25rem; height: 2.25rem; font-size: 1.5rem; line-height: 1;
  color: var(--muted); border: 1px solid var(--border); border-radius: 8px;
  background: transparent; cursor: pointer;
}
.nav-drawer-body { flex: 1; overflow-y: auto; padding: 0.75rem 1.25rem; }
.nav-drawer-toplink {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 0; font-weight: 700;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--border);
}
.nav-drawer-toplink:hover { color: var(--gold-dark); }
.nav-accordion { border-bottom: 1px solid var(--border); }
.nav-accordion-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0.85rem 0; font-size: 0.9375rem; font-weight: 700;
  color: var(--ink); background: none; border: none; cursor: pointer; text-align: left;
}
.nav-accordion-panel { padding-bottom: 0.65rem; }
.nav-accordion-panel[hidden] { display: none; }
.nav-drawer-link {
  display: block; padding: 0.45rem 0.65rem; margin-bottom: 0.1rem;
  font-size: 0.875rem; color: var(--muted); text-decoration: none; border-radius: 8px;
}
.nav-drawer-link:hover { color: var(--ink); background: var(--gold-soft); }
.nav-drawer-text {
  display: block; padding: 0.45rem 0.65rem; font-size: 0.875rem; color: var(--muted); opacity: 0.75;
}
.nav-drawer-foot { padding: 1rem 1.25rem 1.35rem; border-top: 1px solid var(--border); }
.nav-drawer-phone {
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
  margin-top: 0.65rem; font-weight: 700; color: var(--muted); text-decoration: none;
}
.nav-drawer-phone svg,
.nav-drawer-phone .site-icon { width: 1rem; height: 1rem; flex-shrink: 0; }

@media (max-width: 767px) {
  :root { --header-h: 4.5rem; }
  .desktop-nav, .desktop-only { display: none !important; }
  .nav-toggle { display: flex; }
  .header-row {
    flex-wrap: nowrap;
    gap: 0.35rem;
    padding-inline: 0.65rem;
  }
  .logo {
    flex-shrink: 1;
    min-width: 0;
  }
  .logo-text { font-size: 0.95rem; }
  .header-trust {
    display: flex !important;
    flex: 1 1 auto;
    order: 2;
    justify-content: center;
    min-width: 0;
    padding: 0 0.2rem;
    gap: 0.4rem;
  }
  .header-trust__google {
    width: 1.25rem;
    height: 1.25rem;
  }
  .header-trust__body {
    gap: 0.05rem;
    min-width: 0;
  }
  .header-trust .review-stars-inline {
    font-size: 0.5rem;
    letter-spacing: 0.02em;
  }
  .header-trust__score {
    font-size: 0.6875rem;
    line-height: 1.15;
    white-space: nowrap;
  }
  .header-trust__score-detail--desktop { display: none; }
  .header-trust__score-detail--mobile { display: inline; }
  .header-trust__tagline { display: none !important; }
  .header-actions { margin-left: 0; order: 3; flex-shrink: 0; }
  .site-nav { display: none !important; }
}
@media (max-width: 360px) {
  .logo-text { display: none; }
  .header-trust__score { font-size: 0.625rem; }
}
@media (min-width: 768px) {
  .desktop-nav { display: flex !important; }
  .desktop-only { display: inline-flex !important; }
  .nav-toggle { display: none !important; }
  .mobile-action-bar { display: none !important; }
  body { padding-bottom: 0 !important; }
  .header-row {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.85rem;
    padding: 0.5rem 1rem 0.35rem;
  }
  .header-actions {
    margin-left: auto;
  }
  .header-actions .btn-primary { display: inline-flex !important; }
  .header-cta { font-size: 0.8125rem; padding: 0.5rem 0.75rem; }
  .site-nav {
    order: 4;
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
    gap: 0.12rem;
    overflow-x: visible;
    background: var(--cream);
    border-top: 1px solid var(--border);
    margin-inline: calc(50% - 50vw);
    padding: 0.45rem calc(50vw - 50% + 0.75rem) 0.55rem;
    flex-wrap: nowrap;
  }
  .site-nav .nav-link {
    color: var(--muted);
  }
  .site-nav .nav-link:hover,
  .site-nav .nav-trigger[aria-expanded="true"] {
    color: var(--ink);
    background: var(--gold-soft);
  }
  .nav-link { font-size: 0.8125rem; padding: 0.4rem 0.5rem; }
  .site-nav a.nav-link[href="/free-quote/"] { display: none !important; }
  .hero-small-grid {
    grid-template-columns: minmax(0, 1fr) min(280px, 36%);
    gap: 1.35rem;
    align-items: center;
    max-width: 860px;
    margin-inline: auto;
  }
  .page-hero-copy {
    max-width: 56rem;
    margin: 0;
    text-align: left;
  }
  .page-hero-v2 { padding-bottom: 1.75rem; }
  .page-hero-grid { padding-top: 1.25rem; }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .nav-item.has-dropdown:nth-last-child(-n+2) .nav-dropdown {
    left: auto;
    right: 0;
  }
  .nav-link { font-size: 0.75rem; padding: 0.35rem 0.4rem; }
}
@media (min-width: 1024px) {
  :root {
    --container: min(1180px, calc(100% - 2.5rem));
  }
}
@media (min-width: 1200px) {
  :root { --container: var(--container-wide); }
  .header-row { gap: 0.55rem 1rem; padding: 0.55rem 1rem 0.4rem; }
  .nav-link { font-size: 0.875rem; padding: 0.4rem 0.55rem; }
}
@media (min-width: 1280px) {
  .nav-link { font-size: 0.875rem; padding: 0.4rem 0.55rem; }
}

/* Hero small */
.hero-small { padding: 2rem 0 0; background: var(--gold-bg); }
.hero-small--bg {
  position: relative;
  padding: 3.25rem 0 3.75rem;
  background-color: var(--ink);
  background-image: var(--hero-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-small--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 26, 26, 0.88) 0%,
    rgba(26, 26, 26, 0.72) 45%,
    rgba(26, 26, 26, 0.55) 100%
  );
  pointer-events: none;
}
.hero-small--bg > .container {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - clamp(2rem, 5vw, 4rem)));
  padding-inline: clamp(0.75rem, 2vw, 1.25rem);
}
.hero-small--bg .hero-small-grid {
  max-width: 860px;
  margin-inline: auto;
  gap: 1.35rem;
  padding: 0.5rem 0;
}
.hero-small--bg .hero-google-trust {
  display: inline-flex;
  margin-top: 1.15rem;
  padding: 0.55rem 0.85rem 0.55rem 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.hero-small--bg .hero-google-trust:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(248, 198, 22, 0.45);
  color: inherit;
}
.hero-small--bg .hero-google-trust .reviews-google-logo {
  width: 2rem;
  height: 2rem;
}
.hero-small--bg .hero-google-trust .form-rating-score {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8125rem;
}
.hero-small--bg .hero-google-trust .form-rating-score strong {
  color: var(--white);
}
.hero-small--bg .hero-google-trust .review-stars-inline {
  color: var(--gold);
  font-size: 0.65rem;
}
.hero-small--bg .hero-small-copy h1 {
  color: var(--white);
  font-size: clamp(2.15rem, 4.75vw, 3.35rem);
  line-height: 1.08;
}
.hero-small--bg .hero-lead-text {
  color: rgba(255, 255, 255, 0.88);
}
.hero-small--bg .hero-lead-text a {
  color: var(--gold-light);
}
.hero-small--bg .hero-lead-text a:hover {
  color: var(--gold);
}
.hero-small-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) min(280px, 100%);
  gap: 1.35rem; align-items: center;
}
.hero-small--bg .quote-card {
  padding: 1rem 1.05rem;
}
.hero-small--bg .sidebar-quote-head {
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
}
.hero-small--bg .sidebar-portrait {
  width: 56px;
  height: 56px;
}
.hero-small--bg .sidebar-quote-trust .form-rating-logos {
  width: 2.4rem;
  height: 1.35rem;
}
.hero-small--bg .sidebar-quote-trust .form-logo-orb {
  width: 1.25rem;
  height: 1.25rem;
}
.hero-small--bg .sidebar-quote-trust .form-logo-orb-google { left: 0.9rem; }
.hero-small--bg .sidebar-quote-trust .form-rating-combined { gap: 0; }
.hero-small--bg .sidebar-quote-trust .form-rating-score {
  font-size: 0.75rem;
  line-height: 1.25;
}
.hero-small--bg .sidebar-quote-meta {
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  line-height: 1.3;
}
.hero-small--bg .quote-card-title {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}
.hero-small--bg .quote-form .field {
  margin-bottom: 0.5rem;
}
.hero-small--bg .quote-form .field:last-of-type {
  margin-bottom: 0.65rem;
}
.hero-small--bg .quote-form .field span {
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
}
.hero-small--bg .quote-form .field input,
.hero-small--bg .quote-form .field select {
  padding: 0.5rem 0.65rem;
  font-size: 0.875rem;
}
.hero-small--bg .quote-form .btn {
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
}
.hero-small--bg .sidebar-quote-call {
  margin-top: 0.6rem;
  font-size: 0.75rem;
}
.hero-small-copy h1 {
  margin: 0 0 1rem; font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
}
.hero-lead-text { margin: 0 0 1.25rem; color: var(--muted); font-size: 1.02rem; }
.hero-lead-text a { font-weight: 700; color: var(--red); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.quote-card {
  position: relative; z-index: 1;
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
}
.quote-card-title {
  margin: 0 0 0.85rem; font-size: 1.125rem; font-weight: 800; color: var(--ink);
  line-height: 1.25;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.quote-form-progress {
  margin-bottom: 0.85rem;
}
.quote-form-progress-track {
  height: 0.35rem; background: var(--border); border-radius: 999px; overflow: hidden;
}
.quote-form-progress-fill {
  display: block; height: 100%; background: var(--gold);
  border-radius: inherit; transition: width 0.35s var(--ease);
}
.quote-form-progress-label {
  margin: 0.4rem 0 0; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted);
}
.quote-form fieldset {
  margin: 0; padding: 0; border: 0; min-width: 0;
}
.quote-form-step[hidden] { display: none; }
.quote-form-step-actions {
  display: grid; grid-template-columns: 1fr 1.35fr; gap: 0.5rem;
  margin-top: 0.15rem;
}
.quote-form-step-actions .btn { width: 100%; }
.field { display: block; margin-bottom: 0.75rem; }
.field span { display: block; margin-bottom: 0.3rem; font-size: 0.8125rem; font-weight: 600; }
.field input, .field select {
  width: 100%; padding: 0.65rem 0.8rem; font: inherit; font-size: 0.9375rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--cream);
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--gold-dark); box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-success {
  margin: 0.75rem 0 0; padding: 0.75rem; font-size: 0.875rem; font-weight: 600;
  color: var(--ink); background: var(--gold-soft); border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.form-success[hidden] { display: none; }
.form-error {
  margin: 0.75rem 0 0; padding: 0.75rem; font-size: 0.875rem; font-weight: 600;
  color: #9b1c1c; background: #fdecec; border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
}
.form-error[hidden] { display: none; }
.form-submitting [type="submit"] { opacity: 0.75; cursor: wait; }

.hero-photo {
  margin: 0 0 2rem; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.hero-photo img { width: 100%; aspect-ratio: 21 / 7; max-height: 320px; object-fit: cover; }

@media (max-width: 767px) {
  .hero-small-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.75rem;
  }
  .hero-small--bg { padding: 2.25rem 0 2.5rem; }
  .hero-small--bg .hero-small-copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }
}

/* Trust strip */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 0; }
.trust-strip-inner { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }

/* Homepage reviews strip (under hero, per wireframe) */
.reviews-strip {
  background: var(--gold-bg);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0 1.5rem;
}
.reviews-strip-inner {
  display: grid;
  gap: 1rem;
}
.reviews-strip-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.reviews-strip-meta strong { color: var(--ink); }
.reviews-strip-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}
.reviews-strip-quote {
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}
.reviews-strip-quote blockquote {
  margin: 0 0 0.45rem;
  font-style: italic;
  color: var(--ink);
}
.reviews-strip-quote cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--muted);
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; font-size: 0.8125rem; font-weight: 700;
  background: var(--gold-bg); border: 1px solid var(--gold); border-radius: var(--radius);
  color: var(--ink);
}
.trust-pill svg { width: 0.9rem; height: 0.9rem; color: var(--gold-dark); }
.trust-pill .site-icon-pin { width: 0.9rem; height: 0.9rem; }

/* Paint brands strip */
.paint-brands {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.paint-brands-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}
.paint-brands-label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: none;
  padding: 0;
}
.paint-brands-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3.5rem;
  width: 100%;
  max-width: 56rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.paint-brands-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  border: none;
  padding: 0;
  margin: 0;
}
.paint-brands-list li + li {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}
.paint-brands-list img {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(100%);
  transition: opacity 0.2s var(--ease), filter 0.2s var(--ease);
}
.paint-brands-list a:hover img,
.paint-brands-list li:hover img {
  opacity: 0.9;
}
@media (min-width: 768px) {
  .paint-brands { padding: 3.5rem 0; }
  .paint-brands-inner { gap: 1.75rem; }
  .paint-brands-label { font-size: 0.875rem; }
  .paint-brands-list { gap: 2.5rem 4.5rem; }
  .paint-brands-list img { height: 3.5rem; max-width: 13rem; }
}
@media (min-width: 1024px) {
  .paint-brands { padding: 4rem 0; }
  .paint-brands-list { gap: 2.5rem 5.5rem; }
  .paint-brands-list img { height: 4rem; max-width: 14.5rem; }
}

/* Google / Facebook trust (Delta-style) */
.form-trust-ratings {
  margin-bottom: 1rem; padding: 0.65rem 0.75rem;
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius);
}
.form-rating-combined {
  display: flex; align-items: center; gap: 0.75rem;
}
.form-rating-logos {
  position: relative; flex-shrink: 0;
  width: 2.55rem; height: 1.45rem;
}
.form-logo-orb {
  position: absolute; top: 50%; display: flex; align-items: center; justify-content: center;
  width: 1.35rem; height: 1.35rem; border-radius: 50%; transform: translateY(-50%);
  background: var(--white); border: 1px solid var(--border);
}
.form-logo-orb-fb { left: -0.05rem; z-index: 2; }
.form-logo-orb-google { left: 0.95rem; z-index: 1; }
.form-rating-logo { display: block; width: 0.8rem; height: 0.8rem; }
.form-rating-scores { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.form-rating-stars-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.review-stars-inline { font-size: 0.7rem; letter-spacing: 0.08em; color: var(--gold-dark); line-height: 1; }
.form-rating-score { font-size: 0.8125rem; color: var(--muted); }
.form-rating-score strong { color: var(--ink); }
.form-rating-tagline {
  display: block; font-size: 0.75rem; color: var(--muted); line-height: 1.35;
}
.reviews-trust-wrap {
  display: flex; justify-content: center; margin: 0 auto;
}
.reviews-google-trust {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-align: left;
}
.reviews-google-logo {
  width: 2.35rem;
  height: 2.35rem;
  max-width: 2.35rem;
  max-height: 2.35rem;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
}
.reviews-google-trust__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: 0;
}
.reviews-google-trust .review-stars-inline { color: var(--gold); }

.platform-badge-row {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  flex-wrap: wrap; margin-bottom: 1rem;
}
.platform-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.65rem; font-size: 0.75rem; font-weight: 600;
  color: var(--ink); background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); text-decoration: none;
}
.platform-badge:hover { border-color: var(--gold); background: var(--gold-bg); }
.platform-badge svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.nav-drawer-social {
  padding: 0.85rem 1.25rem 0.75rem;
  border-top: 1px solid var(--border);
}
.nav-drawer-social-label {
  margin: 0 0 0.65rem; padding: 0;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.nav-drawer-social-link {
  display: flex !important; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0 !important; margin-bottom: 0;
  font-weight: 600 !important; color: var(--ink) !important;
  border-radius: 0;
}
.nav-drawer-social-link:hover { background: transparent !important; color: var(--gold-dark) !important; }
.nav-drawer-icon { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

.footer-social {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem;
}
.footer-social--icons {
  margin-top: 0;
  flex-wrap: nowrap;
}
.footer-social-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.6rem; font-size: 0.8125rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.85) !important; text-decoration: none;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}
.footer-social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; padding: 0;
  color: rgba(255, 255, 255, 0.88) !important; text-decoration: none;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social-link:hover,
.footer-social-icon:hover {
  background: rgba(248, 198, 22, 0.15); border-color: var(--gold); color: var(--gold) !important;
}
.footer-social-link svg,
.footer-social-icon svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* Reviews section + slider (BKCAP-style cards) */
.reviews-section {
  padding: 2.5rem 0 2.75rem;
  background: var(--ink);
  color: var(--white);
}
.reviews-section.section { padding: 2.5rem 0 2.75rem; }
.reviews-section-head { text-align: center; margin-bottom: 1.5rem; }
.reviews-section .section-tag { color: var(--ink); }
.reviews-section h2 {
  margin: 0 0 0.5rem;
  color: var(--white);
  text-align: center;
}
.reviews-section-lead {
  margin: 0 auto 1rem;
  max-width: 36rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.reviews-platform-badges { margin-bottom: 0; }

.google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto 1rem;
  text-align: left;
}
.google-logo,
.review-card__google {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}
.google-reviews__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.google-reviews__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.google-reviews__score {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.google-reviews--inverted .google-reviews__score { color: var(--white); }
.google-reviews__tagline {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.35;
}
.google-reviews--inverted .google-reviews__tagline {
  color: rgba(255, 255, 255, 0.65);
}
.platform-badge--inverted {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.platform-badge--inverted:hover {
  background: rgba(248, 198, 22, 0.12);
  border-color: var(--gold);
  color: var(--white);
}

.reviews-slider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviews-track-wrap {
  overflow: hidden;
  min-width: 0;
  flex: 1;
}
.reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.15rem 0.85rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.reviews-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.reviews-arrow svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.review-card {
  flex: 0 0 min(88vw, 320px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}
.review-card--tall { min-height: 260px; }
.review-card--light {
  background: var(--white);
  border-color: var(--border);
  min-height: 220px;
}
.review-card__stars {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.85rem;
}
.review-card blockquote {
  margin: 0 0 0.85rem;
  flex: 1;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.review-card--light blockquote { color: var(--ink); }
.review-card cite {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}
.review-card--light cite { color: var(--muted); }
.reviews-section-foot {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 0.875rem;
}
.reviews-section-foot a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}
.reviews-section-foot a:hover { color: var(--gold-light); }
.reviews-slider--page { margin-bottom: 1.5rem; }
.reviews-slider--page .reviews-arrow {
  border-color: var(--border);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.reviews-slider--page .reviews-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.review-stars {
  letter-spacing: 0.08em;
  color: var(--gold);
  font-size: 0.8rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .reviews-arrow {
    width: 2.35rem;
    height: 2.35rem;
  }
  .reviews-slider { gap: 0.45rem; }
  .review-card,
  .review-card--tall {
    flex: 0 0 min(84vw, 300px);
    min-height: 0;
  }
}

@media (min-width: 768px) {
  .review-card { flex: 0 0 calc((100% - 1rem) / 2); }
}
@media (min-width: 1100px) {
  .review-card { flex: 0 0 calc((100% - 2rem) / 3); }
}

/* Sections */
.section { padding: 3rem 0; }
@media (max-width: 767px) {
  .section { padding: 2.25rem 0; }
}
.section-tag {
  display: inline-block; margin: 0 0 0.5rem; font-size: 0.6875rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 0.25rem 0.5rem; border-radius: var(--radius-sm);
}
.section h2 {
  margin: 0 0 1.25rem; font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
}
.section-intro {
  margin: 0 auto 2rem; max-width: 40rem; text-align: center;
}
.section-intro-lead { margin: 0.5rem auto 0; color: var(--muted); font-size: 1rem; max-width: 36rem; }
.section > .container > .section-tag {
  display: block; width: fit-content; margin-left: auto; margin-right: auto;
}
.section > .container > .section-tag + h2,
.section-intro h2 { text-align: center; }
.lead-section { background: var(--cream); }
.prose { max-width: 46rem; color: var(--muted); font-size: 1.02rem; }
.prose p { margin: 0; }

/* Service blocks */
.services-stack { background: var(--white); }
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  align-items: center; padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block-reverse .service-block-copy { order: 2; }
.service-block-reverse .service-block-media { order: 1; }
.service-block-copy h2 { margin: 0 0 0.75rem; font-size: 1.35rem; font-weight: 800; }
.service-block-title {
  display: flex; align-items: flex-start; flex-wrap: wrap; gap: 0.55rem;
  margin: 0 0 0.75rem; font-size: 1.35rem; font-weight: 800; line-height: 1.25;
}
.service-block-title svg { width: 1.35rem; height: 1.35rem; flex-shrink: 0; color: var(--red); }
.service-block-copy h2::after { display: none; }
.service-block-copy p { margin: 0; color: var(--muted); }
.service-block-media {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.service-block-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.service-block-text { grid-template-columns: 1fr; }
.service-block-text h2,
.service-block-text .service-block-title { margin: 0 0 0.65rem; font-size: 1.35rem; }
.service-block-text p { margin: 0; color: var(--muted); max-width: 46rem; }

.service-blocks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--border);
}
.service-blocks-grid .service-block-text {
  display: block;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--cream);
}
.service-blocks-grid .service-block-text .service-block-title {
  font-size: 1.05rem;
  line-height: 1.3;
}
.service-blocks-grid .service-block-text p {
  max-width: none;
  font-size: 0.9375rem;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .service-blocks-grid { grid-template-columns: 1fr; }
  .service-block,
  .service-block-reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.75rem 0;
  }
  .service-block-reverse .service-block-copy,
  .service-block-reverse .service-block-media { order: unset; }
  .service-block-media img { aspect-ratio: 4 / 3; }
}

/* Why */
.why-section { background: var(--cream); }

.before-after-section {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.before-after-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}
.before-after-section::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: min(42rem, 70vw);
  height: min(42rem, 70vw);
  background: radial-gradient(circle, rgba(248, 198, 22, 0.1) 0%, transparent 68%);
  pointer-events: none;
}
.before-after-section > .container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
}
.before-after-head {
  max-width: 36rem;
  margin: 0 auto 2rem;
  text-align: center;
}
.before-after-tag {
  margin-left: auto !important;
  margin-right: auto !important;
}
.before-after-section h2 {
  margin-bottom: 0.65rem;
  color: var(--white);
  text-align: center;
}
.before-after-lead {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.before-after-pair {
  margin: 0;
  padding: 0.75rem 0.6rem 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.before-after-pair:hover {
  border-color: rgba(248, 198, 22, 0.35);
  transform: translateY(-3px);
}
.before-after-pair figcaption {
  margin: 0 0 0.75rem;
  padding-bottom: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  position: relative;
}
.before-after-images::after {
  content: "→";
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.before-after-item { min-width: 0; }
.before-after-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.before-after-label--before { color: rgba(255, 255, 255, 0.42); }
.before-after-label--after { color: var(--gold); }
.before-after-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 9.5rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.before-after-item--after img {
  border-color: rgba(248, 198, 22, 0.35);
}
@media (min-width: 768px) {
  .before-after-images img { min-height: 11.5rem; }
}
@media (max-width: 767px) {
  .before-after-grid { grid-template-columns: 1fr; max-width: 28rem; margin-inline: auto; }
  .before-after-images img { min-height: 10.5rem; }
}
.why-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.why-card {
  padding: 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.why-card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; margin-bottom: 0.65rem;
  background: var(--gold-bg); border: 1px solid var(--gold); border-radius: var(--radius);
}
.why-card-icon svg { width: 1.1rem; height: 1.1rem; color: var(--red); }
.why-card-icon .site-icon--solid { color: var(--gold-dark); }
.why-card-icon .site-icon-pin { width: 1.25rem; height: 1.25rem; }
.why-card h3 { margin: 0 0 0.5rem; font-size: 0.9375rem; font-weight: 800; }
.why-card p { margin: 0; font-size: 0.875rem; color: var(--muted); }

@media (max-width: 767px) { .why-cards { grid-template-columns: 1fr; } }

/* Process */
.process-section { background: var(--white); }
.process-steps {
  margin: 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  counter-reset: process;
}
.process-steps li {
  padding: 1.15rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.875rem; color: var(--muted);
  counter-increment: process; position: relative; padding-top: 3.35rem;
}
.process-step-icon {
  position: absolute; top: 0.85rem; right: 0.85rem;
  width: 1.75rem; height: 1.75rem; color: var(--gold-dark);
}
.process-steps li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute; top: 0.85rem; left: 0.85rem;
  font-size: 0.75rem; font-weight: 800; color: var(--ink);
  background: var(--gold); padding: 0.2rem 0.45rem; border-radius: var(--radius-sm);
}
.process-steps strong { display: block; margin-bottom: 0.35rem; color: var(--ink); }

@media (max-width: 767px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* Areas */
.areas-section { background: var(--warm); }
.areas-section--bg {
  position: relative;
  background-color: var(--ink);
  background-image: var(--areas-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.areas-section--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.84) 0%,
    rgba(26, 26, 26, 0.72) 50%,
    rgba(26, 26, 26, 0.86) 100%
  );
  pointer-events: none;
}
.areas-section--bg > .container {
  position: relative;
  z-index: 1;
}
.areas-section--bg h2 {
  color: var(--white);
}
.areas-section--bg .prose {
  color: rgba(255, 255, 255, 0.88);
}
.areas-section--bg .prose a {
  color: var(--gold-light);
  font-weight: 700;
}
.areas-section--bg .prose a:hover {
  color: var(--gold);
}
.areas-section--bg .area-pill,
.areas-section--bg .area-pill-link {
  background: var(--white);
  color: var(--ink);
  border-color: var(--gold);
}
.areas-section--bg .area-pill-link:hover {
  background: var(--gold);
  color: var(--ink);
}
.areas-section > .container > .prose { text-align: center; margin-inline: auto; }
.area-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; justify-content: center; }
.area-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.45rem 0.85rem; font-size: 0.8125rem; font-weight: 600;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--muted); transition: background 0.2s, border-color 0.2s;
}
.area-pill:hover { border-color: var(--gold); background: var(--gold-soft); }
.area-pill-link {
  color: var(--ink); text-decoration: none; border-color: var(--gold); background: var(--gold-soft);
}
.area-pill .site-icon-pin { width: 0.85rem; height: 0.85rem; }
.footer-nap-line {
  display: flex; align-items: center; gap: 0.45rem; margin: 0 0 0.35rem;
  font-size: 0.9375rem; line-height: 1.5;
}
.footer-nap-line:last-child { margin-bottom: 0; }
.footer-nap-line svg { width: 1rem; height: 1rem; margin-top: 0; flex-shrink: 0; color: var(--gold); }
.footer-nap-line .site-icon-pin,
.footer-nap-pin { width: 1rem; height: 1rem; margin-top: 0; flex-shrink: 0; }
.footer-nap-line--address {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: start;
}
.footer-nap-line--address .footer-nap-pin,
.footer-nap-line--address .site-icon-pin {
  margin-top: 0.2rem;
}
.footer-licensed {
  display: flex; align-items: center; gap: 0.4rem;
  margin: 0; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.55);
}
.footer-licensed svg { width: 0.9rem; height: 0.9rem; flex-shrink: 0; color: var(--gold); }
.area-pill-link:hover { background: var(--gold); color: var(--ink); }

/* FAQ */
.faq-section { background: var(--white); }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 0.5rem; background: var(--cream); overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.1rem; font-weight: 700; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold-dark); font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 1.1rem 1rem; font-size: 0.9375rem; color: var(--muted); }

/* CTA NAP */
.cta-nap { background: var(--gold-bg); text-align: center; border-top: 1px solid var(--border); }
.cta-nap-inner { max-width: 40rem; margin-inline: auto; }
.cta-nap-inner .section-tag {
  display: inline-block; margin-left: auto; margin-right: auto;
}
.cta-nap-inner h2 { margin-bottom: 0.75rem; }
.cta-nap-inner p { color: var(--muted); margin: 0 0 0.75rem; }
.cta-nap-line { font-size: 0.9375rem; }

/* Footer */
.site-footer {
  background: #2d2d2d; color: rgba(255, 255, 255, 0.85); padding: 2.25rem 0 0;
}
.footer-logo-row {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem;
}
.footer-brand-name { font-size: 1.05rem; color: var(--white); }
.footer-logo-mark { height: 36px; width: auto; display: block; object-fit: contain; border-radius: var(--radius-sm); }
.footer-shell { padding-bottom: 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 17rem);
  gap: 2rem 3rem;
  align-items: start;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--gold);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}
@media (min-width: 768px) {
  .footer-shell {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 0;
  }
  .footer-top {
    grid-column: 1 / -1;
    grid-template-columns: subgrid;
    gap: 0;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    grid-column: 1 / 3;
    max-width: 22rem;
  }
  .footer-contact {
    grid-column: 3 / 5;
    min-width: 0;
  }
  .footer-nav {
    grid-column: 1 / -1;
    grid-template-columns: subgrid;
    gap: 0;
  }
}
@media (min-width: 1024px) {
  .footer-shell {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 2rem;
  }
}
.footer-brand { max-width: 20rem; }
.footer-tagline {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}
@media (min-width: 768px) {
  .footer-contact {
    justify-self: start;
    text-align: left;
    width: 100%;
  }
  .footer-contact .footer-nap-line {
    justify-content: flex-start;
  }
  .footer-contact .footer-social--icons {
    justify-content: flex-start;
  }
}
.footer-contact .footer-nap-block {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.55;
}
.footer-col { min-width: 0; }
.footer-nap-block { margin: 0 0 0.75rem; line-height: 1.7; font-size: 0.9375rem; }
.footer-nap-block a { color: rgba(255, 255, 255, 0.8); text-decoration: none; overflow-wrap: anywhere; }
.footer-nap-block a:hover { color: var(--gold); }
.footer-heading {
  margin: 0 0 0.65rem; font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--white);
}
.footer-heading-pin,
.footer-nap-pin {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-heading-pin { display: none; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links a {
  display: block; padding: 0.2rem 0; font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7); text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-links--areas a { color: rgba(255, 255, 255, 0.7); }
.footer-areas { margin: 0; font-size: 0.875rem; line-height: 1.7; color: rgba(255, 255, 255, 0.7); }
.footer-areas a { color: rgba(255, 255, 255, 0.85); }
.footer-cta-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  padding: 1.15rem 0;
}
.footer-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-cta-text {
  margin: 0; font-size: 0.9375rem; font-weight: 700; color: var(--white);
}
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom { padding: 1rem 0 1.25rem; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.45);
}
.footer-bottom-meta { color: rgba(255, 255, 255, 0.38) !important; }

@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-brand { max-width: none; }
  .footer-nav { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 767px) {
  .site-footer { text-align: center; }
  .footer-top,
  .footer-nav,
  .footer-col,
  .footer-brand,
  .footer-contact { text-align: center; }
  .footer-top { gap: 1.25rem; padding-bottom: 1.25rem; margin-bottom: 1.25rem; }
  .footer-brand { max-width: none; }
  .footer-contact {
    justify-self: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-nav { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-logo-row { justify-content: center; }
  .footer-tagline { margin-inline: auto; }
  .footer-heading--contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
  }
  .footer-heading-pin { display: block; }
  .footer-nap-pin { display: none; }
  .footer-contact .footer-nap-block {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-inline: auto;
    max-width: none;
    text-align: left;
  }
  .footer-contact .footer-nap-line {
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    max-width: none;
    margin-inline: 0;
  }
  .footer-nap-line--address {
    display: block;
    max-width: 16rem;
    line-height: 1.5;
  }
  .footer-contact .footer-social--icons { justify-content: center; }
  .footer-heading { margin-bottom: 0.5rem; }
  .footer-links a { padding: 0.28rem 0; }
  .footer-cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-cta-actions { justify-content: center; width: 100%; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Mobile action bar - Call (red) + Quote (yellow) */
.mobile-action-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  grid-template-columns: 1fr 1fr; border-top: 2px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}
.mobile-bar-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.95rem 0.75rem; font-size: 0.875rem; font-weight: 800;
  text-decoration: none; border: none;
}
.mobile-bar-call { background: var(--red); color: var(--white); font-size: 0.8125rem; }
.mobile-bar-call:hover { background: var(--red-dark); color: var(--white); }
@media (max-width: 380px) {
  .mobile-bar-call { font-size: 0.72rem; letter-spacing: -0.01em; }
}
.mobile-bar-quote { background: var(--gold); color: var(--ink); }
.mobile-bar-quote:hover { background: var(--gold-dark); color: var(--ink); }
@media (max-width: 767px) {
  .mobile-action-bar { display: grid; }
  body { padding-bottom: 3.5rem; }
  .footer-cta-actions .btn { width: 100%; max-width: 18rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* Inner pages */
.breadcrumbs {
  padding: 0.85rem 0 0; font-size: 0.8125rem; color: var(--muted);
}
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: 0.35rem; list-style: none; margin: 0; padding: 0;
}
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 0.35rem; color: var(--gold-dark); }
.breadcrumbs a { color: var(--muted); text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { color: var(--gold-dark); }

.page-hero { padding: 1.5rem 0 0; background: var(--gold-bg); }
.page-hero-inner { max-width: 46rem; padding-bottom: 1.5rem; }
.page-hero-inner h1 {
  margin: 0 0 1rem; font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
}
.page-hero-lead { margin: 0 0 1.25rem; color: var(--muted); font-size: 1.02rem; }
.page-hero-lead a { font-weight: 700; color: var(--red); }
.page-hero-btns { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* Inner page hero - image first, shorter height */
.page-hero-v2 {
  padding: 0 0 1.5rem;
  background: var(--gold-bg);
}
.page-hero-photo {
  margin: 0;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.page-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 32 / 7;
  max-height: 168px;
  object-fit: cover;
  object-position: center 22%;
}
@media (min-width: 1200px) {
  .page-hero-photo img {
    aspect-ratio: 28 / 6;
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .page-hero-photo img {
    aspect-ratio: 21 / 8;
    max-height: 160px;
  }
  .page-hero-v2 { padding-bottom: 1rem; }
  .page-hero-grid { padding-top: 1rem; }
  .content-block { padding: 2rem 0; }
  .quote-page { padding: 1.5rem 0 2.5rem; }
  .quote-page-hero img,
  .reviews-page-hero img,
  .hero-photo img,
  .content-block-media img {
    aspect-ratio: 16 / 9;
    max-height: none;
  }
  .quote-page-card { padding: 1.15rem; margin-inline: 0; }
  .contact-hero { padding: 2.25rem 0 2rem; }
  .contact-main { padding: 2rem 0 2.5rem; }
  .trust-strip-inner { gap: 0.5rem; }
  .trust-pill { font-size: 0.75rem; padding: 0.45rem 0.75rem; }
  .paint-brands-inner { gap: 1rem 2rem; }
  .area-pills { justify-content: center; }
}
.page-hero-grid {
  padding-top: 1.5rem;
}
.page-hero-copy {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.page-hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.page-hero-copy .page-hero-lead {
  margin: 0;
  max-width: none;
  line-height: 1.65;
}
.page-hero-aside { display: none; }

/* Inner page content + sticky sidebar form (BKCAP-style) */
.page-content-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 2rem;
}
.page-content-main { min-width: 0; }
.page-sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.page-sidebar .quote-card {
  position: static;
  max-height: none;
  overflow: visible;
  flex-shrink: 0;
}
.page-toc {
  flex: 0 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
}
.page-toc-label {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-toc-list li + li { margin-top: 0.3rem; }
.page-toc-list a {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  line-height: 1.35;
}
.page-toc-list a:hover {
  color: var(--ink);
  background: var(--gold-soft);
}
.page-content-main [id] {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}
.sidebar-quote-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.sidebar-quote-trust { min-width: 0; flex: 1; }
.sidebar-quote-trust .form-rating-combined { gap: 0; }
.sidebar-quote-trust .form-rating-logos {
  width: 2.55rem;
  height: 1.45rem;
}
.sidebar-quote-trust .form-logo-orb {
  width: 1.35rem;
  height: 1.35rem;
}
.sidebar-quote-trust .form-logo-orb-google { left: 0.95rem; }
.sidebar-quote-trust .form-rating-logo {
  width: 0.8rem;
  height: 0.8rem;
}
.sidebar-quote-meta {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}
.sidebar-quote-call {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
}
.sidebar-quote-call a { font-weight: 700; color: var(--red); }

@media (min-width: 768px) {
  .page-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(280px, 30%);
    gap: 1.5rem;
    align-items: start;
  }
  .page-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 0.75rem);
    align-self: start;
    z-index: 2;
    max-height: none;
    overflow: visible;
    gap: 0.45rem;
  }
  .page-sidebar .quote-card {
    padding: 0.75rem 0.8rem 0.85rem;
  }
  .page-sidebar .sidebar-quote-head {
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    padding-bottom: 0.55rem;
  }
  .page-sidebar .sidebar-portrait {
    width: 44px;
    height: 44px;
  }
  .page-sidebar .sidebar-quote-trust .form-rating-logos {
    width: 2.4rem;
    height: 1.35rem;
  }
  .page-sidebar .sidebar-quote-trust .form-logo-orb {
    width: 1.25rem;
    height: 1.25rem;
  }
  .page-sidebar .sidebar-quote-trust .form-logo-orb-google { left: 0.9rem; }
  .page-sidebar .sidebar-quote-trust .form-rating-logo {
    width: 0.72rem;
    height: 0.72rem;
  }
  .page-sidebar .sidebar-quote-meta {
    margin-top: 0.2rem;
    font-size: 0.625rem;
  }
  .page-sidebar .quote-card-title {
    margin: 0 0 0.5rem;
    font-size: 0.9375rem;
  }
  .page-sidebar .field {
    margin-bottom: 0.4rem;
  }
  .page-sidebar .field span {
    margin-bottom: 0.15rem;
    font-size: 0.6875rem;
  }
  .page-sidebar .field input,
  .page-sidebar .field select {
    padding: 0.4rem 0.55rem;
    font-size: 0.8125rem;
  }
  .page-sidebar .quote-form .btn {
    padding: 0.55rem 0.75rem;
    font-size: 0.8125rem;
  }
  .page-sidebar .sidebar-quote-call {
    margin-top: 0.5rem;
    font-size: 0.6875rem;
  }
  .page-toc {
    padding: 0.4rem 0.5rem 0.45rem;
    overflow: visible;
    flex: 0 0 auto;
  }
  .page-toc-label {
    margin: 0 0 0.25rem;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }
  .page-toc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.02rem 0.25rem;
  }
  .page-toc-list li + li { margin-top: 0; }
  .page-toc-list a {
    padding: 0.1rem 0.25rem;
    font-size: 0.5625rem;
    font-weight: 600;
    line-height: 1.15;
  }
}
@media (min-width: 1024px) {
  .page-content-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
  }
  .page-sidebar .quote-card {
    padding: 0.85rem 0.9rem 0.95rem;
  }
  .page-sidebar .sidebar-portrait {
    width: 52px;
    height: 52px;
  }
  .page-sidebar .quote-card-title {
    font-size: 1rem;
  }
  .page-sidebar .field input,
  .page-sidebar .field select {
    padding: 0.45rem 0.6rem;
    font-size: 0.875rem;
  }
  .page-toc-list a {
    font-size: 0.625rem;
    padding: 0.12rem 0.3rem;
  }
}

/* Short desktop viewports: keep sticky sidebar compact, no inner scroll */
@media (min-width: 768px) and (max-height: 820px) {
  .page-sidebar {
    top: calc(var(--header-h) + 0.5rem);
    gap: 0.35rem;
  }
  .page-sidebar .quote-card {
    padding: 0.55rem 0.65rem 0.65rem;
  }
  .page-sidebar .sidebar-quote-head {
    gap: 0.45rem;
    margin-bottom: 0.4rem;
    padding-bottom: 0.4rem;
  }
  .page-sidebar .sidebar-portrait {
    width: 36px;
    height: 36px;
  }
  .page-sidebar .sidebar-quote-trust .form-rating-logos {
    width: 2.2rem;
    height: 1.25rem;
  }
  .page-sidebar .sidebar-quote-trust .form-logo-orb {
    width: 1.15rem;
    height: 1.15rem;
  }
  .page-sidebar .sidebar-quote-trust .form-logo-orb-google { left: 0.8rem; }
  .page-sidebar .sidebar-quote-trust .form-rating-logo {
    width: 0.65rem;
    height: 0.65rem;
  }
  .page-sidebar .sidebar-quote-meta {
    font-size: 0.5625rem;
  }
  .page-sidebar .quote-card-title {
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
  }
  .page-sidebar .field {
    margin-bottom: 0.28rem;
  }
  .page-sidebar .field span {
    margin-bottom: 0.1rem;
    font-size: 0.625rem;
  }
  .page-sidebar .field input,
  .page-sidebar .field select {
    padding: 0.3rem 0.45rem;
    font-size: 0.75rem;
  }
  .page-sidebar .quote-form .btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }
  .page-sidebar .sidebar-quote-call {
    margin-top: 0.35rem;
    font-size: 0.625rem;
  }
  .page-toc {
    padding: 0.3rem 0.4rem 0.35rem;
  }
  .page-toc-label {
    margin-bottom: 0.15rem;
    font-size: 0.5rem;
  }
  .page-toc-list a {
    padding: 0.05rem 0.2rem;
    font-size: 0.5rem;
  }
}

@media (max-width: 767px) {
  .page-content-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .page-sidebar {
    display: contents;
    max-height: none;
    overflow: visible;
  }
  .page-toc {
    order: -1;
    margin-bottom: 1rem;
    flex: none;
    overflow: visible;
  }
  .page-content-main { order: 1; }
  .page-sidebar .sidebar-quote {
    order: 2;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.content-block { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.content-block:last-of-type { border-bottom: none; }
.content-block h2 {
  margin: 0 0 1rem; font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800; line-height: 1.2;
}
.content-block p { margin: 0 0 1rem; color: var(--muted); max-width: 46rem; }
.content-block p:last-child { margin-bottom: 0; }

.content-block-media {
  margin: 2rem 0 0; border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--gold-soft);
}
.content-block-media img { width: 100%; aspect-ratio: 21 / 7; max-height: 340px; object-fit: cover; }
img[src*="team-three-painters-house"] {
  object-position: center 18%;
}
img[src*="exterior-painting-team"] {
  object-position: 88% 82%;
}
img[src*="leo-posing-truck"],
.page-hero-photo img[src*="leo-posing-truck"],
.quote-page-hero img[src*="leo-posing-truck"],
.reviews-page-hero img[src*="leo-posing-truck"] {
  object-position: center top;
}
.page-hero-photo img[src*="team-three-painters-house"] {
  object-position: center 15%;
}
.page-hero-photo img[src*="exterior-painting-team"],
.quote-page-hero img[src*="exterior-painting-team"],
.reviews-page-hero img[src*="exterior-painting-team"],
.lp-form-banner img[src*="exterior-painting-team"] {
  object-position: 90% 78%;
}
.page-hero-photo img[src*="interior-painting-team"] {
  object-position: center 28%;
}
.page-hero-photo img[src*="team-branded-van"],
.page-hero-photo img[src*="team-pic"] {
  object-position: center 20%;
}
.page-hero-photo img[src*="after-house-1"],
.page-hero-photo img[src*="after-house-2"],
.page-hero-photo img[src*="after-house-3"],
.page-hero-photo img[src*="after-house-4"],
.page-hero-photo img[src*="before-house-3"],
.page-hero-photo img[src*="before-house-4"],
.page-hero-photo img[src*="deck-after-1"],
.page-hero-photo img[src*="exterior-job-pickup"] {
  object-position: center 40%;
}
.page-hero-photo img[src*="photos/areas/"] {
  object-position: center 35%;
}
.page-hero-photo img[src*="photos/services/"] {
  object-position: center 40%;
}

.page-hero-photo img[src*="painting-inside-1"] {
  object-position: center 45%;
}


.service-detail-list { margin: 1rem 0 0; padding: 0; list-style: none; }
.service-detail-list li {
  padding: 1rem 1rem 1rem 3.25rem; margin-bottom: 0.5rem; background: var(--cream);
  border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--radius);
  position: relative;
}
.service-detail-list svg.site-icon {
  position: absolute; left: 0.85rem; top: 1rem;
  width: 1.25rem; height: 1.25rem; color: var(--red);
}
.service-detail-list h3 { margin: 0 0 0.35rem; font-size: 0.9375rem; font-weight: 800; }
.service-detail-list p { margin: 0; font-size: 0.875rem; color: var(--muted); }

.tips-list {
  margin: 0; padding: 0; list-style: none; counter-reset: tips;
}
.tips-list li {
  counter-increment: tips; position: relative; padding: 1rem 1rem 1rem 3rem;
  margin-bottom: 0.5rem; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.9375rem; color: var(--muted);
}
.tips-list li::before {
  content: counter(tips); position: absolute; left: 0.85rem; top: 1rem;
  width: 1.5rem; height: 1.5rem; display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--ink); font-size: 0.75rem; font-weight: 800;
  border-radius: var(--radius-sm);
}

.review-highlight {
  margin: 1.5rem 0 0; padding: 1.25rem 1.5rem; background: var(--gold-bg);
  border: 2px solid var(--gold); border-radius: var(--radius);
}
.review-highlight p { margin: 0; font-style: italic; color: var(--muted); }

.map-embed {
  margin: 1.5rem 0 0; border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--border); background: var(--cream); min-height: 280px;
}
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

/* Hub directory pages (/services/, /areas/) */
.hub-page {
  padding: 0.5rem 0 2.5rem;
}
.hub-group {
  border-bottom: none;
  padding: 2rem 0 0.5rem;
}
.hub-group h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.hub-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-dark);
  color: inherit;
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.1);
}
.hub-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
}
.hub-card p {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: none;
}
.hub-card-cta {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--red);
}
.hub-card:hover .hub-card-cta { color: var(--red-dark); }
@media (max-width: 1023px) {
  .hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .hub-grid { grid-template-columns: 1fr; }
  .hub-page { padding-bottom: 1.5rem; }
}

.related-links {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 2.75rem 0 3rem;
}
.related-links .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.related-links h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 14rem));
  justify-content: center;
  gap: 1rem 1.25rem;
  width: 100%;
  max-width: 36rem;
  margin-top: 1.5rem;
}
.related-grid > div {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}
.related-grid h3 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.related-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}
.related-grid li { margin: 0; }
.related-grid span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}
.related-grid a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  line-height: 1.35;
}
.related-grid a:hover { color: var(--red-dark); text-decoration: underline; }
@media (max-width: 640px) {
  .related-links { padding: 2.25rem 0 2.5rem; }
  .related-grid {
    grid-template-columns: minmax(0, 18rem);
    max-width: 18rem;
  }
}

.quote-page { padding: 2rem 0 3rem; background: var(--gold-bg); }
.quote-page-hero {
  margin: 0 0 1.25rem;
}
.quote-page-hero img {
  width: 100%; aspect-ratio: 21 / 7; max-height: 280px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.quote-page-card {
  max-width: 420px; margin: 0 auto; background: var(--white);
  border: 2px solid var(--gold); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
.quote-page-card h1 { margin: 0 0 0.5rem; font-size: 1.5rem; font-weight: 800; }
.quote-page-lead { margin: 0 0 1.25rem; color: var(--muted); font-size: 0.9375rem; }
.quote-page-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0.75rem;
  margin: -0.5rem 0 1.25rem;
}
.reviews-page-hero { margin: 0 0 2rem; }
.reviews-page-hero img {
  width: 100%; aspect-ratio: 21 / 7; max-height: 280px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border);
}

/* Contact page (BKCAP-style) */
.contact-page { background: var(--cream); }
.contact-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2.25rem, 5vw, 3.25rem);
  background-color: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--contact-hero-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.28;
}
.contact-hero[style*="leo-posing-truck"]::before {
  background-position: center top;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(26, 26, 26, 0.94) 0%,
    rgba(26, 26, 26, 0.82) 48%,
    rgba(26, 26, 26, 0.72) 100%
  );
  pointer-events: none;
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}
.contact-hero-tag {
  margin-bottom: 0.65rem !important;
}
.contact-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.contact-hero-lead {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.contact-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  padding: 0.85rem 1rem;
  max-width: 24rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.contact-hero-trust__google {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.contact-hero-trust__body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}
.contact-hero-trust .review-stars-inline { color: var(--gold); font-size: 0.65rem; }
.contact-hero-trust__score {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.3;
}
.contact-hero-trust__score strong { color: var(--white); }
.contact-hero-trust__tagline {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}
.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.contact-main {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
.contact-info h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
}
.contact-info-lead {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}
.contact-details {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.65rem;
  padding: 1rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
}
.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  color: var(--red);
}
.contact-detail strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact-detail p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--ink);
}
.contact-detail a {
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.contact-detail a:hover { color: var(--red-dark); }
.contact-detail-note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}
.contact-social-link svg { width: 1rem; height: 1rem; }
.contact-social-link:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}
.contact-map { margin-top: 0; }
.contact-steps {
  margin-top: 1.5rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
}
.contact-steps h3 {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-steps ol {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
}
.contact-steps li + li { margin-top: 0.55rem; }
.contact-steps strong { color: var(--ink); }
.contact-form-wrap {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.contact-form-card {
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.1);
}
.contact-form-lead {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}
@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form-wrap {
    position: static;
    order: -1;
    max-width: none;
    width: auto;
    margin-inline: 0;
  }
  .contact-hero-inner { max-width: none; }
  .contact-hero-trust { max-width: none; }
}
@media (max-width: 767px) {
  .contact-hero { padding: 2.25rem 0 2rem; }
  .contact-hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .contact-detail { padding: 0.9rem; }
  .contact-map iframe { height: 260px; }
}

.reviews-page { padding: 2rem 0 3rem; }
.reviews-page .platform-badge-row { display: flex; justify-content: center; }
.reviews-summary {
  text-align: center; padding: 1.5rem; margin-bottom: 2rem;
  background: var(--gold-bg); border: 2px solid var(--gold); border-radius: var(--radius);
}
.reviews-summary strong {
  font-size: 1.5rem; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.45rem; margin-bottom: 0.5rem;
}
.reviews-summary-meta {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.65rem 1.15rem; font-size: 0.9375rem; color: var(--muted);
}
.reviews-trust-item {
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.reviews-trust-item svg { width: 0.95rem; height: 0.95rem; color: var(--gold-dark); }
.reviews-trust-item .site-icon--solid { color: var(--gold-dark); }

/* Reviews page */
.reviews-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.reviews-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/photos/team-pic.webp");
  background-position: center 40%;
  background-size: cover;
  opacity: 1;
}
.reviews-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.64) 0%,
    rgba(18, 18, 18, 0.74) 100%
  );
  pointer-events: none;
}
.reviews-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-inline: auto;
}
.reviews-hero-tag { margin-bottom: 0.65rem !important; }
.reviews-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.reviews-hero-lead {
  margin: 0 auto 1.35rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.reviews-hero-lead strong { color: var(--gold-light); }
.reviews-hero .contact-hero-trust {
  margin-inline: auto;
}
.reviews-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.reviews-page-main {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: var(--cream);
}
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.review-page-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review-page-card__head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}
.review-page-card blockquote {
  margin: 0 0 0.85rem;
  flex: 1;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.55;
  color: var(--ink);
}
.review-page-card cite {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--muted);
}
.reviews-page-foot {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted);
}
.reviews-page-foot a {
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.reviews-page-foot a:hover { color: var(--ink); }
@media (max-width: 767px) {
  .reviews-page-grid { grid-template-columns: 1fr; }
  .reviews-hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.reviews-grid blockquote {
  margin: 0; padding: 1rem; background: var(--white);
  border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--radius);
}
.reviews-grid p { margin: 0 0 0.65rem; font-size: 0.875rem; font-style: italic; color: var(--muted); }
.reviews-grid footer { font-size: 0.75rem; font-weight: 700; color: var(--ink); }
.reviews-widget-note {
  margin-top: 2rem; padding: 1rem; text-align: center; font-size: 0.875rem;
  color: var(--muted); background: var(--cream); border-radius: var(--radius);
}
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Google Ads landing pages */
.ad-landing .lp-header .desktop-nav,
.ad-landing .nav-toggle,
.ad-landing .nav-drawer { display: none !important; }
.ad-landing .mobile-action-bar { display: none !important; }
.ad-landing { padding-bottom: 0 !important; }
.ad-landing .lp-header .header-row {
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
  width: min(1440px, calc(100% - 1rem));
  padding: 0.5rem 0.5rem;
  min-width: 0;
}
.ad-landing .lp-header .logo {
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
}
.ad-landing .lp-header .logo-text {
  white-space: nowrap;
}
.ad-landing .lp-header-trust {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  flex: 0 1 auto;
  justify-content: flex-start;
  padding: 0.2rem 0.55rem;
}
.ad-landing .lp-header-google {
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  display: block;
}
.ad-landing .lp-header-trust-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  min-width: 0;
  line-height: 1.15;
}
.ad-landing .lp-header-stars {
  color: var(--gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.ad-landing .lp-header-trust-score {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}
.ad-landing .lp-header-trust-score strong {
  color: var(--ink);
}
.ad-landing .lp-header-trust-meta {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.ad-landing .lp-header-actions {
  display: flex !important;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0;
  flex-shrink: 0;
}
.ad-landing .lp-header-actions .header-cta {
  display: inline-flex !important;
}
.ad-landing .lp-header-cta-short { display: none; }
.ad-landing .lp-header-cta-full { display: inline; }
.ad-landing .lp-header-phone-full { display: inline; }
.ad-landing .lp-header-phone-short { display: none; }
@media (max-width: 767px) {
  .ad-landing .lp-header .logo-mark {
    height: 32px;
  }
  .ad-landing .lp-header .logo-text {
    font-size: 0.875rem;
  }
  .ad-landing .lp-header-trust {
    gap: 0.35rem;
    padding: 0.15rem 0.25rem;
    justify-content: flex-start;
    flex: 0 1 auto;
  }
  .ad-landing .lp-header .logo {
    flex: 1 1 0;
    justify-content: center;
  }
  .ad-landing .lp-header-google {
    width: 1.2rem;
    height: 1.2rem;
  }
  .ad-landing .lp-header-stars {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
  }
  .ad-landing .lp-header-trust-score {
    font-size: 0.625rem;
  }
  .ad-landing .lp-header-trust-meta {
    display: none;
  }
  .ad-landing .lp-header-actions .header-cta {
    padding: 0.45rem 0.55rem;
    font-size: 0.72rem;
    gap: 0.25rem;
  }
  .ad-landing .lp-header-actions .header-cta .site-icon {
    width: 14px;
    height: 14px;
  }
  .ad-landing .lp-header-cta-full { display: none; }
  .ad-landing .lp-header-cta-short { display: inline; }
  .ad-landing .lp-header-phone-full { display: none; }
  .ad-landing .lp-header-phone-short { display: inline; }
  .ad-landing .lp-header-actions .btn-call {
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
}
@media (max-width: 420px) {
  .ad-landing .lp-header .logo-text { display: none; }
}
.lp-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(3rem, 7vw, 4.75rem) 0;
  background: #1a1a1a;
  overflow: hidden;
}
.lp-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--lp-hero-bg);
  background-size: cover;
  background-position: center 35%;
}
.lp-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 14, 14, 0.84) 0%,
    rgba(14, 14, 14, 0.7) 48%,
    rgba(14, 14, 14, 0.58) 100%
  );
}
.lp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(320px, 100%);
  gap: 1.15rem;
  align-items: center;
  max-width: min(56rem, var(--container));
  width: var(--container);
  margin-inline: auto;
  min-width: 0;
}
.lp-hero-copy {
  min-width: 0;
}
.lp-hero-copy .section-tag {
  background: var(--gold);
  color: var(--ink);
  border: none;
}
.lp-hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.lp-hero-highlight {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.4;
}
.lp-hero-lead {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.lp-hero .lp-form-wrap,
.lp-final-cta .lp-form-wrap {
  max-width: 320px;
  width: 100%;
  justify-self: stretch;
}
.lp-hero .lp-form-card,
.lp-final-cta .lp-form-card {
  padding: 0.85rem 0.9rem 0.9rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.lp-hero .lp-form-banner,
.lp-final-cta .lp-form-banner {
  margin: -0.85rem -0.9rem 0.65rem;
}
.lp-hero .lp-form-banner img,
.lp-final-cta .lp-form-banner img {
  aspect-ratio: 2 / 1;
  max-height: 88px;
}
.lp-hero .sidebar-quote-head,
.lp-final-cta .sidebar-quote-head {
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}
.lp-hero .sidebar-portrait,
.lp-final-cta .sidebar-portrait {
  width: 44px;
  height: 44px;
}
.lp-hero .quote-card-title,
.lp-final-cta .quote-card-title {
  margin: 0.4rem 0 0.45rem;
  font-size: 0.98rem;
}
.lp-hero .quote-form-progress,
.lp-final-cta .quote-form-progress {
  margin-bottom: 0.5rem;
}
.lp-hero .quote-form-progress-label,
.lp-final-cta .quote-form-progress-label {
  font-size: 0.65rem;
}
.lp-hero .quote-form .field,
.lp-final-cta .quote-form .field {
  margin-bottom: 0.45rem;
}
.lp-hero .quote-form .field span,
.lp-final-cta .quote-form .field span {
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
}
.lp-hero .quote-form input,
.lp-hero .quote-form select,
.lp-final-cta .quote-form input,
.lp-final-cta .quote-form select {
  padding: 0.48rem 0.65rem;
  font-size: 0.8125rem;
}
.lp-hero .quote-form .btn,
.lp-final-cta .quote-form .btn {
  padding: 0.58rem 0.75rem;
  font-size: 0.8125rem;
}
.lp-hero .lp-form-secure,
.lp-hero .sidebar-quote-call,
.lp-final-cta .lp-form-secure,
.lp-final-cta .sidebar-quote-call {
  margin-top: 0.45rem;
  font-size: 0.68rem;
}
.lp-hero .sidebar-quote-meta,
.lp-final-cta .sidebar-quote-meta {
  font-size: 0.65rem;
}
.lp-hero .form-rating-score,
.lp-final-cta .form-rating-score {
  font-size: 0.7rem;
}
.lp-problem { background: var(--white); }
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}
.lp-problem-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  border-left: 3px solid var(--red);
  background: var(--cream);
}
.lp-card-icon {
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  line-height: 0;
  background: var(--cream);
  border: 1px solid var(--border);
}
.lp-inline-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  margin: 0;
  color: var(--red);
  stroke: currentColor;
  fill: none;
  overflow: visible;
}
.lp-inline-icon--solid {
  fill: currentColor;
  stroke: none;
  color: var(--gold-dark);
}
.lp-card-copy { min-width: 0; flex: 1; }
.lp-problem-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}
.lp-problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.lp-offer { background: var(--cream); }
.lp-offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}
.lp-offer-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  height: 100%;
  box-sizing: border-box;
}
.lp-offer-item .lp-card-icon {
  background: var(--gold-bg);
  border-color: transparent;
  margin-top: 0.1rem;
}
.lp-offer-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}
.lp-offer-item span {
  display: block;
  color: var(--ink);
  line-height: 1.5;
}
.lp-offer-cta-wrap {
  margin: 1.5rem 0 0;
  text-align: center;
}
.lp-gallery { background: var(--white); }
.lp-gallery-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
}
.lp-gallery-track-wrap {
  min-width: 0;
  overflow: hidden;
}
.lp-gallery-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.15rem 0.1rem 0.35rem;
}
.lp-gallery-track::-webkit-scrollbar { display: none; }
.lp-gallery-item {
  margin: 0;
  flex: 0 0 min(78%, 22rem);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  scroll-snap-align: start;
}
.lp-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.lp-gallery-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.lp-gallery-arrow:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  color: var(--ink);
}
.lp-gallery-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}
.lp-final-bullets {
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.lp-final-bullets li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}
.lp-final-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
}
.lp-form-wrap { position: relative; }
.lp-form-card { box-shadow: 0 14px 40px rgba(26, 26, 26, 0.1); }
.lp-form-banner {
  margin: -1.25rem -1.25rem 1rem;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.lp-form-banner img {
  width: 100%;
  aspect-ratio: 21 / 8;
  max-height: 200px;
  object-fit: cover;
}
.lp-form-banner img[src*="exterior-job-pickup"] {
  object-position: center 55%;
}
.lp-hero[style*="exterior-job-pickup"] .lp-hero-media,
.lp-final-cta[style*="exterior-job-pickup"] .lp-final-media {
  background-position: center 55%;
}
.lp-form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}
.lp-package-cta {
  white-space: nowrap;
}
.lp-package-cta-short { display: none; }
.lp-package-cta-full { display: inline; }
.lp-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}
.lp-package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lp-package-card--featured {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(248, 198, 22, 0.18);
}
.lp-package-photo {
  position: relative;
  margin: 0;
}
.lp-package-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.lp-package-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  padding: 0.3rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius-sm);
}
.lp-package-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}
.lp-package-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.lp-package-tagline {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}
.lp-package-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  flex: 1;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}
.lp-package-list li + li { margin-top: 0.35rem; }
.lp-steps { background: var(--cream); }
.lp-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.lp-step {
  display: flex;
  gap: 0.85rem;
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
}
.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--gold-bg);
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.lp-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}
.lp-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}
.lp-reviews .reviews-page-grid { margin-top: 0; }
.lp-reviews .reviews-page-foot a { color: var(--gold); }
.lp-final-cta {
  position: relative;
  isolation: isolate;
  background: #1a1a1a;
  overflow: hidden;
}
.lp-final-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--lp-final-bg);
  background-size: cover;
  background-position: center 45%;
}
.lp-final-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 14, 14, 0.78) 0%,
    rgba(14, 14, 14, 0.66) 48%,
    rgba(14, 14, 14, 0.58) 100%
  );
}
.lp-final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(320px, 100%);
  gap: 1.15rem;
  align-items: center;
  max-width: min(56rem, var(--container));
  width: var(--container);
  margin-inline: auto;
  min-width: 0;
}
.lp-final-copy {
  min-width: 0;
}
.lp-final-copy .section-tag {
  background: var(--gold);
  color: var(--ink);
  border: none;
}
.lp-final-cta .lp-form-card {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.lp-final-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
}
.lp-final-copy p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}
.lp-final-bullets li {
  color: var(--white);
}
.lp-final-cta .cta-nap-line {
  color: rgba(255, 255, 255, 0.86);
}
.lp-final-cta .cta-nap-line a {
  color: var(--gold);
}
@media (min-width: 768px) and (max-width: 1100px) {
  .lp-packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-offer-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .ad-landing {
    overflow-x: clip;
  }
  .lp-hero {
    padding: 2rem 0 2.25rem;
  }
  .lp-hero-grid,
  .lp-final-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .lp-hero-grid { align-items: stretch; }
  .lp-final-grid { align-items: stretch; }
  .lp-hero .lp-form-wrap,
  .lp-final-cta .lp-form-wrap {
    max-width: 100%;
    margin-inline: auto;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }
  .lp-form-wrap { max-width: 100%; margin-inline: auto; width: 100%; min-width: 0; }
  .lp-hero .lp-form-card,
  .lp-final-cta .lp-form-card {
    overflow: hidden;
  }
  .lp-hero-copy {
    text-align: center;
    padding-inline: 0;
  }
  .lp-hero-copy h1 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }
  .lp-hero-lead {
    font-size: 0.9375rem;
  }
  .lp-hero-badge {
    margin-inline: auto;
    max-width: 100%;
  }
  .lp-final-copy {
    text-align: left;
  }
  .lp-steps-list { grid-template-columns: 1fr; }
  .lp-packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
  .lp-package-body { padding: 0.85rem; }
  .lp-package-body h3 { font-size: 0.9375rem; }
  .lp-package-tagline { font-size: 0.75rem; }
  .lp-package-list { font-size: 0.75rem; margin-bottom: 0.75rem; }
  .lp-package-card .btn {
    font-size: 0.75rem;
    padding: 0.55rem 0.5rem;
    gap: 0.3rem;
  }
  .lp-package-cta .site-icon { display: none; }
  .lp-package-cta-full { display: none; }
  .lp-package-cta-short { display: inline; }
  .lp-problem-grid { grid-template-columns: 1fr; }
  .lp-offer-list { grid-template-columns: 1fr; }
  .lp-gallery-slider {
    gap: 0.35rem;
  }
  .lp-gallery-item { flex-basis: min(86%, 20rem); }
  .lp-gallery-arrow { width: 2.25rem; height: 2.25rem; }
  .lp-hero-media::after {
    background: rgba(18, 18, 18, 0.72);
  }
  .ad-landing .section > .container,
  .ad-landing .trust-strip .container {
    width: min(1080px, calc(100% - 1.5rem));
  }
}

