:root {
	--bg-main: #090a0d;
	--bg-surface: #10131a;
	--bg-card: #151822;
	--bg-card-hover: #1b202e;
	--bg-subtle: #0d0f14;
	--gold-primary: #d4af37;
	--gold-light: #f3e5ab;
	--gold-dark: #997d29;
	--gold-gradient: linear-gradient(135deg, #f5df97 0%, #d4af37 50%, #997d29 100%);
	--gold-glow: 0 0 24px rgba(212, 175, 55, 0.22);
	--gold-glow-subtle: 0 0 12px rgba(212, 175, 55, 0.12);
	--border-gold: rgba(212, 175, 55, 0.22);
	--border-gold-strong: rgba(212, 175, 55, 0.45);
	--border-subtle: rgba(255, 255, 255, 0.07);
	--fg-primary: #f8f9fa;
	--fg-secondary: #c5cbd6;
	--fg-muted: #838d9d;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-full: 9999px;
	--font-display: "Cinzel", Georgia, serif;
	--font-heading: "Syne", "Plus Jakarta Sans", sans-serif;
	--font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--space: 1.5rem;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	background-color: var(--bg-main);
	color: var(--fg-primary);
}

body {
	margin: 0;
	background-color: var(--bg-main);
	color: var(--fg-primary);
	font-family: var(--font-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	background-image: 
		radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 100% 60%, rgba(212, 175, 55, 0.04) 0%, transparent 35%),
		linear-gradient(to bottom, #090a0d 0%, #07080a 100%);
	min-height: 100vh;
	overflow-x: hidden;
}

/* Typography elements */
h1, h2, h3, h4, .brand-font {
	font-family: var(--font-display);
	letter-spacing: 0.04em;
	color: var(--fg-primary);
	font-weight: 700;
}

.heading-sub {
	font-family: var(--font-heading);
	letter-spacing: 0.02em;
}

.gold-text {
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.gold-text-solid {
	color: var(--gold-primary);
}

/* Container */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.section {
	padding: 5.5rem 0;
	position: relative;
}

@media (max-width: 768px) {
	.section {
		padding: 3.5rem 0;
	}
}

/* Header & Sticky Navigation */
.vip-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(9, 10, 13, 0.88);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-gold);
	transition: all 0.3s ease;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.75rem;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.brand-crown {
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-primary);
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-sm);
}

.brand-title {
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.brand-title span.sub {
	font-size: 0.65rem;
	font-family: var(--font-heading);
	letter-spacing: 0.3em;
	color: var(--gold-primary);
	text-transform: uppercase;
	font-weight: 600;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
}

.nav-link {
	color: var(--fg-secondary);
	text-decoration: none;
	font-size: 0.925rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	transition: color 0.2s ease, transform 0.2s ease;
	position: relative;
	padding: 0.35rem 0;
}

.nav-link:hover, .nav-link.active {
	color: var(--gold-light);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gold-primary);
	transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
	width: 100%;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* Mobile Nav Toggle */
.mobile-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--border-gold);
	color: var(--gold-primary);
	padding: 0.5rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
}

@media (max-width: 960px) {
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(14, 16, 22, 0.98);
		border-bottom: 1px solid var(--border-gold);
		flex-direction: column;
		padding: 1.5rem;
		gap: 1.25rem;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
	}
	.nav-menu.open {
		display: flex;
	}
	.mobile-toggle {
		display: block;
	}
}

/* Buttons */
.btn-gold {
	background: var(--gold-gradient);
	color: #090a0d;
	font-family: var(--font-heading);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.8rem 1.6rem;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
	filter: brightness(1.08);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.03);
	color: var(--fg-primary);
	font-family: var(--font-heading);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.8rem 1.6rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border-gold);
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.25s ease;
}

.btn-outline:hover {
	background: rgba(212, 175, 55, 0.12);
	border-color: var(--gold-primary);
	color: var(--gold-light);
	transform: translateY(-2px);
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.775rem;
}

/* Hero Section */
.hero-wrapper {
	position: relative;
	min-height: 86vh;
	display: flex;
	align-items: center;
	padding: 3rem 0;
	overflow: hidden;
}

