:root {
  --font-sans: 'Roboto', sans-serif;
  --font-display: 'Playfair Display', serif;
  --color-text: #000;
  --color-bg: #fff;
  --color-footer-bg: #000;
  --color-footer-text: #fff;
  --content-wide: 1200px;
  --content-normal: 900px;
  --content-narrow: 800px;
  --gutter: clamp(16px, 3vw, 40px);
  --space-xs: 10px;
  --space-sm: 20px;
  --space-md: 40px;
  --space-lg: 60px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  text-align: center;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

a:focus-visible,
[role='button']:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.site-footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  text-align: center;
  padding: 10px var(--gutter);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--color-footer-text);
  text-decoration: underline;
}

.site-footer a:hover {
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
