:root {
	--eg-green: #758813;
	--eg-green-dark: #55630e;
	--eg-orange: #d96818;
	--eg-ink: #171711;
	--eg-muted: #626052;
	--eg-cream: #fbf5e9;
	--eg-line: #e9e1d4;
	--eg-white: #fff;
	--eg-serif: Georgia, "Times New Roman", serif;
	--eg-sans: "Trebuchet MS", Verdana, sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--eg-ink);
	background: var(--eg-white);
	font-family: var(--eg-sans);
	line-height: 1.6;
}

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

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.eg-topbar {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding: 10px 6vw;
	background: #f6ecdd;
	color: #3d3a2f;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.eg-topbar span:nth-child(2) {
	text-align: center;
}

.eg-topbar span:nth-child(3) {
	text-align: right;
}

.eg-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 96px;
	padding: 0 6vw;
	background: var(--eg-white);
	border-bottom: 1px solid var(--eg-line);
}

.eg-logo {
	font-family: var(--eg-serif);
	font-size: 34px;
}

.eg-logo img {
	max-height: 72px;
	width: auto;
}

.eg-menu ul,
.eg-footer__menu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.eg-actions {
	display: flex;
	gap: 18px;
	font-size: 26px;
}

.eg-hero {
	min-height: 560px;
	display: flex;
	align-items: center;
	padding: 80px 7vw;
	background: linear-gradient(90deg, #fff7ec 0%, rgba(255, 247, 236, .86) 42%, rgba(255, 247, 236, .16) 100%), #f8efe1;
	background-position: center;
	background-size: cover;
}

.eg-hero__content {
	max-width: 570px;
}

.eg-hero h1,
.eg-section__intro h2,
.eg-experience h2,
.eg-passion h2 {
	margin: 0;
	font-family: var(--eg-serif);
	font-size: clamp(38px, 6vw, 76px);
	font-weight: 400;
	line-height: .98;
}

.eg-hero p {
	max-width: 420px;
	margin: 28px 0;
	font-size: 18px;
}

.eg-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.eg-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 46px;
	padding: 0 22px;
	border: 1px solid var(--eg-green);
	color: var(--eg-green-dark);
	background: transparent;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.eg-button--solid,
.eg-button:hover {
	color: var(--eg-white);
	background: var(--eg-green);
}

.eg-button--ghost {
	background: rgba(255, 255, 255, .72);
}

.eg-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 36px 8vw;
	border-bottom: 1px solid var(--eg-line);
	background: var(--eg-white);
}

.eg-benefits article {
	min-height: 150px;
	padding: 0 34px;
	text-align: center;
	border-right: 1px solid var(--eg-line);
}

.eg-benefits article:last-child {
	border-right: 0;
}

.eg-benefits img {
	width: 44px;
	height: 44px;
	margin: 0 auto 16px;
	object-fit: contain;
}

.eg-benefits h2 {
	margin: 0 0 8px;
	font-size: 13px;
	text-transform: uppercase;
}

.eg-benefits p {
	margin: 0;
	color: var(--eg-muted);
	font-size: 13px;
}

.eg-section {
	display: grid;
	grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
	gap: 48px;
	padding: 76px 8vw;
}

.eg-section__intro {
	align-self: center;
}

.eg-kicker {
	margin: 0 0 18px;
	color: var(--eg-orange);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.eg-section__intro h2 {
	font-size: clamp(34px, 4vw, 54px);
}

.eg-section__intro p:not(.eg-kicker) {
	margin: 22px 0 28px;
	color: var(--eg-muted);
}

.eg-slider {
	position: relative;
	min-width: 0;
	overflow: hidden;
	padding: 34px 26px 42px;
	perspective: 1100px;
}

.eg-slider__track {
	display: flex;
	align-items: center;
	gap: 22px;
	will-change: transform;
	transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.eg-product-card {
	flex: 0 0 clamp(230px, 31%, 330px);
	position: relative;
	z-index: 1;
	background: var(--eg-white);
	box-shadow: 0 16px 34px rgba(39, 31, 19, .1);
	opacity: .58;
	transform: scale(.86) rotateY(7deg);
	transform-origin: center;
	transition: opacity .45s ease, transform .55s cubic-bezier(.22, 1, .36, 1), box-shadow .45s ease;
}

.eg-product-card.is-prev {
	transform: scale(.9) rotateY(9deg) translateX(10px);
}

.eg-product-card.is-next {
	transform: scale(.9) rotateY(-9deg) translateX(-10px);
}

.eg-product-card.is-active {
	z-index: 3;
	opacity: 1;
	transform: scale(1.12) rotateY(0deg) translateY(-8px);
	box-shadow: 0 28px 58px rgba(39, 31, 19, .18);
}

.eg-product-card img,
.eg-product-card__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: linear-gradient(135deg, #eee1cd, #b58a45);
}

.eg-product-card h3 {
	margin: 18px 18px 6px;
	font-family: var(--eg-serif);
	font-size: 18px;
	font-weight: 400;
}

.eg-product-card p {
	margin: 0 18px 20px;
	color: var(--eg-green-dark);
	font-size: 14px;
	font-weight: 700;
}

.eg-slider__arrow {
	position: absolute;
	top: 42%;
	z-index: 5;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	color: var(--eg-white);
	background: var(--eg-green);
	font-size: 28px;
	cursor: pointer;
}

.eg-slider__arrow--prev {
	left: -18px;
}

.eg-slider__arrow--next {
	right: -18px;
}

.eg-categories {
	align-items: stretch;
}

.eg-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.eg-category-card {
	min-height: 340px;
	display: flex;
	align-items: flex-end;
	padding: 28px;
	color: var(--eg-white);
	background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .68)), #80612f;
	background-position: center;
	background-size: cover;
}

