:root {
  --bg: #f3f1ef;
  --card: #ffffff;
  --ink: #1f1c1b;
  --muted: #6f6b68;
  --border: #141312;
  --border-soft: #e6e1de;
  --accent: #cb3535;
  --shadow: 0 1rem 2.5rem rgba(20, 19, 18, 0.12);
  --radius: 1.5rem;
  --font-sans: "DM Sans", sans-serif;
  --font-display: "Sora", "DM Sans", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
}

*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }