:root {
  --bg: #faf8f5;
  --fg: #1a1a1a;
  --fg-muted: #5a5650;
  --accent: #2d6a4f;
  --accent-light: #d8f3dc;
  --accent-dark: #1b4332;
  --warm: #f4ece4;
  --warm-deep: #e8ddd0;
  --card-bg: #ffffff;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(170deg, var(--accent-dark) 0%, var(--accent) 60%, #40916c 100%);
  color: #ffffff;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-location {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 620px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ---- PROBLEM ---- */
.problem {
  padding: 96px 24px;
  background: var(--warm);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.problem-data {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.data-card {
  background: var(--card-bg);
  padding: 24px 28px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.data-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--accent-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}

.data-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ---- SERVICES ---- */
.services {
  padding: 96px 24px;
  background: var(--bg);
}

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

.services-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
  color: var(--accent-dark);
}

.services-intro {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
  max-width: 540px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  padding: 36px 32px;
  border-radius: 14px;
  border: 1px solid var(--warm-deep);
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(45, 106, 79, 0.08);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--accent);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 10px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--fg);
  font-weight: 400;
}

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

/* ---- JOURNEY ---- */
.journey {
  padding: 96px 24px;
  background: var(--accent-dark);
  color: #ffffff;
}

.journey-inner {
  max-width: 800px;
  margin: 0 auto;
}

.journey-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 56px;
  color: var(--accent-light);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.15);
}

.timeline-step {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  position: relative;
}

.step-marker {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.step-content p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  padding: 96px 24px;
  background: var(--warm);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--accent-dark);
}

.closing-inner p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-location {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 32px;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 24px;
  background: var(--accent-dark);
  text-align: center;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.footer-contact {
  font-size: 0.85rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 72px 20px 60px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .timeline-step {
    gap: 20px;
  }

  .step-marker {
    width: 42px;
    height: 42px;
    font-size: 0.75rem;
  }

  .timeline::before {
    left: 20px;
  }
}