:root {
  --green: #168a2f;
  --green-dark: #0d5f20;
  --green-bright: #28b745;
  --black: #0d0f0e;
  --charcoal: #171a18;
  --cream: #f5f5f0;
  --white: #ffffff;
  --muted: #697069;
  --line: #dfe4df;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --max: 1180px;
}

* { 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;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; background: #fff; padding: 10px 14px; border-radius: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13,15,14,.08);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 250px; flex: 0 0 auto; }
.brand img { width: 100%; height: 62px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 20px; font-weight: 700; font-size: .90rem; }
.site-nav > a:not(.btn) { position: relative; }
.site-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--green); transition: width .2s ease; }
.site-nav > a:hover::after { width: 100%; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; height: 2px; background: var(--black); margin: 6px 0; transition: .2s; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 2px solid var(--green);
  background: var(--green);
  color: #fff;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--green-dark); border-color: var(--green-dark); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: .88rem; }
.nav-zachs {
  padding: 10px 16px !important;
  border-radius: 999px;
  background: #c4202a;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(196,32,42,.22);
}
.site-nav > a.nav-zachs::after { display: none; }
.nav-zachs:hover { background: #981921; }
.btn-zachs {
  background: #c4202a;
  border-color: #c4202a;
  box-shadow: 0 10px 28px rgba(196,32,42,.28);
}
.btn-zachs:hover { background: #981921; border-color: #981921; }
.btn-ghost { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--black); border-color: #fff; }
.btn-full { width: 100%; border: 0; }

.hero { position: relative; min-height: 760px; overflow: hidden; display: flex; align-items: center; background: #111; }
.hero-media { position: absolute; inset: 0; background: url('assets/driveway-grading.jpg') center 43% / cover no-repeat; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,12,8,.92) 0%, rgba(7,12,8,.72) 42%, rgba(7,12,8,.18) 78%, rgba(7,12,8,.08) 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 180px; background: linear-gradient(0deg, rgba(9,13,10,.75), transparent); pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 100px 0 80px; }
.hero-copy { max-width: 760px; color: #fff; padding-right: clamp(18px, 3vw, 48px); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 900; color: #b8e7bf; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--green-bright); }
.eyebrow.dark { color: var(--green-dark); }
.hero h1 { margin: 18px 0 26px; font-size: clamp(3.8rem, 6.8vw, 6.6rem); line-height: 1.08; letter-spacing: -.045em; max-width: 720px; text-wrap: balance; }
.hero-copy h1 { overflow: visible; }
.hero h1 span { color: #72d981; }
.hero p { max-width: 620px; margin: 0 0 30px; font-size: clamp(1.08rem, 2vw, 1.32rem); color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; gap: 0; margin-top: 46px; border-top: 1px solid rgba(255,255,255,.22); max-width: 680px; }
.hero-proof > div { padding: 22px 28px 0 0; margin-right: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-proof > div:last-child { border-right: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 1.03rem; }
.hero-proof span { color: rgba(255,255,255,.62); font-size: .86rem; margin-top: 2px; }

.quick-strip { background: var(--green); color: #fff; }
.quick-grid { min-height: 88px; display: grid; grid-template-columns: repeat(7, 1fr); align-items: stretch; }
.quick-grid span, .quick-grid a { text-align: center; padding: 10px 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; border-right: 1px solid rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; line-height: 1.15; }
.quick-grid > *:last-child { border-right: 0; }
.quick-grid a:hover { background: rgba(255,255,255,.10); }
.quick-grid .quick-zachs {
  background: #c4202a;
  color: #fff;
  font-weight: 950;
  box-shadow: inset 1px 0 rgba(255,255,255,.18);
}
.quick-grid .quick-zachs:hover { background: #981921; }

.section { padding: 110px 0; }
.section-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); align-items: start; gap: 70px; margin-bottom: 50px; }
.section-head h2, .split-copy h2, .faq-intro h2, .contact-copy h2 { margin: 14px 0 0; font-size: clamp(2.45rem, 4.35vw, 4.15rem); line-height: 1.10; letter-spacing: -.038em; text-wrap: balance; }
.section-head > div { max-width: 720px; padding-right: clamp(12px, 2vw, 36px); }
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-head.light p { color: rgba(255,255,255,.68); }
.section-head.light h2 { color: #fff; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 340px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden; }
.service-card::after { content: ""; position: absolute; right: -46px; bottom: -70px; width: 160px; height: 160px; border-radius: 50%; background: rgba(22,138,47,.07); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(22,138,47,.32); }
.service-number { font-size: .85rem; color: var(--green); font-weight: 900; letter-spacing: .1em; }
.service-card h3 { margin: 24px 0 10px; font-size: 1.48rem; letter-spacing: -.025em; }
.service-card p { color: var(--muted); margin: 0 0 20px; }
.service-card ul { margin: 0; padding: 0; list-style: none; position: relative; z-index: 1; }
.service-card li { margin: 7px 0; padding-left: 19px; font-size: .95rem; }
.service-card li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); position: absolute; margin-left: -18px; margin-top: .56em; }


/* Zach's Disposal & Hauling */
.disposal-section {
  background: #f1f3f1;
  padding: 110px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.disposal-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 52px;
  align-items: stretch;
}
.disposal-copy {
  padding: 18px 0;
  align-self: center;
}
.division-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 10px 16px 10px 10px;
  background: #fff;
  border: 1px solid #daddda;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.division-brand img {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
}
.division-brand span,
.division-brand strong {
  display: block;
}
.division-brand span {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.division-brand strong {
  margin-top: 3px;
  font-size: 1.04rem;
}
.disposal-eyebrow {
  color: #8f1720;
}
.disposal-eyebrow::before {
  background: #c4202a;
}
.disposal-copy h2 {
  max-width: 720px;
  margin: 16px 0 22px;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.disposal-copy > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.disposal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn-disposal-ghost {
  background: transparent;
  color: var(--black);
  border-color: #aeb4ae;
}
.btn-disposal-ghost:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.disposal-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.disposal-proof span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d9ded9;
  font-size: .82rem;
  font-weight: 850;
}
.disposal-feature-photo {
  position: relative;
  min-height: 590px;
  border-radius: 26px;
  overflow: hidden;
  background: #141615;
  box-shadow: 0 24px 65px rgba(0,0,0,.16);
}
.disposal-feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}
.disposal-feature-photo::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,0));
  pointer-events: none;
}
.photo-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}
.photo-note strong,
.photo-note span {
  display: block;
}
.photo-note strong {
  font-size: 1.3rem;
}
.photo-note span {
  margin-top: 3px;
  color: rgba(255,255,255,.72);
}
.disposal-details {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  margin-top: 36px;
}
.disposal-list-card {
  background: #101311;
  color: #fff;
  border-radius: 24px;
  padding: 34px;
}
.mini-label {
  display: block;
  color: #f1a2a8;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.disposal-list-card h3 {
  margin: 10px 0 22px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.disposal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.disposal-list span {
  padding: 12px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  font-weight: 800;
}
.disposal-list span::before {
  content: "✓";
  color: #73d77f;
  margin-right: 8px;
}
.disposal-list-card p {
  margin: 22px 0 0;
  color: rgba(255,255,255,.66);
  font-size: .92rem;
}
.disposal-link {
  margin-top: 22px;
  color: #fff;
}
.disposal-link:hover {
  color: #73d77f;
}
.zachs-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 255px;
  gap: 14px;
}
.zachs-gallery .gallery-item {
  grid-column: auto;
  grid-row: auto;
  border-radius: 18px;
}
.zachs-gallery .zachs-featured {
  grid-row: span 2;
}
.zachs-gallery .gallery-item span {
  font-size: .95rem;
}

