:root {
  --green: #42642b;
  --green-dark: #1f3817;
  --green-soft: #698655;
  --cream: #f6f2ea;
  --paper: #fffdf8;
  --stone: #d8d0c3;
  --charcoal: #242420;
  --muted: #625f56;
  --rust: #a55e32;
  --shadow: 0 14px 34px rgba(42, 38, 30, .12);
  --radius: 7px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Roboto Condensed", sans-serif;
  --body: "Trebuchet MS", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 18% 14%, rgba(165, 94, 50, .08), transparent 18rem),
    linear-gradient(90deg, rgba(31, 56, 23, .025) 1px, transparent 1px),
    var(--cream);
  background-size: auto, 28px 28px, auto;
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: .96;
}

h1 { font-size: clamp(3.8rem, 9vw, 6.8rem); color: #fff; text-shadow: 0 3px 14px rgba(0,0,0,.45); }
h2 { font-size: clamp(2rem, 4.3vw, 3.8rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 88px;
  padding: .6rem clamp(1rem, 5vw, 5.5rem);
  background: #fff;
  box-shadow: 0 2px 20px rgba(35, 34, 29, .08);
}

.brand img {
  width: 139px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 4rem);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 1.15rem .25rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: .2rem;
  right: .2rem;
  bottom: .62rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--green); }

.phone-link,
.button,
.filter-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font: 900 .9rem/1 var(--body);
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 10px 26px rgba(31, 56, 23, .22);
  cursor: pointer;
}

.phone-link {
  min-width: 174px;
  padding: .85rem 1rem;
  font-size: 1rem;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button {
  padding: 1rem 1.55rem;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover,
.filter-bar button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(31, 56, 23, .28);
}

.button.compact { min-height: 38px; padding: .8rem 1.4rem; font-size: .82rem; }
.button.light { background: #fff; color: var(--green-dark); }
.button.full { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stone);
  border-radius: 4px;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
}

.hero {
  position: relative;
  min-height: clamp(430px, 51vw, 540px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 24, 13, .88) 0%, rgba(28, 40, 20, .62) 38%, rgba(24, 29, 20, .25) 78%),
    url("assets/hero-bg.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -1px;
  height: 38px;
  background: var(--cream);
  clip-path: polygon(0 44%, 9% 62%, 18% 39%, 31% 58%, 43% 43%, 58% 65%, 70% 42%, 83% 57%, 100% 39%, 100% 100%, 0 100%);
  z-index: -1;
}

.hero-content {
  padding: 5rem 0 6rem;
}

.hero-content p {
  max-width: 470px;
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.hero-content .button { margin-top: .3rem; }

.hero-sub h1 { font-size: clamp(3.2rem, 8vw, 6.1rem); }

.section {
  padding: clamp(3.2rem, 6vw, 5.5rem) 0;
}

.section-tight { padding-top: 1rem; }

.section-heading {
  max-width: 790px;
  margin: 0 auto 2.1rem;
  text-align: center;
}

.section-heading p {
  margin: .55rem auto 0;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--green);
  font: 900 1rem/1 var(--display);
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--green-soft);
}

.eyebrow.left::after { display: none; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.45rem;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 7px 18px rgba(38, 34, 26, .06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.service-card div { padding: 1.25rem 1.15rem 1.35rem; }

.service-card h3 {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .75rem;
}

.service-card p { color: #282821; margin: 0; }

.service-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 70% 0 70% 70%;
  background: var(--green);
  transform: rotate(-45deg);
}

.service-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 15px;
  background: rgba(255,255,255,.82);
  transform: rotate(45deg);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 1.45rem;
}

.ruled {
  border-top: 1px solid var(--stone);
  padding-top: 1.35rem;
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.preview-gallery.four { grid-template-columns: repeat(4, 1fr); }

.preview-gallery img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 4px;
}

.split-panel,
.values-panel,
.why-panel {
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: rgba(255,255,255,.48);
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2rem;
  padding: 1.8rem;
}

.split-panel > div:first-child {
  border-right: 1px solid var(--stone);
  padding-right: 1.5rem;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  margin-top: 1.8rem;
  color: var(--green-dark);
  font: 900 .78rem/1.2 var(--body);
  text-transform: uppercase;
  text-align: center;
}

.process h2,
.why-panel h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.process-grid div {
  position: relative;
  padding: 0 .75rem;
}

.process-grid span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: .65rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.process-grid strong,
.why-grid strong,
.values-grid strong {
  display: block;
  margin-bottom: .35rem;
  font: 900 .84rem/1.2 var(--body);
  text-transform: uppercase;
}

.process-grid p { margin: 0; font-size: .9rem; }

.why-panel {
  padding: 1.5rem 1.2rem;
}

.why-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
  text-align: center;
}

.why-grid div,
.values-grid div {
  padding: .8rem 1rem;
  border-right: 1px solid var(--stone);
}

.why-grid div:last-child,
.values-grid div:last-child { border-right: 0; }

.why-grid span,
.values-grid span {
  display: block;
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0 auto .7rem;
  border: 3px solid var(--green);
  border-radius: 50%;
  font-size: 0;
}

.why-grid span::before,
.values-grid span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  width: 11px;
  height: 20px;
  border-right: 5px solid var(--green);
  border-bottom: 5px solid var(--green);
  transform: rotate(45deg);
}

.cta-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(19, 28, 15, .88), rgba(23, 42, 17, .66)),
    url("assets/hero-bg.png") center / cover no-repeat;
}

.cta-content,
.cta-inline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.6rem 0;
}

.cta-content h2,
.cta-inline-inner h2 { font-size: clamp(2.2rem, 4vw, 4rem); }

.cta-content p,
.cta-inline-inner p { margin: .5rem 0 0; }

.story-grid,
.choose-grid,
.contact-layout,
.contact-lower {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-grid img,
.choose-grid img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-grid h2,
.choose-grid h2,
.contact-layout h2 {
  margin: .45rem 0 1rem;
}

.values-panel { padding: 1.2rem; }
.values-grid { grid-template-columns: repeat(5, 1fr); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.trust-strip div {
  padding: 1.35rem 1.4rem;
  border-right: 1px solid rgba(255,255,255,.32);
}

.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { display: block; text-transform: uppercase; font-weight: 900; }
.trust-strip span { color: rgba(255,255,255,.86); }

.check-list {
  padding: 0;
  margin: 0 0 1.4rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .45rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42rem;
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background: var(--green);
}

.mini-grid {
  display: grid;
  grid-template-columns: .9fr 1.35fr .95fr;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.testimonial-card,
.area-card,
.mini-cta,
.featured-grid article,
.before-after,
.contact-info,
.estimate-box {
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: rgba(255,255,255,.68);
  box-shadow: 0 7px 18px rgba(38, 34, 26, .06);
}

.testimonial-card,
.area-card { padding: 1.2rem; }

.testimonial-card h3,
.area-card h3,
.featured-grid h3 {
  margin-bottom: .75rem;
}

.mini-cta {
  min-height: 255px;
  display: grid;
  align-content: center;
  padding: 2rem;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(20, 28, 16, .86), rgba(26, 43, 19, .46)),
    url("assets/hero-bg.png") center / cover no-repeat;
}

.area-card img {
  margin-top: .8rem;
  border-radius: 4px;
}

.photo-credit {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.25;
}

.photo-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.process-wide {
  border-top: 1px solid var(--stone);
  padding-top: 1rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.filter-bar button {
  min-width: 120px;
  padding: .75rem 1rem;
  border: 1px solid var(--stone);
  background: rgba(255,255,255,.78);
  color: var(--charcoal);
  box-shadow: none;
}

.filter-bar button.active {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: .75rem;
}

.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 4px;
  transition: opacity .2s ease, transform .2s ease;
}

.gallery-grid img.wide { grid-column: span 2; }
.gallery-grid img.hidden { display: none; }
.gallery-grid img:hover { transform: scale(1.01); }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.featured-grid article {
  display: grid;
  grid-template-columns: 1fr .88fr;
  overflow: hidden;
}

.featured-grid img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.featured-grid div { padding: 1rem; }

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr .9fr;
  gap: 0;
  overflow: hidden;
}

.before-after > div {
  position: relative;
}

.before-after img {
  width: 100%;
  height: 100%;
  min-height: 185px;
  object-fit: cover;
}

.tag {
  position: absolute;
  left: .75rem;
  top: .75rem;
  z-index: 1;
  padding: .45rem .75rem;
  border-radius: 4px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.ba-copy {
  display: grid;
  align-content: center;
  padding: 1.5rem;
}

.cta-inline {
  padding: 1rem 0 2.5rem;
}

.cta-inline-inner {
  border-radius: var(--radius);
  color: #fff;
  padding: 1.7rem 2rem;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.contact-layout {
  align-items: start;
}

.estimate-form {
  display: grid;
  gap: .85rem;
  margin-top: 1.2rem;
}

.estimate-form label span {
  position: absolute;
  margin-left: .95rem;
  margin-top: .7rem;
  color: transparent;
}

.estimate-form input,
.estimate-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--stone);
  border-radius: 4px;
  background: rgba(255,255,255,.62);
  color: var(--charcoal);
  font: inherit;
  padding: .85rem 1rem;
}

.estimate-form textarea { resize: vertical; }

.estimate-form input::placeholder,
.estimate-form textarea::placeholder { color: var(--muted); }

.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.form-note,
.form-success {
  margin: 0;
  font-size: .85rem;
  color: var(--muted);
}

.form-success { color: var(--green-dark); font-weight: 900; }

.contact-info {
  padding: 1.7rem 2rem;
  border: 0;
  border-left: 1px solid var(--stone);
  background: transparent;
  box-shadow: none;
}

.contact-info ul {
  padding: 0;
  margin: 1rem 0 1.6rem;
  list-style: none;
}

.contact-info li {
  margin-bottom: 1rem;
  padding-left: 2.4rem;
  position: relative;
}

.contact-info li::before {
  content: "";
  position: absolute;
  left: .2rem;
  top: .25rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}

.estimate-box {
  padding: 1.5rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.estimate-box h3 { font-size: 2rem; }

.contact-lower {
  align-items: start;
}

.compact-heading {
  margin-bottom: 1rem;
}

.compact-heading h2 { font-size: 2.4rem; }

.map-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--stone);
}

