:root {
  --deep: #0f2a1d;
  --forest: #1f5c3b;
  --leaf: #a7c957;
  --cream: #f6f1e8;
  --white: #ffffff;
  --muted: #617067;
  --gold: #d9a441;
  --dark: #162018;
  --soft: #eef4e7;
  --line: rgba(22, 32, 24, 0.12);
  --shadow: 0 24px 70px rgba(15, 42, 29, 0.16);
  --radius: 28px;
  --max: 1180px;
  --header: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at top left, rgba(167, 201, 87, 0.22), transparent 35%),
    linear-gradient(180deg, #fbfaf5, var(--cream));
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header);
  z-index: 100;
  transition: 0.25s ease;
}

header.scrolled {
  background: rgba(246, 241, 232, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(15, 42, 29, 0.08);
}

.nav {
  width: min(var(--max), calc(100% - 36px));
  height: var(--header);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 10px 18px 10px 18px;
  background:
    linear-gradient(135deg, var(--leaf), var(--forest));
  box-shadow: 0 10px 24px rgba(31, 92, 59, 0.25);
  transform: rotate(-8deg);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-top: 0;
  border-left: 0;
  left: 7px;
  top: 8px;
  transform: rotate(35deg);
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(22, 32, 24, 0.76);
  font-weight: 800;
  font-size: 0.94rem;
}

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

.nav-cta {
  color: white !important;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--forest);
  box-shadow: 0 14px 28px rgba(31, 92, 59, 0.22);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.menu-btn span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--deep);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: auto;
  padding: 104px 0;
}

.hero {
  min-height: 100vh;
  padding-top: 138px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
}

h1,
h2 {
  line-height: 0.98;
  letter-spacing: -0.075em;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6.6rem);
  margin-top: 18px;
  max-width: 780px;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.55rem);
  margin-top: 18px;
}

.hero-sub,
.section-head p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
  transition: 0.22s ease;
  text-align: center;
}

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

.primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 18px 35px rgba(31, 92, 59, 0.22);
}

.secondary {
  color: var(--deep);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.trust-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-strip div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 40px rgba(15, 42, 29, 0.06);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  animation: floatHero 5s ease-in-out infinite;
}

@keyframes floatHero {
  50% {
    transform: translateY(-14px);
  }
}

.property-card {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(100%, 510px);
  transform: translate(-50%, -50%);
  border-radius: 34px;
  padding: 28px;
  background:
    radial-gradient(circle at 78% 22%, rgba(167, 201, 87, 0.35), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(246,241,232,0.78));
  border: 1px solid rgba(22, 32, 24, 0.12);
  box-shadow: var(--shadow);
}

.property-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.mini-label {
  display: block;
  color: var(--forest);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.property-top h2 {
  font-size: 1.65rem;
  letter-spacing: -0.05em;
  margin-top: 4px;
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(167, 201, 87, 0.24);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.lawn-scene {
  position: relative;
  height: 260px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #d8edc4 0 46%, #7cab4e 47% 100%);
  border: 1px solid rgba(22, 32, 24, 0.12);
}

.sun {
  position: absolute;
  width: 58px;
  height: 58px;
  right: 46px;
  top: 34px;
  border-radius: 50%;
  background: #ffd166;
  box-shadow: 0 0 40px rgba(217, 164, 65, 0.7);
}

.tree {
  position: absolute;
  width: 72px;
  height: 96px;
  bottom: 90px;
}

.tree::before {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  left: 10px;
  top: 0;
  border-radius: 50%;
  background: var(--forest);
}

.tree::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 50px;
  left: 30px;
  bottom: 0;
  border-radius: 999px;
  background: #8b5e34;
}

.tree-one {
  left: 38px;
}

.tree-two {
  right: 120px;
  transform: scale(0.82);
}

.house {
  position: absolute;
  width: 120px;
  height: 82px;
  left: 50%;
  top: 72px;
  transform: translateX(-50%);
  background: #fff8ef;
  border-radius: 16px 16px 10px 10px;
  border: 1px solid rgba(22, 32, 24, 0.15);
}

.house::before {
  content: "";
  position: absolute;
  left: -12px;
  top: -44px;
  width: 144px;
  height: 84px;
  background: var(--deep);
  clip-path: polygon(50% 0, 100% 56%, 0 56%);
}

.house::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 42px;
  left: 46px;
  bottom: 0;
  border-radius: 10px 10px 0 0;
  background: var(--forest);
}

.lawn-lines {
  position: absolute;
  inset: auto 0 0;
  height: 94px;
}

.lawn-lines span {
  position: absolute;
  width: 160%;
  height: 18px;
  left: -20%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(-8deg);
}

.lawn-lines span:nth-child(1) {
  bottom: 16px;
}

.lawn-lines span:nth-child(2) {
  bottom: 42px;
}

.lawn-lines span:nth-child(3) {
  bottom: 68px;
}

.care-list {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.care-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 800;
}

.check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--forest);
  font-size: 0.86rem;
}

