/* RC Widget — Contact Band. Scoped under .rcw-contact-band.
   Full-width dark band: centred heading, optional text, two large pill
   buttons side by side (stacked on phone) — call and WhatsApp.
   `--light` modifier flips the band to a light ground.
   Colour + fonts inherit the site's Salient brand via --rcw-* tokens; the
   band's own background/ink pairing stays in the widget (that's its design
   identity, not a token the site should override). */

/* ===== .rcw-contact-band Salient-proof reset (token bridge) ===== */
.rcw-contact-band {
	box-sizing: border-box;
	padding: 56px 24px;
	margin: 0;
	font-family: var(--rcw-font-body, 'Prompt', sans-serif);
	font-weight: var(--rcw-fweight-body, 400);
	letter-spacing: 0;
	line-height: 1.6;
	text-align: center;
	background: #0a0a0a;
	color: #ffffff;
	-webkit-font-smoothing: antialiased;
}
.rcw-contact-band *,
.rcw-contact-band *::before,
.rcw-contact-band *::after {
	box-sizing: inherit;
}
.rcw-contact-band p {
	margin: 0;
	padding: 0;
	font-size: 1em;
	line-height: 1.6;
	color: inherit;
}

.rcw-contact-band__heading {
	margin: 0 0 12px;
	font-family: var(--rcw-font-heading, 'Prompt', sans-serif);
	font-weight: var(--rcw-fweight-heading, 800);
	font-size: 2.1rem;
	line-height: 1.2;
	letter-spacing: 0;
	color: #ffffff;
}

.rcw-contact-band__text {
	max-width: 560px;
	margin: 0 auto 28px;
	font-size: 1rem;
	line-height: 1.6;
	color: #ffffff;
	opacity: 0.8;
}

.rcw-contact-band__buttons {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 16px;
	flex-wrap: wrap;
}

.rcw-contact-band__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	padding: 18px 36px;
	border-radius: 999px;
	font-family: var(--rcw-font-body, 'Prompt', sans-serif);
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 0.15s ease, opacity 0.15s ease;
}
.rcw-contact-band__btn:hover {
	transform: translateY(-2px);
	opacity: 0.92;
}

.rcw-contact-band__btn--phone {
	background: var(--rcw-accent, #0dbfe7);
	color: #0a0a0a;
}

.rcw-contact-band__btn--whatsapp {
	background: transparent;
	border: 2px solid #ffffff;
	color: #ffffff;
}

/* light tone — inverted ground, same button pairing logic */
.rcw-contact-band--light {
	background: #f4f6f8;
	color: var(--rcw-text, #0a0a0a);
}
.rcw-contact-band--light .rcw-contact-band__heading,
.rcw-contact-band--light .rcw-contact-band__text {
	color: var(--rcw-text, #0a0a0a);
}
.rcw-contact-band--light .rcw-contact-band__btn--whatsapp {
	border-color: var(--rcw-text, #0a0a0a);
	color: var(--rcw-text, #0a0a0a);
}

@media (max-width: 600px) {
	.rcw-contact-band {
		padding: 40px 20px;
	}
	.rcw-contact-band__heading {
		font-size: 1.6rem;
	}
	.rcw-contact-band__buttons {
		flex-direction: column;
		align-items: stretch;
	}
	.rcw-contact-band__btn {
		min-width: 0;
	}
}
