/* ==========================================================================
   Plumb Anything — Global stylesheet
   Neo-brutalism × Swiss editorial × Apple spacing
   Palette: #39479D blue · #FFFFFF · #000000 · #F2F2F2 · #202020
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --blue: #39479d;
  --blue-ink: #2a3778;
  --white: #ffffff;
  --black: #000000;
  --gray-050: #f7f7f7;
  --gray-100: #f2f2f2;
  --gray-200: #e5e5e5;
  --gray-800: #202020;

  --border: 2px solid var(--black);
  --border-thick: 3px solid var(--black);
  --shadow: 8px 8px 0 0 var(--black);
  --shadow-sm: 4px 4px 0 0 var(--black);
  --shadow-lg: 12px 12px 0 0 var(--black);
  --radius: 18px;
  --radius-sm: 10px;

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --max: 1200px;
  --pad: clamp(20px, 5vw, 40px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--black);
  background: var(--gray-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html, body { overflow-x: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 .5em;
  color: var(--black);
}
h1 { font-size: clamp(56px, 14vw, 132px); letter-spacing: -0.045em; }
h2 { font-size: clamp(36px, 6vw, 72px); }
h3 { font-size: clamp(24px, 3vw, 34px); }
h4 { font-size: clamp(18px, 2vw, 22px); }
p  { margin: 0 0 1em; }
.mono { font-family: var(--font-mono); letter-spacing: .02em; text-transform: uppercase; font-size: 12px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px; background: var(--black);
}

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: 24px; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 8px;
  background: var(--black); color: var(--white);
  padding: 10px 16px; border-radius: var(--radius-sm); z-index: 100;
}
.skip:focus { left: 8px; }

/* ---------- Top emergency banner ---------- */
.banner {
  background: var(--black); color: var(--white);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; text-align: center; padding: 10px 16px;
}
.banner a { color: var(--white); border-bottom: 1px solid currentColor; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--white);
  border-bottom: var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 14px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -0.02em; font-size: 20px;
}
.brand-mark {
  width: 56px; height: 56px; border-radius: 14px;
  display: block; overflow: hidden;
  border: var(--border-thick); box-shadow: 4px 4px 0 0 var(--black);
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.nav-links { display: none; }
.nav-links a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; padding: 8px 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { border-bottom-color: var(--black); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  border: var(--border); box-shadow: var(--shadow-sm);
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 700;
  transition: transform .12s ease, box-shadow .12s ease;
}
.nav-cta:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--black); }
.nav-toggle {
  background: var(--white); border: var(--border); border-radius: var(--radius-sm);
  padding: 8px 10px; display: inline-flex;
}
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-menu {
  display: none; background: var(--white); border-top: var(--border);
  padding: 12px var(--pad) 20px;
}
.mobile-menu[data-open="true"] { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0; border-bottom: 1px solid var(--gray-200);
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase;
}
@media (min-width: 960px) {
  .nav-links { display: flex; gap: 22px; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 26px; border: var(--border-thick); border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 700; letter-spacing: .02em;
  text-transform: uppercase; font-size: 16px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 56px;
}
.btn:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 0 var(--black); }
.btn:active { transform: translate(2px, 2px); box-shadow: 4px 4px 0 0 var(--black); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-ghost   { background: var(--white); color: var(--black); }
.btn-giant   { padding: 28px 34px; font-size: clamp(20px, 3vw, 28px); border-radius: 22px; }

/* Hero CTAs — single column on mobile, inline on desktop */
.hero-ctas { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
@media (min-width: 720px) {
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(32px, 6vw, 64px); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-meta span { display: inline-flex; gap: 6px; align-items: center; }
.hero-headline {
  font-size: clamp(2.6rem, 12vw, 9.25rem);
  letter-spacing: -0.05em; line-height: 0.86;
  margin: 0 0 2.5rem;
}
.hero-headline em { font-style: normal; color: var(--blue); }
.hero-grid {
  display: grid; gap: 1.5rem; margin-top: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; align-items: end; gap: 1.5rem; }
}
.hero-copy { font-family: var(--font-serif); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; max-width: 60ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }

/* Blueprint background */
.blueprint {
  position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background-image:
    linear-gradient(var(--black) 1px, transparent 1px),
    linear-gradient(90deg, var(--black) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 60%, transparent);
}

/* Trust row: 1-up on narrow phones, 2-up tablet, 4-up desktop */
.trust {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}
@media (min-width: 560px) { .trust { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .trust { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  background: var(--white); border: var(--border-thick);
  border-radius: var(--radius-sm); padding: 1.5rem;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; line-height: 1.3;
  box-shadow: 8px 8px 0 0 var(--black);
}
.trust-item strong { display: block; font-family: var(--font-display); font-size: 16px; letter-spacing: -0.01em; margin-top: 4px; }

/* ---------- Service cards ---------- */
.services-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .services-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .services-row { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--white); border: var(--border-thick);
  border-radius: 22px 22px var(--radius) var(--radius);
  padding: 1.5rem; box-shadow: 8px 8px 0 0 var(--black);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column; gap: 14px; min-height: 260px;
}
.card:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0 0 var(--black); }
.card--blue   { background: var(--blue); color: var(--white); }
.card--dark   { background: var(--gray-800); color: var(--white); }
.card--light  { background: var(--gray-100); }
.card .kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.card h3 { font-size: 28px; }
.card p  { font-family: var(--font-serif); font-size: 15px; }
.card .arrow {
  margin-top: auto; align-self: flex-end;
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid currentColor;
  display: grid; place-items: center;
  transition: transform .2s ease;
}
.card:hover .arrow { transform: rotate(-45deg); }

/* ---------- Section header ---------- */
.section-head {
  display: grid; gap: 18px; margin-bottom: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.2fr 1fr; align-items: end; }
}
.section-head h2 { margin: 0; }
.section-head p { font-family: var(--font-serif); font-size: 18px; max-width: 46ch; }

/* ---------- Reviews strip ---------- */
.reviews { background: var(--black); color: var(--white); }
.reviews h2 { color: var(--white); }
.review {
  background: var(--gray-800); border: 2px solid #333;
  border-radius: var(--radius); padding: 22px;
}
.review .stars { color: #ffd54a; letter-spacing: 2px; margin-bottom: 8px; }
.review p { font-family: var(--font-serif); font-size: 16px; }
.review cite {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-style: normal; opacity: .8;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--blue); color: var(--white);
  border-top: var(--border-thick); border-bottom: var(--border-thick);
}
.cta-band h2 { color: var(--white); }
.cta-band .btn-ghost { background: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--white); border-top: var(--border-thick);
  padding-block: 48px 32px;
}
.footer-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; }
.footer-grid a { display: block; padding: 4px 0; font-size: 14px; }
.footer-grid a:hover { text-decoration: underline; }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--gray-200);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; gap: 8px; padding: 10px;
  background: var(--white); border-top: var(--border);
}
.sticky-call a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border: var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; min-height: 48px;
}
.sticky-call .call { background: var(--blue); color: var(--white); }
.sticky-call .quote { background: var(--white); color: var(--black); }
@media (min-width: 960px) { .sticky-call { display: none; } }
body { padding-bottom: 76px; }
@media (min-width: 960px) { body { padding-bottom: 0; } }

