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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  text-decoration: none;
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2em;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.6em;
  line-height: 1.2;
}

hr {
  border: 0;
  height: 1px;
  background: var(--border-soft);
  margin: 32px 0;
}

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

.wrap {
  width: min(var(--wrap), 92vw);
  margin: 0 auto;
}

.wrap--page {
  padding: 24px 18px 54px;
}

.center {
  text-align: center;
}

.serif {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2px;
}

.muted {
  color: var(--muted);
}

.gold {
  color: var(--brand2);
}

.section {
  padding: 34px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.98), rgba(7, 6, 5, 0.98));
}

.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}
