/* ============================================================
   Mauldin Plumbing & Heating
   Brand-token system, simplified. Slop-signal-free.
   Light + dark themes anchored to the MPH crest.
   ============================================================ */

:root {
  /* ---- BRAND TOKENS (constant) ---- */
  --brand-navy:    #1a2c54;
  --brand-red:     #b13a32;
  --brand-gold:    #c89a3a;
  --brand-cream:   #f5ecd7;

  /* ---- DARK THEME (default) ---- */
  --bg:            #0a0c10;
  --bg-soft:       #0f1218;
  --bg-alt:        #14171f;
  --bg-deep:       #06080c;
  --surface:       #161a23;
  --surface-2:     #1d212c;

  --line:          rgba(255, 255, 255, 0.08);
  --line-soft:     rgba(255, 255, 255, 0.04);
  --line-strong:   rgba(255, 255, 255, 0.16);

  --ink:           #ffffff;
  --ink-soft:      rgba(255, 255, 255, 0.78);
  --slate:         rgba(255, 255, 255, 0.58);
  --slate-light:   rgba(255, 255, 255, 0.42);

  --navy:          #1a2c54;
  --red:           #cc4438;
  --red-deep:      var(--brand-red);
  --gold:          #d4a347;
  --gold-soft:     #e6c97a;

  --map-filter:    invert(0.92) hue-rotate(180deg) saturate(0.6);

  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --max:           1240px;
  --pad:           clamp(1.125rem, 5vw, 2.5rem);
  --section-pad:   clamp(3.5rem, 8vw, 6.5rem);
  --nav-h:         72px;

  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     14px;

  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --dur-1: 160ms; --dur-2: 280ms;

  color-scheme:    dark;
}

[data-theme="light"] {
  --bg:            #ffffff;
  --bg-soft:       #f5f5f6;
  --bg-alt:        #ebecee;
  --bg-deep:       var(--brand-navy);
  --surface:       #ffffff;
  --surface-2:     #fafafa;

  --line:          rgba(15, 23, 41, 0.10);
  --line-soft:     rgba(15, 23, 41, 0.05);
  --line-strong:   rgba(15, 23, 41, 0.18);

  --ink:           #14213d;
  --ink-soft:      #2d3548;
  --slate:         #5e6678;
  --slate-light:   #8a92a5;

  --navy:          var(--brand-navy);
  --red:           var(--brand-red);
  --red-deep:      #962f28;
  --gold:          #a87f2c;
  --gold-soft:     var(--brand-gold);

  --map-filter:    none;

  color-scheme:    light;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
svg { display: block; max-width: 100%; }
/* Defensive: any inline SVG without explicit sizing renders at icon size, not browser default 300x150 */
svg:not([width]) { width: 1em; height: 1em; }
a { color: var(--red); text-decoration: none; -webkit-tap-highlight-color: transparent; }
a:hover { color: var(--red-deep); }
ul { list-style: none; }
::selection { background: var(--brand-red); color: #fff; }

/* ============================================================
   Type
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.display {
  font-size: clamp(2.25rem, 6.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(1.625rem, 3.8vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}
p { color: var(--ink-soft); font-size: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}
section { padding: var(--section-pad) 0; position: relative; }
section.tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
section.alt { background: var(--bg-soft); }

.section-head {
  max-width: 38rem;
  margin: 0 0 clamp(2rem, 5vw, 3rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 12px 0 10px; }
.section-head .lead { max-width: 36rem; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 24px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--dur-1) var(--ease), color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); background: var(--bg-soft); color: var(--ink); }
.btn-lg { height: 56px; padding: 0 28px; font-size: 1rem; }

/* ============================================================
   Nav
   ============================================================ */
nav.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-1) var(--ease);
}
nav.top.scrolled { border-bottom-color: var(--line); }
nav.top .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  line-height: 1.1;
  color: var(--ink);
  min-width: 0;
}
.brand:hover { color: var(--ink); }
.brand-mark { width: 42px; height: 46px; object-fit: contain; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand .name {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand .sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--slate);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav.top .links { display: none; gap: 28px; }
nav.top .links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 0;
  transition: color var(--dur-1) var(--ease);
}
nav.top .links a:hover,
nav.top .links a.active { color: var(--ink); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--dur-1) var(--ease);
}
.nav-cta:hover { background: var(--red-deep); color: #fff; }
.nav-cta svg { width: 14px; height: 14px; }

.theme-toggle {
  -webkit-appearance: none; appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--ink); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .ic-sun { display: block; }
.theme-toggle .ic-moon { display: none; }
[data-theme="light"] .theme-toggle .ic-sun { display: none; }
[data-theme="light"] .theme-toggle .ic-moon { display: block; }

.nav-burger {
  -webkit-appearance: none; appearance: none;
  background: transparent; border: 0;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-burger .bars { position: relative; width: 20px; height: 13px; }
.nav-burger .bars::before,
.nav-burger .bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  transition: transform var(--dur-2) var(--ease), top var(--dur-2) var(--ease), bottom var(--dur-2) var(--ease);
}
.nav-burger .bars::before { top: 2px; }
.nav-burger .bars::after  { bottom: 2px; }
body.menu-open .nav-burger .bars::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.menu-open .nav-burger .bars::after  { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (min-width: 900px) {
  nav.top .links { display: flex; }
  .nav-burger { display: none; }
}

/* Mobile drawer */
.menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-2) var(--ease);
  z-index: 70;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--bg);
  border-left: 1px solid var(--line);
  z-index: 71;
  transform: translateX(100%);
  transition: transform var(--dur-2) var(--ease);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + env(safe-area-inset-top) + 14px) 26px 26px;
  overflow-y: auto;
}
body.menu-open .menu-backdrop { opacity: 1; pointer-events: auto; }
body.menu-open .mobile-menu { transform: translateX(0); }
body.menu-open { overflow: hidden; }

.mobile-menu nav { display: flex; flex-direction: column; margin-top: 10px; }
.mobile-menu nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--dur-1) var(--ease);
}
.mobile-menu nav a:hover { color: var(--red); }
.mobile-menu .menu-cta {
  margin-top: 22px;
  background: var(--red);
  color: #fff;
  padding: 16px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
}
.mobile-menu .menu-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
}
.mobile-menu .menu-meta strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.mobile-menu .menu-meta a { color: var(--ink); }
@media (min-width: 900px) {
  .mobile-menu, .menu-backdrop { display: none; }
}

/* ============================================================
   Hero — simple, crest-anchored, no slop blobs
   ============================================================ */
.hero {
  background: var(--bg);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 22px;
}
.hero .lead {
  max-width: 44ch;
  margin-bottom: 28px;
}
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .cta-row .btn { width: 100%; }
@media (min-width: 480px) {
  .hero .cta-row .btn { width: auto; }
}
.hero-crest {
  display: flex;
  justify-content: center;
}
.hero-crest img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.25));
}
[data-theme="light"] .hero-crest img {
  filter: drop-shadow(0 10px 24px rgba(26, 44, 84, 0.15));
}
@media (min-width: 900px) {
  .hero .container { grid-template-columns: 1.3fr 1fr; gap: 64px; }
}

/* ============================================================
   Page header (interior)
   ============================================================ */
.page-header {
  background: var(--bg);
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 14px; }
.page-header h1 {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 22ch;
  margin-bottom: 14px;
}
.page-header .lead { max-width: 48ch; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--slate); transition: color var(--dur-1) var(--ease); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb svg { width: 12px; height: 12px; color: var(--slate-light); flex-shrink: 0; }

