/* ============================================================
   LAUNDRY EXPRESS — base layer
   Light resets + a few brand helpers. Tokens live in tokens/*.
   ============================================================ */

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

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

/* Editorial section index label, e.g. "2.01  OFFICIAL LOGO" */
.le-overline {
  font-family: var(--le-font-display);
  font-size: var(--le-fs-overline);
  font-weight: var(--le-w-bold);
  letter-spacing: var(--le-ls-overline);
  text-transform: uppercase;
}

/* Heavy italic "wordmark voice" for Latin display text */
.le-express-voice {
  font-family: var(--le-font-display);
  font-weight: var(--le-w-black);
  font-style: italic;
  letter-spacing: var(--le-ls-tight);
  line-height: var(--le-lh-tight);
}

::selection { background: var(--le-laundry-blue); color: #fff; }

@keyframes le-aster-spin { to { transform: rotate(360deg); } }
