/* =========================================================
   WeHaul — brand tokens (sourced from logo + banner art)
   Navy from truck cab + headline subhead. Coral from headline + truck box.
   Cream-gray from banner background.
   ========================================================= */
:root {
  /* Navy — primary structural color (truck cab, headers, body bg sections) */
  --navy-900: #102447;
  --navy-800: #1B3666;
  --navy-700: #2C4F88;
  --navy-600: #3A63A0;
  --navy-50:  #E8EDF6;

  /* Coral / red — CTA + accent (truck box + brand headline) */
  --coral-600: #D43F1F;
  --coral-500: #EA4E2A;
  --coral-400: #F26B49;
  --coral-100: #FCE2DA;

  /* Eco-green — kept as a secondary trust accent (donate/recycle/repurpose) */
  --green-700: #157347;
  --green-600: #1F9D55;
  --green-100: #DCFCE7;

  /* Neutrals — banner cream-gray, true whites, ink scale */
  --ink-900: #111418;
  --ink-700: #2A2F36;
  --ink-500: #5B6470;
  --ink-300: #B6BDC7;
  --ink-200: #DCE2EA;
  --ink-100: #EDF1F6;
  --bg-cream: #ECEDEF;
  --bg-cream-2: #F4F5F7;
  --white: #FFFFFF;

  /* Aliases — keep these names so existing rules using yellow still work,
     but the actual color is now coral so the brand is consistent. */
  --yellow-500: var(--coral-500);
  --yellow-600: var(--coral-600);
  --orange-500: var(--coral-400);

  --shadow-sm: 0 1px 2px rgba(10,31,53,.06), 0 1px 3px rgba(10,31,53,.08);
  --shadow-md: 0 6px 18px rgba(10,31,53,.10), 0 2px 6px rgba(10,31,53,.06);
  --shadow-lg: 0 18px 40px rgba(10,31,53,.18), 0 6px 14px rgba(10,31,53,.10);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
}

/* =========================================================
   Reset + base
   ========================================================= */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink-900);
  background: var(--bg-cream-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

/* Hexagon decorative pattern — pulled from brand banner.
   Use as ::before/::after on any container. */
.hex-bg {
  position: relative;
  isolation: isolate;
}
.hex-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(27,54,102,0.08) 1.5px, transparent 2px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}
/* Honeycomb pattern using inline SVG — coral + navy hexagon outlines, faint */
.hex-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
.hex-decor.tr { top: -40px; right: -40px; width: 360px; }
.hex-decor.bl { bottom: -60px; left: -60px; width: 320px; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

/* Global keyboard focus — visible coral ring on every focusable element. */
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--coral-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip-to-content link — invisible until focused. */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-150%);
  background: var(--coral-500);
  color: var(--white);
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 100;
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, h4 {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
  color: var(--navy-900);
}
h1 { font-size: clamp(40px, 7vw, 84px); }
h2 { font-size: clamp(30px, 4.5vw, 52px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); }
h4 { font-size: clamp(17px, 1.8vw, 21px); }
p { margin: 0 0 1em; }

.script {
  font-family: 'Caveat', cursive;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(64px, 8vw, 112px) 0;
}
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 14px;
}
.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-700);
  max-width: 64ch;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform .12s ease, box-shadow .15s ease, background-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--coral-500);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--coral-600); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: var(--white);
  color: var(--navy-800);
  border: 2px solid var(--navy-800);
}
.btn-secondary:hover { background: var(--navy-800); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border: 2px solid var(--navy-800);
}
.btn-ghost:hover { background: var(--navy-800); color: var(--white); }
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-lg { padding: 18px 28px; font-size: 16px; }

/* =========================================================
   Top utility bar
   ========================================================= */
.utility {
  background: var(--navy-900);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  gap: 16px;
}
.utility a:hover { color: var(--coral-500); }
.utility .dot { opacity: .35; margin: 0 10px; }
@media (max-width: 720px) { .utility .hide-sm { display: none; } }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
  backdrop-filter: saturate(140%) blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--navy-900);
  text-transform: uppercase;
}
.brand img.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
.brand .brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .brand-words .top {
  font-size: 18px;
  color: var(--coral-500);
  letter-spacing: 0.04em;
}
.brand .brand-words .bot {
  font-size: 22px;
  color: var(--navy-900);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-700);
  font-weight: 600;
  font-size: 15px;
}
.nav-links a:hover { color: var(--navy-800); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--navy-900);
  letter-spacing: 0.5px;
}
.nav-phone span { display: block; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; color: var(--ink-500); letter-spacing: 0.15em; text-transform: uppercase; }

