/* ============================================================
   SPORT TELECOMS LTD — Base element styles
   Import AFTER tokens.css. Sensible defaults so plain HTML
   already looks on-brand.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--st-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--st-ink);
  background: var(--st-white);
  -webkit-font-smoothing: antialiased;
}

/* Headings use the display face */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--st-font-display);
  color: var(--st-carbon);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: 3rem;    font-weight: 800; }   /* 48px */
h2 { font-size: 2.25rem; font-weight: 800; }   /* 36px */
h3 { font-size: 1.75rem; font-weight: 700; }   /* 28px */
h4 { font-size: 1.375rem;font-weight: 700; }   /* 22px */

p { margin: 0 0 1rem; }

a { color: var(--st-red); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Eyebrow / overline label */
.st-eyebrow {
  font-family: var(--st-font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--st-red);
}

/* Layout helper */
.st-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--st-space-6);
}

::selection { background: var(--st-red); color: #fff; }
