/* SignalRoute · Brand stylesheet
   Palette B "Authority" with Cream
   Mobile-first, fluid typography, accessible
   ----------------------------------------------------------------- */

/* ----- 1. Tokens ------------------------------------------------- */
:root {
  /* Brand palette */
  --brand: #E10600;
  --brand-hover: #B30500;
  --brand-tint: #FFE5E3;
  --navy: #0B1929;
  --navy-2: #122139;
  --navy-3: #1A2B47;
  --steel: #334155;
  --steel-2: #475569;
  --steel-3: #64748B;
  --concrete: #E2E8F0;
  --concrete-2: #CBD5E1;
  --cream: #FAF7F2;
  --cream-2: #F4F0E8;
  --white: #FFFFFF;
  --ink: #0B1929;
  --text: #1F2937;
  --text-muted: #475569;
  --border: #E5E7EB;
  --border-strong: #CBD5E1;
  --success: #047857;
  --focus: #1D4ED8;

  /* Typography */
  --font-heading: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Fluid type scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: clamp(0.95rem, 0.92rem + 0.15vw, 1.0625rem);
  --fs-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.7vw, 1.625rem);
  --fs-h2: clamp(1.625rem, 1.3rem + 1.4vw, 2.375rem);
  --fs-h1: clamp(2.125rem, 1.5rem + 2.6vw, 3.5rem);
  --fs-display: clamp(2.5rem, 1.5rem + 3.8vw, 4.5rem);
  --fs-eyebrow: clamp(0.75rem, 0.7rem + 0.1vw, 0.8125rem);

  /* Spacing */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 6vw, 6rem);
  --section-y-sm: clamp(2.5rem, 4vw, 4rem);

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 960px;
  --container-wide: 1440px;
  --header-h: 76px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(11, 25, 41, .04);
  --shadow-sm: 0 1px 3px rgba(11, 25, 41, .06), 0 1px 2px rgba(11, 25, 41, .04);
  --shadow-md: 0 6px 18px rgba(11, 25, 41, .07), 0 2px 6px rgba(11, 25, 41, .04);
  --shadow-lg: 0 18px 40px rgba(11, 25, 41, .10), 0 6px 14px rgba(11, 25, 41, .05);

  /* Motion */
  --t-fast: 150ms cubic-bezier(.4, 0, .2, 1);
  --t-med: 240ms cubic-bezier(.4, 0, .2, 1);
}

/* ----- 2. Reset & base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
img { object-fit: contain; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); letter-spacing: -0.018em; }
h3 { font-size: var(--fs-h3); letter-spacing: -0.012em; }
h4 { font-size: var(--fs-lg); font-weight: 600; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand-hover); }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: 0.35em; }

::selection { background: var(--brand); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Skip link for a11y */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--ink); color: var(--white);
  padding: 0.75rem 1.25rem; border-radius: var(--r-md);
  font-weight: 500; z-index: 1000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0.75rem; color: var(--white); }

/* ----- 3. Layout primitives ------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--sm { padding-top: var(--section-y-sm); padding-bottom: var(--section-y-sm); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: var(--concrete); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--concrete { background: var(--concrete); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.85rem;
}
.eyebrow--light { color: var(--concrete); }
.eyebrow--steel { color: var(--steel-3); }

.lede {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 60ch;
}
.section--navy .lede { color: var(--concrete); }

.section-head { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.section-head .lede { margin-left: auto; margin-right: auto; }
.section-head--left { text-align: left; margin-left: 0; }
.section-head--left .lede { margin-left: 0; }

/* ----- 4. Buttons ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: center;
  line-height: 1.2;
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--brand-hover); color: var(--white); box-shadow: var(--shadow-md); }

.btn--secondary {
  background: var(--ink);
  color: var(--white);
}
.btn--secondary:hover { background: var(--navy-2); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--concrete);
}
.btn--outline-light:hover { background: var(--white); color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding-left: 0.25rem; padding-right: 0.25rem;
}
.btn--ghost:hover { color: var(--brand); transform: none; }

.btn--lg { padding: 1.1rem 2rem; font-size: var(--fs-base); min-height: 56px; }
.btn--block { width: 100%; }

.btn .arrow {
  display: inline-block; width: 16px; height: 16px;
  transition: transform var(--t-fast);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ----- 5. Header / Navigation ----------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(11, 25, 41, 0.08);
  transition: box-shadow var(--t-fast);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav-bar {
  display: flex; align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: flex; align-items: center;
  gap: 0.7rem;
  margin-right: auto;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }

.brand__mark {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.brand__mark svg { width: 100%; height: 100%; display: block; }
@media (min-width: 1024px) {
  .brand__mark { width: 80px; height: 80px; }
}

/* Footer logo — uses the regular (with-text) logo.png, sized larger and rectangular */
.brand__mark--footer {
  width: 220px;
  height: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  display: block;
  object-fit: contain;
}

