/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FFFBF5;
  --amber: #D97706;
  --amber-light: #FEF3C7;
  --amber-dark: #92400E;
  --slate: #1E293B;
  --slate-light: #64748B;
  --white: #FFFFFF;
  --border: #E5E0D8;
  --grass-green: #4D7C0F;
  --grass-light: #A3E635;
  --lawn-light: #BEF264;
  --lawn-dark: #65A30D;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--slate);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.02em;
}

.nav-location {
  font-size: 0.8rem;
  color: var(--slate-light);
  font-weight: 400;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 10vh, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vh, 5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #FEF9EF 0%, #FEF3C7 50%, #FDE68A 100%);
  border-radius: 0 0 0 60px;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-rule {
  width: 60px;
  height: 3px;
  background: var(--amber);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.hero-services {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.8;
  font-weight: 400;
}

/* === HERO ILLUSTRATION === */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lawn-illustration {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

.scene-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(180deg, #7EC8E3 0%, #B8DFF0 60%, #D6EEFA 100%);
}

.scene-sun {
  position: absolute;
  top: 12%;
  right: 14%;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle, #FCD34D 0%, #F59E0B 100%);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(251, 191, 36, 0.5), 0 0 64px rgba(251, 191, 36, 0.25);
}

.scene-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: linear-gradient(180deg, #A3A060 0%, #8B7340 100%);
}

.scene-house {
  position: absolute;
  bottom: 52%;
  left: 12%;
  width: 38%;
}

.house-body {
  width: 100%;
  padding-bottom: 70%;
  background: #F5EDE0;
  border-radius: 4px;
  position: relative;
}

.house-roof {
  position: absolute;
  top: -38%;
  left: -8%;
  width: 116%;
  padding-bottom: 40%;
  background: #8B4513;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.house-door {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  padding-bottom: 30%;
  background: #5C3317;
  border-radius: 2px 2px 0 0;
}

.house-window {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 22%;
  padding-bottom: 22%;
  background: #A8D8EA;
  border-radius: 2px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5);
}

.scene-lawn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: repeating-linear-gradient(
    90deg,
    var(--lawn-dark) 0px,
    var(--lawn-dark) 16px,
    var(--lawn-light) 16px,
    var(--lawn-light) 32px
  );
}

.scene-figure {
  position: absolute;
  bottom: 8%;
  right: 22%;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.figure-head {
  width: 14px;
  height: 14px;
  background: #D97706;
  border-radius: 50%;
  position: relative;
  top: 4px;
}

.figure-head::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 2px;
  width: 10px;
  height: 6px;
  background: #92400E;
  border-radius: 3px 3px 0 0;
}

.figure-body {
  width: 14px;
  height: 22px;
  background: #D97706;
  border-radius: 4px 4px 0 0;
}

.mower-body {
  width: 28px;
  height: 14px;
  background: #374151;
  border-radius: 4px;
  position: relative;
  top: 2px;
}

.mower-body::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 3px;
  width: 22px;
  height: 4px;
  background: #9CA3AF;
  border-radius: 2px;
}

.mower-handle {
  position: absolute;
  left: -8px;
  bottom: 10px;
  width: 10px;
  height: 2px;
  background: #4B5563;
  transform: rotate(-20deg);
}

/* === PHILOSOPHY === */
.philosophy {
  padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 2.5rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.philosophy-item {
  padding: 0 2rem 0 0;
}

.philosophy-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate);
  margin: 0.75rem 0 0.5rem;
}

.philosophy-item p {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.7;
}

.philosophy-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  align-self: center;
  margin: 0 1.5rem;
}

/* === PROCESS === */
.process {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-header {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.process-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.process-header p {
  font-size: 1rem;
  color: var(--slate-light);
}

.process-phases {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3rem;
}

.phase {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  position: relative;
}

.phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--amber);
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.phase h4 {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.phase p {
  font-size: 0.825rem;
  color: var(--slate-light);
  line-height: 1.65;
}

.phase-target {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.phase-arrow {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  padding-top: 3.5rem;
  color: var(--amber);
  font-size: 1.2rem;
}

.process-callout {
  background: linear-gradient(135deg, #FFFBF5, #FEF3C7);
  border-left: 4px solid var(--amber);
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
}

.process-callout p {
  font-size: 0.95rem;
  color: var(--amber-dark);
  font-style: italic;
  line-height: 1.7;
}

/* === SERVICES === */
.services {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate);
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  transition: background 0.2s;
}

.service-card:hover {
  background: #FFFBF5;
}

.service-visual {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card h4 {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--slate-light);
  line-height: 1.65;
}

/* Service visuals */
.svc-mower {
  width: 64px;
  height: 36px;
  background: #374151;
  border-radius: 8px;
  position: relative;
}
.svc-mower::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 6px;
  width: 52px;
  height: 4px;
  background: #9CA3AF;
  border-radius: 2px;
}
.svc-mower::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -12px;
  width: 12px;
  height: 12px;
  background: #D97706;
  border-radius: 50%;
}

.svc-cleanup {
  width: 64px;
  height: 48px;
  position: relative;
}
.svc-cleanup::before {
  content: '';
  position: absolute;
  width: 64px;
  height: 4px;
  background: #D97706;
  border-radius: 2px;
  top: 0;
}
.svc-cleanup::after {
  content: '';
  position: absolute;
  top: 8px;
  width: 64px;
  height: 4px;
  background: #D97706;
  opacity: 0.6;
  border-radius: 2px;
}

.svc-weed {
  width: 48px;
  height: 48px;
  position: relative;
}
.svc-weed::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 28px;
  background: #4D7C0F;
}
.svc-weed::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #4D7C0F;
  border-radius: 50%;
}

