/* =====================================================================
   T&C Underground — design system (Apple/Nike palette)
   Reference: webcraft-landing/index.html (color tokens + nav + buttons)
              hvac/templates/HVAC-Demo/index.html (review-card subsystem)
   ===================================================================== */

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

:root {
  /* Surfaces — Apple palette */
  --bg:           #ffffff;
  --bg-soft:      #f5f5f7;
  --panel:        #ffffff;
  --panel-2:      #fbfbfd;
  --line:         #d2d2d7;
  --line-soft:    #e8e8ed;

  /* Text */
  --text:         #1d1d1f;
  --text-muted:   #6e6e73;
  --text-faint:   #86868b;

  /* CTA — solid near-black, Nike-style */
  --ink:          #1d1d1f;
  --ink-press:    #000000;

  /* Brand accent — safety orange, used sparingly */
  --brand:        #F26A21;
  --brand-press:  #D85812;
  --brand-soft:   rgba(242,106,33,0.10);
  --brand-line:   rgba(242,106,33,0.30);

  /* Review stars */
  --star:         #FBB400;

  /* Shadows — soft, layered, low-opacity */
  --shadow-sm:    0 1px 2px rgba(0,0,0,.05);
  --shadow-card:  0 1px 2px rgba(8,9,12,.04), 0 8px 24px -8px rgba(8,9,12,.08);
  --shadow-lift:  0 18px 50px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-float: 0 30px 70px rgba(15,23,42,.16), 0 8px 20px rgba(15,23,42,.08);

  /* Radius */
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-pill:  980px;

  /* Container + spacing */
  --container:    1180px;
  --container-wide: 1320px;

  /* Easing */
  --ease:         cubic-bezier(.4, 0, .2, 1);
  --ease-spring:  cubic-bezier(.34, 1.16, .64, 1);
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body { min-height: 100vh; line-height: 1.5; font-size: 17px; }
img, svg { max-width: 100%; display: block; }
a { color: var(--text); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand); }
h1, h2, h3, h4, h5 {
  font-family: inherit; color: var(--text); margin: 0;
  letter-spacing: -0.02em; line-height: 1.08; font-weight: 600;
}
h1 { letter-spacing: -0.035em; font-weight: 650; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(242,106,33,.18); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--text); color: #fff; padding: 10px 16px;
  border-radius: 0 0 10px 0; font-size: 14px;
}
.skip-link:focus { left: 0; }

/* =====================================================================
   Layout primitives
   ===================================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: var(--container-wide); }

.section { padding: clamp(72px, 9vh, 128px) 0; position: relative; }
.section--band { background: var(--bg-soft); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark .section-title, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .section-sub, .section--dark p { color: rgba(255,255,255,.7); }
.section--dark .eyebrow { color: var(--brand); }

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head--left { margin-left: 0; margin-right: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-size: 14px; font-weight: 600; letter-spacing: 0;
  color: var(--text-muted); margin-bottom: 14px;
  position: relative; padding-bottom: 2px;
}
.eyebrow::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  border-bottom: 1px solid var(--brand);
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600; line-height: 1.04; letter-spacing: -0.024em;
  color: var(--text); text-wrap: balance;
}
.section-sub {
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.5;
  color: var(--text-muted); margin: 18px auto 0; max-width: 640px;
  text-wrap: pretty;
}
.section-head--left .section-sub { margin-left: 0; margin-right: 0; }
.section-cta {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-top: clamp(36px, 4vw, 52px);
}

/* =====================================================================
   Buttons — pill, solid-black primary, ghost secondary
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 500; line-height: 1;
  padding: 13px 22px; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  text-decoration: none; color: inherit;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.btn .arr { transition: transform .22s var(--ease); display: inline-block; }
.btn:hover .arr { transform: translateX(3px); }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-press); color: #fff; }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

.btn-ghost {
  background: transparent; color: var(--text);
  padding-left: 8px; padding-right: 8px;
}
.btn-ghost:hover { color: var(--brand); }

.btn-soft {
  background: rgba(0,0,0,.05); color: var(--text);
}
.btn-soft:hover { background: rgba(0,0,0,.09); }

.btn-lg { padding: 16px 28px; font-size: 17px; }

/* =====================================================================
   Sticky nav — frosted glass, Apple-style
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding: 0 24px; height: 68px;
  max-width: var(--container-wide); margin: 0 auto;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 19px; letter-spacing: -0.02em;
  color: var(--text); text-decoration: none;
  transition: opacity .2s var(--ease);
}
.brand:hover { opacity: .72; color: var(--text); }
.brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0;
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ""; position: absolute; right: -1px; bottom: -1px;
  width: 8px; height: 8px; background: var(--brand);
  border-radius: 2px 0 0 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand-text small {
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
}

.nav-links {
  display: none; align-items: center; gap: 4px;
  justify-self: center;
}
@media (min-width: 980px) {
  .nav-links { display: flex; }
}
.nav-links a, .nav-trigger {
  font-size: 15px; font-weight: 500; color: var(--text);
  background: none; border: 0; cursor: pointer; padding: 10px 14px;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color .2s var(--ease), background-color .2s var(--ease);
  text-decoration: none;
}
.nav-links a:hover, .nav-trigger:hover { color: var(--brand); background: rgba(0,0,0,.03); }
.nav-links a[aria-current="page"] { color: var(--brand); }

.nav-cta { display: flex; align-items: center; gap: 12px; justify-self: end; }
.nav-cta .btn-primary { padding: 10px 18px; font-size: 14px; }
.nav-phone {
  display: none;
  font-size: 14px; font-weight: 600; color: var(--text);
  text-decoration: none; align-items: center; gap: 6px;
}
@media (min-width: 720px) { .nav-phone { display: inline-flex; } }
.nav-phone:hover { color: var(--brand); }
.nav-phone svg { width: 14px; height: 14px; }

/* Mega-menu (services dropdown) */
.nav-item-mega { position: relative; }
.mega-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(720px, 94vw); padding: 16px;
  border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-float);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 120;
}
.mega-menu::before {
  content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav-item-mega:hover .mega-menu,
.nav-item-mega:focus-within .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.mega-link {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 12px 13px; border-radius: 12px; color: var(--text);
  transition: background .18s var(--ease);
}
.mega-link:hover { background: var(--bg-soft); color: var(--text); }
.mega-ic {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand);
}
.mega-ic svg { width: 20px; height: 20px; }
.mega-tx { display: flex; flex-direction: column; gap: 2px; }
.mt-name { font-size: 15px; font-weight: 600; color: var(--text); }
.mt-sub { font-size: 13px; color: var(--text-muted); line-height: 1.35; }
.mega-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px; padding: 12px 13px 4px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px; color: var(--text-muted);
}
.mega-foot a { font-weight: 600; color: var(--brand); }