.floating-note {
  position: absolute;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(15, 42, 29, 0.12);
  backdrop-filter: blur(14px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.84rem;
}

.note-one {
  right: 0;
  top: 92px;
}

.note-two {
  left: 0;
  bottom: 106px;
}

.section-head {
  margin-bottom: 42px;
}

.grid {
  display: grid;
  gap: 22px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.service-card,
.work-card,
.review-card,
.quote-form,
.contact-points div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 55px rgba(15, 42, 29, 0.08);
}

.info-card,
.service-card,
.work-card,
.review-card {
  padding: 28px;
  transition: 0.22s ease;
}

.info-card:hover,
.service-card:hover,
.work-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 92, 59, 0.3);
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--forest);
  margin-bottom: 20px;
  font-weight: 900;
}

.info-card h3,
.service-card h3,
.work-card h3,
.review-card h3 {
  margin-bottom: 10px;
  letter-spacing: -0.035em;
}

.info-card p,
.service-card p,
.work-card p,
.review-card p {
  color: var(--muted);
}

.services-section,
.reviews-section {
  width: 100%;
  background:
    radial-gradient(circle at top right, rgba(167, 201, 87, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.35);
}

.services-section > *,
.reviews-section > * {
  width: min(var(--max), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 220px;
}

.service-number {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.work-card {
  overflow: hidden;
}

.work-visual {
  height: 190px;
  border-radius: 24px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  background: #dfeeca;
  border: 1px solid var(--line);
}

.lawn-refresh {
  background:
    repeating-linear-gradient(
      112deg,
      #82af50 0 22px,
      #76a247 22px 44px
    );
}

.lawn-refresh span {
  position: absolute;
  width: 86%;
  height: 10px;
  left: 7%;
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
}

.lawn-refresh span:nth-child(1) { top: 36px; }
.lawn-refresh span:nth-child(2) { top: 86px; }
.lawn-refresh span:nth-child(3) { top: 136px; }

.mulch-cleanup {
  background:
    radial-gradient(circle at 26% 38%, #1f5c3b 0 12%, transparent 13%),
    radial-gradient(circle at 68% 42%, #1f5c3b 0 14%, transparent 15%),
    linear-gradient(135deg, #8b5e34, #c0843f);
}

.mulch-cleanup span {
  position: absolute;
  background: rgba(246, 241, 232, 0.75);
  border-radius: 999px;
}

.mulch-cleanup span:nth-child(1) {
  width: 150px;
  height: 12px;
  left: 28px;
  bottom: 42px;
}

.mulch-cleanup span:nth-child(2) {
  width: 110px;
  height: 12px;
  right: 36px;
  bottom: 70px;
}

.mulch-cleanup span:nth-child(3) {
  width: 70%;
  height: 8px;
  left: 15%;
  bottom: 24px;
}

.seasonal-reset {
  background:
    radial-gradient(circle at 20% 28%, #d9a441 0 6%, transparent 7%),
    radial-gradient(circle at 68% 36%, #b45309 0 7%, transparent 8%),
    radial-gradient(circle at 38% 72%, #a7c957 0 7%, transparent 8%),
    linear-gradient(135deg, #f6f1e8, #d8c2a4);
}

.seasonal-reset span {
  position: absolute;
  border-radius: 50%;
  background: rgba(31, 92, 59, 0.85);
}

.seasonal-reset span:nth-child(1) {
  width: 54px;
  height: 54px;
  left: 42px;
  top: 42px;
}

.seasonal-reset span:nth-child(2) {
  width: 82px;
  height: 82px;
  right: 48px;
  bottom: 36px;
}

.seasonal-reset span:nth-child(3) {
  width: 38px;
  height: 38px;
  left: 48%;
  top: 50%;
}

.stars {
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.review-card h3 {
  margin-top: auto;
  padding-top: 22px;
}

.review-card span {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-points div {
  padding: 18px;
}

.contact-points strong,
.contact-points span {
  display: block;
}

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

.quote-form {
  padding: 30px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--deep);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.84);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(31, 92, 59, 0.5);
  box-shadow: 0 0 0 4px rgba(167, 201, 87, 0.18);
}

.error input,
.error select,
.error textarea {
  border-color: #dc2626;
}

.form-message {
  min-height: 24px;
  font-weight: 900;
  margin-bottom: 18px;
}

.form-message.error {
  color: #dc2626;
}

.form-message.success {
  color: var(--forest);
}

.submit-btn {
  width: 100%;
}

footer {
  width: min(var(--max), calc(100% - 36px));
  margin: auto;
  padding: 58px 0 72px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 22px;
}

.footer-logo {
  color: var(--dark);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  font-weight: 800;
  color: var(--forest);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.72s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-visual {
    min-height: 540px;
  }

  .three,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 18px;
    right: 18px;
    top: var(--header);
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(246, 241, 232, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.22s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 118px;
  }

  .trust-strip,
  .three,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }

  .property-card {
    width: 100%;
  }

  .floating-note {
    display: none;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 3.25rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .property-card,
  .quote-form {
    padding: 22px;
  }

  .lawn-scene {
    height: 220px;
  }
}
