/* ============================================================
   Anton Scaffolding — Design System
   Global stylesheet entry point. Consumers link THIS file only.
   Keep this file as @import lines (plus minimal base resets).
   ============================================================ */

@import url("tokens/fonts.css");
@import url("tokens/colors.css");
@import url("tokens/typography.css");
@import url("tokens/spacing.css");

/* Minimal, opinionated base — sets the brand defaults so bare
   HTML already feels like Anton. */
*, *::before, *::after { box-sizing: border-box; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  color: var(--text-strong);
  line-height: var(--leading-tight);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

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

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Display helper — the Anton voice */
.anton-display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-none);
  color: var(--brand);
}

/* Eyebrow / kicker label */
.anton-eyebrow {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  color: var(--brand);
}

:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--radius-xs); }
