/* ============================================================
   Great Kei Rugby — Base / reset
   Element defaults derived from the token system.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-strong);
  line-height: var(--lh-snug);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-heading);
  text-wrap: balance;
}

/* Display headings use the condensed cut, typically uppercase */
.gk-display {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

/* Wide-tracked all-caps label */
.gk-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
}

p { line-height: var(--lh-normal); text-wrap: pretty; }

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

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

/* Tabular figures for all scores & stats */
.gk-tnum { font-variant-numeric: tabular-nums; }

::selection { background: var(--gold-500); color: var(--ink-900); }

button { font-family: inherit; }

:focus-visible {
  outline: var(--border-heavy) solid var(--focus-ring);
  outline-offset: 2px;
}
