/* Breaking Ground — industrial slate + safety amber */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --soil: #1e293b;
  --soil-dk: #0f172a;
  --clay: #334155;
  --rust: #eab308;
  --rust-dk: #ca8a04;
  --sand: #e2e8f0;
  --cream: #f8fafc;
  --moss: #0f766e;
  --steel: #64748b;
  --ink: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --bg: #f1f5f9;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  --transition: 0.28s ease;
  --header-h: 86px;
  --container: 1180px;
  --font-display: "Oswald", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --accent-rgb: 234, 179, 8;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  /* avoid overflow-x clip/hidden on html/body — it breaks position:sticky sidebars */
  max-width: 100%;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--soil-dk); text-decoration: none; transition: color var(--transition); }
a:hover,
a:focus-visible { color: var(--rust); }
ul { list-style: none; }
.container { width: min(100%, var(--container)); margin: 0 auto; padding: 0 clamp(1rem, 3vw, 1.75rem); }
.section-pad { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.accent { color: var(--rust); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.85rem 1.4rem; min-height: 3rem; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.04em; text-transform: uppercase; border: none; cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary,
a.btn-primary,
.prose a.btn-primary,
button.btn-primary,
input.btn-primary {
  background: var(--rust);
  color: #000000;
  border: 2px solid var(--rust);
}
.btn-primary:hover,
.btn-primary:focus-visible,
a.btn-primary:hover,
a.btn-primary:focus-visible,
.prose a.btn-primary:hover,
.prose a.btn-primary:focus-visible,
button.btn-primary:hover,
button.btn-primary:focus-visible {
  background: var(--soil-dk);
  color: var(--rust);
  border-color: var(--soil-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
  outline: none;
}
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.75); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-dark,
a.btn-dark,
.prose a.btn-dark {
  background: var(--soil);
  color: var(--sand);
  border: 2px solid var(--soil);
}
.btn-dark:hover,
.btn-dark:focus-visible,
a.btn-dark:hover,
a.btn-dark:focus-visible,
.prose a.btn-dark:hover,
.prose a.btn-dark:focus-visible {
  background: var(--soil-dk);
  color: var(--rust);
  border-color: var(--soil-dk);
  outline: none;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.12);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(0.5rem, 1.2vw, 1rem); min-height: var(--header-h);
  padding-block: 0.45rem;
}
.header-lead { display: flex; align-items: center; gap: 0.65rem; flex: 0 0 auto; }
.brand { display: flex; align-items: center; gap: 0.6rem; color: var(--sand); }
.brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 4px; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.1vw, 1.05rem);
  font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase;
}
.brand-tagline {
  font-size: clamp(0.58rem, 0.75vw, 0.68rem);
  color: rgba(226,232,240,0.7); letter-spacing: 0.04em; text-transform: uppercase;
}

.site-nav {
  display: flex; align-items: center; justify-content: center;
  flex: 1 1 auto; min-width: 0; gap: 0; flex-wrap: nowrap;
}
.site-nav > a, .nav-dropdown-btn {
  color: rgba(248,250,252,0.92);
  font-size: clamp(0.84rem, 1.1vw, 1rem);
  font-weight: 600;
  padding: 0.4rem clamp(0.32rem, 0.6vw, 0.6rem);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); display: inline-flex; align-items: center; gap: 0.28rem;
  white-space: nowrap; line-height: 1.2;
}
.site-nav > a:hover, .nav-dropdown-btn:hover, .site-nav > a.active { color: var(--rust); }
.nav-chevron {
  width: 0; height: 0;
  border-left: 3.5px solid transparent; border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor; opacity: 0.85; flex: 0 0 auto;
}
.nav-dropdown-wrap { position: relative; flex: 0 0 auto; }

.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 220px; z-index: 200;
  background: #0b1220; border: 1px solid rgba(226,232,240,0.18);
  box-shadow: var(--shadow); padding: 0.55rem; border-radius: var(--radius);
}
.nav-dropdown-menu--mega {
  min-width: min(560px, 72vw);
  left: 50%; transform: translateX(-35%);
}
.nav-menu-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.35rem 0.85rem;
}
.nav-menu-col { display: grid; gap: 0.1rem; align-content: start; }
.nav-menu-label {
  font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rust);
  margin: 0.15rem 0.55rem 0.35rem; padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(226,232,240,0.12);
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown-wrap:hover > .nav-dropdown-menu { display: block; }
  /* Keyboard only — avoids sticky open after mouse click (:focus-within) */
  .nav-dropdown-wrap:focus-within:not(:hover) > .nav-dropdown-menu { display: block; }
}
.nav-dropdown-wrap.open > .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block; padding: 0.45rem 0.6rem; color: var(--sand);
  font-size: 0.84rem; border-radius: 3px; white-space: normal;
}
.nav-dropdown-menu a:hover { background: rgba(var(--accent-rgb),0.16); color: var(--white); }

.header-cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.4rem; flex: 0 0 auto;
}
.header-cta-row { display: flex; align-items: center; gap: 0.65rem; }
.btn.btn-header {
  min-height: 2rem; height: 2rem; padding: 0 0.8rem; font-size: 0.72rem;
  line-height: 1; white-space: nowrap;
  color: #000000;
}
.btn.btn-header:hover,
.btn.btn-header:focus-visible {
  transform: none;
  box-shadow: none;
  background: var(--soil-dk);
  color: var(--rust);
  border-color: var(--soil-dk);
}

/* Faith Works–style phone CTA */
.bg-header-call {
  display: inline-flex; flex-direction: row; align-items: center; gap: 0.5rem;
  flex-shrink: 0; text-decoration: none; color: var(--sand);
  transition: transform 0.18s ease;
}
.bg-header-call:hover,
.bg-header-call:focus-visible { transform: translateY(-1px); outline: none; }
.bg-header-call__icon {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--rust); color: var(--rust);
  background: rgba(var(--accent-rgb), 0.12);
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.22);
}
.bg-header-call__icon svg { display: block; }
.bg-header-call__text {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 0.05rem; line-height: 1.1; min-width: 0;
}
.bg-header-call__label {
  font-size: clamp(0.5rem, 0.15vw + 0.44rem, 0.6rem);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(226, 232, 240, 0.88);
}
.bg-header-call__number {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 0.35vw + 0.62rem, 0.92rem);
  font-weight: 700; letter-spacing: 0.02em; color: var(--white); white-space: nowrap;
}
.bg-header-call:hover .bg-header-call__icon,
.bg-header-call:focus-visible .bg-header-call__icon {
  border-color: #facc15; color: #fde68a; background: rgba(var(--accent-rgb), 0.22);
}

.header-social {
  display: flex; align-items: center; justify-content: center; gap: 0.3rem;
  width: 100%;
}
.header-social .social-icon { width: 1.55rem; height: 1.55rem; }

