/* -------------------------------------------------------------------------
   Site Header
   ------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;

	background: rgb(var(--color-white));
	box-shadow: 0 1px 0 rgba(var(--color-dark), 0.06);
}

.site-header__inner {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 2rem;
	padding-block: 1rem;
}

.site-logo {
	flex-shrink: 0;
}

.site-logo a {
	display: inline-flex;
	align-items: center;
}

.site-logo img {
	display: block;

	width: auto;
	height: 40px;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
	background: rgb(var(--color-dark));
	color: rgb(var(--color-light));
	padding-block: var(--section-spacing) 2rem;
}

.site-footer a {
	color: rgb(var(--color-light));
}

.site-footer a:hover {
	color: rgb(var(--color-accent));
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(var(--color-white), 0.12);
}

.footer__claim h2 {
	color: rgb(var(--color-white));
	max-width: 360px;
}

.footer__location h3 {
	color: rgb(var(--color-white));
	font-size: 1.1rem;
}

.footer__location address {
	font-style: normal;
	margin-bottom: 0.5rem;
	opacity: 0.85;
}

.footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.5rem;
	font-size: 0.85rem;
	opacity: 0.75;
}

.footer__legal-menu {
	display: flex;
	gap: 1.5rem;
}

.footer__social {
	display: flex;
	gap: 1rem;
}

.footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(var(--color-white), 0.08);
}

.footer__social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

@media (max-width: 900px) {
	.footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 782px) {
	.footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
