/* Insights home hero — Style A (--split) + Style B (--bleed)
   Overrides legacy lavender card hero from home.css */

.insights-home-hero {
	--ih-ink: #181b1b;
	--ih-orange: #f89b20;
	--ih-sand: #f3ebe0;
	--ih-mist: #e8e2d8;
	--ih-text: #f7f4ef;
	--ih-muted: rgba(247, 244, 239, 0.78);
	--ih-header-offset: 110px;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	background: var(--ih-ink);
	isolation: isolate;
}

.insights-home-hero .container,
.insights-home-hero__shell {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.insights-home-hero__row {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: stretch;
	min-height: clamp(520px, 78vh, 720px);
	gap: 0;
}

.insights-home-hero__content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: none;
	min-width: 0;
	padding: calc(var(--ih-header-offset) + 36px) clamp(28px, 5vw, 72px) 56px clamp(28px, 6vw, 88px);
	color: var(--ih-text);
}

.insights-home-hero__brand {
	margin: 0 0 18px;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
	border-radius: 0;
	display: block;
	width: max-content;
	max-width: 100%;
	color: var(--ih-orange);
	font-family: Outfit, "OpenSans-Bold", Helvetica, Arial, sans-serif;
	font-size: clamp(22px, 2.4vw, 34px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
	text-transform: none;
}

.insights-home-hero__brand::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	margin-top: 12px;
	background: var(--ih-orange);
}

.insights-home-hero h1 {
	margin: 0 0 18px;
	padding: 0;
	color: var(--ih-text);
	font-family: Outfit, "Cambria-Bold", Georgia, serif;
	font-size: clamp(34px, 4.4vw, 56px);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.insights-home-hero h1 span {
	display: block;
	color: var(--ih-orange);
}

.insights-home-hero__description {
	margin: 0 0 28px;
	max-width: 34rem;
	color: var(--ih-muted);
	font-family: Outfit, "OpenSans-Regular", Helvetica, Arial, sans-serif;
	font-size: clamp(15px, 1.15vw, 17px);
	font-weight: 400;
	line-height: 1.7;
}

.insights-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 26px;
	margin: 0;
}

.insights-home-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 28px;
	border-radius: 4px;
	background: var(--ih-orange);
	color: #181b1b;
	font-family: Outfit, "OpenSans-Bold", Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-decoration: none;
	box-shadow: none;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.insights-home-hero__cta span {
	display: inline-flex;
	transition: transform 0.25s ease;
}

.insights-home-hero__cta:hover {
	background: #fff;
	color: #181b1b;
	transform: translateY(-2px);
	box-shadow: none;
}

.insights-home-hero__cta:hover span {
	transform: translateX(4px);
}

.insights-home-hero__link {
	display: inline-flex;
	align-items: center;
	color: var(--ih-text);
	font-family: Outfit, "OpenSans-Bold", Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	padding-bottom: 3px;
	border-bottom: 2px solid rgba(247, 244, 239, 0.35);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.insights-home-hero__link:hover {
	color: var(--ih-orange);
	border-color: var(--ih-orange);
}

.insights-home-hero__media {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: none;
	min-height: 100%;
	overflow: hidden;
}

.insights-home-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

/* Hide legacy pieces if any remain */
.insights-home-hero__eyebrow,
.insights-home-hero__glow,
.insights-home-hero__media-card,
.insights-home-hero__badge,
.insights-home-hero__stats {
	display: none !important;
}

/* Motion */
@keyframes ih-rise {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ih-zoom {
	from {
		opacity: 0;
		transform: scale(1.06);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes ih-scrim {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.insights-home-hero__brand,
	.insights-home-hero h1,
	.insights-home-hero__description,
	.insights-home-hero__actions {
		opacity: 0;
		animation: ih-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	}

	.insights-home-hero__brand {
		animation-delay: 0.05s;
	}

	.insights-home-hero h1 {
		animation-delay: 0.14s;
	}

	.insights-home-hero__description {
		animation-delay: 0.24s;
	}

	.insights-home-hero__actions {
		animation-delay: 0.34s;
	}

	.insights-home-hero__image {
		opacity: 0;
		animation: ih-zoom 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
	}
}

/* ═══════════════════════════════════════════
   Style A — Bold Split (default live)
   ═══════════════════════════════════════════ */

.insights-home-hero--split {
	background-color: #141616;
	background-image: none;
}

.insights-home-hero--split .insights-home-hero__content {
	background-color: #141616;
	background-image:
		linear-gradient(90deg, rgba(248, 155, 32, 0.1) 0 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px);
	background-size: 42px 42px;
	color: #f7f4ef;
}

.insights-home-hero--split .insights-home-hero__content::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(72px, 12%);
	pointer-events: none;
	background: linear-gradient(90deg, transparent, rgba(20, 22, 22, 0.35));
}

.insights-home-hero--split h1 {
	color: #f7f4ef;
}

.insights-home-hero--split h1 span {
	color: var(--ih-orange);
}

.insights-home-hero--split .insights-home-hero__description {
	color: rgba(247, 244, 239, 0.86);
}

.insights-home-hero--split .insights-home-hero__link {
	color: #f7f4ef;
	border-bottom-color: rgba(247, 244, 239, 0.4);
}

.insights-home-hero--split .insights-home-hero__link:hover {
	color: var(--ih-orange);
	border-bottom-color: var(--ih-orange);
}

.insights-home-hero--split::before,
.insights-home-hero--split::after {
	content: none;
	display: none;
}

.insights-home-hero--split .insights-home-hero__media {
	background:
		radial-gradient(ellipse 70% 60% at 70% 40%, rgba(248, 155, 32, 0.18), transparent 60%),
		linear-gradient(160deg, #efe6d8 0%, #e4d9c8 100%);
	padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 40px);
}

.insights-home-hero--split .insights-home-hero__image {
	width: min(100%, 560px);
	height: auto;
	max-height: min(78vh, 620px);
	object-fit: contain;
	object-position: center;
	margin-inline: auto;
}

/* ═══════════════════════════════════════════
   Style B — Full-bleed Visual
   Toggle: replace --split with --bleed on <section>
   ═══════════════════════════════════════════ */

.insights-home-hero--bleed {
	background: #121414;
	min-height: clamp(560px, 86vh, 760px);
}

.insights-home-hero--bleed .insights-home-hero__row {
	display: block;
	position: relative;
	min-height: clamp(560px, 86vh, 760px);
}

.insights-home-hero--bleed .insights-home-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	padding: 0;
	background: #1a1612;
}

.insights-home-hero--bleed .insights-home-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 68% center;
	filter: saturate(0.92) contrast(1.02);
}

.insights-home-hero--bleed::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(12, 14, 14, 0.94) 0%, rgba(12, 14, 14, 0.78) 38%, rgba(12, 14, 14, 0.28) 62%, rgba(12, 14, 14, 0.12) 100%),
		linear-gradient(180deg, rgba(12, 14, 14, 0.35) 0%, transparent 28%, transparent 72%, rgba(12, 14, 14, 0.45) 100%);
}

.insights-home-hero--bleed::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image: radial-gradient(rgba(248, 155, 32, 0.09) 1px, transparent 1px);
	background-size: 18px 18px;
	-webkit-mask-image: radial-gradient(ellipse 55% 70% at 18% 50%, #000 0%, transparent 70%);
	mask-image: radial-gradient(ellipse 55% 70% at 18% 50%, #000 0%, transparent 70%);
	opacity: 0.7;
}

@media (prefers-reduced-motion: no-preference) {
	.insights-home-hero--bleed::before {
		opacity: 0;
		animation: ih-scrim 0.9s ease 0.05s forwards;
	}
}

.insights-home-hero--bleed .insights-home-hero__content {
	position: relative;
	z-index: 2;
	max-width: min(560px, 92vw);
	padding-top: calc(var(--ih-header-offset) + 48px);
	padding-bottom: 64px;
	min-height: clamp(560px, 86vh, 760px);
}

.insights-home-hero--bleed .insights-home-hero__brand {
	font-size: clamp(28px, 3.2vw, 42px);
}

.insights-home-hero--bleed h1 {
	font-size: clamp(36px, 4.8vw, 60px);
}

.insights-home-hero--bleed .insights-home-hero__cta {
	background: var(--ih-orange);
}

.insights-home-hero--bleed .insights-home-hero__cta:hover {
	background: #fff;
}

/* ═══════════════════════════════════════════
   Stats strip (below hero)
   ═══════════════════════════════════════════ */

.insights-home-hero-stats {
	background: #fff;
	border-bottom: 1px solid rgba(24, 27, 27, 0.08);
}

.insights-home-hero-stats__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 22px clamp(20px, 4vw, 40px);
}

