.section--products {
	background: #fffaf0;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.product-grid--featured {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 72px;
}

.product-card {
	min-width: 0;
}

.product-card > a {
	display: flex;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	background: var(--paper);
	border-radius: 24px;
	transition: transform .35s ease, box-shadow .35s ease;
}

.product-card:nth-child(3n+2) > a {
	background: #e5edcf;
}

.product-card:nth-child(3n) > a {
	background: #f8d9b7;
}

.product-card:hover > a {
	transform: translateY(-6px);
	box-shadow: 0 24px 55px rgba(23, 53, 33, .13);
}

.product-card__media {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--soft);
}

.product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s ease;
}

.product-card:hover .product-card__media img {
	transform: scale(1.04);
}

.product-card__copy {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px;
}

.product-card__copy h2,
.product-card__copy h3 {
	margin: 0 0 14px;
	font-family: var(--display);
	font-size: clamp(1.8rem, 2.5vw, 2.5rem);
	line-height: .98;
	letter-spacing: -.035em;
}

.product-card__copy > p:not(.eyebrow) {
	margin: 0 0 26px;
}

.product-card__copy > span {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	font-size: 13px;
	font-weight: 700;
}

.products-section__action {
	display: flex;
	justify-content: center;
	margin-top: 52px;
}

.product-catalog__hero {
	padding: 210px 0 105px;
	color: #fff;
	background: linear-gradient(135deg, var(--dark), #245c32);
}

.product-catalog__hero h1,
.product-single__hero h1 {
	max-width: 1050px;
	margin: 0;
	font-family: var(--display);
	font-size: clamp(4.2rem, 9vw, 9rem);
	font-weight: 600;
	line-height: .86;
	letter-spacing: -.055em;
}

.product-catalog__lead {
	max-width: 700px;
	margin-top: 28px;
	font-size: 1.15rem;
}

.product-catalog__lead p {
	margin: 0;
}

.brand-crops .product-catalog__hero.inner-hero {
	padding: 170px 0 80px;
	color: var(--ink);
	background: var(--paper);
}

.brand-crops .product-catalog__hero.inner-hero h1 {
	font-size: clamp(4rem, 8vw, 8rem);
	line-height: .88;
}

.product-catalog__body {
	padding: 72px 0 150px;
	background: #fffaf0;
}

.product-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 56px;
}

.product-filters a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	padding: 9px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}

.product-filters a[aria-current="page"],
.product-filters a:hover {
	border-color: var(--dark);
	background: var(--dark);
	color: #fff;
}

.product-single__hero {
	padding: 165px 0 105px;
	background: var(--paper);
}

.product-single__hero-grid {
	display: grid;
	grid-template-columns: .88fr 1.12fr;
	gap: clamp(50px, 8vw, 120px);
	align-items: center;
}

.product-single__lead {
	max-width: 610px;
	margin: 30px 0 0;
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.product-single__media {
	height: 650px;
	margin: 0;
	overflow: hidden;
	border-radius: 48% 48% 24px 24px;
	background: var(--soft);
}

.product-single__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-single__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: clamp(60px, 8vw, 130px);
	padding-top: 105px;
	padding-bottom: 135px;
}

.product-single__content {
	max-width: 760px;
	font-size: 1.12rem;
}

.product-single__content > p:first-child {
	margin-top: 0;
	font-size: 1.3rem;
}

.product-single__content h2,
.product-specs h2,
.product-single__cta h2 {
	font-family: var(--display);
	line-height: .95;
	letter-spacing: -.035em;
}

.product-single__content h2 {
	margin: 70px 0 22px;
	font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.product-specs {
	align-self: start;
	padding: 38px;
	background: var(--soft);
	border-radius: 24px;
}

.product-specs h2 {
	margin: 0 0 28px;
	font-size: 2.7rem;
}

.product-specs dl {
	margin: 0;
}

.product-specs dl > div {
	padding: 18px 0;
	border-top: 1px solid var(--line);
}

.product-specs dt {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.product-specs dd {
	margin: 6px 0 0;
}

.product-specs__note {
	margin: 26px 0 0;
	font-size: 12px;
}

.product-single__cta {
	padding: 105px 0;
	color: #fff;
	background: var(--dark);
}

.product-single__cta h2 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(3rem, 6vw, 6.5rem);
}

.product-single__cta p:not(.eyebrow) {
	max-width: 640px;
	margin: 28px 0 36px;
}

@media (max-width: 1050px) {
	.product-grid--featured,
	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-single__hero-grid,
	.product-single__body {
		grid-template-columns: 1fr;
	}

	.product-single__media {
		height: 560px;
	}

	.product-specs {
		max-width: 650px;
	}
}

@media (max-width: 600px) {
	.product-grid--featured,
	.product-grid {
		grid-template-columns: 1fr;
	}

	.product-grid--featured {
		margin-top: 48px;
	}

	.product-catalog__hero {
		padding: 150px 0 72px;
	}

	.brand-crops .product-catalog__hero.inner-hero {
		padding: 130px 0 60px;
	}

	.product-catalog__hero h1,
	.product-single__hero h1 {
		font-size: clamp(3.7rem, 18vw, 5.2rem);
	}

	.product-catalog__body {
		padding: 48px 0 90px;
	}

	.product-filters {
		margin-bottom: 42px;
	}

	.product-single__hero {
		padding: 125px 0 76px;
	}

	.product-single__media {
		height: 390px;
		border-radius: 120px 120px 20px 20px;
	}

	.product-single__body {
		padding-top: 72px;
		padding-bottom: 90px;
	}

	.product-specs {
		padding: 28px;
	}

	.product-single__cta {
		padding: 80px 0;
	}
}
