/**
 * PackPlus V2 — Section 09: Footer (Sprint 3R)
 *
 * Black/ink surface with the real PackPlus logo — closes the homepage
 * rhythm as the second (and final) ink moment on the page. Unconfirmed
 * production links render as editorial text rather than dead anchors
 * (see homepage-v2.php).
 */

.pp-footer {
	background: var(--pp-ink);
	color: var(--pp-white);
}

.pp-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
}

/*
 * The source logo PNG is transparent-background with dark wordmark
 * text, which disappears against the footer's ink surface. Rather
 * than recoloring the mark (which would also strip its real green),
 * it sits on a small paper-colored chip here — the only CSS treatment
 * applied, and it changes nothing about the logo's own pixels.
 */
.pp-footer__logo-chip {
	display: inline-flex;
	padding: 0.85rem 1.1rem;
	background: var(--pp-paper);
}

.pp-footer__logo {
	height: 34px;
	width: auto;
}

.pp-footer__statement {
	margin: 0;
	max-width: 26rem;
	color: color-mix(in srgb, var(--pp-white) 70%, transparent);
}

.pp-footer__groups {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.5rem;
	margin-top: clamp(3rem, 6vw, 4.5rem);
	padding-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--pp-line-on-dark);
}

.pp-footer__group-title {
	margin: 0 0 1.25rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--pp-white) 55%, transparent);
}

.pp-footer__group ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pp-footer__group li + li {
	margin-top: 0.75rem;
}

.pp-footer__group a {
	color: var(--pp-white);
	text-decoration: none;
}

.pp-footer__group a:hover {
	color: var(--pp-green);
}

.pp-footer__group span {
	color: color-mix(in srgb, var(--pp-white) 60%, transparent);
}

.pp-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	padding-top: 1.5rem;
	border-top: 1px solid var(--pp-line-on-dark);
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--pp-white) 55%, transparent);
}
