/* ═══════════════════════════════════════════════════════
   916 Truck Repair — Design System
   Source: 916truckrepair.com/index.html (approved mockup)
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS 2026 (Elite Industrial) ─── */
:root {
  --paper: #fcfcfc;
  --paper-warm: #f9fafb;
  --ink: #09090b;
  --ink-light: #44403c;
  --ink-muted: #71717a;
  --rust: #c2402c;
  --rust-deep: #9a2e1e;
  --rust-wash: rgba(194, 64, 44, 0.04);
  --border: rgba(9, 9, 11, 0.06);
  --border-glass: rgba(255, 255, 255, 0.4);

  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --fixed-nav-offset: 18px;
  --fixed-nav-height: 72px;
  --fixed-nav-gap: 18px;

  /* Vanguard Motion Engine */
  --ease-vanguard: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow-diffusion: 0 20px 48px -12px rgba(0, 0, 0, 0.06);
  --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 1);
}

.form-submit .text-rust, .form-field-full .text-rust, .text-rust {
  color: var(--rust);
}

.phone-link {
  color: var(--rust);
  font-weight: 600;
}

.email-link {
  color: var(--rust);
  font-weight: 600;
}

.map-embed {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-diffusion);
}


/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── VANGUARD MOTION ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.99);
  filter: blur(4px);
  transition:
    opacity 1.2s var(--ease-vanguard),
    transform 1.2s var(--ease-vanguard),
    filter 1.2s var(--ease-vanguard);
  will-change: transform, opacity;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}

/* ─── CRYSTAL GLASS NAV ─── */
.nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  pointer-events: none;
}

.nav::before {
  display: none;
}

.nav-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  padding: 10px 16px 10px 24px;
  background: rgba(252, 252, 252, 0.84);
  backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow:
    0 20px 58px -40px rgba(9, 9, 11, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(9, 9, 11, 0.04);
  pointer-events: auto;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-top {
  font-family: var(--font-display);
  font-size: 1.62rem;
  letter-spacing: 0.035em;
  color: var(--ink);
}

.logo-top span {
  color: var(--rust);
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(154, 46, 30, 0.78);
  margin-top: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 10px 12px;
  border-radius: 999px;
  transition:
    color 0.3s var(--ease-vanguard),
    background 0.3s var(--ease-vanguard);
}

.nav-links a:hover {
  color: var(--rust-deep);
  background: rgba(194, 64, 44, 0.075);
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #151517;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: 999px;
  transition:
    transform 0.3s var(--ease-vanguard),
    background 0.3s;
}

.phone-pill:hover {
  background: var(--rust);
  color: #fff;
  transform: scale(1.05) translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.045);
  color: var(--ink);
  cursor: pointer;
  transition:
    background 0.3s var(--ease-vanguard),
    transform 0.3s var(--ease-vanguard);
}

.nav-toggle:hover {
  background: rgba(194, 64, 44, 0.075);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.35s var(--ease-vanguard),
    top 0.35s var(--ease-vanguard);
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  top: 26px;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 20px;
  right: 20px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.6rem;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(194, 64, 44, 0.18),
      transparent 18rem
    ),
    linear-gradient(145deg, rgba(28, 24, 22, 0.97), rgba(18, 18, 20, 0.96));
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow:
    0 32px 80px -38px rgba(9, 9, 11, 0.76),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  visibility: hidden;
  transition:
    opacity 0.28s var(--ease-vanguard),
    transform 0.28s var(--ease-vanguard),
    visibility 0.28s var(--ease-vanguard);
}

.mobile-nav-panel a,
.mobile-nav-panel a:visited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.mobile-nav-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-nav-panel .mobile-nav-call,
.mobile-nav-panel .mobile-nav-call:visited {
  justify-content: center;
  margin-top: 4px;
  background: #fff;
  color: #151517;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.nav.mobile-open .mobile-nav-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.nav.mobile-open .nav-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.nav.mobile-open .nav-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--fixed-nav-offset) + var(--fixed-nav-height) + var(--fixed-nav-gap)) 0 12px;
}

.breadcrumbs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.breadcrumbs-inner a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 0.2s;
}

.breadcrumbs-inner a:hover {
  color: var(--rust-deep);
}

.breadcrumbs-inner .sep {
  margin: 0 6px;
  color: var(--ink-muted);
}

