/* --- Start: CTA / Contact component --- */
.cta-section {
	padding: var(--space-8xl) 0;
	background: var(--yellow);
	position: relative;
	overflow: hidden;
	color: var(--ink);
}

.cta-section .wrap {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 64px;
	align-items: center;
}

.cta-section h2 {
	font-family: var(--ff-display);
	font-size: var(--fs-xlarge);
	font-weight: 700;
	letter-spacing: var(--ls-heading);
	line-height: 0.98;
	margin: 0;
	color: var(--ink);
}

.cta-section .lede {
	font-size: var(--fs-medium);
	line-height: 1.5;
	margin-top: 24px;
	color: var(--ink);
	max-width: 560px;
}

.cta-card {
	background: var(--ink);
	color: var(--paper);
	border-radius: var(--radius-xl);
	padding: 36px;
	box-shadow: var(--shadow-panel);
}

.cta-card h4 {
	font-family: var(--ff-display);
	font-size: var(--fs-medium);
	margin: 0 0 10px;
	letter-spacing: var(--ls-heading-tight);
	color: var(--paper);
}

.cta-card .note {
	font-size: var(--fs-normal);
	color: var(--line);
	line-height: 1.45;
	margin: 0 0 24px;
}

.cta-card form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cta-card .field-row {
	margin-bottom: 0;
}

.cta-card input {
	padding: 0 18px;
	font-size: var(--fs-small);
}

.cta-card textarea {
	min-height: 84px;
	height: 84px;
	padding: 16px 18px;
	resize: vertical;
	font-size: var(--fs-small);
}

.cta-card button {
	margin-top: 6px;
	width: 100%;
	justify-content: center;
	height: 56px;
	font-size: var(--fs-small);
}

.cta-card button:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.cta-card small {
	display: block;
	margin: 0 0 18px;
	font-size: var(--fs-xsmall);
	color: var(--muted);
	line-height: 1.5;
}

.cta-card small a {
	color: var(--yellow);
	border-bottom: 1px solid currentColor;
}

.form-errors {
	display: none;
	margin: 0 0 16px;
	border: 1px solid var(--error);
	border-radius: var(--radius-sm);
	padding: 10px 12px;
	color: var(--error);
	font-size: var(--fs-xsmall);
	line-height: 1.45;
}

.form-errors.is-visible {
	display: block;
}

.form-errors a {
	color: var(--paper);
	border-bottom: 0;
	text-decoration: none;
}

.contact-section {
	margin-top: 0;
}

.contact-section .lede a {
	color: var(--ink);
	border-bottom: 1px solid currentColor;
}

.contact-details {
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-label {
	font-family: var(--ff-mono);
	font-size: var(--fs-xsmall);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 4px;
}

.contact-link {
	font-family: var(--ff-display);
	font-size: var(--fs-medium);
	font-weight: 700;
	color: var(--ink);
}

.contact-link-small {
	font-size: var(--fs-medium);
	font-weight: 600;
}

.contact-address {
	font-size: var(--fs-normal);
	color: var(--ink);
}

@media (max-width: 1024px) {
	.cta-section .wrap {
	  grid-template-columns: 1fr;
	  gap: 48px;
	}

}
/* --- End: CTA / Contact component --- */
