.site-footer {
	background: #14181f;
	color: rgba(241, 245, 249, 0.9);
	padding-top: 40px;
	padding-bottom: 28px;
	font-size: 0.875rem;
}
.footer-main {
	display: grid;
	grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
	gap: 32px;
	align-items: flex-start;
}
.footer-column {
	min-width: 0;
}
.footer-branding {
	max-width: 360px;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.footer-mark {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at 20% 0, #d8b15c, #c45b4d);
	color: #fff;
	font-weight: 600;
	font-size: 0.9rem;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.5);
}
.footer-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.footer-brand-title {
	font-family: var(--font-serif);
	font-size: 1.05rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #e5ebf0;
}
.footer-brand-subtitle {
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(148, 163, 184, 0.95);
}
.footer-tagline {
	color: rgba(226, 232, 240, 0.9);
	margin-bottom: 10px;
	font-size: 0.9rem;
}
.footer-meta {
	color: rgba(148, 163, 184, 0.95);
	font-size: 0.8rem;
}
.footer-heading {
	font-family: var(--font-serif);
	font-size: 1rem;
	color: #e5ebf0;
	margin-bottom: 10px;
}
.footer-link-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.footer-link-list a {
	color: rgba(226, 232, 240, 0.9);
	font-size: 0.87rem;
	position: relative;
	padding: 2px 0;
}
.footer-link-list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	border-radius: 999px;
	background: linear-gradient(90deg, #c45b4d, #d8b15c);
	transition: width 220ms ease-out;
}
.footer-link-list a:hover::after,
.footer-link-list a:focus-visible::after {
	width: 100%;
}
.footer-contact-text {
	color: rgba(226, 232, 240, 0.9);
	margin-bottom: 12px;
	font-size: 0.9rem;
}
.footer-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(51, 65, 85, 0.9);
	background: rgba(15, 23, 42, 0.8);
	font-size: 0.85rem;
}
.footer-contact-link:hover {
	border-color: #c45b4d;
	color: #fff;
}
.footer-contact-icon {
	width: 26px;
	height: 26px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at 10% 0, #d8b15c, #c45b4d);
	color: #fff;
	font-size: 0.8rem;
}
.footer-divider {
	height: 1px;
	margin-top: 28px;
	margin-bottom: 18px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(148, 163, 184, 0.7),
		transparent
	);
}
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.footer-copy {
	color: rgba(148, 163, 184, 0.98);
	font-size: 0.8rem;
}
.footer-age-note {
	color: rgba(209, 213, 219, 0.95);
	font-size: 0.78rem;
	max-width: 520px;
}
.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 45;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
	transition:
		transform 280ms ease-out,
		opacity 280ms ease-out;
}
.cookie-banner.is-visible {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}
.cookie-inner {
	margin: 0 auto 16px auto;
	max-width: 960px;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.96);
	border: 1px solid rgba(55, 65, 81, 0.9);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 18px;
}
.cookie-title {
	font-family: var(--font-serif);
	font-size: 1rem;
	color: #f9fafb;
	margin-bottom: 4px;
}
.cookie-description {
	margin-bottom: 0;
	color: rgba(209, 213, 219, 0.98);
	font-size: 0.85rem;
}
.cookie-text {
	flex: 1 1 auto;
	min-width: 0;
}
.cookie-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}
.cookie-btn-accept {
	padding: 0.55rem 1.4rem;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.cookie-btn-reject {
	padding: 0.55rem 1.4rem;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: rgba(15, 23, 42, 0.2);
	border-color: rgba(148, 163, 184, 0.95);
	color: rgba(226, 232, 240, 0.98) !important;
}
.cookie-btn-reject:hover {
	background: rgba(31, 41, 55, 0.9);
	border-color: #c45b4d;
	color: #fff;
}
.age-modal {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition:
		opacity 220ms ease-out,
		visibility 220ms ease-out;
}
.age-modal.is-visible {
	visibility: visible;
	opacity: 1;
}
.age-modal-backdrop {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top, #111827, #020617);
	opacity: 0.9;
}
.age-modal-dialog {
	position: relative;
	max-width: 520px;
	width: 100%;
	padding-left: 16px;
	padding-right: 16px;
}
.age-modal-content {
	position: relative;
	z-index: 1;
	border-radius: 20px;
	background:
		radial-gradient(
			circle at top left,
			rgba(216, 177, 92, 0.16),
			transparent 55%
		),
		radial-gradient(circle at bottom right, rgba(76, 81, 109, 0.6), #020617);
	border: 1px solid rgba(75, 85, 99, 0.9);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
	padding: 24px 22px;
}
.age-modal-title {
	font-family: var(--font-serif);
	font-size: 1.4rem;
	color: #f9fafb;
	margin-bottom: 10px;
}
.age-modal-desc {
	color: rgba(209, 213, 219, 0.98);
	font-size: 0.9rem;
	margin-bottom: 16px;
}
.age-modal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}
.age-btn-yes {
	padding: 0.6rem 1.6rem;
	font-size: 0.82rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.age-btn-no {
	padding: 0.6rem 1.6rem;
	font-size: 0.82rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: rgba(15, 23, 42, 0.2);
	border-color: rgba(148, 163, 184, 0.95);
	color: rgba(226, 232, 240, 0.98) !important;
}
.age-btn-no:hover {
	background: rgba(31, 41, 55, 0.9);
	border-color: #c45b4d;
	color: #fff;
}
@media (max-width: 960px) {
	.footer-main {
		grid-template-columns: 1.6fr 1.1fr;
		row-gap: 24px;
	}
	.footer-contact {
		grid-column: 1/-1;
	}
	.cookie-inner {
		margin-left: 12px;
		margin-right: 12px;
		padding: 12px 14px;
		flex-direction: column;
		align-items: flex-start;
	}
	.cookie-actions {
		width: 100%;
		justify-content: flex-start;
	}
}
@media (max-width: 640px) {
	.site-footer {
		padding-top: 28px;
		padding-bottom: 22px;
	}
	.footer-main {
		grid-template-columns: 1fr;
	}
	.footer-age-note {
		max-width: none;
	}
	.cookie-inner {
		margin-bottom: 12px;
	}
	.age-modal-dialog {
		max-width: 100%;
	}
	.age-modal-content {
		padding: 20px 18px;
	}
	.age-modal-title {
		font-size: 1.25rem;
	}
	.footer-bottom {
		align-items: flex-start;
	}
}