/* ─── HERO ─── */
.hero {
  background: var(--paper-warm);
  padding: 240px 28px 120px;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 90dvh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.hero-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rust);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--rust);
  display: block;
}

.hero p {
  font-size: 1.25rem;
  color: var(--ink-light);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 48px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: min(100%, 28rem);
  min-height: 58px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  padding: 18px 48px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: 1;
  text-wrap: balance;
  transition:
    transform 0.3s var(--ease-vanguard),
    background 0.3s;
}

.btn-primary:hover {
  background: var(--rust);
  transform: scale(1.02) translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  padding: 18px 40px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-vanguard);
}

/* ─── SECTIONS ─── */
.section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 160px 28px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rust);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* ─── BENTO GRID 2.0 ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card {
  background: #fff;
  padding: 48px;
  border-radius: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-diffusion);
  transition:
    transform 0.6s var(--ease-vanguard),
    border-color 0.4s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--rust);
}

@media (min-width: 900px) {
  .service-card {
    grid-column: auto;
  }
}

/* ─── WHY PROCESS (Line System) ─── */
.why-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.why-row {
  display: grid;
  grid-template-columns: 1fr;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  gap: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .why-row {
    grid-template-columns: 120px 1fr 2fr;
    gap: 60px;
  }
}

.why-number {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--rust);
  font-weight: 700;
}

.why-title {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
}

/* ─── STATS CARD ─── */
.stats-card {
  background: #fff;
  padding: 48px;
  border-radius: 2.5rem;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.stat-value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 2.25rem;
  color: var(--ink);
  line-height: 1;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--paper-warm);
  padding: 120px 28px;
}

/* ─── RESPONSIVE ─── */
@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .handle-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .stats-card,
  .service-sidebar {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid.cols-3,
  .services-grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .handle-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-submit {
    align-items: center;
  }
}

@media (max-width: 560px) {
  .related-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════════
   2026 Leadership UI Layer — dispatch-first industrial premium
   ═══════════════════════════════════════════════════════ */

body {
  overflow-x: hidden;
  background: var(--paper-warm);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.74' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

::selection {
  color: #fff;
  background: var(--rust-deep);
}

.nav {
  top: 18px;
  padding: 0 20px;
}

.nav-inner {
  max-width: 1180px;
}

.logo-top,
.footer-brand {
  letter-spacing: 0.035em;
}

.phone-pill,
.btn-primary,
.btn-ghost,
.chip,
.service-card,
.why-row {
  -webkit-tap-highlight-color: transparent;
}

.phone-pill:active,
.btn-primary:active,
.btn-ghost:active,
.chip:active,
.service-card:active {
  transform: translateY(1px) scale(0.985);
}

.phone-pill:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.chip:focus-visible,
.service-card:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid rgba(194, 64, 44, 0.55);
  outline-offset: 4px;
}

/* Hero: asymmetric command layout */
.hero {
  position: relative;
  isolation: isolate;
  max-width: none;
  width: 100%;
  min-height: 100dvh;
  padding: 144px 28px 64px;
  background: var(--paper-warm);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 112px max(28px, calc((100vw - 1300px) / 2)) auto auto;
  width: min(42vw, 520px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 64, 44, 0.42),
    transparent
  );
  transform: rotate(-16deg);
  transform-origin: right center;
}

.hero::after {
  content: "916 / SAC / ROADSIDE";
  position: absolute;
  right: max(14px, calc((100vw - 1380px) / 2));
  bottom: 34px;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 1.2vw, 0.92rem);
  letter-spacing: 0.28em;
  color: rgba(9, 9, 11, 0.18);
  writing-mode: vertical-rl;
}

.hero-inner {
  width: min(1300px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 5.5vw, 86px);
  align-items: center;
}

.hero-inner.single {
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 980px;
}

.hero:has(.hero-inner.single) {
  min-height: auto;
  padding-top: 152px;
  padding-bottom: 64px;
}

.breadcrumbs + .hero,
.breadcrumbs + .hero:has(.hero-inner.single) {
  min-height: auto;
  padding-top: 72px;
  padding-bottom: 48px;
  align-items: flex-start;
}

.breadcrumbs + .hero + .section {
  padding-top: clamp(36px, 4vw, 56px);
}

.hero:has(.hero-inner.single) + .section {
  padding-top: 54px;
}

.hero-inner > :first-child {
  grid-column: 1 / span 7;
}

.hero-visual,
.hero-inner > .stats-card,
.service-sidebar {
  grid-column: 8 / -1;
}

.hero-inner > :first-child,
.hero-visual,
.hero-inner > .stats-card,
.service-sidebar {
  min-width: 0;
}

.hero-label {
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.05rem, 6.4vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.018em;
}

.hero h1 em {
  margin-top: 0.08em;
  color: var(--rust);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.hero-heading-accent {
  color: var(--rust);
}

.hero-heading-line {
  display: block;
}

.hero p {
  max-width: 660px;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  color: rgba(68, 64, 60, 0.92);
}

.hero-seo-line {
  margin: -10px 0 18px;
  max-width: 700px;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 1vw, 0.82rem) !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(154, 46, 30, 0.74) !important;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(9, 9, 11, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(68, 64, 60, 0.82);
}

.btn-primary,
.btn-ghost {
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #121214;
  box-shadow:
    0 18px 34px -22px rgba(9, 9, 11, 0.82),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 1px auto 1px -55%;
  width: 42%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.24),
    transparent
  );
  transform: skewX(-18deg);
  transition: transform 0.8s var(--ease-vanguard);
}

.btn-primary:hover::after {
  transform: translateX(360%) skewX(-18deg);
}

.btn-ghost:hover {
  color: var(--rust-deep);
  border-color: rgba(194, 64, 44, 0.55);
  background: rgba(194, 64, 44, 0.045);
  transform: translateY(-2px);
}

/* Animated dispatch image built with CSS/SVG primitives */
.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  align-self: stretch;
  min-height: 0;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(9, 9, 11, 0.07);
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 28px 70px -42px rgba(9, 9, 11, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 42%),
    radial-gradient(circle at 18% 82%, rgba(194, 64, 44, 0.12), transparent 15rem);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dispatch-map,
.stats-card {
  border: 1px solid rgba(9, 9, 11, 0.07);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(132%);
  box-shadow:
    0 28px 70px -42px rgba(9, 9, 11, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.dispatch-map {
  position: relative;
  min-height: 306px;
  border-radius: 3rem;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(9, 9, 11, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 11, 0.045) 1px, transparent 1px),
    radial-gradient(
      circle at 72% 22%,
      rgba(194, 64, 44, 0.14),
      transparent 14rem
    );
  background-size:
    38px 38px,
    38px 38px,
    auto;
  mask-image: radial-gradient(circle at 50% 46%, #000 0%, transparent 78%);
}

.route-svg {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  overflow: visible;
}

.truck-sketch {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84%;
  max-width: 520px;
  transform: translate(-50%, -47%);
  fill: none;
  stroke: rgba(9, 9, 11, 0.105);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route {
  fill: none;
  stroke-linecap: round;
  stroke-width: 7;
}

.route-muted {
  stroke: rgba(9, 9, 11, 0.11);
}

.route-live {
  stroke: var(--rust);
  stroke-width: 4;
  stroke-dasharray: 42 280;
  animation: routeTrace 4.8s var(--ease-vanguard) infinite;
}

.route-node {
  fill: #fff;
  stroke: var(--rust);
  stroke-width: 4;
  filter: drop-shadow(0 8px 16px rgba(194, 64, 44, 0.22));
}

.node-b {
  animation: breathe 2.6s var(--ease-vanguard) infinite;
}

.dispatch-unit {
  position: absolute;
  left: 34px;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(18, 18, 20, 0.9);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.unit-light,
.dot {
  display: inline-block;
  flex: 0 0 8px;
  min-width: 8px;
  max-width: 8px;
  width: 8px;
  min-height: 8px;
  max-height: 8px;
  height: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  align-self: center;
  background: var(--rust);
  box-shadow: 0 0 0 5px rgba(194, 64, 44, 0.12);
  animation: pulseDot 1.8s var(--ease-vanguard) infinite;
}

.road-plate {
  position: absolute;
  top: 28px;
  right: 28px;
  display: flex;
  gap: 8px;
}

.road-plate span {
  padding: 7px 9px;
  border-radius: 999px;
  border: 1px solid rgba(9, 9, 11, 0.08);
  background: rgba(255, 255, 255, 0.66);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(9, 9, 11, 0.68);
}

.stats-card {
  position: relative;
  container-type: inline-size;
  min-width: 0;
  width: 100%;
  padding: 30px;
  border-radius: 2.2rem;
  box-shadow:
    0 40px 90px -54px rgba(9, 9, 11, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.stats-label {
  display: block;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--rust);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.stat-block {
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(9, 9, 11, 0.08);
}

.stat-label {
  margin-top: 7px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(68, 64, 60, 0.68);
}

.stat-value {
  min-width: 0;
  overflow-wrap: anywhere;
}

.hero-visual .stat-value.stat-value-location {
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: clamp(1.75rem, 4.85cqw, 2.25rem);
}

.coverage-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 999px;
  background: rgba(194, 64, 44, 0.06);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rust-deep);
}

.coverage-row span:last-child {
  min-width: 0;
}

.stats-divider {
  display: none;
}

/* Sections and asymmetric service system */
.section {
  position: relative;
  width: min(1300px, 100%);
  margin-inline: auto;
  padding: clamp(56px, 7vw, 100px) 28px;
  border-top: 1px solid var(--border);
}

.hero + .section,
.hero + #services,
.hero + .section.section-warm {
  border-top: none;
}

.portable-text.section-inner,
.section-inner.portable-text {
  margin-inline: auto;
}



/* Dispatch process timeline */
.dispatch-section {
  padding-top: clamp(72px, 8vw, 116px);
}

.dispatch-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 11, 0.07);
  border-radius: 2.4rem;
  background: rgba(9, 9, 11, 0.07);
  box-shadow: 0 30px 70px -50px rgba(9, 9, 11, 0.48);
}

.dispatch-flow::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 64, 44, 0.42),
    transparent
  );
  transform: translateY(-50%);
  pointer-events: none;
}

.dispatch-step {
  position: relative;
  min-height: 300px;
  padding: clamp(28px, 3.2vw, 42px);
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.78)
    ),
    radial-gradient(
      circle at 20% 10%,
      rgba(194, 64, 44, 0.065),
      transparent 14rem
    );
}

.dispatch-step::after {
  content: "";
  position: absolute;
  top: clamp(28px, 3.2vw, 42px);
  right: clamp(28px, 3.2vw, 42px);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--rust);
  box-shadow: 0 0 0 8px rgba(194, 64, 44, 0.09);
  animation: pulseDot 2.4s var(--ease-vanguard) infinite;
  animation-delay: calc(var(--i) * 0.18s);
}

.dispatch-step-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--rust);
}

.dispatch-step h3 {
  max-width: 11ch;
  margin-top: 72px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.dispatch-step p {
  max-width: 34ch;
  margin-top: 14px;
  color: rgba(68, 64, 60, 0.78);
  line-height: 1.58;
}

.section-warm {
  max-width: none;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(249, 250, 251, 0.78),
    rgba(252, 252, 252, 0.55)
  );
}

.section-warm > .section-inner,
.coverage-inner,
.emergency-inner,
.footer-inner,
.footer-bottom {
  width: min(1300px, 100%);
  margin-inline: auto;
}

.section-header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
  margin-bottom: 46px;
}

.section-header.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.section-header.center .section-label {
  grid-column: auto;
}

.section-header.center .section-label::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rust);
}

.section-header.center .section-title {
  grid-column: auto;
  max-width: 900px;
}

.section-header .section-label {
  grid-column: 1 / span 3;
}

.section-header .section-title {
  grid-column: 5 / -1;
  min-width: 0;
  overflow-wrap: break-word;
}

.section-header .section-desc {
  grid-column: 5 / -1;
  margin-top: -10px;
  min-width: 0;
  overflow-wrap: break-word;
}

.section-title {
  max-width: 860px;
}

.section-desc {
  max-width: none;
  color: var(--ink-light);
  font-size: 1.05rem;
}

.section-desc.center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 32px;
}

.text-center {
  text-align: center;
}

.icon-mr {
  margin-right: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-card {
    grid-column: auto;
    min-height: 274px;
  }
}

