/* ===== GLOBAL RESET ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #ffffff;
  color: #111;
}

/* ===== BRAND COLORS ===== */

:root {
  --primary-black: #000;
  --soft-black: #111;
  --light-grey: #f7f7f7;
  --border-grey: #e8e8e8;
  --accent-red: #d10000;
}

/* ===== TYPOGRAPHY ===== */

h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
}

p {
  color: #555;
  font-size: 15px;
}