/* AskJim base resets — warm paper ground, warm near-black text, sensible
   editorial defaults. Kept minimal; components carry their own styling. */
:root {
  color-scheme: light;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: var(--type-body-lh);
  font-weight: var(--weight-regular);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-strong);
  font-weight: var(--weight-medium);
  margin: 0;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color var(--transition);
}

::selection {
  background: rgba(200, 71, 46, 0.18);
}