.service-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 46px minmax(4.1em, auto) 1fr auto;
  align-items: start;
  gap: 18px;
  min-height: 280px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.76)
    ),
    radial-gradient(
      circle at 18% 0%,
      rgba(194, 64, 44, 0.09),
      transparent 17rem
    );
  box-shadow:
    0 24px 52px -34px rgba(9, 9, 11, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.service-card.featured {
  background:
    linear-gradient(145deg, rgba(28, 24, 22, 0.94), rgba(18, 18, 20, 0.9)),
    radial-gradient(circle at 20% 0%, rgba(194, 64, 44, 0.2), transparent 18rem);
  color: #fff;
}

.service-card.featured .service-icon,
.service-card.featured .service-link {
  color: #fff;
}

.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.68);
}

.service-card.featured::after {
  color: rgba(255, 255, 255, 0.24);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(194, 64, 44, 0.44),
    rgba(255, 255, 255, 0.2),
    rgba(9, 9, 11, 0.08)
  );
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s var(--ease-vanguard);
  pointer-events: none;
}

.service-card::after {
  content: counter(service-counter, decimal-leading-zero);
  counter-increment: service-counter;
  position: absolute;
  top: 30px;
  right: 34px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: rgba(9, 9, 11, 0.28);
}

.services-grid {
  counter-reset: service-counter;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card:hover {
  transform: translateY(-9px) scale(1.008);
  border-color: rgba(194, 64, 44, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 46px;
  height: 46px;
  color: var(--rust);
  transition: transform 0.45s var(--ease-vanguard);
}

.service-card:hover .service-icon {
  transform: translateX(4px) rotate(-3deg);
}

.service-title {
  max-width: 18ch;
  font-size: clamp(1.28rem, 2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.service-desc {
  max-width: 48ch;
  color: rgba(68, 64, 60, 0.78);
  line-height: 1.62;
}

.service-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rust-deep);
}

/* Process rows: editorial, not cards */
.why-list {
  position: relative;
  width: min(1180px, 100%);
  margin-left: auto;
}

.why-row {
  position: relative;
  grid-template-columns: 92px minmax(170px, 0.82fr) minmax(0, 1.5fr);
  padding: clamp(34px, 5vw, 60px) 0;
  transition:
    transform 0.45s var(--ease-vanguard),
    border-color 0.45s var(--ease-vanguard),
    padding-left 0.45s var(--ease-vanguard);
}

.why-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--rust);
  transition: width 0.7s var(--ease-vanguard);
}

.why-row:hover {
  padding-left: 18px;
  border-bottom-color: rgba(194, 64, 44, 0.18);
}

.why-row:hover::before {
  width: 100%;
}

.why-text {
  max-width: 62ch;
  color: rgba(68, 64, 60, 0.78);
}

/* Corridor board */
.corridor-section {
  overflow: hidden;
}

.corridor-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.corridor-copy {
  position: sticky;
  top: 130px;
}

.corridor-board {
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 2.4rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 30px 70px -48px rgba(9, 9, 11, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.board-head,
.corridor-row {
  display: grid;
  grid-template-columns: 0.42fr 1.15fr 1fr;
  gap: 18px;
  align-items: center;
}

.board-head {
  padding: 18px 24px;
  background: rgba(18, 18, 20, 0.94);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.corridor-row {
  min-height: 118px;
  padding: 22px 24px;
  border-top: 1px solid rgba(9, 9, 11, 0.07);
  transition:
    background 0.35s var(--ease-vanguard),
    transform 0.35s var(--ease-vanguard);
}

.corridor-row:hover {
  background: rgba(194, 64, 44, 0.045);
}

.corridor-row strong {
  font-family: var(--font-display);
  font-size: 2.45rem;
  line-height: 0.85;
  letter-spacing: 0.015em;
  color: var(--rust-deep);
}

.corridor-row span {
  color: rgba(9, 9, 11, 0.76);
  font-weight: 600;
}

.corridor-row em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(68, 64, 60, 0.68);
}

/* Emergency and coverage */
.emergency {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 110px) 28px;
  background: var(--rust);
  color: #fff;
  border-top: none;
}

.emergency::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, var(--rust-deep) 0%, transparent 40%);
  opacity: 0.4;
}

.emergency-inner {
  position: relative;
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.emergency h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}

.emergency p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  margin-bottom: 38px;
  text-wrap: balance;
}

.emergency .btn-primary {
  background: #fff;
  color: var(--rust-deep);
  padding: 18px 48px;
  font-size: 1.5rem;
  border-radius: 4px;
}

