:root {
  --cream: #FAF6F0;
  --bark: #2C1810;
  --sage: #5B7C5A;
  --sage-light: #7FA67E;
  --clay: #C4956A;
  --clay-light: #E8CDB5;
  --field: #E8E2D6;
  --white: #FFFFFF;
  --text-muted: #6B5E52;
}

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

body {
  background: var(--cream);
  color: var(--bark);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,124,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,149,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1.5px solid var(--sage);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--bark);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--sage);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Hero CTA buttons */
.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.2rem;
  background: var(--bark);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}
.hero-btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,124,90,0.25);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.75rem;
  background: transparent;
  color: var(--bark);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: 1.5px solid rgba(44,24,16,0.2);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hero-btn-ghost:hover {
  border-color: var(--bark);
  background: rgba(44,24,16,0.04);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--sage);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Services */
.services {
  padding: 6rem 2rem;
  background: var(--white);
}

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

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 650px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

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

.service-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.service-icon.green { background: rgba(91,124,90,0.12); }
.service-icon.clay { background: rgba(196,149,106,0.15); }
.service-icon.bark { background: rgba(44,24,16,0.08); }

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How it works */
.how-it-works {
  padding: 6rem 2rem;
  background: var(--field);
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  position: relative;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(91,124,90,0.15);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Why section */
.why {
  padding: 6rem 2rem;
  background: var(--bark);
  color: var(--cream);
}

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

.why .section-label {
  color: var(--clay);
}

.why .section-title {
  color: var(--cream);
  margin: 0 auto 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: left;
  margin-top: 3rem;
}

.why-item {
  padding: 1.5rem;
  border-left: 3px solid var(--sage);
}

.why-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--clay-light);
}

.why-item p {
  font-size: 0.9rem;
  color: rgba(250,246,240,0.7);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 7rem 2rem;
  background: var(--sage);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.closing p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto 2rem;
}

.closing-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.2rem;
  background: var(--white);
  color: var(--sage);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}
.closing-btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  padding: 2rem;
  background: var(--bark);
  text-align: center;
  color: rgba(250,246,240,0.4);
  font-size: 0.8rem;
}

footer span {
  color: rgba(250,246,240,0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .hero {
    min-height: auto;
    padding: 4rem 1.5rem 3rem;
  }
  .services, .how-it-works, .why, .closing {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}