.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__tag {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-3);
  margin-top: 3px;
}

.nav-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center;
  gap: 0.25rem;
}
.nav-list a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--steel);
  padding: 0.55rem 0.95rem;
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.nav-list a:hover { color: var(--ink); background: var(--cream-2); }
.nav-list a.is-active { color: var(--brand); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle::after {
  content: ''; display: inline-block;
  width: 8px; height: 8px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform var(--t-fast);
}
.has-dropdown:hover .dropdown-toggle::after { transform: rotate(225deg) translateY(0); }
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0.5rem;
  min-width: 280px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t-fast);
  list-style: none; margin: 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.9375rem;
  color: var(--ink);
  border-radius: var(--r-sm);
}
.dropdown a:hover { background: var(--cream); color: var(--brand); }
.dropdown a small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-cta .phone-link {
  display: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  padding: 0.5rem 0.75rem;
}
.nav-cta .phone-link:hover { color: var(--brand); }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  cursor: pointer;
  padding: 0;
}
.nav-toggle:hover { border-color: var(--ink); }
.nav-toggle__bars {
  position: relative;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: background var(--t-fast);
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: ''; position: absolute; left: 0;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform var(--t-fast), top var(--t-fast);
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

/* Mobile menu states */
body.menu-open { overflow: hidden; }
body.menu-open .nav-toggle__bars { background: transparent; }
body.menu-open .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

/* ----- 6. Hero -------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--concrete);
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4rem, 9vw, 6rem);
  isolation: isolate;
  /* Photo background with dark gradient overlay.
     Replace /assets/img/hero-cabling.jpg with your own. */
  background-image:
    linear-gradient(115deg, rgba(11, 25, 41, 0.96) 0%, rgba(11, 25, 41, 0.78) 50%, rgba(11, 25, 41, 0.45) 100%),
    url('../img/hero-cabling.jpg');
  background-size: cover;
  background-position: center right;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 95% -10%, rgba(225, 6, 0, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(11, 25, 41, 0.6) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
/* Red angled wedge — signature graphic moment */
.hero__wedge {
  position: absolute;
  top: 0; right: 0;
  width: 38%;
  max-width: 540px;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  display: none;
}
.hero__wedge svg { width: 100%; height: 100%; }
@media (min-width: 900px) {
  .hero__wedge { display: block; }
}

.hero__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero__copy { max-width: 720px; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  font-size: var(--fs-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--brand); }
.hero p {
  color: var(--concrete);
  font-size: var(--fs-lg);
  line-height: 1.55;
  max-width: 60ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__trust-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: var(--fs-sm);
  color: var(--concrete);
}
.hero__trust-item .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: rgba(225, 6, 0, 0.15);
  color: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Compact page hero (service pages) */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--navy);
  color: var(--concrete);
  position: relative;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(225, 6, 0, 0.14) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  z-index: -1;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: var(--concrete); max-width: 60ch; }
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--concrete);
  margin-bottom: 1.25rem;
  list-style: none; padding: 0;
}
.breadcrumbs li { margin: 0; }
.breadcrumbs li::after { content: '/'; margin-left: 0.5rem; opacity: 0.45; }
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs a { color: rgba(226, 232, 240, 0.75); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs li[aria-current="page"] { color: var(--brand); }

/* ----- 7. Service grid ------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.service-card:hover .service-card__media::after { opacity: 0.55; }
.service-card:hover .service-card__icon { background: var(--brand); color: var(--white); }

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-bottom: 3px solid var(--brand);
}
.service-card__media::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(225, 6, 0, 0.12) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(255, 255, 255, 0.025) 12px, rgba(255, 255, 255, 0.025) 13px);
}
.service-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11, 25, 41, 0.35) 0%, transparent 55%);
  opacity: 0.7;
  transition: opacity var(--t-med);
}
.service-card__media-label {
  position: absolute;
  bottom: 14px; left: 16px;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 1;
}
.service-card__icon {
  position: absolute;
  top: 14px; left: 16px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  color: var(--brand);
  z-index: 1;
  transition: background var(--t-fast), color var(--t-fast);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__body {
  padding: 1.5rem 1.5rem 1.5rem;
  display: flex; flex-direction: column;
  flex: 1;
}
.service-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.service-card__cta {
  margin-top: auto;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.service-card:hover .service-card__cta { color: var(--brand); }
.service-card__cta::after {
  content: '→'; transition: transform var(--t-fast);
}
.service-card:hover .service-card__cta::after { transform: translateX(3px); }

/* Service category groupings (homepage) */
.service-cat {
  margin-top: 3rem;
}
.service-cat__head {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.service-cat__head h3 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0;
}
.service-cat__head p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ----- 8. Feature grid (service pages) -------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.feature {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.feature--no-bg { background: transparent; border: none; padding: 0; }
.feature__icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand);
  color: var(--white);
  border-radius: var(--r-md);
  margin-bottom: 1rem;
}
.feature__icon svg { width: 20px; height: 20px; }
.feature h3 { font-size: 1.0625rem; margin-bottom: 0.4rem; }
.feature h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.feature p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* Spec list (bulleted feature pills) */
.spec-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.6rem;
}
.spec-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.9375rem;
  margin-bottom: 0;
  color: var(--text);
  line-height: 1.5;
}
.spec-list li::before {
  content: ''; flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='currentColor' d='M16.7 5.3a1 1 0 0 1 0 1.4l-7.5 7.5a1 1 0 0 1-1.4 0l-3.5-3.5a1 1 0 0 1 1.4-1.4L8.5 12l6.8-6.7a1 1 0 0 1 1.4 0z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='currentColor' d='M16.7 5.3a1 1 0 0 1 0 1.4l-7.5 7.5a1 1 0 0 1-1.4 0l-3.5-3.5a1 1 0 0 1 1.4-1.4L8.5 12l6.8-6.7a1 1 0 0 1 1.4 0z'/></svg>") center/contain no-repeat;
}