.hero-bg-overlay {
	position: absolute;
	inset: 0;
	background: 
		linear-gradient(to right, rgba(9, 10, 13, 0.95) 20%, rgba(9, 10, 13, 0.75) 60%, rgba(9, 10, 13, 0.92) 100%),
		url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
	z-index: 0;
	filter: contrast(1.15) brightness(0.65);
}

.hero-particles {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.15), transparent 45%);
	z-index: 1;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 44rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.4rem 1rem;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-family: var(--font-heading);
	color: var(--gold-light);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	box-shadow: var(--gold-glow-subtle);
}

.hero-title {
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	line-height: 1.08;
	margin-bottom: 1.25rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--fg-secondary);
	margin-bottom: 2.25rem;
	font-weight: 300;
	line-height: 1.6;
	max-width: 36rem;
}

.hero-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 1.25rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-subtle);
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-num {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--gold-light);
}

.stat-label {
	font-size: 0.8rem;
	color: var(--fg-muted);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* Section Header */
.section-header {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 3.5rem auto;
}

.section-tag {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 0.775rem;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gold-primary);
	margin-bottom: 0.75rem;
}

.section-title {
	font-size: clamp(1.8rem, 4vw, 2.75rem);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.section-desc {
	color: var(--fg-secondary);
	font-size: 1rem;
	line-height: 1.6;
}

/* Service Cards Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
	gap: 1.75rem;
}

.service-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-gold);
	background: var(--bg-card-hover);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), var(--gold-glow-subtle);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card.featured {
	border-color: var(--border-gold);
	background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, rgba(21, 24, 34, 0.95) 100%);
}

.service-card.featured::before {
	opacity: 1;
}

.service-badge {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	font-size: 0.65rem;
	font-family: var(--font-heading);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 0.25rem 0.65rem;
	background: rgba(212, 175, 55, 0.15);
	color: var(--gold-light);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-full);
}

.service-header {
	margin-bottom: 1.25rem;
}

.service-icon-wrap {
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-md);
	background: rgba(212, 175, 55, 0.08);
	border: 1px solid var(--border-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-primary);
	margin-bottom: 1.25rem;
}

.service-name {
	font-size: 1.35rem;
	margin-bottom: 0.5rem;
}

.service-meta {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.service-price {
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--gold-light);
}

.service-duration {
	font-size: 0.825rem;
	color: var(--fg-muted);
}

.service-desc {
	color: var(--fg-secondary);
	font-size: 0.9rem;
	line-height: 1.55;
	margin-bottom: 1.5rem;
}

.service-features {
	list-style: none;
	margin-bottom: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.service-feature-item {
	font-size: 0.825rem;
	color: var(--fg-secondary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.service-feature-item svg {
	color: var(--gold-primary);
	flex-shrink: 0;
}

/* About Section */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
}

@media (max-width: 900px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

.about-image-wrapper {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-gold);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-image-wrapper img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
	transform: scale(1.03);
}

.about-floating-badge {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	background: rgba(14, 16, 22, 0.92);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-gold);
	padding: 1.25rem 1.5rem;
	border-radius: var(--radius-md);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	text-align: center;
}

.about-pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	margin-top: 2rem;
}

@media (max-width: 500px) {
	.about-pillars {
		grid-template-columns: 1fr;
	}
}

.pillar-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	padding: 1.25rem;
	border-radius: var(--radius-md);
	transition: all 0.2s ease;
}

.pillar-card:hover {
	border-color: var(--border-gold);
	background: var(--bg-card-hover);
}

.pillar-title {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	color: var(--gold-light);
	margin-bottom: 0.35rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.pillar-desc {
	font-size: 0.8rem;
	color: var(--fg-muted);
	line-height: 1.45;
}

/* Barbers Section */
.barbers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
	gap: 2rem;
}

.barber-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
}

.barber-card:hover {
	transform: translateY(-5px);
	border-color: var(--border-gold);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), var(--gold-glow-subtle);
}

.barber-img-box {
	position: relative;
	height: 320px;
	overflow: hidden;
	background: #090a0d;
}

