:root {
	--uft-green-dark: #174f2a;
	--uft-green-deep: #103d20;
	--uft-green: #26713b;
	--uft-green-bright: #3c8a4d;
	--uft-green-light: #e8f1e8;
	--uft-cream: #fbf7ed;
	--uft-cream-dark: #f2e9d8;
	--uft-gold: #d89a2b;
	--uft-focus: #8f5a00;
	--uft-red: #b92727;
	--uft-text: #1d2a20;
	--uft-muted: #687268;
	--uft-white: #ffffff;
	--uft-border: rgba(23, 79, 42, 0.16);
	--uft-shadow-sm: 0 10px 28px rgba(23, 79, 42, 0.08);
	--uft-shadow: 0 20px 48px rgba(23, 79, 42, 0.12);
	--uft-radius-sm: 10px;
	--uft-radius: 16px;
	--uft-radius-lg: 24px;
	--uft-heading-font: Georgia, "Times New Roman", serif;
	--uft-body-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--uft-container: 1240px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	overflow-x: clip;
	background: var(--uft-cream);
	color: var(--uft-text);
	font-family: var(--uft-body-font);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.uft-menu-open {
	overflow: hidden;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: var(--uft-green-dark);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--uft-green);
}

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

figure,
p,
h1,
h2,
h3,
h4,
ul {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--uft-green-dark);
	font-family: var(--uft-heading-font);
	font-weight: 700;
	line-height: 1.08;
}

::selection {
	background: var(--uft-green-dark);
	color: var(--uft-white);
}

:focus-visible {
	border-radius: 4px;
	outline: 3px solid var(--uft-focus);
	outline-offset: 4px;
}

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

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto !important;
	background: var(--uft-white);
	color: var(--uft-green-dark);
	font-weight: 700;
	white-space: normal;
	box-shadow: var(--uft-shadow-sm);
}

.uft-container {
	width: min(var(--uft-container), calc(100% - 48px));
	margin-inline: auto;
}

.uft-section {
	position: relative;
	padding-block: clamp(70px, 6.5vw, 96px);
}

.uft-icon {
	display: block;
	width: 1.25em;
	height: 1.25em;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.uft-icon--leaf path:first-child {
	fill: currentColor;
	stroke: none;
}

.uft-icon--facebook {
	fill: currentColor;
	stroke: none;
}

.uft-eyebrow {
	margin-bottom: 11px;
	color: var(--uft-green);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	line-height: 1.4;
	text-transform: uppercase;
}

.uft-section-heading {
	max-width: 720px;
	margin-bottom: 38px;
}

.uft-section-heading--center {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.uft-section-heading h2 {
	margin-bottom: 11px;
	font-size: clamp(2.2rem, 4vw, 3.35rem);
	letter-spacing: -0.035em;
}

.uft-heading-leaf {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 40px;
	color: var(--uft-green);
	font-size: 0.8rem;
}

.uft-heading-leaf::before,
.uft-heading-leaf::after {
	position: absolute;
	top: 50%;
	width: 35px;
	height: 1px;
	background: var(--uft-border);
	content: "";
}

.uft-heading-leaf::before {
	right: calc(100% + 3px);
}

.uft-heading-leaf::after {
	left: calc(100% + 3px);
}

.uft-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.8rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 0.88rem;
	font-weight: 750;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.uft-button .uft-icon {
	width: 1.15rem;
	height: 1.15rem;
	margin-left: 9px;
	flex: 0 0 auto;
}

.uft-button:hover {
	transform: translateY(-2px);
}

.uft-button--primary {
	background: var(--uft-green-dark);
	color: var(--uft-white);
	box-shadow: 0 10px 22px rgba(23, 79, 42, 0.18);
}

.uft-button--primary:hover {
	background: var(--uft-green);
	color: var(--uft-white);
	box-shadow: 0 14px 28px rgba(23, 79, 42, 0.22);
}

.uft-button--secondary {
	border-color: rgba(23, 79, 42, 0.48);
	background: rgba(251, 247, 237, 0.84);
	color: var(--uft-green-dark);
	backdrop-filter: blur(8px);
}

.uft-button--secondary:hover {
	border-color: var(--uft-green-dark);
	background: var(--uft-white);
	color: var(--uft-green-dark);
}

.uft-button--red {
	background: var(--uft-red);
	color: var(--uft-white);
	box-shadow: 0 10px 22px rgba(185, 39, 39, 0.16);
}

.uft-button--red:hover {
	background: #9f2020;
	color: var(--uft-white);
}

.uft-button--cream {
	background: var(--uft-cream);
	color: var(--uft-green-dark);
}

.uft-button--cream:hover {
	background: var(--uft-white);
	color: var(--uft-green-dark);
}

.uft-button--outline-light {
	border-color: rgba(255, 255, 255, 0.64);
	color: var(--uft-white);
}

.uft-button--outline-light:hover {
	border-color: var(--uft-white);
	background: rgba(255, 255, 255, 0.09);
	color: var(--uft-white);
}

.uft-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	background: rgba(255, 253, 247, 0.94);
	transition: box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
	backdrop-filter: blur(15px);
}

.site-header.is-scrolled {
	border-bottom-color: var(--uft-border);
	background: rgba(255, 253, 247, 0.98);
	box-shadow: 0 8px 28px rgba(23, 79, 42, 0.09);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(188px, 1fr) auto minmax(188px, 1fr);
	align-items: center;
	min-height: 88px;
	gap: 28px;
}

.site-branding {
	display: flex;
	align-items: center;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	width: auto;
	max-width: 205px;
	max-height: 62px;
}

.uft-brand {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--uft-green-dark);
	line-height: 1;
	text-decoration: none;
}