/* Two-col layout (text + image / text + list) */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.two-col__media {
  background: var(--cream-2);
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
}
.two-col__media img { width: 100%; height: 100%; object-fit: cover; }

/* Industry chips */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.industry {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.industry h4 {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.85rem;
}
.industry ul { padding: 0; list-style: none; margin: 0; }
.industry li {
  font-size: 0.9375rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.industry li:last-child { border-bottom: none; }

/* ----- 9. Process steps ----------------------------------------- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
  margin-top: 2.5rem;
}
.process-step {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -18px; left: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  background: var(--brand);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.process-step h4 {
  font-size: 1.0625rem;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* ----- 10. Stat / Trust strip ----------------------------------- */
.trust-strip {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.75rem 0;
  background: var(--navy-2);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
.trust-strip__inner > div {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 1.5rem;
}
.trust-strip__inner > div:last-child { border-bottom: none; padding-bottom: 0; }
.trust-strip__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.trust-strip__label {
  display: block;
  font-size: 0.8125rem;
  color: var(--concrete);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* Brand logos row */
.brand-row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.5rem;
}
.brand-row span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--steel-2);
  opacity: 0.78;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.brand-row span:hover { opacity: 1; color: var(--ink); }
.section--navy .brand-row span { color: var(--concrete); opacity: 0.7; }
.section--navy .brand-row span:hover { color: var(--white); opacity: 1; }

/* ----- 11. Testimonials ----------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
}
.testimonial__stars {
  display: inline-flex; gap: 2px;
  margin-bottom: 1rem;
  color: var(--brand);
}
.testimonial__stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial__quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.testimonial__cite {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}
.testimonial__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  display: block;
  line-height: 1.2;
}
.testimonial__loc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ----- 12. CTA strip -------------------------------------------- */
.cta-strip {
  background: var(--ink);
  color: var(--concrete);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(225, 6, 0, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.cta-strip__inner {
  position: relative; z-index: 1;
  display: grid; gap: 2rem;
  align-items: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 0.6rem; }
.cta-strip p { color: var(--concrete); max-width: 50ch; }
.cta-strip__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ----- 13. FAQ accordion ---------------------------------------- */
.faq {
  max-width: 820px;
  margin: 2.5rem auto 0;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq details[open] { border-color: var(--ink); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  position: relative;
  transition: color var(--t-fast);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand);
  transition: transform var(--t-fast);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--brand); }
.faq__a {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----- 14. Forms ------------------------------------------------ */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.field label .req { color: var(--brand); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
  min-height: 48px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11, 25, 41, 0.08);
}
.field .help { font-size: 0.8125rem; color: var(--text-muted); }

/* ----- 15. Contact info card ----------------------------------- */
.contact-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: grid; gap: 1.5rem;
}
.contact-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.contact-card a { color: var(--white); }
.contact-card a:hover { color: var(--brand); }
.contact-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
}
.contact-item__icon {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 18px; height: 18px; }
.contact-item__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--concrete);
  font-weight: 600;
}
.contact-item__val {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 2px;
  display: block;
}

