/* ============================================================
   FitTheRole — Base (reset, typography, layout, utilities)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-4); }
main { flex: 1 0 auto; }
.section { padding: var(--space-6) 0; }

/* Helpers */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: var(--space-3);
}
.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: var(--space-3);
}
.muted { color: var(--c-muted); }
.stack > * + * { margin-top: var(--space-3); }
.row { display: flex; gap: var(--space-3); flex-wrap: wrap; align-items: center; }

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