.hamburger-btn {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.hamburger-btn span { width: 22px; height: 2px; background: var(--sand); display: block; }

.nav-social { display: none; align-items: center; gap: 0.45rem; margin: 0.75rem 0 0.25rem; }
.footer-social { display: flex; align-items: center; gap: 0.45rem; margin: 1rem 0 0; }

.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 999px; color: var(--sand);
  border: 1px solid rgba(226,232,240,0.25);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-icon:hover { background: var(--rust); color: var(--ink); border-color: var(--rust); }

.related-links {
  margin: 2rem 0; padding: 1.25rem 1.35rem; background: var(--white);
  border: 1px solid #dbe3ee; border-left: 4px solid var(--rust); border-radius: var(--radius);
}
.related-links h3 { margin-top: 0; color: var(--ink); }
.related-links-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem 1rem; margin-top: 0.75rem;
}
.related-links a { color: var(--soil-dk); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.related-links a:hover,
.related-links a:focus-visible { color: var(--rust); }

/* Hero — Roof Monsters–style Ken Burns slideshow */
.hero-stage { position: relative; }
.hero {
  position: relative;
  min-height: clamp(32rem, 72svh, 48rem);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: var(--soil-dk);
}
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease; overflow: hidden;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: -4%;
  background-size: cover;
  /* Bottom-heavy crop — trims sky / top of frame */
  background-position: center 88%;
  transform: scale(1);
}
img.hero-slide-bg.hero-lcp-img {
  width: calc(100% + 8%); height: calc(100% + 8%);
  object-fit: cover; object-position: center 88%;
  inset: -4%; border: 0; max-width: none;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero-slide.active .hero-slide-bg {
  animation: kenBurns 7s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.03); }
  to { transform: scale(1.09); }
}
.bg-hero-slide-2 { background-image: url("../images/hero/IMG_8286-scaled.jpg"); }
.bg-hero-slide-3 { background-image: url("../images/hero/IMG_9083-scaled.jpg"); }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(15,23,42,0.72) 0%, rgba(15,23,42,0.42) 48%, rgba(15,23,42,0.55) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active .hero-slide-bg { animation: none; }
  .hero-slide { transition: none; }
  .cta-band__bg img { transform: none !important; }
}
.hero__inner {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1rem, 2.5vw, 1.75rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
.hero__copy {
  color: var(--cream);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 0.75rem;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700; line-height: 1.05;
  font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 16ch; margin: 0 auto 0.85rem;
  text-transform: uppercase;
}
.hero-lead {
  max-width: 42ch; margin: 0 auto 1.4rem;
  font-size: clamp(1.18rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

.hero-card {
  width: min(100%, 456px);
  padding: 1.05rem 1.2rem 1.15rem;
  border-radius: 20px;
  color: var(--cream);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.42) 0%,
    rgba(30, 41, 59, 0.58) 100%
  );
  border: 1px solid rgba(234, 179, 8, 0.22);
  backdrop-filter: blur(20px) saturate(125%);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.72rem;
  margin: 0 0 0.65rem;
  border-radius: 999px;
  background: rgba(234, 179, 8, 0.16);
  border: 1px solid rgba(234, 179, 8, 0.28);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fde68a;
  font-weight: 700;
}
.hero-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.35rem;
  line-height: 1.15;
}
.hero-card__note {
  font-size: 0.84rem;
  color: rgba(248, 250, 252, 0.86);
  margin: 0 0 0.85rem;
  line-height: 1.45;
}
.form-grid--hero { gap: 0.55rem; }
.form-grid.form-grid--hero label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #facc15;
}
.form-grid--hero input,
.form-grid--hero textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.24);
  color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-grid--hero input::placeholder,
.form-grid--hero textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.form-grid--hero input:focus,
.form-grid--hero textarea:focus {
  outline: 0;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(234, 179, 8, 0.5);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.18);
}
.form-grid--hero textarea { min-height: 3.5rem; resize: vertical; }
.form-grid--hero .btn {
  width: 100%;
  margin-top: 0.15rem;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(234, 179, 8, 0.28);
}
.form-grid--hero .form-note {
  margin: 0;
  text-align: center;
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.82rem;
}
.form-grid--hero .form-note a {
  color: #fde68a;
  font-weight: 700;
}
.form-grid--hero .form-note a:hover { color: #ffffff; }

.hero-card--bridge { display: none; }

/* Page hero (inner) */
.page-hero {
  position: relative; min-height: 42vh; display: flex; align-items: flex-end;
  background: var(--soil-dk); overflow: hidden;
}
.page-hero--compact {
  min-height: 0;
  align-items: center;
  background: var(--soil-dk);
}
.page-hero--compact .page-hero__copy {
  padding: clamp(1.1rem, 2.5vw, 1.65rem) 0;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.2), rgba(15,23,42,0.9));
}
.page-hero__credit {
  position: absolute;
  right: 0.75rem;
  bottom: 0.55rem;
  z-index: 3;
  margin: 0;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  background: rgba(15, 23, 42, 0.55);
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  pointer-events: none;
}
.page-hero__copy {
  position: relative; z-index: 2; width: min(1180px, calc(100% - 2rem));
  margin: 0 auto; padding: 3rem 0 2.5rem; color: var(--cream);
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase; line-height: 1.1; max-width: none; width: 100%;
  overflow-wrap: anywhere; word-break: break-word; hyphens: auto;
}
.page-hero--compact h1 {
  font-size: clamp(1.35rem, 4.8vw, 2.25rem);
  max-width: none;
  width: 100%;
}
.breadcrumbs { font-size: 0.85rem; color: rgba(247,242,233,0.65); margin-bottom: 0.75rem; }
.breadcrumbs a { color: rgba(247,242,233,0.85); }
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible { color: var(--rust); }

