:root {
  --ink: #080b10;
  --raven: #111721;
  --steel: #263241;
  --brass: #c6942e;
  --brass-light: #e4bd63;
  --cream: #f6eddf;
  --paper: #fff8ec;
  --smoke: #c8c0b2;
  --ember: #ce3f2f;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.32);
  --max: 1180px;
  --radius: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--cream);
  background: var(--ink);
  overflow-x: hidden;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  transform: translateY(-140%);
  background: var(--brass);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.emergency-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  z-index: 100;
  background: var(--brass-light);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 1px solid rgba(8, 11, 16, 0.18);
}

.strip-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  height: 100%;
  align-items: center;
  gap: 34px;
  animation: stripMove 34s linear infinite;
  white-space: nowrap;
}

.strip-track span {
  font-size: 0.82rem;
  font-weight: 800;
}

.strip-track a {
  text-decoration: none;
}

@keyframes stripMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 99;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(8, 11, 16, 0.92);
  box-shadow: 0 14px 50px var(--shadow);
  backdrop-filter: blur(14px);
}

.main-nav {
  width: min(100%, var(--max));
  height: 86px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 220px;
  display: block;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.5));
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a,
.nav-dropdown-trigger,
.site-footer nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--cream);
  opacity: 0.86;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-menu a:hover,
.nav-dropdown-trigger:hover,
.site-footer nav a:hover {
  color: var(--brass-light);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: default;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(228, 189, 99, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 11, 16, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
  display: none;
  z-index: 120;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: var(--radius);
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.nav-call,
.button,
.form-submit,
.mobile-call-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.nav-call {
  padding: 10px 16px;
  color: var(--ink);
  background: var(--brass-light);
}

.nav-call svg,
.button svg,
.form-submit svg,
.mobile-call-bar svg {
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 156px 24px 0;
  isolation: isolate;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
  background: var(--ink);
}

.location-hero {
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.94), rgba(8, 11, 16, 0.72) 48%, rgba(8, 11, 16, 0.42)),
    linear-gradient(0deg, var(--ink) 0%, rgba(8, 11, 16, 0) 32%),
    url("../images/a1.jpg") center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 11, 16, 0.58) 0%,
      rgba(8, 11, 16, 0.36) 48%,
      rgba(8, 11, 16, 0.12) 100%
    ),
    linear-gradient(
      0deg,
      rgba(8, 11, 16, 0.20) 0%,
      rgba(8, 11, 16, 0) 40%
    ),
    linear-gradient(
      135deg,
      rgba(198, 148, 46, 0.08) 0%,
      rgba(198, 148, 46, 0) 45%
    );
}

.hero-keyline {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 189, 99, 0.86), transparent);
  transform: rotate(-3deg);
  z-index: -1;
}

.hero-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  align-items: center;
  gap: 60px;
  flex: 1;
  min-height: 560px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass-light);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1,
.section-heading h2,
.intro-copy h2,
.about-copy h2,
.coverage-copy h2,
.faq-heading h2,
.reviews-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 0.98;
}

.hero h1 {
  font-size: 5.6rem;
  max-width: 820px;
}

.hero-lede {
  margin: 26px 0 0;
  max-width: 670px;
  color: var(--smoke);
  font-size: 1.18rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  padding: 14px 20px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.nav-call:hover,
.form-submit:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--brass-light);
  color: var(--ink);
}

.button-ghost {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-dark {
  background: var(--ink);
  color: var(--brass-light);
  border: 1px solid rgba(198, 148, 46, 0.4);
}

.dispatch-board {
  border: 1px solid rgba(228, 189, 99, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(17, 23, 33, 0.92), rgba(38, 50, 65, 0.8));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  padding: 24px;
}

.dispatch-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cream);
  font-weight: 900;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #36d98a;
  box-shadow: 0 0 0 6px rgba(54, 217, 138, 0.14);
}

.dispatch-number {
  margin: 26px 0;
}

