/* Velvet Fox age gate — matches the site's dark green and gold palette. */

.vf-age-gate {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background:
		radial-gradient(ellipse at 50% 30%, rgba(27, 76, 54, 0.85) 0%, transparent 60%),
		#08150F;
	color: #F4EFE6;
	font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
	text-align: center;
	overflow-y: auto;
}

/* Confirmed visitors: no gate, and the page scrolls normally. */
html.vf-age-ok .vf-age-gate {
	display: none;
}

html:not(.vf-age-ok) body {
	overflow: hidden;
}

.vf-age-gate__panel {
	max-width: 520px;
	width: 100%;
	margin: auto;
	padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
	border: 1px solid rgba(201, 169, 106, 0.4);
	background: rgba(11, 29, 21, 0.86);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.vf-age-gate__mark {
	width: 72px;
	height: 72px;
	margin: 0 auto 22px;
	display: block;
}

.vf-age-gate__eyebrow {
	margin: 0 0 18px;
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: #C9A96A;
}

.vf-age-gate__title {
	margin: 0 0 18px;
	font-family: "Cinzel", Georgia, serif;
	font-size: clamp(1.7rem, 4vw, 2.4rem);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #F4EFE6;
	line-height: 1.2;
}

.vf-age-gate__title::after {
	content: "";
	display: block;
	width: 90px;
	height: 1px;
	margin: 20px auto 0;
	background: linear-gradient(90deg, rgba(201, 169, 106, 0), #C9A96A, rgba(201, 169, 106, 0));
}

.vf-age-gate__text {
	margin: 0 0 26px;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
	color: rgba(244, 239, 230, 0.82);
}

.vf-age-gate__question {
	margin: 0 0 24px;
	font-family: "Cinzel", Georgia, serif;
	font-size: 1.1rem;
	letter-spacing: 0.06em;
	color: #E8D3A0;
}

.vf-age-gate__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

.vf-age-gate .vf-age-gate__btn {
	flex: 1 1 auto;
	min-width: 165px;
	padding: 1.05em 1.8em;
	font-family: inherit;
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 2px;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.vf-age-gate .vf-age-gate__btn--yes {
	border: 1px solid #C9A96A;
	background: #C9A96A;
	color: #08150F;
}

.vf-age-gate .vf-age-gate__btn--yes:hover,
.vf-age-gate .vf-age-gate__btn--yes:focus {
	background: #E8D3A0;
	border-color: #E8D3A0;
}

.vf-age-gate .vf-age-gate__btn--no {
	border: 1px solid rgba(201, 169, 106, 0.5);
	background: transparent;
	color: rgba(244, 239, 230, 0.85);
}

.vf-age-gate .vf-age-gate__btn--no:hover,
.vf-age-gate .vf-age-gate__btn--no:focus {
	border-color: #C9A96A;
	color: #C9A96A;
}

.vf-age-gate .vf-age-gate__btn:focus-visible {
	box-shadow: none;
	outline: 2px solid #E8D3A0;
	outline-offset: 3px;
}

.vf-age-gate__declined {
	margin: 24px 0 0;
	padding-top: 22px;
	border-top: 1px solid rgba(201, 169, 106, 0.22);
	font-size: 0.95rem;
	color: #E8D3A0;
}

.vf-age-gate__legal {
	margin: 26px 0 0;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(167, 182, 171, 0.75);
}

@media (max-width: 420px) {
	.vf-age-gate__actions {
		flex-direction: column;
	}

	.vf-age-gate .vf-age-gate__btn {
		width: 100%;
	}
}