/* ---------- Breadcrumbs ---------- */
.crumbs {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; padding-block: 18px; color: var(--gray-800);
}
.crumbs a { border-bottom: 1px solid transparent; }
.crumbs a:hover { border-bottom-color: currentColor; }
.crumbs [aria-current] { color: var(--black); }
.crumbs span { margin-inline: 8px; opacity: .5; }

/* ---------- Service / city page layouts ---------- */
.page-hero {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-bottom: var(--border);
}
.page-hero h1 { font-size: clamp(48px, 10vw, 104px); }
.page-hero .lede { font-family: var(--font-serif); font-size: clamp(18px, 2vw, 22px); max-width: 60ch; margin-top: 20px; }

.two-col { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1.5fr 1fr; gap: 56px; } }

.aside-card {
  background: var(--white); border: var(--border-thick);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
  position: sticky; top: 84px;
}
.aside-card h3 { font-size: 22px; }
.aside-card ul { list-style: none; padding: 0; margin: 12px 0 20px; }
.aside-card li { padding: 8px 0; border-bottom: 1px solid var(--gray-200); font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

.prose h2 { font-size: clamp(28px, 4vw, 44px); margin-top: 1.6em; }
.prose h3 { font-size: 24px; margin-top: 1.4em; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 6px; }

/* FAQ */
.faq details {
  background: var(--white); border: var(--border);
  border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  display: flex; justify-content: space-between; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: 12px; font-family: var(--font-serif); }

/* Map placeholder */
.map {
  border: var(--border-thick); border-radius: var(--radius);
  aspect-ratio: 16/10; background:
    repeating-linear-gradient(45deg, var(--gray-100) 0 12px, var(--gray-200) 12px 24px);
  display: grid; place-items: center; box-shadow: var(--shadow);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase;
}

/* Nearby cities chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: var(--border); border-radius: 999px; padding: 10px 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; background: var(--white);
  transition: background .15s ease, color .15s ease;
}
.chip:hover { background: var(--black); color: var(--white); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Heritage / 4th-generation brand elements ---------- */
.heritage-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--white);
  border: var(--border-thick); border-radius: 999px;
  padding: 10px 16px; box-shadow: var(--shadow-sm);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700;
  margin-bottom: 22px;
}
.heritage-pill svg { width: 16px; height: 16px; color: var(--blue); }

