:root {
  --bg: #F7F4EF;
  --surface: #FFFFFF;
  --text: #1E1B16;
  --text-soft: #6B6459;
  --border: #E7E1D6;
  --muted-icon: #A39D8F;

  --green: #3F6C51;
  --green-soft: #E3EBE3;
  --blue: #3A6EA5;
  --blue-soft: #E4ECF3;
  --terracotta: #B5562B;
  --terracotta-soft: #F6E3D8;

  --font-display: 'Fraunces', serif;
  --font-body: 'Public Sans', sans-serif;

  --radius-card: 18px;
  --radius-input: 12px;
  --radius-button: 14px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea {
  font-family: var(--font-body);
}

button {
  cursor: pointer;
}
