/* Shine & Go — Typography
   "Editorial no nome, clareza no resto."
   Cormorant (high-contrast serif) carries titles and editorial moments — only at generous sizes.
   Jost (geometric sans) organizes information, body and UI, and signs the wordmark.
   Buttons & eyebrows: uppercase, wide tracking (caixa-alta espaçada). */

:root {
  /* ---- Families ---- */
  --font-display: "Cormorant", "Times New Roman", Georgia, serif;
  --font-sans: "Jost", "Century Gothic", "Futura", system-ui, sans-serif;
  --font-body: var(--font-sans);

  /* ---- Weights ---- */
  --fw-light: 300; /* @kind font */
  --fw-regular: 400; /* @kind font */
  --fw-medium: 500; /* @kind font */
  --fw-semibold: 600; /* @kind font */
  --fw-bold: 700; /* @kind font */

  /* ---- Display scale (Cormorant) — generous sizes only ---- */
  --fs-display-1: clamp(3.5rem, 7vw, 6.5rem); /* @kind font */  /* hero */
  --fs-display-2: clamp(2.75rem, 5vw, 4.5rem); /* @kind font */  /* section heroes */
  --fs-display-3: clamp(2rem, 3.5vw, 3rem); /* @kind font */  /* section titles */
  --fs-display-4: 2rem;                          /* card titles, smaller heads */

  /* ---- Body / UI scale (Jost) ---- */
  --fs-lead: 1.375rem;   /* section intro paragraph */
  --fs-body: 1.0625rem;  /* default body */
  --fs-body-sm: 0.9375rem; /* @kind font */
  --fs-ui: 1rem;         /* buttons, inputs */
  --fs-caption: 0.8125rem; /* @kind font */
  --fs-eyebrow: 0.75rem; /* small-caps label */

  /* ---- Line heights ---- */
  --lh-display: 1.02; /* @kind font */
  --lh-title: 1.1; /* @kind font */
  --lh-body: 1.6; /* @kind font */
  --lh-tight: 1.3; /* @kind font */

  /* ---- Letter spacing ---- */
  --ls-display: -0.01em;   /* slight tighten on big serif */
  --ls-body: 0; /* @kind font */
  --ls-eyebrow: 0.32em;    /* wide-spaced small caps */
  --ls-button: 0.18em;     /* button caps */
  --ls-wordmark: 0.3em;    /* SHINE & GO wordmark */
}
