:root {
	--ink: #12151a;
	--muted: #667085;
	--line: #d9dee8;
	--paper: #f7f8fb;
	--white: #ffffff;
	--gold: #b88a35;
	--gold-light: #f7d774;
	--green: #1f5e52;
	--steel: #243044;
	--shadow-soft: 0 18px 50px rgba(18, 21, 26, 0.06);
	--shadow-lift: 0 26px 70px rgba(18, 21, 26, 0.14);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, Arial, sans-serif;
	line-height: 1.6;
}

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

a {
	color: inherit;
	text-underline-offset: 0.2em;
	transition: color 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(184, 138, 53, 0.42);
	outline-offset: 3px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 99;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(18, 21, 26, 0.08);
	box-shadow: 0 14px 40px rgba(18, 21, 26, 0.08);
	backdrop-filter: blur(20px);
	transition: top 0.2s var(--ease);
}

body.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

.header-top {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 8px clamp(20px, 5vw, 72px);
	background: linear-gradient(90deg, var(--ink), #263247);
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.header-top a {
	color: var(--gold);
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0;
}

.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 78px;
	padding: 14px clamp(20px, 4vw, 64px);
}

.nav-wrap {
	display: flex;
	align-items: center;
	gap: 22px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	min-width: max-content;
	text-decoration: none;
	transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
}

.brand:hover {
	transform: translateY(-1px);
}

.brand img {
	width: auto;
	height: 52px;
	max-height: 52px;
	object-fit: contain;
	display: block;
	flex-shrink: 0;
	transition: transform 0.28s var(--ease), filter 0.28s var(--ease);
}

.brand:hover img {
	filter: drop-shadow(0 8px 18px rgba(31, 94, 82, 0.24));
	transform: scale(1.04);
}

.brand-text {
	color: var(--ink);
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	white-space: nowrap;
}

.brand-accent {
	background: linear-gradient(135deg, #b88a35 0%, #d4a753 50%, #966f24 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
	letter-spacing: -0.01em;
}

.menu {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 15px;
	border-radius: 999px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: background 0.22s var(--ease), color 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.menu a:hover {
	background: rgba(184, 138, 53, 0.1);
	color: var(--gold);
	box-shadow: inset 0 0 0 1px rgba(184, 138, 53, 0.22);
	transform: translateY(-2px);
}

.menu a.active,
.menu .current-menu-item > a,
.menu .current-page-ancestor > a {
	background: linear-gradient(135deg, var(--green) 0%, #15423a 100%) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 14px rgba(31, 94, 82, 0.28) !important;
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	background: linear-gradient(135deg, #c99a44, #f1d38a);
	color: var(--ink);
	border: 1px solid rgba(129, 88, 24, 0.32);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(184, 138, 53, 0.24);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), filter 0.24s var(--ease);
}

.header-cta:hover,
.button:hover,
.contact-form button:hover,
.footer-button:hover {
	box-shadow: 0 18px 40px rgba(184, 138, 53, 0.32);
	filter: saturate(1.08);
	transform: translateY(-3px);
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 1px solid rgba(18, 21, 26, 0.16);
	border-radius: 999px;
	background: var(--white);
	padding: 10px 18px;
	color: var(--ink);
	font-weight: 800;
}

/* Home Main Hero Banner Redesign */
.hero {
	position: relative;
	min-height: 720px;
	display: flex;
	align-items: center;
	padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 72px);
	color: var(--white);
	overflow: hidden;
	background: #0b0e14;
}

.hero-media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.02);
	transition: transform 1.2s var(--ease);
}

.hero:hover .hero-media {
	transform: scale(1.05);
}

.hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(184, 138, 53, 0.22), transparent 45%),
		linear-gradient(90deg, #0b0e14 0%, rgba(11, 14, 20, 0.85) 45%, rgba(11, 14, 20, 0.4) 100%);
}

.hero-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.hero-content {
	max-width: 780px;
}

.hero h1 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 16px 0 20px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero p {
	font-size: clamp(15px, 1.8vw, 17px);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 32px;
	max-width: 720px;
}

.hero-floating-cards {
	display: flex;
	flex-direction: column;
	gap: 18px;
	align-items: flex-end;
}

.hero-stat-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 24px;
	background: rgba(18, 24, 35, 0.78);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(184, 138, 53, 0.35);
	border-radius: 16px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
	width: fit-content;
	min-width: 320px;
	transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.hero-stat-card.card-1 {
	transform: translateX(-30px);
}

.hero-stat-card.card-2 {
	transform: translateX(0);
}

.hero-stat-card.card-3 {
	transform: translateX(-20px);
}

.hero-stat-card:hover {
	transform: translateY(-4px) scale(1.02) !important;
	border-color: var(--gold-light);
	box-shadow: 0 20px 50px rgba(247, 215, 116, 0.25);
}

.stat-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.stat-card-icon.gold-glow {
	background: linear-gradient(135deg, var(--gold) 0%, #d4a753 100%);
	color: #12151a;
	box-shadow: 0 8px 20px rgba(184, 138, 53, 0.3);
}

.stat-card-icon.green-glow {
	background: linear-gradient(135deg, #1f5e52 0%, #15423a 100%);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(31, 94, 82, 0.3);
}

.hero-stat-card strong {
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 19px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.2;
}

.hero-stat-card span {
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gold-light);
}

@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
	}
	.hero-floating-cards {
		align-items: stretch;
	}
	.hero-stat-card {
		transform: none !important;
		width: 100%;
		min-width: unset;
	}
}

.button,
.contact-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin-top: 18px;
	padding: 0 22px;
	border: 0;
	background: var(--gold);
	color: #12151a !important;
	font-weight: 800;
	text-decoration: none;
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(184, 138, 53, 0.2);
	cursor: pointer;
	transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), filter 0.24s var(--ease);
}

