/* ============================================================
   Trepa't — base layer
   Light defaults that wire the tokens to real elements. Optional for
   consumers, but makes specimen cards & kits look right out of the box.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--text-base);
  line-height: var(--body-leading);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}
h1 { font-weight: var(--fw-black); font-size: var(--text-3xl); line-height: var(--leading-tight); }
h2 { font-weight: var(--fw-extrabold); font-size: var(--text-2xl); }
h3 { font-weight: var(--fw-bold); font-size: var(--text-xl); }
h4 { font-weight: var(--fw-bold); font-size: var(--text-lg); }

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: var(--petrol-600); text-underline-offset: 2px; }

/* Brand utility: the all-caps tracked eyebrow/kicker used everywhere */
.eyebrow {
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  font-size: var(--text-sm);
  color: var(--coral-500);
}

/* Brand utility: the italic "Fent el cabra" tagline motif */
.tagline {
  font-style: italic;
  font-weight: var(--fw-medium);
  color: var(--coral-500);
}

::selection { background: var(--coral-300); color: var(--petrol-900); }
