/* ============================================================
   Blue Collar Moving Company — v1
   Brand: White / Denim Blue / Safety Orange. Bold + trustworthy.
   (Color vars below drive the whole UI; --navy-* = denim blue scale,
    --silver-shine / --accent = orange CTA + highlight.)
   ============================================================ */

:root {
  --navy-900: #0a2138;
  --navy-800: #0e2c4a;
  --navy-700: #143a5e;
  --navy-500: #1f5fa6;
  --silver-50:  #f5f7fa;
  --silver-100: #eaeef3;
  --silver-200: #d6dde6;
  --silver-300: #b9c2cf;
  --silver-500: #8995a7;
  --silver-700: #4d5b72;
  --ink-900:  #11192a;
  --ink-700:  #2a3447;
  --ink-500:  #5b6478;
  --white:    #ffffff;

  /* Safety orange — used for accents, CTAs, highlights */
  --accent: #f6821f;
  --silver-shine: linear-gradient(
    135deg,
    #ff9d3d 0%,
    #f6821f 50%,
    #e06f12 100%
  );
  --silver-shine-hover: linear-gradient(
    135deg,
    #ffab52 0%,
    #ff8c25 50%,
    #ee7a18 100%
  );
  --silver-text-shine: linear-gradient(
    180deg,
    #ffc680 0%,
    #f6821f 60%,
    #db6a10 100%
  );

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(13,31,60,.06), 0 1px 3px rgba(13,31,60,.08);
  --shadow-md: 0 4px 12px rgba(13,31,60,.08), 0 2px 4px rgba(13,31,60,.06);
  --shadow-lg: 0 12px 32px rgba(13,31,60,.12), 0 4px 8px rgba(13,31,60,.06);

  --t-fast: 150ms ease;
  --t-base: 220ms ease;

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { color: var(--navy-900); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink-700); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-500);
  padding-bottom: .25rem;
  border-bottom: 2px solid var(--silver-200);
  margin-bottom: 1rem;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy-800); color: #fff;
  padding: .75rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900); color: var(--silver-200); font-size: .85rem;
}
.topbar__row {
  display: flex; gap: 2rem; flex-wrap: wrap; align-items: center;
  padding: .55rem 1.25rem;
}
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item svg { color: var(--silver-300); }

/* Facebook link in topbar — pushed to the right */
.topbar__social {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-left: auto;
  color: var(--silver-200);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.topbar__social:hover { color: #fff; }
.topbar__social svg {
  flex: none;
  display: inline-block;
  width: 14px; height: 14px;
  color: var(--silver-300);
  transition: color var(--t-fast);
}
.topbar__social:hover svg { color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--silver-100);
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow-sm);
  transition: padding var(--t-base), box-shadow var(--t-base);
}
.site-header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: .9rem 1.25rem;
  transition: padding var(--t-base);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.site-header.is-scrolled .site-header__row { padding-top: .55rem; padding-bottom: .55rem; }
.site-header.is-scrolled .brand img { height: 44px; transition: height var(--t-base); }
.brand img { height: 56px; width: auto; transition: height var(--t-base); }
@media (max-width: 720px) {
  .brand img { height: 44px; }
  .site-header.is-scrolled .brand img { height: 38px; }
}

.primary-nav { justify-self: end; }
.primary-nav > ul {
  display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0;
}
.primary-nav a {
  display: block;
  padding: .65rem .9rem;
  color: var(--ink-900);
  font-weight: 600; font-size: .95rem;
  border-radius: var(--r-sm);
}
.primary-nav a:hover { background: var(--silver-50); color: var(--navy-800); }
.primary-nav .is-active > a { color: var(--navy-800); background: var(--silver-50); }

.primary-nav .has-children { position: relative; }
.primary-nav .has-children > a::after {
  content: '';
  display: inline-block;
  width: .35rem; height: .35rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  margin-left: .4rem;
}
.primary-nav .submenu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--silver-100);
  box-shadow: var(--shadow-lg);
  border-radius: var(--r-md);
  list-style: none; margin: .25rem 0 0; padding: .35rem;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}
.primary-nav .has-children:hover > .submenu,
.primary-nav .has-children:focus-within > .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-nav .submenu a { padding: .55rem .8rem; font-weight: 500; }

.cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.2rem;
  font-weight: 600; font-size: .95rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: all var(--t-base);
  cursor: pointer; white-space: nowrap;
}
.cta--header { background: var(--navy-800); color: #fff; }
.cta--header:hover { background: var(--navy-700); color: #fff; }

/* Header right-side actions container (FB icon + phone CTA) */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  justify-self: end;
}
.header-social {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--silver-50);
  color: var(--navy-700);
  border: 1px solid var(--silver-200);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  flex: none;
}
.header-social svg {
  flex: none;
  display: inline-block;
  width: 18px; height: 18px;
}
.header-social:hover {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(13,31,60,0.18);
}
.cta--primary {
  background: var(--silver-shine);
  color: #fff;
  border: 1px solid rgba(224, 111, 18, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 4px rgba(120, 50, 0, 0.18),
    0 2px 6px rgba(13, 31, 60, 0.18);
  text-shadow: 0 1px 1px rgba(120, 50, 0, 0.35);
  font-weight: 700;
}
.cta--primary:hover {
  background: var(--silver-shine-hover);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 4px rgba(13, 31, 60, 0.05),
    0 6px 16px rgba(13, 31, 60, 0.18);
  transform: translateY(-1px);
}
.cta--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta--ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.cta--outline { background: transparent; color: var(--navy-800); border-color: var(--silver-300); }
.cta--outline:hover { background: var(--silver-50); border-color: var(--navy-800); }

.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: .5rem; cursor: pointer;
  width: 44px; height: 44px;
}
.nav-toggle span {
  display: block; height: 2px; width: 26px; background: var(--navy-800);
  margin: 5px auto; transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  isolation: isolate;
  background: #0a1830;
}
/* Ken Burns photo background — slow zoom + pan, never abrupt */
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('/images/stock/hero-home.webp');
  background-size: cover;
  background-position: center;
  animation: kenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
}
@media (max-width: 768px) {
  .hero__bg {
    background-image: url('/images/stock/hero-home-mobile.webp');
  }
}
@keyframes kenBurns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1%); }
}
/* Navy overlay for type legibility — kept darker on the left (behind the
   headline) and much lighter on the right so the video reads clearly. */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(110deg, rgba(10,24,48,0.78) 0%, rgba(13,31,60,0.45) 42%, rgba(13,31,60,0.12) 100%);
}
.hero__row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .accent {
  background: var(--silver-text-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  display: inline-block;
}
.hero p.lead { font-size: 1.15rem; color: var(--silver-200); max-width: 56ch; margin-bottom: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.25rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust div { display: flex; align-items: center; gap: .55rem; color: var(--silver-200); font-size: .9rem; font-weight: 500; }
.hero__trust svg { color: var(--accent); }

.hero__card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.hero__card h3 { color: #fff; margin-top: 0; font-size: 1.1rem; letter-spacing: .02em; text-transform: uppercase; }
.hero__form .field { margin-bottom: .85rem; }
.hero__form label { display: block; color: var(--silver-200); font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .35rem; }
.hero__form input, .hero__form select, .hero__form textarea {
  width: 100%; padding: .7rem .85rem;
  background: rgba(255,255,255,0.95); color: var(--ink-900);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r-sm);
  font: inherit; font-size: .95rem;
}
.hero__form button { width: 100%; }

/* Hero background video (pulled from live site) */
.hero__video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

/* ---------- Scroll-reveal (IntersectionObserver) ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; transform: none; }
}

/* ---------- Animated stat counters ---------- */
.stats-band {
  background: var(--navy-900);
  color: #fff;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .6;
  pointer-events: none;
}
.stats-band__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  position: relative;
}
.stat {
  text-align: center; padding: .5rem;
  border-left: 1px solid rgba(255,255,255,.1);
}
.stat:first-child { border-left: 0; }
.stat__num {
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1;
  display: inline-flex; align-items: baseline;
  background: var(--silver-text-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.stat__num::after {
  content: attr(data-suffix); font-size: 0.6em; margin-left: 2px;
  background: var(--silver-text-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  margin-top: .5rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--silver-200);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: #fff; border-bottom: 1px solid var(--silver-100);
}
.trust-strip__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 1.5rem 1.25rem;
}
.trust-strip__item { display: flex; align-items: center; gap: .75rem; color: var(--ink-700); font-weight: 500; font-size: .92rem; }
.trust-strip__item svg { flex: none; width: 26px; height: 26px; color: var(--navy-700); }

/* ---------- Sections ---------- */
section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-head .eyebrow { border-bottom: none; padding-bottom: 0; }
.section-head p { color: var(--ink-500); font-size: 1.05rem; }

.bg-soft { background: var(--silver-50); }

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) {
  .service-grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-grid--3col { grid-template-columns: 1fr; }
}
.service-card {
  background: #fff;
  border: 1px solid var(--silver-100);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--silver-200);
}
.service-card__icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--r-md);
  margin-bottom: 1.1rem;
  color: #eaeef3;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 6px 16px rgba(13,31,60,0.15);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.service-card__icon::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.service-card:hover .service-card__icon {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 8px 22px rgba(13,31,60,0.22);
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card:hover .service-card__icon { transform: scale(1.06) rotate(-2deg); }
.service-card h3 { margin: 0 0 .4rem; font-size: 1.1rem; }
.service-card p { font-size: .92rem; color: var(--ink-500); margin-bottom: 1rem; }
.service-card__more { margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--navy-700); }
.service-card__more::after { content: ' →'; transition: transform var(--t-base); display: inline-block; }
.service-card:hover .service-card__more::after { transform: translateX(3px); }

/* Why us */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.why-item__icon {
  width: 56px; height: 56px;
  background: var(--navy-800); color: #fff;
  border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.why-item h3 { font-size: 1.15rem; }
.why-item p { color: var(--ink-500); font-size: .98rem; }

/* Service area — coastal photo background */
.service-area-section {
  position: relative;
  color: #fff;
  padding: clamp(4rem, 7vw, 6rem) 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-900);
}
.service-area-section::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-image: url('/images/stock/section-coastal.webp');
  background-size: cover; background-position: center 60%;
}
.service-area-section::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,24,48,0.92) 0%, rgba(13,31,60,0.85) 100%);
}
.service-area-section .section-head h2,
.service-area-section .section-head .eyebrow { color: #fff; }
.service-area-section .section-head .eyebrow { color: var(--accent); border-color: rgba(214,221,230,.4); }
.service-area-section .section-head p { color: var(--silver-200); }

.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.area-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem; text-align: center;
  transition: all var(--t-base);
}
.area-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.area-card__name { font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: .25rem; }
.area-card__sub { font-size: .85rem; color: var(--silver-200); }

