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

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--color-deep-black);
  text-decoration: none;
  border-bottom: 1px solid var(--color-antique-gold-mid);
  transition: border-color var(--dur-fast) var(--ease-out);
}
a:hover { border-color: var(--color-antique-gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4) 0;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 var(--space-4) 0; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-antique-gold);
  margin-bottom: var(--space-3);
  display: block;
}

.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-6) 0;
  border: 0;
}

.divider-gold {
  height: 1px;
  background: var(--color-antique-gold);
  width: 56px;
  margin: 0 0 var(--space-5) 0;
  border: 0;
}

::selection {
  background: var(--color-antique-gold);
  color: var(--color-deep-black);
}

button { font-family: inherit; cursor: pointer; }

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

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