/* Hamburger toggle — hidden on desktop, visible under 960px */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--ink-200);
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-phone span { display: none; }
  .nav-cta-btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile drawer — rendered as a sibling of the nav (not a child) so its
   fixed positioning escapes the nav's backdrop-filter stacking context.
   z-index above the mobile CTA bar so it cleanly covers the bottom bar. */
.mobile-menu {
  position: fixed;
  top: 76px;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--white);
  padding: 28px 24px 32px;
  box-shadow: 0 12px 24px rgba(10,31,53,.10);
  border-top: 1px solid var(--ink-100);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 70;
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu nav a {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--navy-900);
  padding: 14px 8px;
  border-bottom: 1px solid var(--ink-100);
  text-transform: uppercase;
}
.mobile-menu nav a:hover { color: var(--coral-500); }
.mobile-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.mobile-actions .btn { width: 100%; justify-content: center; }
@media (min-width: 961px) {
  .mobile-menu { display: none; }
}

/* =========================================================
   Hero — cream-gray bg, coral headline, navy supporting copy
   matches the brand banner art.
   ========================================================= */
.hero {
  position: relative;
  background: var(--bg-cream);
  color: var(--navy-900);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(900px 500px at 95% -10%, rgba(27,54,102,0.10), transparent 60%),
    radial-gradient(700px 400px at -5% 110%, rgba(234,78,42,0.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  padding: clamp(72px, 10vw, 128px) 0 clamp(56px, 8vw, 96px);
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 {
  color: var(--coral-500);
  font-size: clamp(40px, 7.4vw, 96px);
  line-height: 1;
  letter-spacing: 0.5px;
}
@media (max-width: 380px) {
  .hero h1 { font-size: 36px; }
}
.hero h1 .accent {
  color: var(--coral-600);
  display: inline-block;
}
.hero h1 .stamp {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--navy-800);
  letter-spacing: 0.5px;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--navy-800);
  max-width: 56ch;
  margin-top: 18px;
  font-weight: 500;
}

/* Google rating chip — sits between the headline and the subhead. */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 14px 10px 12px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  color: var(--navy-900);
  max-width: 100%;
}
.hero-rating:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-500);
}
.hero-rating .rating-stars {
  color: #FBBF24;             /* google-yellow */
  letter-spacing: 1.5px;
  font-size: 16px;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(251,191,36,0.18);
}
.hero-rating .rating-num {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--navy-900);
  line-height: 1;
}
.hero-rating .rating-meta {
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 500;
}
.hero-rating .rating-meta strong { color: var(--navy-900); font-weight: 800; }
.hero-rating .rating-arrow { color: var(--coral-500); flex-shrink: 0; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(27,54,102,.15);
}
.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  font-weight: 600;
  font-size: 14px;
}
.hero-trust .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral-500);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.hero-card {
  background: var(--white);
  color: var(--ink-900);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: "Free Estimate";
  position: absolute;
  top: -14px; left: 28px;
  background: var(--coral-500);
  color: var(--white);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.hero-card h3 { color: var(--navy-900); margin-bottom: 6px; font-size: 24px; }
.hero-card .muted { color: var(--ink-500); font-size: 14px; margin-bottom: 22px; }

/* =========================================================
   Sections — generic
   ========================================================= */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .lead { margin: 14px auto 0; }

/* =========================================================
   Service grid
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-500);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy-50);
  color: var(--navy-800);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.service-card p { color: var(--ink-700); font-size: 15px; flex: 1; }
.service-card .more {
  margin-top: 16px;
  color: var(--green-700);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* =========================================================
   Process — 3 steps
   ========================================================= */
.bg-cream { background: var(--bg-cream); }
.bg-white { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  border: 1px solid var(--ink-100);
}
.step-num {
  position: absolute;
  top: -22px; left: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--coral-500);
  color: var(--white);
  display: grid; place-items: center;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  box-shadow: var(--shadow-md);
}
.step h3 { margin-top: 18px; margin-bottom: 8px; color: var(--navy-900); }
.step p { color: var(--ink-700); }

/* =========================================================
   Detail blocks (alternating)
   ========================================================= */