/* Projects */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card {
  background: #fff;
  border: 1px solid var(--silver-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.project-card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  position: relative;
  display: grid; place-items: center;
  color: rgba(255,255,255,.55);
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600;
}
.project-card__media::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.project-card__body { padding: 1.25rem 1.4rem 1.5rem; }
.project-card__cat {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .35rem;
}
.project-card h3 { font-size: 1.05rem; margin: 0 0 .25rem; }
.project-card__loc { color: var(--ink-500); font-size: .88rem; margin: 0; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: #fff; border: 1px solid var(--silver-100); border-radius: var(--r-lg);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.review-stars {
  font-size: 1rem; letter-spacing: 2px; margin-bottom: .75rem;
  background: linear-gradient(180deg, #ffc24d 0%, #f6821f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.review-quote { color: var(--ink-700); font-size: 1rem; font-style: italic; margin-bottom: 1.25rem; }
.review-author { font-weight: 600; color: var(--navy-900); font-size: .95rem; }
.review-meta { font-size: .82rem; color: var(--ink-500); }

/* THANK YOU page (used on /thank-you after form submission) */
.thanks-section {
  background: var(--silver-50);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thanks-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 280px at 20% 0%, rgba(214,221,230,0.5), transparent 60%),
    radial-gradient(700px 240px at 80% 100%, rgba(170,179,191,0.3), transparent 60%);
  pointer-events: none;
}
.thanks-grid {
  max-width: 640px; margin: 0 auto; position: relative;
}
.thanks-icon {
  width: 96px; height: 96px;
  background: linear-gradient(135deg, #fff, var(--silver-100));
  border: 4px solid #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 14px 32px rgba(13,31,60,0.14), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
}
.thanks-icon::after {
  content: ''; position: absolute; inset: -8px;
  border: 1px dashed var(--silver-300);
  border-radius: 50%;
  opacity: .6;
}
.thanks-icon svg { width: 48px; height: 48px; color: var(--navy-700); }
.thanks-grid h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  margin: 0 0 .85rem;
  color: var(--navy-900);
}
.thanks-grid .lead {
  font-size: 1.1rem; color: var(--ink-700); line-height: 1.55;
  margin: 0 auto 2rem; max-width: 52ch;
}
.thanks-info {
  background: #fff;
  border: 1px solid var(--silver-200);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  text-align: left;
  margin: 0 auto 2rem;
  box-shadow: 0 4px 14px rgba(13,31,60,0.06);
}
.thanks-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding: .7rem 0;
  border-bottom: 1px solid var(--silver-100);
}
.thanks-row:last-child { border-bottom: 0; padding-bottom: .15rem; }
.thanks-row:first-child { padding-top: .15rem; }
.thanks-row strong {
  color: var(--navy-900); font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  flex-shrink: 0;
}
.thanks-row span, .thanks-row a {
  color: var(--ink-700); font-size: .96rem; text-align: right;
}
.thanks-row a { color: var(--navy-700); font-weight: 600; }
.thanks-row a:hover { color: var(--navy-900); }
.thanks-cta-row {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
}
@media (max-width: 600px) {
  .thanks-row { flex-direction: column; align-items: flex-start; gap: .15rem; }
  .thanks-row span, .thanks-row a { text-align: left; }
}

/* Sitemap grid (used on /sitemap) */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
}
.sitemap-section {
  background: #fff;
  border: 1px solid var(--silver-100);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.sitemap-section:hover {
  border-color: var(--silver-200);
  box-shadow: var(--shadow-sm);
}
.sitemap-section::before {
  content: '';
  position: absolute; top: 0; left: 1.5rem; right: 1.5rem; height: 3px;
  background: linear-gradient(90deg, var(--navy-700), var(--silver-300));
  border-radius: 0 0 2px 2px;
}
.sitemap-section h3 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin: 0 0 1rem;
  padding-top: .35rem;
}
.sitemap-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-section li {
  border-top: 1px solid var(--silver-100);
}
.sitemap-section li:first-child { border-top: 0; }
.sitemap-section a {
  display: block;
  padding: .65rem .25rem;
  color: var(--ink-700);
  font-size: .94rem;
  font-weight: 500;
  transition: color var(--t-fast), padding-left var(--t-fast);
  position: relative;
}
.sitemap-section a:hover {
  color: var(--navy-800);
  padding-left: 6px;
}
.sitemap-section a:hover::before {
  content: '→';
  position: absolute; left: -8px; top: .65rem;
  color: var(--accent-deep, var(--silver-500));
}

@media (max-width: 1024px) {
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 600px) {
  .sitemap-grid { grid-template-columns: 1fr; gap: 1rem; }
  .sitemap-section { padding: 1.25rem; }
}

/* Service-area visual map section */
.service-map-section { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.service-map {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--silver-100);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(13,31,60,0.08);
}
.service-map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
}
.service-map figcaption {
  text-align: center;
  margin-top: 1rem;
  color: var(--ink-500);
  font-size: .9rem;
  font-style: italic;
}
@media (max-width: 720px) {
  .service-map { padding: .85rem; }
}

/* County overview cards (used on /service-area) */
.counties-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.county-card {
  background: #fff;
  border: 1px solid var(--silver-200);
  border-radius: var(--r-lg);
  padding: 2.5rem 2.25rem;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 31, 60, 0.05);
}
.county-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--navy-700), var(--navy-500));
}
.county-card:hover {
  border-color: var(--navy-500);
  box-shadow: 0 12px 32px rgba(13, 31, 60, 0.12), 0 4px 8px rgba(13, 31, 60, 0.06);
  transform: translateY(-3px);
}
/* Alternate the top-bar accent for visual variety across the four cards */
.counties-overview > .county-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--navy-500), #4a7bc4);
}
.counties-overview > .county-card:nth-child(3)::before {
  background: linear-gradient(90deg, #2a4d8f, var(--silver-500));
}
.counties-overview > .county-card:nth-child(4)::before {
  background: linear-gradient(90deg, #4a7bc4, var(--silver-300));
}
.county-card__seat {
  font-size: .72rem; color: var(--silver-500); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.county-card h2 {
  font-size: 1.55rem; margin: .35rem 0 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--silver-100);
}
.county-card__intro { color: var(--ink-700); font-size: .96rem; margin-bottom: 1.25rem; }
.county-card__sub {
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy-700); font-weight: 700; margin: 0 0 .4rem;
}
.county-card__cities {
  color: var(--ink-500); font-size: .9rem; margin: 0 0 1.5rem; line-height: 1.6;
}
.county-card .cta { margin-top: auto; align-self: flex-start; }

@media (max-width: 768px) {
  .counties-overview { grid-template-columns: 1fr; gap: 1rem; }
  .county-card { padding: 1.5rem 1.25rem; }
  .county-card h2 { font-size: 1.35rem; }
}

/* Featured Work showcase strip */
.featured-work {
  background: var(--silver-50);
}
.featured-work__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.featured-work__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.featured-work__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms ease;
}
.featured-work__media:hover img { transform: scale(1.04); }
.featured-work__media::after {
  content: '';
  position: absolute; left: 0; bottom: 0; right: 0; height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(13,31,60,.55) 100%);
}
.featured-work__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--silver-shine); color: var(--navy-900);
  padding: .4rem .85rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(170, 179, 191, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 2px 6px rgba(13,31,60,0.18);
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
  z-index: 2;
}
.featured-work__caption {
  position: absolute; bottom: 1rem; left: 1.25rem; right: 1.25rem;
  color: #fff; font-weight: 600; font-size: .95rem;
  z-index: 2;
}
.featured-work h2 { margin-bottom: 1rem; }
.featured-work .eyebrow { border: 0; padding: 0; }