.svc-trim {
  width: 56px;
  height: 40px;
  position: relative;
  border-top: 4px solid #4D7C0F;
}
.svc-trim::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 56px;
  height: 4px;
  background: #65A30D;
  border-radius: 2px;
}
.svc-trim::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 8px;
  width: 40px;
  height: 4px;
  background: #65A30D;
  opacity: 0.7;
  border-radius: 2px;
}

.svc-pressure {
  width: 48px;
  height: 48px;
  position: relative;
}
.svc-pressure::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 32px;
  background: #93C5FD;
  border-radius: 8px;
  opacity: 0.4;
}
.svc-pressure::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: #3B82F6;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2);
}

.svc-haul {
  width: 56px;
  height: 40px;
  background: #78716C;
  border-radius: 6px;
  position: relative;
}
.svc-haul::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 56px;
  height: 12px;
  background: #A8A29E;
  border-radius: 4px 4px 0 0;
}

/* === OUTCOMES === */
.outcomes {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.compare-side {
  padding: 2.5rem;
}

.compare-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 1.5rem;
}

.compare-after .compare-label {
  color: var(--amber);
}

.compare-visual {
  height: 120px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}

.before-visual {
  background: linear-gradient(180deg, #9CA3AF 0%, #6B7280 40%, #78350F 40%, #92400E 100%);
}

.after-visual {
  background: linear-gradient(180deg, #7EC8E3 0%, #B8DFF0 40%, #4D7C0F 40%, #4D7C0F 70%, #4D7C0F 100%);
  border: 2px solid var(--grass-green);
}

/* Before visual elements */
.weeds {
  position: absolute;
  top: 40%;
  left: 15%;
  width: 8px;
  height: 20px;
  background: #78350F;
  border-radius: 4px 4px 0 0;
  transform: rotate(-10deg);
}
.weeds::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -2px;
  width: 12px;
  height: 12px;
  background: #92400E;
  border-radius: 50%;
}

.overgrown-lawn {
  position: absolute;
  top: 40%;
  right: 20%;
  width: 50%;
  height: 60%;
  background: repeating-linear-gradient(
    90deg,
    #78350F 0px,
    #92400E 4px,
    #78350F 8px
  );
}

.cracked-driveway {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 35%;
  height: 8px;
  background: #9CA3AF;
  border-radius: 4px;
}

/* After visual elements */
.manicured-lawn {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    #4D7C0F 0px,
    #65A30D 16px,
    #4D7C0F 32px
  );
}

.clean-driveway {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 30%;
  height: 6px;
  background: #CBD5E1;
  border-radius: 3px;
}

.trimmed-hedges {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 20px;
  height: 40%;
  background: #16A34A;
  border-radius: 4px;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-list li {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.compare-after .compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
}

.compare-before .compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #D1D5DB;
  border-radius: 50%;
}

.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
}

.compare-vs {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--amber);
  padding: 0.75rem 1rem;
  border: 2px solid var(--amber);
  border-radius: 50%;
}

/* === CLOSING === */
.closing {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--slate);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: #E5E7EB;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.closing-divider {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 2.5rem;
  border-radius: 2px;
}

.closing-body {
  font-size: 1rem;
  color: #9CA3AF;
  line-height: 1.8;
}

/* === FOOTER === */
.footer {
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  background: #111827;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.footer-tagline {
  font-size: 0.75rem;
  color: #6B7280;
  display: block;
  margin-top: 0.25rem;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  font-size: 0.75rem;
  color: #6B7280;
  line-height: 1.5;
}

.footer-copy {
  margin-top: 0.25rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero::before {
    display: none;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .philosophy-divider {
    display: none;
  }

  .process-phases {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .phase-arrow {
    display: none;
  }

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

  .outcomes-compare {
    grid-template-columns: 1fr;
  }

  .compare-divider {
    border-left: none;
    border-right: none;
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    padding: 1rem 2.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .compare-side {
    padding: 1.5rem;
  }
}