@font-face {
  font-family: "Mona Sans";
  src: url("../assets/mona-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-display: swap;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  font-family: "Mona Sans", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.55;
}

button, select, input, textarea { font: inherit; }
button, label, select { cursor: pointer; }

button:focus-visible,
select:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid #EF845B;
  outline-offset: 3px;
}

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.08; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.2; }
h3 { font-size: 1.08rem; }
a { color: #A84E31; }

.app-shell {
  width: min(100% - 2rem, var(--content-width));
  margin: 0 auto;
  padding: var(--space-6) 0 var(--space-7);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
