/* ==========================================================================
   /contact/ — Contact & aanvraagformulier
   Design source: design/Contact.dc.html  ·  Field/form spec: SITE_PLAN §9.1
   Every rule is scoped to .vvpage-contact. No CTA band on this page.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Section shell — 2-column grid (1fr / 1.15fr), 1140 max, gap 72
   -------------------------------------------------------------------------- */
.vvpage-contact .vv-contact {
	background: var(--sand, #F7F3EE);
}

.vvpage-contact .vv-contact__inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 88px 32px 110px;
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 72px;
	align-items: start;
}

/* --------------------------------------------------------------------------
   2. Left column — intro, contact details, proof card
   -------------------------------------------------------------------------- */
.vvpage-contact .vv-contact__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

.vvpage-contact .vv-contact__title {
	margin: 0 0 22px;
	font-family: var(--font-d, Lora, Georgia, serif);
	font-weight: 700;
	font-size: 50px;
	line-height: 1.1;
	color: var(--ink, #2C2420);
}

.vvpage-contact .vv-contact__title em {
	font-style: italic;
	color: var(--sage, #4F7558);
}

.vvpage-contact .vv-contact__lead {
	margin: 0 0 40px;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.85;
	color: var(--ink-2, #6B5E58);
}

/* vv/contact-strip + vv/proof-stats — promoted to style.css §9.18 (0.5-N.3). */

/* --------------------------------------------------------------------------
   3. Right column — the form card (SITE_PLAN §9.1 values are binding)
   -------------------------------------------------------------------------- */
.vvpage-contact .vv-form {
	background: #fff;
	border: 1px solid rgba(44, 36, 32, .08);
	border-radius: 20px;
	padding: 38px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	box-shadow: 0 20px 50px rgba(44, 36, 32, .08);
}

.vvpage-contact .vv-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.vvpage-contact .vv-form__group {
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-width: 0;
}

.vvpage-contact .vv-form__group label {
	font-family: var(--font-b, Nunito, system-ui, sans-serif);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--ink-2, #6B5E58);
}

.vvpage-contact .vv-form input[type="text"],
.vvpage-contact .vv-form input[type="email"],
.vvpage-contact .vv-form textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	font-family: var(--font-b, Nunito, system-ui, sans-serif);
	font-size: 14.5px;
	line-height: 1.5;
	padding: 12px 14px;
	border: 1.5px solid rgba(44, 36, 32, .12);
	border-radius: 10px;
	background: var(--sand, #F7F3EE);
	color: var(--ink, #2C2420);
	outline: none;
}

.vvpage-contact .vv-form textarea {
	resize: vertical;
	min-height: 118px;
}

.vvpage-contact .vv-form input::placeholder,
.vvpage-contact .vv-form textarea::placeholder {
	color: #b0a69c;
	opacity: 1;
}

.vvpage-contact .vv-form input:focus,
.vvpage-contact .vv-form textarea:focus {
	border-color: var(--sage, #4F7558);
}

/* 3.1 Honeypot — off-screen, never focusable, never announced ----------- */
.vvpage-contact .vv-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* 3.2 Error slot — empty until the handler fills it --------------------- */
.vvpage-contact .vv-form__error {
	display: none;
	color: #c0392b;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}

.vvpage-contact .vv-form__error.is-visible {
	display: block;
}

/* 3.3 Submit ------------------------------------------------------------ */
.vvpage-contact .vv-form__submit {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	font-family: var(--font-b, Nunito, system-ui, sans-serif);
	background: var(--sage, #4F7558);
	color: var(--sand, #F7F3EE);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 15px 32px;
	min-height: 44px;
	border-radius: 40px;
	border: none;
	cursor: pointer;
	transition: background .2s ease;
}

.vvpage-contact .vv-form__submit:hover {
	background: var(--sage-2, #7A9E82);
}

.vvpage-contact .vv-form__submit:focus-visible {
	outline: 2px solid var(--ink, #2C2420);
	outline-offset: 3px;
}

.vvpage-contact .vv-form__submit[disabled] {
	opacity: .72;
	cursor: default;
}

.vvpage-contact .vv-form__submit svg {
	flex: none;
}

/* 3.4 Privacy note ------------------------------------------------------ */
.vvpage-contact .vv-form__privacy {
	margin: 0;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.7;
	color: var(--ink-2, #6B5E58);
}

.vvpage-contact .vv-form__privacy a {
	color: #C27B5A;
	text-decoration: none;
	font-weight: 500;
}

.vvpage-contact .vv-form__privacy a:hover,
.vvpage-contact .vv-form__privacy a:focus-visible {
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   4. Responsive — columns stack, form full width, zero horizontal overflow
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
	.vvpage-contact .vv-contact__inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 56px 20px 72px;
		max-width: 100%;
	}

	.vvpage-contact .vv-contact__left,
	.vvpage-contact .vv-contact__right {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.vvpage-contact .vv-contact__title {
		font-size: 36px;
	}

	.vvpage-contact .vv-contact__lead {
		margin-bottom: 32px;
	}

	.vvpage-contact .vv-form {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		padding: 26px 22px;
		box-shadow: 0 12px 30px rgba(44, 36, 32, .08);
	}

	.vvpage-contact .vv-form__submit {
		align-self: stretch;
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.vvpage-contact .vv-contact__title {
		font-size: 31px;
	}

	.vvpage-contact .vv-form__row {
		grid-template-columns: 1fr;
	}
}
