.site-footer {
	display: flex;
	flex-direction: column;
	gap: clamp(40px, 7vh, 72px);
	padding: clamp(56px, 9vh, 96px) var(--gutter) clamp(24px, 4vh, 36px);
	background: var(--onyx);
	color: var(--silver);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(150px, 1fr));
	gap: clamp(28px, 4vw, 64px);
	align-items: start;
}

.footer-pitch { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.footer-line {
	margin: 0;
	max-width: 20ch;
	font-size: clamp(1.5rem, 2.2vw, 2.1rem);
	font-weight: 700;
	font-stretch: 87%;
	line-height: 1.15;
	letter-spacing: -0.01em;
	text-transform: lowercase;
	text-wrap: balance;
}

.footer-cta-link {
	display: inline-flex;
	gap: 10px;
	font-weight: 600;
	font-size: 16px;
	text-transform: lowercase;
	text-decoration: none;
	color: var(--gold);
	border-bottom: 1px solid currentColor;
	padding-bottom: 3px;
	transition: color 0.2s ease;
}
.footer-cta-link:hover, .footer-cta-link:focus-visible { color: var(--almond); }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-head {
	margin: 0 0 6px;
	font-size: var(--fs-mono);
	font-weight: 500;
	letter-spacing: var(--ls-mono);
	text-transform: uppercase;
	color: var(--gold);
}
.footer-col a {
	width: max-content;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	color: var(--silver);
	opacity: 0.82;
	transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-col a:hover, .footer-col a:focus-visible { opacity: 1; color: var(--almond); }
.footer-col .lang-switch { margin-top: 8px; color: var(--smoke); }

.footer-note {
	font-size: 9px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	margin-left: 6px;
}
.footer-itkraft { font-size: 15px; font-weight: 500; color: var(--silver); opacity: 0.82; }

/* hollow punch signature — outline only, present not dominant; wakes on hover */
.footer-lockup {
	display: block;
	width: min(78vw, 860px);
	height: auto;
	fill: none;
	stroke: var(--punch);
	stroke-width: 1.25;
	stroke-linejoin: round;
	opacity: 0.55;
	transition: opacity 0.4s ease;
}
.footer-lockup path, .footer-lockup rect { vector-effect: non-scaling-stroke; }
.footer-lockup:hover { opacity: 0.9; }

.footer-meta {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(241, 243, 243, 0.14);
	padding-top: 18px;
	font-size: var(--fs-mono);
	letter-spacing: var(--ls-mono);
	color: var(--smoke);
}

@media (max-width: 900px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-pitch { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
	.footer-grid { grid-template-columns: 1fr; }
}
