/* ==================================================================
   Within Yoga Wellness — Design System
   Global stylesheet entry point. Consumers link THIS file only.
   Keep this file as @import lines (plus a minimal base reset).
   ================================================================== */
@import url('tokens/fonts.css');
@import url('tokens/colors.css');
@import url('tokens/typography.css');
@import url('tokens/spacing.css');

/* —— Minimal base so specimens & kits read correctly —— */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: var(--lh-tight);
  font-weight: var(--fw-semibold);
  margin: 0;
}

a { color: var(--text-link); text-decoration: underline; text-underline-offset: 2px; }