/* Mobile nav toggle */
.nav-toggle {
  display: none; width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: 10px;
  background: #fff; align-items: center; justify-content: center;
  color: var(--text); cursor: pointer;
}
@media (max-width: 979px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; }
}
.nav-toggle .nav-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { display: block; }
.nav-mobile {
  position: fixed; inset: 68px 0 0 0; z-index: 90;
  background: rgba(255,255,255,.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  overflow-y: auto; padding: 18px 22px 40px;
  display: none;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block; font-size: 18px; font-weight: 500; color: var(--text);
  padding: 14px 6px; border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
}
.nav-mobile a:hover { color: var(--brand); }
.nav-mobile .btn-primary {
  margin-top: 20px; width: 100%; justify-content: center;
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(56px, 7vh, 96px) 0 clamp(48px, 6vh, 80px);
}
.hero > .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1fr;
  align-items: center; gap: clamp(32px, 4vw, 56px);
}
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr); }
}
.hero-inner { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--brand);
  background: var(--brand-soft); padding: 6px 12px;
  border-radius: 999px; margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
}
.hero-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600; line-height: 1.05; letter-spacing: -0.028em;
  color: var(--text); text-wrap: balance; margin: 0;
}
.hero-sub {
  font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5;
  color: var(--text-muted); max-width: 560px; margin: 22px 0 0;
  text-wrap: pretty;
}
.hero-cta {
  display: flex; gap: 12px 18px; flex-wrap: wrap;
  margin-top: 32px;
}
.hero-cta .btn-primary { padding: 15px 30px; font-size: 17px; }
.hero-cta .btn-secondary { padding: 14px 28px; font-size: 16px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px; margin-top: 44px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
@media (min-width: 600px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat-value {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600; letter-spacing: -0.02em; color: var(--text);
}
.hero-stat-label {
  font-size: 13px; color: var(--text-muted);
  margin-top: 4px; line-height: 1.4;
}

.hero-media {
  position: relative; aspect-ratio: 4/5; max-width: 580px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-soft); box-shadow: var(--shadow-lift);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media__badge {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,.95); color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.hero-media__badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
}

@media (min-width: 880px) {
  .hero-media { aspect-ratio: 4/5; max-width: none; }
}

/* =====================================================================
   Logo / partner strip
   ===================================================================== */
.partners {
  padding: 32px 0; border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.partners-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 24px;
}
.partners-label {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.partners-list {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 32px; row-gap: 16px;
}
.partner-item {
  font-size: 15px; font-weight: 600; color: var(--text);
  display: inline-flex; align-items: baseline; gap: 8px;
}
.partner-item small {
  font-size: 12px; font-weight: 500; color: var(--text-muted);
}

/* =====================================================================
   Service cards (cards used on home + services index)
   ===================================================================== */
.svc-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 680px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  color: var(--text); text-decoration: none;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--ink);
  color: var(--text);
}
.svc-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.svc-card__icon svg { width: 24px; height: 24px; }
.svc-card h3 {
  font-size: 20px; font-weight: 600; letter-spacing: -0.012em;
}
.svc-card__desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.55;
  flex-grow: 1;
}
.svc-card__buyers {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.svc-card__buyers span {
  font-size: 11px; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--bg-soft); padding: 4px 8px; border-radius: 4px;
}
.svc-card__more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  margin-top: 4px;
}
.svc-card:hover .svc-card__more { color: var(--brand); }
.svc-card:hover .svc-card__more .arr { transform: translateX(3px); }
.svc-card__more .arr { transition: transform .25s var(--ease); display: inline-block; }

/* =====================================================================
   Process steps (How a Bore Works — 4-step)
   ===================================================================== */
.process-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 680px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.process-num {
  font-size: 13px; font-weight: 600; color: var(--brand);
  letter-spacing: 0.08em;
}
.process-card h3 {
  font-size: 19px; font-weight: 600; letter-spacing: -0.012em;
}
.process-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
}

/* =====================================================================
   Page hero variants (text-only, Apple/Nike palette)
   ===================================================================== */

/* --minimal: tight utility entrance, text-only on white */
.page-hero--minimal {
  padding: clamp(56px, 8vh, 96px) 0;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}
.page-hero--minimal h1 {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.05;
  color: var(--text);
}
.page-hero--minimal .page-hero-accent { display: none; }

/* --split: two-column with stat/specs card on right, text-only */
.page-hero--split {
  padding: clamp(56px, 8vh, 96px) 0;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}
.page-hero--split > .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px; align-items: center;
}
@media (min-width: 820px) {
  .page-hero--split > .container {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
    gap: 56px;
  }
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 2px solid var(--brand); padding-bottom: 4px;
  margin-bottom: 18px;
}
.page-hero-stat-card {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 16px;
}
.page-hero-stat-card__item {
  display: flex; flex-direction: column; gap: 4px;
}
.page-hero-stat-card__value {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700; letter-spacing: -0.03em; color: var(--text); line-height: 1;
}
.page-hero-stat-card__value-sm {
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text); line-height: 1.4;
}
.page-hero-stat-card__label {
  font-size: 11px; color: var(--text-muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.page-hero-stat-card__divider {
  height: 1px; background: var(--line-soft);
}
.page-hero-stat-card__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 6px; padding: 12px 18px;
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 600;
  border-radius: var(--radius-pill); text-decoration: none;
  transition: background .22s var(--ease), transform .22s var(--ease);
}
.page-hero-stat-card__cta:hover {
  background: var(--ink-press); color: #fff; transform: translateY(-1px);
}

/* --accent: reviews page, aggregate inline */
.page-hero--accent {
  padding: clamp(48px, 6vh, 80px) 0 clamp(36px, 4.5vh, 56px);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero--accent .page-hero-agg {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: var(--radius-pill); padding: 8px 18px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.page-hero--accent .page-hero-agg__stars {
  color: var(--star); font-size: 16px; letter-spacing: 1px;
}
.page-hero--accent .page-hero-agg__text {
  font-size: 14px; font-weight: 600; color: var(--text);
}
.page-hero--accent .page-hero-agg__count {
  font-size: 13px; color: var(--text-muted);
}

/* =====================================================================
   Reviews — lifted verbatim from HVAC-Demo's grev-card system
   ===================================================================== */
.greviews-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 18px; align-items: start;
}
@media (max-width: 1100px) { .greviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .greviews-grid { grid-template-columns: 1fr; } }

.grev-card.is-hidden { display: none; }
.grev-card {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: 16px; padding: 20px 20px 16px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease-spring), box-shadow 220ms var(--ease-spring);
}
.grev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.grev-card__head { display: flex; align-items: center; gap: 12px; }
.grev-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 18px;
}
.grev-card__id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.grev-card__name {
  display: flex; align-items: center; gap: 5px;
  font-weight: 600; font-size: 15px; color: var(--text);
}
.grev-card__verified { width: 15px; height: 15px; flex-shrink: 0; }
.grev-card__stars {
  color: var(--star); font-size: 14px; letter-spacing: 1px; line-height: 1;
}
.grev-card__stars .grev-star--off { color: #DADDE2; }
.grev-card__quote {
  font-size: 14.5px; line-height: 1.55; color: var(--text); margin: 0;
  display: -webkit-box; -webkit-box-orient: vertical;
  -webkit-line-clamp: 5; overflow: hidden;
}
.grev-card__quote.is-expanded { -webkit-line-clamp: unset; overflow: visible; }
.grev-card__more {
  align-self: flex-start; background: none; border: 0; padding: 0;
  cursor: pointer; font-weight: 600; font-size: 13px; color: var(--brand);
}
.grev-card__more:hover { text-decoration: underline; }
.grev-card__meta {
  font-size: 12px; color: var(--text-faint); margin-top: auto;
}

.greviews-more-wrap { display: flex; justify-content: center; margin-top: 28px; }
.greviews-more {
  background: #fff; color: var(--text); border: 1.5px solid var(--line);
  font-weight: 600; letter-spacing: 0.02em; padding: 13px 32px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: border-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}
.greviews-more:hover {
  border-color: var(--ink); color: var(--ink); transform: translateY(-2px);
}
.greviews-more[hidden] { display: none !important; }

/* =====================================================================
   Bid form
   ===================================================================== */
.bid-form-shell {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-card);
}
.bid-form-shell h3 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.018em;
  margin-bottom: 24px;
}
.bid-form-shell label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.bid-form-shell input,
.bid-form-shell select,
.bid-form-shell textarea {
  width: 100%; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--text); padding: 12px 14px;
  font-family: inherit; font-size: 15px; margin-bottom: 16px;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.bid-form-shell input:focus,
