.amf-offer,
.amf-offer * {
	box-sizing: border-box;
}

.amf-offer {
	position: relative;
	overflow: hidden;
	background: #f7f2e9;
	padding: 50px 0 100px;
	font-family: "Inter", Arial, sans-serif;
	color: #14342b;
}

.amf-offer__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}

.amf-offer__grid {
	display: grid;
	grid-template-columns: minmax(0, 48%) minmax(0, 52%);
	align-items: center;
	gap: 36px;
}

.amf-offer__grid--no-image {
	grid-template-columns: minmax(0, 1fr);
}

.amf-offer__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 620px;
	padding-top: 8px;
}

.amf-offer__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 30px;
	padding: 9px 24px 9px 18px;
	border: 1px solid #d6b06b;
	border-radius: 999px;
	background: rgba(255,255,255,.35);
	color: #c89433;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.amf-offer__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #c89433;
	font-size: 15px;
	line-height: 1;
}

.amf-offer__badge-icon svg {
	width: 15px;
	height: 15px;
	display: block;
	fill: currentColor;
}

.amf-offer__heading {
	margin: 26px 0 24px;
	color: #0b4b35;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(44px, 5vw, 74px);
	font-weight: 700;
	line-height: 1.03;
	letter-spacing: -.03em;
}

.amf-offer__divider {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin: 0 0 26px;
}

.amf-offer__content[style*="center"] .amf-offer__divider,
.amf-offer__content[style*="text-align: center"] .amf-offer__divider {
	justify-content: center;
}

.amf-offer__content[style*="right"] .amf-offer__divider,
.amf-offer__content[style*="text-align: right"] .amf-offer__divider {
	justify-content: flex-end;
}

.amf-offer__divider-line {
	display: inline-block;
	width: 106px;
	height: 2px;
	background: #d5a342;
}

.amf-offer__divider-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #d5a342;
	font-size: 20px;
	line-height: 1;
}

.amf-offer__divider-icon svg {
	width: 20px;
	height: 20px;
	display: block;
	fill: currentColor;
}

.amf-offer__description {
	max-width: 520px;
	margin: 0;
	color: #2f3431;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.7;
}

.amf-offer__description p {
	margin: 0;
}

.amf-offer__features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.amf-offer__feature-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 220px;
	padding: 26px 14px 22px;
	border: 1px solid rgba(211, 187, 145, .55);
	border-radius: 20px;
	background: rgba(255,255,255,.34);
	text-align: center;
	transition: transform .28s ease, border-color .28s ease, background-color .28s ease, box-shadow .28s ease;
}

.amf-offer__feature-card:hover {
	transform: translateY(-6px);
	border-color: #d5a342;
	background: rgba(255,255,255,.88);
	box-shadow: 0 18px 34px rgba(24, 36, 31, .10);
}

.amf-offer__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 16px;
	color: #1f5b4d;
	font-size: 42px;
	line-height: 1;
}

.amf-offer__feature-icon svg {
	width: 42px;
	height: 42px;
	display: block;
	fill: currentColor;
}

.amf-offer__feature-divider {
	display: inline-block;
	width: 52px;
	height: 2px;
	margin: 0 0 18px;
	background: #d5a342;
}

.amf-offer__feature-title {
	margin: 0;
	color: #17392f;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.28;
}

.amf-offer__feature-desc {
	margin: 12px 0 0;
	color: #4d4f4b;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

.amf-offer__image-column {
	position: relative;
	z-index: 1;
	width: 100%;
}

.amf-offer__image-frame {
	position: relative;
	overflow: hidden;
	padding: 0;
	border: 2px solid #d5b073;
	border-radius: 220px 0 0 220px;
	background: transparent;
}

.amf-offer__image-frame img {
	display: block;
	width: 100%;
	height: 820px;
	object-fit: cover;
	object-position: center center;
	border-radius: 220px 0 0 220px;
}

.amf-offer__leaf {
	position: absolute;
	z-index: 0;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	opacity: .55;
}

.amf-offer__leaf--left {
	left: -8px;
	top: 0;
	width: 285px;
	height: 220px;
	background-image: url('../images/am-food-offer-leaf-left.svg');
}

.amf-offer__leaf--center {
	left: 43%;
	top: -8px;
	width: 185px;
	height: 180px;
	background-image: url('../images/am-food-offer-leaf-center.svg');
	transform: translateX(-50%);
}

.amf-offer__bottom-wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 110px;
	line-height: 0;
	pointer-events: none;
}

.amf-offer__wave-svg {
	display: block;
	width: 100%;
	height: 100%;
}

.amf-offer__wave-fill {
	fill: #004832;
	stroke: #d5a342;
	stroke-width: 3;
	vector-effect: non-scaling-stroke;
}

@media (max-width: 1200px) {
	.amf-offer__heading {
		font-size: 58px;
	}

	.amf-offer__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.amf-offer__image-frame,
	.amf-offer__image-frame img {
		border-radius: 160px 0 0 160px;
	}
}

@media (max-width: 1024px) {
	.amf-offer__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.amf-offer__content {
		max-width: 100%;
	}

	.amf-offer__image-frame,
	.amf-offer__image-frame img {
		border-radius: 40px;
	}

	.amf-offer__image-frame img {
		height: 560px;
	}

	.amf-offer__leaf--center {
		left: auto;
		right: 18px;
		transform: none;
	}
}

@media (max-width: 767px) {
	.amf-offer {
		padding: 42px 0 84px;
	}

	.amf-offer__badge {
		padding: 8px 18px 8px 14px;
	}

	.amf-offer__heading {
		margin: 18px 0 18px;
		font-size: 38px;
	}

	.amf-offer__divider {
		gap: 12px;
		margin-bottom: 18px;
	}

	.amf-offer__divider-line {
		width: 72px;
	}

	.amf-offer__description {
		font-size: 16px;
	}

	.amf-offer__features {
		grid-template-columns: minmax(0, 1fr);
	}

	.amf-offer__feature-card {
		min-height: 180px;
	}

	.amf-offer__image-frame img {
		height: 420px;
	}

	.amf-offer__leaf--left {
		width: 180px;
		height: 140px;
	}

	.amf-offer__leaf--center {
		width: 120px;
		height: 116px;
	}
}


@media (max-width: 1024px) {
	.amf-offer__container {
		padding-left: 20px;
		padding-right: 20px;
	}
}


@media (max-width: 767px) {
	.amf-offer__container {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* Mobile-only correction: text first, image second, and 2x2 feature grid on phones. */
@media (max-width: 767px) {
	.amf-offer__grid,
	.amf-offer__grid--no-image {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.amf-offer__content {
		order: 1 !important;
	}

	.amf-offer__image-column {
		order: 2 !important;
	}

	.amf-offer__features {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.amf-offer__feature-card {
		min-width: 0;
	}
}
