.rpp-lead-form {
	background: var(--rpp-color-surface, #fff);
	padding: var(--rpp-space-4, 32px);
	box-shadow: var(--rpp-shadow-card, 0 8px 24px rgba(17, 17, 17, 0.08));
}

.rpp-lead-form h2 {
	margin-top: 0;
	font-size: 1.375rem;
}

.rpp-lead-form__field {
	margin: 0 0 16px;
}

.rpp-lead-form__field label,
.rpp-lead-form__consent label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rpp-color-text-muted, #6b6560);
}

.rpp-lead-form__field input,
.rpp-lead-form__field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--rpp-color-border, #e6e1d8);
	border-radius: var(--rpp-radius-md, 4px);
	font-family: inherit;
	font-size: 1rem;
	background: var(--rpp-color-surface, #fff);
	color: var(--rpp-color-text, #1a1a1a);
}

.rpp-lead-form__consent {
	margin: 0 0 20px;
}

.rpp-lead-form__consent label {
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	color: var(--rpp-color-text, #1a1a1a);
}

.rpp-lead-form__consent input {
	margin-right: 8px;
}

.rpp-lead-form__actions .rpp-button {
	width: 100%;
}

.rpp-lead-notice {
	margin: 0 0 16px;
	padding: 12px 14px;
	font-size: 0.9375rem;
}

.rpp-lead-notice--ok {
	background: var(--rpp-color-surface-muted, #f1eee8);
	color: var(--rpp-color-charcoal, #1a1a1a);
}

.rpp-lead-notice--error {
	background: #f7e8e8;
	color: #5c1f1f;
}

.rpp-hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.rpp-agent-card {
	background: var(--rpp-color-surface, #fff);
	box-shadow: var(--rpp-shadow-card, 0 8px 24px rgba(17, 17, 17, 0.08));
	overflow: hidden;
}

.rpp-agent-card__media {
	aspect-ratio: 1;
	background: var(--rpp-color-surface-muted, #f1eee8);
}

.rpp-agent-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rpp-agent-card__body {
	padding: var(--rpp-space-3, 24px);
}

.rpp-agent-card__role {
	margin: 0 0 8px;
	color: var(--rpp-color-gold, #c4a35a);
	font-size: var(--rpp-fs-eyebrow, 0.75rem);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.rpp-agent-card h2,
.rpp-agent-card h3 {
	margin: 0 0 8px;
	font-size: 1.25rem;
}

.rpp-agent-card__meta {
	margin: 0 0 12px;
	color: var(--rpp-color-text-muted, #6b6560);
	font-size: var(--rpp-fs-meta, 0.875rem);
}

.rpp-agent-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--rpp-space-3, 24px);
}

@media (max-width: 1024px) {
	.rpp-agent-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.rpp-agent-grid {
		grid-template-columns: 1fr;
	}
}