/* CTA Band */
.cta-band {
  background: var(--navy-900);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.cta-band__row { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-band__title { color: #fff; margin: 0; font-size: clamp(1.4rem, 2.4vw, 2rem); }
.cta-band__sub { color: var(--silver-200); margin: .35rem 0 0; }
.cta-band__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: #07111f;
  color: var(--silver-200);
  padding: 3.5rem 0 0;
  font-size: .92rem;
}
.site-footer a { color: var(--silver-200); }
.site-footer a:hover { color: var(--accent); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.site-footer__hours { color: #fff !important; margin: 0; line-height: 1.7; font-weight: 500; }
.site-footer__logo { margin-bottom: 1rem; }
.site-footer__about { color: var(--silver-300); margin-bottom: 1rem; max-width: 36ch; }
.site-footer__addr { font-style: normal; line-height: 1.7; color: var(--silver-300); }

/* Social link in footer (Facebook, etc.) */
.site-footer__social { margin-top: 1rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: var(--silver-200);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-wrap: nowrap;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.social-link:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  transform: translateY(-1px);
}
.social-link svg {
  flex: none;
  display: inline-block;
  width: 18px; height: 18px;
  color: #d6dde6;
}
.social-link span { white-space: nowrap; line-height: 1; }
.site-footer__h {
  color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin: 0 0 1rem;
}
.site-footer__list { list-style: none; padding: 0; margin: 0; line-height: 2; }
.site-footer__legal {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.25rem; color: var(--silver-500); font-size: .85rem;
}
.site-footer__legal-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .25rem 1.5rem;
}
.site-footer__legal-nav a {
  color: var(--silver-300);
  text-decoration: none;
  font-size: .85rem;
  position: relative;
  transition: color var(--t-fast);
}
.site-footer__legal-nav a:hover { color: #fff; }
.site-footer__legal-nav a + a { padding-left: 0; }

/* Mobile sticky call */
.mobile-call {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  display: none; align-items: center; justify-content: center; gap: .5rem;
  background: var(--silver-shine); color: #fff;
  padding: .9rem 1rem;
  border-radius: var(--r-md);
  font-weight: 700; font-size: 1rem;
  border: 1px solid rgba(224, 111, 18, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 8px 24px rgba(13,31,60,0.25);
  text-shadow: 0 1px 1px rgba(120,50,0,0.35);
  z-index: 60;
}
.mobile-call:hover { color: #fff; background: var(--silver-shine-hover); }

/* ---------- Page header (interior) ---------- */
.page-header {
  background: var(--navy-800);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: left;
  background-image:
    radial-gradient(800px 240px at 90% -10%, rgba(214,221,230,0.12), transparent 60%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Photo-backed variant — set --header-bg inline via style attr */
.page-header--photo {
  background: var(--navy-900);
  background-image: none;
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
}
.page-header--photo::before {
  content: '';
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--header-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.page-header--photo::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(10,24,48,0.95) 0%, rgba(13,31,60,0.82) 45%, rgba(13,31,60,0.65) 100%),
    radial-gradient(900px 280px at 90% -10%, rgba(214,221,230,0.18), transparent 60%);
}
.page-header h1 { color: #fff; margin: 0 0 .5rem; }
.page-header .crumbs { color: var(--silver-300); font-size: .9rem; }
.page-header .crumbs a { color: var(--silver-300); }
.page-header .crumbs a:hover { color: var(--accent); }
.page-header p.lead { color: var(--silver-200); font-size: 1.1rem; max-width: none; margin-top: .5rem; }

.prose { max-width: 760px; margin: 0 auto; }
/* Full-width, left-aligned variant for legal/utility pages (privacy, terms,
   sitemap). Body lines up with the page-header title at the container edge —
   never a narrow centered column floating away from the left. */
.prose--full { max-width: none; margin-left: 0; margin-right: 0; }

/* ==============================
   CONTENT TYPOGRAPHY BASELINE
   Unified rhythm for all content blocks: service pages, county pages,
   about, privacy, terms. Applied via .two-col main column and .prose.
   Defines: heading scale, paragraph spacing, list bullet style, link
   color, strong weight. Override only when intentional.
   ============================== */
.two-col > div > h2,
.prose h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  color: var(--navy-900);
  margin: 2.4rem 0 .85rem;
  letter-spacing: -0.01em;
}
.two-col > div > h3,
.prose h3 {
  font-size: 1.15rem;
  color: var(--navy-800);
  margin: 1.6rem 0 .55rem;
}
.two-col > div > h2:first-child,
.prose h2:first-child,
.two-col > div > h3:first-child,
.prose h3:first-child { margin-top: 0; }

.two-col > div > p,
.prose p {
  margin: 0 0 1.05rem;
  line-height: 1.65;
  color: var(--ink-700);
}

.two-col > div > p strong,
.two-col > div > ul strong,
.two-col > div > ol strong,
.prose strong {
  color: var(--navy-900);
  font-weight: 700;
}

/* All content-area unordered lists get unified silver-dot bullets,
   except .bullet-grid which is a 2-col variant (still uses same bullets
   below). */
.two-col > div ul,
.prose ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.25rem;
}
.two-col > div ul li,
.prose ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .5rem;
  line-height: 1.6;
  color: var(--ink-700);
}
.two-col > div ul li::before,
.prose ul li::before {
  content: '';
  position: absolute; left: 0; top: .68rem;
  width: 7px; height: 7px;
  background: var(--silver-500);
  border-radius: 50%;
}

/* Ordered lists — clean numbered, consistent spacing */
.two-col > div ol,
.prose ol {
  list-style: none;
  counter-reset: ordered;
  padding-left: 0;
  margin: 0 0 1.25rem;
}
.two-col > div ol li,
.prose ol li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .55rem;
  line-height: 1.6;
  color: var(--ink-700);
  counter-increment: ordered;
}
.two-col > div ol li::before,
.prose ol li::before {
  content: counter(ordered) ".";
  position: absolute; left: 0; top: 0;
  width: 1.4rem;
  font-weight: 700; color: var(--navy-700);
  font-variant-numeric: tabular-nums;
}

/* Inline content image — drop into any .two-col left column */
.content-image {
  margin: 2rem 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(13, 31, 60, 0.10);
  border: 1px solid var(--silver-100);
  background: var(--silver-50);
}
.content-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.content-image figcaption {
  background: #fff;
  border-top: 1px solid var(--silver-100);
  padding: .75rem 1.25rem;
  font-size: .82rem;
  color: var(--ink-500);
  font-style: italic;
}

/* CTA paragraph — when used at the end of content (e.g., "Request Estimate · Call Phone"),
   give it consistent spacing instead of inline margin-top. */
.two-col > div .cta-row,
.prose .cta-row {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin: 1.75rem 0 0;
}

/* ---------- Two-column page layouts ---------- */
.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.sidebar {
  position: sticky; top: 90px;
  background: var(--silver-50);
  border: 1px solid var(--silver-100);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.sidebar h3 { font-size: 1rem; margin-top: 0; }
.sidebar ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.sidebar li a {
  display: block; padding: .5rem .25rem; color: var(--ink-700);
  border-bottom: 1px solid var(--silver-100); font-size: .94rem;
}
.sidebar li:last-child a { border-bottom: 0; }
.sidebar li a:hover { color: var(--navy-800); }

/* ==============================
   Service-specific intro sections
   Each service page uses ONE of these — different look per service.
   ============================== */

/* Common containers used by multiple variants */
.svc-intro       { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.svc-intro__head { text-align: center; max-width: 720px; margin: 0 auto 2rem; }
.svc-intro__head .eyebrow { border: 0; padding: 0; }
.svc-intro__head h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin: .4rem 0 .5rem; }
.svc-intro__head p { color: var(--ink-500); margin: 0; }

/* SERVICE FEATURE — image + content (mirrors homepage .featured-work).
   Used as the section right after the page-header on most service pages.
   Use .service-feature--right to flip image to the right. */
.service-feature {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--silver-50);
}
.service-feature--white { background: #fff; }
.service-feature__row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.service-feature--right .service-feature__row {
  grid-template-columns: 1fr 1fr;
}
.service-feature__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(13,31,60,0.14), 0 4px 12px rgba(13,31,60,0.06);
  order: 0;
}
.service-feature--right .service-feature__media { order: 2; }
.service-feature__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms ease;
}
.service-feature__media:hover img { transform: scale(1.04); }
.service-feature__media::after {
  content: '';
  position: absolute; left: 0; bottom: 0; right: 0; height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(13,31,60,.55) 100%);
  pointer-events: none;
}
.service-feature__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--silver-shine); color: var(--navy-900);
  padding: .4rem .85rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(170, 179, 191, 0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 2px 6px rgba(13,31,60,0.18);
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
  z-index: 2;
}
.service-feature__caption {
  position: absolute; bottom: 1rem; left: 1.25rem; right: 1.25rem;
  color: #fff; font-weight: 600; font-size: .92rem;
  z-index: 2;
}
.service-feature__body { order: 1; }
.service-feature__body .eyebrow { border: 0; padding: 0; }
.service-feature__body h2 { margin: .35rem 0 1rem; font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.service-feature__body p {
  color: var(--ink-700); font-size: 1.02rem; line-height: 1.65; margin: 0 0 1rem;
}
.service-feature__body .cta-row { margin-top: 1.5rem; }

@media (max-width: 1024px) {
  .service-feature__row { grid-template-columns: 1fr; gap: 2rem; }
  .service-feature__media,
  .service-feature--right .service-feature__media,
  .service-feature__body { order: unset; }
}

/* (1) AUDIENCES ROW — Property Maintenance */
.audiences-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--silver-100);
  border-left: 4px solid var(--navy-700);
  border-radius: var(--r-md);
  padding: 1.5rem 1.5rem 1.4rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-left-color: var(--silver-500); }
