/* GI design tokens — the ONE place text styles are edited (client requirement).
   :root copied VERBATIM from the design source index.html. */

/* Self-hosted fonts (GDPR: no Google CDN). NORD from the design source;
   Open Sans vendored at deploy (400 + 700 only; team-card role 600 is the
   single exception, mapped to 700 until the 600 cut is vendored). */
@font-face {
  font-family: 'NORD';
  src: url('../fonts/NORD-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NORD';
  src: url('../fonts/NORD-Book.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NORD';
  src: url('../fonts/NORD-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NORD';
  src: url('../fonts/NORD-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Variable.woff2') format('woff2-variations');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* --- Yhtenäinen typografia-asteikko (muokkaa yhdestä paikasta) --- */
  --text-micro: 0.75rem;   /* mikro-labelit, tagit */
  --text-meta: 0.875rem;   /* eyebrow't, päivämäärät, meta */
  --text-small: 1.125rem;  /* pieni leipäteksti, nav, footer (18px) */
  --text-body: 1.125rem;   /* leipäteksti */
  --text-lede: 1.25rem;    /* ingressit, sisältökorttien h3 */
  --text-h3: 1.375rem;     /* korttiotsikot, pikkuotsikot */
  --text-h2: 1.5rem;       /* väliotsikot */
  --text-title: 1.75rem;   /* osio-otsikot */
  /* --- Responsiiviset otsikkokoot (yhtenäistetty) --- */
  --fluid-banner: clamp(2rem, 4.5vw, 3.5rem);   /* sivubannerien otsikot */
  --fluid-stat: clamp(2.2rem, 4vw, 3.25rem);    /* statistiikkanumerot */
  --fluid-title: clamp(1.8rem, 3vw, 2.5rem);    /* osio-otsikot */
  --fluid-h2: clamp(1.5rem, 2.8vw, 2.2rem);     /* pienemmät osio-otsikot, CTA */
  --fluid-h3: clamp(1.4rem, 2vw, 1.8rem);       /* väliotsikot, nostot */
  --fluid-lede: clamp(1.05rem, 1.5vw, 1.35rem); /* ingressit, sivunostot */
  --ink: #000000;
  --ink-soft: #2A2A2A;
  --bg: #FFFFFF;
  --bg-subtle: #FAFAFA;
  --border: #E0E0E0;
  --accent: #96251D;
  --accent-hover: #7A1E18;
  --muted: #5A5A5A;
  }
