/* ============================================================
   Base element defaults — Ville d'Adriville
   Lightweight resets and element typography. Utility classes and
   inline styles always win over these.
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  font-size: var(--font-size);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-tight);
  font-weight: var(--font-weight-semibold);
  margin: 0;
}

p { margin: 0; }

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* Mono eyebrow helper used across specimens and kits */
code, kbd, samp {
  font-family: var(--font-mono);
}

/* Accessible focus — never removed */
:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}
