:root {
	--color-bg: #050505;
	--color-bg-soft: #0d0d0d;
	--color-card: #111111;
	--color-card-2: #181818;
	--color-gold: #d4af37;
	--color-gold-light: #f5d77a;
	--color-gold-dark: #9b7a18;
	--color-silver: #c0c0c0;
	--color-bronze: #b87333;
	--color-text: #f5f5f5;
	--color-muted: #a3a3a3;
	--color-border: rgba(212, 175, 55, 0.35);
	--font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-system);
	font-size: 16px;
	line-height: 1.6;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	content: "";
	background:
		linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px),
		linear-gradient(0deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px),
		var(--color-bg);
	background-size: 72px 72px;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3 {
	margin: 0 0 18px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(36px, 8vw, 72px);
}

h2 {
	font-size: clamp(30px, 5vw, 52px);
}

h3 {
	font-size: 24px;
}

p {
	margin: 0 0 18px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
}

.container--narrow {
	width: min(100% - 32px, 820px);
}

.section {
	padding: 72px 0;
}

.section--soft {
	background: rgba(13, 13, 13, 0.84);
	border-top: 1px solid rgba(212, 175, 55, 0.12);
	border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.section-head {
	max-width: 760px;
	margin-bottom: 34px;
}

.section-head--row {
	display: flex;
	gap: 24px;
	align-items: end;
	justify-content: space-between;
	max-width: none;
}

.eyebrow {
	color: var(--color-gold-light);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.lead,
.hero__lead {
	max-width: 680px;
	color: var(--color-muted);
	font-size: 18px;
}

.muted {
	color: var(--color-muted);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(5, 5, 5, 0.88);
	border-bottom: 1px solid rgba(212, 175, 55, 0.22);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: flex;
	min-height: 76px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
}

.site-brand__mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	color: #050505;
	background: var(--color-gold);
	border-radius: 50%;
}

.site-brand__name {
	color: var(--color-gold-light);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.site-nav__menu {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	color: var(--color-muted);
	font-weight: 700;
}

.site-nav a {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	padding: 8px 12px;
	border: 1px solid transparent;
	border-radius: 999px;
	transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
	color: var(--color-gold-light);
}

.site-nav a:hover {
	background: rgba(212, 175, 55, 0.08);
	border-color: rgba(212, 175, 55, 0.22);
}

.site-nav__cta a {
	color: #050505;
	background: var(--color-gold);
	border-color: var(--color-gold);
}

.site-nav__cta a:hover {
	color: #050505;
	background: var(--color-gold-light);
}

.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
	color: var(--color-gold-light);
	background: rgba(212, 175, 55, 0.1);
	border-color: rgba(212, 175, 55, 0.28);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--color-border);
	border-radius: 4px;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 6px auto;
	background: var(--color-gold);
}

.hero {
	min-height: 690px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(212, 175, 55, 0.18);
	background:
		linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.88) 46%, rgba(5, 5, 5, 0.38) 100%),
		linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(192, 192, 192, 0.08) 42%, rgba(184, 115, 51, 0.12));
}

.hero__inner {
	padding: 84px 0;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: 680px;
	margin-top: 34px;
}

.hero-stats div {
	padding: 16px;
	background: rgba(17, 17, 17, 0.76);
	border: 1px solid rgba(212, 175, 55, 0.24);
	border-radius: 8px;
}

.hero-stats strong,
.hero-stats span {
	display: block;
}

.hero-stats strong {
	color: var(--color-gold-light);
	font-size: 28px;
	line-height: 1;
}

.hero-stats span {
	margin-top: 8px;
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.button,
button.button {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	color: var(--color-text);
	font-weight: 800;
	background: transparent;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	cursor: pointer;
	transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
	color: var(--color-gold-light);
	border-color: var(--color-gold);
	transform: translateY(-1px);
}

.button--gold {
	color: #050505;
	background: var(--color-gold);
	border-color: var(--color-gold);
}

.button--gold:hover {
	color: #050505;
	background: var(--color-gold-light);
}

.action-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 28px;
}

.button--full {
	width: 100%;
}

.category-grid,
.partner-grid,
.card-grid,
.steps-grid,
.post-grid {
	display: grid;
	gap: 18px;
}

