:root {
    --font-sans: 'Archivo', sans-serif;
    --font-serif: 'Archivo Narrow', 'Arial Narrow', sans-serif;
    --space-xs: 0.5rem;
    --space-s: 1rem;
    --space-m: 1.5rem;
    --space-l: 2.5rem;
    --space-xl: 4rem;
    --gutter-dk: 24px;
    --gutter-tb: 16px;
    --gutter-mb: 16px;
    --margin-dk: 110px;
    --margin-tb: 60px;
    --margin-mb: 22px;
    --container-max: 1400px;
    --color-bg: #FFFFFF;
    --color-text: #111111;
    --color-text-muted: #666666;
}

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

html {
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-bg);
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

a {
    color: var(--color-text);
    text-decoration: none;
    cursor: pointer;
}

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