/* Sections */
.section-eyebrow {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 0.6rem;
}
h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15; text-transform: uppercase; margin-bottom: 0.85rem; color: var(--ink);
}
h3 { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; margin: 1.5rem 0 0.6rem; color: var(--soil); }
.prose p { margin-bottom: 1rem; color: var(--text); max-width: 70ch; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin: 0 0 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--soil-dk); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover,
.prose a:focus-visible { color: var(--rust); }
.prose a.btn {
  text-decoration: none;
}

.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split--area {
  align-items: start;
}
.split--area .form-card--sticky {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: calc(var(--header-h) + 0.75rem);
  align-self: start;
  max-height: calc(100svh - var(--header-h) - 1.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 3;
}
.split--area .prose {
  grid-column: 1;
  grid-row: 1;
}
.split--contact {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.72fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}
.split--contact .form-card--sticky {
  position: sticky;
  top: calc(var(--header-h) + 0.75rem);
  align-self: start;
  max-height: calc(100svh - var(--header-h) - 1.25rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 3;
}
.area-local-shot {
  margin: 0 0 1.35rem;
  background: var(--soil-dk);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.area-local-shot img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
}
.area-local-shot figcaption {
  padding: 0.7rem 0.95rem 0.85rem;
  color: #e2e8f0;
  font-size: 0.88rem;
  line-height: 1.4;
  background: var(--soil-dk);
}
.area-local-shot figcaption strong {
  color: #fff;
  font-weight: 700;
}
.media-stage {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 320px; box-shadow: var(--shadow); background: var(--soil);
}
.media-stage img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.media-stage::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 35%;
  background: linear-gradient(transparent, rgba(26,22,18,0.55));
  pointer-events: none;
}

.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem;
}
.service-tile {
  position: relative; min-height: 240px; overflow: hidden; border-radius: var(--radius);
  background: var(--soil-dk); color: var(--cream); display: flex; align-items: flex-end;
  transition: transform var(--transition);
}
.service-tile:hover { transform: translateY(-4px); }
.service-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; transition: opacity var(--transition), transform 0.6s ease; }
.service-tile:hover img { opacity: 0.6; transform: scale(1.05); }
.service-tile__body { position: relative; z-index: 1; padding: 1.25rem; }
.service-tile h3 { color: var(--cream); margin: 0 0 0.35rem; font-size: 1.15rem; }
.service-tile p { font-size: 0.92rem; color: rgba(247,242,233,0.8); margin: 0; }

.feature-list { display: grid; gap: 0.75rem; margin: 1.25rem 0; }
.feature-list li {
  display: flex; gap: 0.65rem; align-items: flex-start;
  padding: 0.75rem 0.9rem; background: var(--white); border-left: 3px solid var(--rust);
  box-shadow: 0 2px 10px rgba(26,22,18,0.05);
}
.feature-list .mark { color: var(--rust); font-weight: 800; }

.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 2rem 0; padding: 1.5rem; background: var(--soil); color: var(--sand); border-radius: var(--radius);
}
.stat-row strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--cream); }
.stat-row span { font-size: 0.88rem; opacity: 0.85; }

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}
.cta-band--parallax { min-height: clamp(28rem, 52vw, 36rem); }
.cta-band__bg {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
  pointer-events: none;
}
.cta-band__bg img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center 42%;
  transform: translate3d(0, var(--bg-shift, 0px), 0);
  will-change: transform;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.78) 42%, rgba(30, 41, 59, 0.55) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.35) 0%, transparent 38%);
}
.cta-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.cta-band__copy h2 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 16ch;
  margin-bottom: 0.85rem;
}
.cta-band__lede {
  color: rgba(248, 250, 252, 0.88);
  max-width: 52ch;
  margin-bottom: 1.35rem;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.55;
}
.cta-band__points {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.cta-band__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(234, 179, 8, 0.14);
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.92rem;
  line-height: 1.45;
}
.cta-band__points strong { color: #fde68a; }
.cta-band__mark {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--rust);
  padding-top: 0.1rem;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cta-band__form.hero-card {
  align-self: center;
}
.cta-band__form .hero-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

/* Legacy contact-page layout */
.cta-band-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(247,242,233,0.85); max-width: 55ch; margin-bottom: 1.25rem; }