.button:hover,
.button:focus,
.contact-form button:hover,
.contact-form button:focus {
	color: #12151a !important;
}

.section,
.split-section,
.profile-hero,
.contact-section,
.page-shell {
	padding: 88px clamp(20px, 6vw, 96px);
}

.section {
	position: relative;
}

.section::before {
	content: "";
	position: absolute;
	left: clamp(20px, 6vw, 96px);
	right: clamp(20px, 6vw, 96px);
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(184, 138, 53, 0.32), transparent);
	pointer-events: none;
}

.section-heading {
	max-width: 900px;
	margin-bottom: 40px;
}

.service-grid,
.deal-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.service-card,
.deal-card,
.contact-block {
	min-height: 250px;
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	box-shadow: var(--shadow-soft);
	transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease), background 0.28s var(--ease);
}

.service-card:hover,
.deal-card:hover,
.premium-card:hover,
.contact-block:hover,
.contact-person:hover,
.footer-contact-card:hover {
	border-color: rgba(184, 138, 53, 0.42);
	box-shadow: var(--shadow-lift);
	transform: translateY(-8px);
}

.service-card {
	overflow: hidden;
	padding: 0;
}

.service-card img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	transition: transform 0.7s var(--ease), filter 0.35s var(--ease);
}

.service-card:hover img {
	filter: saturate(1.08) contrast(1.04);
	transform: scale(1.07);
}

.service-card span,
.service-card h3,
.service-card p {
	margin-left: 24px;
	margin-right: 24px;
}

.service-card span {
	display: block;
	margin-top: 24px;
}

.service-card p {
	margin-bottom: 28px;
}

.service-card span,
.deal-card span,
.contact-block span,
.deal-card strong {
	color: var(--green);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.service-card p,
.deal-card p,
.contact-block p {
	color: var(--muted);
}

.split-section,
.profile-hero,
.contact-section {
	display: grid;
	grid-template-columns: 1fr 0.85fr;
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
	background: var(--white);
	position: relative;
	overflow: hidden;
}

.split-section::after,
.profile-hero::after,
.contact-section::after {
	content: "";
	position: absolute;
	right: -120px;
	top: -120px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(184, 138, 53, 0.12), transparent 70%);
	pointer-events: none;
}

.image-panel,
.profile-image {
	overflow: hidden;
	border-radius: 6px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease), border-color 0.32s var(--ease);
}

.image-panel img,
.profile-image img {
	width: 100%;
	height: 560px;
	object-fit: cover;
	transition: transform 0.8s var(--ease), filter 0.36s var(--ease);
}

.image-panel:hover,
.profile-image:hover {
	border-color: rgba(184, 138, 53, 0.42);
	box-shadow: var(--shadow-lift);
	transform: translateY(-6px);
}

.image-panel:hover img,
.profile-image:hover img {
	filter: saturate(1.08) contrast(1.04);
	transform: scale(1.055);
}

/* Page Hero Banner Redesign */
.page-hero {
	position: relative;
	padding: clamp(48px, 5.5vw, 68px) clamp(20px, 5vw, 72px);
	background:
		radial-gradient(circle at 85% 20%, rgba(184, 138, 53, 0.22), transparent 42%),
		radial-gradient(circle at 15% 80%, rgba(31, 94, 82, 0.18), transparent 45%),
		linear-gradient(135deg, #0b0e14 0%, #151d2a 50%, #0d1118 100%);
	color: var(--white);
	border-bottom: 1px solid rgba(184, 138, 53, 0.22);
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1), transparent 85%);
	pointer-events: none;
}

.page-hero::after {
	content: "";
	position: absolute;
	right: -40px;
	top: -40px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(184, 138, 53, 0.14) 0%, transparent 70%);
	pointer-events: none;
}

.page-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.page-hero-content {
	max-width: 760px;
}

.eyebrow-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 14px;
	background: rgba(247, 215, 116, 0.12);
	border: 1px solid rgba(247, 215, 116, 0.32);
	border-radius: 999px;
	color: var(--gold-light);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 16px;
}

.badge-dot {
	width: 6px;
	height: 6px;
	background: var(--gold-light);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--gold-light);
}

.page-hero h1 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(34px, 4.5vw, 54px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 0 0 14px;
}

.page-hero p {
	font-size: clamp(15px, 1.8vw, 17px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
	max-width: 680px;
}

.page-hero-graphic {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 130px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(184, 138, 53, 0.35);
	border-radius: 24px;
	backdrop-filter: blur(12px);
	flex-shrink: 0;
	transform: none;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-hero-graphic:hover {
	transform: translateY(-4px);
	border-color: rgba(184, 138, 53, 0.7);
	box-shadow: 0 24px 50px rgba(184, 138, 53, 0.35);
	cursor: pointer;
}

.page-hero-graphic img {
	width: 82px;
	height: auto;
	opacity: 1;
	filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
	transition: transform 0.3s var(--ease);
}

.deal-card {
	min-height: 310px;
	display: flex;
	flex-direction: column;
}

.premium-section {
	background: var(--paper);
}

.premium-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.premium-card {
	padding: 28px;
	background: var(--white);
	border-left: 4px solid var(--gold);
	border-radius: 6px;
	box-shadow: var(--shadow-soft);
	transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.premium-card p {
	color: var(--muted);
}

.deal-card strong {
	margin-top: auto;
}

.profile-hero.reverse {
	grid-template-columns: 0.85fr 1fr;
}

.profile-hero h2 {
	margin: 12px 0 20px;
	color: var(--green);
	font-family: Inter, Arial, sans-serif;
	font-size: 20px;
}

.text-link {
	display: inline-block;
	margin-top: 10px;
	color: var(--green);
	font-weight: 800;
	text-decoration-thickness: 2px;
}

.text-link:hover,
.contact-person a:hover,
.contact-block a:hover {
	color: var(--gold);
	transform: translateX(4px);
}

/* Contact Page Redesign */
.contact-page-section {
	padding: clamp(32px, 5vw, 64px) clamp(20px, 5vw, 72px);
	max-width: 1320px;
	margin: 0 auto;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	align-items: start;
}

.contact-info-column {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-cards-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-card {
	padding: 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(18, 21, 26, 0.04);
	transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}

.contact-card:hover {
	transform: translateY(-3px);
	border-color: rgba(184, 138, 53, 0.36);
	box-shadow: 0 16px 40px rgba(18, 21, 26, 0.08);
}

.contact-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(31, 94, 82, 0.08);
	color: var(--green);
	border-radius: 10px;
	margin-bottom: 14px;
}

.card-label {
	display: block;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--green);
	margin-bottom: 6px;
}

.card-text {
	font-size: 14px;
	line-height: 1.55;
	color: var(--ink);
	margin: 0;
	font-weight: 600;
}

.card-text a {
	color: var(--ink);
	text-decoration: none;
	transition: color 0.2s var(--ease);
}

.card-text a:hover {
	color: var(--gold);
}

.map-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(18, 21, 26, 0.04);
}

.map-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 20px;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
}