.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .detail { grid-template-columns: 1fr; gap: 32px; } }
.detail.reverse > :first-child { order: 2; }
@media (max-width: 900px) { .detail.reverse > :first-child { order: 0; } }
.detail-art {
  background: linear-gradient(135deg, var(--navy-800), var(--green-700));
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.5);
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.detail-art.var2 { background: linear-gradient(135deg, var(--green-700), var(--yellow-500)); color: var(--navy-900); }
.detail-art.var3 { background: linear-gradient(135deg, var(--navy-900), var(--orange-500)); }
.detail-art.var4 { background: linear-gradient(135deg, var(--ink-900), var(--navy-700)); }

.detail-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink-100);
  aspect-ratio: 4/5;
}

/* =========================================================
   WatchUsLoad — sticky scroll-driven trailer-loading scene.
   Total height = sticky-height (100vh) + scroll-animation distance.
   We use 160vh so users get ~60vh of scrolling animation, not 120vh.
   ========================================================= */
.watch-load {
  position: relative;
  height: 160vh;
  background: var(--bg-cream);
  overflow: clip;
  border-top: 1px solid rgba(27,54,102,0.06);
  border-bottom: 1px solid rgba(27,54,102,0.06);
}
.watch-load-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.watch-load-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.watch-load-copy { max-width: 460px; }
.watch-load-copy h2 {
  margin-top: 14px;
  line-height: 1.02;
}
.watch-load-stage {
  position: relative;
  width: 100%;
}
.watch-load-stage svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(10,31,53,0.10));
}

/* Below 900px: stack copy on top, stage takes visual priority. Section height
   is sized so the pinned-scroll distance gives pieces enough room to stagger
   without rushing.  parent_height − 100vh = pinned-scroll distance. */
@media (max-width: 900px) {
  .watch-load { height: 175vh; }   /* 75vh of pinned scroll for the animation */
  .watch-load-sticky { align-items: stretch; }
  .watch-load-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 12px;
    padding: 24px 20px 16px;
    height: 100vh;
    align-content: start;
  }
  .watch-load-copy {
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }
  .watch-load-copy h2 { margin-top: 8px; }
  .watch-load-lead { margin: 8px auto 0; font-size: 14px; opacity: 0.78; }
  .watch-load-cta { display: none; }
  /* Stage fills the remaining vertical space; SVG keeps its natural aspect
     ratio (1.43:1) and centers itself in the leftover space. */
  .watch-load-stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .watch-load-stage svg {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
  }
  /* Hide the hex pattern on mobile — busy at small sizes. Section bg is the
     same cream so removing it cleans up the visual without leaving a gap. */
  .watch-load-stage .hex-bg-rect { display: none; }
}
@media (max-width: 600px) {
  .watch-load { height: 165vh; }
  .watch-load-copy .eyebrow { font-size: 11px; margin-bottom: 6px; }
  .watch-load-copy h2 { font-size: clamp(24px, 7.5vw, 32px); line-height: 1.05; }
  .watch-load-inner { padding: 16px 16px 12px; gap: 8px; }
}
@media (max-width: 380px) {
  .watch-load { height: 155vh; }
  .watch-load-copy h2 { font-size: 22px; }
  .watch-load-lead { display: none; }
}

/* Reduced-motion users: skip the staged drop, render the final state statically. */
@media (prefers-reduced-motion: reduce) {
  .watch-load { height: auto; }
  .watch-load-sticky { position: static; height: auto; padding: 56px 0; }
}

/* Before / after stacked pair — used in DemolitionDetail. */
.ba-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.ba-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--ink-100);
  aspect-ratio: 4/3;
}
.ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--coral-500);
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
}
.ba-tag-after { background: var(--green-600); }
@media (max-width: 600px) {
  .ba-stack { gap: 10px; }
  .ba-tag { font-size: 14px; padding: 6px 10px; }
}
.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(10,31,53,0) 0%, rgba(10,31,53,.85) 60%, rgba(10,31,53,.95) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-photo figcaption strong {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-500);
}
.detail-photo figcaption span {
  font-size: 14px;
  color: rgba(255,255,255,.92);
  line-height: 1.45;
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-100);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
/* On tablets/phones, wide and tall tiles become regular 1:1 squares so the
   2-col grid stays uniform. (The old override made them span 2 columns full-
   width = giant 350x350 squares above smaller ones — visually unbalanced.) */
