:root {
  --bg-main: #f7f4ee;
  --bg-texture: url("../images/global/texture.png");

  --text-main: #2e2b27;
  --text-muted: #6f6a63;

  --accent: #c7a15a;
  --accent-soft: #e3d3ad;

  --font-main: "Cormorant Garamond", serif;
  --font-ui: "Inter", sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--bg-main);
  background-image: var(--bg-texture);
  background-repeat: repeat;
  background-size: 400px;
  color: var(--text-main);
}