/**
 * Footer — Panel Redesign (staging test)
 * Fully scoped under .hl-footer-redesign
 */
.hl-footer-redesign {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100vw;
	background: #050505;
	color: #f0ebe0;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	-webkit-font-smoothing: antialiased;
}
.hl-footer-redesign__panels {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	pointer-events: none;
	background:
		radial-gradient(circle at 35% 30%, rgba(255,255,255,0.04), transparent 28%),
		linear-gradient(90deg, #020202 0%, #0a0a0a 45%, #020202 100%);
}
.hl-footer-redesign__panel {
	position: relative;
	height: 100%;
	flex: 0 0 auto;
	will-change: transform;
}
.hl-footer-redesign__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,0.018) 0%, rgba(255,255,255,0.006) 25%, rgba(0,0,0,0.7) 55%, rgba(255,255,255,0.014) 100%);
	opacity: var(--hl-panel-opacity, 0.6);
}
.hl-footer-redesign__panel::after {
	content: "";
	position: absolute;
	top: 0;
	right: -1px;
	width: var(--hl-gap-width, 1px);
	height: 100%;
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.18), rgba(255,255,255,0.05));
	box-shadow: 0 0 6px rgba(255,255,255,0.045);
	display: none;
}
.hl-footer-redesign__panel:nth-child(3n)::after { opacity: 0.45; }
.hl-footer-redesign__panel:nth-child(4n)::after { opacity: 0.75; }
.hl-footer-redesign__inner {
	position: relative;
	z-index: 2;
	max-width: 1600px;
	margin: 0 auto;
	padding: clamp(32px,4vw,48px) clamp(20px,6vw,96px) clamp(24px,3vw,36px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, max-content);
	gap: clamp(24px,4vw,48px);
	align-items: start;
}
.hl-footer-redesign__nav {
	justify-self: start;
	width: min(920px, 100%);
}
.hl-footer-redesign__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 10px 40px;
}
.hl-footer-redesign__menu li { margin: 0; padding: 0; }
.hl-footer-redesign__menu a {
	position: relative;
	display: inline-block;
	font-weight: 600;
	font-size: clamp(17px,1.3vw,22px);
	line-height: 1.15;
	letter-spacing: 0.01em;
	color: rgba(240,235,224,0.76);
	text-decoration: none;
	padding: 4px 0;
	transition: color 0.25s ease;
}
.hl-footer-redesign__menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0;
	height: 1px;
	background: rgba(240,235,224,0.92);
	transition: width 0.35s ease;
}
.hl-footer-redesign__menu a:hover,
.hl-footer-redesign__menu a:focus-visible { color: rgba(240,235,224,0.98); }
.hl-footer-redesign__menu a:hover::after,
.hl-footer-redesign__menu a:focus-visible::after { width: 100%; }
.hl-footer-redesign__menu a:focus-visible { outline: 2px solid rgba(240,235,224,0.7); outline-offset: 4px; }
.hl-footer-redesign__aside {
	justify-self: end;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	max-width: 330px;
	gap: clamp(14px,1.5vw,22px);
	text-align: right;
}
.hl-footer-redesign__heading {
	margin: 0 0 12px;
	font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(240,235,224,0.4);
}
.hl-footer-redesign__contact p {
	margin: 0 0 6px;
	font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(240,235,224,0.82);
}
.hl-footer-redesign__social { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; align-items: center; }
.hl-footer-redesign__social-link { color: #f0ebe0; opacity: 0.62; line-height: 0; transition: opacity 0.18s ease, transform 0.18s ease; }
.hl-footer-redesign__social-link:hover,
.hl-footer-redesign__social-link:focus-visible { opacity: 1; transform: translateY(-2px); }
.hl-footer-redesign__social-link:focus-visible { outline: 2px solid rgba(240,235,224,0.7); outline-offset: 4px; border-radius: 2px; }
.hl-footer-redesign__bottom {
	grid-column: 1 / -1;
	margin-top: clamp(16px,2vw,24px);
	padding-top: 16px;
	border-top: 1px solid rgba(240,235,224,0.14);
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	align-items: center;
	justify-content: space-between;
	font-family: "DM Sans","Helvetica Neue",Arial,sans-serif;
}
.hl-footer-redesign__copy { font-size: 12px; letter-spacing: 0.04em; color: rgba(240,235,224,0.55); }
.hl-footer-redesign__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hl-footer-redesign__legal li { margin: 0; padding: 0; }
.hl-footer-redesign__legal a { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(240,235,224,0.5); text-decoration: none; transition: color 0.18s ease; }
.hl-footer-redesign__legal a:hover,
.hl-footer-redesign__legal a:focus-visible { color: rgba(240,235,224,0.92); }
@media (max-width: 970px) {
	.hl-footer-redesign__inner { grid-template-columns: 1fr; }
	.hl-footer-redesign__nav {
		justify-self: stretch;
		width: 100%;
	}
	.hl-footer-redesign__aside {
		justify-self: stretch;
		align-items: flex-start;
		max-width: none;
		text-align: left;
	}
	.hl-footer-redesign__social { justify-content: flex-start; }
	.hl-footer-redesign__menu { grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); }
}
@media (max-width: 560px) {
	.hl-footer-redesign__panels { display: none; }
	.hl-footer-redesign__inner {
		padding: 30px 22px 26px;
		gap: 22px;
	}
	.hl-footer-redesign__menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px 20px;
	}
	.hl-footer-redesign__menu a {
		display: flex;
		align-items: center;
		min-height: 44px;
		font-size: clamp(15px,4vw,18px);
		line-height: 1.12;
	}
	.hl-footer-redesign__aside {
		display: grid;
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
		gap: 18px;
	}
	.hl-footer-redesign__heading {
		margin-bottom: 8px;
		font-size: 10px;
		letter-spacing: 0.22em;
	}
	.hl-footer-redesign__contact p {
		font-size: 13px;
		line-height: 1.45;
	}
	.hl-footer-redesign__social {
		gap: 10px;
	}
	.hl-footer-redesign__social-link {
		min-width: 44px;
		min-height: 44px;
	}
	.hl-footer-redesign__bottom {
		margin-top: 4px;
		padding-top: 0;
		border-top: 0;
		flex-direction: column;
		align-items: flex-start;
	}
}
@media (prefers-reduced-motion: reduce) {
	.hl-footer-redesign__panel { transition: none; transform: none !important; }
	.hl-footer-redesign__menu a,
	.hl-footer-redesign__menu a::after,
	.hl-footer-redesign__social-link { transition: none; }
}