.bid-form-shell select:focus,
.bid-form-shell textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
}
.bid-form-shell textarea { min-height: 120px; resize: vertical; }
.bid-form-row {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 540px) {
  .bid-form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.bid-form-submit {
  background: var(--ink); color: #fff; border: 0;
  font-family: inherit; font-size: 16px; font-weight: 600;
  padding: 15px 28px; border-radius: var(--radius-pill);
  cursor: pointer; width: 100%; margin-top: 8px;
  transition: background .22s var(--ease), transform .22s var(--ease);
}
.bid-form-submit:hover { background: var(--ink-press); transform: translateY(-1px); }
.bid-form-foot {
  text-align: center; margin-top: 14px;
  font-size: 13px; color: var(--text-muted);
}

/* =====================================================================
   Contact rows
   ===================================================================== */
.contact-rows { display: flex; flex-direction: column; gap: 20px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-row__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 44px;
}
.contact-row__icon svg { width: 20px; height: 20px; color: var(--text); }
.contact-row__label {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.contact-row__value {
  font-size: 18px; font-weight: 500; color: var(--text);
  letter-spacing: -0.012em;
}
.contact-row__value a { color: inherit; }
.contact-row__value a:hover { color: var(--brand); }

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.faq-list {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.faq-item[open] { border-color: var(--line); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 17px; font-weight: 600; color: var(--text);
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand); }
.faq-item summary::after {
  content: ""; width: 20px; height: 20px; flex: 0 0 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-size: 20px 20px; background-repeat: no-repeat;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item__body {
  padding: 0 24px 22px;
  color: var(--text-muted); font-size: 15.5px; line-height: 1.65;
}

/* =====================================================================
   Service-area map + city cards
   ===================================================================== */
.area-stage {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: start;
}
@media (min-width: 920px) {
  .area-stage { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 64px; }
}
.area-map-wrap {
  background: var(--bg-soft); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative;
}
.area-map-wrap svg { width: 100%; height: auto; display: block; }
.area-map-legend {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 13px; color: var(--text-muted);
}
.area-map-legend span {
  display: inline-flex; align-items: center; gap: 8px;
}
.area-map-legend .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--brand);
}
.area-map-legend .dot--ring { background: transparent; border: 2px solid var(--brand); }

.area-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.area-stat {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.area-stat-value {
  font-size: 28px; font-weight: 600; color: var(--text);
  letter-spacing: -0.02em;
}
.area-stat-label {
  font-size: 13px; color: var(--text-muted); margin-top: 4px;
}

.county-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .county-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .county-grid { grid-template-columns: repeat(3, 1fr); } }
.county-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.county-card h3 {
  font-size: 19px; font-weight: 600; letter-spacing: -0.012em;
}
.county-card__meta {
  font-size: 12px; color: var(--text-muted);
  margin: 4px 0 12px; letter-spacing: 0.04em;
}
.county-card p {
  font-size: 14px; color: var(--text); line-height: 1.6;
}

.city-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 600px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }
.city-card {
  background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  color: var(--text); text-decoration: none;
}
.city-card:hover {
  border-color: var(--ink); transform: translateY(-3px);
  box-shadow: var(--shadow-sm); color: var(--text);
}
.city-card__name {
  font-size: 17px; font-weight: 600; color: var(--text);
  letter-spacing: -0.01em;
}
.city-card__meta {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.04em;
}
.city-card__blurb {
  font-size: 14px; color: var(--text); line-height: 1.55; margin-top: 4px;
}
.city-card__cta {
  margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--brand);
  display: inline-flex; align-items: center; gap: 4px;
}

/* =====================================================================
   Equipment / portfolio tiles
   ===================================================================== */
.tile-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }
.tile {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-soft);
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .42s var(--ease);
}
.tile:hover img { transform: scale(1.04); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.72) 100%);
  pointer-events: none;
}
.tile-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px; color: #fff; z-index: 2;
}
.tile-cap strong {
  display: block; font-size: 17px; font-weight: 600; margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.tile-cap span {
  font-size: 12px; color: rgba(255,255,255,.78);
  letter-spacing: 0.06em;
}

/* =====================================================================
   Long-form prose (used on service pages + how-it-works)
   ===================================================================== */
.prose {
  max-width: 720px; margin: 0 auto;
  font-size: 17px; line-height: 1.7; color: var(--text);
}
.prose h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 56px 0 16px; letter-spacing: -0.022em;
}
.prose h3 {
  font-size: 22px; margin: 36px 0 12px; letter-spacing: -0.015em;
}
.prose p { margin-bottom: 20px; color: var(--text); }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 22px; }
.prose li { margin-bottom: 8px; color: var(--text); }
.prose a {
  color: var(--text); text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 3px; text-decoration-thickness: 2px;
}
.prose a:hover { color: var(--brand); }
.prose strong { font-weight: 600; }

.callout {
  background: var(--bg-soft); border-left: 3px solid var(--brand);
  padding: 20px 24px; margin: 28px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15.5px; color: var(--text); line-height: 1.6;
}

/* =====================================================================
   Breadcrumbs
   ===================================================================== */
.crumb {
  font-size: 13px; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 16px; letter-spacing: 0;
}
.crumb a {
  color: var(--text-muted); text-decoration: none;
}
.crumb a:hover { color: var(--brand); }
.crumb [aria-current="page"] { color: var(--text); font-weight: 500; }

/* =====================================================================
   Page hero (sub-pages, text-only on white)
   ===================================================================== */
.page-hero {
  padding: clamp(56px, 8vh, 96px) 0;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}
.page-hero h1 {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.04em;
  color: var(--text); max-width: 18ch; text-wrap: balance;
}
.page-hero .page-hero-sub {
  font-size: clamp(17px, 1.6vw, 21px); line-height: 1.5;
  color: var(--text-muted); max-width: 56ch; margin-top: 18px;
  text-wrap: pretty;
}

/* =====================================================================
   CTA bar
   ===================================================================== */
.cta-bar {
  background: var(--ink); color: #fff;
  padding: clamp(48px, 6vh, 80px) 24px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px;
}
.cta-bar h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  color: #fff; letter-spacing: -0.022em; max-width: 22ch;
}
.cta-bar p {
  font-size: 16px; color: rgba(255,255,255,.72); max-width: 540px;
}
.cta-bar-actions {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}
.cta-bar .btn-primary { background: #fff; color: var(--ink); }
.cta-bar .btn-primary:hover { background: rgba(255,255,255,.92); }
.cta-bar .btn-secondary { color: #fff; border-color: rgba(255,255,255,.32); }
.cta-bar .btn-secondary:hover { border-color: #fff; }

/* =====================================================================
   Two-col layout (service page + contact page)
   ===================================================================== */
.split {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 920px) {
  .split { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 64px; }
}

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
  background: var(--bg-soft); color: var(--text);
  padding: 64px 0 32px; border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 40px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.footer-col h5 {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
}
.footer-col ul { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: var(--text); text-decoration: none;
}
.footer-col a:hover { color: var(--brand); }
.footer-brand { max-width: 380px; }
.footer-brand p {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
  margin-top: 12px;
}
.footer-811 {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand-soft); color: var(--brand);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
}
.footer-811 svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid var(--line-soft); padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 12px; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--brand); }

