/**
 * offerte.css — R4D5 · Premium intake/conversiepagina
 *
 * Scope: is_page_template('templates/tpl-offerte.php') — enqueued in
 * inc/enqueue.php onder handle 'hol-offerte' met dependency 'hol-contact'
 * (form-styling blijft van contact.css).
 *
 * Secties:
 *   1. Hero editorial bg + response-chip
 *   2. Form met 3 visuele groepen + sidebar (response-card, authority-row,
 *      process-steps, WhatsApp-alternatief)
 *   3. Editorial pull-quote
 *
 * Form-inputs/buttons: geërfd van contact.css. Dit bestand voegt alleen
 * de offerte-specifieke layout + sidebar + hero-editorial toe.
 *
 * Reduced-motion: geen animaties in deze ronde; de `.rv` reveals van
 * site.js respecteren het al globaal.
 */


/* ═════════════════════════════════════════════════════════════
 * 1. HERO — editorial bg + response-chip
 * ═════════════════════════════════════════════════════════════ */

.hol-offerte-hero--editorial {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5.5rem, 12vw, 9rem) clamp(3rem, 6vw, 4.5rem);
	/* Fixed-header compensatie in ankerloos landing (hero start boven header). */
	padding-top: calc(clamp(5.5rem, 12vw, 9rem) + 1.5rem);
	isolation: isolate;
	background-color: #0c0a08;
}

.hol-offerte-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -2;
	opacity: 0.26;
}

.hol-offerte-hero__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(
		120% 80% at 50% 30%,
		rgba(201, 148, 58, 0.08) 0%,
		rgba(12, 10, 8, 0.55) 55%,
		rgba(12, 10, 8, 0.92) 100%
	);
	z-index: -1;
}

.hol-offerte-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.hol-offerte-hero--editorial .hol-section-title__heading {
	color: #f5ede0;
	font-size: clamp(1.85rem, 3.6vw, 3rem);
	line-height: 1.15;
	max-width: 24ch;
	margin-inline: auto;
}

.hol-offerte-hero--editorial .hol-section-title__intro {
	color: rgba(245, 237, 224, 0.72);
	font-size: clamp(1rem, 1.25vw, 1.12rem);
	line-height: 1.65;
	max-width: 56ch;
	margin-inline: auto;
}

/* Response-chip — enige call-out in de hero. */
.hol-offerte-hero__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
	padding: 0.55rem 1.1rem 0.55rem 0.9rem;
	border: 1px solid rgba(201, 148, 58, 0.35);
	border-radius: 999px;
	background-color: rgba(201, 148, 58, 0.05);
	color: #f5ede0;
	font-size: 0.88rem;
	line-height: 1;
	letter-spacing: 0.01em;
}

.hol-offerte-hero__chip-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--hol-color-accent, #c9943a);
}

.hol-offerte-hero__chip-label {
	color: var(--hol-color-accent, #c9943a);
	font-weight: 500;
	letter-spacing: 0.03em;
}

.hol-offerte-hero__chip-detail {
	color: rgba(245, 237, 224, 0.72);
	font-size: 0.82rem;
	padding-left: 0.5rem;
	border-left: 1px solid rgba(245, 237, 224, 0.2);
	margin-left: 0.1rem;
}


/* ═════════════════════════════════════════════════════════════
 * 2. FORM + SIDEBAR LAYOUT
 * ═════════════════════════════════════════════════════════════ */

.hol-offerte-form-section {
	padding-block: clamp(2.25rem, 5vw, 4rem) clamp(3rem, 7vw, 5.5rem);
}

.hol-offerte-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

@media (min-width: 900px) {
	.hol-offerte-grid {
		grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
		gap: clamp(2.5rem, 5vw, 4rem);
	}
}


/* ── 2a. FORM — visuele groepen 01/02/03 ───────────────────── */

.hol-offerte-form-col {
	min-width: 0;
}

.hol-offerte-form {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 2.25rem);
}