.category-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-grid,
.post-grid {
	grid-template-columns: 1fr;
}

.card-grid,
.steps-grid {
	grid-template-columns: 1fr;
}

.category-tile,
.content-card,
.step-card,
.membership-card,
.partner-card,
.privilege-panel,
.filters,
.bpc-qr {
	background: linear-gradient(180deg, var(--color-card), var(--color-card-2));
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.category-tile {
	min-height: 92px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 18px;
	color: var(--color-text);
	font-weight: 800;
	transition: border-color 180ms ease, transform 180ms ease;
}

.category-tile small {
	display: block;
	margin-top: 6px;
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 700;
}

.category-tile:hover,
.partner-card:hover,
.membership-card:hover {
	border-color: var(--color-gold);
	transform: translateY(-2px);
}

.partner-card {
	overflow: hidden;
	transition: border-color 180ms ease, transform 180ms ease;
}

.partner-card__media {
	display: grid;
	aspect-ratio: 16 / 10;
	place-items: center;
	background: #090909;
	color: var(--color-gold-light);
	font-size: 28px;
	font-weight: 900;
}

.partner-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.partner-card__body,
.content-card,
.step-card,
.membership-card,
.privilege-panel {
	padding: 22px;
}

.partner-card__top {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.bpc-badge {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	border-radius: 999px;
}

.bpc-badge--gold {
	color: #050505;
	background: var(--color-gold);
}

.bpc-badge--dark {
	color: var(--color-silver);
	background: #050505;
	border: 1px solid rgba(192, 192, 192, 0.32);
}

.text-link {
	color: var(--color-gold);
	font-weight: 900;
}

.step-card span {
	display: inline-block;
	margin-bottom: 18px;
	color: var(--color-gold);
	font-size: 13px;
	font-weight: 900;
}

.membership-card__price {
	color: var(--color-gold-light);
	font-size: 24px;
	font-weight: 900;
}

.page-membership-choices {
	margin-top: 28px;
}

.membership-offer {
	display: grid;
	gap: 28px;
	align-items: center;
	padding: 28px;
	background: linear-gradient(180deg, var(--color-card), var(--color-card-2));
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.membership-offer__panel {
	display: grid;
	gap: 18px;
	padding: 22px;
	background: #080808;
	border: 1px solid rgba(212, 175, 55, 0.28);
	border-radius: 8px;
}

.offer-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--color-text);
	font-size: 20px;
	font-weight: 900;
}

.membership-single-grid {
	display: grid;
	gap: 24px;
	max-width: 520px;
	margin-top: 34px;
}

.page-membership-choices .membership-single-grid {
	max-width: 720px;
	margin-top: 0;
}

.membership-card__visual {
	margin: 0 0 22px;
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.35);
	border-radius: 12px;
	background: #050505;
}

.membership-card__visual img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1009 / 636;
	object-fit: cover;
}

.membership-card--primary {
	border-color: rgba(212, 175, 55, 0.72);
}

.membership-card--bronze {
	border-color: rgba(184, 115, 51, 0.62);
}

.membership-card--silver {
	border-color: rgba(192, 192, 192, 0.58);
}

.membership-card--gold {
	border-color: rgba(212, 175, 55, 0.72);
}

.membership-card--black {
	border-color: rgba(245, 215, 122, 0.45);
	background: #080808;
}

.split,
.partner-hero__grid,
.partner-detail {
	display: grid;
	gap: 30px;
}

.feature-list {
	color: var(--color-muted);
	font-size: 18px;
}

.archive-head {
	max-width: 780px;
	margin-bottom: 34px;
}

.filters {
	display: grid;
	gap: 14px;
	margin-bottom: 32px;
	padding: 18px;
}