/* =====================================================================
   Footer 811 badge — stronger (Pass 4)
   ===================================================================== */
.footer-811 {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
}
.footer-811 svg { width: 16px; height: 16px; color: #fff; }

/* =====================================================================
   Micro-bar (HVAC-style top strip)
   ===================================================================== */
.micro-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px; color: var(--text-muted); font-weight: 500;
  letter-spacing: 0.03em;
}
.micro-bar-inner {
  max-width: var(--container-wide); margin: 0 auto; padding: 0 24px;
  height: 36px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.micro-bar-items {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.micro-bar-items span {
  display: inline-flex; align-items: center; gap: 6px;
}
.micro-bar-items span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0;
}
.micro-bar a {
  font-size: 12px; font-weight: 600; color: var(--text);
  text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
}
.micro-bar a:hover { color: var(--brand); }

/* =====================================================================
   Brand mark — Pass 4 stronger identity
   ===================================================================== */
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; letter-spacing: -0.02em;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.brand-mark::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px; background: var(--brand);
}

/* =====================================================================
   Hero — text-only white treatment (Apple/Nike clean)
   ===================================================================== */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; align-items: center;
  background: var(--bg); color: var(--text);
  border-bottom: 1px solid var(--line-soft);
}
.hero-home {
  background: var(--bg); color: var(--text);
  padding: clamp(64px, 9vh, 120px) 0;
}
.hero::before { content: none; }
.hero-home::before { content: none; }
.hero > .container { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 680px; }
/* Hero two-column grid (text left + photo mosaic right) for home only */
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 48px; }
}
.hero-mosaic {
  display: none;
}
@media (min-width: 980px) {
  .hero-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
  }
  .hero-mosaic__top { grid-column: span 2; aspect-ratio: 16/10; }
  .hero-mosaic__bl  { aspect-ratio: 1/1; }
  .hero-mosaic__br  { aspect-ratio: 1/1; }
  .hero-mosaic > div {
    position: relative; overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 40px -12px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.08);
  }
  .hero-mosaic > div::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.30) 100%);
    pointer-events: none;
  }
  .hero-mosaic img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  padding: 0; margin-bottom: 22px;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 2px solid var(--brand); padding-bottom: 4px;
}
.hero-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0;
}
.hero-title {
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.04em;
  color: var(--text); text-wrap: balance; margin: 0;
}
.hero-home .hero-title {
  font-weight: 800; letter-spacing: -0.04em; color: var(--text);
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px); line-height: 1.5;
  color: var(--text-muted); max-width: 56ch; margin: 22px 0 0;
}
.hero-home .hero-accent-rule {
  width: 56px; height: 2px; background: var(--brand);
  margin: 14px 0 0; border-radius: 2px;
}

/* =====================================================================
   Hero booking card (replaces hero mosaic on home)
   ===================================================================== */
.hero-bid-card {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  box-shadow: 0 1px 2px rgba(8,9,12,.04), 0 12px 32px -12px rgba(8,9,12,.10);
  width: 100%;
  max-width: 460px;
  margin: 28px auto 0;
  color: var(--text);
}
@media (min-width: 980px) {
  .hero-bid-card {
    margin: 0 0 0 auto;
    padding: 26px 26px 22px;
  }
}
.hero-bid-card__title {
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text); margin: 0 0 4px;
}
.hero-bid-card__sub {
  font-size: 13.5px; color: var(--text-muted);
  margin: 0 0 16px; line-height: 1.5;
  text-shadow: none;
}
.hero-bid-card__form label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text); margin-bottom: 4px;
}
.hero-bid-card__opt {
  font-weight: 400; color: var(--text-muted); margin-left: 4px;
}
.hero-bid-card__form input,
.hero-bid-card__form select,
.hero-bid-card__form textarea {
  width: 100%; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--text); padding: 10px 12px;
  font-family: inherit; font-size: 14px; margin-bottom: 12px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.hero-bid-card__form input:focus,
.hero-bid-card__form select:focus,
.hero-bid-card__form textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(242,106,33,.18);
}
.hero-bid-card__form textarea {
  min-height: 72px; resize: vertical;
}
.hero-bid-card__submit {
  background: var(--ink); color: #fff; border: 0;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 13px 22px; border-radius: var(--radius-pill);
  cursor: pointer; width: 100%; margin-top: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .22s var(--ease), transform .22s var(--ease);
}
.hero-bid-card__submit:hover { background: var(--ink-press); transform: translateY(-1px); }
.hero-bid-card__submit:active { transform: translateY(0); }
.hero-bid-card__call {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 10px;
  padding: 11px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: #fff; color: var(--text);
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: border-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}
.hero-bid-card__call:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.hero-bid-card__call svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-bid-card__foot {
  text-align: center; margin: 12px 0 0;
  font-size: 12px; color: var(--text-muted);
  text-shadow: none;
}
.hero-cta {
  display: flex; gap: 12px 16px; flex-wrap: wrap; margin-top: 32px;
}
.hero-cta .btn-primary {
  background: var(--ink); color: #fff;
  padding: 15px 30px; font-size: 17px;
}
.hero-cta .btn-primary:hover { background: var(--ink-press); color: #fff; }
.hero-cta .btn-secondary {
  color: var(--text); border-color: var(--line);
  padding: 14px 26px; font-size: 16px;
  background: transparent;
}
.hero-cta .btn-secondary:hover { border-color: var(--ink); color: var(--ink); }
/* corner badge — hidden on white hero (Apple/Nike clean redesign) */
.hero-badge { display: none; }

/* =====================================================================
   Trust strip (stat boxes, below hero)
   ===================================================================== */
.trust-strip {
  background: var(--bg); border-bottom: 1px solid var(--line-soft);
  padding: 0;
}
.trust-strip-inner {
  max-width: var(--container-wide); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--line-soft);
}
@media (min-width: 680px) { .trust-strip-inner { grid-template-columns: repeat(4, 1fr); } }
.trust-stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
@media (min-width: 680px) { .trust-stat { border-bottom: none; } }
.trust-stat__icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.trust-stat__icon svg { width: 16px; height: 16px; }
.trust-stat__value {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600; letter-spacing: -0.02em; color: var(--text);
  line-height: 1;
}
.trust-stat__label {
  font-size: 13px; color: var(--text-muted); line-height: 1.4;
}

