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

:root {
  --slate: #2c3547;
  --slate-deep: #1e2736;
  --slate-mid: #364057;
  --cream: #e8dfd0;
  --cream-light: #f4efe6;
  --cream-dark: #c9bfaf;
  --gold: #bc9b5e;
  --gold-light: #d4b070;
  --text-muted: #909fba;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--slate-deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: #f4efe6;
  color: #1e2736;
  padding: 0.75rem 1rem;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.875rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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