/* END — base.css */
/* Reset and global styles */
/* Quinn — Task 5 — 2026-05-18 */

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

html {
  scroll-behavior: smooth;
  background-color: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--ink);
  color: var(--ground);
}
