:root {
  --cream: #faf6ef;
  --green: #204e3a;
  --green-dark: #153a2a;
  --orange: #e76f2c;
  --ink: #1d1d1b;
  --paper: #fffdf8;
  --line: #d8d0c2;
  --muted: #595650;
  --shell: 72rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.06rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 { font-size: clamp(2.2rem, 8vw, 4rem); max-width: 13ch; }
h2 { font-size: clamp(2rem, 6vw, 3.35rem); max-width: 15ch; }
h3 { font-size: 1.35rem; }

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--green-dark);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--orange);
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  background: var(--green);
  color: #fff;
}

.hero__inner {
  width: min(100% - 2rem, 80rem);
  min-height: 100svh;
  margin-inline: auto;
  padding: 1.25rem 0 7.5rem;
  display: grid;
  align-content: center;
  gap: 2rem;
}

.brand {
  display: inline-block;
  margin-bottom: clamp(3rem, 10vh, 6.5rem);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow { color: #ffad7c; }

.hero__lead {
  max-width: 34rem;
  margin-bottom: 1.8rem;
  color: #eaf1ec;
  font-size: clamp(1.12rem, 3vw, 1.35rem);
}

.hero__actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 0.35rem;
  padding: 0.8rem 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.button--primary {
  min-width: min(100%, 21rem);
  min-height: 5.2rem;
  flex-direction: column;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 0.5rem 0 #b84917;
}

.button--primary span { font-size: 0.9rem; }
.button--primary strong { font-size: 1.4rem; }

.text-link {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 750;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.hero__art { display: none; }

.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }

.section-lead {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.service-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-card {
  min-height: 20rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2.5rem rgba(29, 29, 27, 0.08);
}

.service-card h3 { margin-top: auto; }
.service-card p { margin-bottom: 0; color: var(--muted); }

.service-card__number {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card--accent { border-color: var(--orange); }

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

.process__layout, .pricing__layout, .area__layout, .why__layout { display: grid; gap: 3rem; }

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child { border-bottom: 1px solid var(--line); }

.steps > li > span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  font-weight: 800;
  place-items: center;
}

.steps h3 { margin-bottom: 0.35rem; }
.steps p { margin-bottom: 0; color: var(--muted); }

.pricing { background: var(--green); color: #fff; }
.pricing .eyebrow { color: #ffad7c; }
.pricing .section-lead { color: #e0ebe4; }

.price-promise {
  max-width: 28rem;
  margin-top: 2rem;
  padding-left: 1rem;
  border-left: 4px solid var(--orange);
  font-size: 1.2rem;
  font-weight: 750;
}

.table-wrap {
  overflow: hidden;
  border-radius: 0.8rem;
  background: var(--paper);
  color: var(--ink);
}

table { width: 100%; border-collapse: collapse; }
caption { padding: 1rem; font-weight: 800; text-align: left; }
th, td { padding: 1rem; border-top: 1px solid var(--line); }
th { font-weight: 650; text-align: left; }
td { color: var(--green-dark); font-size: 1.2rem; font-weight: 850; text-align: right; white-space: nowrap; }

.area__layout { align-items: end; }

.neighborhoods {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
}

.neighborhoods li {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 700;
}

.why { background: var(--orange); }
.why .eyebrow { color: var(--ink); }

.trust-list { margin: 0; padding: 0; list-style: none; }

.trust-list li {
  display: grid;
  gap: 0.3rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(29, 29, 27, 0.45);
}

.trust-list li:last-child { border-bottom: 1px solid rgba(29, 29, 27, 0.45); }
.trust-list strong { font-size: 1.2rem; }

.safety { padding-block: 3rem; background: #fff3e9; }
.safety__inner { display: grid; gap: 0.5rem; }
.safety h2 { font-size: clamp(1.35rem, 4vw, 1.8rem); max-width: none; }
.safety p { max-width: 50rem; margin-bottom: 0; }

.contact { background: var(--green-dark); color: #fff; text-align: center; }
.contact__inner { display: flex; align-items: center; flex-direction: column; }
.contact .eyebrow { color: #ffad7c; }
.contact h2 { max-width: 15ch; }
.contact__actions { display: flex; width: 100%; max-width: 32rem; flex-direction: column; gap: 0.75rem; margin: 1rem 0 1.5rem; }
.button--light { background: var(--cream); color: var(--green-dark); }
.button--outline { border-color: #fff; color: #fff; }
.button--outline:hover { background: #fff; color: var(--green-dark); }
.email-link { color: #fff; text-underline-offset: 0.3rem; }

footer { padding: 1.5rem 0 7rem; background: #102c20; color: #d8e5dc; font-size: 0.9rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 1rem; }
.footer__inner p { margin-bottom: 0; }

.mobile-call {
  position: fixed;
  z-index: 50;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  min-height: 4.3rem;
  padding: 0.65rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 0.55rem;
  background: var(--orange);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 0.6rem 1.5rem rgba(29, 29, 27, 0.25);
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
}

.mobile-call strong { font-size: 1.1rem; }

@media (min-width: 48rem) {
  .shell { width: min(100% - 4rem, var(--shell)); }
  .hero__inner { width: min(100% - 4rem, 80rem); grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr); align-items: center; padding-block: 1.5rem 4rem; }
  .hero__art { display: block; align-self: end; margin-bottom: 4vh; animation: truck-in 700ms 180ms both cubic-bezier(.2,.75,.25,1); }
  .hero__art svg { width: min(100%, 38rem); height: auto; overflow: visible; }
  .sun { fill: var(--orange); }
  .road { fill: #153a2a; }
  .truck-body, .truck-cab { fill: #f5e9d7; }
  .window { fill: #9fc3b1; }
  .truck-line, .leaf-line { fill: none; stroke: var(--green-dark); stroke-width: 5; }
  .bumper { fill: var(--orange); }
  .wheel { fill: var(--ink); }
  .hub { fill: #f5e9d7; }
  .leaf { fill: var(--orange); }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .process__layout, .pricing__layout, .why__layout { grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr); }
  .area__layout { grid-template-columns: minmax(0, 1fr) minmax(24rem, 1fr); }
  .trust-list li { grid-template-columns: 0.8fr 1.2fr; gap: 1.5rem; }
  .safety__inner { grid-template-columns: minmax(16rem, 0.7fr) minmax(24rem, 1.3fr); align-items: center; }
  .contact__actions { flex-direction: row; }
  .contact__actions .button { flex: 1; }
  footer { padding-bottom: 1.5rem; }
  .mobile-call { display: none; }
}

@keyframes truck-in {
  from { opacity: 0; transform: translateX(3rem); }
  to { opacity: 1; transform: translateX(0); }
}

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