.hero-sub {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--black);
  margin: 20px 0 0; max-width: 52ch;
  border-left: 3px solid var(--blue); padding: 4px 0 4px 14px;
  line-height: 1.5;
}

.heritage-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  border: var(--border); box-shadow: 3px 3px 0 0 var(--black);
  padding: 8px 12px; border-radius: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700;
}
.heritage-badge svg { width: 14px; height: 14px; }
.heritage-badge strong {
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: -.01em; font-weight: 700;
}

.heritage-strip {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}

.gen-cards {
  display: grid; gap: 20px; grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 720px)  { .gen-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .gen-cards { grid-template-columns: repeat(4, 1fr); } }
.gen-card {
  background: var(--white); border: var(--border-thick);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.gen-card:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 0 var(--black); }
.gen-card .num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue); font-weight: 700;
}
.gen-card h3 { font-size: 22px; margin: 0; }
.gen-card p  { font-family: var(--font-serif); font-size: 15px; margin: 0; }

.pullquote {
  margin: 56px 0 0; padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 56px);
  background: var(--black); color: var(--white);
  border: var(--border-thick); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 5vw, 56px); letter-spacing: -.035em; line-height: 1.02;
}
.pullquote em { font-style: normal; color: var(--blue); }
.pullquote cite {
  display: block; margin-top: 22px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; font-style: normal; font-weight: 500;
  color: rgba(255,255,255,.7);
}

.heritage-note {
  display: flex; align-items: center; gap: 10px;
  margin: 20px 0 0; padding: 12px 14px;
  background: var(--white); border: var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase;
}
.heritage-note svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }

/* ---------- Quote band (full-width brand promise) ---------- */
.quote-band {
  background: #2C3C83; color: var(--white);
  border-top: 4px solid var(--black); border-bottom: 4px solid var(--black);
  padding-block: clamp(4rem, 8vw, 6.5rem);
  padding-inline: clamp(24px, 8vw, 80px);
  text-align: center;
}
.quote-band .container { max-width: 900px; padding-inline: 0; }
.quote-band .eyebrow {
  color: var(--white); font-family: "Space Mono", ui-monospace, SFMono-Regular, monospace;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  justify-content: center; opacity: .85;
}
.quote-band .eyebrow::before { background: var(--white); }
.quote-band p.promise {
  margin: 1.25rem auto 0;
  font-family: "Archivo", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.02em; line-height: 1.05;
  color: var(--white); max-width: 20ch;
}

/* ==========================================================================
   REDESIGN v2 — hero rebalance, trust-card fix, panel, icon buttons
   ========================================================================== */
.hero-layout { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) {
  .hero-layout { grid-template-columns: 1.25fr 0.75fr; gap: 48px; align-items: center; }
}
.hero-headline { margin-bottom: 1.5rem; }
.hero-headline em { display: block; }
.hero .hero-copy { margin-top: 0; }

/* Hero stats panel (fills the old empty right column) */
.hero-panel {
  background: var(--blue); color: #fff;
  border: var(--border-thick); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.hero-panel__stat {
  display: flex; flex-direction: column; gap: 2px;
  border-bottom: 2px solid rgba(255,255,255,.22); padding-bottom: 14px;
}
.hero-panel__stat:last-of-type { border-bottom: 0; padding-bottom: 0; }
.hero-panel__stat .n {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 6vw, 56px); line-height: 1; letter-spacing: -.03em;
}
.hero-panel__stat .n small { font-size: .4em; margin-left: 5px; font-family: var(--font-mono); letter-spacing: 0; }
.hero-panel__stat .l {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
}
.hero-panel__cta {
  display: inline-flex; justify-content: center; align-items: center;
  background: #fff; color: var(--black);
  border: var(--border-thick); border-radius: var(--radius-sm);
  box-shadow: 4px 4px 0 0 rgba(0,0,0,.5); padding: 15px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 700; margin-top: 4px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.hero-panel__cta:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 0 rgba(0,0,0,.5); }

