/**
 * Homepage-only marketing — hero band + trust strip (loads with front-marketing.css on front page only).
 */

/* Hero — large financial-style band (inspired by premium advisor layouts) */
.wheatland-hero {
	position: relative;
	isolation: isolate;
	min-height: min(78vh, 52rem);
	display: flex;
	align-items: center;
	padding: clamp(3.5rem, 10vw, 7rem) 0;
	background:
		linear-gradient(145deg, rgba(15, 10, 6, 0.97) 0%, rgba(47, 33, 18, 0.94) 42%, rgba(64, 45, 23, 0.82) 100%),
		radial-gradient(ellipse 90% 60% at 10% 20%, rgba(217, 165, 102, 0.25) 0%, transparent 55%),
		radial-gradient(ellipse 70% 50% at 90% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
		#1a120c;
	color: var(--wm-white);
	overflow: hidden;
}

.wheatland-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0.35;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23d9a566' stroke-opacity='0.12'%3E%3Cpath d='M0 40h80M40 0v80'/%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.wheatland-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 900px) {
	.wheatland-hero__inner {
		grid-template-columns: 1.2fr 1fr;
		gap: 3.5rem;
		align-items: stretch;
	}
}

.wheatland-hero__title {
	font-family: var(--wm-serif);
	font-size: clamp(2.5rem, 6vw, 3.75rem);
	font-weight: 600;
	line-height: 1.08;
	margin: 0 0 0.75rem;
	letter-spacing: -0.03em;
}

.wheatland-hero__title-line {
	display: block;
}

.wheatland-hero__title-line--accent {
	color: var(--wm-gold-soft);
	font-weight: 600;
	margin-top: 0.2rem;
}

.wheatland-hero__tagline {
	font-family: var(--wm-serif);
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	font-style: italic;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 1rem;
	opacity: 0.95;
}

.wheatland-hero__sub {
	font-size: 1.0625rem;
	line-height: 1.65;
	opacity: 0.9;
	margin: 0 0 1.75rem;
	max-width: 44ch;
}

.wheatland-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	align-items: center;
}

/* Ghost CTA — dark hero only (homepage marketing hero) */
.wheatland-hero .wheatland-btn.wheatland-btn--ghost {
	background: transparent;
	color: var(--wm-white);
	border-color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.wheatland-hero .wheatland-btn.wheatland-btn--ghost:hover,
.wheatland-hero .wheatland-btn.wheatland-btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--wm-white);
	color: var(--wm-white);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
	transform: translateY(-1px);
}

.wheatland-hero__card {
	align-self: center;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--wm-radius-lg);
	padding: 2rem 1.75rem;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	border-left: 4px solid var(--wm-gold);
}

.wheatland-hero__card-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wm-gold);
	margin: 0 0 0.5rem;
}

.wheatland-hero__card-title {
	font-family: var(--wm-serif);
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0 0 0.85rem;
	color: var(--wm-white);
	line-height: 1.25;
}

.wheatland-hero__card p {
	margin: 0;
	font-size: 0.9375rem;
	opacity: 0.9;
	line-height: 1.65;
}

/* Trust strip — “as featured / credentials” rhythm */
.wheatland-trust {
	background: var(--wm-white);
	border-bottom: 1px solid var(--wm-line);
	padding: 1rem 0;
}

.wheatland-trust__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1.25rem;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--wm-muted);
}

.wheatland-trust__sep {
	width: 1px;
	height: 1rem;
	background: var(--wm-line);
	display: inline-block;
}

@media (max-width: 599px) {
	.wheatland-trust__sep {
		display: none;
	}

	.wheatland-trust__item {
		width: 100%;
	}
}