.uft-brand:hover {
	color: var(--uft-green);
}

.uft-brand__mark {
	display: grid;
	place-items: center;
	position: relative;
	width: 48px;
	height: 50px;
	font-size: 2.35rem;
	transform: rotate(-14deg);
}

.uft-brand__mark::after {
	position: absolute;
	left: 6px;
	bottom: 5px;
	width: 29px;
	height: 18px;
	border-bottom: 2px solid currentColor;
	border-radius: 50%;
	content: "";
	transform: rotate(25deg);
}

.uft-brand__words {
	display: flex;
	flex-direction: column;
	font-family: var(--uft-heading-font);
}

.uft-brand__words strong {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.06em;
}

.uft-brand__words small {
	margin-top: 2px;
	font-size: 0.79rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.primary-navigation {
	justify-self: center;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(22px, 2.5vw, 40px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu .menu-item {
	position: relative;
}

.primary-menu a {
	display: inline-flex;
	position: relative;
	padding-block: 13px;
	color: var(--uft-text);
	font-size: 0.9rem;
	font-weight: 650;
	text-decoration: none;
}

.primary-menu a::after {
	position: absolute;
	right: 0;
	bottom: 7px;
	left: 0;
	height: 2px;
	background: var(--uft-green);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	color: var(--uft-green-dark);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-whatsapp {
	justify-self: end;
	min-height: 46px;
	padding-inline: 18px;
	white-space: nowrap;
}

.header-whatsapp .uft-icon {
	margin-right: 8px;
	margin-left: 0;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--uft-border);
	border-radius: 10px;
	background: var(--uft-white);
	color: var(--uft-green-dark);
	cursor: pointer;
}

.menu-toggle .uft-icon {
	width: 24px;
	height: 24px;
}

.menu-toggle__close {
	display: none;
}

.site-header.is-menu-open .menu-toggle__open {
	display: none;
}

.site-header.is-menu-open .menu-toggle__close {
	display: block;
}

/* Hero */
.uft-hero {
	display: flex;
	align-items: center;
	position: relative;
	min-height: 650px;
	overflow: hidden;
	background-color: #efe4ca;
	background-image: var(--uft-hero-image);
	background-position: center center;
	background-size: cover;
}

.uft-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: rgba(23, 79, 42, 0.12);
	content: "";
}

.uft-hero__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(251, 247, 237, 0.99) 0%, rgba(251, 247, 237, 0.91) 30%, rgba(251, 247, 237, 0.35) 55%, rgba(251, 247, 237, 0.02) 75%);
}

.uft-hero__inner {
	position: relative;
	z-index: 1;
	padding-block: 92px;
}

.uft-hero__content {
	max-width: 600px;
}

.uft-hero__eyebrow {
	margin-bottom: 14px;
	font-size: 0.79rem;
	letter-spacing: 0.19em;
}

