:root {
  --ink: #14211f;
  --muted: #5d6a67;
  --line: #d8e3df;
  --panel: #f4f8f6;
  --panel-strong: #e8f1ee;
  --white: #ffffff;
  --teal: #0f766e;
  --green: #2f7d32;
  --red: #be2f29;
  --amber: #d97706;
  --shadow: 0 18px 45px rgba(18, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 750;
}

.site-nav a,
.footer-grid a,
.footer-bottom a,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.footer-grid a:hover,
.footer-bottom a:hover,
.text-link:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
}

.header-cta,
.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: min(760px, 76vh);
  display: flex;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-overlay,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 18, 17, 0.84), rgba(10, 18, 17, 0.46) 48%, rgba(10, 18, 17, 0.08));
}

.hero-content {
  position: relative;
  width: min(820px, calc(100% - 36px));
  padding: 0 clamp(18px, 5vw, 64px) clamp(42px, 7vw, 86px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #7dd3c7;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 5.9rem);
  max-width: 12ch;
}

.page-hero h1 {
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 14px 0 0;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(1rem, 1.6vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.status-band,
.local-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--white);
}

.status-band div,
.local-summary div {
  padding: 22px clamp(16px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.status-band div:last-child,
.local-summary div:last-child {
  border-right: 0;
}

.status-band strong,
.local-summary strong {
  display: block;
  font-size: 1.08rem;
}

.status-band span,
.local-summary span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: clamp(48px, 7vw, 104px) clamp(18px, 5vw, 64px);
}

.section > * {
  max-width: 1180px;
  margin-inline: auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.muted {
  background: var(--panel);
}

.section-heading {
  margin-bottom: 28px;
}

.media-stack {
  display: grid;
  gap: 14px;
}

.media-stack img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

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

.service-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card p {
  color: var(--muted);
}

.route-panel,
.contact-slab {
  background: var(--panel-strong);
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
}

.route-list span,
.pill-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 750;
}

.page-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 17, 0.86), rgba(10, 18, 17, 0.45), rgba(10, 18, 17, 0.08));
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  padding: clamp(40px, 8vw, 92px) clamp(18px, 5vw, 64px);
}

.page-hero.compact,
.page-hero.directory,
.page-hero.location-hero {
  min-height: 430px;
}

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

.local-content {
  display: grid;
  gap: 34px;
}

.local-content article {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.local-content article:last-child {
  border-bottom: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 850;
}

.location-directory {
  display: grid;
  gap: 24px;
}

.state-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.state-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.state-card a {
  color: var(--teal);
  font-size: 1.08rem;
  font-weight: 900;
}

.state-card p {
  color: var(--muted);
}

.state-card span {
  align-self: end;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.location-group {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.location-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.location-group li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.location-group a,
.inline-links a,
.text-link {
  color: var(--teal);
  font-weight: 850;
}

.location-group span {
  color: var(--muted);
  font-size: 0.9rem;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.dispatch-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal,
.confirmation {
  max-width: 850px;
}

.site-footer {
  padding: 46px clamp(18px, 5vw, 64px) 28px;
  background: #13201e;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 9px;
  color: #dce7e4;
}

.nap-line {
  font-weight: 850;
}

.footer-grid p,
.footer-bottom {
  color: #dce7e4;
}

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

.footer-brand small {
  color: #dce7e4;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  max-width: 1180px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.fine-print-address {
  font-size: 0.86rem;
}

@media (max-width: 920px) {
  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .header-cta {
    margin-left: auto;
  }

  .header-actions {
    margin-left: auto;
  }

  .status-band,
  .local-summary,
  .card-grid.three,
  .card-grid.four,
  .state-card-grid,
  .two-column,
  .route-panel,
  .footer-grid,
  .location-group ul {
    grid-template-columns: 1fr;
  }

  .status-band div,
  .local-summary div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route-panel {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .brand small {
    font-size: 0.72rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    width: 100%;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 2.35rem;
  }

  .hero,
  .page-hero {
    min-height: 560px;
  }

  .hero-overlay,
  .page-hero::after {
    background: rgba(10, 18, 17, 0.68);
  }

  .hero-content,
  .page-hero > div {
    width: 100%;
  }

  .form-row,
  .route-list {
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions a {
    width: 100%;
  }
}