/* tokens.css */
:root {
  --cream:  #FAF8F3;
  --linen:  #F2EDE4;
  --sand:   #E6DDD0;
  --dark:   #211C18;
  --earth:  #8B7260;
  --sage:   #7C8C78;
  --wheat:  #C8A052;
  --whats:  #25D366;

  --serif: "Playfair Display", "Garamond", serif;
  --sans:  "Jost", "Futura", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --max: 1360px;

  /* Easing + duration tokens (polish pass) */
  --ease:   cubic-bezier(0.2, 0.6, 0.2, 1);
  --t-fast: 160ms;
  --t-base: 240ms;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