.filters label {
	display: grid;
	gap: 8px;
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.filters select,
.search-field,
input[type="search"] {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	color: var(--color-text);
	background: #070707;
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 4px;
}

.bpc-order-form-wrap {
	margin-top: 28px;
}

.bpc-order-form {
	display: grid;
	gap: 16px;
	margin-top: 18px;
}

.bpc-order-form label {
	display: grid;
	gap: 8px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.bpc-order-form input,
.bpc-order-form select,
.bpc-order-form textarea {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	color: var(--color-text);
	background: #070707;
	border: 1px solid rgba(212, 175, 55, 0.62);
	border-radius: 12px;
}

.bpc-order-form textarea {
	min-height: 112px;
	resize: vertical;
}

.bpc-selected-card,
.bpc-form-message {
	padding: 14px 16px;
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 8px;
}

.bpc-selected-card span,
.bpc-selected-card strong {
	display: block;
}

.bpc-selected-card span {
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.bpc-selected-card strong {
	margin-top: 4px;
	color: var(--color-gold-light);
}

.bpc-form-message--success {
	color: #dff5da;
	background: rgba(76, 175, 80, 0.15);
}

.bpc-form-message--error {
	color: #ffd7d7;
	background: rgba(180, 30, 30, 0.16);
}

.partner-meta-line {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: var(--color-muted);
}

.partner-hero__lead {
	margin-top: 18px;
}

.partner-cover {
	margin: 0 0 28px;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.info-grid {
	display: grid;
	gap: 14px;
	margin: 28px 0;
}

.info-grid div {
	padding: 16px;
	background: var(--color-card);
	border: 1px solid rgba(212, 175, 55, 0.18);
	border-radius: 8px;
}

.info-grid strong,
.info-grid span,
.info-grid a {
	display: block;
}

.info-grid strong {
	color: var(--color-gold-light);
}

.info-grid a,
.contact-card__item strong {
	color: var(--color-text);
}

.contact-card__item--muted strong {
	color: var(--color-muted);
}

.rich-text {
	color: var(--color-text);
	font-size: 18px;
}

.privilege-details {
	margin: 30px 0;
}

.contact-card {
	display: grid;
	gap: 12px;
}

.contact-card h2 {
	margin-bottom: 4px;
	font-size: 28px;
}

.contact-card__item {
	display: grid;
	gap: 4px;
	padding: 14px;
	background: #080808;
	border: 1px solid rgba(212, 175, 55, 0.18);
	border-radius: 8px;
}

.contact-card__item span {
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.bpc-map iframe {
	width: 100%;
	min-height: 560px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.bpc-directory-map {
	margin: 24px 0 34px;
	overflow: hidden;
	background: linear-gradient(180deg, var(--color-card), var(--color-card-2));
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.bpc-directory-map__head {
	display: flex;
	gap: 18px;
	align-items: end;
	justify-content: space-between;
	padding: 22px;
}

.bpc-directory-map__head h2 {
	margin-bottom: 0;
	font-size: 30px;
}

.bpc-directory-map__head p:last-child {
	max-width: 240px;
	margin: 0;
	color: var(--color-muted);
	font-weight: 800;
	text-align: right;
}

.bpc-directory-map__canvas {
	width: 100%;
	min-height: 520px;
	background: #090909;
	border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.bpc-single-map .bpc-directory-map__canvas,
.bpc-single-map .bpc-directory-map__placeholder {
	min-height: min(72vh, 760px);
}

.partner-hero-map {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.partner-hero-map__canvas,
.partner-hero-map__shade {
	position: absolute;
	inset: 0;
}

.partner-hero-map__canvas {
	background: #111;
}

.partner-hero-map__shade {
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.58) 52%, rgba(5, 5, 5, 0.72)),
		linear-gradient(180deg, rgba(5, 5, 5, 0.52), rgba(5, 5, 5, 0.82));
}

.bpc-directory-map__placeholder {
	display: grid;
	min-height: 520px;
	place-items: center;
	align-content: center;
	gap: 12px;
	padding: 28px;
	text-align: center;
	background:
		linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px),
		linear-gradient(0deg, rgba(56, 215, 195, 0.04) 1px, transparent 1px),
		linear-gradient(135deg, rgba(18, 52, 47, 0.92), rgba(9, 9, 9, 0.94));
	background-size: 64px 64px, 64px 64px, auto;
}

.bpc-directory-map__placeholder strong {
	color: var(--color-gold-light);
	font-size: 24px;
}

.bpc-directory-map__placeholder p {
	max-width: 520px;
	margin: 0;
	color: var(--color-muted);
}

.bpc-directory-map__setup {
	display: grid;
	gap: 8px;
	padding: 24px;
	color: var(--color-muted);
	background: rgba(212, 175, 55, 0.07);
	border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.bpc-directory-map__setup strong {
	color: var(--color-gold-light);
}

.bpc-directory-map__setup p {
	margin: 0;
}

.bpc-map-card {
	max-width: 250px;
	color: #111111;
	font-family: var(--font-system);
	line-height: 1.45;
}

.bpc-map-card span {
	display: inline-flex;
	margin-bottom: 8px;
	padding: 4px 8px;
	color: #050505;
	background: #d4af37;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.bpc-map-card strong {
	display: block;
	margin-bottom: 6px;
	font-size: 17px;
	line-height: 1.2;
}

.bpc-map-card p {
	margin: 0 0 10px;
	color: #3a3a3a;
	font-size: 13px;
}

.bpc-map-card div {
	display: flex;
	gap: 8px;
}

.bpc-map-card a {
	color: #111111;
	font-size: 12px;
	font-weight: 900;
	text-decoration: underline;
}

.bpc-qr {
	display: grid;
	min-height: 220px;
	place-items: center;
	padding: 24px;
	text-align: center;
}

.bpc-qr span {
	color: var(--color-gold-light);
	font-weight: 900;
}

.bpc-qr small {
	color: var(--color-muted);
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-list details {
	background: var(--color-card);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 8px;
}

.faq-list summary {
	padding: 18px;
	color: var(--color-text);
	font-weight: 900;
	cursor: pointer;
}

.faq-list details div {
	padding: 0 18px 18px;
	color: var(--color-muted);
}

.bpc-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
	color: var(--color-muted);
	font-size: 14px;
}

.entry-content a {
	color: var(--color-gold-light);
}

.final-cta__inner {
	padding: 44px 0;
	text-align: center;
}

.site-footer {
	position: relative;
	padding: 70px 0 28px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(3, 3, 3, 0.88) 46%, #030303),
		linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.62)),
		url("../images/ai-footer-night-lounge.jpg") center / cover no-repeat;
	border-top: 1px solid rgba(212, 175, 55, 0.26);
}

.site-footer::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background:
		linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px),
		linear-gradient(0deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
	background-size: 84px 84px;
	mask-image: linear-gradient(180deg, #000, transparent 72%);
}

.site-footer > .container {
	position: relative;
	z-index: 1;
}

.site-footer__top {
	display: grid;
	gap: 22px;
	margin-bottom: 42px;
}

.site-footer__club,
.site-footer__join,
.site-footer__contact {
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.94), rgba(10, 10, 10, 0.96));
	border: 1px solid rgba(212, 175, 55, 0.24);
	border-radius: 8px;
}

.site-footer__club,
.site-footer__join {
	padding: 24px;
}

.site-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	color: var(--color-gold-light);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.site-footer__mark {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	color: #050505;
	background: var(--color-gold);
	border: 1px solid rgba(245, 215, 122, 0.72);
	border-radius: 50%;
	box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.08);
}

.site-footer__lead {
	max-width: 560px;
	color: var(--color-muted);
	font-size: 18px;
}

.site-footer__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.site-footer__stats span {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	padding: 8px 12px;
	color: var(--color-gold-light);
	background: rgba(212, 175, 55, 0.08);
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.site-footer__join h2 {
	max-width: 520px;
	font-size: clamp(30px, 4vw, 48px);
}

.site-footer__join p,
.site-footer__contact p {
	color: var(--color-muted);
}

.site-footer__grid {
	display: grid;
	gap: 18px;
	padding: 28px 0;
	border-top: 1px solid rgba(212, 175, 55, 0.16);
	border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.site-footer__nav h3,
.site-footer__contact h3 {
	margin-bottom: 14px;
	color: var(--color-gold-light);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.site-footer__menu {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer a {
	color: var(--color-muted);
	font-weight: 800;
	transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-footer__menu a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.site-footer__menu a::before {
	width: 7px;
	height: 7px;
	content: "";
	background: var(--color-gold);
	border-radius: 50%;
	box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.site-footer__menu a:hover {
	transform: translateX(2px);
}

.site-footer__contact {
	padding: 20px;
}

.site-footer__social {
	display: grid;
	gap: 2px;
	margin-top: 16px;
	padding: 14px;
	color: var(--color-text);
	background: rgba(212, 175, 55, 0.08);
	border: 1px solid rgba(212, 175, 55, 0.26);
	border-radius: 8px;
}

.site-footer__social span {
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.site-footer__social strong {
	color: var(--color-gold-light);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	align-items: center;
	justify-content: space-between;
	padding-top: 22px;
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.hero-stats {
		grid-template-columns: 1fr;
	}

	body.nav-open {
		overflow: hidden;
	}

	.nav-toggle {
		display: block;
		position: relative;
		z-index: 42;
	}

	.site-nav {
		position: fixed;
		top: 76px;
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		padding: 22px 16px 32px;
		background:
			linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.94)),
			var(--color-bg);
		border-top: 1px solid var(--color-border);
		overflow-y: auto;
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__menu {
		display: grid;
		gap: 10px;
	}

	.site-nav a {
		min-height: 58px;
		justify-content: space-between;
		padding: 14px 16px;
		color: var(--color-text);
		background: linear-gradient(180deg, var(--color-card), var(--color-card-2));
		border-color: rgba(212, 175, 55, 0.18);
		border-radius: 8px;
		font-size: 18px;
	}

	.site-nav a::after {
		content: "\2192";
		color: var(--color-gold);
	}

	.site-nav__cta a {
		justify-content: center;
		margin-top: 8px;
		color: #050505;
		background: var(--color-gold);
		border-color: var(--color-gold);
	}

	.site-nav__cta a::after {
		content: "";
	}

	.section-head--row {
		display: block;
	}
}

@media (min-width: 700px) {
	body {
		font-size: 17px;
	}

	.category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.partner-grid,
	.post-grid,
	.card-grid,
	.steps-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.filters {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: end;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 699px) {
	.bpc-directory-map__head {
		display: grid;
	}

	.bpc-directory-map__head p:last-child {
		max-width: none;
		text-align: left;
	}

	.bpc-directory-map__canvas {
		min-height: 420px;
	}
}

@media (min-width: 768px) {
	.site-nav {
		padding: 5px;
		background: rgba(17, 17, 17, 0.62);
		border: 1px solid rgba(212, 175, 55, 0.14);
		border-radius: 999px;
		box-shadow: inset 0 1px 0 rgba(245, 215, 122, 0.08);
	}
}

@media (min-width: 1024px) {
	.section {
		padding: 104px 0;
	}

	.category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.partner-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.card-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.steps-grid,
	.post-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.split,
	.partner-hero__grid,
	.partner-detail {
		grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
		align-items: start;
	}

	.membership-offer {
		grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.7fr);
		padding: 44px;
	}

	.filters {
		grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	}

	.site-footer__top {
		grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
		align-items: stretch;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr 1fr minmax(260px, 1.1fr);
	}
}

/* Lifestyle redesign layer. */
body {
	background: #050505;
	color: #fff8ea;
}

body::after {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	content: "";
	opacity: 0.08;
	background-image: radial-gradient(#fff 1px, transparent 1px);
	background-size: 3px 3px;
	mix-blend-mode: overlay;
}

.site-header {
	background: rgba(3, 3, 3, 0.76);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	min-height: 76px;
}

.header-tools {
	display: none;
	gap: 10px;
	align-items: center;
}

.header-whatsapp,
.lang-switcher a {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	color: var(--color-text);
	font-size: 13px;
	font-weight: 900;
	border: 1px solid rgba(212, 175, 55, 0.24);
	border-radius: 999px;
}

.header-whatsapp {
	color: #061109;
	background: #35d46f;
	border-color: transparent;
}

.lang-switcher {
	display: inline-flex;
	padding: 3px;
	background: rgba(17, 17, 17, 0.78);
	border: 1px solid rgba(212, 175, 55, 0.18);
	border-radius: 999px;
}

.lang-switcher a {
	min-height: 32px;
	padding: 6px 9px;
	color: var(--color-muted);
	border-color: transparent;
}

.lang-switcher a.is-active {
	color: #050505;
	background: var(--color-gold);
}

.hero {
	position: relative;
	min-height: 820px;
	padding-top: 76px;
	background:
		linear-gradient(90deg, #030303 0%, rgba(3, 3, 3, 0.76) 36%, rgba(3, 3, 3, 0.16) 100%),
		url("../images/ai-hero-bali-club.jpg") center / cover no-repeat;
}

.hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 220px;
	content: "";
	background: linear-gradient(transparent, #050505);
}

.hero__inner {
	position: relative;
	z-index: 1;
	min-height: 744px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.hero h1 {
	max-width: 820px;
	margin: 24px 0 18px;
	font-size: clamp(58px, 11vw, 142px);
	line-height: 0.86;
	letter-spacing: 0;
	text-transform: uppercase;
	background: linear-gradient(180deg, #fff6c5 0%, #d1a732 55%, #735415 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__lead {
	max-width: 560px;
	color: #dad4c4;
	font-size: 19px;
}

.hero-stats {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	max-width: 820px;
	margin-top: 54px;
}

.hero-stats div {
	background: rgba(10, 10, 9, 0.72);
	border-color: rgba(217, 184, 74, 0.34);
	backdrop-filter: blur(12px);
}

.button--whatsapp {
	color: #061109;
	background: #35d46f;
	border-color: #35d46f;
}

.button--whatsapp:hover {
	color: #061109;
	background: #5af08f;
	border-color: #5af08f;
}

.section-head--center {
	max-width: 820px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.section--categories,
.section--partners {
	background:
		linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.82)),
		linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.56)),
		url("../images/ai-categories-lifestyle.jpg") center / cover fixed,
		linear-gradient(rgba(217, 184, 74, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(217, 184, 74, 0.055) 1px, transparent 1px);
	background-size: auto, auto, cover, 84px 84px, 84px 84px;
}

.section-head h2 {
	font-size: clamp(34px, 5vw, 58px);
	line-height: 0.98;
}

.category-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.category-tile {
	min-height: 122px;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(180deg, #151514, #0b0b0b);
	border-color: rgba(217, 184, 74, 0.34);
	border-radius: 12px;
}

.category-tile img {
	width: 38px;
	height: 38px;
	object-fit: contain;
	margin-bottom: 10px;
}

.category-tile:hover {
	background: linear-gradient(180deg, rgba(217, 184, 74, 0.16), #0b0b0b);
	transform: translateY(-4px);
}

.partner-grid {
	gap: 22px;
}

.partner-card {
	background: linear-gradient(180deg, #171716, #080808);
	border-color: rgba(217, 184, 74, 0.34);
	border-radius: 14px;
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.partner-card__media {
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18)),
		url("../images/bpc_collage_reference.jpg") center / cover no-repeat;
}

.partner-card__media span {
	display: grid;
	width: 74px;
	height: 74px;
	place-items: center;
	color: #050505;
	background: rgba(245, 215, 122, 0.92);
	border-radius: 50%;
}

.partner-card__body h2 {
	font-size: 22px;
}

.membership-lifestyle {
	background:
		linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.65) 48%, rgba(5, 5, 5, 0.12)),
		url("../images/ai-membership-card-cta.jpg") center / cover no-repeat;
}

.membership-offer {
	background: rgba(10, 10, 9, 0.72);
	backdrop-filter: blur(14px);
}

.moments-section {
	background:
		linear-gradient(180deg, #050505, rgba(5, 5, 5, 0.86)),
		url("../images/moments-strip.jpg") center / cover fixed;
}

.moment-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.moment-grid div {
	min-height: 140px;
	background: url("../images/bpc_collage_reference.jpg") center / cover no-repeat;
	border: 1px solid rgba(217, 184, 74, 0.34);
	border-radius: 13px;
}

.moment-grid div:nth-child(2) {
	background-position: 20% 70%;
}

.moment-grid div:nth-child(3) {
	background-position: 80% 20%;
}

.moment-grid div:nth-child(4) {
	background-position: 90% 80%;
}

.moment-grid div:nth-child(5) {
	background-position: 10% 35%;
}

.moment-grid div:nth-child(6) {
	background-position: 60% 90%;
}

.final-cta {
	background:
		linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.72) 54%, rgba(5, 5, 5, 0.2)),
		url("../images/ai-footer-night-lounge.jpg") center / cover no-repeat;
}

@media (max-width: 767px) {
	.header-tools {
		position: fixed;
		right: 16px;
		bottom: 16px;
		z-index: 45;
		display: flex;
	}

	.site-brand__name {
		max-width: 156px;
		font-size: 12px;
		line-height: 1.2;
	}

	.hero {
		min-height: 760px;
	}

	.hero h1 {
		font-size: clamp(52px, 18vw, 76px);
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

@media (min-width: 768px) {
	.header-tools {
		display: flex;
	}
}

@media (min-width: 900px) {
	.category-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.partner-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.moment-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

/* Breezie-inspired BPC redesign. */
:root {
	--bpc-cream: #edeae5;
	--bpc-ivory: #fff8ea;
	--bpc-heading: #343935;
	--bpc-accent: #c5a56f;
	--bpc-accent-light: #e8cf9a;
	--bpc-ink: #080807;
	--font-serif: Georgia, "Times New Roman", serif;
	--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
	color: rgba(52, 57, 53, 0.78);
	background: var(--bpc-cream);
	font-family: var(--font-sans);
	font-size: 18px;
}

body::before {
	background:
		linear-gradient(90deg, rgba(197, 165, 111, 0.08) 1px, transparent 1px),
		linear-gradient(0deg, rgba(197, 165, 111, 0.08) 1px, transparent 1px),
		var(--bpc-cream);
	background-size: 86px 86px;
}

h1,
h2,
h3,
.site-footer__brand,
.partner-card__phone a,
.partner-card__phone strong,
.partner-hero__phone a,
.partner-hero__phone strong {
	font-family: var(--font-serif);
	font-weight: 600;
	letter-spacing: 0;
}

h1,
h2,
h3 {
	color: var(--bpc-heading);
}

.site-header {
	background: rgba(8, 8, 7, 0.72);
	border-bottom-color: rgba(197, 165, 111, 0.46);
}

.site-brand__mark {
	width: 48px;
	height: 48px;
	background: var(--bpc-accent);
	font-family: var(--font-serif);
	font-size: 18px;
}

.site-brand__name {
	color: var(--bpc-ivory);
	font-size: 13px;
	letter-spacing: 0.16em;
}

.site-nav {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.site-nav a {
	color: rgba(255, 248, 234, 0.84);
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
	color: var(--bpc-accent-light);
	background: transparent;
	border-color: transparent;
}

.site-nav__cta a,
.button--gold,
.header-whatsapp {
	color: #fff;
	background: var(--bpc-heading);
	border-color: var(--bpc-accent);
	border-radius: 0;
}

.button,
button.button {
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hero {
	min-height: 880px;
	background:
		linear-gradient(180deg, rgba(8, 8, 7, 0.35), rgba(8, 8, 7, 0.55)),
		linear-gradient(90deg, rgba(8, 8, 7, 0.72), rgba(8, 8, 7, 0.18)),
		url("../images/bpc-breezie-hero.jpg") center / cover fixed no-repeat;
}

.hero h1 {
	max-width: 980px;
	color: var(--bpc-ivory);
	background: none;
	font-size: clamp(58px, 10vw, 150px);
	line-height: 0.9;
	text-align: left;
	text-transform: uppercase;
}

.hero__lead,
.lead {
	color: rgba(255, 248, 234, 0.84);
}

.eyebrow {
	color: var(--bpc-accent-light);
	font-size: 13px;
	letter-spacing: 0.34em;
}

.hero-stats div {
	background: rgba(237, 234, 229, 0.92);
	border-color: var(--bpc-accent);
	backdrop-filter: blur(12px);
}

.hero-stats strong {
	color: var(--bpc-heading);
	font-family: var(--font-serif);
}

.hero-stats span {
	color: rgba(52, 57, 53, 0.72);
}

.section {
	background: var(--bpc-cream);
	border-bottom-color: rgba(52, 57, 53, 0.16);
}

.section--categories,
.section--partners,
.bpc-page-hero {
	background:
		linear-gradient(180deg, rgba(8, 8, 7, 0.86), rgba(8, 8, 7, 0.82)),
		url("../images/bpc-breezie-directory.jpg") center / cover fixed no-repeat;
}

.section--categories h2,
.section--partners h2,
.bpc-page-hero h1,
.bpc-page-hero h2,
.section--categories .section-head h2,
.section--partners .section-head h2 {
	color: var(--bpc-ivory);
}

.section--categories .lead,
.section--partners .lead {
	color: rgba(255, 248, 234, 0.78);
}

.category-tile,
.partner-card,
.content-card,
.step-card,
.membership-card,
.privilege-panel,
.filters,
.bpc-qr,
.membership-offer {
	background: #fff;
	border: 1px solid rgba(197, 165, 111, 0.62);
	border-radius: 0;
	box-shadow: 0 24px 70px rgba(52, 57, 53, 0.12);
}

.category-tile {
	color: var(--bpc-heading);
}

.category-tile:hover,
.partner-card:hover,
.membership-card:hover {
	border-color: var(--bpc-heading);
	transform: translateY(-5px);
}

.partner-card {
	overflow: hidden;
}

.partner-card__media {
	aspect-ratio: 1 / 0.78;
	background:
		linear-gradient(180deg, rgba(8, 8, 7, 0.04), rgba(8, 8, 7, 0.18)),
		url("../images/bpc-breezie-directory.jpg") center / cover no-repeat;
}

.partner-card__body h2 {
	font-size: clamp(30px, 3vw, 44px);
	line-height: 1;
}

.partner-card__meta,
.partner-card__excerpt {
	color: rgba(52, 57, 53, 0.72);
}

.partner-card__phone {
	display: flex;
	gap: 12px;
	align-items: center;
	margin: 18px 0 12px;
	padding: 14px 0;
	border-top: 1px solid rgba(197, 165, 111, 0.34);
	border-bottom: 1px solid rgba(197, 165, 111, 0.34);
}

.partner-card__phone svg,
.partner-card__address svg,
.partner-socials svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.partner-card__phone a,
.partner-card__phone strong {
	color: var(--bpc-heading);
	font-size: 25px;
	line-height: 1.1;
}

.partner-card__address {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: rgba(52, 57, 53, 0.78);
	font-size: 14px;
	font-weight: 700;
}

.partner-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0;
}

.partner-socials a {
	display: inline-flex;
	min-width: 42px;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	color: var(--bpc-heading);
	background: var(--bpc-cream);
	border: 1px solid rgba(197, 165, 111, 0.55);
}

.partner-socials a:hover {
	color: #fff;
	background: var(--bpc-heading);
	border-color: var(--bpc-heading);
}

.partner-socials--wide a {
	gap: 8px;
	padding: 10px 14px;
	font-weight: 800;
}

.membership-lifestyle,
.final-cta,
.site-footer {
	background:
		linear-gradient(180deg, rgba(8, 8, 7, 0.76), rgba(8, 8, 7, 0.88)),
		url("../images/bpc-breezie-footer.jpg") center / cover fixed no-repeat;
}

.membership-offer {
	background: rgba(255, 255, 255, 0.94);
}

.membership-offer h2,
.final-cta h2 {
	color: var(--bpc-heading);
}

.final-cta h2,
.final-cta .eyebrow {
	color: var(--bpc-ivory);
}

.site-footer__club,
.site-footer__join,
.site-footer__contact {
	background: rgba(237, 234, 229, 0.95);
	border-radius: 0;
}

.site-footer h2,
.site-footer h3,
.site-footer__brand {
	color: var(--bpc-heading);
}

.site-footer a,
.site-footer__lead,
.site-footer__join p,
.site-footer__contact p,
.site-footer__bottom {
	color: rgba(52, 57, 53, 0.78);
}

.partner-hero__phone {
	display: grid;
	gap: 6px;
	margin-top: 22px;
}

.partner-hero__phone span {
	color: var(--bpc-accent-light);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.partner-hero__phone a,
.partner-hero__phone strong {
	color: var(--bpc-ivory);
	font-size: clamp(30px, 4vw, 54px);
	line-height: 1;
}

.contact-card__item--phone strong {
	font-size: clamp(28px, 4vw, 46px);
}

.rich-text {
	color: rgba(52, 57, 53, 0.82);
	font-size: 20px;
}

.info-grid div {
	background: #fff;
	border-radius: 0;
}

@media (max-width: 767px) {
	.hero {
		min-height: 780px;
		background-attachment: scroll;
	}

	.section--categories,
	.section--partners,
	.bpc-page-hero,
	.membership-lifestyle,
	.final-cta,
	.site-footer {
		background-attachment: scroll;
	}

	.partner-card__phone a,
	.partner-card__phone strong {
		font-size: 22px;
	}
}