/* =====================================================================
   Why-Choose / Owner block (HVAC .why-grid pattern)
   ===================================================================== */
.why-section { background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; }
}
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feature {
  display: flex; gap: 16px; align-items: flex-start;
}
.why-feature__icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.why-feature__icon svg { width: 22px; height: 22px; }
.why-feature h3 {
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px;
}
.why-feature p {
  font-size: 14px; color: var(--text-muted); line-height: 1.55;
}
.why-media {
  position: relative;
}
.why-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg); display: block;
  box-shadow: var(--shadow-lift);
}
.why-badge {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line-soft);
  border-radius: 999px; padding: 7px 14px;
  font-size: 12px; font-weight: 600; color: var(--text);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.why-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E;
}
.why-est {
  position: absolute; bottom: 18px; left: 18px;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
}
.why-est span { font-size: 14px; font-weight: 700; letter-spacing: 0; }
.why-est::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%;
  border: 1.5px solid var(--brand); opacity: 0.6;
}

/* =====================================================================
   Service-area: city pills + Google Maps (HVAC pattern)
   ===================================================================== */
.area-section { background: var(--bg-soft); }
.area-outer-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 640px) { .area-outer-card { padding: 24px; } }
.area-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 900px) {
  .area-grid { grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: center; }
}
.area__lead {
  font-size: 15px; color: var(--text-muted); line-height: 1.65;
  margin: 0 0 24px; max-width: 38ch;
}
.city-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 480px) { .city-list { grid-template-columns: 1fr; } }
.city-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--bg-soft); border: 1px solid var(--line-soft);
  border-radius: 999px; text-decoration: none;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  transition: transform 220ms var(--ease-spring), box-shadow 220ms var(--ease-spring), border-color 220ms var(--ease-spring);
}
.city-pill:hover {
  transform: translateY(-2px); color: var(--text);
  border-color: var(--brand-line);
  box-shadow: 0 8px 22px -10px rgba(242,106,33,.28);
}
.city-pill__name {
  font-weight: 600; font-size: 14px; color: var(--text);
}
.city-pill__zip {
  font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em;
}
.city-pill__hq {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; background: var(--brand); color: #fff;
  padding: 3px 7px; border-radius: 4px;
}
.city-pill__arrow {
  margin-left: auto; width: 14px; height: 14px;
  color: var(--brand); flex-shrink: 0;
  transition: transform 220ms var(--ease-spring);
}
.city-pill:hover .city-pill__arrow { transform: translateX(4px); }
.map-figure { margin: 0; }
.map-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-soft); background: var(--bg-soft);
}
.map-card__frame {
  aspect-ratio: 16/9; min-height: 250px; width: 100%;
}
.map-card__frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
@media (max-width: 768px) { .map-card__frame { aspect-ratio: 4/3; min-height: 0; } }
@media (max-width: 480px) { .map-card__frame { aspect-ratio: 1/1; } }
.map-caption {
  margin-top: 10px; font-size: 12px; color: var(--text-muted); text-align: center;
}

/* =====================================================================
   Recent Work — 3-up + before/after (HVAC pattern)
   ===================================================================== */
.work-strip { background: var(--bg-soft); }
.work-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px;
}
@media (min-width: 640px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) {
  .work-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .work-grid .tile:first-child { grid-row: span 2; }
}
.before-after-row {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 16px;
}
@media (min-width: 680px) { .before-after-row { grid-template-columns: 1fr 1fr; } }
.ba-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative;
}
.ba-pair-img {
  position: relative; aspect-ratio: 3/2;
  background: var(--bg-soft);
}
.ba-pair-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ba-label {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,.68); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 4px;
}
.ba-label--after { background: rgba(34,197,94,.82); }

/* =====================================================================
   Page hero — orange accent line below H1 (Pass 4)
   ===================================================================== */
.page-hero-accent {
  width: 60px; height: 3px; background: var(--brand);
  border-radius: 2px; margin: 18px 0;
}

/* =====================================================================
   Service page hero — soft-band variant
   ===================================================================== */
.page-hero--service {
  background: var(--bg-soft);
  border-left: 3px solid var(--brand);
  padding-left: calc(var(--container, 1180px) * 0 + 24px);
}

/* =====================================================================
   Reviews page — aggregate stat header
   ===================================================================== */
