:root {
  --green-dark:   #3B5A3A;
  --green-mid:    #5A7A58;
  --green-light:  #6B8F5E;
  --green-pale:   #C8D8C3;
  --cream:        #F5F2EC;
  --cream-dark:   #EDE8DF;
  --text-dark:    #1E2D1E;
  --text-muted:   #5A6B5A;
  --white:        #FFFFFF;

  --font-heading: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Lato', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

button,
.btn-forest,
.btn-outline-forest,
.btn-white-filled,
.btn-white-outline {
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