.uft-hero__title {
	margin-bottom: 24px;
	font-size: clamp(4rem, 6.7vw, 6.85rem);
	letter-spacing: -0.065em;
	line-height: 0.82;
}

.uft-hero__title span,
.uft-hero__title em {
	display: block;
}

.uft-hero__title em {
	margin-top: 0.22em;
	margin-left: 0.08em;
	color: var(--uft-red);
	font-size: 0.78em;
	font-weight: 600;
	letter-spacing: -0.055em;
	line-height: 0.9;
	transform: rotate(-2deg);
	transform-origin: left center;
}

.uft-hero__description {
	max-width: 465px;
	margin-bottom: 31px;
	color: #29362b;
	font-size: clamp(1rem, 1.3vw, 1.12rem);
	font-weight: 500;
	line-height: 1.65;
}

.uft-hero__proof {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 30px;
	color: var(--uft-green-dark);
	font-size: 0.78rem;
	font-weight: 700;
}

.uft-hero__proof .uft-icon {
	color: var(--uft-green);
	font-size: 1.15rem;
}

/* Category cards */
.uft-categories {
	background: #fffdf8;
}

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

.uft-category-card {
	display: grid;
	grid-template-columns: 43% 57%;
	position: relative;
	min-height: 250px;
	overflow: hidden;
	border: 1px solid var(--uft-border);
	border-radius: var(--uft-radius);
	background: var(--uft-white);
	box-shadow: 0 4px 0 rgba(23, 79, 42, 0);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.uft-category-card:hover {
	border-color: rgba(23, 79, 42, 0.34);
	box-shadow: var(--uft-shadow-sm);
	transform: translateY(-5px);
}

.uft-category-card__media {
	position: relative;
	min-height: 250px;
	overflow: hidden;
	background: var(--uft-green-light);
}

.uft-category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.uft-category-card:hover .uft-category-card__media img {
	transform: scale(1.055);
}

.uft-category-card__badge {
	display: grid;
	place-items: center;
	position: absolute;
	left: 43%;
	bottom: 22px;
	z-index: 2;
	width: 52px;
	height: 52px;
	border: 4px solid var(--uft-white);
	border-radius: 50%;
	background: var(--uft-cream);
	color: var(--uft-green-dark);
	font-size: 1.25rem;
	box-shadow: var(--uft-shadow-sm);
	transform: translateX(-50%);
}

.uft-category-card--gold .uft-category-card__badge,
.uft-category-card--gold .uft-text-link,
.uft-category-card--gold h3 {
	color: #865100;
}

.uft-category-card--red .uft-category-card__badge,
.uft-category-card--red .uft-text-link,
.uft-category-card--red h3 {
	color: var(--uft-red);
}

.uft-category-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 28px 25px 26px 31px;
}

.uft-category-card__body h3 {
	margin-bottom: 12px;
	font-size: 1.38rem;
}

.uft-category-card__body p {
	margin-bottom: 18px;
	color: var(--uft-muted);
	font-size: 0.84rem;
	line-height: 1.62;
}

.uft-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	margin-top: auto;
	padding-block: 8px;
	color: var(--uft-green-dark);
	font-size: 0.76rem;
	font-weight: 800;
	text-decoration: none;
}

.uft-text-link .uft-icon {
	width: 1rem;
	height: 1rem;
	transition: transform 180ms ease;
}

.uft-text-link:hover .uft-icon {
	transform: translateX(4px);
}

/* About */
.uft-about {
	overflow: hidden;
	background: var(--uft-cream);
}

.uft-about::before,
.uft-about::after {
	position: absolute;
	width: 210px;
	height: 210px;
	border: 1px solid rgba(38, 113, 59, 0.08);
	border-radius: 100% 0 100% 0;
	content: "";
	transform: rotate(28deg);
}

.uft-about::before {
	left: -115px;
	bottom: -95px;
}

.uft-about::after {
	top: -118px;
	right: -115px;
	transform: rotate(-152deg);
}

.uft-about__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.82fr) minmax(450px, 1.35fr);
	align-items: center;
	gap: clamp(48px, 7vw, 92px);
}

.uft-about__content {
	position: relative;
	z-index: 1;
}

.uft-about__content .uft-section-heading {
	margin-bottom: 24px;
}

