:root {
  --bg: #FDFBF7;
  --fg: #1A1A1A;
  --fg-muted: #5C5C5C;
  --accent: #2D6A4F;
  --accent-light: #D8F3DC;
  --accent-warm: #E8C87A;
  --surface: #FFFFFF;
  --border: #E8E4DE;
  --radius: 16px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8% 80px;
  gap: 60px;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  margin-bottom: 24px;
  color: var(--fg);
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.hero-card-alt {
  transform: translateX(40px);
}

.card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-warm);
}

.card-dot-green {
  background: var(--accent);
}

.card-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.card-value {
  font-weight: 600;
  font-size: 1.1rem;
  margin-left: auto;
}

/* SERVICES */
.services {
  padding: 120px 8%;
  background: var(--surface);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.services-header p {
  color: var(--fg-muted);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(45, 106, 79, 0.08);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* WHY */
.why {
  padding: 120px 8%;
}

.why-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  max-width: 1100px;
}

.why-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.why-item h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 120px 8%;
  background: var(--accent);
  color: #FFFFFF;
}

.closing-content {
  max-width: 720px;
}

.closing-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 24px;
  color: #FFFFFF;
}

.closing-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  padding: 40px 8%;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-location {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 60px 6% 80px;
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto;
  }

  .hero-visual {
    width: 100%;
    align-items: center;
  }

  .hero-card-alt {
    transform: translateX(20px);
  }

  .services {
    padding: 80px 6%;
  }

  .why {
    padding: 80px 6%;
  }

  .closing {
    padding: 80px 6%;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
  }
}