.map-header svg {
	color: var(--green);
	flex-shrink: 0;
}

.map-frame iframe {
	display: block;
	width: 100%;
}

.contact-form-column {
	height: 100%;
}

.contact-form-card {
	padding: 36px 32px;
	background: linear-gradient(145deg, #1d2636 0%, #12151a 100%);
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(18, 21, 26, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--white);
}

.contact-form-card h3 {
	margin: 0 0 6px;
	font-size: 24px;
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.02em;
}

.form-subtitle {
	margin: 0 0 24px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.5;
}

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

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 18px;
}

.form-group label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	color: var(--white);
	font-family: inherit;
	font-size: 14px;
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-group select {
	cursor: pointer;
}

.form-group select option {
	background: #12151a;
	color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--gold);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 0 0 3px rgba(184, 138, 53, 0.25);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.submit-btn {
	width: 100%;
	padding: 16px 24px;
	background: linear-gradient(135deg, var(--gold) 0%, #d4a753 100%);
	color: #12151a;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
	margin-top: 6px;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(184, 138, 53, 0.35);
	filter: brightness(1.08);
}

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

/* Advisor Directory Redesign */
.advisor-section {
	padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 72px);
	background: var(--paper);
}

.advisor-container {
	max-width: 1320px;
	margin: 0 auto;
}

.advisor-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 36px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
}

.section-tag {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 6px;
}

.advisor-header h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 800;
	color: var(--ink);
	margin: 0;
}

.advisor-count {
	font-size: 13px;
	font-weight: 700;
	color: var(--muted);
	background: var(--white);
	padding: 8px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(18, 21, 26, 0.04);
}

.advisor-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.advisor-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(18, 21, 26, 0.04);
	transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.advisor-card:hover {
	transform: translateY(-4px);
	border-color: rgba(184, 138, 53, 0.4);
	box-shadow: 0 18px 48px rgba(18, 21, 26, 0.09);
}

.advisor-card-top {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.advisor-avatar {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, #1f5e52 0%, #15423a 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 16px;
	letter-spacing: -0.02em;
	flex-shrink: 0;
	box-shadow: 0 8px 20px rgba(31, 94, 82, 0.22);
}

.advisor-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	overflow: hidden;
}

.advisor-meta h3 {
	font-family: Inter, Arial, sans-serif;
	font-size: 17px;
	font-weight: 800;
	color: var(--ink);
	margin: 0;
	line-height: 1.25;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.advisor-role {
	font-size: 12px;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 0.02em;
}

.advisor-card-bottom {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--paper);
}

.advisor-email-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 10px 14px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--ink);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.advisor-email-btn svg {
	color: var(--green);
	flex-shrink: 0;
}

.advisor-email-btn span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.advisor-email-btn:hover {
	background: rgba(31, 94, 82, 0.08);
	border-color: rgba(31, 94, 82, 0.3);
	color: var(--green);
}

@media (max-width: 1024px) {
	.advisor-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.advisor-grid {
		grid-template-columns: 1fr;
	}
	.advisor-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

/* Executive Profile Redesign */
.executive-profile-section {
	padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 72px);
	background: var(--paper);
}

.executive-profile-container {
	max-width: 1240px;
	margin: 0 auto;
}

.executive-profile-card {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(32px, 5vw, 56px);
	align-items: center;
	padding: clamp(32px, 5vw, 52px);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: 0 16px 50px rgba(18, 21, 26, 0.05);
}

.executive-portrait-col {
	position: relative;
}

.executive-portrait-frame {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 48px rgba(18, 21, 26, 0.12);
	border: 1px solid rgba(184, 138, 53, 0.28);
}

.executive-portrait-frame img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.4s var(--ease);
}

.executive-portrait-frame:hover img {
	transform: scale(1.03);
}

.portrait-badge {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: rgba(18, 21, 26, 0.88);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(247, 215, 116, 0.36);
	border-radius: 10px;
	color: var(--gold-light);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.bio-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 8px;
}

.bio-header h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(30px, 3.8vw, 44px);
	font-weight: 800;
	color: var(--ink);
	margin: 0 0 16px;
	line-height: 1.15;
}

.bio-text {
	font-size: 15px;
	line-height: 1.7;
	color: #475569;
	margin: 0 0 28px;
}

.executive-pillars {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
	padding: 20px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 12px;
}

.pillar-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.pillar-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(31, 94, 82, 0.1);
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pillar-item strong {
	display: block;
	font-size: 14px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 2px;
}

.pillar-item span {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.4;
}

.executive-contact-bar {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.exec-email-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	background: linear-gradient(135deg, var(--ink) 0%, #243044 100%);
	color: var(--gold-light);
	border-radius: 10px;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
	box-shadow: 0 10px 24px rgba(18, 21, 26, 0.14);
}

.exec-email-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(18, 21, 26, 0.22);
}

.contact-sla {
	font-size: 12px;
	font-weight: 700;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

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

/* Past Deals Redesign */
.deals-section {
	padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 72px);
	background: var(--paper);
}

.deals-container {
	max-width: 1320px;
	margin: 0 auto;
}

.deals-metrics-bar {
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 24px 32px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	margin-bottom: 40px;
	box-shadow: 0 10px 30px rgba(18, 21, 26, 0.04);
}

.metric-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.metric-item strong {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(26px, 3.2vw, 38px);
	font-weight: 800;
	color: var(--green);
	line-height: 1;
	margin-bottom: 6px;
}

.metric-item span {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
}

.metric-divider {
	width: 1px;
	height: 40px;
	background: var(--line);
}

.deals-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.deal-card-enhanced {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(18, 21, 26, 0.04);
	transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.deal-card-enhanced:hover {
	transform: translateY(-5px);
	border-color: rgba(184, 138, 53, 0.42);
	box-shadow: 0 20px 50px rgba(18, 21, 26, 0.1);
}

.deal-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.deal-sector-tag {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--green);
}

.deal-status-pill {
	font-size: 11px;
	font-weight: 800;
	padding: 4px 10px;
	background: rgba(184, 138, 53, 0.12);
	color: var(--gold);
	border: 1px solid rgba(184, 138, 53, 0.28);
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.deal-card-body h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(20px, 2.2vw, 24px);
	color: var(--ink);
	margin: 0 0 12px;
	line-height: 1.25;
}

.deal-services-list {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.deal-services-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	line-height: 1.45;
	color: #334155;
}

.deal-services-list li svg {
	color: var(--green);
	flex-shrink: 0;
	margin-top: 2px;
}

.deal-services-list li span {
	font-weight: 600;
	color: var(--ink);
}

/* Past Deals Controls, Filtering & Pagination */
.deals-controls-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding: 18px 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	margin-bottom: 32px;
	box-shadow: 0 6px 20px rgba(18, 21, 26, 0.03);
}

.search-box {
	position: relative;
	flex: 1 1 300px;
	display: flex;
	align-items: center;
}

.search-box svg {
	position: absolute;
	left: 14px;
	color: #94a3b8;
	pointer-events: none;
}

.search-box input {
	width: 100%;
	height: 44px;
	padding: 0 16px 0 42px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	font-size: 14px;
	color: var(--ink);
	outline: none;
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.search-box input:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(184, 138, 53, 0.15);
}

.filter-sort-group {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.select-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
}

.select-wrapper select {
	height: 44px;
	padding: 0 32px 0 14px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ink);
	outline: none;
	cursor: pointer;
	transition: border-color 0.2s var(--ease);
}

.select-wrapper select:focus,
.select-wrapper select:hover {
	border-color: var(--gold);
}

.deal-card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #64748b;
	margin-bottom: 16px;
	padding-top: 12px;
	border-top: 1px dashed var(--line);
}

.deal-card-meta svg {
	color: var(--gold);
	flex-shrink: 0;
}

.deal-card-meta strong {
	color: var(--ink);
}

.no-deals-found {
	text-align: center;
	padding: 60px 20px;
	background: var(--white);
	border: 1px dashed var(--line);
	border-radius: 16px;
	color: #64748b;
}

.no-deals-found svg {
	color: var(--gold);
	margin-bottom: 14px;
}

.no-deals-found h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 22px;
	font-weight: 800;
	color: var(--ink);
	margin: 0 0 8px;
}

.deals-pagination-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	flex-wrap: wrap;
}

.pagination-info {
	font-size: 13.5px;
	font-weight: 700;
	color: #64748b;
}

.pagination-buttons {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pagination-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 16px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	cursor: pointer;
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.pagination-btn.page-num {
	min-width: 40px;
	padding: 0;
}

.pagination-btn:hover:not(.disabled) {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateY(-2px);
}

.pagination-btn.active {
	background: linear-gradient(135deg, var(--green) 0%, #15423a 100%);
	border-color: var(--green);
	color: var(--white) !important;
	box-shadow: 0 4px 14px rgba(31, 94, 82, 0.25);
}

.pagination-btn.disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.deal-card-body p {
	font-size: 14px;
	line-height: 1.6;
	color: #64748b;
	margin: 0 0 20px;
}

.deal-card-footer {
	padding-top: 16px;
	border-top: 1px solid var(--paper);
}

.deal-inquire-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 800;
	color: var(--green);
	text-decoration: none;
	transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.deal-inquire-link:hover {
	color: var(--gold);
	transform: translateX(3px);
}

@media (max-width: 1024px) {
	.deals-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.deals-grid {
		grid-template-columns: 1fr;
	}
	.deals-metrics-bar {
		flex-direction: column;
		gap: 20px;
	}
	.metric-divider {
		width: 100%;
		height: 1px;
	}
}

/* Home Page Services & Sections Redesign */
.home-services-section,
.home-capabilities-section {
	padding: clamp(48px, 6vw, 84px) clamp(20px, 5vw, 72px);
	background: var(--paper);
}

.section-container,
.capabilities-container,
.split-container {
	max-width: 1320px;
	margin: 0 auto;
}

.section-heading-split {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(24px, 4vw, 56px);
	align-items: flex-end;
	margin-bottom: 44px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line);
}

.heading-left h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(30px, 3.8vw, 46px);
	font-weight: 800;
	color: var(--ink);
	margin: 8px 0 0;
	line-height: 1.1;
}

