/* ═══════════════════════════════════════════════════════════════════════════
   HOME — HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.home-hero {
	padding: var(--ci-section-padding) 0;
	background-color: var(--ci-color-white);
}

/* H1 */
.home-hero__heading {
	font-family: var(--ci-font-primary);
	font-size: clamp(1.6rem, 3.2vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	white-space: nowrap;
	text-align: center;
	color: #c6a54e;
	margin: 0 0 2.5rem;
}

/* Full-container-width image placeholder */
.home-hero__image-placeholder {
	width: 100%;
	min-height: 281px;
	background-color: var(--ci-color-light-bg);
	border: 1px dashed var(--ci-color-border);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2.5rem;
	color: var(--ci-color-text-muted);
	font-size: 0.95rem;
	font-family: var(--ci-font-primary);
}

/* Real banner image */
.home-hero__image {
	width: 100%;
	height: 281px;
	object-fit: cover;
	object-position: center;
	border-radius: 4px;
	display: block;
	margin-bottom: 2.5rem;
}

/* Body text */
.home-hero__body {
	max-width: 100%;
	margin-bottom: 2rem;
}

.home-hero__body p {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--ci-color-text);
	margin: 0 0 1.25rem;
}

.home-hero__body p:last-child {
	margin-bottom: 0;
}

/* CTA — centred on desktop */
.home-hero .ci-btn {
	margin-top: 2rem;
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

/* ── Mobile ── */
@media (max-width: 767px) {
	.home-hero {
		padding: var(--ci-section-padding-mobile) 0;
	}

	/* Reorder: H1 → body → CTA → image */
	.home-hero .site-container {
		display: flex;
		flex-direction: column;
	}

	.home-hero__heading {
		order: 1;
		white-space: normal;
		text-align: left;
		font-size: clamp(1.8rem, 7vw, 2.4rem);
		margin-bottom: 1.25rem;
	}

	.home-hero__image-placeholder,
	.home-hero picture {
		order: 2;
	}

	.home-hero__image-placeholder {
		min-height: 200px;
		margin-top: 0;
		margin-bottom: 1.5rem;
	}

	.home-hero__image {
		order: 2;
		height: auto;
		margin-top: 0;
		margin-bottom: 1.5rem;
	}

	.home-hero__body {
		order: 3;
		margin-bottom: 0;
	}

	.home-hero .ci-btn {
		order: 4;
		margin-left: 0;
		margin-right: 0;
		margin-top: 1.5rem;
	}
}