.eg-category-card span {
	font-family: var(--eg-serif);
	font-size: 25px;
	text-transform: uppercase;
}

.eg-product-slider--soft {
	position: relative;
	overflow: hidden;
	background: #f4f0df;
}

.eg-product-slider--soft::before {
	content: "";
	position: absolute;
	left: -18px;
	top: 24px;
	width: 190px;
	height: 300px;
	background: url("../images/olive-sprig.svg") center / contain no-repeat;
	opacity: .34;
	pointer-events: none;
}

.eg-product-slider--soft > * {
	position: relative;
	z-index: 1;
}

.eg-experience {
	min-height: 360px;
	display: flex;
	align-items: center;
	padding: 70px 8vw;
	color: var(--eg-white);
	background: linear-gradient(90deg, rgba(71, 78, 16, .72), rgba(71, 78, 16, .08)), #8f8c43;
	background-position: center;
	background-size: cover;
}

.eg-experience div {
	max-width: 470px;
}

.eg-experience .eg-kicker {
	color: #fff5c7;
}

.eg-experience h2 {
	font-size: clamp(34px, 4vw, 54px);
}

.eg-benefits--values {
	border-top: 1px solid var(--eg-line);
}

.eg-passion {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 54px;
	align-items: center;
	padding: 70px 9vw;
}

.eg-passion__image {
	min-height: 330px;
	background: #eee1cd;
}

.eg-passion__image img {
	width: 100%;
	height: 100%;
	min-height: 330px;
	object-fit: cover;
}

.eg-passion h2 {
	font-size: clamp(34px, 4vw, 52px);
}

.eg-passion p:not(.eg-kicker) {
	color: var(--eg-muted);
}

.eg-newsletter {
	display: grid;
	grid-template-columns: 1fr minmax(320px, 560px);
	gap: 32px;
	align-items: center;
	padding: 24px 9vw;
	color: var(--eg-white);
	background: var(--eg-green);
}

.eg-newsletter h2,
.eg-newsletter p {
	margin: 0;
}

.eg-newsletter h2 {
	font-size: 20px;
	text-transform: uppercase;
}

.eg-newsletter__form {
	display: flex;
}

.eg-newsletter input {
	flex: 1;
	min-height: 44px;
	border: 0;
	padding: 0 16px;
}

.eg-newsletter button {
	min-height: 44px;
	border: 0;
	padding: 0 24px;
	color: var(--eg-white);
	background: var(--eg-orange);
	font-weight: 800;
	text-transform: uppercase;
}

.eg-footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	padding: 36px 9vw;
}

.eg-footer__legal {
	margin: 0;
	padding: 14px 9vw;
	border-top: 1px solid var(--eg-line);
	color: var(--eg-muted);
	font-size: 12px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 980px) {
	.eg-topbar,
	.eg-menu,
	.eg-actions {
		display: none;
	}

	.eg-nav {
		min-height: 78px;
	}

	.eg-hero {
		min-height: 500px;
	}

	.eg-benefits,
	.eg-section,
	.eg-passion,
	.eg-newsletter {
		grid-template-columns: 1fr;
	}

	.eg-benefits {
		gap: 24px;
	}

	.eg-benefits article {
		border-right: 0;
	}

	.eg-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.eg-slider__track {
		gap: 16px;
	}

	.eg-product-card {
		flex-basis: min(76vw, 340px);
	}
}

@media (max-width: 620px) {
	.eg-hero,
	.eg-section,
	.eg-experience,
	.eg-passion {
		padding-left: 24px;
		padding-right: 24px;
	}

	.eg-category-grid {
		grid-template-columns: 1fr;
	}

	.eg-newsletter__form {
		display: grid;
		gap: 10px;
	}
}
