/* ==========================================================================
   Footer — Liliya
   ========================================================================== */

.site-footer {
	--footer-bg: #4a2c4e;
	--footer-bg-dark: #2d1a30;
	--footer-accent: #c45b7a;

	position: relative;
	isolation: isolate;
	width: 100vw;
	max-width: 100vw;
	margin-top: 5rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: clamp(3rem, 6vw, 5rem) 0 2rem;
	border-radius: 32px 32px 0 0;
	background:
		linear-gradient(165deg, rgba(196, 91, 122, 0.14) 0%, transparent 42%),
		linear-gradient(180deg, #3f2543 0%, var(--footer-bg) 38%, var(--footer-bg-dark) 100%);
	color: rgba(255, 255, 255, 0.9);
	overflow: hidden;
	box-shadow: 0 -24px 80px rgba(74, 44, 78, 0.2);
}

.site-footer__decor {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.site-footer__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.5;
}

.site-footer__orb--1 {
	top: -90px;
	left: 8%;
	width: 300px;
	height: 300px;
	background: rgba(196, 91, 122, 0.4);
}

.site-footer__orb--2 {
	top: 15%;
	right: -50px;
	width: 240px;
	height: 240px;
	background: rgba(255, 255, 255, 0.1);
}

.site-footer__orb--3 {
	bottom: -50px;
	left: 40%;
	width: 340px;
	height: 180px;
	background: rgba(163, 68, 97, 0.3);
}

.site-footer .container {
	position: relative;
	z-index: 1;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	align-items: start;
	gap: clamp(2rem, 5vw, 4.5rem);
	margin-bottom: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__brand {
	max-width: 420px;
}

.site-footer a.site-footer__logo {
	display: inline-block;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.85rem, 3.5vw, 2.35rem);
	font-weight: 600;
	line-height: 1.15;
	color: #fff;
	text-decoration: none;
	transition: color 0.35s ease, transform 0.35s ease;
}

.site-footer a.site-footer__logo:hover {
	color: #ffd9e4;
	transform: translateY(-2px);
}

.site-footer__tagline {
	margin: 1.15rem 0 0;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__heading {
	position: relative;
	margin: 0 0 1.25rem;
	padding-bottom: 0.8rem;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}

.site-footer__heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 44px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--footer-accent), rgba(255, 255, 255, 0.35));
}

.site-footer__contact-text {
	margin: 0;
	max-width: 340px;
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__payments {
	margin-top: 1.75rem;
}

.site-footer__payments-label {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.site-footer__payments-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.payment-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.4rem 0.55rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.payment-badge:hover {
	transform: translateY(-3px);
	box-shadow:
		0 14px 28px rgba(0, 0, 0, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.payment-badge svg {
	display: block;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
	padding-top: 0.5rem;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.58);
}

.site-footer__copyright,
.site-footer__credits {
	margin: 0;
}

.site-footer__credits a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transition: color 0.35s ease, border-color 0.35s ease;
}

.site-footer__credits a:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
	.site-footer {
		margin-top: 3rem;
		border-radius: 24px 24px 0 0;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		text-align: center;
	}

	.site-footer__brand,
	.site-footer__contact-text {
		margin-inline: auto;
	}

	.site-footer__heading::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.site-footer__payments-icons {
		justify-content: center;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
