:root {
  --bm-ink: #252525;
  --bm-text: #3a3a3a;
  --bm-muted: #7b7f87;
  --bm-line: #dfE3EA;
  --bm-panel: #f8f9fd;
  --bm-brand: #acafba;
  --bm-accent: #e66a55;
  --bm-dark: #161c28;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", Arial, sans-serif;
  color: var(--bm-text);
  background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-weight: 900;
}

.site-shell {
  min-height: 100vh;
}

.site-header.is-open .mobile-nav {
  display: block;
}

.wordmark {
  width: 188px;
}

.hero-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(22, 28, 40, 0.46), rgba(22, 28, 40, 0.72)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.service-card {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(22, 28, 40, 0.08);
  border-color: rgba(172, 175, 186, 0.6);
}

.eyebrow {
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.section-rule {
  border-top: 1px solid var(--bm-line);
}

.section-kicker {
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.content-copy p {
  line-height: 1.85;
}

.content-copy ul {
  display: grid;
  gap: 0.9rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.content-copy li {
  line-height: 1.7;
}

.logo-cloud-item {
  border: 1px solid rgba(172, 175, 186, 0.32);
  background: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 1.75rem;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
}

.client-logo img {
  max-width: 100%;
  max-height: 74px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0);
}

.client-logo.is-tall img {
  max-height: 116px;
}

@media (min-width: 768px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3.25rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .client-logo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 3.75rem 2.75rem;
  }
}

.footer-surface {
  background: var(--bm-dark);
}

.footer-surface a:hover,
.site-header a:hover {
  color: var(--bm-brand);
}

.legal-copy p {
  line-height: 1.7;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}
