:root {
  --steel-900: #1e2732;
  --steel-700: #2f3c4a;
  --steel-500: #5f6f7f;
  --steel-300: #aeb8c2;
  --rust-700: #7a2e1c;
  --rust-600: #a23b1f;
  --rust-500: #c24a23;
  --rust-300: #e07a3f;
  --neutral-bg: #f5f6f7;
  --white: #ffffff;

  --rp-ink: var(--steel-900);
  --rp-bg: var(--neutral-bg);
  --rp-surface: var(--white);
  --rp-border: #ccd6e2;
  --rp-blue: var(--steel-700);
  --rp-slate: var(--steel-500);
  --rp-rust: var(--rust-600);
  --rp-rust-soft: rgba(162, 59, 31, 0.12);
  --rp-focus: var(--rust-600);

  --bg: var(--rp-bg);
  --card: var(--rp-surface);
  --ink: var(--rp-ink);
  --muted: #5f6f82;
  --line: var(--rp-border);
  --brand: #1c3653;
  --mobile-sticky-cta-safe-space: 170px;
}

/* ========================================
   Base / reset
======================================== */
* { box-sizing: border-box; }
html,
body { min-height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.028;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.05' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='96' height='96' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 96px 96px;
}
a { color: inherit; }
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-transform: capitalize;
}
h1,
h2,
h3,
.section-title,
.section-heading,
.card-title { text-align: center; }
button,
.inlineCta,
.ctaSmall,
.hero-button {
  font-family: inherit;
  text-transform: capitalize;
}

/* ========================================
   Shared marketing theme / background
======================================== */
.rp-theme-marketing {
  --bg: #eef2f5;
  --card: rgba(255, 250, 245, 0.75);
  --ink: var(--steel-900);
  --muted: #5f6f7f;
  --line: rgba(47, 60, 74, 0.16);
  --brand: var(--steel-900);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, rgba(194, 74, 35, 0.05) 100%),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.85), transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(194, 74, 35, 0.12), transparent 52%),
    linear-gradient(135deg, #eef2f5 0%, #dde4ea 60%, #f5f3f0 100%);
  position: relative;
}
.rp-theme-marketing::before {
  content: "";
  position: fixed;
  inset: auto -10vw -18vh auto;
  width: min(45vw, 480px);
  height: min(45vw, 480px);
  background: url('/assets/rapid-logo-A-monogram.png') no-repeat center/contain;
  opacity: 0.035;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}
.rp-theme-marketing::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0) 60%, rgba(30, 39, 50, 0.04) 100%),
    radial-gradient(rgba(174, 184, 194, 0.35) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
}
.rp-theme-marketing > * {
  position: relative;
  z-index: 1;
}
.bg-motion-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: var(--bg-opacity, 0.2);
  transform: translate3d(0, 0, 0);
  will-change: transform, background-position, opacity;
  background-image:
    radial-gradient(70% 62% at calc(18% + var(--bg-shift-x, 0%)) calc(22% + var(--bg-shift-y, 0%)), rgba(194, 74, 35, 0.11), rgba(194, 74, 35, 0) 72%),
    radial-gradient(62% 55% at calc(84% - var(--bg-shift-x, 0%)) calc(72% - var(--bg-shift-y, 0%)), rgba(47, 60, 74, 0.08), rgba(47, 60, 74, 0) 70%),
    radial-gradient(85% 85% at 50% 50%, rgba(255, 255, 255, 0), rgba(30, 39, 50, 0.035));
  background-repeat: no-repeat;
}
@media (prefers-reduced-motion: reduce) {
  .bg-motion-overlay {
    --bg-shift-x: 0%;
    --bg-shift-y: 0%;
    --bg-opacity: 0.2;
    transform: none;
  }
}

/* ========================================
   Shared layout
======================================== */
.sitePage {
  font-weight: 500;
  padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
}
.siteShell,
.siteMain {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 14px;
}
.siteMain ul {
  margin: 0 0 14px;
  padding-left: 1.25rem;
  color: var(--muted);
}
.siteMain li + li { margin-top: 0.35rem; }