.heading-right p {
	font-size: 15px;
	line-height: 1.65;
	color: #475569;
	margin: 0;
}

.home-service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.home-service-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(18, 21, 26, 0.04);
	transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.home-service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(184, 138, 53, 0.4);
	box-shadow: 0 20px 48px rgba(18, 21, 26, 0.1);
}

.service-card-media {
	position: relative;
	height: 180px;
	overflow: hidden;
}

.service-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.home-service-card:hover .service-card-media img {
	transform: scale(1.06);
}

.service-category-pill {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 12px;
	background: rgba(12, 16, 22, 0.88);
	backdrop-filter: blur(8px);
	color: var(--gold-light);
	font-size: 10.5px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 999px;
	border: 1px solid rgba(247, 215, 116, 0.45);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.service-card-content {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.service-card-content h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 19px;
	font-weight: 800;
	color: var(--ink);
	margin: 0 0 10px;
	line-height: 1.25;
}

.service-card-content p {
	font-size: 13px;
	line-height: 1.55;
	color: #64748b;
	margin: 0;
}

/* Home Split Section Redesign */
.home-split-section {
	position: relative;
	padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 72px);
	background:
		radial-gradient(circle at 75% 25%, rgba(184, 138, 53, 0.18), transparent 45%),
		radial-gradient(circle at 20% 80%, rgba(31, 94, 82, 0.16), transparent 45%),
		linear-gradient(135deg, #0b0e14 0%, #151d2a 100%);
	color: var(--white);
	border-top: 1px solid rgba(184, 138, 53, 0.2);
	border-bottom: 1px solid rgba(184, 138, 53, 0.2);
	overflow: hidden;
}

.home-split-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 56px 56px;
	pointer-events: none;
}

.split-container {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(32px, 5vw, 60px);
	align-items: center;
	max-width: 1320px;
	margin: 0 auto;
}

.split-text-col h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(30px, 3.8vw, 46px);
	font-weight: 800;
	color: var(--white);
	margin: 14px 0 16px;
	line-height: 1.15;
}

.split-text-col p {
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 28px;
}

.split-features-grid {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.split-feature-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.split-feature-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(184, 138, 53, 0.4);
	transform: translateX(4px);
}

.feature-icon-box {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: rgba(247, 215, 116, 0.15);
	color: var(--gold-light);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.split-feature-card strong {
	display: block;
	font-size: 14px;
	font-weight: 800;
	color: var(--white);
}

.split-feature-card span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.65);
}

.image-panel-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(184, 138, 53, 0.3);
}

.image-panel-card img {
	display: block;
	width: 100%;
	height: auto;
}

.image-floating-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 20px;
	background: rgba(13, 17, 24, 0.88);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(184, 138, 53, 0.4);
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.badge-icon-gold {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--gold) 0%, #d4a753 100%);
	color: #12151a;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.image-floating-badge strong {
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 20px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.1;
}

.image-floating-badge span {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gold-light);
}

/* Capabilities Section Redesign */
.capabilities-header {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(24px, 4vw, 56px);
	align-items: flex-end;
	margin-bottom: 44px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line);
}

.capabilities-header h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(30px, 3.8vw, 44px);
	font-weight: 800;
	color: var(--ink);
	margin: 8px 0 0;
	line-height: 1.1;
}

.capabilities-header-desc {
	font-size: 15px;
	line-height: 1.65;
	color: #475569;
	margin: 0;
}

.capabilities-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.capability-card-modern {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(18, 21, 26, 0.04);
	transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.capability-card-modern:hover {
	transform: translateY(-6px);
	border-color: rgba(184, 138, 53, 0.42);
	box-shadow: 0 20px 48px rgba(18, 21, 26, 0.09);
}

.capability-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.capability-icon-badge {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(31, 94, 82, 0.08);
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.24s var(--ease), color 0.24s var(--ease), transform 0.24s var(--ease);
}

.capability-card-modern:hover .capability-icon-badge {
	background: linear-gradient(135deg, var(--green) 0%, #15423a 100%);
	color: #ffffff;
	transform: scale(1.05);
}

.capability-number {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 22px;
	font-weight: 800;
	color: rgba(184, 138, 53, 0.35);
}

.capability-card-body h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 20px;
	font-weight: 800;
	color: var(--ink);
	margin: 0 0 10px;
	line-height: 1.25;
}

.capability-card-body p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #64748b;
	margin: 0 0 20px;
}

.capability-card-footer {
	padding-top: 16px;
	border-top: 1px solid var(--paper);
}

.capability-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 800;
	color: var(--green);
	text-decoration: none;
	transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.capability-link:hover {
	color: var(--gold);
	transform: translateX(3px);
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-secondary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin-top: 18px;
	padding: 0 24px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.24);
	color: var(--white);
	font-weight: 800;
	font-size: 14px;
	text-decoration: none;
	border-radius: 999px;
	backdrop-filter: blur(10px);
	transition: transform 0.24s var(--ease), background 0.24s var(--ease), border-color 0.24s var(--ease);
}

.hero-secondary-btn:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: var(--gold);
	transform: translateY(-2px);
}

@media (max-width: 1200px) {
	.home-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.section-heading-split,
	.split-container {
		grid-template-columns: 1fr;
	}
	.capabilities-grid {
		grid-template-columns: 1fr;
	}
}

/* Footer Redesign */
.site-footer {
	position: relative;
	background:
		radial-gradient(circle at 18% 0%, rgba(184, 138, 53, 0.2), transparent 38%),
		radial-gradient(circle at 82% 100%, rgba(31, 94, 82, 0.18), transparent 42%),
		linear-gradient(135deg, #0b0e14 0%, #141a26 50%, #080a0f 100%);
	color: var(--white);
	overflow: hidden;
	border-top: 1px solid rgba(184, 138, 53, 0.25);
}

.footer-accent {
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold), #f1d38a, var(--gold), transparent);
}

