:root {
  --green: #6f8f72;
  --green-dark: #3f5d3f;
  --sage: #eef3ee;
  --soft: #f7f8f6;
  --text: #1f1f1f;
  --muted: #666666;
  --line: #e6e6e6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
}

p {
  line-height: 1.6;
}

a {
  color: inherit;
}

.btn {
  display: inline-block;
  background: var(--green-dark);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  opacity: 0.9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