.review-agg {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-bottom: 44px;
  padding: 28px 32px;
  background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.review-agg__score {
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 700; color: var(--text); letter-spacing: -0.04em; line-height: 1;
}
.review-agg__stars { color: var(--star); font-size: 22px; letter-spacing: 2px; }
.review-agg__meta { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* =====================================================================
   About page — blockquote lead
   ===================================================================== */
.about-quote {
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic; font-weight: 500; line-height: 1.45;
  color: var(--text); letter-spacing: -0.015em;
  border-left: 3px solid var(--brand); padding: 20px 0 20px 28px;
  margin: 0 0 40px;
  max-width: 760px;
}
.about-quote cite {
  display: block; font-style: normal; font-size: 13px;
  color: var(--text-muted); margin-top: 12px; font-weight: 500;
}

/* =====================================================================
   How-it-works — vertical timeline (Pass 4)
   ===================================================================== */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 20px; top: 28px; bottom: 28px;
  width: 2px; background: var(--line-soft);
}
@media (min-width: 600px) { .timeline::before { left: 24px; } }
.timeline-item {
  display: flex; gap: 24px; margin-bottom: 40px; position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-node {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; position: relative; z-index: 1;
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline-body {
  background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 24px 24px 20px;
  flex: 1; box-shadow: var(--shadow-sm);
}
.timeline-body h3 {
  font-size: 18px; font-weight: 600; letter-spacing: -0.012em;
  margin-bottom: 10px;
}
.timeline-body p {
  font-size: 15px; color: var(--text-muted); line-height: 1.6;
}

/* =====================================================================
   FAQ — category headers (Pass 4)
   ===================================================================== */
.faq-category {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand);
  padding: 0 4px; margin-bottom: 10px; margin-top: 32px;
  display: flex; align-items: center; gap: 10px;
}
.faq-category::after {
  content: ""; flex: 1; height: 1px; background: var(--line-soft);
}
.faq-category:first-child { margin-top: 0; }

/* =====================================================================
   CTA bar — rounded contained box (Pass 4)
   ===================================================================== */
.cta-bar {
  background: var(--ink); color: #fff;
  padding: clamp(48px, 6vh, 80px) clamp(28px, 4vw, 64px);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px; position: relative; overflow: hidden;
}
.cta-bar::before {
  content: "T&C"; position: absolute; right: -8px; bottom: -20px;
  font-size: 120px; font-weight: 800; color: rgba(255,255,255,.05);
  letter-spacing: -0.04em; pointer-events: none; line-height: 1;
  user-select: none;
}

/* =====================================================================
   Contact page — left info column on soft band
   ===================================================================== */
.contact-info-col {
  background: var(--bg-soft); border-radius: var(--radius-lg);
  padding: 36px 32px; border: 1px solid var(--line-soft);
}
@media (max-width: 919px) { .contact-info-col { padding: 24px; } }

/* =====================================================================
   Recent Work — asymmetric featured tile
   ===================================================================== */
.work-featured {
  aspect-ratio: 3/4;
}
@media (min-width: 1020px) { .work-featured { aspect-ratio: unset; } }

/* =====================================================================
   Process strip — 4 horizontal numbered steps (Pass 5)
   ===================================================================== */
.process-strip { background: var(--bg-soft); }
.process-strip-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 640px) { .process-strip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .process-strip-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  display: flex; flex-direction: column; gap: 10px;
  padding: clamp(22px, 3vw, 32px) clamp(18px, 2.5vw, 28px);
  border-right: 1px solid var(--line-soft);
  position: relative;
}
@media (max-width: 639px) {
  .process-step { border-right: none; border-bottom: 1px solid var(--line-soft); }
}
.process-step:last-child { border-right: none; border-bottom: none; }
.process-step__num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--brand); text-transform: uppercase;
}
.process-step__title {
  font-size: 17px; font-weight: 600; letter-spacing: -0.012em; color: var(--text);
}
.process-step__connector {
  display: none;
}
@media (min-width: 1020px) {
  .process-step__connector {
    display: block; position: absolute; right: -12px; top: 50%;
    transform: translateY(-50%); z-index: 2;
    color: var(--brand); font-size: 18px;
  }
  .process-step:last-child .process-step__connector { display: none; }
}

/* =====================================================================
   Image band — full-bleed dark photo strip (Pass 5)
   ===================================================================== */
.image-band {
  position: relative; min-height: 340px; overflow: hidden; isolation: isolate;
  display: flex; align-items: flex-end;
}
.image-band__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.image-band:hover .image-band__bg { transform: scale(1.02); }
.image-band::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.68) 100%);
}
.image-band__caption {
  position: relative; z-index: 2;
  padding: clamp(20px, 3vw, 36px) clamp(20px, 4vw, 48px);
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(255,255,255,.82); letter-spacing: 0.06em;
  font-weight: 500;
}

/* =====================================================================
   Image slider — blog-banner style featured-post crossfade (Pass 5.1)
   ===================================================================== */
.image-slider {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--ink);
  min-height: clamp(480px, 62vh, 560px);
}
.image-slider__slides {
  position: absolute; inset: 0;
}
.image-slider__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s var(--ease);
  pointer-events: none;
}
.image-slider__slide.is-active { opacity: 1; pointer-events: auto; }
.image-slider__slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.image-slider__slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.image-slider__content {
  position: absolute; left: 0; right: 0; bottom: clamp(48px, 7vh, 88px);
  padding: 0 clamp(20px, 5vw, 64px);
  max-width: 720px;
  z-index: 3;
  color: #fff;
}
.image-slider__cat {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 14px;
}
.image-slider__headline {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.022em;
  color: #fff; margin: 0 0 14px 0;
  max-width: 640px;
  text-wrap: balance;
}
.image-slider__dek {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6; color: rgba(255,255,255,.86);
  margin: 0 0 22px 0;
  max-width: 600px;
}
.image-slider__read-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: #fff; text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap .25s var(--ease);
}
.image-slider__read-more .arr { transition: transform .25s var(--ease); }
.image-slider__read-more:hover { text-decoration: underline; text-underline-offset: 4px; gap: 12px; }
.image-slider__read-more:hover .arr { transform: translateX(2px); }
.image-slider__progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,.18); z-index: 5;
}
.image-slider__bar {
  height: 100%; width: 0%; background: var(--brand);
  transition: width linear;
}
@media (max-width: 640px) {
  .image-slider { min-height: 460px; }
  .image-slider__content { bottom: 44px; }
}