.audience-card h3 { font-size: 1.05rem; color: var(--navy-900); margin: 0 0 .4rem; }
.audience-card p  { color: var(--ink-700); font-size: .92rem; margin: 0; line-height: 1.55; }
.audience-card__tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--silver-500); margin-bottom: .35rem;
}

/* (2) SPLIT FEATURE — Remodeling (Kitchen | Bath side-by-side) */
.split-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.split-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex; align-items: flex-end;
  padding: 2rem;
  color: #fff;
  background-color: var(--navy-800);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.split-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(10,24,48,0.92) 0%, rgba(13,31,60,0.5) 60%, rgba(13,31,60,0.2) 100%);
}
.split-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: #fff; }
.split-card h3 { color: #fff; font-size: 1.5rem; margin: 0 0 .35rem; }
.split-card p  { color: var(--silver-200); font-size: .95rem; margin: 0 0 1rem; line-height: 1.55; }
.split-card__tag {
  display: inline-block;
  background: var(--silver-shine);
  color: var(--navy-900);
  padding: .25rem .65rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 999px; margin-bottom: .75rem;
  border: 1px solid rgba(170,179,191,0.6);
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.split-card__more { font-weight: 600; font-size: .92rem; }
.split-card__more::after { content: ' →'; transition: transform var(--t-base); display: inline-block; }
.split-card:hover .split-card__more::after { transform: translateX(4px); }

/* (3) ALERT BAND — Roofing storm-damage (single row CTA) */
.alert-band {
  background: linear-gradient(135deg, #0a1830 0%, #15305d 100%);
  color: #fff;
  padding: clamp(2.5rem, 4.5vw, 3.5rem) 0;
  border-top: 4px solid #c93838;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.alert-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% -20%, rgba(227,70,70,0.22), transparent 55%), radial-gradient(circle at 5% 110%, rgba(214,221,230,0.08), transparent 50%);
  pointer-events: none;
}
.alert-band__row {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
  position: relative;
}
.alert-band__pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(227, 70, 70, 0.18); color: #ffb4b4;
  padding: .4rem .9rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(227,70,70,0.4);
  margin-bottom: 1rem;
}
.alert-band__pill::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #e34646; animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(1.4); }
}
.alert-band h2 { color: #fff; margin: 0 0 .55rem; font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.alert-band p  { color: var(--silver-200); margin: 0; font-size: 1.02rem; max-width: 56ch; }
.alert-band__cta {
  display: inline-flex; align-items: center; gap: .65rem;
  background: #fff; color: #1a0808;
  padding: 1.1rem 1.6rem;
  border-radius: var(--r-md);
  font-weight: 800; font-size: 1.15rem; letter-spacing: .01em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(227,70,70,0.35);
  transition: transform var(--t-fast);
  white-space: nowrap;
}
.alert-band__cta:hover { transform: translateY(-2px); color: #1a0808; }

/* (3b) URGENT SECTION — Emergency Repairs (bigger split layout) */
.urgent-section {
  background:
    radial-gradient(circle at 18% 30%, rgba(227,70,70,0.18), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(227,70,70,0.12), transparent 55%),
    linear-gradient(135deg, #2a0e0e 0%, #1a0808 60%, #110404 100%);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 5px solid #e34646;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.urgent-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center;
}
.urgent-247 {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(227, 70, 70, 0.22);
  border: 1px solid rgba(227, 70, 70, 0.5);
  color: #ffd0d0;
  padding: .45rem 1rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.urgent-247::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%;
  background: #e34646; animation: pulse 1.6s ease-in-out infinite;
}
.urgent-headline {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 1rem;
}
.urgent-headline .accent {
  background: linear-gradient(180deg, #fff 0%, #ffb4b4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.urgent-sub { color: #f8d6d6; font-size: 1.05rem; margin: 0 0 1.6rem; line-height: 1.5; }
.urgent-phone {
  display: inline-flex; align-items: center; gap: .85rem;
  background: #fff; color: #1a0808;
  padding: 1.15rem 1.75rem;
  border-radius: var(--r-md);
  font-weight: 800; font-size: 1.4rem; letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(227,70,70,0.4);
  transition: transform var(--t-fast);
}
.urgent-phone:hover { transform: translateY(-2px); color: #1a0808; }
.urgent-phone svg { color: #e34646; }
.urgent-list {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.85rem;
  list-style: none; margin: 0;
}
.urgent-list__head {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #ffb4b4; margin-bottom: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.urgent-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .55rem 0; color: #f5f7fa;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.urgent-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.urgent-list li::before {
  content: ''; flex: none; margin-top: .55rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: #e34646;
}

/* (4) BENTO CAPABILITIES — Excavation (2x2 large cards w/ huge silver numbers) */
.bento-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.bento-card {
  background: #fff;
  border: 1px solid var(--silver-200);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13,31,60,0.05);
}
.bento-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 4px; background: linear-gradient(180deg, var(--silver-300), var(--silver-200));
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-500);
  box-shadow: 0 16px 36px rgba(13,31,60,0.14);
}
.bento-card:hover::before { background: linear-gradient(180deg, var(--navy-700), var(--navy-500)); }
.bento-card__num {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.5rem; font-weight: 700; line-height: 1;
  letter-spacing: -0.04em;
  background: var(--silver-text-shine);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(13,31,60,0.08));
  align-self: center;
}
.bento-card__body { padding-top: .25rem; }
.bento-card h3 { font-size: 1.25rem; color: var(--navy-900); margin: 0 0 .5rem; }
.bento-card p  { font-size: .98rem; color: var(--ink-700); margin: 0; line-height: 1.55; }

/* (5) INSURANCE TIMELINE — Restoration (3 steps with connecting line + big circles) */
.timeline-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  position: relative;
  max-width: 1080px; margin: 0 auto;
}
.timeline-row::before {
  content: '';
  position: absolute; top: 44px; left: 16.7%; right: 16.7%; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--silver-300) 8%, var(--silver-200) 50%, var(--silver-300) 92%, transparent 100%);
  z-index: 0;
}
.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 .5rem;
}
.timeline-step__circle {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 1.25rem;
  font-family: Georgia, serif;
  font-size: 2.1rem; font-weight: 700;
  letter-spacing: -0.03em;
  box-shadow: 0 12px 28px rgba(13,31,60,0.25),
              inset 0 2px 0 rgba(255,255,255,0.15);
  border: 5px solid #fff;
  position: relative;
}
.timeline-step__circle::after {
  content: ''; position: absolute; inset: -5px;
  border: 1px solid var(--silver-200);
  border-radius: 50%;
}
.timeline-step__label {
  display: block;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--silver-500); margin-bottom: .5rem;
}
.timeline-step h3 { font-size: 1.2rem; color: var(--navy-900); margin: 0 0 .55rem; }
.timeline-step p {
  color: var(--ink-700); font-size: .96rem; line-height: 1.55;
  max-width: 30ch; margin: 0 auto;
}

