/*
 * Home hero — DARK.
 *
 * IMPORTANT:
 * The 45/55 desktop split is intentional. If changed, re-check title
 * wrapping between 1024 and 1280 px.
 */

.ss-home-hero {
	padding-block: clamp(56px, 7vw, 104px);
	background: var(--ss-graphite);
	color: var(--ss-ivory);
}

.ss-home-hero .ss-home-eyebrow {
	color: #c9a3b0;
}

.ss-home-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
	gap: clamp(40px, 6vw, 88px);
	align-items: center;
}

.ss-home-hero__content {
	min-width: 0;
}

.ss-home-hero__title {
	max-width: 9ch;
	margin: 0 0 28px;
	color: var(--ss-ivory);
	font-size: clamp(3.5rem, 6vw, 6.6rem);
	font-weight: 700;
	letter-spacing: -0.055em;
	line-height: 0.9;
}

.ss-home-hero__lead {
	max-width: 38rem;
	margin: 0 0 30px;
	color: #d8d2cc;
	font-size: clamp(1rem, 1.3vw, 1.2rem);
	line-height: 1.65;
}

.ss-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin-bottom: clamp(40px, 5vw, 70px);
}

.ss-home-hero .ss-button--dark {
	background: var(--ss-ivory);
	color: var(--ss-graphite);
}

.ss-home-hero .ss-button--dark:hover,
.ss-home-hero .ss-button--dark:focus-visible {
	background: #ffffff;
	color: var(--ss-accent);
}

.ss-home-hero .ss-button--text {
	color: var(--ss-ivory);
}

.ss-home-hero .ss-button--text:hover,
.ss-home-hero .ss-button--text:focus-visible {
	color: #c9a3b0;
}

.ss-home-hero__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding-top: 20px;
	border-top: 1px solid var(--ss-border-light);
}

.ss-home-hero__facts div {
	min-width: 0;
}

.ss-home-hero__facts dt {
	margin-bottom: 5px;
	color: #c9a3b0;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.ss-home-hero__facts dd {
	margin: 0;
	color: #d8d2cc;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.4;
}

.ss-home-hero__visual {
	min-width: 0;
}

.ss-home-hero__figure {
	position: relative;
	margin: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--ss-graphite-soft);
}

.ss-home-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ss-home-hero__placeholder {
	aspect-ratio: 4 / 5;
	background: linear-gradient(145deg, rgba(116,64,82,.8), rgba(20,20,22,.95));
}

@media (max-width: 999px) {
	.ss-home-hero__inner {
		grid-template-columns: 1fr;
	}

	.ss-home-hero__content,
	.ss-home-hero__visual {
		max-width: 760px;
	}

	.ss-home-hero__figure {
		aspect-ratio: 16 / 11;
	}
}

@media (max-width: 689px) {
	.ss-home-hero {
		padding-block: 42px 52px;
	}

	.ss-home-hero__inner {
		gap: 32px;
	}

	.ss-home-hero__title {
		max-width: 8ch;
		margin-bottom: 22px;
		font-size: clamp(3rem, 14vw, 4.7rem);
	}

	.ss-home-hero__lead {
		margin-bottom: 24px;
		font-size: 1rem;
	}

	.ss-home-hero__actions {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 36px;
	}

	.ss-home-hero__facts {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.ss-home-hero__facts div {
		display: grid;
		grid-template-columns: 32px 1fr;
		align-items: baseline;
		gap: 8px;
	}

	.ss-home-hero__facts dt {
		margin: 0;
	}

	.ss-home-hero__figure {
		aspect-ratio: 4 / 5;
	}
}
