.ff-contact-form {
	margin-top: 2rem;
}

.ff-form-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ff-field {
	margin: 0;
}

.ff-field--full {
	grid-column: 1 / -1;
}

.ff-field label {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	margin-bottom: 0.42rem;
}

.ff-field input,
.ff-field select,
.ff-field textarea {
	background: #fff;
	border: 1px solid #b8c4d0;
	border-radius: 0.28rem;
	box-sizing: border-box;
	color: var(--ff-ink, #0c1c2a);
	font: inherit;
	padding: 0.85rem 0.95rem;
	width: 100%;
}

.ff-field select {
	cursor: pointer;
}

.ff-field textarea {
	min-height: 9rem;
	resize: vertical;
}

.ff-form-submit {
	background: var(--ff-copper, #b6833f);
	border: 0;
	border-radius: 7px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	margin-top: 1.25rem;
	padding: 0.9rem 1.4rem;
}

.ff-form-submit:hover,
.ff-form-submit:focus-visible {
	background: var(--ff-ink, #0c1c2a);
}

.ff-form-submit-note {
	color: #c8d5e2;
	font-size: 0.76rem;
	line-height: 1.5;
	margin: 0.72rem 0 0;
}

.ff-form-consent {
	display: flex;
	gap: 0.68rem;
	align-items: flex-start;
	margin: 0.1rem 0 0;
	color: inherit;
	font-size: 0.76rem;
	line-height: 1.55;
}

.ff-form-consent input {
	flex: 0 0 auto;
	width: 1.08rem;
	height: 1.08rem;
	margin: 0.08rem 0 0;
	accent-color: var(--ff-copper, #b6833f);
}

.ff-form-consent label {
	display: block;
	margin: 0;
	font: inherit;
	font-weight: 500;
}

.ff-form-consent a {
	color: inherit;
	font-weight: 700;
	text-underline-offset: 3px;
}

.ff-form-honeypot {
	left: -10000px;
	position: absolute;
	top: auto;
}

.ff-form-privacy {
	color: var(--ff-slate, #596778);
	font-size: 0.78rem;
	line-height: 1.55;
	margin: 1rem 0 0;
}

.ff-form-privacy a {
	margin-left: 0.25em;
}

.ff-form-notice {
	border-radius: 0.72rem;
	font-size: 0.9rem;
	margin-bottom: 1.25rem;
	padding: 0.9rem 1rem;
}

.ff-form-notice--success {
	background: #e4f1e7;
	color: #174d2a;
}

.ff-form-notice--error {
	background: #f6e6e2;
	color: #6f261b;
}

@media (max-width: 700px) {
	.ff-form-grid {
		grid-template-columns: 1fr;
	}

	.ff-field--full {
		grid-column: auto;
	}
}
