* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--warm-ivory);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 198, 93, 0.16), transparent 30rem),
    linear-gradient(180deg, #fffdf8 0%, var(--warm-ivory) 45%);
}

body[data-screen="app"] {
  background:
    url("../assets/images/brand/paper-texture.png") 0 0 / 360px 360px repeat,
    radial-gradient(circle at 12% 0%, rgba(244, 198, 93, 0.16), transparent 30rem),
    linear-gradient(180deg, #fffdf8 0%, var(--warm-ivory) 45%);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(111, 46, 108, 0.45);
  outline-offset: 3px;
}

.app-shell {
  min-height: 100svh;
}

.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;
}
