:root {
  color-scheme: light;
  --ink: #151a17;
  --muted: #607066;
  --paper: #fffdf8;
  --fog: #f4f7f2;
  --line: #d7dfd6;
  --forest: #194f37;
  --moss: #42694f;
  --amber: #f2a71b;
  --clay: #b45032;
  --steel: #26323a;
  --white: #ffffff;
  --shadow: 0 16px 42px rgba(20, 28, 24, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 74px;
  background: var(--fog);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: var(--forest);
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.emergency-bar {
  background: var(--steel);
  color: var(--white);
}

.emergency-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.emergency-inner a {
  color: var(--steel);
  background: var(--amber);
  border-radius: 5px;
  padding: 7px 10px;
  text-decoration: none;
  white-space: nowrap;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: var(--amber);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  width: 100%;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  font-size: 14px;
  font-weight: 900;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 8px 10px;
}

.nav-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--steel);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(16, 22, 18, 0.88), rgba(16, 22, 18, 0.48), rgba(16, 22, 18, 0.12)),
    url("/assets/roadside-hero.webp");
  background-size: cover;
  background-position: 62% center;
}

.hero-content {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 54px 0;
}

.hero-copy {
  max-width: 760px;
}

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

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(42px, 9vw, 78px);
  max-width: 860px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 21px;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 680px;
  font-size: 19px;
  color: #edf3ed;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 18px;
  border: 2px solid transparent;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--amber);
  color: var(--steel);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-strip span,
.badge {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.11);
  font-weight: 800;
  font-size: 13px;
}

.section {
  padding: 54px 0;
}

.band {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 840px;
  margin-bottom: 24px;
}

.section-head .eyebrow {
  color: var(--clay);
}

.section-head p,
.intro,
.area-note {
  color: var(--muted);
  font-size: 17px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.card,
.panel,
.price-card,
.review-card,
.lead-form,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(38, 50, 58, 0.06);
}

.card,
.panel,
.price-card,
.review-card,
.lead-form,
.contact-panel {
  padding: 20px;
}

.service-card span {
  width: 38px;
  height: 5px;
  display: block;
  border-radius: 999px;
  background: var(--amber);
  margin-bottom: 14px;
}

.service-card p,
.area-card p,
.price-card p,
.review-card figcaption {
  color: var(--muted);
}

.service-card a,
.area-card a {
  color: var(--ink);
  text-decoration: none;
}

.service-card a:hover,
.area-card a:hover,
.text-cta:hover {
  text-decoration: underline;
}

.text-cta {
  color: var(--forest);
  font-weight: 900;
}

.area-card span {
  display: block;
  color: var(--moss);
  font-size: 14px;
  font-weight: 800;
}

.badge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.route-badges {
  margin-top: 18px;
}

.badge {
  min-height: 58px;
  display: grid;
  align-items: center;
  color: var(--ink);
  border-color: var(--line);
  background: #f8faf5;
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.panel ul {
  margin: 0;
  padding-left: 20px;
}

.panel li {
  margin: 8px 0;
}

.photo-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

.photo-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-copy {
  max-width: 640px;
}

.photo-copy .eyebrow {
  color: var(--clay);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.before-after div {
  border-left: 5px solid var(--amber);
  background: var(--white);
  border-radius: 6px;
  padding: 14px;
}

.before-after strong,
.before-after span {
  display: block;
}

.before-after span {
  color: var(--muted);
}

.review-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pricing-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--steel);
  color: var(--white);
  padding: 20px;
}

.pricing-note h3 {
  color: var(--white);
}

.pricing-note p {
  color: #edf3ed;
}

.review-card {
  margin: 0;
}

.stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 0;
}

blockquote {
  margin: 10px 0;
  font-size: 18px;
  font-weight: 800;
}

.price-topline {
  display: grid;
  gap: 8px;
  align-items: start;
}

.price-card strong {
  display: block;
  width: fit-content;
  border-radius: 6px;
  background: #fff3ce;
  padding: 6px 9px;
  color: var(--steel);
  font-size: 18px;
}

.price-card span {
  display: block;
  margin-top: 12px;
  color: var(--moss);
  font-size: 14px;
  font-weight: 900;
}

.factor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.factor {
  border-left: 5px solid var(--amber);
  background: var(--white);
  border-radius: 6px;
  padding: 18px;
}

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

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

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

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

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.lead-form h2,
.contact-panel h2 {
  font-size: 26px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.bot-field {
  display: none;
}

label {
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b9c4ba;
  border-radius: 6px;
  padding: 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

.big-phone a {
  color: var(--clay);
  font-size: clamp(28px, 8vw, 46px);
  font-weight: 900;
  text-decoration: none;
}

.sticky-call {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(21, 26, 23, 0.92);
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.18);
}

.sticky-call a {
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--amber);
  color: var(--steel);
  font-weight: 900;
  text-decoration: none;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 40px 0 92px;
}

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

.fine-print {
  color: #dce5df;
  font-size: 14px;
}

@media (min-width: 700px) {
  body {
    padding-bottom: 0;
  }

  .nav-links {
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: auto;
    overflow: visible;
    gap: 12px;
    font-size: 14px;
    font-weight: 900;
  }

  .nav-links a {
    border: 0;
    background: transparent;
    padding: 0;
  }

  .nav-cta {
    border-radius: 6px;
    padding: 9px 12px;
    background: var(--forest);
    color: var(--white) !important;
  }

  .nav {
    align-items: center;
    flex-direction: row;
    padding: 0;
  }

  .sticky-call {
    display: none;
  }

  .card-grid,
  .badge-grid,
  .pricing-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-layout,
  .photo-feature,
  .pricing-note {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .factor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  .badge-grid,
  .pricing-grid,
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 420px) {
  .emergency-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
  }

  .hero,
  .hero-content {
    min-height: 690px;
  }
}