.barber-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.5s ease;
	filter: grayscale(20%) contrast(1.1);
}

.barber-card:hover .barber-img-box img {
	transform: scale(1.05);
	filter: grayscale(0%) contrast(1.15);
}

.barber-tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(14, 16, 22, 0.85);
	backdrop-filter: blur(8px);
	border: 1px solid var(--border-gold);
	color: var(--gold-light);
	font-size: 0.7rem;
	font-family: var(--font-heading);
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-full);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.barber-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}

.barber-name {
	font-size: 1.3rem;
	margin-bottom: 0.25rem;
}

.barber-role {
	font-size: 0.8rem;
	color: var(--gold-primary);
	font-family: var(--font-heading);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.barber-specialties {
	margin-bottom: 1.25rem;
}

.barber-spec-title {
	font-size: 0.725rem;
	color: var(--fg-muted);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.specialty-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.specialty-chip {
	font-size: 0.75rem;
	padding: 0.2rem 0.6rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-sm);
	color: var(--fg-secondary);
}

/* Gallery Section */
.gallery-filters {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

.filter-btn {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-subtle);
	color: var(--fg-secondary);
	padding: 0.5rem 1.15rem;
	border-radius: var(--radius-full);
	font-family: var(--font-heading);
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: all 0.2s ease;
}

.filter-btn:hover {
	border-color: var(--border-gold);
	color: var(--fg-primary);
}

.filter-btn.active {
	background: var(--gold-gradient);
	color: #090a0d;
	border-color: var(--gold-primary);
	font-weight: 700;
	box-shadow: var(--gold-glow-subtle);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(17rem, 100%), 1fr));
	gap: 1.25rem;
}

.gallery-item {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	height: 280px;
	border: 1px solid var(--border-subtle);
	cursor: pointer;
	background: #0d0f14;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(9, 10, 13, 0.9) 0%, rgba(9, 10, 13, 0.2) 60%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.25rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-title {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	color: #fff;
	margin-bottom: 0.25rem;
}

.gallery-category {
	font-size: 0.725rem;
	color: var(--gold-light);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Lightbox Modal */
.lightbox-backdrop {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(4, 5, 8, 0.94);
	backdrop-filter: blur(12px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	animation: fadeIn 0.25s ease forwards;
}

.lightbox-content {
	position: relative;
	max-width: 900px;
	max-height: 90vh;
	width: 100%;
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg-card);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--gold-glow);
}

.lightbox-img {
	width: 100%;
	max-height: 70vh;
	object-fit: contain;
	display: block;
	background: #000;
}

.lightbox-caption {
	padding: 1rem 1.5rem;
	background: var(--bg-surface);
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--border-subtle);
}

.lightbox-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(9, 10, 13, 0.8);
	border: 1px solid var(--border-gold);
	color: var(--gold-light);
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.2s ease;
}

.lightbox-close:hover {
	transform: scale(1.1);
	background: var(--gold-primary);
	color: #000;
}

/* Booking Section */
.booking-container {
	background: var(--bg-surface);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), var(--gold-glow-subtle);
	overflow: hidden;
}

.booking-split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
}

@media (max-width: 900px) {
	.booking-split {
		grid-template-columns: 1fr;
	}
}

.booking-form-wrap {
	padding: 2.5rem;
}

@media (max-width: 600px) {
	.booking-form-wrap {
		padding: 1.5rem;
	}
}