@media (max-width: 900px) {
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 600px) {
  /* Keep 2-column on phones so 6 tiles = 3 tidy rows. (1-col would be 6 full
     screens of vertical scroll — way too much.) */
  .gallery { gap: 10px; }
  .gallery-item figcaption {
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 10px 10px 8px;
  }
}
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(180deg, rgba(10,31,53,0) 0%, rgba(10,31,53,.85) 70%);
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}
.gallery-cta {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 19px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  background-image:
    linear-gradient(180deg, rgba(16,36,71,0.72) 0%, rgba(16,36,71,0.92) 100%),
    url('/assets/founders-trailer.jpg');
  background-size: cover;
  background-position: center;
  padding: 24px;
  overflow: hidden;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
  transition: filter .2s ease, transform .2s ease;
}
.gallery-cta::before {
  content: "";
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--coral-500);
  opacity: 0.85;
  z-index: 0;
}
.gallery-cta::after {
  content: "f";
  position: absolute;
  bottom: 4px;
  right: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 70px;
  color: var(--white);
  z-index: 1;
  line-height: 1;
}
.gallery-cta > * { position: relative; z-index: 2; }
.gallery-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* =========================================================
   Social cards — replaces the unreliable FB iframe with a
   clean three-platform follow block.
   ========================================================= */
.social-cards {
  margin-top: 56px;
  padding: 36px 32px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--r-xl);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.social-cards::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(234,78,42,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.social-cards-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--white);
}
.social-cards-sub {
  color: rgba(255,255,255,0.78);
  margin: 0 auto 28px;
  max-width: 52ch;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--white);
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.social-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.30);
}
.sc-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background: var(--white);  /* shows behind any transparent edges */
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.sc-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.sc-meta strong {
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.sc-meta span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

@media (max-width: 760px) {
  .social-cards { padding: 28px 22px; margin-top: 40px; }
  .social-grid { grid-template-columns: 1fr; gap: 10px; }
  .social-card { padding: 14px 16px; }
  .sc-logo { width: 42px; height: 42px; }
}
.detail h2 { margin-bottom: 14px; }
.detail ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
@media (max-width: 520px) { .detail ul { grid-template-columns: 1fr; } }
.detail li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-700);
}
.detail li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 0 4px var(--coral-100);
}

/* Unified CTA strip at the bottom of every service detail block. */
.detail-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.detail-cta .btn { flex: 0 0 auto; }
@media (max-width: 600px) {
  .detail-cta { gap: 10px; flex-direction: column; align-items: stretch; }
  .detail-cta .btn { width: 100%; justify-content: center; }
  /* Slightly de-emphasize the call button on mobile since the sticky bar
     already exposes a Call action — but keep it visible for choice. */
  .detail-cta-call { background: transparent; }
}

/* =========================================================
   Why us
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why {
  background: var(--white);
  padding: 28px;
  border-radius: var(--r-lg);
  border-top: 4px solid var(--coral-500);
  box-shadow: var(--shadow-sm);
}
.why h3 { font-size: 20px; margin-bottom: 8px; }
.why p { color: var(--ink-700); font-size: 15px; }

/* =========================================================
   Areas
   ========================================================= */
.areas {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .areas { grid-template-columns: 1fr; } }
.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}
@media (max-width: 540px) { .areas-list { grid-template-columns: repeat(2, 1fr); } }
.areas-list li {
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-700);
}
/* =========================================================
   Coverage map — real satellite/hybrid Google Maps with
   branded overlay UI (pulse marker, stats, brand chip).
   ========================================================= */
.coverage {
  position: relative;
  background: var(--ink-200);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  box-shadow:
    0 0 0 4px rgba(234,78,42,0.08),
    var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.coverage iframe,
.coverage-leaflet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  z-index: 0;
}
.coverage-leaflet { background: #1B3666; }

/* Leaflet popup styled to match brand */
.coverage .leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.coverage .leaflet-popup-content { margin: 12px 14px; line-height: 1.4; }
.coverage .leaflet-control-zoom a {
  background: rgba(16,36,71,0.92);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}
.coverage .leaflet-control-zoom a:hover { background: var(--coral-500); }
.coverage .leaflet-control-attribution {
  background: rgba(16,36,71,0.78);
  color: rgba(255,255,255,0.78);
  font-size: 10px;
}
.coverage .leaflet-control-attribution a { color: var(--coral-500); }

/* Custom hex marker styles */
.wh-marker { position: relative; }
.wh-marker .hex {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
}
.wh-marker.wh-hq .hex strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.wh-marker.wh-hq .pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  border: 2px solid var(--coral-500);
  background: rgba(234,78,42,0.18);
  animation: leafletPulse 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  pointer-events: none;
}
.wh-marker.wh-hq .pulse-2 { animation-delay: 1.2s; }
@keyframes leafletPulse {
  0%   { width: 22px; height: 22px; margin: -11px 0 0 -11px; opacity: 0.85; }
  85%  { width: 110px; height: 110px; margin: -55px 0 0 -55px; opacity: 0; }
  100% { width: 110px; height: 110px; margin: -55px 0 0 -55px; opacity: 0; }
}

