/* ==== RESET ==== */

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

html, body {
  height: 100%;
}

body {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  background: #FAF7F2; /* warm white */
  color: #0D0D0D;
  line-height: 1.5;
}