/* ----- 16. Footer ----------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: var(--concrete);
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: 1.5rem;
}
.site-footer h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand { max-width: 360px; text-align: center; }
.footer-brand .brand {
  display: inline-block;
  align-items: initial;
  gap: 0;
  margin: 0 0 1.5rem;
  background: var(--cream);
  padding: 14px 20px;
  border-radius: var(--r-md);
  flex-shrink: 1;
}
.footer-brand .brand__name { color: var(--white); }
.footer-brand .brand__tag { color: var(--concrete); }
.footer-brand p { font-size: 0.9375rem; color: var(--concrete); text-align: left; margin: 0 auto; max-width: 100%; }
.footer-brand .brand__mark--footer { display: block; width: 200px; height: auto; }

.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 0.6rem; }
.footer-list a {
  font-size: 0.9375rem;
  color: var(--concrete);
}
.footer-list a:hover { color: var(--brand); }

.footer-contact a {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.65rem;
}
.footer-contact a:hover { color: var(--brand); }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--brand); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: center; text-align: center;
  font-size: 0.8125rem;
  color: var(--concrete);
}
.footer-bottom a { color: var(--concrete); }
.footer-bottom a:hover { color: var(--brand); }
.footer-bottom__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }

/* ----- 16a. Display hero (stacked typography) ------------------- */
.hero--display {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero--display .hero__inner {
  display: block;
}
.hero-display-eb {
  display: flex; align-items: center; gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.5rem;
}
.hero-display-eb::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.6), transparent);
  max-width: 200px;
}
.hero-display-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 1.6rem + 4.4vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--white);
  margin: 0 0 0.45em;
  text-wrap: balance;
}
.hero-display-h1 .accent {
  color: var(--brand);
}
.hero-display-h1 .dot {
  color: var(--brand);
  font-weight: 800;
}
.hero-display-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: end;
}
.hero-display-lede {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--concrete);
  max-width: 56ch;
}
.hero-display-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}
.hero-display-meta > div { padding-right: 1rem; }
.hero-display-meta > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 1rem;
}
.hero-display-meta dt {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
  margin-bottom: 0.4rem;
}
.hero-display-meta dd {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
  line-height: 1.3;
}
.hero-display-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .hero-display-grid { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
}