.uft-about__copy {
	margin-bottom: 26px;
	color: var(--uft-muted);
	font-size: 0.94rem;
	line-height: 1.8;
}

.uft-value-list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 20px;
	padding: 0;
	margin-bottom: 29px;
	list-style: none;
}

.uft-value-list li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #435045;
	font-size: 0.73rem;
	font-weight: 700;
}

.uft-value-list li > span {
	display: grid;
	place-items: center;
	width: 29px;
	height: 29px;
	border-radius: 50%;
	background: var(--uft-green-light);
	color: var(--uft-green);
	font-size: 0.9rem;
}

.uft-about__media {
	position: relative;
	min-height: 410px;
	overflow: hidden;
	border-radius: var(--uft-radius);
	background: var(--uft-green-light);
	box-shadow: var(--uft-shadow);
}

.uft-about__media > img {
	width: 100%;
	height: 100%;
	min-height: 410px;
	object-fit: cover;
}

.uft-origin-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 34px;
	bottom: 31px;
	min-width: 190px;
	min-height: 138px;
	padding: 17px 25px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 13px;
	background: rgba(23, 79, 42, 0.92);
	color: var(--uft-cream);
	text-align: center;
	box-shadow: var(--uft-shadow);
	backdrop-filter: blur(8px);
}

.uft-origin-badge .uft-icon {
	margin-bottom: 4px;
	color: #dfb94f;
	font-size: 1.5rem;
}

.uft-origin-badge span {
	color: #f1d77f;
	font-size: 0.59rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.uft-origin-badge strong,
.uft-origin-badge small {
	font-family: var(--uft-heading-font);
	text-transform: uppercase;
}

.uft-origin-badge strong {
	margin-block: 1px;
	font-size: 1.65rem;
	letter-spacing: 0.06em;
	line-height: 1;
}

.uft-origin-badge small {
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}

/* Products */
.uft-products {
	overflow: hidden;
	background: #fffdf8;
}

.uft-products::before,
.uft-products::after {
	position: absolute;
	top: 50%;
	width: 190px;
	height: 300px;
	border: 1px solid rgba(38, 113, 59, 0.07);
	border-radius: 100% 0 100% 0;
	content: "";
	transform: translateY(-30%) rotate(25deg);
}

.uft-products::before {
	left: -125px;
}

.uft-products::after {
	right: -125px;
	transform: translateY(-30%) rotate(205deg);
}

.uft-product-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	position: relative;
	z-index: 1;
	gap: 13px;
}

.uft-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--uft-border);
	border-radius: 12px;
	background: var(--uft-white);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.uft-product-card:hover {
	border-color: rgba(23, 79, 42, 0.32);
	box-shadow: var(--uft-shadow-sm);
	transform: translateY(-5px);
}

.uft-product-card__visual {
	position: relative;
	height: 245px;
	overflow: hidden;
	background: #e8efe5;
	isolation: isolate;
}

.uft-product-card__visual::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(255, 253, 247, 0.5);
	content: "";
	backdrop-filter: blur(2px);
}

.uft-product-card__visual > img {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.08);
	transition: transform 450ms ease;
}

.uft-product-card:hover .uft-product-card__visual > img {
	transform: scale(1.14);
}

.uft-product-mockup {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	bottom: 18px;
	width: 102px;
	height: 160px;
	padding: 23px 9px 12px;
	border: 1px solid rgba(55, 44, 24, 0.24);
	background: #f1e2b6;
	color: var(--uft-green-dark);
	box-shadow: 0 15px 24px rgba(31, 36, 22, 0.22);
	text-align: center;
	transform: translateX(-50%);
	transition: transform 250ms ease;
}

.uft-product-card:hover .uft-product-mockup {
	transform: translateX(-50%) translateY(-4px) rotate(-1deg);
}

.uft-product-mockup--tea {
	border-radius: 7px 7px 13px 13px;
	clip-path: polygon(4% 0, 96% 0, 100% 9%, 96% 100%, 4% 100%, 0 9%);
}

