/* Global site foundation */
:root {
  --teal: #2d9a92;
  --teal-dark: #227f78;
  --ink: #050505;
  --white: #ffffff;
  --muted: #d8e7e8;
  --footer: #000000;
  --shadow: rgba(0, 0, 0, .28);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea { font: inherit; }
