/* Bellora Footer */

.bellora-footer {
	padding-block: var(--bellora-layout-section-y) clamp(1.5rem, 3vh, 2.5rem);
	background: var(--bellora-color-surface-cream);
	color: var(--bellora-color-text);
}

.bellora-footer--light {
	background: var(--bellora-color-surface);
}

.bellora-footer--dark {
	background: var(--bellora-color-surface-invert);
	color: var(--bellora-color-on-invert);
}

.bellora-footer__inner {
	max-width: var(--bellora-layout-container-wide);
	margin-inline: auto;
	padding-inline: var(--bellora-layout-container-pad);
}

.bellora-footer__tagline {
	max-width: 16em;
	margin: 0 auto clamp(2.5rem, 6vw, 4.5rem);
	font-family: var(--bellora-font-display);
	font-size: clamp(1.75rem, 3.6vw, 3.25rem);
	font-weight: 300;
	font-style: italic;
	line-height: 1.2;
	letter-spacing: -0.01em;
	text-align: center;
	color: var(--bellora-color-heading);
}

.bellora-footer--dark .bellora-footer__tagline {
	color: var(--bellora-color-on-invert);
}

.bellora-footer__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	padding-block: clamp(1.25rem, 2.6vh, 2rem);
	border-top: 1px solid color-mix(in srgb, currentColor 18%, transparent);
}

.bellora-footer__brand {
	font-family: var(--bellora-font-display);
	font-size: var(--bellora-size-xl);
	font-weight: 400;
	letter-spacing: 0.04em;
	text-decoration: none;
	color: var(--bellora-color-heading);
}

.bellora-footer--dark .bellora-footer__brand {
	color: var(--bellora-color-on-invert);
}

.bellora-footer__menu {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(1rem, 2.4vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bellora-footer__menu a,
.bellora-footer__social a {
	font-family: var(--bellora-font-ui);
	font-size: var(--bellora-size-xs);
	font-weight: var(--bellora-weight-medium);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	color: inherit;
	opacity: 0.85;
	transition: opacity var(--bellora-motion-fast) var(--bellora-motion-easing);
}

.bellora-footer__menu a:hover,
.bellora-footer__menu a:focus-visible,
.bellora-footer__social a:hover,
.bellora-footer__social a:focus-visible {
	opacity: 1;
}

.bellora-footer__social {
	display: flex;
	gap: clamp(0.875rem, 2vw, 1.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bellora-footer__legal {
	padding-top: clamp(1rem, 2vh, 1.5rem);
	border-top: 1px solid color-mix(in srgb, currentColor 18%, transparent);
	text-align: center;
}

.bellora-footer__legal p {
	margin: 0;
	font-family: var(--bellora-font-ui);
	font-size: var(--bellora-size-xs);
	letter-spacing: 0.08em;
	color: var(--bellora-color-text-muted);
}

@media (max-width: 767px) {
	.bellora-footer__row {
		flex-direction: column;
		text-align: center;
	}
}
