:root {
	--fc-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--fc-color-text: #1f1f1f;
	--fc-color-background: #ffffff;
	--fc-color-border: #e6e2dc;
	--fc-container: 1280px;
	--fc-space-1: 0.5rem;
	--fc-space-2: 1rem;
	--fc-space-3: 1.5rem;
	--fc-space-4: 2rem;
	--fc-space-5: 3rem;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--fc-color-text);
	background: var(--fc-color-background);
	font-family: var(--fc-font-body);
	line-height: 1.6;
}

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

a {
	color: inherit;
}

.fc-container {
	width: min(calc(100% - 2rem), var(--fc-container));
	margin-inline: auto;
}

.site-header {
	border-bottom: 1px solid var(--fc-color-border);
	background: var(--fc-color-background);
}

.site-header__inner,
.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--fc-space-3);
	min-height: 76px;
}

.site-brand {
	font-weight: 700;
	text-decoration: none;
}

.site-navigation__list,
.site-footer__menu {
	display: flex;
	flex-wrap: wrap;
	gap: var(--fc-space-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.site-main {
	min-height: 60vh;
	padding-block: var(--fc-space-5);
}

.content-entry__title {
	margin-top: 0;
}

.site-footer {
	margin-top: var(--fc-space-5);
	border-top: 1px solid var(--fc-color-border);
}

.woocommerce .products {
	margin-top: var(--fc-space-4);
}

@media (max-width: 768px) {
	.site-header__inner,
	.site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
		padding-block: var(--fc-space-2);
	}
}