/* ========================================
   Shared header / nav
======================================== */
.siteHeaderWrap {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(238, 242, 245, 0.78);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.siteHeaderInner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}
.siteBrand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 380px;
  max-width: 520px;
}
.siteBrandLogo {
  height: 34px;
  width: auto;
  flex: 0 0 auto;
}
.siteBrandLogo--mobile {
  display: none;
}
.brand-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 320px;
}
.siteBrandTitle {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}
.siteBrandSub {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
  line-height: 1.2;
}
.siteHeaderDesktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  flex: 0 1 auto;
}
.siteHeaderActions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  flex: 0 0 auto;
  z-index: 2;
}
.siteHeaderMeta {
  display: none;
  width: 100%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.siteNavToggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(47, 60, 74, 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(30, 39, 50, 0.08);
  cursor: pointer;
}
.siteNavToggleIcon {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: var(--steel-900);
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.siteNavPanel { display: none; align-items: center; }
.siteNav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.siteNav a {
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--steel-900);
  border: 1px solid transparent;
  text-transform: capitalize;
}
.siteNav a[aria-current="page"],
.siteNav a:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--line);
  box-shadow: inset 0 -2px 0 rgba(194, 74, 35, 0.18);
}
.ctaSmall,
.siteHeaderCta,
.siteNavPanelCta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ctaSmall {
  background: linear-gradient(135deg, #2f3c4a, #a23b1f);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 14px 12px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}

/* ========================================
   Shared hero
======================================== */
.hero {
  padding: 30px 0 22px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 248, 240, 0.65) 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: #e6e4e0;
}
.hero-poster,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 248, 240, 0.42));
}
.heroInner,
.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.hero-content > * {
  margin-left: auto;
  margin-right: auto;
}
.hero h1 {
  font-size: 38px;
  line-height: 1.06;
  margin: 0 0 10px;
  font-weight: 800;
  max-width: 1040px;
  text-wrap: balance;
}
.hero p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  max-width: 68ch;
}
.hero p:last-of-type { margin-bottom: 12px; }
.heroScrollCue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  margin: 34px auto 0;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 12, 18, 0.18);
  backdrop-filter: blur(6px);
}
.heroScrollCue svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}
.heroScrollCue:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}
.heroScrollCue:focus-visible {
  outline: 2px solid var(--rp-focus);
  outline-offset: 2px;
}
.mobileHomeButtonWrap { display: none; }
.mobileHomeButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(150, 161, 173, 0.55);
  background: #121923;
  color: #f5f7fa;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.mobileHomeTopLinkWrap { display: none; }
.mobileHomeTopLink {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(47, 60, 74, 0.56);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: 0;
}
.mobileHomeButtonWrap--bottom {
  margin: 18px 0 10px;
}
.mobileHomeButton--bottom {
  max-width: 360px;
  background: #121923;
  border-color: rgba(120, 80, 38, 0.5);
}