.section-dark { background: var(--charcoal); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 260px; gap: 16px; }
.gallery-item { position: relative; grid-column: span 4; border: 0; padding: 0; border-radius: 18px; overflow: hidden; background: #222; text-align: left; }
.gallery-item.gallery-wide { grid-column: span 8; }
.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.68), rgba(0,0,0,0) 54%); }
.gallery-item span { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; color: #fff; font-weight: 900; font-size: 1.05rem; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.split-image { min-height: 620px; overflow: hidden; background: #eee; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { padding: clamp(60px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.split-copy p { max-width: 720px; font-size: 1.06rem; color: var(--muted); }
.about-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.about-points div { padding-top: 16px; border-top: 2px solid var(--green); }
.about-points strong, .about-points span { display: block; }
.about-points strong { font-size: .98rem; }
.about-points span { margin-top: 4px; color: var(--muted); font-size: .85rem; }
.text-link { display: inline-block; width: fit-content; margin-top: 10px; color: var(--green-dark); font-weight: 900; }

.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.process-step { border-top: 3px solid var(--black); padding-top: 22px; }
.process-step > span { display: inline-flex; width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff; align-items: center; justify-content: center; font-weight: 900; }
.process-step h3 { margin: 20px 0 8px; font-size: 1.35rem; }
.process-step p { margin: 0; color: var(--muted); }

.faq-section { background: #f6f7f5; }
.faq-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-intro p { color: var(--muted); max-width: 470px; margin-bottom: 24px; }
.faq-list details { border-bottom: 1px solid #cfd5cf; padding: 21px 0; }
.faq-list summary { list-style: none; font-weight: 850; font-size: 1.12rem; cursor: pointer; position: relative; padding-right: 36px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: -4px; font-size: 1.8rem; color: var(--green); font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { color: var(--muted); margin: 12px 40px 0 0; }

.contact-section { padding: 110px 0; background: var(--green-dark); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: center; }
.contact-copy p { color: rgba(255,255,255,.75); font-size: 1.07rem; max-width: 620px; }
.contact-links { margin: 30px 0; display: flex; flex-wrap: wrap; gap: 12px; }
.contact-links a { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 13px 18px; min-width: 190px; }
.contact-links span, .contact-links strong { display: block; }
.contact-links span { color: rgba(255,255,255,.65); font-size: .75rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.contact-links strong { margin-top: 2px; font-size: 1.05rem; }
.social-links { display: flex; gap: 18px; font-weight: 800; }
.quote-form { background: #fff; color: var(--black); padding: 30px; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,.22); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: block; font-weight: 800; font-size: .88rem; margin-bottom: 15px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; margin-top: 7px; border: 1px solid #d7ddd7; border-radius: 12px; padding: 13px 14px; background: #fbfcfb; outline: none; transition: border-color .2s, box-shadow .2s; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,138,47,.11); }
.form-note { margin: 10px 0 0; text-align: center; color: var(--muted); font-size: .8rem; }

.site-footer { background: #fff; color: var(--black); padding: 70px 0 22px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.8fr .7fr .7fr; gap: 60px; }
.footer-brand img { width: min(340px, 100%); height: 100px; object-fit: contain; object-position: left center; filter: drop-shadow(0 0 0 transparent); }
.footer-brand p { color: var(--muted); max-width: 460px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid strong { margin-bottom: 8px; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--green-dark); }
.footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: .84rem; }

.lightbox { width: min(92vw, 980px); max-height: 92vh; border: 0; border-radius: 18px; padding: 14px; background: #0c0e0d; color: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(3px); }
.lightbox img { width: 100%; max-height: 76vh; object-fit: contain; border-radius: 12px; }
.lightbox p { margin: 12px 4px 2px; font-weight: 800; }
.lightbox-close { position: absolute; right: 22px; top: 20px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(0,0,0,.7); color: #fff; font-size: 1.7rem; line-height: 1; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1280px) {
  .hero-copy { max-width: 700px; }
  .section-head { gap: 44px; }
}

@media (max-width: 1160px) {
  .section-head { grid-template-columns: 1fr; gap: 26px; }
  .section-head > div { max-width: 760px; padding-right: 0; }
  .section-head > p { max-width: 760px; }
}


@media (max-width: 1120px) {
  .disposal-hero { grid-template-columns: 1fr 1fr; gap: 34px; }
  .disposal-copy h2 { font-size: clamp(2.6rem, 5vw, 4.1rem); }
  .disposal-feature-photo,
  .disposal-feature-photo img { min-height: 520px; }
}

@media (max-width: 1020px) {
  .disposal-section { padding: 84px 0; }
  .disposal-hero, .disposal-details { grid-template-columns: 1fr; }
  .disposal-feature-photo, .disposal-feature-photo img { min-height: 520px; }
  .zachs-gallery { grid-template-columns: repeat(2, 1fr); }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 86px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #fff; padding: 16px 20px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .site-nav .btn { margin-top: 8px; }
  .site-nav .nav-zachs { margin: 6px 0; text-align: center; }
  .section-head, .faq-wrap, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-grid span, .quick-grid a { min-height: 58px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid rgba(255,255,255,.18); }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 500px; }
  .gallery-item { grid-column: span 6; }
  .gallery-item.gallery-wide { grid-column: span 6; }
  .gallery-item.gallery-tall { grid-row: span 1; }
}

@media (max-width: 700px) {
  .disposal-section { padding: 70px 0; }
  .division-brand { width: 100%; }
  .division-brand img { width: 64px; height: 64px; }
  .disposal-copy h2 { font-size: clamp(2.55rem, 12vw, 3.8rem); line-height: 1.06; }
  .disposal-feature-photo, .disposal-feature-photo img { min-height: 420px; }
  .disposal-details { margin-top: 22px; }
  .disposal-list-card { padding: 26px; }
  .disposal-list { grid-template-columns: 1fr; }
  .zachs-gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .zachs-gallery .zachs-featured { grid-row: auto; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { height: 76px; }
  .brand { width: 205px; }
  .brand img { height: 54px; }
  .site-nav { top: 76px; }
  .hero { min-height: 720px; }
  .hero-media { background-position: 64% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,12,8,.90), rgba(7,12,8,.58)); }
  .hero-content { padding: 90px 0 54px; }
  .hero h1 { font-size: clamp(3.2rem, 14.5vw, 4.9rem); line-height: 1.08; letter-spacing: -.04em; margin-bottom: 24px; }
  .hero p { font-size: 1rem; }
  .hero-proof { display: grid; grid-template-columns: 1fr; }
  .hero-proof > div { border-right: 0; padding: 14px 0 0; margin: 0; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 76px 0; }
  .service-grid, .process-grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .gallery-item, .gallery-item.gallery-wide { grid-column: 1; }
  .split-copy { padding: 70px 24px; }
  .about-points { grid-template-columns: 1fr; }
  .contact-section { padding: 76px 0; }
  .quote-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