/* (6) INDUSTRY BENTO — Commercial (2x2, horizontal cards with side icons) */
.industries-bento {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.industry-bento {
  background: #fff;
  border: 1px solid var(--silver-200);
  border-radius: var(--r-lg);
  padding: 2rem 1.85rem;
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  box-shadow: 0 2px 8px rgba(13,31,60,0.05);
}
.industry-bento:hover {
  transform: translateY(-3px); border-color: var(--navy-500);
  box-shadow: 0 14px 30px rgba(13,31,60,0.12);
}
.industry-bento__icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #eaeef3;
  border-radius: 12px;
  display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1),
              0 6px 16px rgba(13,31,60,0.18);
}
.industry-bento__body h3 {
  font-size: 1.15rem; color: var(--navy-900); margin: 0 0 .4rem;
}
.industry-bento__body p {
  font-size: .94rem; color: var(--ink-700); margin: 0; line-height: 1.55;
}

/* (7) PHASE STEP FLOW — Design Build (clean horizontal with arrows) */
.phase-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: .25rem;
  align-items: stretch;
}
.phase-card {
  background: #fff;
  border: 1px solid var(--silver-200);
  border-radius: var(--r-lg);
  padding: 1.85rem 1.5rem;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.phase-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.phase-card:nth-child(5) {
  background: linear-gradient(135deg, #15305d 0%, #2a4d8f 100%);
  color: #fff;
  border-color: var(--navy-500);
}
.phase-card:nth-child(7) {
  background: linear-gradient(135deg, #0a1830 0%, #15305d 100%);
  color: #fff;
  border-color: var(--navy-700);
}
.phase-card__num {
  display: inline-block;
  font-family: Georgia, serif;
  font-size: 2.5rem; font-weight: 700; line-height: 1;
  letter-spacing: -0.03em;
  background: var(--silver-text-shine);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .25rem;
}
.phase-card__label {
  display: block;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--silver-500); margin-bottom: .65rem;
}
.phase-card:nth-child(5) .phase-card__label,
.phase-card:nth-child(7) .phase-card__label { color: var(--silver-200); }
.phase-card h3 { font-size: 1.2rem; margin: 0 0 .4rem; color: var(--navy-900); }
.phase-card:nth-child(5) h3,
.phase-card:nth-child(7) h3 { color: #fff; }
.phase-card p {
  font-size: .92rem; color: var(--ink-700); margin: 0; line-height: 1.5;
}
.phase-card:nth-child(5) p,
.phase-card:nth-child(7) p { color: var(--silver-200); }
.phase-arrow {
  display: grid; place-items: center; align-self: center;
  color: var(--silver-300);
}

/* Mobile responsive collapse for all of the above */
@media (max-width: 1024px) {
  .audiences-row { grid-template-columns: repeat(3, 1fr); }
  .bento-row, .industries-bento { grid-template-columns: 1fr; }
  .timeline-row { grid-template-columns: 1fr; gap: 2rem; max-width: 480px; }
  .timeline-row::before { display: none; }
  .phase-row {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .phase-arrow { transform: rotate(90deg); padding: .25rem 0; }
  .alert-band__row { grid-template-columns: 1fr; }
  .urgent-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 720px) {
  .audiences-row { grid-template-columns: 1fr; }
  .split-feature { grid-template-columns: 1fr; }
  .bento-card { padding: 1.75rem 1.5rem; }
  .bento-card__num { font-size: 3.5rem; }
  .timeline-step__circle { width: 72px; height: 72px; font-size: 1.75rem; }

  /* Service feature: tighten image aspect-ratio so it doesn't dominate */
  .service-feature { padding: clamp(2rem, 5vw, 2.75rem) 0; }
  .service-feature__row { gap: 1.5rem; }
  .service-feature__media { aspect-ratio: 16 / 10; }
  .service-feature__body h2 { font-size: 1.5rem; }
  .service-feature__caption { font-size: .82rem; }
  .service-feature__badge { font-size: .65rem; padding: .3rem .65rem; }

  /* Pull-quote: rein in padding + decorative quote mark on small screens */
  .pull-quote { padding: 1.5rem 1.5rem 1.4rem; margin: 2rem 0; }
  .pull-quote::before { font-size: 6rem; top: -1.25rem; left: .65rem; }
  .pull-quote blockquote { font-size: 1rem; }

  /* Alert band + urgent section: tighten on small screens */
  .alert-band { padding: 2rem 0; }
  .alert-band h2 { font-size: 1.3rem; }
  .alert-band__cta { padding: .9rem 1.2rem; font-size: 1rem; width: 100%; justify-content: center; }
  .urgent-section { padding: 2.5rem 0; }
  .urgent-headline { font-size: 1.65rem; }
  .urgent-phone { font-size: 1.2rem; padding: 1rem 1.25rem; width: 100%; justify-content: center; }
  .urgent-list { padding: 1.25rem 1.4rem; }

  /* Industry/bento cards: tighter padding */
  .industry-bento { padding: 1.4rem 1.25rem; gap: 1rem; flex-direction: column; align-items: flex-start; }
  .industry-bento__icon { width: 52px; height: 52px; }
  .bento-card { grid-template-columns: 1fr; text-align: center; }
  .bento-card::before { display: none; }

  /* Phase cards (design-build): make sure they're readable */
  .phase-card { padding: 1.4rem 1.25rem; }
  .phase-card__num { font-size: 2rem; }

  /* Sitemap grid: ensure full-width cards */
  .sitemap-section { padding: 1.25rem 1.25rem 1rem; }

  /* Thank-you: smaller icon on small screens */
  .thanks-icon { width: 76px; height: 76px; }
  .thanks-icon svg { width: 38px; height: 38px; }
  .thanks-info { padding: 1.25rem 1.4rem; }

  /* Content image inside two-col: tighten margin */
  .content-image { margin: 1.5rem 0; }

  /* Counties overview cards: tighter padding */
  .county-card { padding: 1.5rem 1.25rem; }
  .county-card h2 { font-size: 1.3rem; }

  /* Page-header: a touch more compact */
  .page-header h1 { font-size: 1.7rem; line-height: 1.15; }
  .page-header .lead { font-size: .98rem; }
  .crumbs { font-size: .82rem; }
}

/* Pull-quote / featured testimonial — used on About + select service pages */
.pull-quote {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-500) 100%);
  color: #fff;
  padding: 2.25rem 2.5rem 2rem;
  border-radius: var(--r-lg);
  position: relative;
  margin: 2.5rem 0;
  overflow: hidden;
  isolation: isolate;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: -2.25rem; left: 1rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 10rem; line-height: 1;
  color: rgba(214, 221, 230, 0.18);
  z-index: 0;
  pointer-events: none;
}
.pull-quote::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 70%);
}
.pull-quote blockquote {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-style: italic;
  line-height: 1.55;
  color: #fff;
  position: relative;
  z-index: 1;
}
.pull-quote__author {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  color: var(--silver-200);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.pull-quote__meta {
  display: block;
  font-style: normal;
  color: var(--silver-300);
  font-size: .82rem;
  font-weight: 500;
  margin-top: .15rem;
  letter-spacing: .04em;
}
.pull-quote__stars {
  margin-bottom: .9rem;
  letter-spacing: 3px;
  font-size: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #d6dde6 60%, #aab3bf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FAQ accordion */
.faq { margin-top: 3rem; }
.faq__title { margin-bottom: 1rem; font-size: 1.5rem; }
.faq__item {
  background: #fff;
  border: 1px solid var(--silver-100);
  border-radius: var(--r-md);
  margin-bottom: .55rem;
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq__item:hover { border-color: var(--silver-200); }
.faq__item[open] { border-color: var(--navy-500); box-shadow: var(--shadow-sm); }
.faq__item summary {
  padding: .9rem 3rem .9rem 1.25rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: .98rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute; right: 1.1rem; top: 50%;
  transform: translateY(-55%);
  font-size: 1.5rem; font-weight: 400; line-height: 1;
  color: var(--silver-500);
  transition: color var(--t-fast);
}
.faq__item[open] summary::after {
  content: '−'; color: var(--navy-700);
}
.faq__item[open] summary { border-bottom: 1px solid var(--silver-100); }
.faq__item p {
  padding: 1rem 1.25rem;
  margin: 0;
  color: var(--ink-700);
  font-size: .95rem;
  line-height: 1.65;
}

/* Service detail bullet grid (2-column variant of the standard bullet style) */
.bullet-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .15rem 1.5rem;
  list-style: none; padding: 0; margin: 0 0 1.25rem;
}
.bullet-grid li {
  position: relative; padding: .35rem 0 .35rem 1.6rem;
  color: var(--ink-700); font-size: .98rem;
  margin: 0; line-height: 1.55;
}
.bullet-grid li::before {
  content: ''; position: absolute; left: 0; top: .68rem;
  width: 7px; height: 7px; background: var(--silver-500);
  border-radius: 50%;
}
/* Override the generic content-area ul rule for bullet-grid (already styled above) */
.two-col > div ul.bullet-grid li::before { background: var(--silver-500); }
.two-col > div ul.bullet-grid li,
.prose ul.bullet-grid li { padding-left: 1.6rem; }

/* Form */
.form { display: grid; gap: 1.25rem; max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: block; font-weight: 600; font-size: .85rem; color: var(--ink-900); margin-bottom: .35rem; letter-spacing: .02em; }
.form input, .form select, .form textarea {
  width: 100%; padding: .75rem .9rem;
  border: 1px solid var(--silver-200);
  border-radius: var(--r-md);
  font: inherit; font-size: 1rem;
  background: #fff; color: var(--ink-900);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0; border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(21,48,93,.15);
}

.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; }
.contact-info dl { display: grid; grid-template-columns: max-content 1fr; gap: .35rem 1rem; margin: 0; }
.contact-info dt { font-weight: 700; color: var(--navy-800); }
.contact-info dd { margin: 0; color: var(--ink-700); }
.contact-info iframe { border: 0; width: 100%; height: 280px; border-radius: var(--r-md); margin-top: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band__row { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat:nth-child(3) { border-left: 0; }
  .featured-work__row { grid-template-columns: 1fr; gap: 2rem; }
  .area-grid    { grid-template-columns: repeat(2, 1fr); }
  .hero__row    { grid-template-columns: 1fr; gap: 2rem; }
  .two-col      { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-strip__row  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .site-header__row { grid-template-columns: auto auto; gap: .5rem; }
  .cta--header { display: none; }
  .header-social { display: none; }
  .nav-toggle { display: block; justify-self: end; }

  .primary-nav {
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: #fff; padding: 1rem 1.25rem; overflow: auto;
    transform: translateX(100%); transition: transform var(--t-base);
    border-top: 1px solid var(--silver-100);
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav > ul { display: block; }
  .primary-nav a { padding: .9rem .25rem; font-size: 1rem; border-bottom: 1px solid var(--silver-100); border-radius: 0; }
  .primary-nav .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: var(--silver-50); box-shadow: none; border: 0;
    margin: 0 0 .25rem .5rem; padding: 0;
  }
  .primary-nav .submenu a { padding: .6rem .9rem; font-size: .92rem; border-bottom: 1px solid #fff; }
  .primary-nav .has-children > a::after { float: right; margin-top: .35rem; }

  .mobile-call { display: flex; }
  body { padding-bottom: 76px; }

  .service-grid, .form-row, .area-grid, .site-footer__grid, .trust-strip__row, .cta-band__row, .projects-grid, .stats-band__row {
    grid-template-columns: 1fr;
  }
  .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; }
  .stat:first-child { border-top: 0; padding-top: .5rem; }

  /* --- Mobile polish --- */
  /* Ensure all CTAs meet tap-target height */
  .cta { min-height: 48px; padding: .85rem 1.25rem; font-size: 1rem; }
  /* Stack hero CTAs full-width so long "Call or Text" labels never overlap */
  .hero__actions { flex-direction: column; align-items: stretch; gap: .6rem; }
  .hero__actions .cta { width: 100%; flex: none; justify-content: center; }

  /* Tighten hero card form on small screens */
  .hero__card { padding: 1.5rem 1.25rem; }
  .hero__form .field { margin-bottom: .65rem; }

  /* Section padding shrink so home isn't endless on mobile */
  section { padding: clamp(2.5rem, 8vw, 4rem) 0; }
  .stats-band { padding: clamp(2rem, 5vw, 2.75rem) 0; }
  .section-head { margin-bottom: 2rem; }

  /* Stat numbers: don't break weird on narrow screens */
  .stat__num { font-size: 2.25rem; }

  /* Service area cards: a touch more padding for tap-comfort */
  .area-card { padding: 1.25rem 1rem; }

  /* Featured work: media first, then text — feels more visual */
  .featured-work__row { gap: 1.5rem; }
  .featured-work__caption { font-size: .85rem; }

  /* Service cards: more tap padding */
  .service-card { padding: 1.4rem 1.25rem; }
  .service-card__icon { width: 52px; height: 52px; }
  .service-card__icon svg { width: 26px; height: 26px; }

  /* Reviews on mobile — keep them tight */
  .review-card { padding: 1.4rem 1.25rem; }
  .review-quote { font-size: .95rem; }

  /* Contact form / contact grid */
  .contact-grid { gap: 1.5rem; }

  /* CTA band: stack the two buttons on their own rows, full width — the
     "Call 910-546-2150" label is wider than a half-width button and was
     overlapping "Get a Free Estimate" side-by-side. */
  .cta-band__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-band__actions .cta { width: 100%; flex: none; justify-content: center; }

  /* Footer logo sits cleaner */
  .site-footer { padding-top: 2.5rem; font-size: .9rem; }

  /* Sticky mobile call: a hair tighter so it's not huge */
  .mobile-call { padding: .8rem 1rem; font-size: .98rem; bottom: .75rem; left: .75rem; right: .75rem; }
  body { padding-bottom: 80px; }

  /* Page header on interior pages — smaller hero band */
  .page-header { padding: 2.25rem 0 2rem; }
  .page-header h1 { font-size: 1.85rem; }
  .page-header .lead { font-size: 1rem; }

  /* Remove sub-menu hover layers on mobile (already styled, just keep clean) */
  .primary-nav .submenu { box-shadow: none; }
  .cta-band__row { text-align: center; }
  .cta-band__actions { justify-content: center; }
}
