:root {
  color-scheme: light;
  --ink: #1d2726;
  --muted: #5f6b68;
  --paper: #fbfaf6;
  --sand: #efe7d6;
  --stone: #d5d0c3;
  --pine: #16483f;
  --pine-2: #0f332e;
  --teal: #2a8f8a;
  --clay: #a75035;
  --gold: #d9a441;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(22, 72, 63, 0.18);
  --radius: 8px;
  --wrap: min(1160px, calc(100% - 32px));
}

* {
  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;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(29, 39, 38, 0.1);
  backdrop-filter: blur(16px);
}

.top-strip {
  background: var(--pine-2);
  color: var(--sand);
  font-size: 0.86rem;
}

.top-strip__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.main-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: auto;
}

.brand strong,
.footer-brand span {
  display: block;
  font-size: 1.03rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: #2a3432;
}

.nav-links a:hover {
  color: var(--clay);
}

.nav-call {
  padding: 10px 14px;
  color: var(--white) !important;
  background: var(--clay);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(167, 80, 53, 0.25);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(29, 39, 38, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  min-height: min(720px, calc(100vh - 144px));
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: clamp(92px, 14vh, 160px) 0 46px;
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 26, 23, 0.88), rgba(8, 26, 23, 0.54) 48%, rgba(8, 26, 23, 0.22)),
    url("/blog/wp-content/uploads/2013/08/our-truck-at-job.jpg") center / cover no-repeat;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(0deg, rgba(8, 26, 23, 0.62), rgba(8, 26, 23, 0));
}

.hero__content {
  position: relative;
}

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

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 7.5vw, 6.4rem);
}

.hero__lead {
  max-width: 690px;
  margin: 18px 0 0;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 16px 38px rgba(167, 80, 53, 0.3);
}

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

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

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  margin: 46px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
}

.hero__stats div {
  padding: 18px;
}

.hero__stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__stats dt {
  font-weight: 950;
  font-size: 1.1rem;
}

.hero__stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(29, 39, 38, 0.1);
}

.trust-bar__inner {
  min-height: 108px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
}

.trust-bar img {
  width: 150px;
}

.trust-bar p {
  margin: 0;
  color: var(--muted);
}

.trust-bar a {
  color: var(--pine);
  font-weight: 900;
  text-decoration: none;
}

.section {
  padding: clamp(64px, 9vw, 104px) 0;
}

.section--intro {
  background: var(--paper);
}

.section--dark {
  color: var(--white);
  background: var(--pine-2);
}

.section--photo {
  background: var(--sand);
}

.section--cta {
  background:
    linear-gradient(90deg, rgba(246, 241, 232, 0.98), rgba(246, 241, 232, 0.86)),
    url("/blog/wp-content/uploads/2013/02/soil-background32.jpg") center / cover fixed;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.split h2,
.section-heading h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.split p,
.section-heading p,
.photo-band p,
.quote-layout p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section--dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.intro-panel {
  padding: 24px;
  color: var(--white);
  background: var(--pine);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-panel p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.intro-panel strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.18;
}

.intro-panel ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.intro-panel li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.intro-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.intro-panel a {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(29, 39, 38, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(29, 39, 38, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  background: var(--stone);
}

.service-card div {
  padding: 18px;
}

.service-card h3 {
  font-size: 1.12rem;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.signs-grid article {
  min-height: 268px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.signs-grid span {
  display: block;
  color: var(--gold);
  font-weight: 950;
  margin-bottom: 30px;
}

.signs-grid h3 {
  font-size: 1.18rem;
}

.signs-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.process-layout,
.reviews-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(29, 39, 38, 0.1);
  border-radius: var(--radius);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 950;
}

.process-list h3 {
  font-size: 1.2rem;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 380px);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
}

.photo-band h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
}

.photo-band img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.engineering-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 51, 46, 0.96), rgba(22, 72, 63, 0.9)),
    url("/blog/wp-content/uploads/2013/06/homeslide4_21.png") center / cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.engineering-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.engineering-panel p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--pine);
  font-weight: 950;
  text-decoration-color: rgba(22, 72, 63, 0.35);
  text-underline-offset: 4px;
}

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

.reviews-layout .section-heading {
  grid-column: 1 / -1;
}

.quote {
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(29, 39, 38, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(29, 39, 38, 0.06);
}

.quote--muted {
  background: var(--pine);
  color: var(--white);
}

.quote blockquote {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.42;
}

.quote figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.quote--muted figcaption {
  color: rgba(255, 255, 255, 0.68);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
}

.contact-stack {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-weight: 900;
}

.contact-stack a {
  color: var(--pine);
  text-decoration: none;
}

.contact-stack span {
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(29, 39, 38, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--pine-2);
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(29, 39, 38, 0.18);
  border-radius: var(--radius);
  background: #fffdf8;
  padding: 12px 13px;
  color: var(--ink);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(42, 143, 138, 0.22);
  border-color: var(--teal);
}

.span-2 {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.faq-list details {
  border: 1px solid rgba(29, 39, 38, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  padding: 56px 0 96px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--pine-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(160px, 0.7fr));
  gap: 34px;
}

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

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-grid address {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.sticky-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: var(--white);
  background: var(--clay);
  border-radius: var(--radius);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(29, 39, 38, 0.25);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 114px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid rgba(29, 39, 38, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: 6px;
  }

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

  .trust-bar__inner,
  .split,
  .process-layout,
  .reviews-layout,
  .faq-layout,
  .quote-layout,
  .photo-band,
  .engineering-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .top-strip__inner {
    justify-content: center;
    text-align: center;
  }

  .top-strip__inner span {
    display: none;
  }

  .main-nav {
    min-height: 70px;
  }

  .brand img {
    width: 42px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 144px);
    padding-top: 72px;
    padding-bottom: 30px;
  }

  .hero__media {
    background:
      linear-gradient(0deg, rgba(8, 26, 23, 0.86), rgba(8, 26, 23, 0.48)),
      url("/blog/wp-content/uploads/2013/08/our-truck-at-job.jpg") center / cover no-repeat;
  }

  .service-grid,
  .signs-grid,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    display: none;
  }

  .trust-bar__inner {
    justify-items: start;
    gap: 12px;
    padding: 22px 0;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .photo-band img {
    max-width: 320px;
  }

  .footer-bottom {
    display: grid;
  }

  .sticky-call {
    left: 16px;
  }
}