.wh-marker.wh-city .lbl {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 0 6px rgba(0,0,0,0.6);
  pointer-events: none;
}

.coverage-stats {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 3;
}
.coverage-stats .stat {
  background: rgba(16, 36, 71, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.10);
}
.coverage-stats .stat .big {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--coral-500);
}
.coverage-stats .stat .lbl {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-top: 4px;
  font-weight: 600;
}

.coverage-brand {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(16, 36, 71, 0.92);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 3;
}
.coverage-brand .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 0 3px rgba(234,78,42,0.35);
}

.coverage-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--coral-500);
  color: var(--white);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.30);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color .15s ease, transform .15s ease;
  z-index: 3;
}
.coverage-link:hover { background: var(--coral-600); transform: translateY(-1px); }

/* Areas list — show distance pill alongside name */
.areas-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all .15s ease;
  user-select: none;
}
.areas-list li em {
  font-style: normal;
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 700;
}
.areas-list li.clickable { cursor: pointer; }
.areas-list li.clickable:hover {
  background: var(--coral-500);
  border-color: var(--coral-500);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.areas-list li.clickable:hover em { color: rgba(255,255,255,0.85); }
.areas-list li.clickable:focus-visible {
  outline: 2px solid var(--coral-500);
  outline-offset: 2px;
}
.areas-list li.hq-pill {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.areas-list li.hq-pill em { color: rgba(255,255,255,0.85); }
.areas-list li.hq-pill:hover {
  background: var(--coral-500);
  border-color: var(--coral-500);
}
.areas-list li.hq-pill span {
  background: var(--coral-500);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
}
.areas-list li.hq-pill:hover span {
  background: var(--white);
  color: var(--coral-600);
}

/* =========================================================
   Reviews
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.stars {
  color: var(--yellow-500);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review blockquote {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--ink-900);
  line-height: 1.55;
}
.review .who {
  font-weight: 700;
  color: var(--navy-900);
}
.review .who span { display: block; font-weight: 500; color: var(--ink-500); font-size: 13px; }

/* =========================================================
   Rating hero — big aggregate Google rating block at the top
   of the Reviews section.
   ========================================================= */
.rating-hero {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px 24px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.rating-hero::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(234,78,42,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.rating-hero-stars {
  color: #FBBF24;
  font-size: 30px;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0,0,0,0.2);
}
.rating-hero-num {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--white);
}
.rating-hero-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.rating-hero-meta strong {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--coral-500);
}
.rating-hero-meta span {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
.rating-hero-cta { white-space: nowrap; position: relative; z-index: 1; }
@media (max-width: 760px) {
  .rating-hero {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "stars num"
      "meta meta"
      "cta cta";
    padding: 22px 22px;
    gap: 12px 16px;
  }
  .rating-hero-stars { grid-area: stars; font-size: 24px; }
  .rating-hero-num { grid-area: num; font-size: 44px; justify-self: end; }
  .rating-hero-meta { grid-area: meta; }
  .rating-hero-meta strong { font-size: 18px; }
  .rating-hero-cta { grid-area: cta; width: 100%; justify-content: center; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--ink-100);
  padding: 22px 4px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  color: var(--green-600);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq p {
  margin-top: 12px;
  color: var(--ink-700);
}

/* =========================================================
   Quote form
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: rgba(255,255,255,.85); }
.cta-band .muted { color: rgba(255,255,255,.6); }

.form {
  background: var(--white);
  color: var(--ink-900);
  padding: 28px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  position: relative;        /* contains the honeypot's absolute positioning */
}

/* Visually-hidden honeypot — won't trigger horizontal layout shift the way
   left:-10000px can on iOS Safari. */
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) { .form .row { grid-template-columns: 1fr; } }
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input,
.field textarea,
.field select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink-900);
  transition: border-color .12s ease, box-shadow .12s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--coral-500);
  box-shadow: 0 0 0 3px var(--coral-100);
}
.field textarea { min-height: 110px; resize: vertical; }
.form .submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.form .submit small { color: var(--ink-500); font-size: 12px; }
/* Mobile: stack the submit row vertically so the helper text doesn't fight
   the button width. Button goes first (visual priority + thumb reach). */