.emergency .btn-primary:hover {
  background: var(--ink);
  color: #fff;
  transform: scale(1.05) translateY(-2px);
}

.coverage-inner {
  padding-inline: 28px;
}

.section-label.center {
  justify-content: center;
}

.section-label.center::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rust);
}

.chips,
.coverage-chips,
.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.chip,
.city-tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(9, 9, 11, 0.74);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition:
    transform 0.32s var(--ease-vanguard),
    border-color 0.32s var(--ease-vanguard),
    color 0.32s var(--ease-vanguard),
    background 0.32s var(--ease-vanguard);
}

.chip:hover,
.city-tag:hover {
  transform: translateY(-2px);
  border-color: rgba(194, 64, 44, 0.28);
  background: rgba(194, 64, 44, 0.055);
  color: var(--rust-deep);
}

/* FAQ and footer polish */
.faq-item {
  border-top: 1px solid rgba(9, 9, 11, 0.08);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(9, 9, 11, 0.08);
}

.faq-item p + p,
.faq-answer {
  margin-top: 8px;
  color: rgba(68, 64, 60, 0.82);
}

/* Cross-page polish: Sanity portable content + non-home card systems */
.portable-text {
  max-width: 860px;
  color: rgba(68, 64, 60, 0.88);
}

.portable-text > * + * {
  margin-top: 1.05rem;
}

.portable-text h2,
.portable-text h3 {
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.portable-text h2 {
  margin-top: 2.6rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.portable-text h3 {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.portable-text p,
.portable-text li {
  max-width: 72ch;
  line-height: 1.75;
}

.portable-text a,
.portable-text a:visited {
  color: var(--rust-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.portable-text ul,
.portable-text ol {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.15rem;
}

.portable-text ul {
  list-style: disc;
}

.portable-text ol {
  list-style: decimal;
}

.portable-text .portable-check-row {
  display: grid;
  grid-template-columns: 2.4rem minmax(9rem, 0.42fr) minmax(0, 1fr);
  gap: 0.9rem;
  align-items: baseline;
  max-width: 860px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(9, 9, 11, 0.08);
}

.portable-text .portable-check-row + .portable-check-row {
  margin-top: 0;
}

.portable-text .portable-check-row .check-index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rust);
}

.portable-text .portable-check-row strong {
  color: var(--ink);
  font-weight: 800;
}

.portable-text .portable-check-row span:last-child {
  color: rgba(68, 64, 60, 0.78);
}

.service-sidebar,
.handle-card,
.related-card,
.svc-card,
.detail-card,
.coverage-box {
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 22px 48px -38px rgba(9, 9, 11, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.service-sidebar {
  padding: 30px;
  width: 100%;
}

.coverage-section {
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(54px, 6vw, 82px);
}

.coverage-box {
  padding: clamp(28px, 4vw, 48px);
}

.coverage-box .section-label {
  margin-bottom: 24px;
}

.cta-banner {
  width: min(1300px, 100%);
  margin-inline: auto;
  padding: clamp(56px, 7vw, 100px) 28px;
  border-top: 1px solid var(--border);
}

.cta-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 34px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 1.65rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 12% 0%, rgba(194, 64, 44, 0.08), transparent 16rem);
  box-shadow:
    0 22px 48px -38px rgba(9, 9, 11, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.cta-banner .section-label {
  grid-column: 1 / -1;
}

.cta-title {
  max-width: 18ch;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  line-height: 0.9;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.cta-phone {
  justify-self: end;
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 700;
  color: var(--rust-deep);
}

.cta-banner br {
  display: none;
}

.cta-banner .btn-primary {
  grid-column: 2;
  justify-self: end;
  align-self: end;
}

.sidebar-header,
.sidebar-label,
.svc-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rust-deep);
}

.sidebar-item {
  padding: 16px 0;
  border-top: 1px solid rgba(9, 9, 11, 0.08);
}

.sidebar-item:first-of-type {
  margin-top: 18px;
}

.sidebar-value {
  margin-top: 4px;
  color: var(--ink);
  font-weight: 700;
}

.handle-grid,
.related-grid,
.detail-grid,
.coverage-grid,
.service-list {
  gap: 16px;
}

.handle-card,
.related-card,
.detail-card {
  display: block;
  padding: 26px;
  transition:
    transform 0.35s var(--ease-vanguard),
    border-color 0.35s var(--ease-vanguard),
    background 0.35s var(--ease-vanguard);
}

.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px;
  transition:
    transform 0.35s var(--ease-vanguard),
    border-color 0.35s var(--ease-vanguard),
    background 0.35s var(--ease-vanguard);
}

.handle-card:hover,
.related-card:hover,
.svc-card:hover,
.detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 64, 44, 0.24);
  background: rgba(255, 255, 255, 0.9);
}

.handle-title,
.related-title,
.svc-title,
.detail-card h3 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.svc-card .svc-title {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.25;
}

.handle-text,
.related-desc,
.detail-card p,
.coverage-text {
  margin-top: 10px;
  color: rgba(68, 64, 60, 0.78);
  line-height: 1.62;
}

.related-link {
  display: inline-flex;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust-deep);
}