.uft-product-mockup--honey {
	width: 96px;
	height: 140px;
	border-radius: 23px 23px 15px 15px;
	background: linear-gradient(90deg, #c7770a, #f2b92c 48%, #c37007);
	color: #fffbe7;
}

.uft-product-mockup--honey::before {
	position: absolute;
	top: -10px;
	left: 9px;
	width: calc(100% - 18px);
	height: 18px;
	border: 1px solid rgba(45, 34, 9, 0.3);
	border-radius: 5px;
	background: #8e641d;
	content: "";
}

.uft-product-mockup--jaggery {
	width: 116px;
	height: 124px;
	border-radius: 10px;
	background: #f2e7ce;
	color: #7a301b;
}

.uft-product-mockup--green {
	background: #d9bd67;
}

.uft-product-mockup--forest {
	background: #183f2c;
	color: #f4e4aa;
}

.uft-product-mockup--amber {
	background: linear-gradient(90deg, #b55e03, #e6a719 50%, #a64f02);
}

.uft-product-mockup--sun {
	background: linear-gradient(90deg, #b96f09, #f0bc31 50%, #b56707);
}

.uft-product-mockup--earth {
	background: #e8d5b3;
}

.uft-product-mockup__seal {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-bottom: 8px;
	border: 2px solid currentColor;
	border-radius: 50%;
	font-size: 1rem;
}

.uft-product-mockup strong {
	font-family: var(--uft-heading-font);
	font-size: 1.25rem;
	letter-spacing: 0.08em;
	line-height: 1;
}

.uft-product-mockup small {
	display: block;
	margin-top: 6px;
	font-size: 0.52rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-transform: uppercase;
}

.uft-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 17px 13px 14px;
}

.uft-product-card__body h3 {
	min-height: 2.7em;
	margin-bottom: 8px;
	font-size: 0.96rem;
	line-height: 1.24;
}

.uft-product-card__weight {
	margin-bottom: 6px;
	color: var(--uft-muted);
	font-size: 0.76rem;
}

.uft-product-card__price {
	margin-bottom: 14px;
	color: #7d4216;
	font-size: 0.82rem;
	font-weight: 800;
}

.uft-button--order {
	min-height: 44px;
	padding: 8px 7px;
	margin-top: auto;
	border-radius: 6px;
	background: var(--uft-green-dark);
	color: var(--uft-white);
	font-size: 0.72rem;
}

.uft-button--order .uft-icon {
	width: 0.95rem;
	height: 0.95rem;
	margin-right: 5px;
	margin-left: 0;
}

.uft-button--order:hover {
	background: var(--uft-green);
	color: var(--uft-white);
}

/* Benefits */
.uft-benefits {
	border-block: 1px solid rgba(23, 79, 42, 0.07);
	background: var(--uft-cream-dark);
}

.uft-benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.uft-benefit-card {
	display: flex;
	align-items: flex-start;
	gap: 17px;
	padding: 27px 23px;
	border: 1px solid rgba(23, 79, 42, 0.12);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.61);
}

.uft-benefit-card__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--uft-green-light);
	color: var(--uft-green);
	font-size: 1.45rem;
	flex: 0 0 auto;
}

.uft-benefit-card h3 {
	margin-bottom: 7px;
	font-size: 1.08rem;
}

.uft-benefit-card p {
	margin-bottom: 0;
	color: var(--uft-muted);
	font-size: 0.8rem;
	line-height: 1.55;
}

/* Gallery */
.uft-gallery {
	background: #fffdf8;
}

.uft-gallery__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr 1.15fr 1fr 1.05fr;
	gap: 12px;
}

.uft-gallery__item {
	position: relative;
	aspect-ratio: 4 / 3;
	height: auto;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(23, 79, 42, 0.12);
	border-radius: 12px;
	background: var(--uft-green-light);
}

.uft-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.uft-gallery__item--1 img {
	object-position: 66% center;
}

.uft-gallery__item--2 img {
	object-position: 42% center;
}

.uft-gallery__item--4 img {
	object-position: 52% center;
}

.uft-gallery__item:hover img {
	transform: scale(1.065);
}

/* Contact */
.uft-contact {
	padding-top: 24px;
	background: #fffdf8;
}

.uft-contact__card {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	align-items: center;
	position: relative;
	min-height: 310px;
	padding: clamp(38px, 5vw, 65px);
	overflow: hidden;
	border-radius: var(--uft-radius-lg);
	background: var(--uft-green-dark);
	color: var(--uft-white);
	box-shadow: var(--uft-shadow);
}

