/* ===== RESET & ROOT VARIABLES ===== */
* {
	box-sizing: border-box;
	margin: 0;
}

:root {
	--brand-color: #ff3c3f;
	--page-color: #ff3c3f;
	--content-gutter: clamp(1rem, 3vw, 2.4rem);
	--nav-row-height: 2.15rem;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
}

h1,
h2,
h3,
h4 {
	line-height: 1.15;
}