.hours {
  display: grid;
  gap: .55rem;
  margin: 0 0 1rem;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hours dt { font-weight: 700; }
.hours dd { margin: 0; }

.site-footer {
  padding: 1.8rem 0 0;
  border-top: 1px solid rgba(66, 100, 43, .16);
  background:
    linear-gradient(90deg, rgba(255,255,255,.54) 1px, transparent 1px),
    #efe8dd;
  background-size: 34px 34px, auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr .7fr;
  align-items: center;
  gap: 2rem;
}

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

address {
  display: grid;
  gap: .28rem;
  font-style: normal;
}

address a:hover { color: var(--green); }

.social {
  display: grid;
  gap: .65rem;
  justify-items: start;
  text-transform: uppercase;
  font-weight: 900;
}

.social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-family: Georgia, serif;
  text-transform: none;
}

.copyright {
  margin: 1.6rem 0 0;
  padding: .75rem 1rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  font-size: .9rem;
}

.split-copy {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  color: var(--charcoal);
  background: transparent;
  border-top: 1px solid var(--stone);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    min-height: 76px;
    padding-inline: 1.1rem;
  }

  .brand img { width: 128px; }
  .nav-toggle { display: block; order: 2; }
  .phone-link { justify-self: end; min-width: 0; }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .6rem 1.1rem 1rem;
    background: #fff;
    box-shadow: 0 18px 24px rgba(35,34,29,.12);
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 1rem .25rem; border-bottom: 1px solid var(--stone); }
  .site-nav a::after { display: none; }

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

  .split-panel,
  .story-grid,
  .choose-grid,
  .contact-layout,
  .contact-lower,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-panel > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--stone);
    padding: 0 0 1.5rem;
  }

  .featured-grid,
  .mini-grid,
  .before-after {
    grid-template-columns: 1fr;
  }

  .featured-grid article {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info {
    border-left: 0;
    border-top: 1px solid var(--stone);
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(2.45rem, 11.5vw, 3rem); }
  h2 { font-size: clamp(2rem, 11vw, 3rem); }

  .wrap { width: calc(100% - 28px); }

  .site-header {
    grid-template-columns: auto auto;
  }

  .phone-link {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
    order: 3;
  }

  .site-nav { top: 122px; }

  .hero {
    min-height: 500px;
    background-position: 60% center;
  }

  .hero-content {
    padding: 4rem 0 5rem;
  }

  .hero-content p {
    max-width: 31ch;
  }

  .section-heading p { max-width: 32ch; }

  .service-grid,
  .why-grid,
  .values-grid,
  .trust-strip,
  .gallery-grid,
  .preview-gallery,
  .preview-gallery.four,
  .process-grid,
  .feature-row,
  .two-fields {
    grid-template-columns: 1fr;
  }

  .gallery-grid img.wide { grid-column: auto; }
  .values-grid div,
  .why-grid div,
  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--stone);
  }

  .trust-strip div:last-child,
  .why-grid div:last-child,
  .values-grid div:last-child { border-bottom: 0; }

  .cta-content,
  .cta-inline-inner {
    display: grid;
    text-align: left;
  }

  .featured-grid article {
    grid-template-columns: 1fr;
  }

  .preview-gallery img,
  .gallery-grid img {
    height: 230px;
  }

  .split-panel,
  .values-panel,
  .why-panel,
  .contact-info,
  .testimonial-card,
  .area-card,
  .mini-cta,
  .ba-copy {
    padding: 1rem;
  }

  .filter-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .55rem;
  }

  .filter-bar button { min-width: 0; }

  .split-copy {
    display: grid;
    text-align: center;
  }
}