.form-card {
  background: var(--white); color: var(--text); padding: 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-card h3 { margin-top: 0; }
.form-card--sticky {
  padding: 1.1rem 1.15rem 1.15rem;
}
.form-card--sticky h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}
.form-grid { display: grid; gap: 0.85rem; }
.form-grid--area {
  gap: 0.65rem;
}
.form-grid--area .form-grid__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.form-grid--area label {
  font-size: 0.8rem;
}
.form-grid--area input,
.form-grid--area select,
.form-grid--area textarea {
  padding: 0.6rem 0.75rem;
}
.form-grid--area textarea {
  min-height: 0;
  resize: vertical;
}
.form-grid--area .btn {
  min-height: 2.65rem;
  padding: 0.7rem 1.1rem;
}
.form-grid--area .form-note {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  line-height: 1.35;
}
.form-grid label { display: grid; gap: 0.3rem; font-size: 0.88rem; font-weight: 600; color: var(--soil); }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; padding: 0.75rem 0.85rem; border: 1px solid #d5cbbd; border-radius: var(--radius);
  font: inherit; background: #fff; color: var(--ink);
}
.form-grid textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; }

.faq details {
  border-bottom: 1px solid #e0d6c8; padding: 0.9rem 0;
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--soil); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin-top: 0.55rem; color: var(--muted); }

.project-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.project-card {
  background: var(--white); overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow);
}
.project-card > a {
  display: block;
  background: var(--soil-dk);
}
.project-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: top center;
  background: var(--soil-dk);
}
.project-card__body { padding: 1.1rem 1.2rem 1.35rem; }
.project-card h3 { margin-top: 0; }
.project-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.4rem; }

.project-composite {
  margin: 0 0 2rem;
  background: #0f172a;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.project-composite img {
  display: block;
  width: 100%;
  height: auto;
}
.project-composite figcaption {
  padding: 0.85rem 1.1rem 1.05rem;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.45;
}
.project-case__story {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.service-case.section-pad {
  padding: clamp(1.35rem, 3vw, 2.35rem) 0 clamp(2rem, 4vw, 3rem);
}
.service-case .project-composite {
  margin: 0 0 1.15rem;
}
.service-case .project-case__story {
  gap: clamp(1.1rem, 2.2vw, 1.65rem);
}
.service-case .project-case__cta {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}
.project-case__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 0 0 1.25rem;
}
.project-case__actions .btn {
  margin: 0;
}
.service-case .project-mirror__copy p:last-child {
  margin-bottom: 0;
}
.project-case__intro,
.project-case__section,
.project-case__cta {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 2.5vw, 2rem);
}
.project-mirror {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.2fr);
  gap: clamp(1.1rem, 2.5vw, 2rem);
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(0.85rem, 2vw, 1.25rem);
}
.project-mirror--flip {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.95fr);
}
.project-mirror--flip .project-mirror__media { order: 2; }
.project-mirror--flip .project-mirror__copy { order: 1; }
.project-mirror__media {
  margin: 0;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: #0f172a;
}
.project-mirror__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.project-mirror__media figcaption {
  padding: 0.65rem 0.8rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 650;
  color: #e2e8f0;
  line-height: 1.35;
}
.project-mirror__copy {
  padding: 0.35rem 0.35rem 0.35rem 0.15rem;
}
.project-mirror__copy h2 {
  margin-top: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}
.project-more {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.project-more__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.project-gallery-title {
  margin: 0;
  font-size: 1.25rem;
}
.project-shot {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.project-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.project-shot figcaption {
  padding: 0.7rem 0.9rem 0.85rem;
}
.project-shot__label {
  display: block;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--soil);
  line-height: 1.35;
}
@media (max-width: 900px) {
  .project-mirror,
  .project-mirror--flip {
    grid-template-columns: 1fr;
  }
  .project-mirror--flip .project-mirror__media,
  .project-mirror--flip .project-mirror__copy { order: initial; }
  .project-more__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .project-more__grid { grid-template-columns: 1fr; }
}

.area-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
}
.area-grid a {
  display: block; padding: 0.85rem 1rem; background: var(--white);
  border: 1px solid #dbe3ee; border-radius: var(--radius); font-weight: 600; color: var(--soil);
}
.area-grid a:hover { border-color: var(--rust); color: var(--rust); }

.price-table {
  width: 100%; border-collapse: collapse; margin: 1.25rem 0 2rem; background: var(--white);
  box-shadow: var(--shadow);
}
.price-table th, .price-table td {
  text-align: left; padding: 0.9rem 1rem; border-bottom: 1px solid #dbe3ee;
}
.price-table th { background: var(--soil); color: var(--sand); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; }
.price-note { font-size: 0.9rem; color: var(--muted); }