.hero-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 0;
}
.hero-home {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: min(760px, 74vh);
  padding: 60px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-home::before { display: none; }
.hero-home .hero-media { background: #10161d; }
.hero-home .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(to bottom, rgba(10, 14, 18, 0.18) 0%, rgba(10, 14, 18, 0.38) 54%, rgba(10, 14, 18, 0.66) 100%),
    linear-gradient(120deg, rgba(34, 42, 52, 0.06) 0%, rgba(0, 0, 0, 0) 52%);
}
.hero-home .hero-media-image {
  position: absolute;
  inset: 0;
  background-image: url('/assets/hero/hero-steel-frame.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center;
  will-change: transform;
  animation: heroZoom 28s ease-in-out infinite alternate;
}
.hero-home .heroInner,
.hero-home .hero-content {
  max-width: 980px;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 0 24px;
  text-align: center;
}
.hero-home .hero-content {
  background: none;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}
.hero-home .hero-eyebrow {
  margin: 0;
  color: rgba(245, 246, 248, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-home h1 {
  margin: 0;
  max-width: 14ch;
  color: #f7f7f5;
  font-size: clamp(1.9rem, 3.95vw, 2.8rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}
.hero-home p {
  margin: 0;
  max-width: 46rem;
  color: rgba(240, 241, 243, 0.9);
  font-size: 18px;
  line-height: 1.48;
}
.hero-mobile-logo {
  display: none;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-home .hero-media-image {
    animation: none;
    transform: none;
  }
}

/* ========================================
   Shared buttons / CTAs
======================================== */
.inlineCta,
.hero-button {
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease, transform 0.08s ease;
}
.inlineCta {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--steel-900);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(47, 60, 74, 0.22);
}
.inlineCta--primary {
  background: #2f3c4a;
  color: #fff;
  border-color: rgba(47, 60, 74, 0.3);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}
.hero-button {
  min-width: 228px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.hero-button--primary {
  background: linear-gradient(180deg, #324252 0%, #243341 100%);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f9fafb;
  box-shadow: 0 18px 36px rgba(8, 12, 18, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.hero-button--secondary {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(247, 249, 251, 0.32);
  color: rgba(242, 244, 246, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.inlineCta:hover,
.ctaSmall:hover,
.hero-button:hover {
  box-shadow: 0 0 0 3px var(--rp-rust-soft);
  border-color: var(--rp-rust);
}
.hero-button--secondary:hover { background: rgba(255, 255, 255, 0.08); }
.inlineCta:active,
.hero-button:active { transform: translateY(1px); }
.inlineCta:focus-visible,
.ctaSmall:focus-visible,
.hero-button:focus-visible,
.siteNavToggle:focus-visible,
.siteNav a:focus-visible,
a:focus-visible {
  outline: 3px solid var(--rp-focus);
  outline-offset: 2px;
}

/* ========================================
   Shared trust strip / metadata strip
======================================== */
.trustStrip { padding: 16px 0 6px; }
.trustStripInner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.trustStripItem {
  padding: 0 16px;
  line-height: 1.4;
  white-space: nowrap;
}
.trustStripItem + .trustStripItem {
  border-left: 1px solid rgba(47, 60, 74, 0.2);
}
.trustStrip--hero {
  width: 100%;
  padding: 14px 0 0;
}
.trustStrip--hero .trustStripInner {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  color: rgba(241, 243, 245, 0.92);
  font-size: 13px;
  font-weight: 700;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
.trustStrip--hero .trustStripItem {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(16, 22, 29, 0.72);
  line-height: 1.32;
  white-space: normal;
  text-align: center;
}
.trustStrip--hero .trustStripItem + .trustStripItem {
  border-left: none;
}

.mobileQuickLinks {
  display: none;
}
.mobileQuickLinksInner {
  width: 100%;
}
.mobileQuickLinksLabel {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
}
.mobileQuickLinksGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.mobileQuickLink {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 14px;
  border-radius: 18px;
  border: 1px solid rgba(47, 60, 74, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(30, 39, 50, 0.08);
  color: var(--steel-900);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}
.mobileQuickLink--primary {
  background: linear-gradient(180deg, #324252 0%, #243341 100%);
  border-color: rgba(36, 51, 65, 0.7);
  box-shadow: 0 18px 36px rgba(8, 12, 18, 0.18);
  color: #f9fafb;
}
.mobileQuickLink:hover {
  box-shadow: 0 0 0 3px var(--rp-rust-soft), 0 14px 30px rgba(30, 39, 50, 0.08);
  border-color: var(--rp-rust);
}
.mobileQuickLink:active {
  transform: translateY(1px);
}
.mobileQuickLink:focus-visible {
  outline: 3px solid var(--rp-focus);
  outline-offset: 2px;
}

/* ========================================
   Shared cards / sections / grids
======================================== */
.section--whatWeDo { padding-top: 76px; }
.section { padding: 24px 0; }
.section h2 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 800;
  position: relative;
  padding-bottom: 8px;
}
.section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 56px;
  height: 2px;
  background: var(--rp-rust);
  opacity: 0.35;
}
.section p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}
.panelGrid,
.projectGrid,
.siteFooterGrid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.panel,
.projectCard {
  background: rgba(255, 250, 245, 0.75);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 245, 235, 0.65));
  border: 1px solid rgba(30, 39, 50, 0.08);
  box-shadow: 0 18px 40px rgba(30, 39, 50, 0.1);
}
.panel {
  border-radius: 20px;
  padding: 20px;
}
.panel h3 {
  margin: 0 0 8px;
  font-size: 21px;
}
.projectCard {
  border-radius: 18px;
  overflow: hidden;
}
.projectCard img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #ddd;
}
.projectCardBody { padding: 16px; }

/* ========================================
   Shared footer / floating contact bar
======================================== */
.siteFooter {
  border-top: 1px solid var(--line);
  padding: 22px 0 16px;
  margin-top: 22px;
}
.siteFooter p,
.siteFooter a {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
.siteFooter strong { color: var(--steel-900); }
.mobileStickyCtas {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 10px;
  z-index: 60;
}
.mobileStickyCtas a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 12px 11px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.mobileStickyCtas .call { background: var(--rp-blue); }
.mobileStickyCtas .wa { background: #128c7e; }




.coverage-section {
  padding: 90px 0;
}
.coverage-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}
.coverage-copy h2 {
  margin: 0 0 14px;
  text-align: left;
  font-size: 34px;
}
.coverage-copy p {
  margin: 0 0 16px;
  max-width: 56ch;
}
.coverage-copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}
.coverage-copy li {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--steel-700);
}
.coverage-map-card {
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(47, 60, 74, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(251, 248, 243, 0.9));
  box-shadow: 0 22px 46px rgba(30, 39, 50, 0.13);
  overflow: hidden;
}
.coverage-map-image {
  display: block;
  width: 100%;
  height: auto;
}
.coverage-route-overlay,
.coverage-scan,
.coverage-node {
  position: absolute;
}
.coverage-route-overlay {
  inset: 0;
  width: 100%;
  height: 100%;
}
.coverage-route-overlay path {
  fill: none;
  stroke: rgba(20, 47, 81, 0.35);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  animation: coverageRouteMove 18s linear infinite;
}
.coverage-route-overlay path:nth-child(2) { animation-duration: 22s; }
.coverage-route-overlay path:nth-child(3) { animation-duration: 26s; }
.coverage-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1b3f68;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.coverage-node::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(27, 63, 104, 0.28);
  animation: coveragePulse 4.4s ease-out infinite;
}
.coverage-node--north-west { left: 31%; top: 40%; }
.coverage-node--london { left: 66%; top: 68%; }
.coverage-node--midlands { left: 51%; top: 57%; }
.coverage-node--yorkshire { left: 47%; top: 47%; }
.coverage-node--scotland { left: 44%; top: 26%; }
.coverage-node--south-wales { left: 45%; top: 67%; }
.coverage-node--south-west { left: 33%; top: 72%; }
.coverage-node--london::after { animation-delay: 0.8s; }
.coverage-node--midlands::after { animation-delay: 1.4s; }
.coverage-node--yorkshire::after { animation-delay: 0.5s; }
.coverage-node--scotland::after { animation-delay: 2s; }
.coverage-node--south-wales::after { animation-delay: 1.7s; }
.coverage-node--south-west::after { animation-delay: 2.4s; }
.coverage-scan {
  inset: -30%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%);
  opacity: 0.28;
  animation: coverageScan 17s ease-in-out infinite;
  pointer-events: none;
}
@keyframes coveragePulse {
  0% { transform: scale(0.7); opacity: 0.45; }
  70% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
@keyframes coverageRouteMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -160; }
}
@keyframes coverageScan {
  0% { transform: translateX(-8%) translateY(1%); }
  50% { transform: translateX(8%) translateY(-1%); }
  100% { transform: translateX(-8%) translateY(1%); }
}

@media (min-width: 769px) {
  .siteShell,
  .siteMain,
  .section-inner,
  .hero-inner,
  .card-grid {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
    box-sizing: border-box;
  }

  .siteHeaderInner {
    max-width: 1180px;
    padding-left: 48px;
    padding-right: 48px;
    align-items: center;
  }

  .heroInner,
  .hero-content,
  .hero-inner {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1,
  .hero-home h1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero p,
  .hero-home p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.45;
  }

  .section-heading,
  .section h2,
  .segmentCard h2,
  .projectCardBody h3,
  .panel h3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-intro,
  .section > p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .panelGrid,
  .card-grid {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
    align-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projectGrid {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    gap: 28px;
    align-items: stretch;
  }

  .projectCardBody,
  .panel {
    padding: 24px;
  }

  .section .inlineCta,
  .panel .inlineCta,
  .segmentCard .inlineCta {
    display: inline-flex;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .segmentGrid {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
  }

  .segmentCard,
  .projectCard,
  .panel {
    height: 100%;
  }
}

/* ========================================
   Responsive rules: max-width 1024px
======================================== */
@media (max-width: 1024px) {
  .siteBrandSub {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .hero h1 { font-size: 34px; }
  .hero p { font-size: 17px; }
}

/* ========================================
   Responsive rules: max-width 768px
======================================== */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .sitePage { padding-bottom: calc(var(--mobile-sticky-cta-safe-space) + env(safe-area-inset-bottom, 0px)); }
  .siteMain,
  .siteShell { padding: 0 18px; }
  .siteMain { padding-bottom: var(--mobile-sticky-cta-safe-space); }

  #siteHeader,
  .siteHeaderWrap,
  .siteHeaderInner,
  .siteBrand,
  .siteHeaderMeta,
  .siteHeaderDesktop,
  .siteHeaderActions,
  .siteNavToggle,
  .siteNavPanel,
  .siteNavPanelCta,
  .siteNav,
  .siteBrandLogo,
  .siteBrandLogo--desktop,
  .siteBrandLogo--mobile,
  .brand-block {
    display: none !important;
  }

  .hero { padding: 16px 0 16px; }
  .hero-home {
    min-height: min(470px, 58svh);
    padding: 18px 0 16px;
    justify-content: flex-end;
  }
  .hero-mobile-logo {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 120px;
    max-width: 120px;
    text-decoration: none;
    opacity: 0.85;
  }
  .hero-mobile-logo img {
    display: block;
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
  }
  .hero-home .hero-media::before {
    background-image:
      linear-gradient(to bottom, rgba(10, 14, 18, 0.1) 0%, rgba(10, 14, 18, 0.26) 48%, rgba(10, 14, 18, 0.56) 100%),
      linear-gradient(120deg, rgba(34, 42, 52, 0.05) 0%, rgba(0, 0, 0, 0) 52%);
  }
  .hero-home .hero-media-image { background-position: center 18%; }
  .hero-home .heroInner,
  .hero-home .hero-content {
    max-width: 560px;
    gap: 10px;
    padding: 76px 18px 0;
  }
  .hero h1 { font-size: 24px; line-height: 0.9; }
  .hero-home .hero-eyebrow {
    display: none;
  }
  .hero-home h1 {
    font-size: clamp(1.4rem, 5.6vw, 1.75rem);
    line-height: 0.86;
    max-width: 11ch;
    margin-bottom: 8px;
  }
  .hero p {
    margin-bottom: 6px;
    font-size: 13.5px;
    line-height: 1.34;
  }
  .hero-home p {
    margin-top: 4px;
    max-width: 30ch;
    line-height: 1.3;
  }
  .hero-actions {
    display: none;
  }
  .hero-button {
    display: flex;
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    font-size: 14px;
    border-radius: 18px;
    justify-content: center;
    text-align: center;
  }
  .hero-button--primary {
    box-shadow: 0 14px 28px rgba(8, 12, 18, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  .hero-button--secondary {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(247, 249, 251, 0.24);
    color: rgba(242, 244, 246, 0.88);
  }
  .trustStrip--hero {
    width: min(100%, 420px);
    padding-top: 6px;
  }
  .trustStrip--hero .trustStripInner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: none;
    width: 100%;
    padding: 0;
  }
  .trustStrip--hero .trustStripItem {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(16, 22, 29, 0.68);
    box-shadow: none;
    font-size: 12px;
    line-height: 1.28;
    white-space: normal;
    text-align: center;
    color: rgba(245, 246, 248, 0.94);
  }
  .trustStrip--hero .trustStripItem + .trustStripItem { border-left: none; }
  .heroScrollCue {
    width: 38px;
    height: 38px;
    margin: 10px auto 0;
  }
  .mobileHomeTopLinkWrap {
    display: block;
    margin: 2px 0 8px;
    padding-left: 2px;
  }
  .mobileHomeButtonWrap {
    display: block;
    margin: 14px 0 10px;
    text-align: center;
  }
  .mobileHomeButtonWrap--bottom {
    margin: 18px 0 12px;
  }

  .mobileQuickLinks {
    display: block;
    margin: 0 auto;
    padding: 10px 0 4px;
    scroll-margin-top: 72px;
  }

  .coverage-section {
    padding: 64px 0;
  }
  .coverage-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 22px;
  }
  .coverage-copy {
    text-align: left;
  }
  .coverage-copy h2 {
    text-align: left;
    font-size: 24px;
  }
  .coverage-copy p {
    max-width: 34ch;
  }
  .coverage-map-card {
    width: 100%;
  }

  .section--whatWeDo { padding-top: 40px; }
  .section { padding: 16px 0; }
  .section h2 {
    margin-bottom: 8px;
    font-size: 23px;
  }
  .section p,
  .siteMain li {
    font-size: 15px;
    line-height: 1.52;
  }
  .panelGrid,
  .projectGrid,
  .siteFooterGrid { gap: 10px; }
  .panel { padding: 16px; }
  .panel h3 { font-size: 19px; }
  .projectCardBody { padding: 15px; }
  .inlineCta {
    width: 100%;
    margin-top: 6px;
    text-align: center;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(47, 60, 74, 0.18);
    color: var(--muted);
  }
  .inlineCta--primary {
    padding: 12px 16px;
    background: #2f3c4a;
    border-color: rgba(47, 60, 74, 0.35);
    color: #fff;
  }

  .siteFooter {
    padding-bottom: calc(10px + var(--mobile-sticky-cta-safe-space));
    margin-top: 16px;
  }
  .mobileStickyCtas {
    left: 16px;
    right: 16px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
    gap: 8px;
  }
  .mobileStickyCtas a {
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.15;
    box-shadow: 0 8px 18px rgba(30, 39, 50, 0.12);
  }
}


/* ========================================
   Responsive rules: max-width 480px
======================================== */
@media (max-width: 480px) {
  .hero h1 { font-size: 23px; }
  .siteMain,
  .siteShell { padding: 0 14px; }
  .hero-home {
    min-height: min(450px, 60svh);
    padding-top: 16px;
  }
  .hero-mobile-logo {
    top: 16px;
    left: 16px;
    width: 120px;
    max-width: 120px;
  }
  .hero-mobile-logo img {
    max-width: 120px;
  }
  .hero-home .heroInner,
  .hero-home .hero-content { padding: 72px 8px 0; }
  .hero-home h1 {
    font-size: clamp(1.35rem, 8.2vw, 1.7rem);
    max-width: 10.5ch;
  }
  .hero-home p { max-width: 27ch; }
  .hero-actions,
  .trustStrip--hero { width: 100%; }
  .trustStripInner {
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trustStripItem {
    padding: 0 8px;
    white-space: normal;
  }
  .trustStripItem + .trustStripItem { border-left: none; }
  .trustStrip--hero .trustStripInner { grid-template-columns: 1fr; }
  .mobileStickyCtas {
    left: 12px;
    right: 12px;
  }
}


/* ========================================
   Larger shared breakpoints
======================================== */
@media (min-width: 720px) {
  .panelGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .projectGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 960px) {
  .projectGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .siteFooterGrid { grid-template-columns: 2fr 1fr; }
  .mobileStickyCtas { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .coverage-route-overlay path,
  .coverage-scan,
  .coverage-node::after {
    animation: none;
  }
}
