/* ─────────────────────────────────────────
   Cactus Company — Base Element Styles
───────────────────────────────────────── */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: pretty;
}

a {
  color: var(--color-brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

button, input, select, textarea {
  font-family: var(--font-sans);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }
