html {
	scroll-behavior: smooth;
}

.glass { background: rgba(36, 35, 59, 0.6); backdrop-filter: blur(20px); }
.text-glow { text-shadow: 0 0 12px rgba(0, 255, 255, 0.5); }
.bg-pulse { background: radial-gradient(circle, rgba(0,255,255,0.15) 0%, rgba(255,81,250,0.05) 100%); }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.form-feedback {
	min-height: 20px;
	font-size: 12px;
	line-height: 1.5;
	color: #aba9bf;
}
.form-feedback.is-success {
	color: #00ffff;
}
.form-feedback.is-error {
	color: #ff8b91;
}
.form-toast {
	position: fixed;
	top: 18px;
	right: 18px;
	z-index: 120;
	max-width: min(92vw, 360px);
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(12, 12, 29, 0.9);
	backdrop-filter: blur(18px);
	color: #e6e3fb;
	font-size: 13px;
	line-height: 1.5;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
	opacity: 0;
	transform: translateY(-10px);
	pointer-events: none;
	transition: opacity 220ms ease, transform 220ms ease;
}
.form-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.form-toast.is-success {
	border-color: rgba(0, 255, 255, 0.28);
	color: #c1fffe;
}
.form-toast.is-error {
	border-color: rgba(255, 113, 108, 0.28);
	color: #ffb4ab;
}
.form-submit {
	position: relative;
}
.form-submit.is-loading {
	opacity: 0.9;
	cursor: wait;
}
.form-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(0, 67, 67, 0.25);
	border-top-color: #004343;
	border-radius: 9999px;
	animation: form-spin 0.75s linear infinite;
}
@keyframes form-spin {
	to {
		transform: rotate(360deg);
	}
}
.booking-drawer {
	position: fixed;
	inset: 0;
	z-index: 80;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.booking-drawer.is-open {
	pointer-events: auto;
}
.booking-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.56);
	backdrop-filter: blur(8px);
	opacity: 0;
	transition: opacity 280ms ease;
}
.booking-drawer.is-open .booking-drawer__backdrop {
	opacity: 1;
}
.booking-drawer__panel {
	position: relative;
	width: min(100%, 500px);
	max-height: min(100%, 680px);
	opacity: 0;
	transform: translateY(24px) scale(0.96);
	transition: opacity 280ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
	overflow: hidden;
}
.booking-drawer.is-open .booking-drawer__panel {
	opacity: 1;
	transform: translateY(0) scale(1);
}
.booking-drawer__card {
	max-height: min(100vh - 28px, 680px);
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		linear-gradient(180deg, rgba(43, 42, 68, 0.88), rgba(10, 10, 24, 0.96)),
		radial-gradient(circle at top, rgba(0, 255, 255, 0.08), transparent 32%);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 60px rgba(0, 255, 255, 0.08);
	padding: 20px;
	overflow-x: hidden;
	overflow-y: auto;
}
.booking-drawer__glow {
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 9999px;
	filter: blur(56px);
	opacity: 0.16;
	pointer-events: none;
}
.booking-drawer__glow--cyan {
	top: -36px;
	left: -12px;
	background: #00ffff;
}
.booking-drawer__glow--pink {
	right: -28px;
	bottom: 18%;
	background: #ff51fa;
}
.booking-drawer__hero {
	position: relative;
	z-index: 1;
	padding-top: 2px;
}
.booking-drawer__hero-copy {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
	text-align: center;
}
.booking-drawer__eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	color: #ff51fa;
	font-family: "Space Grotesk", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
.booking-drawer__intro {
	position: relative;
	z-index: 1;
	max-width: 430px;
}
.booking-drawer__title {
	margin: 0;
	color: #e6e3fb;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 900;
	line-height: 0.94;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	text-shadow: 0 0 18px rgba(0, 255, 255, 0.18);
}
.booking-drawer__copy {
	margin: 8px 0 0;
	max-width: 34ch;
	color: #aba9bf;
	font-size: 13px;
	line-height: 1.5;
}
.booking-drawer__meta {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 100%;
	justify-content: center;
}
.booking-drawer__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	color: #d7d4ec;
	font-size: 11px;
}
.booking-drawer__meta-item .material-symbols-outlined {
	font-size: 18px;
	color: #00ffff;
}
.booking-drawer__close {
	position: absolute;
	top: 0;
	right: 0;
	width: 44px;
	height: 44px;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #e6e3fb;
	flex: 0 0 auto;
	transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}
.booking-drawer__close:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(0, 255, 255, 0.2);
	transform: rotate(90deg);
}
.booking-drawer__label {
	display: block;
	margin-bottom: 8px;
	color: #aba9bf;
	font-family: "Space Grotesk", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.booking-drawer__form {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}
.booking-drawer__group {
	padding: 12px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(0, 0, 0, 0.2);
	min-width: 0;
}
.booking-drawer__field {
	width: 100%;
	max-width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.02);
	color: #e6e3fb;
	padding: 12px 14px;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
}
.booking-drawer__group input.booking-drawer__field,
.booking-drawer__group textarea.booking-drawer__field {
	background-color: rgba(255, 255, 255, 0.03);
	color: #e6e3fb;
	border-radius: 8px !important;
}
.booking-drawer__field::placeholder {
	color: rgba(230, 227, 251, 0.46);
}
.booking-drawer__field:focus {
	border-color: rgba(0, 255, 255, 0.48);
	box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.2), 0 0 24px rgba(0, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
}
.booking-drawer__textarea {
	min-height: 92px;
	resize: vertical;
}
.booking-drawer__submit {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 16px;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(90deg, #00ffff 0%, #ff51fa 100%);
	color: #004343;
	font-family: "Space Grotesk", sans-serif;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	box-shadow: 0 0 36px rgba(255, 81, 250, 0.24);
	transition: transform 180ms ease, box-shadow 180ms ease;
}
.booking-drawer__submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 0 48px rgba(255, 81, 250, 0.34);
}
.booking-drawer__submit .material-symbols-outlined {
	font-size: 18px;
}
body.booking-drawer-open {
	overflow: hidden;
}
@media (max-width: 768px) {
	.homepage-hero {
		min-height: 560px;
	}

	.homepage-hero__image {
		transform: none;
	}

	body:not(.admin-bar) .homepage-hero {
		padding-top: 5.5rem;
	}

	body.admin-bar .homepage-hero {
		padding-top: 4rem;
	}

	.homepage-top-navbar {
		background: rgba(12, 12, 29, 0.92);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.form-toast {
		left: 12px;
		right: 12px;
		top: 12px;
		max-width: none;
	}

	.booking-drawer {
		align-items: center;
		padding: 10px;
	}

	.booking-drawer__panel {
		width: 100%;
	}

	.booking-drawer__card {
		max-height: calc(100vh - 20px);
		border-radius: 22px;
		padding: 16px;
		gap: 12px;
	}

	.booking-drawer__close {
		top: 0;
		right: 0;
	}

	.booking-drawer__title {
		font-size: 1.75rem;
	}

	.booking-drawer__group {
		padding: 12px;
	}

	.booking-drawer__copy {
		font-size: 13px;
		line-height: 1.55;
	}

	.booking-drawer__textarea {
		min-height: 88px;
	}
}
