/* Tehzeeb Mithai — Base element defaults
 * Light touch: set the body type, warm text color, and sensible link styling
 * so consumer pages inherit the brand voice without extra work.
 */
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.18s ease;
}
a:hover {
  color: var(--link-hover);
}

::selection {
  background: var(--crimson-500);
  color: var(--white);
}