.faq-list {
  border-top: 1px solid rgba(9, 9, 11, 0.08);
}

.faq-question {
  cursor: pointer;
  padding: 22px 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.form-section {
  padding-top: 48px;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 128px;
}

.form-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.form-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(9, 9, 11, 0.08);
  background: rgba(255, 255, 255, 0.76);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(68, 64, 60, 0.78);
}

.dispatch-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 24px 58px -42px rgba(9, 9, 11, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.form-honeypot {
  display: none;
}

.form-status {
  padding: 14px 16px;
  border: 1px solid rgba(194, 64, 44, 0.18);
  border-radius: 1rem;
  background: rgba(194, 64, 44, 0.08);
  color: var(--ink);
}

.form-status[hidden] {
  display: none;
}

.form-status strong,
.form-status span {
  display: block;
}

.form-status strong {
  color: var(--rust-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-status span {
  margin-top: 4px;
  color: rgba(68, 64, 60, 0.78);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust-deep);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(9, 9, 11, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 0.25s var(--ease-vanguard),
    box-shadow 0.25s var(--ease-vanguard),
    background 0.25s var(--ease-vanguard);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 54px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.25L7 9.25L11 5.25' stroke='%239a2e1e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 14px;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(194, 64, 44, 0.34);
  box-shadow: 0 0 0 4px rgba(194, 64, 44, 0.08);
  background: #fff;
}

.form-field small {
  color: rgba(68, 64, 60, 0.72);
  line-height: 1.5;
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: 6px;
}

.form-submit p {
  color: rgba(68, 64, 60, 0.72);
  font-size: 0.92rem;
}

.success-section {
  min-height: 70dvh;
  display: flex;
  align-items: center;
}

.success-inner {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.success-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  border-top: 1px solid rgba(9, 9, 11, 0.06);
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(194, 64, 44, 0.08),
      transparent 24rem
    ),
    var(--paper-warm);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(0, 0.76fr));
  gap: clamp(24px, 4vw, 52px);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0.9;
}

.footer-brand span {
  color: var(--rust);
}

.footer-copy {
  max-width: 38ch;
  margin-top: 18px;
  color: rgba(68, 64, 60, 0.78);
}

.footer-heading {
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust-deep);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact li {
  color: rgba(68, 64, 60, 0.82);
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: var(--rust-deep);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid rgba(9, 9, 11, 0.08);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(68, 64, 60, 0.62);
}

.mobile-dispatch-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(18, 18, 20, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 24px 60px -28px rgba(9, 9, 11, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  z-index: 1001;
}

.mobile-dispatch-bar span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.mobile-dispatch-bar i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rust);
  box-shadow: 0 0 0 6px rgba(194, 64, 44, 0.18);
  animation: pulseDot 1.8s var(--ease-vanguard) infinite;
}

.mobile-dispatch-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #151517;
  font-family: var(--font-display);
  font-size: 1.04rem;
  letter-spacing: 0.04em;
}

@keyframes routeTrace {
  0% {
    stroke-dashoffset: 320;
  }
  55%,
  100% {
    stroke-dashoffset: -60;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.72;
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.45);
  }
}