.footer-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 72px) 32px;
}

.footer-main {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: clamp(32px, 4vw, 56px);
	padding: 60px 0 44px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	margin-bottom: 14px;
}

.footer-brand img {
	width: auto;
	height: 54px;
	max-height: 54px;
	object-fit: contain;
}

.footer-brand-title {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--white);
}

.footer-kicker {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 12px;
}

.footer-bio {
	font-size: 13.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.68);
	margin: 0;
}

.footer-links-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.footer-col-title {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 16px;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-nav a:hover {
	color: var(--gold-light);
	transform: translateX(4px);
}

.footer-capabilities {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-capabilities li {
	position: relative;
	padding-left: 14px;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.68);
}

.footer-capabilities li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 5px;
	height: 5px;
	background: var(--gold-light);
	border-radius: 50%;
}

.footer-inquiry-card {
	padding: 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	backdrop-filter: blur(10px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
	transition: border-color 0.24s var(--ease), transform 0.24s var(--ease);
}

.footer-inquiry-card:hover {
	border-color: rgba(247, 215, 116, 0.4);
	transform: translateY(-2px);
}

.inquiry-card-tag {
	display: block;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 4px;
}

.inquiry-card-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 20px;
	font-weight: 800;
	color: var(--white);
	margin: 0 0 16px;
}

.inquiry-info-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.45;
}

.inquiry-info-item svg {
	color: var(--gold-light);
	flex-shrink: 0;
	margin-top: 2px;
}

.inquiry-info-item a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s var(--ease);
}

.inquiry-info-item a:hover {
	color: var(--gold-light);
}

.footer-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	margin-top: 14px;
	padding: 0 18px;
	background: linear-gradient(135deg, var(--gold) 0%, #d4a753 100%);
	color: #12151a !important;
	border-radius: 8px;
	font-size: 13.5px;
	font-weight: 800;
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}

.footer-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(184, 138, 53, 0.35);
	filter: brightness(1.08);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
	text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (max-width: 900px) {
	.nav-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: absolute;
		left: clamp(16px, 5vw, 40px);
		right: clamp(16px, 5vw, 40px);
		top: calc(100% + 10px);
		display: none;
		padding: 16px;
		background: var(--white);
		border: 1px solid rgba(18, 21, 26, 0.1);
		border-radius: 18px;
		box-shadow: 0 24px 50px rgba(18, 21, 26, 0.14);
	}

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

	.menu {
		display: grid;
		gap: 6px;
	}

	.menu a {
		justify-content: flex-start;
		width: 100%;
	}

	.header-cta {
		display: none;
	}

	.hero {
		min-height: 640px;
	}

	.service-grid,
	.premium-grid,
	.deal-grid,
	.split-section,
	.profile-hero,
	.profile-hero.reverse,
	.contact-section,
	.advisor-directory .contact-list {
		grid-template-columns: 1fr;
	}

	.footer-main {
		grid-template-columns: 1fr;
	}

	.footer-links {
		grid-template-columns: 1fr 1fr;
	}

	.footer-bottom {
		display: grid;
	}
}

@media (max-width: 560px) {
	.header-top {
		display: none;
	}

	.header-main {
		gap: 16px;
		min-height: 88px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.brand img {
		width: 74px;
		height: 70px;
	}

	.brand span {
		display: block;
		font-size: 20px;
		max-width: 145px;
		white-space: normal;
	}

	.primary-nav {
		top: calc(100% + 8px);
	}

	.footer-brand,
	.footer-links {
		grid-template-columns: 1fr;
		display: grid;
	}

	.footer-logo-frame {
		width: 170px;
		min-height: 118px;
	}

	.footer-brand img {
		width: 164px;
		height: 110px;
	}

	h1 {
		font-size: 40px;
	}

	.section,
	.split-section,
	.profile-hero,
	.contact-section,
	.page-shell {
		padding-top: 56px;
		padding-bottom: 56px;
	}
}

/* Master Universal Hover Effects for All Links, Buttons, Containers & Images */
a {
	transition: color 0.24s var(--ease), background 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
}

a:not(.button):not(.header-cta):not(.footer-cta-btn):not(.footer-button):not(.submit-btn):not(.hero-secondary-btn):not(.exec-email-btn):not(.advisor-email-btn):not(.menu a):hover {
	color: var(--gold);
}

.button,
.button:hover,
.button:focus,
.header-cta,
.header-cta:hover,
.footer-cta-btn,
.footer-cta-btn:hover,
.footer-button,
.footer-button:hover,
.submit-btn,
.submit-btn:hover {
	color: #12151a !important;
}

.hero-secondary-btn,
.hero-secondary-btn:hover,
.hero-secondary-btn:focus {
	color: var(--white) !important;
}

button,
.button,
.submit-btn,
.footer-cta-btn,
.hero-secondary-btn,
.exec-email-btn,
.advisor-email-btn,
.nav-toggle,
.deal-inquire-link,
.capability-link {
	transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), filter 0.24s var(--ease), background 0.24s var(--ease), border-color 0.24s var(--ease) !important;
}

button:hover,
.button:hover,
.submit-btn:hover,
.footer-cta-btn:hover,
.hero-secondary-btn:hover,
.exec-email-btn:hover,
.advisor-email-btn:hover,
.nav-toggle:hover {
	transform: translateY(-3px) scale(1.02) !important;
	filter: brightness(1.08) saturate(1.08);
}

button:active,
.button:active,
.submit-btn:active,
.footer-cta-btn:active,
.hero-secondary-btn:active,
.exec-email-btn:active,
.advisor-email-btn:active {
	transform: translateY(0) scale(0.98) !important;
}

