/* "Why preserved moss" facts — one wide photo tile, two square photo tiles,
   one stat tile; a strip of linked at-a-glance facts underneath. */
.facts {
	background: #fff;
}

.facts__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 96px 60px;
	box-sizing: border-box;
}

.facts__head {
	max-width: 640px;
	margin: 0 auto 48px;
	text-align: center;
}

.facts__eyebrow {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 20px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #669F2A;
}

.facts__title {
	margin: 0 0 16px;
	font-size: 48px;
	line-height: 58px;
	letter-spacing: -1px;
	font-weight: 400;
	color: #181D27;
}

.facts__lead {
	margin: 0;
	font-size: 19px;
	line-height: 30px;
	font-weight: 300;
	color: #535862;
}

.facts__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 320px;
	gap: 16px;
}

.fact {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border-radius: 16px;
	overflow: hidden;
	background: #1F2A17;
	color: #fff;
	text-decoration: none;
	isolation: isolate;
}

.fact--wide {
	grid-column: span 2;
	grid-row: span 2;
}

.fact img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	transition: transform .6s cubic-bezier(.22,.61,.36,1);
}

.fact:hover img {
	transform: scale(1.04);
}

/* swatch row sits bottom-left of its source photo; keep it in the crop at every ratio */
.fact__img--swatches {
	object-position: 40% 62%;
}

.fact__body {
	padding: 24px;
	background: linear-gradient(180deg, rgba(10,20,10,0) 0%, rgba(10,20,10,.72) 55%, rgba(10,20,10,.88) 100%);
	padding-top: 96px;
}

.fact__kicker {
	margin: 0 0 6px;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	color: #B7D68A;
}

.fact__title {
	margin: 0 0 6px;
	font-size: 22px;
	line-height: 28px;
	font-weight: 500;
	letter-spacing: -.2px;
	color: #fff;
}

.fact__text {
	margin: 0;
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	color: #D7E0CD;
}

.fact--stat {
	grid-column: span 2;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 32px;
	padding: 24px 32px;
	background: linear-gradient(140deg, #24361B 0%, #3F621A 100%);
}

.fact--stat .fact__text {
	max-width: 300px;
	font-size: 16px;
	line-height: 24px;
}

.fact__stat-group {
	display: flex;
	flex-direction: column;
	flex: none;
}

.fact__stat {
	margin: 0;
	font-size: 96px;
	line-height: 1;
	font-weight: 300;
	letter-spacing: -4px;
	color: #fff;
}

.fact__stat--text {
	font-size: clamp(36px, 4vw, 40px);
	line-height: 1.1;
	font-weight: 400;
	letter-spacing: -1px;
}

.fact__stat-label {
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 600;
	color: #B7D68A;
}

.facts__strip {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 40px;
}

.facts__strip li {
	position: relative;
	padding-left: 22px;
	font-size: 15px;
	line-height: 24px;
	color: #414651;
}

.facts__strip li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 9px;
	height: 9px;
	border-radius: 9999px;
	background: #669F2A;
}

.facts__strip a {
	color: inherit;
	text-decoration: none;
}

.facts__strip a:hover {
	color: #4F7A21;
}

@media (max-width: 1024px) {
	.facts__grid {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: 280px;
	}

	.fact--wide {
		grid-row: auto;
	}
}

@media (max-width: 768px) {
	.facts__inner {
		padding: 56px 20px;
	}

	.facts__head {
		margin-bottom: 32px;
	}

	.facts__title {
		font-size: 30px;
		line-height: 38px;
		letter-spacing: -.5px;
	}

	.facts__lead {
		font-size: 16px;
		line-height: 24px;
	}

	.facts__grid {
		grid-template-columns: 1fr;
		grid-auto-rows: 240px;
		gap: 12px;
	}

	.fact--wide {
		grid-column: auto;
		grid-row: auto;
	}

	.fact--stat {
		grid-column: auto;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 12px;
		padding: 24px;
	}

	.fact__body {
		padding: 18px;
		padding-top: 72px;
	}

	.fact__title {
		font-size: 19px;
		line-height: 25px;
	}

	.fact__text {
		font-size: 14px;
		line-height: 21px;
	}

	.fact__stat {
		font-size: 72px;
	}

	.facts__strip {
		margin-top: 28px;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

/* Round 5: the text stat wrapped to two 110 px lines on phones and swallowed the tile */
@media (max-width: 768px) {
	.fact__stat.fact__stat--text { font-size: 34px; line-height: 1.15; }
}