.booking-sidebar {
	background: linear-gradient(180deg, #151924 0%, #0d0f15 100%);
	border-left: 1px solid var(--border-subtle);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (max-width: 900px) {
	.booking-sidebar {
		border-left: none;
		border-top: 1px solid var(--border-subtle);
		padding: 1.75rem;
	}
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-label {
	display: block;
	font-size: 0.825rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--fg-secondary);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.form-input, .form-select, .form-textarea {
	width: 100%;
	background: var(--bg-card);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-sm);
	padding: 0.8rem 1rem;
	color: #fff;
	font-family: var(--font-body);
	font-size: 0.925rem;
	transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--gold-primary);
	box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
	background: #1a1e2a;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 500px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}

/* Time Slot Selection */
.slot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.slot-btn {
	background: var(--bg-card);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--fg-secondary);
	padding: 0.5rem 0.25rem;
	text-align: center;
	font-size: 0.775rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all 0.15s ease;
}

.slot-btn:hover {
	border-color: var(--gold-primary);
	color: #fff;
}

.slot-btn.selected {
	background: var(--gold-gradient);
	color: #090a0d;
	font-weight: 700;
	border-color: var(--gold-primary);
}

/* Live Booking Summary */
.summary-card {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.summary-title {
	font-family: var(--font-heading);
	font-size: 0.9rem;
	color: var(--gold-light);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	font-size: 0.85rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row:last-child {
	border-bottom: none;
}

.summary-label {
	color: var(--fg-muted);
}

.summary-val {
	color: var(--fg-primary);
	font-weight: 600;
}

.vip-perks-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	font-size: 0.8rem;
	color: var(--fg-secondary);
}

.vip-perk-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.vip-perk-item svg {
	color: var(--gold-primary);
	flex-shrink: 0;
}

/* Contact & Concierge Section */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
	gap: 1.5rem;
}

.contact-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transition: all 0.25s ease;
	position: relative;
	text-decoration: none;
	color: inherit;
}

.contact-card:hover {
	border-color: var(--border-gold);
	transform: translateY(-3px);
	background: var(--bg-card-hover);
}

.contact-icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: var(--radius-sm);
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--border-gold);
	color: var(--gold-primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-title {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	color: #fff;
}

.contact-value {
	font-size: 0.875rem;
	color: var(--fg-secondary);
	line-height: 1.5;
}

.contact-hint {
	font-size: 0.75rem;
	color: var(--gold-light);
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: auto;
}

/* Confirmation Modal */
.modal-backdrop {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(4, 5, 8, 0.88);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	animation: fadeIn 0.25s ease forwards;
}

.modal-card {
	background: var(--bg-card);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	max-width: 520px;
	width: 100%;
	padding: 2.5rem;
	text-align: center;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--gold-glow);
	position: relative;
}

.modal-icon-crown {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.15);
	border: 1px solid var(--gold-primary);
	color: var(--gold-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem auto;
}

.modal-code-chip {
	display: inline-block;
	background: rgba(212, 175, 55, 0.1);
	border: 1px dashed var(--gold-primary);
	color: var(--gold-light);
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	padding: 0.4rem 1.2rem;
	border-radius: var(--radius-sm);
	margin: 1.25rem 0;
	letter-spacing: 0.15em;
}

/* Owner Portal Drawer / Modal */
.owner-login-box {
	background: var(--bg-card);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-md);
	padding: 2rem;
	max-width: 420px;
	margin: 0 auto;
}

.owner-table-wrap {
	overflow-x: auto;
	margin-top: 1.5rem;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
}

.owner-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
}

.owner-table th {
	background: rgba(255, 255, 255, 0.04);
	padding: 0.75rem 1rem;
	text-align: left;
	font-family: var(--font-heading);
	color: var(--gold-light);
	border-bottom: 1px solid var(--border-subtle);
}

.owner-table td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	color: var(--fg-secondary);
}

/* Footer */
.vip-footer {
	background: #060709;
	border-top: 1px solid var(--border-gold);
	padding: 4rem 0 2rem 0;
	position: relative;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 2.5rem;
	margin-bottom: 3rem;
}

@media (max-width: 900px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

.footer-brand p {
	color: var(--fg-muted);
	font-size: 0.875rem;
	margin-top: 1rem;
	max-width: 22rem;
}

.footer-col-title {
	font-family: var(--font-heading);
	font-size: 0.9rem;
	color: var(--gold-light);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.footer-links a {
	color: var(--fg-secondary);
	text-decoration: none;
	font-size: 0.85rem;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: var(--gold-primary);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 1.75rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.775rem;
	color: var(--fg-muted);
}

/* Helper Animations */
@keyframes fadeIn {
	from { opacity: 0; transform: scale(0.97); }
	to { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
	animation: fadeIn 0.3s ease forwards;
}

/* Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.w-full { width: 100%; }
