/**
 * Beauvit — site footer component.
 *
 * @package Beauvit
 */

.site-footer {
	margin-top: var(--bv-section-y);
	background-color: #211c16;
	color: #d9cfc0;
}

.site-footer__inner {
	display: grid;
	gap: clamp(1.75rem, 4vw, 3.5rem);
	grid-template-columns: 1.5fr 1fr 1fr;
	padding-block: clamp(2.75rem, 5vw, 4.25rem);
}

.site-footer__name {
	display: block;
	font-family: var(--bv-font-serif);
	font-size: 1.55rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 0.9rem;
}

.site-footer__about {
	max-width: 44ch;
	color: #b3a897;
	margin: 0;
}

.site-footer__heading {
	font-family: var(--bv-font-sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #9a8f7d;
	margin: 0 0 1.1rem;
}

/* Brand standard points --------------------------------------------- */
.site-footer__points-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.site-footer__point {
	position: relative;
	padding-left: 1.1rem;
	font-size: 0.95rem;
	color: #d9cfc0;
}

.site-footer__point::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--bv-accent);
}

/* Optional WordPress footer menu ------------------------------------ */
.site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.site-footer__list a {
	color: #d9cfc0;
	font-size: 0.95rem;
}

.site-footer__list a:hover {
	color: #fff;
}

/* Bottom bar -------------------------------------------------------- */
.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__copyright {
	max-width: var(--bv-container);
	margin-inline: auto;
	padding: 1.35rem clamp(1.25rem, 4vw, 2.5rem);
	font-size: 0.85rem;
	color: #8c8171;
	margin-bottom: 0;
}

@media (max-width: 760px) {
	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 480px) {
	.site-footer__inner {
		grid-template-columns: 1fr;
	}
}
