.comfy-hero {
	position: relative;
	isolation: isolate;
	width: 100%;
	min-height: 100svh;
	margin: 0;
	overflow: hidden;
	background: #1a1a1a;
	color: #fff;
}

.comfy-hero__picture,
.comfy-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.comfy-hero__img {
	object-fit: cover;
	object-position: center;
	display: block;
}

.comfy-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 58%, rgba(20, 18, 16, 0.18) 82%, rgba(20, 18, 16, 0.38) 100%),
		linear-gradient(90deg, rgba(20, 18, 16, 0.22) 0%, rgba(20, 18, 16, 0.08) 28%, transparent 52%);
	pointer-events: none;
}

.comfy-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	min-height: 100svh;
	max-width: 1400px;
	margin: 0 auto;
	padding: calc(var(--header-height, 64px) + 3.5rem) 1.75rem 4.5rem;
}

.comfy-hero__copy {
	max-width: 36rem;
	text-align: left;
}

.comfy-hero__kicker {
	margin: 0 0 0.85rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #c5d0b8;
}

.comfy-hero__title {
	margin: 0;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 600;
	font-size: clamp(2.1rem, 5vw, 3.6rem);
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: #fff;
	text-align: left;
	text-wrap: balance;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(0, 0, 0, 0.25);
}

.comfy-hero__title::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	margin: 1.1rem 0 0;
	background: #5f7352;
	border-radius: 2px;
}

.comfy-hero__text {
	margin: 1.1rem 0 0;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
	text-align: left;
}

.comfy-hero__actions {
	margin: 1.75rem 0 0;
}

.comfy-hero__btn {
	display: inline-block;
	padding: 0.85rem 1.6rem;
	border-radius: 8px;
	background: #5f7352;
	color: #fff !important;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.comfy-hero__btn:hover {
	background: #4d5e42;
	color: #fff !important;
	transform: translateY(-1px);
}

.comfy-hero-missing {
	padding: 4rem 1.5rem;
	text-align: center;
	color: #888;
}

@media (max-width: 640px) {
	.comfy-hero__inner {
		padding: calc(var(--header-height, 64px) + 2.5rem) 1.25rem 3.25rem;
		align-items: flex-end;
	}

	.comfy-hero__copy {
		max-width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.comfy-hero__btn {
		transition: none;
	}
}