@media (max-width: 920px) {
  :root {
    --fixed-nav-offset: 12px;
    --fixed-nav-height: 64px;
    --fixed-nav-gap: 14px;
  }

  .nav {
    top: 12px;
    padding: 0 12px;
  }

  .nav-inner {
    min-height: 64px;
    padding: 10px 14px 10px 18px;
  }

  .logo-sub {
    display: none;
  }

  .phone-pill {
    padding: 10px 16px;
    font-size: 1rem;
  }

  .nav-right {
    gap: 14px;
  }

  .hero {
    padding: 124px 18px 76px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-inner > :first-child,
  .hero-visual,
  .hero-inner > .stats-card,
  .service-sidebar {
    grid-column: 1;
  }

  .hero-visual,
  .stats-card,
  .service-sidebar {
    order: 0;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 5.2rem);
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-image-card {
    border-radius: 2rem;
  }

  .dispatch-map {
    min-height: 292px;
    border-radius: 2rem;
  }

  .section-header {
    display: block;
  }

  .section-header .section-desc {
    margin-top: 16px;
  }

  .dispatch-flow {
    grid-template-columns: 1fr 1fr;
  }

  .dispatch-flow::before {
    display: none;
  }

  .corridor-inner {
    grid-template-columns: 1fr;
  }

  .corridor-copy {
    position: static;
  }

  .form-shell {
    grid-template-columns: 1fr;
  }

  .form-copy {
    position: static;
  }

  .why-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .emergency-inner {
    grid-template-columns: 1fr;
  }

  .emergency .btn-primary,
  .emergency p {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-dispatch-bar {
    display: flex;
  }
}

@media (min-width: 680px) and (max-width: 920px) {
  .hero-visual {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: stretch;
  }

  .hero-image-card {
    height: 100%;
    aspect-ratio: auto;
  }

  .hero-visual .stat-value {
    font-size: 1.55rem;
  }
}

@media (min-width: 680px) and (max-width: 840px) {
  .hero-visual .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-inner {
    gap: 12px;
  }

  .logo-top {
    font-size: 1.38rem;
  }

  .phone-pill {
    font-size: 0;
    gap: 0;
  }

  .phone-pill::before {
    content: "Call 24/7";
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 460px) {
  .nav-inner {
    padding-left: 14px;
    padding-right: 10px;
  }

  .phone-pill {
    display: none;
  }

  .nav-right {
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.35rem);
    line-height: 0.92;
  }

  .hero-image-card {
    aspect-ratio: 16 / 9;
    border-radius: 1.65rem;
  }

  .stats-card {
    padding: 24px;
    border-radius: 1.65rem;
  }

  .stat-value {
    font-size: clamp(1.35rem, 6.8vw, 1.9rem);
  }

  .hero::after,
  .hero::before {
    display: none;
  }

  .hero h1 em {
    -webkit-text-stroke-width: 0.8px;
  }

  .hero p {
    margin-bottom: 34px;
  }

  .hero-cta,
  .hero-cta a,
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-proof span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }

  .dispatch-flow {
    grid-template-columns: 1fr;
    border-radius: 1.65rem;
  }

  .dispatch-step {
    min-height: 238px;
  }

  .dispatch-step h3 {
    margin-top: 64px;
  }

  .board-head {
    display: none;
  }

  .dispatch-form {
    grid-template-columns: 1fr;
    border-radius: 1.5rem;
    padding: 18px;
  }

  .corridor-board {
    border-radius: 1.65rem;
  }

  .corridor-row {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 8px;
  }

  .stats-card,
  .service-card {
    border-radius: 1.65rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-value {
    font-size: 1.74rem;
  }

  .section,
  .coverage-inner,
  .cta-banner {
    padding-inline: 16px;
  }

  .coverage-box {
    padding: 28px 18px;
  }

  .cta-banner-inner {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .cta-phone,
  .cta-banner .btn-primary {
    grid-column: 1;
    justify-self: start;
  }

  .service-card {
    min-height: 252px;
  }

  .emergency {
    padding-inline: 16px;
  }

  .chips,
  .coverage-chips,
  .coverage-grid {
    justify-content: flex-start;
  }

  .footer {
    padding: 82px 16px 138px;
  }

  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .portable-text .portable-check-row {
    grid-template-columns: 2rem 1fr;
    gap: 0.4rem 0.75rem;
  }

  .portable-text .portable-check-row span:last-child {
    grid-column: 2;
  }
}

@media (max-width: 460px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@container (max-width: 430px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Service catalog group spacing */
.service-group + .service-group {
  margin-top: clamp(32px, 4vw, 56px);
}

.group-title {
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 18px;
}