.home-service-card,
.deal-card-enhanced,
.advisor-card,
.executive-profile-card,
.contact-card,
.map-card,
.contact-form-card,
.capability-card-modern,
.footer-inquiry-card,
.hero-stat-card,
.split-feature-card,
.image-panel-card {
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease) !important;
}

.home-service-card:hover,
.deal-card-enhanced:hover,
.advisor-card:hover,
.executive-profile-card:hover,
.contact-card:hover,
.map-card:hover,
.contact-form-card:hover,
.capability-card-modern:hover,
.footer-inquiry-card:hover,
.hero-stat-card:hover,
.split-feature-card:hover,
.image-panel-card:hover {
	border-color: rgba(184, 138, 53, 0.45) !important;
	box-shadow: 0 20px 48px rgba(18, 21, 26, 0.12) !important;
}

img {
	transition: transform 0.5s var(--ease), filter 0.35s var(--ease), box-shadow 0.35s var(--ease) !important;
}

.service-card-media img:hover,
.executive-portrait-frame img:hover,
.image-panel-card img:hover,
.hero-media:hover,
.brand img:hover,
.page-hero-graphic img:hover {
	transform: scale(1.05);
	filter: saturate(1.08) brightness(1.04);
}

/* Back to Top Floating Button */
.back-to-top-btn {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 999;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold) 0%, #d4a753 100%);
	color: #12151a;
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 8px 24px rgba(184, 138, 53, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
}

.back-to-top-btn.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top-btn:hover {
	transform: translateY(-4px) scale(1.08) !important;
	box-shadow: 0 14px 32px rgba(184, 138, 53, 0.45);
	filter: brightness(1.08);
}

/* SSM Registration & Regulatory Disclaimer Styling */
.footer-ssm-reg {
	font-size: 11.5px;
	font-weight: 700;
	color: var(--gold-light);
	letter-spacing: 0.04em;
	margin: 0 0 8px;
}

.footer-disclaimer-box {
	margin-top: 32px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
}

.footer-disclaimer-box p {
	margin: 0;
	font-size: 11.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
}

.footer-disclaimer-box strong {
	color: var(--gold-light);
}

/* PDPA Consent Form Notice */
.form-pdpa-group {
	margin-bottom: 18px;
}

.pdpa-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 11.5px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
	cursor: pointer;
}

.pdpa-label input[type="checkbox"] {
	margin-top: 2px;
	accent-color: var(--gold-light);
	flex-shrink: 0;
	width: 15px;
	height: 15px;
}

/* Visitor Counter Pill Widget in Footer */
.footer-counter-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.visitor-counter-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(247, 215, 116, 0.3);
	border-radius: 999px;
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	backdrop-filter: blur(8px);
	transition: background 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.visitor-counter-pill:hover {
	background: rgba(247, 215, 116, 0.14);
	border-color: var(--gold-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(247, 215, 116, 0.2);
}

.counter-pulse-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 10px #10b981;
	animation: pulse-dot-glow 2s infinite;
}

@keyframes pulse-dot-glow {
	0% { opacity: 0.4; transform: scale(0.9); }
	50% { opacity: 1; transform: scale(1.15); }
	100% { opacity: 0.4; transform: scale(0.9); }
}

.visitor-counter-pill svg {
	color: var(--gold-light);
}

.visitor-counter-pill strong {
	color: var(--gold-light);
	font-family: "Playfair Display", Georgia, serif;
	font-size: 14px;
}

.pill-stat {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}

.pill-lbl {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

.pill-divider {
	color: rgba(247, 215, 116, 0.4);
	margin: 0 2px;
	font-size: 12px;
}

/* Right-Side Slide Panel Visitor Analytics Drawer */
.visitor-drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(8, 11, 16, 0.65);
	backdrop-filter: blur(8px);
	display: flex;
	justify-content: flex-end;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.visitor-drawer-backdrop.is-active {
	opacity: 1;
	visibility: visible;
}

.visitor-drawer-panel {
	width: 100%;
	max-width: 440px;
	height: 100%;
	background: linear-gradient(180deg, #121824 0%, #0a0d14 100%);
	border-left: 1px solid rgba(247, 215, 116, 0.3);
	box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6);
	overflow-y: auto;
	color: var(--white);
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
}

.visitor-drawer-backdrop.is-active .visitor-drawer-panel {
	transform: translateX(0);
}

.visitor-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.02);
}

.modal-header-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.modal-icon-badge {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(31, 94, 82, 0.25);
	border: 1px solid rgba(31, 94, 82, 0.5);
	color: #34d399;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.visitor-modal-header h3 {
	margin: 0;
	font-size: 19px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.2;
}

.modal-subtitle {
	font-size: 12px;
	color: var(--gold-light);
	font-weight: 600;
}

.visitor-modal-close {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--white);
	font-size: 24px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.visitor-modal-close:hover {
	background: rgba(247, 215, 116, 0.2);
	color: var(--gold-light);
}

.visitor-modal-body {
	padding: 28px;
}

.visitor-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 28px;
}

.stat-box {
	padding: 16px 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
}

.stat-box.highlight-box {
	background: rgba(31, 94, 82, 0.18);
	border-color: rgba(52, 211, 153, 0.35);
}

.stat-box-label {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 6px;
}

.stat-box-value {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 22px;
	font-weight: 800;
	color: var(--gold-light);
	line-height: 1.1;
	margin-bottom: 4px;
}

.stat-box-value.active-now {
	color: #34d399;
}

.stat-box-trend {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	display: flex;
	align-items: center;
	gap: 5px;
}

.live-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 8px #34d399;
}

.visitor-analytics-section h4 {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--white);
	margin: 0 0 16px;
}

.geo-bar-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.geo-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	margin-bottom: 4px;
}

.geo-info span {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
}

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

.geo-progress-track {
	width: 100%;
	height: 6px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	overflow: hidden;
}

.geo-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #1f5e52 0%, var(--gold-light) 100%);
	border-radius: 999px;
}

