/* =============================================================
   Botia Studio — Reset + design tokens
   Colour tokens were UUIDs in the Framer export; they are renamed
   to semantic names here. Change a value once and it propagates
   through main.css.
   ============================================================= */

:root {
  --color-bg: #dedcd3;
  --color-ink: #1c1c1c;
  --color-accent: #b38452;
  --color-olive: #7a7664;
  --color-light: #e6e6e6;
  --color-white: #fff;
  --color-sand: #d4d0c3;
  --color-stone: #bfbdb3;
  --color-taupe: #655f58;
  --color-espresso: #363330;
  --color-accent-warm: #cf8d46;
  --color-white-alt: #fff;
  --color-ink-soft: #1e1e1e;
  --color-off-white: #f9f9f9;
  --color-charcoal: #29292b;
  --color-gray: #7f7f80;
}

html,
body,
#main {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

body,
input,
textarea,
select,
button {
  font-family: sans-serif;
  font-size: 12px;
}


/* Page background */
html body {
  background: var(--color-bg, rgb(222, 220, 211));
}
