:root {
  --bg: #f7faf7;
  --text: #112116;
  --muted: #5c6d60;
  --line: #d9e5da;
  --card: #ffffff;
  --dark: #09120c;
  --green: #49cf58;
  --green-deep: #1f8c38;
  --green-soft: rgba(73, 207, 88, 0.14);
  --shadow: 0 18px 50px rgba(9, 18, 12, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.card {
  background: var(--card);
  border: 1px solid rgba(17, 33, 22, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow.light {
  background: rgba(255,255,255,0.14);
  color: #d6ffda;
}
h1,h2,h3,p { margin-top: 0; }
h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1.05; margin-bottom: 1rem; }
h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.1; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 33, 22, 0.08);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  background: #000;
}
.brand strong { display: block; font-size: 1rem; }
.brand span { display: block; font-size: 0.87rem; color: var(--muted); }
.main-nav, .nav-actions, .hero-actions, .cta-actions, .quick-links { display: flex; align-items: center; gap: 0.75rem; }
.main-nav a {
  color: var(--muted);
  font-weight: 600;
}
.main-nav a:hover { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid {
  background: linear-gradient(135deg, var(--green), #72ec7c);
  color: #09120c;
  box-shadow: 0 12px 24px rgba(73, 207, 88, 0.24);
}
.btn-outline {
  border-color: rgba(17, 33, 22, 0.15);
  background: rgba(255,255,255,0.75);
}
.btn-outline.light {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
}
.btn.wide { width: 100%; }

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,18,12,0.92), rgba(9,18,12,0.62) 55%, rgba(9,18,12,0.35)),
    url('assets/bucket-cut.jpeg') center/cover no-repeat;
  transform: scale(1.02);
}
.hero-grid {
  position: relative;
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
}
.hero-text { font-size: 1.08rem; max-width: 52rem; color: rgba(255,255,255,0.84); }
.hero-text strong { color: #fff; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}
.hero-badges span {
  padding: 0.6rem 0.8rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-weight: 700;
}
.hero-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.94);
  color: var(--text);
}
.hero-card h2 { font-size: 1.9rem; margin-bottom: 0.75rem; }
.mini-label {
  margin-bottom: 0.8rem;
  color: var(--green-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}
.check-list, .feature-list {
  padding-left: 1.15rem;
  margin: 0 0 1.2rem;
}
.quick-links { flex-wrap: wrap; }
.quick-links a { font-weight: 700; color: var(--green-deep); }

.trust-bar {
  border-top: 1px solid rgba(17, 33, 22, 0.08);
  border-bottom: 1px solid rgba(17, 33, 22, 0.08);
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0;
}
.trust-grid div {
  padding: 0.85rem 0;
}
.trust-grid strong { display: block; margin-bottom: 0.25rem; }
.trust-grid span { color: var(--muted); }

.section { padding: 5.5rem 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1.8rem;
}
.section-dark {
  background: linear-gradient(180deg, #0b150e, #111c13);
  color: #fff;
}
.section-head.light p,
.section-dark p { color: rgba(255,255,255,0.76); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-card {
  overflow: hidden;
}
.service-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.service-card div { padding: 1.2rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 290px;
}
.gallery-item.tall { grid-row: span 2; min-height: 100%; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}
.stacked-cards {
  display: grid;
  gap: 1rem;
}
.stat-card {
  padding: 1.3rem;
}
.stat-card.accent {
  background: linear-gradient(135deg, var(--green-soft), rgba(255,255,255,0.95));
  border-color: rgba(73,207,88,0.25);
}
.stat {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.cta-band {
  background: linear-gradient(135deg, #0e1810, #16331b);
  color: #fff;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 3rem 0;
}
.cta-inner p { color: rgba(255,255,255,0.78); }
.cta-actions { flex-wrap: wrap; justify-content: flex-end; }

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.35rem;
}
.contact-list a,
.contact-list span { font-weight: 600; }
.quote-form {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}
.form-intro {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 700;
}
.quote-form label,
.quote-form fieldset {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}
.quote-form span { color: var(--green-deep); }
.quote-form fieldset {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.85rem 1rem;
}
.quote-form legend { padding: 0 0.35rem; font-weight: 700; }
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(73, 207, 88, 0.18);
  border-color: rgba(73, 207, 88, 0.55);
}
.form-note, .form-success {
  margin: 0;
  font-size: 0.95rem;
}
.form-success { color: var(--green-deep); font-weight: 700; }

.mobile-bar {
  position: sticky;
  bottom: 0;
  z-index: 18;
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(17,33,22,0.12);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
}
.mobile-bar a {
  padding: 1rem;
  text-align: center;
  font-weight: 800;
}
.mobile-bar a:first-child { background: #f0fff1; color: var(--green-deep); }
.mobile-bar a:last-child { background: var(--green); color: #09120c; }

@media (max-width: 1080px) {
  .hero-grid,
  .section-head,
  .about-grid,
  .contact-grid,
  .cta-inner,
  .trust-grid,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.tall { grid-row: auto; min-height: 320px; }
  .hero-grid { min-height: auto; padding: 4rem 0; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-wrap { flex-wrap: wrap; padding: 0.8rem 0; }
  .nav-actions { width: 100%; }
  .nav-actions .btn { flex: 1; }
  .brand img { width: 52px; height: 52px; }
  .hero-actions,
  .cta-actions,
  .quick-links { flex-direction: column; align-items: stretch; }
  .mobile-bar { display: grid; }
  .section { padding: 4.25rem 0; }
  .hero-badges { gap: 0.5rem; }
}


.reviews-section{
  background:#f5faf5;
}
.review-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
  margin-top:24px;
}
.review-card{
  background:#fff;
  border:1px solid rgba(22,135,54,.15);
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  text-align:left;
}
.stars{
  color:#1ea94b;
  font-size:1.15rem;
  letter-spacing:2px;
  margin-bottom:10px;
}


.service-areas-section{
  background:#ffffff;
}
.section-intro{
  max-width:760px;
  margin:0 auto 22px;
}
.service-areas-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:14px;
  margin-top:22px;
}
.service-areas-grid span{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 16px;
  border-radius:999px;
  background:#f5faf5;
  border:1px solid rgba(30,169,75,.18);
  font-weight:700;
  text-align:center;
}
.service-areas-note{
  margin-top:18px;
  text-align:center;
  font-weight:600;
}


.service-areas-cities{
  max-width:720px;
  margin:18px auto 10px;
  text-align:center;
  font-weight:600;
}


.hp-field{
  position:absolute !important;
  left:-9999px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.form-note{
  margin: 0 0 14px;
  font-size: 0.98rem;
}

.form-success{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f5faf5;
  border: 1px solid rgba(30,169,75,.25);
  font-weight: 600;
}
