:root {
  --bg: #eef6eb;
  --surface: #ffffff;
  --text: #133132;
  --muted: #4f6467;
  --green: #4d8b3e;
  --green-deep: #2f6a29;
  --blue: #1663ac;
  --blue-deep: #0f457b;
  --shadow: 0 16px 40px rgba(20, 52, 60, 0.16);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 15%, rgba(95, 174, 64, 0.2), transparent 38%),
    radial-gradient(circle at 90% 8%, rgba(36, 124, 198, 0.18), transparent 34%),
    linear-gradient(180deg, #f8fcf6 0%, #edf5ea 100%);
  color: var(--text);
  min-height: 100vh;
}

.bg-blur {
  position: fixed;
  width: 260px;
  height: 260px;
  z-index: -1;
  filter: blur(34px);
  border-radius: 999px;
  opacity: 0.45;
}

.bg-blur-left {
  top: 22%;
  left: -100px;
  background: linear-gradient(180deg, #8bcc66, #4b9a5b);
}

.bg-blur-right {
  top: 58%;
  right: -100px;
  background: linear-gradient(180deg, #2e7bc0, #63b6d5);
}

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0 0.6rem;
}

.brand {
  display: block;
  width: min(430px, 62vw);
}

.brand img {
  width: 100%;
  height: clamp(120px, 18vw, 170px);
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: block;
}

.site-nav {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 0.45rem;
}

@media (max-width: 1200px) {
  .site-header {
    display: block;
    padding-bottom: 0.35rem;
  }

  .site-nav {
    justify-content: flex-start;
    padding-top: 0.7rem;
  }
}

.site-nav a {
  text-decoration: none;
  color: var(--blue-deep);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  font-size: 1.08rem;
  text-transform: uppercase;
  border: 2px solid rgba(22, 99, 172, 0.15);
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 99, 172, 0.45);
}

.hero {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  margin-top: 0.65rem;
}

.hero-copy {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 241, 0.9));
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(77, 139, 62, 0.16);
}

.eyebrow {
  margin: 0;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  margin: 0;
  line-height: 1;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  color: #143b2d;
  text-wrap: balance;
}

.lead {
  margin: 1rem 0 1.6rem;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 0.72rem 1.12rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 8px 22px rgba(20, 85, 55, 0.28);
}

.btn-ghost {
  color: var(--blue-deep);
  border: 2px solid rgba(15, 69, 123, 0.25);
  background: rgba(255, 255, 255, 0.9);
}

.hero-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(22, 99, 172, 0.14);
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.services,
.about,
.areas {
  margin-top: clamp(2.2rem, 7vw, 4.4rem);
}

.section-title {
  font-size: clamp(1.95rem, 4.2vw, 2.9rem);
  color: #0e3d32;
  margin-bottom: 1.15rem;
}

.cards-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 0.6rem;
}

.service-card ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.42rem;
}

.service-card li {
  font-size: 1.08rem;
}

.service-card .price {
  margin: 1rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.service-card.lawn h3,
.service-card.lawn .price {
  color: var(--green-deep);
}

.service-card.junk h3,
.service-card.junk .price {
  color: var(--blue-deep);
}

.about {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.2rem;
  align-items: center;
}

.about-photo {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-copy {
  background: linear-gradient(180deg, rgba(252, 255, 250, 0.96), rgba(240, 250, 251, 0.92));
  border: 1px solid rgba(21, 95, 146, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.3vw, 2.2rem);
  box-shadow: var(--shadow);
}

.about-copy h2 {
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  color: #103e5f;
}

.about-copy p {
  margin: 1rem 0 1.35rem;
  line-height: 1.6;
  color: #36585f;
  max-width: 42ch;
}

.areas {
  text-align: center;
  background: linear-gradient(180deg, #fff, #f4fbff);
  border: 1px solid rgba(22, 99, 172, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
}

.areas h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--green-deep);
}

.areas p {
  margin: 0.55rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
}

.site-footer {
  margin-top: clamp(2.2rem, 7vw, 4.3rem);
  border-top: 2px solid rgba(21, 103, 67, 0.2);
  background: linear-gradient(180deg, #f4faf2, #e5f0e1);
}

.footer-content {
  padding: 1.7rem 0 2.25rem;
  text-align: center;
}

.footer-name {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--green-deep);
}

.footer-content p {
  margin: 0.2rem 0 0;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  color: #254c52;
}

.site-credit {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #44656a;
}

.footer-content a {
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.mobile-callbar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-up 0.75s ease forwards;
}

.reveal-1 {
  animation-delay: 0.1s;
}

.reveal-2 {
  animation-delay: 0.24s;
}

.reveal-3 {
  animation-delay: 0.38s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: block;
  }

  .site-nav {
    justify-content: flex-start;
    padding-top: 0.65rem;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 5.2rem;
  }

  .site-header {
    text-align: center;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .hero-copy,
  .about-copy,
  .service-card {
    padding: 1.2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    width: min(360px, 95vw);
    margin-inline: auto;
  }

  .brand img {
    height: clamp(120px, 34vw, 150px);
    object-fit: cover;
    object-position: top;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 0.55rem 0.65rem;
    max-width: 360px;
    margin: 0.7rem auto 0;
    padding-top: 0;
  }

  .site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-width: 0;
    min-height: 2.2rem;
    white-space: nowrap;
    font-size: clamp(0.92rem, 3.6vw, 1.02rem);
    letter-spacing: 0.02em;
  }

  .mobile-callbar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom));
    display: block;
    z-index: 30;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #226b2b, #1a73bf);
    box-shadow: 0 12px 28px rgba(6, 42, 75, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.45);
  }
}