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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-base);
}

body {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.9;
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

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

::selection {
  background: var(--gold-selection);
}

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

input::placeholder,
textarea::placeholder {
  color: rgba(236,231,218,0.32);
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  background: radial-gradient(120% 90% at 50% 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.42) 100%);
}