.policy-wrap { max-width: 760px; }
.policy-wrap h2 { margin-top: 2rem; }

/* Footer */
.site-footer {
  background: var(--soil-dk); color: rgba(248,250,252,0.82); padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem;
}
.site-footer h4 {
  font-family: var(--font-display); color: var(--cream); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.85rem; font-size: 0.95rem;
}
.site-footer a { color: rgba(248,250,252,0.82); }
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--rust); }
.site-footer ul { display: grid; gap: 0.45rem; }
.footer-brand p { margin-top: 0.75rem; max-width: 36ch; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(226,232,240,0.12); padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal--up { transform: translate3d(0, 120px, 0); }
.reveal--down { transform: translate3d(0, -100px, 0); }
.reveal--left { transform: translate3d(-130px, 0, 0); }
.reveal--right { transform: translate3d(130px, 0, 0); }
.reveal--fade { transform: none; }
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal--fade.is-visible { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--up,
  .reveal--down,
  .reveal--left,
  .reveal--right,
  .reveal--fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .split, .split--reverse, .cta-band-grid, .cta-band__inner, .service-grid, .project-grid, .footer-grid, .stat-row, .area-grid, .related-links-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    max-width: min(720px, calc(100% - 2rem));
    gap: 0;
    padding: clamp(1.75rem, 5vw, 2.75rem) 0 clamp(2rem, 5vw, 3rem);
  }
  .hero-stage {
    overflow: visible;
    padding-bottom: 0;
  }
  .hero {
    min-height: clamp(20rem, 48svh, 28rem);
    height: auto;
    overflow: hidden;
    align-items: center;
  }
  .hero-card--desktop { display: none; }
  .hero__actions { display: none; }
  .hero-card--bridge {
    display: block;
    position: relative;
    z-index: 5;
    width: min(100% - 2rem, 860px);
    max-width: none;
    margin: -3.25rem auto -1.25rem;
    padding: 1rem 1.1rem 1.05rem;
  }
  .hero-card__bridge-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.85rem;
    margin-bottom: 0.75rem;
  }
  .hero-card__bridge-head .hero-card__eyebrow { margin: 0; }
  .hero-card__bridge-head .hero-card__title {
    margin: 0;
    font-size: 1.1rem;
  }
  .form-grid.form-grid--hero-bridge {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.65rem;
    align-items: end;
  }
  .form-grid.form-grid--hero-bridge label:has(textarea) {
    grid-column: 1 / 3;
  }
  .form-grid.form-grid--hero-bridge .btn {
    grid-column: 3;
    width: 100%;
    margin: 0;
    min-height: 2.85rem;
    align-self: end;
  }
  .form-grid.form-grid--hero-bridge .form-note {
    grid-column: 1 / -1;
  }
  .form-grid.form-grid--hero-bridge textarea {
    min-height: 2.85rem;
  }
  .hero-stage + .section-pad {
    padding-top: clamp(3.5rem, 8vw, 5rem);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; flex-wrap: wrap; }
  .site-nav.open {
    display: flex; flex-direction: column; align-items: stretch; flex-wrap: nowrap;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--soil-dk); padding: 1rem; gap: 0.25rem; z-index: 120;
    border-bottom: 1px solid rgba(226,232,240,0.12); max-height: calc(100svh - var(--header-h)); overflow: auto;
  }
  .nav-dropdown-menu,
  .nav-dropdown-menu--mega {
    position: static; display: none; box-shadow: none; border: none; background: transparent;
    padding: 0.25rem 0 0.25rem 0.65rem; min-width: 0; transform: none; left: auto;
  }
  .nav-dropdown-wrap.open > .nav-dropdown-menu { display: block; }
  .nav-menu-cols { grid-template-columns: 1fr; }
  .nav-social { display: flex; }
  .header-social { display: none; }
  .header-cta { align-items: center; }
  .hamburger-btn { display: flex; }
  .header-inner { position: relative; }
}
@media (max-width: 640px) {
  .service-grid, .project-grid, .area-grid, .stat-row, .footer-grid, .cta-band-grid, .cta-band__inner, .split, .related-links-grid {
    grid-template-columns: 1fr;
  }
  .split--area .form-card--sticky,
  .split--area .prose {
    grid-column: auto;
    grid-row: auto;
  }
  .split--contact .form-card--sticky {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .split--area .form-card--sticky {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .form-grid--area .form-grid__row {
    grid-template-columns: 1fr;
  }
  .hero-card--bridge {
    margin-top: -2.75rem;
    margin-bottom: -0.75rem;
  }
  .form-grid.form-grid--hero-bridge {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid.form-grid--hero-bridge label:has(textarea),
  .form-grid.form-grid--hero-bridge .btn {
    grid-column: 1 / -1;
  }
  .bg-header-call__text { display: none; }
  .brand-tagline { display: none; }
  .btn.btn-header { padding: 0 0.65rem; }
}

/* Local trust: Google reviews carousel + map (static, Knight Group pattern) */
.bg-local-trust.section-pad {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}
.bg-local-trust {
  background: var(--soil-dk);
  color: var(--cream);
  border-top: 1px solid rgba(234, 179, 8, 0.18);
  border-bottom: 1px solid rgba(234, 179, 8, 0.12);
}
.bg-local-trust .section-eyebrow { color: var(--rust); margin-bottom: 0.15rem; }
.bg-local-trust h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0.2rem 0 0.65rem;
  max-width: none;
  width: 100%;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
}
.bg-map-review-shell {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: var(--shadow);
}
.bg-google-reviews-showcase {
  padding: 0.95rem 1rem 0.85rem;
  text-align: center;
}
.bg-google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 0.65rem;
  flex-wrap: wrap;
}
.bg-google-g-logo {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: block;
}
.bg-google-reviews-header > span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.bg-google-stars-display {
  color: #fbbc04;
  font-size: 0.88rem;
  letter-spacing: 1px;
}
.bg-google-reviews-summary {
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
}
.bg-review-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.bg-review-carousel-track-outer {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.bg-review-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.bg-review-card {
  min-width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  flex: 0 0 calc((100% - 32px) / 3);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 6px;
  padding: 0.85rem 0.9rem 0.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--ink);
  min-height: 0;
}
.bg-review-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.bg-review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.bg-review-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.15;
}
.bg-review-sub {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.25;
}
.bg-stars {
  color: #ca8a04;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.bg-review-text {
  color: #334155;
  font-size: 0.84rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.bg-review-date {
  color: #64748b;
  font-size: 0.75rem;
  margin-top: auto;
}
.bg-review-carousel-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(234, 179, 8, 0.35);
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.16);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.bg-review-carousel-btn:hover:not(:disabled),
.bg-review-carousel-btn:focus-visible:not(:disabled) {
  background: var(--rust);
  color: var(--ink);
  border-color: var(--rust);
  transform: translateY(-1px);
}
.bg-review-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.bg-review-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.55rem;
}
.bg-review-dot {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bg-review-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
  transition: background var(--transition), transform var(--transition);
}
.bg-review-dot.is-active::after {
  background: var(--rust);
  transform: scale(1.2);
}
.bg-google-review-links {
  margin: 0.55rem 0 0;
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.82rem;
}
.bg-google-review-links a {
  color: #fde68a;
  font-weight: 700;
}
.bg-google-review-links a:hover,
.bg-google-review-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}
.bg-map-panel {
  position: relative;
  height: clamp(170px, 22vw, 240px);
  overflow: hidden;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}
