/* ============================================
 * Magic Darkroom · Reset / Base
 * Minimal reset + body defaults.
 * ============================================ */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  font-weight: 500;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
  min-height: 100dvh;
}

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

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

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

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

ul, ol { list-style: none; }

:focus-visible {
  outline: 3px solid var(--c-focus-yellow);
  outline-offset: 2px;
}