@media (max-width: 600px) {
  .form .submit {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 10px;
    margin-top: 14px;
  }
  .form .submit small { text-align: center; }
  .form .submit button {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 16px;
  }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.85);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.footer a { color: rgba(255,255,255,.75); display: block; padding: 4px 0; }
.footer a:hover { color: var(--yellow-500); }
.footer .brand-line {
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  letter-spacing: 0.5px;
}
.footer .tag { font-family: 'Caveat', cursive; color: var(--green-600); font-size: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* =========================================================
   Misc
   ========================================================= */
.kbd {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.thanks {
  background: var(--green-100);
  color: var(--green-700);
  padding: 18px;
  border-radius: var(--r-md);
  font-weight: 600;
}

/* =========================================================
   Chips — used everywhere we list "things we handle"
   so the visual rhythm stays consistent.
   ========================================================= */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--navy-50);
  color: var(--navy-800);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .12s ease;
}
.chip::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral-500);
  flex-shrink: 0;
}
.chip:hover {
  background: var(--coral-500);
  color: var(--white);
  transform: translateY(-1px);
}
.chip:hover::before { background: var(--white); }

/* Inverted chips — for use on dark/coral backgrounds */
.chip-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
}
.chip-light::before { background: var(--coral-500); }

/* Extras strip wrapper — the "Also we do" card */
.extras-card {
  margin-top: 56px;
  padding: 28px 28px 26px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.extras-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.extras-card-head h3 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--navy-900);
  text-transform: uppercase;
  margin: 0;
}
.extras-card-head .eyebrow { margin: 0 0 4px; }
@media (max-width: 720px) {
  .extras-card { padding: 22px 22px 20px; margin-top: 40px; }
  .extras-card-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .extras-card-head .btn { width: 100%; justify-content: center; }
  .extras-card-head h3 { font-size: 20px; }
}

/* Founders quote block — extracted from inline styles, mobile-tuned */
.founder-quote {
  margin: 18px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--coral-500);
  background: var(--white);
  border-radius: var(--r-md);
  color: var(--navy-800);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}
.founder-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .founder-quote { font-size: 15.5px; padding: 18px 20px; }
}

/* =========================================================
   MOBILE PASS — full responsive audit fixes
   ========================================================= */

/* Horizontal-scroll guard. Use overflow-x: clip rather than hidden — hidden
   silently breaks position: sticky on descendants (the WatchUsLoad section
   and the nav both rely on it). clip provides the same visual clipping
   without creating a new scroll container. */
html, body { overflow-x: clip; max-width: 100%; }

/* Form inputs default to 16px on mobile to prevent iOS focus auto-zoom. */
@media (max-width: 600px) {
  .field input,
  .field textarea,
  .field select { font-size: 16px; padding: 14px; }
  .btn { padding: 14px 20px; font-size: 15px; }
  .btn-lg { padding: 16px 22px; font-size: 16px; }
}

/* Section padding tightens on narrow widths. */
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .section-tight { padding: 40px 0; }
  .section-head { margin-bottom: 36px; }
}

/* Utility bar: hide on phones — phone & hours are in nav, drawer, and footer. */
@media (max-width: 600px) {
  .utility { display: none; }
}

/* Slim mobile nav. */
@media (max-width: 480px) {
  .nav-inner { height: 64px; }
  .brand { gap: 8px; }
  .brand img.brand-logo { height: 38px; }
  .brand .brand-words .top { font-size: 13px; }
  .brand .brand-words .bot { font-size: 16px; }
  .nav-phone { font-size: 17px; }
  .nav-toggle { width: 42px; height: 42px; }
  .mobile-menu { top: 64px; }
}
@media (max-width: 380px) {
  /* Below ~iPhone SE: drop brand words, keep mark + phone + hamburger only. */
  .brand .brand-words { display: none; }
}

/* Hex decor: shrink so it doesn't overpower the hero on phone. */
@media (max-width: 700px) {
  .hex-decor.tr { width: 220px; right: -50px; top: -50px; }
}

/* Hero — mobile-tuned vertical rhythm. The default top-of-page felt
   "scrunched" because eyebrow → h1 → rating → sub → 4 buttons → 4-item
   trust strip → form card all stacked tightly. Breaks below loosen the
   spacing, hide the eyebrow on phones (information already conveyed by
   the rating chip + headline), and prune the trust list to the 2 items
   that actually drive conversions on mobile. */
@media (max-width: 760px) {
  .hero-grid { padding: 36px 0 56px; gap: 32px; }
  .hero-text .eyebrow { display: none; }     /* the rating chip carries this load */
  .hero h1 { margin-top: 4px; }
  .hero-rating { margin-top: 16px; padding: 8px 14px 8px 10px; gap: 8px; }
  .hero-rating .rating-meta { font-size: 12px; }
  .hero-rating .rating-num { font-size: 16px; }
  .hero-rating .rating-stars { font-size: 14px; letter-spacing: 1px; }
  .hero-sub {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hero-actions .btn { flex: 1 1 calc(50% - 5px); justify-content: center; min-width: 140px; }
  .hero-trust {
    margin-top: 22px;
    padding-top: 18px;
    gap: 10px 18px;
  }
  .hero-trust .item { font-size: 13px; }
  /* Drop the two redundant trust items on phones (hours/pricing live in card + footer). */
  .hero-trust .item:nth-child(3),
  .hero-trust .item:nth-child(4) { display: none; }
  .hero-card { padding: 22px; }
  .hero-card h3 { font-size: 21px; }
}
@media (max-width: 380px) {
  /* On the smallest screens, the hero h1 sometimes wraps awkwardly because
     "WeHaul It." is forced to a new line by the <br>. That's still fine — but
     trim the surrounding spacing further so the form card is reachable
     without a long scroll. */
  .hero-grid { padding-top: 28px; gap: 24px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-rating { width: 100%; justify-content: flex-start; }
}

/* Coverage map: stack the floating UI vertically, smaller, drop brand chip. */
@media (max-width: 700px) {
  .coverage-stats { flex-direction: column; gap: 6px; top: 12px; left: 12px; }
  .coverage-stats .stat { padding: 7px 10px; }
  .coverage-stats .stat .big { font-size: 16px; }
  .coverage-stats .stat .lbl { font-size: 9px; }
  .coverage-brand { display: none; }
  .coverage-link { font-size: 11px; padding: 8px 12px; }
  .coverage { aspect-ratio: 4/4.5; }
}

/* Areas list: tighter pills + smaller distance text. */
@media (max-width: 540px) {
  .areas-list li { font-size: 13px; padding: 10px 12px; }
  .areas-list li em { font-size: 11px; }
}

/* Facebook embed: never wider than its container on mobile. */
.fb-wrap iframe { max-width: 100%; }
@media (max-width: 600px) {
  .fb-wrap { padding: 8px; }
  .fb-wrap iframe { height: 420px !important; }
  .fb-grid { gap: 24px; margin-top: 24px; }
}

/* CTA band — full mobile pass for the Free Estimate section.
   Multiple separate issues were stacking up:
     1. cta-band padding too large for small phones
     2. internal gap between text column and form column was 48px on mobile
        — way too much vertical air between contact info and the form
     3. .form padding nested inside cta-band padding compounded
     4. .field input padding was small (12px) — fine on desktop, tap-tight on mobile
     5. file input rendered with the ugly browser default
     6. 'Free Estimate' eyebrow + 'Tell us what's got to go.' headline crowded
     7. submit row (already fixed last commit) */
@media (max-width: 760px) {
  .cta-band { gap: 24px; padding: 28px 22px; }
}
@media (max-width: 600px) {
  .cta-band {
    padding: 26px 18px;
    gap: 20px;
    border-radius: var(--r-lg);
    text-align: center;        /* center the copy column above the form */
  }
  .cta-band > div:first-child > div[style*="grid"] { justify-items: center; }
  .cta-band .eyebrow { margin-bottom: 8px; font-size: 12px; }
  .cta-band h2 { font-size: 26px; line-height: 1.04; margin-bottom: 6px; }
  .cta-band .lead { font-size: 15px; line-height: 1.5; margin-left: auto; margin-right: auto; }
  /* The form itself stays left-aligned — labels above inputs read better that
     way. Just the copy column centers. */
  .form { text-align: left; }

  .form { padding: 18px; }
  .form .row { gap: 10px; }
  .field { margin-bottom: 12px; }
  .field label { font-size: 12px; margin-bottom: 4px; }
  .field input,
  .field textarea,
  .field select {
    padding: 13px 14px;
    font-size: 16px;          /* prevents iOS auto-zoom on focus */
    border-radius: 10px;
  }
  .field textarea { min-height: 88px; }

  /* Style the file input — the browser default is gnarly. */
  .field input[type="file"] {
    padding: 10px 12px;
    background: var(--bg-cream-2);
    border: 1px dashed var(--ink-300);
    color: var(--ink-700);
    font-size: 14px;
  }
  .field input[type="file"]::-webkit-file-upload-button {
    background: var(--navy-900);
    color: var(--white);
    border: 0;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    margin-right: 10px;
    cursor: pointer;
  }
}
@media (max-width: 380px) {
  .cta-band { padding: 20px 14px; }
  .form { padding: 14px; }
  .cta-band h2 { font-size: 23px; }
}

/* "Also we do" extras strip: stack vertically on small screens. */
.extras-strip { flex-direction: row; }
@media (max-width: 720px) {
  .extras-strip { flex-direction: column; align-items: flex-start; }
  .extras-strip .btn { width: 100%; justify-content: center; }
}

/* WhyUs cards: tighter padding on phone. */
@media (max-width: 480px) {
  .why { padding: 22px; }
}

/* Process steps: tighter padding on phone. */
@media (max-width: 480px) {
  .step { padding: 28px 22px; }
}

/* Detail sections: tighten the photo aspect on mobile so it isn't oversized. */
@media (max-width: 600px) {
  .detail-photo { aspect-ratio: 1/1; }
}

/* Reviews cards: tighter on phone. */
@media (max-width: 480px) {
  .review { padding: 22px; }
  .review blockquote { font-size: 15px; }
}

/* FAQ: tighter padding so question text doesn't crowd the +/− indicator. */
@media (max-width: 480px) {
  .faq summary { font-size: 15px; }
  .faq summary::after { font-size: 22px; }
  .faq details { padding: 18px 4px; }
}

/* Footer: less padding, tap targets sized up. */
@media (max-width: 480px) {
  .footer { padding: 48px 0 24px; }
  .footer h4 { margin-bottom: 10px; }
  .footer a { padding: 8px 0; }
  .footer-bottom { font-size: 12px; }
}

/* Container side padding on narrow phones. */
@media (max-width: 380px) {
  .container { padding: 0 18px; }
}

/* =========================================================
   Mobile sticky CTA bar — phone-only, persistent at bottom.
   ========================================================= */
.mobile-cta-bar { display: none; }
@media (max-width: 720px) {
  .mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border-top: 1px solid var(--ink-200);
    box-shadow: 0 -8px 18px rgba(10,31,53,0.10);
    /* iOS home-indicator safe area */
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }
  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--r-md);
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: filter .12s ease, background-color .12s ease;
  }
  .mobile-cta-bar .mobile-cta-call {
    background: var(--navy-900);
    color: var(--white);
    margin-right: 6px;
  }
  .mobile-cta-bar .mobile-cta-call .ico { font-size: 18px; }
  .mobile-cta-bar .mobile-cta-call .label {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    align-items: flex-start;
  }
  .mobile-cta-bar .mobile-cta-call .label small {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    margin-top: 2px;
  }
  .mobile-cta-bar .mobile-cta-quote {
    background: var(--coral-500);
    color: var(--white);
    margin-left: 6px;
    box-shadow: 0 6px 14px rgba(234,78,42,0.30);
  }
  .mobile-cta-bar .mobile-cta-quote:hover { background: var(--coral-600); }
  /* Reserve room at the bottom of the page so the bar doesn't cover content. */
  body { padding-bottom: 76px; }
}
@media (max-width: 720px) and (orientation: landscape) {
  /* Hide on landscape phones — the keyboard will overlap and most landscape
     phone use is video etc. The fixed bar would be obtrusive. */
  .mobile-cta-bar { display: none; }
  body { padding-bottom: 0; }
}
/* Hide the mobile CTA bar when the drawer is open — stops it from peeking
   over the bottom of the menu. The Nav component sets data-menu-open="true"
   on <body> while the drawer is up. */
body[data-menu-open="true"] .mobile-cta-bar { display: none !important; }
