/**
 * Homepage — layout refresh
 * Palette: sage #bec5b3, gold #b08d57 / #d4af37, cream #f9f7f2, text #252525, muted #515b5b
 */

.home-page {
	--sage: #bec5b3;
	--gold: #b08d57;
	--gold-light: #d4af37;
	--cream: #f9f7f2;
	--ink: #252525;
	--muted: #515b5b;
	--white: #ffffff;
	--home-container: 1400px;
	--home-gutter: 20px;
	color: var(--ink);
}

/* Shared content width for all sections (hero stays full width) */
.home-page .container {
	max-width: var(--home-container);
	width: 100%;
	padding-left: var(--home-gutter);
	padding-right: var(--home-gutter);
	margin-left: auto;
	margin-right: auto;
}

.home-page .home-slider.container-fluid {
	padding-left: 0;
	padding-right: 0;
	max-width: none;
	width: 100%;
}

.home-page .home-slider .row {
	margin-left: 0;
	margin-right: 0;
}

.home-page .home-slider {
	padding-top: 0;
}

/* Remove global main top gap on homepage only */
main.home-page {
	margin-top: 0;
}

/* Hero caption — design only */
.home-page .home-slider .carousel-caption {
	bottom: clamp(24px, 4vw, 48px);
	left: max(var(--home-gutter), calc(50% - (var(--home-container) / 2) + var(--home-gutter)));
	right: auto;
	top: auto;
	max-width: 500px;
	padding: 16px 20px 16px 18px;
	border-left: 3px solid var(--gold-light);
	text-align: left;
	background: rgba(37, 37, 37, 0.42);
}

.home-page .home-slider .carousel-caption h3 {
	display: block !important;
	font-family: playfair_displayregular, 'Playfair Display', serif;
	font-size: clamp(22px, 3.2vw, 36px);
	line-height: 1.25;
	font-weight: 400;
	text-transform: none !important;
	letter-spacing: 0.02em;
	color: var(--white);
	margin: 0 0 10px;
}

.home-page .home-slider .carousel-caption p {
	font-family: avenirregular, sans-serif;
	font-size: clamp(13px, 1.3vw, 15px) !important;
	line-height: 1.65 !important;
	text-transform: none !important;
	font-weight: 400 !important;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
	white-space: normal;
}

@media (max-width: 767px) {
	.home-page .home-slider .carousel-caption {
		left: var(--home-gutter);
		right: var(--home-gutter);
		max-width: none;
		bottom: 20px;
		padding: 14px 16px 14px 14px;
	}
}

/* Trust bar — credibility strip below hero */
.home-page .home-trust {
	background: var(--cream);
	border-top: 3px solid var(--gold);
	border-bottom: 1px solid rgba(176, 141, 87, 0.2);
	padding: 28px 0;
	margin: 0;
}

.home-page .home-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	align-items: stretch;
}

.home-page .home-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: 8px 20px;
	position: relative;
}

.home-page .home-trust__item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 52px;
	background: rgba(176, 141, 87, 0.35);
}

.home-page .home-trust__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 12px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--white);
	font-size: 17px;
	line-height: 1;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(176, 141, 87, 0.35);
}

.home-page .home-trust__icon i,
.home-page .home-trust__icon .fa {
	color: var(--white) !important;
	font-size: 17px;
	line-height: 1;
}

.home-page .home-trust__label {
	font-family: avenirregular, sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0;
	max-width: 180px;
}

/* ── Section headings (site-style ornament) ── */
.home-page .home-section-head {
	text-align: center;
	margin-bottom: 36px;
	position: relative;
	padding-bottom: 18px;
}

.home-page .home-section-head::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 80px;
	height: 2px;
	margin-left: -40px;
	background: var(--gold);
}

.home-page .home-section-head h2 {
	font-family: playfair_displayregular, 'Playfair Display', serif;
	font-size: clamp(22px, 2.8vw, 32px);
	font-weight: 400;
	font-style: italic;
	line-height: 1.35;
	margin: 0;
	color: var(--ink);
}

.home-page .home-section-head--light h2 {
	color: var(--ink);
}

/* ── Intro ── */
.home-page .home-intro {
	padding: 64px 0 56px;
	background: var(--white);
}

.home-page .home-prose {
	margin: 0 0 40px;
}

.home-page .home-prose p,
.home-page .home-showroom p {
	font-family: avenirregular, sans-serif;
	font-size: 16px;
	line-height: 1.85;
	color: var(--muted);
	margin-bottom: 1.1em;
}

.home-page .home-showroom {
	padding: 28px 32px;
	background: var(--cream);
	border-top: 3px solid var(--sage);
}

.home-page .home-showroom p strong {
	font-family: playfair_displayregular, serif;
	font-size: 18px;
	color: var(--ink);
	font-weight: 400;
}

.home-page .home-showroom__details {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px 32px;
	margin-top: 8px;
	padding-top: 16px;
	border-top: 1px dashed rgba(176, 141, 87, 0.35);
}

