/* Dough — base element defaults + a few brand utility classes.
   Kept minimal: brand styling lives in component CSS via tokens. */

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--body-line);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  color: var(--text-ink);
  font-family: var(--font-display);
  margin: 0;
}

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

/* ---- Brand utility classes ---- */

/* Mono eyebrow / section label — uppercase, tracked. Use sparingly. */
.dough-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--eyebrow-size);
  line-height: var(--eyebrow-line);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--text-muted);
}

.dough-label-mono {
  font-family: var(--font-mono);
  font-size: var(--label-size);
  line-height: var(--label-line);
  font-weight: var(--label-weight);
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Display headline — heavy, tight tracking, near-black ink. */
.dough-display {
  font-family: var(--font-display);
  font-size: var(--display-size);
  line-height: var(--display-line);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-track);
  color: var(--text-ink);
}

/* Inverted emphasis panel. */
.dough-inverted {
  background: var(--inverted-bg);
  color: var(--inverted-text);
}

/* Hairline. */
.dough-hairline { border: 0; border-top: var(--stroke-hairline) solid var(--border); }

/* The wordmark "Dough" — Archivo black. */
.dough-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-ink);
}