.uft-contact__card::after {
	position: absolute;
	right: -90px;
	bottom: -135px;
	width: 330px;
	height: 330px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 50%;
	content: "";
}

.uft-contact__leaf {
	position: absolute;
	color: rgba(255, 255, 255, 0.055);
	font-size: 9rem;
}

.uft-contact__leaf--one {
	top: -35px;
	right: 29%;
	transform: rotate(23deg);
}

.uft-contact__leaf--two {
	left: -35px;
	bottom: -40px;
	transform: rotate(-45deg);
}

.uft-contact__content,
.uft-contact__actions {
	position: relative;
	z-index: 1;
}

.uft-contact__content {
	max-width: 650px;
	padding-right: 55px;
}

.uft-contact .uft-eyebrow {
	color: #dfc979;
}

.uft-contact h2 {
	margin-bottom: 17px;
	color: var(--uft-white);
	font-size: clamp(2.2rem, 4vw, 3.55rem);
	letter-spacing: -0.04em;
}

.uft-contact__content > p:last-child {
	max-width: 560px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.77);
}

.uft-contact__actions {
	display: grid;
	grid-template-columns: 1fr 0.7fr;
	gap: 12px;
}

.uft-contact__actions .uft-button .uft-icon {
	margin-right: 8px;
	margin-left: 0;
}

.uft-contact__details {
	display: flex;
	grid-column: 1 / -1;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding-top: 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.71rem;
}

.uft-contact__details a {
	color: inherit;
}

/* Footer */
.site-footer {
	background: var(--uft-green-deep);
	color: rgba(255, 255, 255, 0.75);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 1.05fr 0.65fr;
	gap: clamp(35px, 5vw, 72px);
	padding-block: 72px 62px;
}

.uft-brand--footer {
	margin-bottom: 22px;
	color: var(--uft-white);
}

.uft-brand--footer:hover {
	color: #f1d77f;
}

.site-footer__brand > p {
	max-width: 300px;
	margin-bottom: 24px;
	font-size: 0.82rem;
	line-height: 1.72;
}

.site-footer__socials {
	display: flex;
	gap: 10px;
}

.site-footer__socials a {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	color: var(--uft-white);
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer__socials a:hover {
	background: var(--uft-white);
	color: var(--uft-green-dark);
	transform: translateY(-2px);
}

.site-footer__socials .uft-icon {
	width: 17px;
	height: 17px;
}

.site-footer__column h2 {
	margin-bottom: 19px;
	color: var(--uft-white);
	font-size: 1.15rem;
}

.site-footer__column .site-footer__subheading {
	margin-top: 25px;
	margin-bottom: 7px;
}

.site-footer__column > p {
	font-size: 0.8rem;
	line-height: 1.7;
}

.site-footer__contact-list,
.footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__contact-list {
	display: grid;
	gap: 13px;
}

.site-footer__contact-list li,
.site-footer__detail {
	display: flex;
	align-items: flex-start;
	min-width: 0;
	gap: 10px;
	font-size: 0.79rem;
}

.site-footer__contact-list .uft-icon,
.site-footer__detail .uft-icon {
	width: 16px;
	height: 16px;
	margin-top: 4px;
	color: var(--uft-white);
	flex: 0 0 auto;
}

.site-footer__contact-list a,
.site-footer__detail p,
.uft-contact__details a,
.uft-contact__details span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--uft-white);
}

.site-footer__detail p {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.7;
}

.footer-menu {
	display: grid;
	gap: 9px;
}

.footer-menu a {
	font-size: 0.8rem;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 58px;
	gap: 25px;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.69rem;
}

.site-footer__bottom p:last-child span {
	margin-left: 3px;
	color: #f06a69;
}

/* Standard content templates */
.uft-page-shell {
	min-height: 55vh;
	padding-block: 80px 100px;
	background: #fffdf8;
}

.uft-page-shell__content {
	max-width: 820px;
}

.uft-page-shell h1 {
	margin-bottom: 25px;
	font-size: clamp(2.7rem, 5vw, 4.4rem);
}

.uft-page-shell .entry-content {
	color: var(--uft-muted);
}

.uft-page-shell .entry-content > * {
	max-width: 100%;
}

