:root {
	--bg: #f6e3e8;
	--card: #fff9fa;
	--line: #ead7dc;
	--text: #2f2629;
	--muted: #6f5b62;
	--accent: #c98ea2;
	--floating-cta-bottom: max(0.88rem, calc(env(safe-area-inset-bottom, 0px) + 0.6rem));
	--shadow: 0 18px 36px rgba(130, 93, 108, 0.14);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	background:
		radial-gradient(50rem 28rem at 94% -12%, rgba(244, 197, 214, 0.4), transparent 62%),
		radial-gradient(40rem 25rem at -10% 32%, rgba(246, 216, 226, 0.8), transparent 60%),
		var(--bg);
	color: var(--text);
	line-height: 1.62;
	padding: 1rem 0 7.25rem;
}

.lang-switch {
	position: fixed;
	top: 0.75rem;
	right: 0.75rem;
	display: inline-flex;
	gap: 0.28rem;
	padding: 0.24rem;
	border-radius: 999px;
	border: 1px solid rgba(232, 204, 214, 0.9);
	background: rgba(255, 248, 251, 0.82);
	backdrop-filter: blur(8px);
	z-index: 170;
	box-shadow: 0 10px 20px rgba(130, 93, 108, 0.14);
}

.lang-switch a {
	min-width: 2.25rem;
	height: 2rem;
	padding: 0 0.7rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: #6c5860;
	transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.lang-switch a.is-active {
	background: linear-gradient(165deg, rgba(214, 153, 175, 0.92), rgba(189, 126, 151, 0.9));
	color: #fff;
	box-shadow: 0 8px 16px rgba(145, 95, 115, 0.3);
}

html.js body {
	opacity: 0;
	transition: opacity 620ms ease;
}

html.js body.page-ready {
	opacity: 1;
}

.reveal-ready {
	opacity: 0;
	transform: translateY(18px);
	filter: blur(1px);
	transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease;
}

.reveal-ready.is-revealed {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.legal-shell {
	width: min(100% - 1.2rem, 60rem);
	margin-inline: auto;
}

.legal-header {
	padding: 1.15rem 0.8rem 0.65rem;
	text-align: center;
}

.legal-brand {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 10vw, 3rem);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 0.95;
}

.legal-kicker {
	margin: 0.45rem 0 0;
	text-transform: uppercase;
	font-size: 0.76rem;
	letter-spacing: 0.18em;
	color: var(--accent);
	font-weight: 700;
}

.legal-card {
	border: 1px solid rgba(233, 207, 216, 0.9);
	border-radius: 34px;
	background: linear-gradient(180deg, rgba(255, 249, 251, 0.96), rgba(255, 245, 248, 0.9));
	box-shadow: var(--shadow);
	padding: 1.25rem 1rem;
	backdrop-filter: blur(6px);
}

.legal-intro h1 {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 9.5vw, 3.1rem);
	line-height: 0.95;
	font-weight: 600;
}

.legal-intro p {
	margin: 0.7rem 0 0;
	font-size: 0.95rem;
	color: var(--muted);
}

.legal-meta {
	margin-top: 1rem;
	padding: 0.85rem;
	border-radius: 20px;
	border: 1px solid rgba(229, 200, 210, 0.85);
	background: rgba(255, 255, 255, 0.62);
	display: grid;
	gap: 0.45rem;
	font-size: 0.9rem;
	color: #5a4b51;
}

.legal-section {
	margin-top: 1.15rem;
	padding-top: 1.1rem;
	border-top: 1px solid rgba(226, 197, 207, 0.82);
}

.legal-section h2 {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.55rem, 7vw, 2.2rem);
	line-height: 0.95;
	font-weight: 600;
}

.legal-section p {
	margin: 0.6rem 0 0;
	font-size: 0.95rem;
	color: #4e4146;
}

.legal-section ul {
	margin: 0.55rem 0 0;
	padding-left: 1.15rem;
	font-size: 0.94rem;
	color: #4e4146;
}

.legal-section li + li {
	margin-top: 0.38rem;
}

.back-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1rem;
	height: 2.75rem;
	padding: 0 1.1rem;
	border-radius: 999px;
	border: 1px solid rgba(216, 184, 195, 0.95);
	background: rgba(255, 255, 255, 0.78);
	color: #534247;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.floating-start-now {
	position: fixed;
	left: 50%;
	bottom: var(--floating-cta-bottom);
	transform: translate(-50%, 0);
	height: 3.45rem;
	min-width: min(22rem, calc(100vw - 1.6rem));
	padding: 0 1.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	text-decoration: none;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.015em;
	color: #3b2a31;
	background:
		linear-gradient(160deg, rgba(249, 233, 241, 0.92), rgba(242, 220, 231, 0.88)),
		rgba(255, 255, 255, 0.52);
	border: 1px solid rgba(233, 198, 213, 0.96);
	backdrop-filter: blur(14px) saturate(1.18);
	-webkit-backdrop-filter: blur(14px) saturate(1.18);
	box-shadow:
		0 18px 30px rgba(118, 82, 98, 0.28),
		0 0 0 1px rgba(255, 255, 255, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
	z-index: 120;
	opacity: 1;
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, background 260ms ease, opacity 260ms ease;
}

.floating-start-now::before {
	content: "";
	position: absolute;
	inset: 0.16rem;
	border-radius: inherit;
	border: 1px solid rgba(255, 255, 255, 0.6);
	pointer-events: none;
}

