/* Inquiro base. Reset, html, body, typography defaults shared by every page.
   Page stylesheets can override font-size, color, or layout as needed. */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

a {
  color: var(--amber);
  text-decoration: none;
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}

a:hover { text-decoration: underline; }

button {
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

input, textarea, select {
  font-family: inherit;
  color: inherit;
}

code, kbd, pre, samp {
  font-family: var(--font-mono);
}

img, svg, canvas, video {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}