.visitor-privacy-footer {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px dashed rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 11.5px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.5);
}

.visitor-privacy-footer svg {
	color: var(--gold-light);
	flex-shrink: 0;
	margin-top: 2px;
}

@media (max-width: 640px) {
	.visitor-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ==========================================================================
   Buy, Sale & JV Page Styling
   ========================================================================== */
.bsjv-section {
	padding: 40px clamp(20px, 4vw, 64px) 80px;
	background: var(--paper);
}

.bsjv-container {
	max-width: 1280px;
	margin: 0 auto;
}

.bsjv-metrics-bar {
	margin-bottom: 32px;
}

/* Toolbar & Filter Tabs */
.bsjv-toolbar {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 36px;
}

.bsjv-tab-pills {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	background: rgba(255, 255, 255, 0.8);
	padding: 8px;
	border-radius: 16px;
	border: 1px solid rgba(18, 21, 26, 0.08);
	box-shadow: 0 4px 16px rgba(18, 21, 26, 0.03);
}

.bsjv-tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 12px;
	border: 1px solid transparent;
	background: transparent;
	color: var(--muted);
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.22s var(--ease);
}

.bsjv-tab-btn:hover {
	color: var(--ink);
	background: rgba(18, 21, 26, 0.04);
}

.bsjv-tab-btn.active {
	background: var(--ink);
	color: var(--white);
	box-shadow: 0 8px 24px rgba(18, 21, 26, 0.18);
}

.pill-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
}

.sell-dot { background: #b88a35; }
.buy-dot { background: #1f5e52; }
.match-dot { background: #2563eb; }

.tab-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	background: rgba(18, 21, 26, 0.08);
	color: var(--ink);
	transition: all 0.22s var(--ease);
}

.bsjv-tab-btn.active .tab-badge {
	background: rgba(255, 255, 255, 0.2);
	color: var(--gold-light);
}

.bsjv-search-controls {
	margin-top: 0;
}

/* Grid & Cards */
.bsjv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 28px;
	margin-bottom: 48px;
}

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

.bsjv-card {
	background: var(--white);
	border: 1px solid rgba(18, 21, 26, 0.09);
	border-radius: 20px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	box-shadow: 0 8px 30px rgba(18, 21, 26, 0.04);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.bsjv-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(18, 21, 26, 0.1);
	border-color: rgba(184, 138, 53, 0.4);
}

.bsjv-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.bsjv-category-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.bsjv-category-badge.type-selling {
	background: rgba(184, 138, 53, 0.12);
	color: #966f24;
	border: 1px solid rgba(184, 138, 53, 0.25);
}

.bsjv-category-badge.type-buying {
	background: rgba(31, 94, 82, 0.12);
	color: #15423a;
	border: 1px solid rgba(31, 94, 82, 0.25);
}

.bsjv-category-badge.type-matching {
	background: rgba(37, 99, 235, 0.1);
	color: #1d4ed8;
	border: 1px solid rgba(37, 99, 235, 0.22);
}

.bsjv-status-pill {
	font-size: 11px;
	font-weight: 700;
	color: var(--muted);
	background: rgba(18, 21, 26, 0.05);
	padding: 3px 10px;
	border-radius: 6px;
	white-space: nowrap;
}

.bsjv-card-header {
	margin-bottom: 16px;
}

.bsjv-card-header h2 {
	font-size: 20px;
	font-weight: 800;
	color: var(--ink);
	line-height: 1.3;
	margin: 0 0 8px 0;
	letter-spacing: -0.01em;
}

.bsjv-location {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--muted);
}

.bsjv-location svg {
	color: var(--gold);
}

.bsjv-metric-highlight {
	background: linear-gradient(135deg, rgba(18, 21, 26, 0.03) 0%, rgba(184, 138, 53, 0.06) 100%);
	border-left: 3px solid var(--gold);
	padding: 12px 16px;
	border-radius: 0 12px 12px 0;
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.metric-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--muted);
}

.metric-val {
	font-size: 15px;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.01em;
}

.bsjv-card-body {
	margin-bottom: 24px;
}

.bsjv-card-body p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #475569;
	margin: 0;
}

.bsjv-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 18px;
	border-top: 1px solid rgba(18, 21, 26, 0.07);
}

.bsjv-date {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: #94a3b8;
	font-weight: 500;
}

.bsjv-inquire-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 16px;
	border-radius: 10px;
	background: var(--ink);
	color: var(--gold-light);
	font-size: 12.5px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.22s var(--ease);
}

.bsjv-inquire-btn:hover {
	background: #243044;
	color: #ffffff;
	transform: translateX(2px);
}

/* Call to Action Banner */
.bsjv-cta-banner {
	background: linear-gradient(135deg, #12151a 0%, #1e293b 100%);
	border-radius: 24px;
	padding: 40px clamp(24px, 5vw, 56px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	color: var(--white);
	box-shadow: 0 20px 60px rgba(18, 21, 26, 0.2);
	position: relative;
	overflow: hidden;
}

.bsjv-cta-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(184, 138, 53, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.cta-banner-content {
	max-width: 680px;
	position: relative;
	z-index: 1;
}

.cta-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--gold);
	margin-bottom: 8px;
}

.cta-banner-content h2 {
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.25;
	margin: 0 0 12px 0;
}

.cta-banner-content p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

.cta-banner-action {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.cta-primary-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	border-radius: 12px;
	background: linear-gradient(135deg, #b88a35 0%, #d4a753 100%);
	color: var(--ink);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(184, 138, 53, 0.3);
	transition: all 0.24s var(--ease);
}

.cta-primary-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(184, 138, 53, 0.45);
	color: #000000;
}

@media (max-width: 900px) {
	.bsjv-cta-banner {
		flex-direction: column;
		align-items: flex-start;
	}
}

