/* ================================================================
   CONTACT PAGE — centered boxed layout
   Scoped to .contact-body / .contact-* / .cbp-* / .cdc-* / .ccc-*
   8px spacing system · #c4ee18 accent · pure black base
   ================================================================ */

/* ---- Typography ----------------------------------------------- */
body.contact-body h1,
body.contact-body h2,
body.contact-body h3,
.cbp-name,
.cdc-heading {
	font-family: 'Darker Grotesque', system-ui, sans-serif;
}

/* ---- Body offset: no announcement banner on contact page ------ */
body.contact-body {
	padding-top: 64px;
	background: #000000;
}

/* ---- Scroll reveal -------------------------------------------- */
/* Start visible; JS adds .cp-anim-ready before triggering. */
.cp-reveal {
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: var(--reveal-delay, 0s);
}

body.cp-anim-ready .cp-reveal {
	opacity: 0;
	transform: translateY(28px);
}

body.cp-anim-ready .cp-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ================================================================
   PAGE WRAPPER
   ================================================================ */
.contact-page-wrap {
	padding: 56px 40px 56px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

/* ================================================================
   BOXED LAYOUT CONTAINER
   ================================================================ */
.contact-boxed-layout {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* ================================================================
   PROFILE PANEL
   ================================================================ */
.contact-profile-panel {
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

/* ---- Avatar --------------------------------------------------- */
.cbp-avatar-col {
	flex-shrink: 0;
}

.cbp-avatar-ring {
	position: relative;
	width: 120px;
	height: 120px;
}

.cbp-avatar-img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #c4ee18;
	display: block;
}

.cbp-status-dot {
	position: absolute;
	bottom: 5px;
	right: 5px;
	width: 14px;
	height: 14px;
	background: #c4ee18;
	border-radius: 50%;
	border: 2px solid #000000;
}

/* ---- Info column --------------------------------------------- */
.cbp-info-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-top: 6px;
}

.cbp-id {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cbp-name {
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: #ffffff;
	margin: 0;
	line-height: 1.1;
}

.cbp-role {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.38);
	margin: 0;
	letter-spacing: 0.01em;
}

.cbp-quote {
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	line-height: 1.74;
	color: rgba(255, 255, 255, 0.52);
	margin: 0;
	padding: 0;
	border: none;
}

.cbp-socials {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.cbp-social-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.35);
	text-decoration: none;
	transition: color 0.18s ease;
	min-height: 44px;
	padding-block: 4px;
}

.cbp-social-link:hover {
	color: #c4ee18;
}

/* ================================================================
   CONTACT & BUSINESS DETAILS CARD
   ================================================================ */
.contact-details-card {
	background: #111111;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	padding: 32px;
}

.cdc-heading {
	font-size: 1.125rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0 0 20px;
	line-height: 1.2;
}

/* 2-column detail grid */
.cdc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.cdc-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cdc-item:nth-child(odd) {
	padding-right: 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.cdc-item:nth-child(even) {
	padding-left: 24px;
}

/* No bottom border on last item */
.cdc-item:last-child {
	border-bottom: none;
}

/* No right border on orphaned last item (alone in left column) */
.cdc-item:last-child:nth-child(odd) {
	border-right: none;
}

.cdc-icon {
	width: 30px;
	height: 30px;
	background: rgba(196, 238, 24, 0.07);
	border: 1px solid rgba(196, 238, 24, 0.14);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #c4ee18;
	flex-shrink: 0;
	margin-top: 2px;
}

.cdc-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.cdc-label {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.28);
}

.cdc-value {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.5;
}

.cdc-link {
	text-decoration: none;
	transition: color 0.18s ease;
}

.cdc-link:hover {
	color: #c4ee18;
}

.cdc-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.07);
	margin: 20px 0;
}

.cdc-biz-label {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.22);
	margin: 0 0 8px;
}

.cdc-biz-text {
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.32);
	line-height: 1.65;
	margin: 0;
}

/* ================================================================
   CALENDAR / BOOKING
   ================================================================ */
.ccc-cal-wrap {
	width: 100%;
	margin-top: -4px; /* pull slightly closer to details card; effective gap ≈ 20px */
}

#my-cal-inline {
	width: 100%;
	min-height: 760px;
	overflow: hidden;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
	.contact-page-wrap {
		padding: 32px 24px 48px;
	}

	.contact-profile-panel {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 20px;
	}

	.cbp-socials {
		justify-content: center;
	}

	.cbp-social-label {
		display: none;
	}

	.cbp-social-link svg {
		width: 28px;
		height: 28px;
	}

	.cdc-grid {
		grid-template-columns: 1fr;
	}

	.cdc-item {
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.cdc-item:nth-child(odd) {
		padding-right: 0;
		border-right: none;
	}

	.cdc-item:nth-child(even) {
		padding-left: 0;
	}

	.cdc-item:last-child:nth-child(odd) {
		border-right: none;
	}

	.cdc-item:last-child {
		border-bottom: none;
	}

	#my-cal-inline {
		min-height: 900px;
	}
}

@media (max-width: 480px) {
	.contact-page-wrap {
		padding: 20px 16px 40px;
	}

	.contact-details-card {
		padding: 24px 16px;
	}

	.cbp-name {
		font-size: 1.75rem;
	}

	.cbp-socials {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 36px;
	}

	#my-cal-inline {
		min-height: 900px;
	}
}