.floating-start-now::after {
	content: "";
	position: absolute;
	left: 14%;
	right: 14%;
	bottom: -0.35rem;
	height: 0.7rem;
	border-radius: 999px;
	background: radial-gradient(ellipse at center, rgba(206, 149, 172, 0.28), rgba(206, 149, 172, 0));
	filter: blur(6px);
	pointer-events: none;
}

.floating-start-now.is-mounted {
	opacity: 1;
	transform: translate(-50%, 0);
}

.floating-start-now.is-scrolling {
	transform: translate(-50%, -2px);
	box-shadow:
		0 22px 36px rgba(118, 82, 98, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.58),
		inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.site-footer {
	margin: 1.3rem auto 0;
	padding: 0 0.15rem;
}

.site-footer-inner {
	text-align: center;
	padding: 1.2rem 0.9rem 1rem;
	border-radius: 28px;
	border: 1px solid rgba(233, 207, 216, 0.9);
	background: linear-gradient(180deg, rgba(255, 247, 250, 0.92), rgba(255, 243, 247, 0.78));
	box-shadow: 0 14px 28px rgba(130, 93, 108, 0.1);
	backdrop-filter: blur(6px);
}

.footer-copy {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.22rem;
	line-height: 1.1;
	font-weight: 600;
	color: #3b2f34;
}

.footer-divider {
	width: min(16rem, 82%);
	height: 1px;
	margin: 0 auto 0.9rem;
	background: linear-gradient(to right, transparent, rgba(191, 143, 161, 0.5), transparent);
}

.footer-tagline {
	margin: 0.5rem 0 0;
	font-size: 0.92rem;
	color: #68535b;
}

.footer-nav {
	margin-top: 0.9rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem 0.9rem;
}

.footer-nav a {
	position: relative;
	font-size: 0.87rem;
	color: #5f4d54;
	text-decoration: none;
	padding-bottom: 0.12rem;
	transition: color 220ms ease, transform 220ms ease;
}

.footer-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: rgba(188, 129, 149, 0.65);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms ease;
}

.cookie-banner {
	position: fixed;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 5rem;
	border-radius: 20px;
	border: 1px solid rgba(231, 201, 212, 0.92);
	background: linear-gradient(180deg, rgba(255, 249, 251, 0.96), rgba(255, 244, 248, 0.93));
	box-shadow: 0 18px 30px rgba(104, 72, 83, 0.18);
	padding: 0.88rem;
	z-index: 45;
	opacity: 0;
	transform: translateY(14px);
	pointer-events: none;
	transition: opacity 240ms ease, transform 240ms ease;
}

.cookie-banner.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.cookie-banner.is-hidden {
	display: none;
}

.cookie-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #54444a;
}

.cookie-actions {
	margin-top: 0.7rem;
	display: flex;
	gap: 0.55rem;
}

.cookie-btn {
	flex: 1;
	height: 2.5rem;
	border-radius: 999px;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.cookie-btn-decline {
	border: 1px solid rgba(216, 184, 195, 0.95);
	background: rgba(255, 255, 255, 0.8);
	color: #5f4f55;
}

.cookie-btn-accept {
	border: 1px solid rgba(190, 129, 150, 0.88);
	background: linear-gradient(170deg, #cf93a8, #bb7f95);
	color: #fff;
	box-shadow: 0 10px 18px rgba(148, 97, 116, 0.28);
}

@media (min-width: 768px) {
	body {
		padding-top: 1.4rem;
	}

	.legal-shell {
		width: min(100% - 2rem, 62rem);
	}

	.legal-header {
		padding-top: 0.45rem;
	}

	.legal-card {
		padding: 2rem 1.9rem;
	}

	.legal-meta {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.8rem;
	}

	.site-footer {
		padding-inline: 0.7rem;
	}

	.site-footer-inner {
		padding: 1.5rem 1.3rem 1.2rem;
	}

	.footer-copy {
		font-size: 1.38rem;
	}

	.cookie-banner {
		left: auto;
		right: 1.1rem;
		width: min(27rem, calc(100vw - 2rem));
		bottom: 5.2rem;
	}

	.floating-start-now {
		bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
		min-width: 21rem;
		max-width: 23rem;
	}

	@media (hover: hover) {
		.back-link:hover {
			transform: translateY(-1px);
			box-shadow: 0 12px 20px rgba(130, 93, 108, 0.15);
		}

		.footer-nav a:hover {
			color: #44373d;
			transform: translateY(-1px);
		}

		.footer-nav a:hover::after {
			transform: scaleX(1);
		}

		.cookie-btn:hover {
			transform: translateY(-1px);
		}

		.cookie-btn-accept:hover {
			box-shadow: 0 12px 20px rgba(148, 97, 116, 0.32);
		}

		.floating-start-now:hover {
			transform: translate(-50%, -3px);
			box-shadow:
				0 24px 38px rgba(118, 82, 98, 0.34),
				0 0 0 1px rgba(255, 255, 255, 0.62),
				inset 0 1px 0 rgba(255, 255, 255, 0.78);
		}

		.legal-card:hover,
		.site-footer-inner:hover {
			transform: translateY(-2px);
			box-shadow: 0 20px 30px rgba(130, 93, 108, 0.16);
		}
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
	}

	html.js body,
	html.js body.page-ready,
	.reveal-ready,
	.reveal-ready.is-revealed {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
	}
}