/* ----- 16a1b. Category cards (homepage overview, not full service detail) */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  position: relative;
}
.cat-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.cat-card__num {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.6rem;
}
.cat-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.cat-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.cat-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--border);
}
.cat-card__list li {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.cat-card__cta {
  margin-top: auto;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.cat-card__cta::after { content: '→'; transition: transform var(--t-fast); }
.cat-card:hover .cat-card__cta { color: var(--brand); }
.cat-card:hover .cat-card__cta::after { transform: translateX(3px); }

@media (min-width: 700px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

/* ----- 16a1c. Priority service trio (most requested) ----------- */
.priority {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.priority-card {
  position: relative;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex; flex-direction: column;
  min-height: 260px;
  transition: transform var(--t-fast);
}
.priority-card:hover { transform: translateY(-3px); color: var(--white); }
.priority-card__media {
  position: absolute; inset: 0;
  z-index: 0;
  /* Light grey placeholder — visible when image is missing */
  background-color: #C8CFD8;
  background-size: cover;
  background-position: center;
}
.priority-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 25, 41, 0.45) 0%, rgba(11, 25, 41, 0.92) 70%, rgba(11, 25, 41, 0.98) 100%);
}
.priority-card__body {
  position: relative; z-index: 1;
  padding: 1.5rem;
  display: flex; flex-direction: column; height: 100%;
  margin-top: auto;
}
.priority-card__num {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: auto;
  padding-top: 0;
}
.priority-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem;
  letter-spacing: -0.015em;
}
.priority-card p {
  font-size: 0.9375rem;
  color: var(--concrete);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.priority-card__cta {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.priority-card__cta::after { content: '→'; color: var(--brand); transition: transform var(--t-fast); }
.priority-card:hover .priority-card__cta::after { transform: translateX(3px); }

@media (min-width: 900px) {
  .priority { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* ----- 16a1c2. Small business callout --------------------------- */
.small-biz {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.small-biz__media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-color: #C8CFD8;
}
.small-biz__media-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.small-biz__media::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  background: var(--brand);
  border-radius: var(--r-md);
  z-index: 1;
}
.small-biz__copy h2 { color: var(--white); margin-bottom: 1rem; line-height: 1.15; }
.small-biz__copy .lede { margin-bottom: 1.5rem; }
.small-biz__points {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.7rem;
}
.small-biz__points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: var(--concrete);
  line-height: 1.55;
  margin: 0;
}
.small-biz__points li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5rem;
  width: 12px; height: 2px;
  background: var(--brand);
}
.small-biz__points li strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.005em;
}

@media (min-width: 900px) {
  .small-biz { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
}

/* ----- 16a1c3. Residential callout (cream theme, mirrored layout) */
.residential {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.residential__media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-color: #C8CFD8;
  border: 1px solid var(--border);
}
.residential__media-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.residential__media::after {
  content: '';
  position: absolute;
  bottom: -16px; left: -16px;
  width: 80px; height: 80px;
  background: var(--brand);
  border-radius: var(--r-md);
  z-index: 1;
}
.residential__copy h2 { color: var(--ink); margin-bottom: 1rem; line-height: 1.15; }
.residential__copy .lede { margin-bottom: 1.5rem; color: var(--text-muted); }
.residential__points {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.7rem;
}
.residential__points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.residential__points li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5rem;
  width: 12px; height: 2px;
  background: var(--brand);
}
.residential__points li strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.005em;
}

@media (min-width: 900px) {
  .residential { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
  /* Text on left, image on right (opposite of small-biz) */
}

/* ----- 16a1d. Brand presentation revamped ----------------------- */
.brand-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.brand-block__group h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.5rem;
}
.brand-block__group p.note {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.brand-block__list {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  list-style: none;
  padding: 0; margin: 0;
}
.brand-block__list li {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-pill);
  margin: 0;
}
@media (min-width: 700px) {
  .brand-block { grid-template-columns: 1fr 2fr; gap: 3rem; }
}

/* ----- 16a2. Bento services grid -------------------------------- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.bento .service-card { height: 100%; }

/* Default cell, then sized variants */
@media (min-width: 640px) {
  .bento { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .bento__feature { grid-column: span 2; }
  .bento__feature .service-card__media { aspect-ratio: 21 / 9; }
}
@media (min-width: 900px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-flow: dense;
  }
  .bento__feature { grid-column: span 4; grid-row: span 2; }
  .bento__feature .service-card__media { aspect-ratio: 16 / 10; }
  .bento__tall { grid-column: span 2; grid-row: span 2; }
  .bento__tall .service-card__media { aspect-ratio: 4 / 5; }
  .bento__wide { grid-column: span 4; }
  .bento__wide .service-card__media { aspect-ratio: 21 / 9; }
  .bento__sm { grid-column: span 2; }
}

