:root {
  --bg: #111110;
  --fg: #f4f4f0;
  --accent: #F59E0B;
}

/* Base */
html { font-size: 16px; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
}

body {
  font-family: 'General Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Responsive base */
@media (max-width: 768px) {
  html { font-size: 15px; }
}