.insights-home-hero-stats ul {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 18px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.insights-home-hero-stats li {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1 1 160px;
	min-width: 140px;
	padding-right: 20px;
	border-right: 1px solid rgba(24, 27, 27, 0.1);
}

.insights-home-hero-stats li:last-child {
	border-right: 0;
	padding-right: 0;
}

.insights-home-hero-stats strong {
	font-family: Outfit, "Cambria-Bold", Georgia, serif;
	font-size: clamp(24px, 2.2vw, 30px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--ih-ink, #181b1b);
}

.insights-home-hero-stats span {
	font-family: Outfit, "OpenSans-Bold", Helvetica, Arial, sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #7a7468;
}

/* Defeat legacy lavender hero from home.css */
.blog-content-bg > .insights-home-hero.insights-home-hero--split {
	background-color: #141616 !important;
	background-image: none !important;
	padding: 0 !important;
}

.blog-content-bg > .insights-home-hero.insights-home-hero--bleed {
	background-color: #121414 !important;
	padding: 0 !important;
}

/* Mobile: kill home.css 115px padding + vertical centering empty space */
@media (max-width: 1024px) {
	.insights-home-hero.insights-home-hero--split,
	.insights-home-hero.insights-home-hero--bleed {
		padding: 0 !important;
		min-height: 0 !important;
		height: auto !important;
	}

	.insights-home-hero--split .insights-home-hero__row,
	.insights-home-hero--bleed .insights-home-hero__row {
		display: block !important;
		min-height: 0 !important;
		height: auto !important;
		gap: 0 !important;
		text-align: left !important;
	}

	.insights-home-hero--split .insights-home-hero__content {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		max-width: 100% !important;
		min-height: 0 !important;
		height: auto !important;
		padding: 96px 20px 28px !important;
		text-align: left !important;
	}

	.insights-home-hero--split .insights-home-hero__description {
		margin: 0 0 18px !important;
		max-width: none !important;
	}

	.insights-home-hero--split .insights-home-hero__actions {
		margin: 0 !important;
		justify-content: flex-start !important;
	}

	.insights-home-hero--split .insights-home-hero__media {
		padding: 12px 16px 20px;
	}
}

@media (max-width: 767px) {
	.insights-home-hero--split .insights-home-hero__content {
		padding: 84px 16px 22px !important;
	}

	.insights-home-hero--split h1 {
		margin: 0 0 10px !important;
		padding: 0 !important;
		font-size: clamp(24px, 7vw, 30px) !important;
	}

	.insights-home-hero--split .insights-home-hero__description {
		margin: 0 0 16px !important;
		font-size: 14px !important;
		line-height: 1.5 !important;
	}

	.insights-home-hero--split .insights-home-hero__media {
		display: none !important;
	}

	.insights-home-hero--bleed .insights-home-hero__content {
		padding: 84px 16px 24px !important;
		min-height: 0 !important;
		height: auto !important;
		justify-content: flex-start !important;
	}
}

@media (max-width: 480px) {
	.insights-home-hero.insights-home-hero--split,
	.insights-home-hero.insights-home-hero--bleed {
		padding: 0 !important;
	}

	.insights-home-hero--split .insights-home-hero__content {
		padding: 76px 14px 18px !important;
	}

	.insights-home-hero--split h1 {
		font-size: clamp(22px, 6.8vw, 28px) !important;
	}
}
