/* ── Footer ───────────────────────────────────────────── */
.footer--section {
	background: var(--theme-bg-dark);
	color: rgba(255, 255, 255, .72);
	padding: 64px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer--grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-bottom: 56px;
}

@media (min-width: 756px) {
	.footer--grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

@media (min-width: 992px) {
	.footer--grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
		gap: 40px;
	}
}

/* ── Brand column ──────────────────────────────────────── */
.footer--logo-wrap {
	display: inline-flex;
	align-items: center;
	margin-bottom: 20px;
}

.footer--logo {
	display: block;
	height: auto;
	width: 100%;
	max-width: 260px;
}

.footer--copy {
	margin: 0;
	max-width: 32ch;
	color: rgba(255, 255, 255, .55);
	font-size: 14px;
	line-height: 1.55;
}

/* ── Columns (Site / Get in touch / Follow) ───────────── */
.footer--col-title {
	font-family: var(--theme-mono);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .45);
	margin: 0 0 16px;
}

.footer--menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer--menu li {
	margin-bottom: 10px;
}

.footer--menu a {
	color: rgba(255, 255, 255, .78);
	text-decoration: none;
	font-size: 14px;
	transition: color .2s ease;
}

.footer--menu a:hover {
	color: color-mix(in srgb, var(--theme-accent) 60%, #fff);
}

/* ── Social buttons (from [lwh-social] shortcode) ──────── */
.footer--socials {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.footer--socials .lwh-social-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .22);
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .78);
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.footer--socials .lwh-social-icon:hover {
	background: var(--theme-accent);
	border-color: var(--theme-accent);
	color: var(--theme-on-accent);
}

.footer--socials .lwh-social-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

/* ── Base row (copyright + legal nav) ──────────────────── */
.footer--base {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-family: var(--theme-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .4);
}

.footer--copyright {
	color: inherit;
}

.footer--legal {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.footer--legal li {
	position: relative;
}

.footer--legal li + li::before {
	content: "·";
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, .35);
}

.footer--legal a {
	color: inherit;
	text-decoration: none;
	transition: color .2s ease;
}

.footer--legal a:hover {
	color: rgba(255, 255, 255, .7);
}
