:root {
	--vip-bg: #0a0a0a;
	--vip-panel: #111;
	--vip-red: #b91c1c;
	--vip-red2: #7f1d1d;
	--vip-gold: #ca8a04;
	--vip-text: #f5f5f5;
	--vip-muted: #a3a3a3;
	--vip-row-h: clamp(140px, 28vw, 220px);
}

*,
*::before,
*::after { box-sizing: border-box; }

body.esc-vip-space {
	margin: 0;
	background: var(--vip-bg);
	color: var(--vip-text);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	line-height: 1.4;
}

a { color: inherit; text-decoration: none; }

.vip-header {
	background: #000;
	border-bottom: 1px solid #222;
	position: sticky;
	top: 0;
	z-index: 50;
}
.vip-header__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
}
.vip-brand {
	font-weight: 800;
	letter-spacing: 0.12em;
	font-size: 1rem;
	text-transform: uppercase;
}
.vip-menu-btn,
.vip-nav a {
	background: none;
	border: 0;
	color: var(--vip-text);
	font-weight: 700;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
	cursor: pointer;
}
.vip-nav__list {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.vip-main { min-height: 60vh; }

.vip-cta-wrap {
	padding: 1rem;
	max-width: 1200px;
	margin: 0 auto;
}
.vip-cta {
	display: block;
	text-align: center;
	padding: 1rem 1.25rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #dc2626 0%, #7f1d1d 100%);
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.06em;
	font-size: clamp(0.8rem, 2.8vw, 1rem);
	box-shadow: 0 8px 24px rgba(185, 28, 28, 0.35);
}

.vip-footer {
	border-top: 1px solid #222;
	padding: 1.5rem 1rem;
	color: var(--vip-muted);
	font-size: 0.85rem;
}
.vip-footer__in { max-width: 1200px; margin: 0 auto; text-align: center; }

.vip-empty,
.vip-single {
	max-width: 900px;
	margin: 2rem auto;
	padding: 0 1rem;
}
.vip-single__gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 0.5rem;
	margin: 1rem 0;
}
.vip-single__gallery img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 6px;
}