/* Trust cards — fix the jammed text with label + value structure */
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item .k {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray-800);
}
.trust-item strong { margin-top: 0; }
.trust-item--gen { flex-direction: row; align-items: flex-start; gap: 12px; }
.trust-item--gen svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.trust-item--gen > span { display: flex; flex-direction: column; gap: 4px; }

/* Icons inside buttons / sticky call */
.btn svg, .sticky-call a svg { width: 22px; height: 22px; flex-shrink: 0; }
.heritage-pill svg { width: 16px; height: 16px; }

/* ---------- Signature work (whole-house repipe / re-drain) ---------- */
.bigwork { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .bigwork { grid-template-columns: 1fr 1fr; } }
.workcard {
  border: var(--border-thick); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 14px;
  background: var(--white);
  transition: transform .18s ease, box-shadow .18s ease;
}
.workcard:hover { transform: translate(-4px,-4px); box-shadow: 12px 12px 0 0 var(--black); }
.workcard--blue { background: var(--blue); color: #fff; }
.workcard--dark { background: var(--gray-800); color: #fff; }
.workcard .kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; opacity: .85;
}
.workcard h3 { font-size: clamp(28px, 4vw, 40px); margin: 0; }
.workcard p { font-family: var(--font-serif); font-size: 16px; margin: 0; }
.workcard__list { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 8px; }
.workcard__list li {
  position: relative; padding-left: 22px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase;
}
.workcard__list li::before { content: "\2713"; position: absolute; left: 0; font-weight: 700; }
.workcard__cta {
  margin-top: auto; padding-top: 6px; align-self: flex-start;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700;
  border-bottom: 2px solid currentColor;
}

/* ---------- Hero panel v2: honest credentials (no fabricated stats) ---------- */
.hero-panel__eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.8); margin: 0 0 4px;
}
.hero-panel__facts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.hero-panel__facts li {
  display: flex; gap: 12px; align-items: flex-start;
  border-bottom: 2px solid rgba(255,255,255,.22); padding-bottom: 16px;
}
.hero-panel__facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-panel__facts svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.hero-panel__facts span { display: flex; flex-direction: column; gap: 2px; }
.hero-panel__facts strong {
  font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.01em; line-height: 1.15;
}
.hero-panel__facts span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.hero-panel__facts strong { color: #fff; text-transform: none; letter-spacing: -.01em; }

/* ---------- Family Promise (signed pledge card) ---------- */
.promise-card {
  position: relative; background: var(--white);
  border: var(--border-thick); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: clamp(28px, 5vw, 60px);
  max-width: 940px; margin-inline: auto; overflow: hidden;
}
.promise-card .eyebrow { margin-bottom: 14px; }
.promise-card h2 { font-size: clamp(32px, 5.5vw, 60px); margin: 0 0 20px; }
.promise-lead { font-family: var(--font-serif); font-size: clamp(17px, 2vw, 21px); max-width: 62ch; margin: 0 0 26px; }
.promise-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 14px; }
.promise-list li { display: flex; gap: 12px; align-items: flex-start; font-family: var(--font-serif); font-size: 16px; }
.promise-list svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.promise-sign {
  font-family: "Caveat", cursive; font-weight: 700;
  font-size: clamp(36px, 6vw, 56px); line-height: 1; margin: 0; color: var(--blue);
}
.promise-sign::before { content: "\2014\00a0"; color: var(--black); font-family: var(--font-display); font-size: .5em; vertical-align: middle; }
.promise-stamp {
  position: absolute; top: 22px; right: 22px;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--blue); color: #fff; border: var(--border-thick);
  box-shadow: 4px 4px 0 0 var(--black);
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1;
  letter-spacing: -.02em; transform: rotate(9deg);
}
@media (max-width: 560px) { .promise-stamp { display: none; } }

/* Hero wordmark: all blue */
.hero-headline, .hero-headline em { color: var(--blue); }

/* Breathing room below the hero trust row so cards don't kiss the next band */
.hero { padding-bottom: clamp(56px, 8vw, 96px); }
.trust { margin-top: 2.75rem; }