.uft-not-found {
	padding-block: 110px 130px;
	text-align: center;
}

.uft-not-found__code {
	margin-bottom: 8px;
	color: var(--uft-gold);
	font-family: var(--uft-heading-font);
	font-size: clamp(5rem, 12vw, 9rem);
	font-weight: 700;
	line-height: 0.9;
}

@media (max-width: 1160px) {
	.site-header__inner {
		grid-template-columns: minmax(180px, 1fr) auto auto;
		gap: 20px;
	}

	.primary-menu {
		gap: 23px;
	}

	.header-whatsapp {
		width: 48px;
		min-width: 48px;
		padding: 0;
	}

	.header-whatsapp .uft-icon {
		margin: 0;
	}

	.header-whatsapp span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
	}

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

	.uft-product-card__visual {
		height: 280px;
	}

	.uft-product-mockup {
		width: 120px;
		height: 180px;
	}

	.uft-product-mockup--honey {
		width: 111px;
		height: 164px;
	}

	.uft-product-mockup--jaggery {
		width: 135px;
		height: 142px;
	}

	.uft-product-card__body h3 {
		min-height: auto;
		font-size: 1.08rem;
	}

	.uft-button--order {
		font-size: 0.74rem;
	}

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

@media (max-width: 960px) {
	.uft-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.uft-category-card:last-child {
		grid-column: 1 / -1;
		width: calc(50% - 10px);
		justify-self: center;
	}

	.uft-about__grid {
		grid-template-columns: minmax(280px, 0.9fr) minmax(390px, 1.1fr);
		gap: 42px;
	}

	.uft-contact__card {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.uft-contact__content {
		padding-right: 0;
	}

	.uft-contact__actions {
		max-width: 520px;
	}

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

@media (max-width: 820px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto auto;
		min-height: 76px;
	}

	.uft-brand__mark {
		width: 40px;
		height: 42px;
		font-size: 1.95rem;
	}

	.uft-brand__words strong {
		font-size: 1.65rem;
	}

	.uft-brand__words small {
		font-size: 0.68rem;
	}

	.primary-navigation {
		position: absolute;
		top: calc(100% - 1px);
		right: 0;
		left: 0;
		padding: 10px 24px 22px;
		border-top: 1px solid var(--uft-border);
		border-bottom: 1px solid var(--uft-border);
		background: #fffdf8;
		box-shadow: 0 16px 28px rgba(23, 79, 42, 0.12);
		max-height: calc(100vh - 76px);
		max-height: calc(100dvh - 76px);
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	.admin-bar .primary-navigation {
		max-height: calc(100vh - 122px);
		max-height: calc(100dvh - 122px);
	}

	.js .primary-navigation {
		visibility: hidden;
		opacity: 0;
		transform: translateY(-8px);
		transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	}

	.js .site-header.is-menu-open .primary-navigation {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.primary-menu {
		display: grid;
		gap: 0;
		width: min(100%, 720px);
		margin-inline: auto;
	}

	.primary-menu .menu-item + .menu-item {
		border-top: 1px solid rgba(23, 79, 42, 0.08);
	}

	.primary-menu a {
		display: flex;
		padding: 12px 4px;
	}

	.primary-menu a::after {
		display: none;
	}

	.js .menu-toggle {
		display: inline-flex;
	}

	.uft-hero {
		min-height: 615px;
		background-position: 61% center;
	}

	.uft-hero__veil {
		background: linear-gradient(90deg, rgba(251, 247, 237, 0.97) 0%, rgba(251, 247, 237, 0.89) 48%, rgba(251, 247, 237, 0.27) 82%, rgba(251, 247, 237, 0.05) 100%);
	}

	.uft-hero__content {
		max-width: 520px;
	}

	.uft-hero__title {
		font-size: clamp(4rem, 10vw, 5.4rem);
	}

	.uft-about__grid {
		grid-template-columns: 1fr;
	}

	.uft-about__content {
		max-width: 650px;
	}

	.uft-about__media,
	.uft-about__media > img {
		min-height: 390px;
	}

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

	.uft-gallery__item {
		height: auto;
	}

	.uft-gallery__item:last-child {
		grid-column: 1 / -1;
		width: calc(50% - 5px);
		justify-self: center;
	}
}

@media (max-width: 640px) {
	.uft-container {
		width: min(calc(100% - 32px), var(--uft-container));
	}

	.uft-section {
		padding-block: 56px;
	}

	.uft-section-heading {
		margin-bottom: 29px;
	}

	.site-header__inner {
		gap: 10px;
	}

	.header-whatsapp {
		display: none;
	}

	.uft-hero {
		align-items: flex-start;
		min-height: 570px;
		background-position: 63% center;
	}

	.uft-hero__veil {
		background: linear-gradient(180deg, rgba(251, 247, 237, 0.96) 0%, rgba(251, 247, 237, 0.87) 51%, rgba(251, 247, 237, 0.18) 78%, rgba(251, 247, 237, 0.05) 100%);
	}

	.uft-hero__inner {
		padding-block: 64px 46px;
	}

	.uft-hero__content {
		max-width: 440px;
	}

	.uft-hero__eyebrow {
		font-size: 0.67rem;
	}

	.uft-hero__title {
		max-width: 390px;
		font-size: clamp(3.65rem, 15.5vw, 5.15rem);
	}

	.uft-hero__description {
		max-width: 365px;
		font-size: 0.94rem;
	}

	.uft-hero__proof {
		display: none;
	}

	.uft-category-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.uft-category-card,
	.uft-category-card:last-child {
		grid-template-columns: 41% 59%;
		grid-column: auto;
		width: 100%;
		min-height: 210px;
	}

	.uft-category-card__media {
		min-height: 210px;
	}

	.uft-category-card__body {
		padding: 23px 20px 21px 27px;
	}

	.uft-category-card__body h3 {
		font-size: 1.22rem;
	}

	.uft-category-card__body p {
		font-size: 0.75rem;
	}

	.uft-category-card__badge {
		left: 41%;
		width: 44px;
		height: 44px;
		font-size: 1rem;
	}

	.uft-about__media,
	.uft-about__media > img {
		min-height: 320px;
	}

	.uft-origin-badge {
		left: 18px;
		bottom: 18px;
		min-width: 155px;
		min-height: 115px;
		padding: 13px 19px;
	}

	.uft-origin-badge strong {
		font-size: 1.35rem;
	}

	.uft-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.uft-product-card__visual {
		height: 230px;
	}

	.uft-product-mockup {
		width: 94px;
		height: 148px;
	}

	.uft-product-mockup--honey {
		width: 88px;
		height: 132px;
	}

	.uft-product-mockup--jaggery {
		width: 105px;
		height: 112px;
	}

	.uft-product-card__body {
		padding: 14px 11px 12px;
	}

	.uft-product-card__body h3 {
		font-size: 0.91rem;
	}

	.uft-button--order {
		font-size: 0.75rem;
	}

	.uft-benefit-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.uft-benefit-card {
		padding: 21px 19px;
	}

	.uft-gallery__grid {
		gap: 9px;
	}

	.uft-gallery__item {
		height: auto;
	}

	.uft-gallery__item:last-child {
		width: calc(50% - 4.5px);
	}

	.uft-contact {
		padding-top: 10px;
	}

	.uft-contact__card {
		padding: 38px 24px;
		border-radius: 18px;
	}

	.uft-contact__actions {
		grid-template-columns: 1fr;
	}

	.uft-contact__details {
		grid-column: auto;
		flex-direction: column;
		align-items: flex-start;
	}

	.uft-contact__details > span[aria-hidden] {
		display: none;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 35px;
		padding-block: 57px 48px;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		justify-content: center;
		min-height: 88px;
		gap: 6px;
		text-align: center;
	}
}

@media (max-width: 390px) {
	.uft-brand__mark {
		width: 34px;
		font-size: 1.7rem;
	}

	.uft-brand__words strong {
		font-size: 1.45rem;
	}

	.uft-brand__words small {
		font-size: 0.62rem;
	}

	.uft-button-row .uft-button {
		padding-inline: 1rem;
	}

	.uft-category-card__body {
		padding-right: 14px;
		padding-left: 24px;
	}

	.uft-product-card__visual {
		height: 210px;
	}

	.uft-button--order {
		font-size: 0.75rem;
	}

	.uft-button--order .uft-icon {
		width: 0.82rem;
		height: 0.82rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