/* =====================================================================
   Bore vs Trench compare (Pass 5)
   ===================================================================== */
.bore-vs-trench { background: var(--bg); }
.bore-compare-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 720px) { .bore-compare-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.bore-compare-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.bore-compare-card--left { border-top: 3px solid #ef4444; }
.bore-compare-card--right { border-top: 3px solid #22c55e; }
.bore-compare-card h3 {
  font-size: 17px; font-weight: 600; margin-bottom: 18px;
  letter-spacing: -0.012em;
}
.bore-compare-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bore-compare-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--text); line-height: 1.45;
}
.bore-compare-card li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  margin-top: 5px; flex-shrink: 0;
}
.bore-compare-card--left li::before { background: #ef4444; }
.bore-compare-card--right li::before { background: #22c55e; }

/* =====================================================================
   About — EST. 2017 oversized numeral (Pass 5)
   ===================================================================== */
.about-est {
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 0.85;
  color: var(--bg-soft); position: relative;
  user-select: none; pointer-events: none; margin-bottom: 0;
}
.about-est::after {
  content: attr(data-label);
  position: absolute; bottom: 0.1em; left: 0;
  font-size: clamp(12px, 1.2vw, 16px); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand); border-bottom: 0;
}
.about-est-wrap {
  position: relative; overflow: hidden; margin-bottom: 32px;
}
.about-est-label {
  position: absolute; top: 50%; left: 0; transform: translateY(-50%);
  font-size: clamp(80px, 14vw, 200px); font-weight: 700;
  letter-spacing: -0.04em; line-height: 0.85;
  color: var(--line-soft); user-select: none; pointer-events: none;
  white-space: nowrap;
}

/* =====================================================================
   Services grid home — 4 cards + see-all card (Pass 5)
   ===================================================================== */
.svc-grid-home {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 680px) { .svc-grid-home { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .svc-grid-home { grid-template-columns: repeat(3, 1fr); } }
.svc-card--see-all {
  background: var(--bg-soft); border: 1.5px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 8px; min-height: 160px;
}
.svc-card--see-all:hover { border-color: var(--ink); background: var(--panel); }
.svc-card--see-all span { font-size: 15px; font-weight: 600; color: var(--text); }
.svc-card--see-all small { font-size: 13px; color: var(--text-muted); }

/* =====================================================================
   Mobile sticky bottom bar (Pass 5)
   ===================================================================== */
.mobile-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg); border-top: 1px solid var(--line-soft);
  box-shadow: 0 -4px 20px -4px rgba(0,0,0,.12), 0 -1px 4px rgba(0,0,0,.06);
}
@media (min-width: 641px) { .mobile-sticky-bar { display: none; } }
.mobile-sticky-bar__call,
.mobile-sticky-bar__bid {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 14px 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; line-height: 1;
  transition: background .2s var(--ease);
}
.mobile-sticky-bar__call {
  color: var(--text); border-right: 1px solid var(--line-soft);
}
.mobile-sticky-bar__call:hover { background: var(--bg-soft); color: var(--text); }
.mobile-sticky-bar__bid {
  background: var(--ink); color: #fff;
}
.mobile-sticky-bar__bid:hover { background: var(--ink-press); color: #fff; }
.mobile-sticky-bar svg { width: 16px; height: 16px; flex-shrink: 0; }
/* Push content above sticky bar on mobile */
@media (max-width: 640px) {
  .site-footer { padding-bottom: 80px; }
}

/* (removed: page-hero--contact-map variant — contact now uses --minimal text-only) */

/* =====================================================================
   Work grid — asymmetric photo mosaic (Pass 5)
   ===================================================================== */
.work-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 12px; margin-bottom: 32px;
}
@media (min-width: 720px) {
  .work-mosaic {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .work-mosaic .wm-tile:first-child { grid-row: span 2; }
  .work-mosaic .wm-tile:nth-child(5) { grid-column: span 2; }
}
.wm-tile {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-soft); aspect-ratio: 4/3;
}
@media (min-width: 720px) {
  .work-mosaic .wm-tile:first-child { aspect-ratio: unset; min-height: 380px; }
  .work-mosaic .wm-tile:nth-child(5) { aspect-ratio: 16/7; }
}
.wm-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .42s var(--ease);
}
.wm-tile:hover img { transform: scale(1.04); }
.wm-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
}
.wm-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px; color: #fff; z-index: 2;
}
.wm-caption strong {
  display: block; font-size: 14px; font-weight: 600; margin-bottom: 1px;
}
.wm-caption span {
  font-size: 11px; color: rgba(255,255,255,.72); letter-spacing: 0.06em;
}

/* =====================================================================
   Footer 811 badge — contained pill (not full-bleed) (Pass 5)
   ===================================================================== */
/* Override the full-bleed footer-811 from Pass 4 to contained pill */
.footer-811 {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand); color: #fff;
  padding: 9px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  max-width: fit-content; /* contained, not full-bleed */
}
.footer-811 svg { width: 14px; height: 14px; color: #fff; }

/* =====================================================================
   Reduce motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =====================================================================
   PHOTO GALLERY (photos page)
   ===================================================================== */
.photo-gallery-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
}
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--bg-soft);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}
.gallery-item a:focus-visible {
  outline: 2px solid var(--accent, #4DA3FF);
  outline-offset: 3px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .22s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(8,9,12,.06), 0 18px 40px -10px rgba(8,9,12,.18);
}
.gallery-item:hover img {
  transform: scale(1.03);
  opacity: .98;
}
@media (max-width: 540px) {
  .photo-gallery-grid { gap: 12px; }
}