/* ============================================================
   Service tiles — simpler, less SaaS-looking
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.service-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.service-tile:hover {
  border-color: var(--gold);
  background: var(--surface-2);
}
.service-tile .ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
}
.service-tile .ic svg { width: 22px; height: 22px; }
.service-tile h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.service-tile .arrow {
  margin-left: auto;
  color: var(--slate);
  transition: transform var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
}
.service-tile:hover .arrow { color: var(--red); transform: translateX(3px); }
.service-tile .arrow svg { width: 18px; height: 18px; }

@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* Detail variant on services.html */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: 0; }
.service-detail .ic,
.service-detail .lead-ic {
  width: 48px; height: 48px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.service-detail .ic svg,
.service-detail .lead-ic svg { width: 24px; height: 24px; flex-shrink: 0; }
.service-detail h2 { margin-bottom: 12px; }
.service-detail .checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 24px;
  margin-top: 18px;
}
.service-detail .checklist li {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.service-detail .checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 5px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 8 7 11 12 5'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 720px) { .service-detail .checklist { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .service-detail { grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; } }

/* ============================================================
   About — split layout w/ crest image
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.about .photo {
  display: flex;
  justify-content: center;
}
.about .photo img.crest-display {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.25));
}
[data-theme="light"] .about .photo img.crest-display {
  filter: drop-shadow(0 10px 24px rgba(26, 44, 84, 0.15));
}
.about h2 { margin-bottom: 16px; max-width: 18ch; }
.about p { margin-bottom: 14px; max-width: 58ch; }
.about .stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  margin: 28px 0 12px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about .stat .num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
}
.about .stat .label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate);
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .about { grid-template-columns: 5fr 7fr; gap: 64px; }
}

/* ============================================================
   Emergency block (used on services + service-areas pages)
   ============================================================ */
.emergency-block {
  background: var(--bg-deep);
  color: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
}
[data-theme="light"] .emergency-block { background: var(--brand-navy); border-color: var(--brand-navy); }
.emergency-block .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  color: #fff;
  flex-shrink: 0;
}
.emergency-block .ic svg { width: 22px; height: 22px; flex-shrink: 0; }
.emergency-block .eyebrow { color: var(--gold-soft); margin-bottom: 14px; display: block; }
[data-theme="light"] .emergency-block .eyebrow { color: var(--brand-gold); }
.emergency-block h2 { color: #fff; max-width: 18ch; margin-bottom: 14px; }
.emergency-block p { color: rgba(255, 255, 255, 0.78); max-width: 44ch; margin-bottom: 24px; }

/* ============================================================
   Reviews — marquee carousel (adapted from spa)
   ============================================================ */
.reviews {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(26px, 5vw, 40px);
}
.reviews-head h2 { margin: 12px 0 12px; }
.reviews-head .stats {
  display: inline-flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  padding-top: 4px;
}
.reviews-head .stars { color: var(--gold); letter-spacing: 0.18em; font-size: 0.95rem; }

.reviews-wall {
  position: relative;
  overflow: hidden;
  margin: 0 calc(-1 * var(--pad));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 80px, #000 calc(100% - 80px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 80px, #000 calc(100% - 80px), transparent);
}
.marquee { overflow: hidden; padding: 6px 0; }
.marquee + .marquee { margin-top: 16px; }
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
.marquee-track.dir-left  { animation-name: marqueeLeft;  animation-duration: 60s; }
.marquee-track.dir-right { animation-name: marqueeRight; animation-duration: 75s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeLeft {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes marqueeRight {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

.review-card { flex: 0 0 clamp(280px, 28vw, 340px); }
.review-card .inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  position: relative;
  height: 100%;
  min-height: 210px;
  display: flex; flex-direction: column;
}
.review-card .inner::before {
  content: "\201C";
  position: absolute; top: 12px; right: 20px;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-wall { -webkit-mask-image: none; mask-image: none; margin: 0; }
  .marquee { overflow: visible; }
  .marquee-track { animation: none !important; flex-wrap: wrap; justify-content: center; width: 100%; }
  .marquee + .marquee { display: none; }
  .review-card { flex: 0 1 320px; }
  .review-card.dupe { display: none; }
}

.review-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--avatar-bg, var(--gold));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
}
.review-avatar.google::after {
  content: "";
  position: absolute;
  right: -3px; bottom: -3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%234285F4' d='M43.6 22.5c0-1.5-.1-2.6-.3-3.7H24v6.8h11.2c-.2 1.9-1.5 4.7-4.3 6.7l6.6 5.1c4-3.7 6.1-9.1 6.1-14.9z'/%3E%3Cpath fill='%2334A853' d='M24 44c5.6 0 10.3-1.8 13.7-5l-6.6-5.1c-1.8 1.2-4.2 2.1-7.1 2.1-5.4 0-10-3.6-11.6-8.5l-6.8 5.3C8.9 39.4 15.9 44 24 44z'/%3E%3Cpath fill='%23FBBC05' d='M12.4 27.5c-.4-1.2-.6-2.5-.6-3.8s.2-2.6.6-3.8L5.6 14.6C4.3 17.4 3.5 20.6 3.5 24c0 3.4.8 6.6 2.1 9.4l6.8-5.4-.0-0.5z'/%3E%3Cpath fill='%23EA4335' d='M24 11.4c3 0 5.1 1.3 6.3 2.4l5.8-5.6C32.3 4.7 28.6 3 24 3 15.9 3 8.9 7.6 5.6 14.6l6.8 5.3c1.6-4.9 6.2-8.5 11.6-8.5z'/%3E%3C/svg%3E") center/11px no-repeat;
  box-shadow: 0 0 0 2px var(--surface);
}
.review-avatar.angi::after {
  content: "A";
  position: absolute;
  right: -3px; bottom: -3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #f47c20;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  box-shadow: 0 0 0 2px var(--surface);
}
.review-meta { display: flex; flex-direction: column; min-width: 0; }
.review-meta .name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
}
.review-meta .platform {
  font-size: 0.7rem;
  color: var(--slate);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.review-card .stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.review-card .quote {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}

/* ============================================================
   Service areas
   ============================================================ */
.areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 8px;
}
.areas-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.areas-list li:hover { background: var(--surface-2); border-color: var(--gold); }
.areas-list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (min-width: 900px) { .areas { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: var(--map-filter);
}
@media (max-width: 760px) { .map-wrap iframe { height: 320px; } }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: start;
}
.contact-card .ic {
  width: 40px; height: 40px;
  background: var(--bg-soft);
  color: var(--red);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .ic svg { width: 20px; height: 20px; }
.contact-card h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.contact-card .val {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-card .val a { color: var(--ink); }
.contact-card .val a:hover { color: var(--red); }
.contact-card .phone-big {
  font-size: clamp(1.625rem, 3.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.contact-card .sub { font-size: 0.875rem; color: var(--slate); margin-top: 4px; }
@media (min-width: 760px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; } }

/* ============================================================
   CTA band — solid, no glow blobs
   ============================================================ */
.cta-band {
  background: var(--bg-deep);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}
[data-theme="light"] .cta-band { background: var(--brand-navy); }
.cta-band .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.625rem, 3.6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  max-width: 22ch;
}
.cta-band p { color: rgba(255, 255, 255, 0.72); max-width: 38ch; margin-top: 10px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.32); }
.cta-band .btn-outline:hover { color: #fff; background: rgba(255, 255, 255, 0.06); border-color: #fff; }
@media (min-width: 760px) {
  .cta-band .container { grid-template-columns: 1.4fr auto; gap: 40px; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}
.site-footer h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer-grid a { color: rgba(255, 255, 255, 0.72); transition: color var(--dur-1); }
.footer-grid a:hover { color: #fff; }
.footer-grid ul li { margin-bottom: 8px; font-size: 0.9375rem; }
.footer-brand .brand-mark { width: 54px; height: 58px; margin-bottom: 12px; }
.footer-brand .name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  display: block;
}
.footer-brand .sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  display: block;
}
.footer-brand p { max-width: 32ch; color: rgba(255, 255, 255, 0.58); margin-top: 12px; font-size: 0.9375rem; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
}

/* ============================================================
   Sticky mobile call bar
   ============================================================ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 15px 18px calc(15px + env(safe-area-inset-bottom));
  font-size: 0.9375rem;
  font-weight: 600;
  z-index: 60;
}
.sticky-call svg { width: 16px; height: 16px; vertical-align: -2px; margin-right: 8px; }
.sticky-call:hover { background: var(--red-deep); color: #fff; }
@media (max-width: 760px) {
  .sticky-call { display: block; }
  body { padding-bottom: 58px; }
}

.text-center { text-align: center; }
.muted { color: var(--slate); font-size: 0.875rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media print {
  nav.top, .site-footer, .sticky-call, .theme-toggle { display: none; }
  body, .hero { background: #fff; color: #000; }
}