.dispatch-number span {
  display: block;
  color: var(--smoke);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.dispatch-number a {
  color: var(--brass-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 900;
  text-decoration: none;
}

.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.dispatch-grid div {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.dispatch-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.dispatch-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.46rem;
}

.dispatch-grid span {
  color: var(--smoke);
  font-size: 0.82rem;
}

.dispatch-board p {
  margin: 20px 0 0;
  color: var(--smoke);
  line-height: 1.7;
}

.hero-service-rail {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.hero-service-rail a {
  display: grid;
  gap: 8px;
  padding: 22px;
  min-height: 116px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  align-content: center;
  transition: background 160ms ease, color 160ms ease;
}

.hero-service-rail a + a {
  border-left: 1px solid rgba(8, 11, 16, 0.14);
}

.hero-service-rail a:hover {
  background: var(--brass-light);
}

.hero-service-rail span {
  color: var(--ember);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
}

.locations-section {
  background: var(--paper);
  color: var(--ink);
  padding-top: 90px;
  padding-bottom: 100px;
}

.locations-section .eyebrow {
  color: var(--ember);
}

.location-link-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.location-link-card {
  display: grid;
  gap: 12px;
  min-height: 180px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid rgba(8, 11, 16, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(8, 11, 16, 0.08);
}

.location-link-card span {
  color: var(--ember);
  font-weight: 900;
  font-size: 0.82rem;
}

.location-link-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.08;
}

.location-link-card small {
  color: #4f4a42;
  line-height: 1.55;
}

.intro-band,
.services-section,
.locations-section,
.about-section,
.coverage-section,
.faq-section,
.reviews-section,
.contact-section,
.site-footer {
  padding-left: 24px;
  padding-right: 24px;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 46px;
  align-items: end;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 70px;
}

.intro-copy h2 {
  font-size: 3.6rem;
}

.intro-proof {
  border-left: 2px solid var(--brass);
  padding-left: 28px;
}

.intro-proof p {
  margin: 0;
  color: var(--smoke);
  font-size: 1.12rem;
  line-height: 1.8;
}

.services-section {
  background: var(--paper);
  color: var(--ink);
  padding-top: 90px;
  padding-bottom: 100px;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 46px;
  align-items: start;
}

.section-heading .eyebrow,
.services-section .eyebrow {
  color: var(--ember);
}

.section-heading h2 {
  font-size: 4rem;
  max-width: 830px;
}

.service-lanes {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(8, 11, 16, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 18px 45px rgba(8, 11, 16, 0.08);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card-body {
  padding: 22px;
}

.service-card-body span {
  color: var(--ember);
  font-weight: 900;
  font-size: 0.82rem;
}

.service-card h3 {
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: #4f4a42;
  line-height: 1.65;
}

.about-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 110px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 560px;
}

.about-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.about-float {
  position: absolute;
  right: -28px;
  bottom: 0;
  width: 230px;
  height: 168px;
  object-fit: cover;
  border: 10px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.about-copy h2,
.coverage-copy h2,
.faq-heading h2,
.reviews-heading h2,
.contact-copy h2 {
  font-size: 3.8rem;
}

.about-copy p,
.coverage-copy p,
.contact-copy p {
  margin: 24px 0 0;
  color: var(--smoke);
  line-height: 1.78;
  font-size: 1.05rem;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.promise-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

.promise-list svg {
  margin-top: 3px;
  color: var(--brass-light);
  flex: 0 0 auto;
}

.coverage-section {
  background: linear-gradient(115deg, var(--brass) 0%, var(--brass-light) 45%, var(--paper) 100%);
  color: var(--ink);
  padding-top: 90px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.coverage-section > * {
  max-width: 580px;
}

.coverage-copy {
  justify-self: end;
}

.coverage-copy .eyebrow {
  color: var(--ink);
}

.coverage-copy p {
  color: #33260e;
}

.coverage-copy .button {
  margin-top: 30px;
}

.route-board {
  width: min(100%, 560px);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 26px 80px rgba(8, 11, 16, 0.3);
}

.route-header {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.route-header span {
  color: var(--brass-light);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.route-header strong {
  font-size: 1.15rem;
}

.city-route {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.city-route li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.city-route span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brass-light);
  box-shadow: 0 0 0 5px rgba(228, 189, 99, 0.16);
}

.faq-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 60px;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: var(--cream);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.faq-item svg {
  color: var(--brass-light);
  transition: transform 180ms ease;
  flex: 0 0 auto;
}

.faq-item.is-open svg {
  transform: rotate(45deg);
}

.faq-panel {
  display: none;
  padding: 0 0 24px;
  color: var(--smoke);
  line-height: 1.7;
}

.faq-panel.is-open {
  display: block;
}

.faq-panel p {
  margin: 0;
}

.reviews-section {
  background: var(--paper);
  color: var(--ink);
  padding-top: 90px;
  padding-bottom: 90px;
}

.reviews-heading,
.review-grid {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.reviews-heading {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 46px;
  align-items: start;
  margin-bottom: 40px;
}

.reviews-heading .eyebrow {
  color: var(--ember);
}

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

.review-card {
  min-height: 260px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(8, 11, 16, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 45px rgba(8, 11, 16, 0.08);
}

.stars {
  color: var(--brass);
  font-size: 1.05rem;
}

.review-card p {
  margin: 18px 0;
  color: #3b362f;
  line-height: 1.7;
}

.review-card span {
  color: var(--ember);
  font-weight: 900;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 160px;
  background: var(--ink);
}

.gallery-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
}

.contact-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 64px;
  align-items: start;
}

.contact-methods {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 15px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.contact-methods svg {
  color: var(--brass-light);
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.contact-methods span {
  display: grid;
  gap: 3px;
  font-weight: 900;
}

.contact-methods small {
  color: var(--smoke);
  font-weight: 700;
}

.contact-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.contact-form h3 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.contact-form label {
  display: block;
  margin: 18px 0 8px;
  color: #2f2a22;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 11, 16, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(198, 148, 46, 0.16);
}

.form-submit {
  width: 100%;
  margin-top: 22px;
  padding: 14px 18px;
  color: var(--cream);
  background: var(--ink);
}

.form-submit.is-sent {
  background: #146c43;
}

.form-note {
  min-height: 22px;
  margin: 14px 0 0;
  color: #146c43;
  font-weight: 800;
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(150px, auto) minmax(190px, auto);
  gap: 64px;
  align-items: start;
}

.site-footer img {
  width: 210px;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  color: var(--smoke);
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  justify-content: start;
}

.footer-pages,
.footer-service-areas {
  display: grid;
  gap: 8px;
  min-width: 180px;
}

.footer-pages h3,
.footer-service-areas h3 {
  margin: 0;
  color: var(--brass-light);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-pages a,
.footer-service-areas a {
  text-decoration: none;
  color: var(--cream);
  opacity: 0.86;
  font-weight: 800;
  font-size: 0.92rem;
}

.footer-pages a:hover,
.footer-service-areas a:hover {
  color: var(--brass-light);
  opacity: 1;
}

.copyright a {
  color: var(--brass-light);
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

.mobile-call-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 260ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    grid-template-columns: 210px auto auto;
  }

  .nav-menu {
    gap: 16px;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

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

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

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

  .about-section,
  .faq-section,
  .contact-section {
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(8, 11, 16, 0.9);
    backdrop-filter: blur(14px);
  }

  .main-nav {
    height: 76px;
    grid-template-columns: 190px 1fr auto;
  }

  .brand {
    width: 184px;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .nav-call {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 114px;
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100vh - 114px);
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 0;
    padding: 28px 24px 110px;
    background: rgba(8, 11, 16, 0.98);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu a {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.2rem;
  }

  .nav-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-dropdown-trigger {
    padding: 20px 0;
    font-size: 1.2rem;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 12px 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 12px 0;
    border-bottom: 0;
    font-size: 1rem;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-layout,
  .intro-band,
  .section-heading,
  .about-section,
  .coverage-section,
  .faq-section,
  .reviews-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .dispatch-board {
    max-width: 540px;
  }

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

  .hero-service-rail a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(8, 11, 16, 0.14);
  }

  .hero-service-rail a:nth-child(4) {
    border-top: 1px solid rgba(8, 11, 16, 0.14);
  }

  .coverage-copy {
    justify-self: auto;
  }

  .coverage-section > * {
    max-width: none;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-form {
    max-width: 560px;
  }

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

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

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-call-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 120;
    display: inline-flex;
    color: var(--ink);
    background: var(--brass-light);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  }
}

@media (max-width: 640px) {
  .emergency-strip {
    height: 34px;
  }

  .site-header {
    top: 34px;
  }

  .main-nav {
    height: 70px;
    padding: 0 16px;
    grid-template-columns: 150px 1fr auto;
  }

  .brand {
    width: 150px;
  }

  .nav-menu {
    top: 104px;
    height: calc(100vh - 104px);
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero,
  .intro-band,
  .services-section,
  .locations-section,
  .about-section,
  .coverage-section,
  .faq-section,
  .reviews-section,
  .contact-section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-layout {
    min-height: 0;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .dispatch-board {
    padding: 18px;
  }

  .dispatch-number a {
    font-size: 1.62rem;
  }

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

  .dispatch-grid div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-service-rail {
    grid-template-columns: 1fr;
  }

  .hero-service-rail a + a,
  .hero-service-rail a:nth-child(3),
  .hero-service-rail a:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(8, 11, 16, 0.14);
  }

  .intro-band,
  .services-section,
  .locations-section,
  .about-section,
  .coverage-section,
  .faq-section,
  .reviews-section,
  .contact-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .intro-copy h2,
  .section-heading h2,
  .about-copy h2,
  .coverage-copy h2,
  .faq-heading h2,
  .reviews-heading h2,
  .contact-copy h2 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .service-lanes,
  .location-link-grid,
  .promise-list {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 380px;
  }

  .about-main {
    height: 340px;
  }

  .about-float {
    width: 170px;
    height: 118px;
    right: 14px;
    border-width: 6px;
  }

  .route-board,
  .contact-form {
    padding: 20px;
  }

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

  .gallery-strip img {
    height: 140px;
  }
}
