:root {
  --bg: #f8f5ef;
  --card: #ffffff;
  --text: #243127;
  --muted: #637267;
  --accent: #b85d2f;
  --accent-dark: #94431a;
  --surface: #efe7d8;
  --border: #e3dccf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
