/* ==================================================================
   MYSTORiQ · BASE — light-touch element defaults.
   Sets the warm, rounded, navy-on-cream default reading environment.
   ================================================================== */

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

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font: var(--type-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: var(--lh-snug);
  margin: 0 0 0.5em;
  font-weight: var(--fw-bold);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 1em; line-height: var(--lh-relaxed); text-wrap: pretty; }

a {
  color: var(--mq-orange-deep);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--mq-orange); }

/* Eyebrow / academy label — the recurring thin ALL-CAPS spaced label */
.mq-eyebrow {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Lead paragraph — Grandstander, ALWAYS all-caps, gently tracked. The
   brand's standard intro/lead treatment above body copy. */
.mq-lead {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-heading);
}

::selection { background: var(--mq-orange-tint); color: var(--mq-navy-deep); }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
