:root {
  --bg: #E8DCC8;
  --bg-alt: #F4EFE3;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #1B4332;
  --accent-light: #2D6A4F;
  --amber: #C97B2B;
  --amber-light: #D4923A;
  --white: #FDFAF4;
  --border: rgba(27, 67, 50, 0.15);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.2;
  color: var(--fg);
}

/* Nav */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  max-width: 440px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card {
  border-radius: 16px;
  padding: 1.75rem 2rem;
  position: relative;
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
}
.hero-card.lawn {
  background: var(--accent);
  color: var(--white);
}
.hero-card.cleaning {
  background: var(--white);
  color: var(--fg);
}
.card-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.lawn .card-label { color: rgba(232, 220, 200, 0.65); }
.card-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  margin-bottom: 0.75rem;
}
.cleaning .card-check { background: var(--bg); }
.card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Sections */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.section-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 3rem;
  color: var(--fg);
  max-width: 600px;
}

/* Services */
.services {
  background: var(--white);
  padding: 5rem 2rem;
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Difference */
.difference {
  background: var(--bg);
  padding: 5rem 2rem;
}
.difference-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.diff-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.diff-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  background: var(--bg);
  align-items: stretch;
}
.diff-row:nth-child(even) .diff-other,
.diff-row:nth-child(even) .diff-us { background: var(--bg-alt); }
.diff-other, .diff-us {
  padding: 1.75rem 2rem;
  background: var(--bg);
}
.diff-row:nth-child(even) .diff-other,
.diff-row:nth-child(even) .diff-us { background: var(--bg-alt); }
.diff-vs-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  background: var(--bg);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.diff-row:nth-child(even) .diff-vs-label { background: var(--bg-alt); }
.diff-label-other, .diff-label-us {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
}
.diff-label-other { color: var(--fg-muted); }
.diff-label-us { color: var(--accent); }
.diff-text {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  background: var(--white);
  padding: 5rem 2rem;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}
.price-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.price-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--fg-muted);
}
.featured .price-card-label { color: rgba(232, 220, 200, 0.65); }
.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.featured .price-amount { color: var(--white); }
.price-per {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.price-sub {
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.price-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.featured .price-features li { color: rgba(232, 220, 200, 0.75); }
.featured .price-features li::before { background: var(--amber); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 5rem 2rem;
}
.closing-inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.closing-body {
  font-size: 1rem;
  color: rgba(232, 220, 200, 0.8);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--bg);
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--accent);
}
.footer-location {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { flex-direction: row; }
  .hero-card { flex: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .diff-row { grid-template-columns: 1fr; }
  .diff-vs-label { display: none; }
  .diff-other { border-bottom: 1px solid var(--border); }
  .hero-visual { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .services, .difference, .pricing, .closing { padding: 3.5rem 1.25rem; }
  .stat { padding: 0 1rem; }
}