/*
  Global reset, base typography, and shared utility classes.
*/
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--espresso-deep);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
}

.rule { height: 1px; background: var(--brass); opacity: 0.5; }

a:focus-visible, button:focus-visible {
  outline: 1px solid var(--brass-bright);
  outline-offset: 3px;
}