.home-page .home-showroom__details p {
	margin: 0;
}

.home-page a {
	color: var(--gold);
}

.home-page a:hover {
	color: #967341;
}

/* ── Why Visit ── */
.home-page .home-why {
	padding: 56px 0 64px;
	background: var(--cream);
}

.home-page .home-why__grid {
	margin-top: 8px;
}

.home-page .home-why__item {
	height: 100%;
	padding: 28px 22px;
	background: var(--white);
	text-align: center;
	border: 1px solid rgba(190, 197, 179, 0.55);
}

.home-page .home-why__item h3 {
	font-family: playfair_displayregular, serif;
	font-size: 17px;
	color: var(--gold);
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--gold);
	display: inline-block;
}

.home-page .home-why__item p {
	font-family: avenirregular, sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: var(--muted);
	margin: 0;
}

.home-page .home-why .col-md-6 {
	margin-bottom: 24px;
}

@media (min-width: 992px) {
	.home-page .home-why .col-lg-3 {
		margin-bottom: 0;
	}
}

/* ── Quote band ── */
.home-page .home-quote {
	padding: 56px 0;
	background: var(--sage);
	text-align: center;
}

.home-page .home-quote h2 {
	font-family: playfair_displayregular, serif;
	font-size: clamp(22px, 2.8vw, 30px);
	font-style: italic;
	font-weight: 400;
	color: var(--white);
	margin: 0 0 16px;
}

.home-page .home-quote p {
	font-family: avenirregular, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.92);
	margin: 0 auto 28px;
}

/* ── Call section ── */
.home-page .home-call {
	padding: 52px 0;
	background: var(--white);
	text-align: center;
}

.home-page .home-call h2 {
	font-family: playfair_displayregular, serif;
	font-size: clamp(22px, 2.8vw, 30px);
	font-weight: 400;
	color: var(--ink);
	margin: 0 0 12px;
}

.home-page .home-call p {
	font-family: avenirregular, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: var(--muted);
	margin: 0 auto 24px;
}

/* ── Buttons (extends site view-button style) ── */
.home-page .home-cta {
	display: inline-block;
	padding: 10px 32px;
	font-family: avenirregular, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	background: var(--gold);
	color: var(--white) !important;
	border: 2px solid var(--gold);
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.home-page .home-cta:hover {
	background: #967341;
	border-color: #967341;
	color: var(--white) !important;
	text-decoration: none;
}

.home-page .home-cta--sage {
	background: var(--white);
	color: var(--ink) !important;
	border-color: var(--sage);
}

.home-page .home-cta--sage:hover {
	background: var(--sage);
	border-color: var(--sage);
	color: var(--white) !important;
}

/* ── Video ── */
.home-page .home-video {
	padding: 56px 0 72px;
	background: var(--white);
	border-top: 1px solid #eee;
}

.home-page .home-video__copy h2 {
	font-family: playfair_displayregular, serif;
	font-size: clamp(22px, 2.5vw, 28px);
	font-style: italic;
	font-weight: 400;
	line-height: 1.35;
	margin: 0 0 16px;
	color: var(--ink);
}

.home-page .home-video__copy p {
	font-family: avenirregular, sans-serif;
	font-size: 15px;
	line-height: 1.8;
	color: var(--muted);
	margin-bottom: 1em;
}

.home-page .home-video__embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	background: var(--ink);
}

.home-page .home-video__embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
	.home-page .home-trust__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 0;
	}

	.home-page .home-trust__item:nth-child(2)::after,
	.home-page .home-trust__item:nth-child(4)::after {
		display: none;
	}

	.home-page .home-trust__item {
		padding: 12px 16px;
	}

	.home-page .home-trust__item:not(:last-child)::after {
		height: 40px;
	}

	.home-page .home-video__copy {
		margin-bottom: 32px;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.home-page .home-trust {
		padding: 22px 0;
	}

	.home-page .home-trust__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.home-page .home-trust__item {
		flex-direction: row;
		align-items: center;
		text-align: left;
		padding: 14px 0;
		border-bottom: 1px solid rgba(176, 141, 87, 0.18);
	}

	.home-page .home-trust__item:last-child {
		border-bottom: none;
	}

	.home-page .home-trust__item::after {
		display: none !important;
	}

	.home-page .home-trust__icon {
		width: 40px;
		height: 40px;
		font-size: 15px;
		margin: 0 16px 0 0;
	}

	.home-page .home-trust__icon i,
	.home-page .home-trust__icon .fa {
		font-size: 15px;
	}

	.home-page .home-trust__label {
		max-width: none;
		font-size: 12px;
	}

	.home-page .home-intro,
	.home-page .home-why,
	.home-page .home-quote,
	.home-page .home-call,
	.home-page .home-video {
		padding: 40px 0;
	}

	.home-page .home-showroom {
		padding: 22px 20px;
	}

	.home-page .home-showroom__details {
		flex-direction: column;
	}
}