.hol-offerte-group {
	border: 0;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hol-offerte-group__legend {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	padding: 0 0 0.7rem;
	margin: 0 0 0.25rem;
	border-bottom: 1px solid rgba(201, 148, 58, 0.18);
	width: 100%;
}

.hol-offerte-group__index {
	font-family: var(--hol-font-display, 'Cormorant Garamond', Georgia, serif);
	font-size: 1rem;
	font-weight: 500;
	color: var(--hol-color-accent, #c9943a);
	letter-spacing: 0.16em;
	line-height: 1;
}

.hol-offerte-group__label {
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(237, 229, 216, 0.82);
	font-weight: 500;
}

/* Label-annotaties: verplichte-puntje (goud) + optioneel-caption. */
.hol-offerte-req {
	display: inline-block;
	color: var(--hol-color-accent, #c9943a);
	margin-left: 0.3rem;
	font-size: 1rem;
	line-height: 1;
	transform: translateY(-1px);
}

.hol-offerte-opt {
	display: inline-block;
	margin-left: 0.5rem;
	color: rgba(138, 125, 107, 0.9);
	font-size: 0.62rem;
	letter-spacing: 0.1em;
	text-transform: lowercase;
	font-weight: 400;
	font-style: italic;
}

.form-label--optional {
	/* Zelfde base-styling als .form-label uit contact.css. */
}

/* Textarea-tweak voor offerte (iets groter). */
.hol-offerte-textarea {
	min-height: 160px;
}

/* Submit-row met ademruimte. */
.hol-offerte-form__submit-row {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	align-items: flex-start;
	margin-top: 0.5rem;
	padding-top: clamp(0.5rem, 1.5vw, 1rem);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.hol-offerte-form__note {
	margin: 0;
	max-width: 52ch;
	color: rgba(138, 125, 107, 0.9);
}


/* ── 2b. SIDEBAR — response + authority + process + WhatsApp ─ */

.hol-offerte-sidebar {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 2rem);
	min-width: 0;
}

/* Sticky op desktop — sidebar scrollt met, houdt response-card en
   authority dicht bij de submit-knop in zicht. */
@media (min-width: 1100px) {
	.hol-offerte-sidebar {
		position: sticky;
		top: clamp(5rem, 10vh, 7rem);
	}
}

/* Response-card: hoogwaardige belofte direct naast het formulier. */
.hol-offerte-response {
	position: relative;
	padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.25rem, 2.5vw, 1.65rem);
	background-color: #0f0c09;
	border: 1px solid rgba(201, 148, 58, 0.22);
	border-radius: var(--hol-radius-lg, 12px);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.hol-offerte-response::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--hol-color-accent, #c9943a) 20%,
		var(--hol-color-accent, #c9943a) 80%,
		transparent 100%
	);
}

.hol-offerte-response__icon {
	display: inline-flex;
	color: var(--hol-color-accent, #c9943a);
	margin-bottom: 0.25rem;
}

.hol-offerte-response__eyebrow {
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--hol-color-accent, #c9943a);
	font-weight: 500;
	margin-bottom: 0.1rem;
}

.hol-offerte-response__title {
	font-family: var(--hol-font-display, 'Cormorant Garamond', Georgia, serif);
	font-size: clamp(1.2rem, 1.6vw, 1.4rem);
	font-weight: 400;
	line-height: 1.2;
	color: #f5ede0;
	margin: 0;
}

.hol-offerte-response__text {
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(245, 237, 224, 0.72);
	margin: 0.25rem 0 0;
}

/* Authority-row: 4 compacte tegels, geen kartonnen badges. */
.hol-offerte-authority {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background-color: rgba(201, 148, 58, 0.18);
	border: 1px solid rgba(201, 148, 58, 0.18);
	border-radius: var(--hol-radius-md, 8px);
	overflow: hidden;
}

@media (min-width: 480px) and (max-width: 899px) {
	.hol-offerte-authority {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.hol-offerte-authority {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.hol-offerte-authority__item {
	background-color: #0c0a08;
	padding: 0.9rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-height: 4.75rem;
	justify-content: center;
}

.hol-offerte-authority__value {
	font-family: var(--hol-font-display, 'Cormorant Garamond', Georgia, serif);
	font-size: clamp(1.45rem, 2.2vw, 1.85rem);
	font-weight: 400;
	color: var(--hol-color-accent, #c9943a);
	line-height: 1;
	letter-spacing: -0.01em;
}

.hol-offerte-authority__label {
	font-size: 0.76rem;
	line-height: 1.35;
	color: rgba(245, 237, 224, 0.68);
	letter-spacing: 0.01em;
}

/* Process-steps: compacter, met linker goud-accent-lijn. */
.hol-offerte-process {
	position: relative;
	padding-left: clamp(0.75rem, 1.5vw, 1rem);
	border-left: 1px solid rgba(201, 148, 58, 0.22);
}

.hol-offerte-process__title {
	font-family: var(--hol-font-display, 'Cormorant Garamond', Georgia, serif);
	font-size: clamp(1.05rem, 1.3vw, 1.2rem);
	font-weight: 400;
	color: #f5ede0;
	margin: 0 0 1rem;
	letter-spacing: 0.005em;
}

.hol-offerte-process__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.hol-offerte-process__step {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.hol-offerte-process__number {
	font-family: var(--hol-font-display, 'Cormorant Garamond', Georgia, serif);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: var(--hol-color-accent, #c9943a);
	line-height: 1.3;
	flex-shrink: 0;
	min-width: 1.5rem;
}

.hol-offerte-process__body {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.hol-offerte-process__step-title {
	font-size: 0.92rem;
	font-weight: 500;
	color: #ede5d8;
	line-height: 1.35;
}

.hol-offerte-process__step-text {
	font-size: 0.82rem;
	color: rgba(138, 125, 107, 0.95);
	line-height: 1.55;
}

/* WhatsApp-alternatief onderaan sidebar. */
.hol-offerte-alternative {
	padding-top: 1.25rem;
	border-top: 1px solid rgba(237, 229, 216, 0.08);
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	align-items: flex-start;
}

.hol-offerte-alternative__text {
	font-size: 0.85rem;
	color: rgba(245, 237, 224, 0.72);
	margin: 0;
}

/* WhatsApp-button erft .whatsapp-btn uit contact.css — geen redefine. */


/* ═════════════════════════════════════════════════════════════
 * 3. EDITORIAL PULL-QUOTE — geen testimonial-card
 * ═════════════════════════════════════════════════════════════ */

.hol-offerte-quote {
	padding-block: clamp(3.5rem, 8vw, 6.5rem);
	position: relative;
}

.hol-offerte-quote::before,
.hol-offerte-quote::after {
	content: '';
	display: block;
	width: clamp(3rem, 6vw, 5rem);
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(201, 148, 58, 0.5),
		transparent
	);
	margin-inline: auto;
}

.hol-offerte-quote::before { margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.hol-offerte-quote::after  { margin-top:    clamp(1.75rem, 3.5vw, 2.75rem); }

.hol-offerte-quote__inner {
	max-width: 44rem;
	margin: 0 auto;
	text-align: center;
	padding-inline: clamp(1rem, 3vw, 2rem);
}

.hol-offerte-quote__eyebrow {
	display: inline-block;
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--hol-color-accent, #c9943a);
	font-weight: 500;
	margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hol-offerte-quote__text {
	font-family: var(--hol-font-display, 'Cormorant Garamond', Georgia, serif);
	font-style: italic;
	font-weight: 300;
	color: #f5ede0;
	font-size: clamp(1.25rem, 2.4vw, 1.9rem);
	line-height: 1.4;
	margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
	letter-spacing: 0.003em;
}

.hol-offerte-quote__cite {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
	font-style: normal;
}

.hol-offerte-quote__rating {
	display: inline-flex;
	gap: 0.25rem;
	color: var(--hol-color-accent, #c9943a);
	line-height: 0;
}

.hol-offerte-quote__name {
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(245, 237, 224, 0.78);
	font-weight: 500;
}

.hol-offerte-quote__meta {
	color: rgba(138, 125, 107, 0.95);
	font-weight: 400;
	letter-spacing: 0.08em;
}


/* ═════════════════════════════════════════════════════════════
 * MOBILE 375 — expliciete check
 * ═════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
	.hol-offerte-hero--editorial {
		padding-top: clamp(4.75rem, 14vw, 6.5rem);
		padding-bottom: clamp(2.25rem, 7vw, 3.5rem);
	}

	.hol-offerte-hero__chip {
		flex-wrap: wrap;
		justify-content: center;
		padding: 0.6rem 0.95rem;
		gap: 0.45rem;
		font-size: 0.82rem;
	}

	.hol-offerte-hero__chip-detail {
		flex-basis: 100%;
		border-left: 0;
		padding-left: 0;
		margin-left: 0;
		text-align: center;
		color: rgba(245, 237, 224, 0.62);
	}

	.hol-offerte-group__legend {
		padding-bottom: 0.5rem;
	}

	.hol-offerte-response {
		padding: 1.1rem 1.15rem;
	}

	.hol-offerte-authority {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hol-offerte-authority__value {
		font-size: 1.35rem;
	}

	.hol-offerte-authority__label {
		font-size: 0.72rem;
	}

	.hol-offerte-quote__text {
		font-size: 1.15rem;
	}
}


/* ═════════════════════════════════════════════════════════════
 * REDUCED MOTION — technisch schoon, geen motion in deze ronde,
 * maar alvast de paar transitions uitzetten voor consistentie
 * met werkwijze/over-tim/training.
 * ═════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
	.hol-offerte-response {
		transition: none;
	}
	/* .rv reveals worden door site.js al direct op .is-visible gezet
	   bij reduced-motion; geen extra override nodig hier. */
}
