/* ========== Base / Reset-ish ========== */

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

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  line-height: var(--text-body-line);
  background: var(--color-offwhite);
  color: var(--color-text, #111); /* fallback if you haven't defined --color-text yet */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Make media behave */
img, svg, video {
  display: block;
  max-width: 100%;
}

/* Form elements inherit typography */
button, input, textarea, select {
  font: inherit;
  color: inherit;
}

/* Accessible focus ring (use a token later if you want) */
:focus-visible {
  outline: 3px solid rgba(106, 96, 65, 0.35); /* fallback based on brand */
  outline-offset: 2px;
}

/* Links: keep subtle, readable */
a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 2px;
}
