@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  
margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-style: normal;
}


body {
  margin: 0;
}
  /* ── Reset & Variables ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black:   #111111;
    --white:   #f5f2ec;
    --sand:    #e8e2d5;
    --mid:     #999186;
    --accent:  #c84b2f;
    --nav-h:   64px;
    --font-display: 'Archivo Black', sans-serif;
    --font-body:    'Archivo', sans-serif;
    --font-mono:    'Space Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }
  button { cursor: pointer; font-family: inherit; }
 