/* ----- 16a3. Editorial numbered list (Why SignalRoute) ---------- */
.editorial {
  display: grid;
  gap: 0;
  margin-top: 3rem;
}
.editorial__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.editorial__item:last-child { border-bottom: 1px solid var(--border); }
.editorial__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.editorial__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-h3);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
.editorial__body {
  font-size: var(--fs-base);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
  max-width: 56ch;
}
.editorial__tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-3);
  margin-top: 0.85rem;
  display: inline-block;
}
@media (min-width: 700px) {
  .editorial__item { grid-template-columns: 120px 1fr; gap: 2.5rem; padding: 2.5rem 0; }
}
@media (min-width: 1024px) {
  .editorial__item { grid-template-columns: 160px 1fr 1fr; gap: 3rem; padding: 3rem 0; align-items: start; }
  .editorial__copy { padding-right: 2rem; }
  .editorial__aside {
    border-left: 3px solid var(--brand);
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: var(--fs-sm);
    line-height: 1.6;
  }
  .editorial__aside strong { color: var(--ink); display: block; margin-bottom: 0.4rem; font-family: var(--font-heading); font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; }
}

/* ----- 16a4. Statement section (2-col with visual, L/R rhythm) */
.statement {
  background: var(--ink);
  color: var(--white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.statement__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative; z-index: 1;
}
.statement__mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 6, 0, 0.08);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 2.5rem 1.5rem;
  min-height: 200px;
  overflow: hidden;
}
.statement__quote {
  font-family: var(--font-heading);
  font-size: clamp(7rem, 13vw, 11rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 0.65;
  font-style: italic;
  user-select: none;
}
.statement__content { min-width: 0; }

@media (min-width: 900px) {
  .statement__inner {
    grid-template-columns: 1fr 1.6fr;
    gap: 3.5rem;
  }
  .statement__mark { min-height: 280px; }
}
.statement__kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.5rem;
}
.statement__h {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 22ch;
  margin: 0 0 1.5rem;
  text-wrap: balance;
}
.statement__h em {
  font-style: normal;
  color: var(--brand);
  font-weight: 700;
}
.statement__sub {
  font-size: var(--fs-lg);
  color: var(--concrete);
  max-width: 52ch;
  margin: 0;
  line-height: 1.55;
}
.statement__rule {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  list-style: none;
  padding: 1.75rem 0 0;
  margin: 2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.statement__rule li {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.88);
  margin: 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.statement__rule li::before {
  content: '';
  width: 8px; height: 2px;
  background: var(--brand);
  flex-shrink: 0;
}

/* ----- 16b. Red intervention block (signature moment) ----------- */
.panel-red {
  background: var(--brand);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.panel-red::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 24px, rgba(255, 255, 255, 0.04) 24px, rgba(255, 255, 255, 0.04) 25px);
  z-index: -1;
}
.panel-red__inner {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}
.panel-red h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  max-width: 18ch;
  line-height: 1.1;
}
.panel-red__kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-top: 2px solid var(--white);
  padding-top: 0.75rem;
  margin-bottom: 1.25rem;
}
.panel-red p {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.92);
  max-width: 50ch;
  margin: 0;
}
.panel-red .btn {
  margin-top: 1.5rem;
}
.panel-red__rule {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.panel-red__rule li {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  display: flex; align-items: center; gap: 0.45rem;
}
.panel-red__rule li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .panel-red__inner { grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: end; }
}

/* ----- 16c. Photo + text feature row ---------------------------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.feature-row__media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}
.feature-row__media::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  background: var(--brand);
  border-radius: var(--r-md);
  z-index: 0;
}
.feature-row__media img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-row__copy h2 { margin-bottom: 1rem; }
.feature-row__copy .lede { margin-bottom: 1.25rem; }

@media (min-width: 900px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .feature-row--reverse > :first-child { order: 2; }
}

/* ----- 16d. Pull quote / stat moment ---------------------------- */
.pull-stat {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.pull-stat__num {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand);
  display: block;
  margin-bottom: 0.5rem;
}
.pull-stat__copy {
  font-size: var(--fs-lg);
  color: var(--ink);
  max-width: 32ch;
  margin: 0 auto;
  font-weight: 500;
}

/* ----- 16e. Section divider w/ swoosh accent -------------------- */
.swoosh-divider {
  position: relative;
  height: 4px;
  width: 80px;
  background: var(--brand);
  margin: 0 0 1.25rem;
  border-radius: 2px;
}
.swoosh-divider--center { margin-left: auto; margin-right: auto; }

/* ----- 16f. Contact page layout --------------------------------- */
@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.5fr 1fr !important;
    gap: 3.5rem !important;
  }
}

/* ----- 17. Misc ------------------------------------------------- */
.divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 2rem 0;
}
.divider--dark { background: rgba(255,255,255,0.1); }

.highlight-bar {
  background: linear-gradient(90deg, var(--brand), var(--brand));
  height: 4px;
  width: 56px;
  border-radius: 2px;
}

.kicker {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Service nav (cross-links between service pages) */
.service-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.service-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  transition: all var(--t-fast);
}
.service-nav a:hover { border-color: var(--ink); color: var(--brand); transform: translateX(2px); }
.service-nav a::after {
  content: '→'; color: var(--brand);
  transition: transform var(--t-fast);
}
.service-nav a:hover::after { transform: translateX(3px); }

/* ----- 18. Responsive breakpoints ------------------------------- */

/* Tablet portrait+ */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .form-row--2 { grid-template-columns: 1fr 1fr; }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__inner > div { border-bottom: none; padding-bottom: 0; border-right: 1px solid rgba(255,255,255,.08); }
  .trust-strip__inner > div:nth-child(2n) { border-right: none; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .nav-cta .phone-link { display: inline-flex; }
}

/* Tablet landscape+ */
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(4, 1fr); }
  .trust-strip__inner { grid-template-columns: repeat(4, 1fr); }
  .trust-strip__inner > div:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.08); }
  .trust-strip__inner > div:nth-child(4n) { border-right: none; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; }
  .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .two-col--reverse > :first-child { order: 2; }
  .cta-strip__inner { grid-template-columns: 1.5fr 1fr; }
  .cta-strip__actions { justify-content: flex-end; }
  .service-nav { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 4rem; }
}

/* Desktop+ (raised to 1200px so nav has room to breathe before going hamburger) */
@media (min-width: 1200px) {
  :root { --header-h: 84px; }
  .nav-list { display: flex; }
  .nav-toggle { display: none; }
  .brand__name { font-size: 1.25rem; }
  .feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile nav (under 1200px — hamburger triggers earlier so desktop nav doesn't jumble) */
@media (max-width: 1199.98px) {
  .nav-list {
    position: fixed !important;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: var(--white);
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem var(--gutter) 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform var(--t-med);
    z-index: 90;
    border-top: 1px solid var(--border);
    box-sizing: border-box;
  }
  body.menu-open .nav-list { transform: translateX(0); }
  .nav-list li {
    display: block;
    width: 100%;
    margin: 0;
  }
  .nav-list a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ink);
    background: transparent;
  }
  .nav-list a:hover { background: transparent; color: var(--brand); }
  .nav-list .has-dropdown { display: block; width: 100%; }
  /* Mobile dropdown — accordion style (collapsed by default, tap parent to expand) */
  .has-dropdown .dropdown-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .has-dropdown .dropdown-toggle::after {
    content: '+';
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--brand);
    line-height: 1;
    border: none !important;
    transform: none;
    margin: 0;
    width: auto;
    height: auto;
    transition: transform var(--t-fast);
  }
  .has-dropdown.is-expanded .dropdown-toggle::after {
    transform: rotate(45deg);
  }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none; border: none;
    background: transparent;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height var(--t-med), padding var(--t-med);
  }
  .has-dropdown.is-expanded .dropdown {
    max-height: 720px;
    padding: 0.25rem 0 0.75rem 1rem;
  }
  .dropdown a { padding: 0.55rem 0; font-size: 0.9375rem; border-bottom: none; }
  .dropdown a small { display: none; }
  .nav-cta .phone-link { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* Print */
@media print {
  .site-header, .site-footer, .cta-strip, .nav-toggle { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