.bg-map-panel .bg-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(1.04) brightness(0.86);
}
.bg-map-overlay {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-width: calc(100% - 1.5rem);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.88);
  color: var(--white);
  padding: 0.55rem 0.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.bg-map-overlay strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
}
.bg-map-overlay span {
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.76rem;
}
.bg-map-rating {
  color: #fde68a !important;
  font-size: 0.78rem !important;
  font-weight: 700;
}
@media (min-width: 960px) {
  .bg-map-review-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.85fr);
    align-items: stretch;
  }
  .bg-google-reviews-showcase {
    padding: 0.95rem 1rem 0.85rem;
  }
  .bg-review-card {
    min-width: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
    flex: 0 0 calc((100% - 16px) / 2);
  }
  .bg-map-panel {
    height: auto;
    min-height: 100%;
    border-top: 0;
    border-left: 1px solid rgba(148, 163, 184, 0.22);
  }
}
@media (max-width: 1100px) and (min-width: 960px) {
  .bg-review-card {
    min-width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 959px) {
  .bg-review-card {
    min-width: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
    flex-basis: calc((100% - 16px) / 2);
  }
}
@media (max-width: 760px) {
  .bg-google-reviews-showcase { padding: 0.85rem 0.7rem 0.75rem; }
  .bg-review-card {
    min-width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .bg-review-carousel-btn { width: 36px; height: 36px; }
  .bg-map-panel { height: clamp(180px, 42vw, 230px); }
  .bg-map-overlay {
    left: 0.65rem;
    bottom: 0.65rem;
    max-width: min(78%, 230px);
    padding: 0.45rem 0.65rem;
  }
  .bg-local-trust h2 { max-width: none; }
}

/* Service pages — checklist panels + sticky estimate sidebar */
.service-page.section-pad { padding-top: clamp(1.75rem, 3vw, 2.5rem); }
.service-page > .container + .container { margin-top: 1.15rem; }
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.72fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  /* stretch so aside is as tall as main — required for sticky form travel */
  align-items: stretch;
}
.service-main { display: grid; gap: 1.15rem; min-width: 0; }
.service-photos-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.72fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}
.service-photos-row--checks-only {
  grid-template-columns: minmax(280px, 0.72fr);
  justify-content: end;
}
.service-photos-row .service-aside__card--checks {
  position: sticky;
  top: calc(var(--header-h) + 0.75rem);
}
.service-tail { max-width: var(--container); }
.service-panel {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem 1.35rem;
}
.service-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin: 0 0 0.55rem;
  color: var(--soil-dk);
}
.service-panel__lead {
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.45;
  max-width: 62ch;
}
.service-panel__actions {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  margin-top: 1.1rem;
}
.service-lead-photo {
  margin: 1.1rem 0 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--soil-dk);
}
.service-lead-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
}
.service-lead-photo figcaption {
  padding: 0.65rem 0.9rem 0.8rem;
  color: #e2e8f0;
  font-size: 0.88rem;
  line-height: 1.4;
}
.check-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0.35rem 0 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2.45rem;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.4;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 1.05rem;
  height: 1.05rem;
  transform: translateY(-50%);
  border-radius: 4px;
  background: var(--rust);
  box-shadow: inset 0 0 0 2px rgba(15, 23, 42, 0.08);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 50%;
  width: 0.28rem;
  height: 0.55rem;
  border: solid #0f172a;
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
}
.check-list--aside li {
  font-size: 0.88rem;
  padding: 0.55rem 0.7rem 0.55rem 2.2rem;
}
.service-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.service-shot {
  margin: 0;
  background: var(--soil-dk);
  border-radius: 6px;
  overflow: hidden;
}
.service-shot img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-shot figcaption {
  padding: 0.55rem 0.75rem 0.7rem;
  color: #e2e8f0;
  font-size: 0.82rem;
  line-height: 1.35;
}
.service-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
  align-self: stretch;
  min-height: 100%;
}
.service-aside__card {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.15rem 1.2rem;
}
.service-aside__card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}
.service-aside__note {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}
.service-aside .form-card--sticky {
  position: sticky;
  top: calc(var(--header-h) + 0.75rem);
  max-height: calc(100svh - var(--header-h) - 1.25rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 3;
  padding: 1.1rem 1.15rem 1.2rem;
  align-self: start;
}
.service-aside__card--checks {
  background: var(--soil-dk);
  color: var(--cream);
  border-color: rgba(234, 179, 8, 0.28);
}
.service-aside__card--checks h3 { color: var(--white); }
.service-aside__card--checks .check-list li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.28);
  color: rgba(248, 250, 252, 0.92);
}
.service-aside__card--checks .check-list li::after {
  border-color: #0f172a;
}
@media (max-width: 980px) {
  .service-layout,
  .service-photos-row { grid-template-columns: 1fr; }
  .service-photos-row--checks-only { grid-template-columns: 1fr; }
  .service-aside .form-card--sticky,
  .service-photos-row .service-aside__card--checks {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .service-aside { order: -1; }
}
@media (max-width: 640px) {
  .service-shot-grid { grid-template-columns: 1fr; }
  .service-lead-photo img { max-height: 240px; }
  .service-shot img { height: 200px; }
}
