/* ============================================================
   NUKON USA — MINIMAL BASE
   Element defaults only. No utility framework, no component classes.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
  font: var(--type-body);
  letter-spacing: var(--tracking-body);
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: var(--tracking-heading);
  line-height: var(--leading-heading);
  color: var(--text-primary);
}
h1 { font-size: var(--text-h1); font-weight: var(--weight-bold); }
h2 { font-size: var(--text-h2); font-weight: var(--weight-semibold); }
h3 { font-size: var(--text-h3); font-weight: var(--weight-semibold); }
h4 { font-size: var(--text-h4); font-weight: var(--weight-semibold); }

p { margin: 0; }

a { color: var(--text-link); text-decoration: none; transition: color var(--t-hover); }
a:hover { color: var(--text-link-hover); }
a:focus-visible { outline: var(--focus-outline); outline-offset: var(--focus-offset); border-radius: var(--radius-xs); }

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

:focus-visible { outline: var(--focus-outline); outline-offset: var(--focus-offset); }

table { border-collapse: collapse; }

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

::selection { background: var(--nukon-orange-32); color: var(--nukon-ink); }

/* tabular figures wherever numbers matter */
.nk-tnum, td, th { font-variant-numeric: tabular-nums; }
