/* ===========================================================================
   NUS Core - modern component library, aligned to the Agrezen / Elementor theme.

   Colours and typography inherit Elementor's global kit variables so the
   components automatically match the theme, with NUS brand fallbacks:
     primary  #90c52d (leaf green)   secondary #dce25a (lime)
     accent   #949366 (olive)        text      #4E4E4E
   ========================================================================== */

:root {
	--nus-primary: var(--e-global-color-primary, #193513);
	--nus-secondary: var(--e-global-color-secondary, #b7a801);
	--nus-accent: var(--e-global-color-accent, #8a7f2e);
	--nus-text: var(--e-global-color-text, #4E4E4E);
	--nus-dark: #193513;
	--nus-green-deep: #244d1a;
	--nus-green-mid: #3a7d2c;
	--nus-soft: #f3f6ec;
	--nus-radius: 18px;
	--nus-shadow: 0 10px 30px rgba(31, 42, 22, .08);
	--nus-shadow-hover: 0 22px 48px rgba(31, 42, 22, .18);
	--nus-font-head: var(--e-global-typography-primary-font-family, inherit);
	--nus-site-gutter: clamp(20px, 5vw, 80px);
	--nus-site-max: 1300px;
}

/* ----------------------------------------------------------- layout helpers */
.nus-wrap {
	width: min(var(--nus-site-max), 100%);
	max-width: var(--nus-site-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--nus-site-gutter);
	padding-right: var(--nus-site-gutter);
	box-sizing: border-box;
}

/* Mobile Polylang switcher — flags only; Agrezen wraps lang items in an extra <li>. */
@media (max-width: 1024px) {
	.header-mobilebar .nav.mobilebar.pull-right {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		flex-wrap: nowrap !important;
		gap: 8px;
	}
	.header-mobilebar .nav.mobilebar.pull-right > li:has(> .lang-item) {
		display: contents;
	}
	.header-mobilebar li.lang-item {
		display: inline-flex !important;
		align-items: center;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.header-mobilebar li.lang-item > a {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		padding: 4px;
		line-height: 1;
	}
	.header-mobilebar li.lang-item > a img {
		width: 20px !important;
		height: 14px !important;
		margin: 0 !important;
	}
	.header-mobilebar li.lang-item > a span {
		position: absolute !important;
		width: 1px !important;
		height: 1px !important;
		padding: 0 !important;
		margin: -1px !important;
		overflow: hidden !important;
		clip: rect(0, 0, 0, 0) !important;
		border: 0 !important;
	}
	.header-mobilebar .header-search-wrapper {
		flex: 0 0 auto;
		margin-left: 2px;
	}
}

/* Desktop Polylang — flags only; prevent pull-right wrap (CTA drops to row 2). */
@media (min-width: 1025px) {
	.site-header .header-navbar .navbar-ul.pull-right {
		flex-wrap: nowrap;
		align-items: center;
	}
	.site-header .header-navbar .navbar-ul.pull-right > li:empty {
		display: none !important;
	}
	.site-header .header-navbar .navbar-ul.pull-right > li,
	.site-header .header-navbar .navbar-ul.pull-right li.lang-item {
		flex: 0 0 auto;
	}
	.site-header .header-navbar li.lang-item {
		display: inline-block;
		vertical-align: middle;
		margin: 0 2px 0 0;
		padding: 0;
		list-style: none;
	}
	.site-header .header-navbar li.lang-item > a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 4px;
		line-height: 1;
		vertical-align: middle;
	}
	.site-header .header-navbar li.lang-item:not(.current-lang) > a {
		opacity: 0.75;
	}
	.site-header .header-navbar li.lang-item > a:hover,
	.site-header .header-navbar li.lang-item > a:focus-visible {
		opacity: 1;
	}
	.site-header .header-navbar li.lang-item.current-lang > a img {
		outline: 2px solid rgba(255, 255, 255, 0.55);
		outline-offset: 1px;
		border-radius: 1px;
	}
	.site-header .header-navbar li.lang-item > a img {
		width: 20px !important;
		height: 14px !important;
		margin: 0 !important;
		display: block;
	}
	.site-header .header-navbar li.lang-item > a span {
		position: absolute !important;
		width: 1px !important;
		height: 1px !important;
		padding: 0 !important;
		margin: -1px !important;
		overflow: hidden !important;
		clip: rect(0, 0, 0, 0) !important;
		border: 0 !important;
	}
	.site-header .header-navbar .navbar-ul.pull-right .cea-button-text {
		white-space: nowrap;
	}
}

/* Inner pages built from NUS shortcodes (Production, etc.) */
.nus-page {
	padding: clamp(32px, 5vw, 64px) 0 clamp(48px, 6vw, 88px);
	background: var(--nus-soft, #f3f6ec);
}
.nus-page p {
	max-width: 720px;
	margin: 0 0 1.25rem;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--nus-text);
}
.nus-page .nus-shead { margin-bottom: clamp(16px, 3vw, 28px); }
.nus-page .nus-grid { margin-top: 0; margin-bottom: 0; }
.nus-page .nus-vendor-map,
.nus-page .nus-presence-map { margin: clamp(20px, 3vw, 32px) 0; }

.nus-production-page .nus-products-block {
	margin-top: clamp(36px, 5vw, 56px);
	padding-top: clamp(28px, 4vw, 40px);
	border-top: 1px solid rgba(25, 53, 19, .08);
}

/* Theme entry-content sometimes zeroes side padding — restore for NUS pages */
.site-main .entry-content > .nus-page,
.entry-content > .nus-page {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

/* Crops page (Elementor) — theme container has no side gutters on small screens */
@media (max-width: 767px) {
	.agrezen-content-wrap .entry-content .elementor.elementor-27682 #nus-add-products {
		padding-left: var(--nus-site-gutter) !important;
		padding-right: var(--nus-site-gutter) !important;
	}
}

.nus-section { margin: 56px 0; }

.nus-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--nus-primary);
	margin: 0 0 10px;
}
.nus-eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--nus-primary);
	display: inline-block;
}

.nus-grid {
	display: grid;
	gap: 28px;
	margin: 28px 0;
}
.nus-cols-2 { grid-template-columns: repeat(2, 1fr); }
.nus-cols-3 { grid-template-columns: repeat(3, 1fr); }
.nus-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
	.nus-cols-3, .nus-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
	.nus-cols-2, .nus-cols-3, .nus-cols-4 { grid-template-columns: 1fr; }
	.nus-page { padding-top: 24px; padding-bottom: 48px; }
	:root { --nus-site-gutter: 20px; }
	.nus-card-body { padding: 18px 20px 22px; }
}

/* ------------------------------------------------------------------- cards */
.nus-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--nus-radius);
	overflow: hidden;
	box-shadow: var(--nus-shadow);
	text-decoration: none;
	color: var(--nus-text);
	transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
	will-change: transform;
}
.nus-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--nus-shadow-hover);
}

.nus-card-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--nus-soft);
}
.nus-card-media img,
.nus-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.nus-card:hover .nus-card-media img,
.nus-card:hover .nus-card-img { transform: scale(1.08); }

/* subtle gradient so titles/overlays read well */
.nus-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(31,42,22,0) 55%, rgba(31,42,22,.45) 100%);
	opacity: 0;
	transition: opacity .35s ease;
}
.nus-card:hover .nus-card-media::after { opacity: 1; }

.nus-card-index {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	min-width: 34px;
	height: 34px;
	padding: 0 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-size: .85rem;
	font-weight: 700;
	color: var(--nus-dark);
	background: var(--nus-secondary);
	box-shadow: 0 4px 10px rgba(31,42,22,.18);
}

.nus-card-body {
	padding: 22px 24px 26px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.nus-card-title {
	margin: 0;
	font-family: var(--nus-font-head);
	font-size: 1.2rem;
	line-height: 1.3;
	color: var(--nus-dark);
	transition: color .25s ease;
}
.nus-card:hover .nus-card-title { color: var(--nus-green-deep); }
.nus-card-meta { margin: 0; font-size: .88rem; color: var(--nus-accent); font-weight: 600; }
.nus-card-excerpt { margin: 0; font-size: .95rem; line-height: 1.6; color: var(--nus-text); }

.nus-card-link {
	margin-top: auto;
	padding-top: 6px;
	font-weight: 700;
	font-size: .9rem;
	color: var(--nus-primary);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.nus-card-link::after {
	content: "\2192";
	transition: transform .25s ease;
}
.nus-card:hover .nus-card-link::after { transform: translateX(5px); }

/* chips / badges */
.nus-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.nus-badge,
.nus-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 11px;
	font-size: .74rem;
	font-weight: 600;
	border-radius: 999px;
	line-height: 1;
}
.nus-badge { background: rgba(144, 197, 45, .14); color: var(--nus-green-deep); }
.nus-chip--cert { background: rgba(148, 147, 102, .16); color: var(--nus-accent); }

/* --------------------------------------------------------------- benefits */
.nus-benefits .nus-benefit {
	background: #fff;
	border-radius: var(--nus-radius);
	padding: 30px 28px;
	box-shadow: var(--nus-shadow);
	border-top: 4px solid var(--nus-primary);
	transition: transform .35s ease, box-shadow .35s ease;
}
.nus-benefits .nus-benefit:hover {
	transform: translateY(-6px);
	box-shadow: var(--nus-shadow-hover);
}
.nus-benefit-icon {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.nus-benefit-icon svg {
	width: 56px;
	height: 56px;
	display: block;
}
.nus-benefit h3 {
	margin: 0 0 8px;
	font-family: var(--nus-font-head);
	font-size: 1.15rem;
	color: var(--nus-dark);
}
.nus-benefit p { margin: 0; font-size: .95rem; line-height: 1.6; color: var(--nus-text); }

/* ------------------------------------------------------------- vendor map */
.nus-vendor-map,
.nus-presence-map {
	width: 100%;
	border-radius: var(--nus-radius);
	overflow: hidden;
	margin: 28px 0;
	box-shadow: var(--nus-shadow);
	z-index: 0;
}
.leaflet-popup-content strong { color: var(--nus-green-deep); }

.leaflet-popup.nus-vendor-popup .leaflet-popup-content-wrapper,
.leaflet-tooltip.nus-vendor-tooltip {
	background: #fff;
	border: 1px solid rgba(31, 42, 22, .12);
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
	color: var(--nus-text, #333);
	font-family: var(--nus-font-body, "Nunito Sans", "DM Sans", sans-serif);
	font-size: 13px;
	line-height: 1.5;
}
.leaflet-popup.nus-vendor-popup .leaflet-popup-content {
	margin: 10px 14px;
	min-width: 140px;
}
.leaflet-tooltip.nus-vendor-tooltip {
	padding: 0;
}
.leaflet-tooltip.nus-vendor-tooltip::before {
	border-top-color: #fff;
}
.nus-vendor-tooltip-inner {
	padding: 10px 14px;
	min-width: 160px;
	max-width: 240px;
}
.nus-vendor-tooltip-inner strong {
	color: var(--nus-green-deep, #3f5e2b);
	font-size: 14px;
}
.nus-vendor-contact,
.nus-vendor-regions {
	color: var(--nus-text, #555);
	font-size: 12px;
}
.nus-vendor-phone {
	color: var(--nus-primary, #5a7a3a);
	font-weight: 600;
	text-decoration: none;
}
.nus-vendor-phone:hover {
	text-decoration: underline;
}

.nus-presence-icon {
	background: transparent;
	border: 0;
}
.nus-presence-marker {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px 7px 9px;
	background: #ffe566;
	border: 2px solid #f0d040;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .16);
	white-space: nowrap;
	transform: translate(-50%, -100%);
	font-family: var(--nus-font-body, "Nunito Sans", "DM Sans", sans-serif);
}
.nus-presence-marker-label {
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .05em;
	color: #1a1a1a;
}

/* ------------------------------------------------- single CPT detail view */
.nus-single {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
	gap: 40px;
	align-items: start;
	margin: 10px 0 30px;
}
@media (max-width: 860px) { .nus-single { grid-template-columns: 1fr; } }
.nus-single-media img,
.nus-single-main img { border-radius: var(--nus-radius); }
.nus-single-side { position: sticky; top: 100px; }
.nus-back { margin-top: 28px; }
.nus-facts {
	list-style: none;
	margin: 0;
	padding: 22px 24px;
	background: var(--nus-soft);
	border-radius: var(--nus-radius);
}
.nus-facts li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(31,42,22,.08);
	font-size: .95rem;
}
.nus-facts li:last-child { border-bottom: 0; }
.nus-facts .k { color: var(--nus-accent); font-weight: 600; }
.nus-facts .v { color: var(--nus-dark); text-align: right; }

/* ---------------------------------------------------------------- CTA band */
.nus-cta {
	margin: 56px 0 0;
	padding: 54px 40px;
	border-radius: calc(var(--nus-radius) + 6px);
	text-align: center;
	color: #fff;
	background: linear-gradient(135deg, var(--nus-green-deep), var(--nus-primary));
	box-shadow: var(--nus-shadow);
}
.nus-cta h2 { color: #fff; margin: 0 0 10px; font-family: var(--nus-font-head); }
.nus-cta p { margin: 0 0 22px; opacity: .92; }
.nus-cta .nus-btn { background: #fff; color: var(--nus-green-deep); }

.nus-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	background: var(--nus-primary);
	color: #fff;
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.nus-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 26px rgba(31,42,22,.22); }

/* ===========================================================================
   HOME PAGE - modern section library (matches the Home mockup)
   Brand layer: deep forest green, lime accent, cream.
   Typography matches Agrezen theme (Instrument Sans / Nunito Sans / DM Sans).
   ========================================================================== */
:root {
	--nus-lime: #c9e000;
	--nus-lime-soft: #dce25a;
	--nus-cream: #eef0ea;
	--nus-band: #3f5e2b;
	--nus-band-deep: #2c441d;
	--nus-font-display: "Instrument Sans", var(--e-global-typography-primary-font-family, "DM Sans", sans-serif);
	--nus-font-body: "Nunito Sans", var(--e-global-typography-text-font-family, "DM Sans", sans-serif);
}

/* Full-bleed wrapper so sections can span edge-to-edge inside a boxed theme. */
.nus-home {
	font-family: var(--nus-font-body);
	color: var(--nus-text);
	overflow-x: clip;
}
.nus-home .nus-wrap { max-width: 1180px; }
.nus-home p { line-height: 1.7; }

/* Display headings used across the home sections. */
.nus-display {
	font-family: var(--nus-font-display);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -.01em;
	color: var(--nus-dark);
	margin: 0;
}
.nus-shead {
	font-family: var(--nus-font-display);
	font-weight: 600;
	font-size: clamp(2rem, 4vw, 3.1rem);
	line-height: 1.05;
	color: var(--nus-green-deep);
	margin: 0 0 8px;
}
.nus-shead--center { text-align: center; }
.nus-shead--light { color: #fff; }
.nus-rule {
	height: 2px;
	background: linear-gradient(90deg, var(--nus-primary), rgba(144,197,45,0));
	border: 0;
	margin: 14px 0 30px;
}
.nus-rule--center {
	max-width: 520px;
	margin: 14px auto 34px;
	background: linear-gradient(90deg, rgba(144,197,45,0), var(--nus-primary), rgba(144,197,45,0));
}

/* --------------------------------------------------------------- 1. HERO */
.nus-hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	padding: 120px 0 90px;
	background-size: cover;
	background-position: center;
	color: #fff;
	isolation: isolate;
}
.nus-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(120deg, rgba(25,53,19,.78) 0%, rgba(25,53,19,.35) 45%, rgba(25,53,19,.15) 100%);
}
.nus-hero-inner { width: 100%; }
.nus-hero-title {
	font-family: var(--nus-font-display);
	font-weight: 600;
	font-size: clamp(2.8rem, 7vw, 5.6rem);
	line-height: .98;
	color: #fff;
	max-width: 9ch;
	margin: 0 0 24px;
	text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.nus-hero-line {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 420px;
	margin-bottom: 34px;
}
.nus-hero-line span {
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,.6);
}
.nus-hero-line::before,
.nus-hero-line::after {
	content: "";
	width: 12px; height: 12px;
	border-radius: 50%;
	border: 2px solid var(--nus-lime);
}
.nus-hero-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 360px));
	gap: 22px;
	margin-top: 10px;
}
.nus-info-card {
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(6px);
	border-radius: 20px;
	padding: 22px 24px;
	color: var(--nus-text);
	box-shadow: var(--nus-shadow);
}
.nus-info-card h3 {
	display: flex; align-items: center; gap: 8px;
	margin: 0 0 12px;
	font-family: var(--nus-font-display);
	font-size: 1.25rem;
	color: var(--nus-dark);
}
.nus-info-card h3::before {
	content: "";
	width: 14px; height: 14px; border-radius: 50%;
	background: var(--nus-lime);
	box-shadow: 0 0 0 4px rgba(201,224,0,.25);
}
.nus-info-card p { margin: 0 0 10px; font-size: .95rem; line-height: 1.6; }
.nus-info-card p:last-child { margin-bottom: 0; }

.nus-hero-loc {
	position: absolute;
	right: 24px; bottom: 28px;
	display: inline-flex; align-items: center; gap: 8px;
	font-size: .9rem; font-weight: 600;
	color: #fff;
}
.nus-hero-loc svg { fill: var(--nus-lime); }

/* social rail (hero + benefits) */
.nus-social-rail {
	position: absolute;
	right: 26px; top: 50%;
	transform: translateY(-50%);
	display: flex; flex-direction: column; gap: 14px;
	z-index: 2;
}
.nus-social-rail a {
	width: 34px; height: 34px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	color: #fff;
	border: 1px solid rgba(255,255,255,.55);
	transition: background .25s ease, color .25s ease, transform .25s ease;
}
.nus-social-rail a:hover { background: var(--nus-lime); color: var(--nus-dark); transform: translateY(-2px); }
.nus-social-rail svg { width: 16px; height: 16px; fill: currentColor; }

/* slider dots */
.nus-dots { display: flex; gap: 9px; justify-content: center; margin-top: 30px; }
.nus-dots i {
	width: 9px; height: 9px; border-radius: 50%;
	background: rgba(255,255,255,.5);
	display: inline-block;
}
.nus-dots i.is-active { background: #fff; width: 22px; border-radius: 999px; }

/* --------------------------------------------------- 2. WHAT ARE NUS */
.nus-whatis { position: relative; padding: 84px 0 0; background: var(--nus-cream); }
.nus-whatis-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1fr;
	gap: 36px;
	align-items: center;
}
.nus-whatis-col { display: flex; flex-direction: column; gap: 26px; }
.nus-whatis-figure { text-align: center; }
.nus-whatis-figure img { max-width: 100%; height: auto; }
.nus-point { position: relative; padding-left: 22px; }
.nus-point::before {
	content: "";
	position: absolute; left: 0; top: 4px; bottom: 4px;
	width: 3px; border-radius: 3px;
	background: var(--nus-accent);
}
.nus-point .nus-point-dot {
	display: inline-block; width: 12px; height: 12px; border-radius: 50%;
	background: var(--nus-lime); margin-bottom: 8px;
}
.nus-point p { margin: 0; font-size: .95rem; color: var(--nus-text); }
.nus-watermark {
	position: relative;
	margin-top: 40px;
	padding: 60px 0 70px;
	text-align: center;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.nus-watermark::after {
	content: "NUS";
	font-family: var(--nus-font-display);
	font-weight: 700;
	font-size: clamp(6rem, 22vw, 20rem);
	line-height: 1;
	color: rgba(255,255,255,.18);
	display: block;
}
.nus-scroll-chevron {
	position: absolute;
	left: 50%; top: 30px; transform: translateX(-50%);
	width: 56px; height: 56px; border-radius: 50%;
	background: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--nus-shadow);
	color: var(--nus-primary);
	z-index: 2;
}

/* --------------------------------------------------- 3. BENEFITS (overlap) */
.nus-benefits-section {
	position: relative;
	padding: 80px 0 90px;
	background-size: cover;
	background-position: center;
	color: #fff;
	isolation: isolate;
}
.nus-benefits-section::after {
	content: "";
	position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(25,53,19,.55), rgba(25,53,19,.7));
}
.nus-benefits--overlap {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 340px));
	gap: 0;
	max-width: 720px;
}
.nus-benefits--overlap .nus-benefit {
	background: rgba(255,255,255,.1);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,.18);
	border-top: 1px solid rgba(255,255,255,.18);
	color: #fff;
	border-radius: 16px;
	padding: 26px 24px;
	margin: 0;
}
.nus-benefits--overlap .nus-benefit:nth-child(odd) { transform: translateY(0); margin-right: -8px; }
.nus-benefits--overlap .nus-benefit:nth-child(even) { transform: translateY(46px); }
.nus-benefits--overlap .nus-benefit h3 { color: #fff; }
.nus-benefits--overlap .nus-benefit p { color: rgba(255,255,255,.85); }
.nus-benefits--overlap .nus-benefit-icon svg {
	width: 48px;
	height: 48px;
}
.nus-seemore {
	display: inline-block;
	margin-top: 64px;
	color: var(--nus-lime);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* --------------------------------------------------- 4. TESTIMONIALS */
.nus-testimonials { padding: 84px 0; background: var(--nus-cream); }
.nus-tgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.nus-tcard {
	background: var(--nus-soft);
	border-radius: 22px;
	padding: 26px 22px 28px;
	text-align: center;
	box-shadow: var(--nus-shadow);
	transition: transform .35s ease, box-shadow .35s ease;
}
.nus-tcard:hover { transform: translateY(-6px); box-shadow: var(--nus-shadow-hover); }
.nus-tcard-photo {
	width: 110px; height: 110px;
	margin: 0 auto 16px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--nus-secondary);
}
.nus-tcard-photo img { width: 100%; height: 100%; object-fit: cover; }
.nus-tcard h3 {
	margin: 0 0 8px;
	font-family: var(--nus-font-display);
	font-size: 1.1rem;
	color: var(--nus-green-deep);
}
.nus-tcard p { margin: 0; font-size: .9rem; line-height: 1.6; color: var(--nus-text); }

/* --------------------------------------------------- 5. PRODUCTS (dark cards) */
.nus-products-section { padding: 84px 0; background: var(--nus-cream); position: relative; }
.nus-products-head { max-width: 360px; margin-bottom: 8px; }
.nus-products-head p { color: var(--nus-text); font-size: .95rem; }

/* Dark green rounded cards with a circular photo (products + recipes) */
.nus-card--dark {
	background: var(--nus-band);
	color: #fff;
	border-radius: 22px;
	text-align: center;
	padding: 70px 22px 26px;
	margin-top: 56px;
	box-shadow: var(--nus-shadow);
}
.nus-card--dark .nus-card-media {
	position: absolute;
	top: -50px; left: 50%; transform: translateX(-50%);
	width: 108px; height: 108px;
	border-radius: 50%;
	border: 5px solid var(--nus-cream);
	aspect-ratio: auto;
}
.nus-card--dark::after { display: none; }
.nus-card--dark .nus-card-media::after { display: none; }
.nus-card--dark .nus-card-title { color: #fff; }
.nus-card--dark:hover .nus-card-title { color: var(--nus-lime); }
.nus-card--dark .nus-card-excerpt,
.nus-card--dark .nus-card-meta { color: rgba(255,255,255,.85); }
.nus-grid--dark { row-gap: 70px; }

.nus-cta-pill {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-width: 240px;
	padding: 20px 26px;
	border-radius: 18px;
	background: #fff;
	border: 2px solid var(--nus-primary);
	font-family: var(--nus-font-display);
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--nus-green-deep);
	text-decoration: none;
	box-shadow: var(--nus-shadow);
	transition: transform .25s ease, box-shadow .25s ease;
}
.nus-cta-pill:hover { transform: translateY(-4px); box-shadow: var(--nus-shadow-hover); }
.nus-cta-pill .nus-cta-arrow {
	width: 42px; height: 42px; border-radius: 50%;
	background: var(--nus-primary); color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	flex: 0 0 auto;
}

/* --------------------------------------------------- 6. PRODUCERS MAP */
.nus-producers-section { padding: 84px 0; background: var(--nus-cream); }
.nus-producers-grid {
	display: grid;
	grid-template-columns: .9fr 1.4fr;
	gap: 40px;
	align-items: center;
}
@media (max-width: 860px) { .nus-producers-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------- 7. RECIPES */
.nus-recipes-section { padding: 84px 0; background: var(--nus-cream); }

/* --------------------------------------------------- 8. MOVEMENT */
.nus-movement {
	position: relative;
	padding: 90px 0;
	background-size: cover;
	background-position: center;
	color: #fff;
	isolation: isolate;
}
.nus-movement::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(25,53,19,.5), rgba(25,53,19,.65));
}
.nus-movement-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 40px;
	align-items: center;
}
.nus-follow-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.nus-follow-card {
	display: flex; align-items: center; gap: 14px;
	background: rgba(255,255,255,.12);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 18px;
	padding: 20px;
	color: #fff;
	text-decoration: none;
	transition: transform .25s ease, background .25s ease;
}
.nus-follow-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.18); }
.nus-follow-icon {
	width: 52px; height: 52px; border-radius: 14px;
	background: var(--nus-lime); color: var(--nus-dark);
	display: inline-flex; align-items: center; justify-content: center;
	flex: 0 0 auto;
}
.nus-follow-icon svg { width: 26px; height: 26px; fill: currentColor; }
.nus-follow-card strong { display: block; font-size: 1.05rem; }
.nus-follow-card span { font-size: .85rem; opacity: .85; }

/* --------------------------------------------------- 9. ABOUT BAND */
.nus-about-band { background: var(--nus-band); color: #fff; padding: 84px 0 0; }
.nus-about-band .nus-shead { color: #fff; }
.nus-about-band p { color: rgba(255,255,255,.9); max-width: 70ch; }
.nus-logos {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: 38px;
	background: #fff;
	margin-top: 60px;
	padding: 28px 24px;
}
.nus-logos img { max-height: 54px; width: auto; object-fit: contain; }

/* ------------------------------------------- SWISSAID ABOUT (About page) */
.nus-swissaid-about { margin: 0; }
.nus-swissaid-about-green {
	background: #587c34;
	color: #fff;
	padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
}
.nus-swissaid-about-inner {
	max-width: 1200px;
}
.nus-swissaid-title-row {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 36px;
}
.nus-swissaid-title {
	margin: 0;
	font-family: var(--nus-font-display, "Instrument Sans", "DM Sans", sans-serif);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	flex: 0 0 auto;
}
.nus-swissaid-title-line {
	flex: 1 1 auto;
	height: 2px;
	background: rgba(255, 255, 255, .85);
	min-width: 40px;
}
.nus-swissaid-title-plus {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #d4e157;
	color: #2c441d;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}
.nus-swissaid-copy p {
	margin: 0 0 1.15em;
	color: rgba(255, 255, 255, .92);
	font-size: clamp(.98rem, 1.5vw, 1.06rem);
	line-height: 1.75;
}
@media (min-width: 1025px) {
	.nus-swissaid-copy p {
		max-width: none;
	}
}
@media (max-width: 1024px) {
	.nus-swissaid-copy p { max-width: 72ch; }
}
.nus-swissaid-copy p:last-child { margin-bottom: 0; }
.nus-swissaid-logos-panel {
	background: #fff;
	padding: clamp(28px, 4vw, 40px) 0 clamp(32px, 5vw, 48px);
}
.nus-swissaid-logos-panel > .nus-wrap {
	max-width: 1200px;
	padding-left: clamp(24px, 5vw, 48px);
	padding-right: clamp(24px, 5vw, 48px);
}
.nus-swissaid-about-green > .nus-wrap {
	padding-left: clamp(24px, 5vw, 48px);
	padding-right: clamp(24px, 5vw, 48px);
}
.nus-swissaid-logos-track {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 4vw, 40px);
	margin-bottom: 22px;
}
.nus-swissaid-logo-slot {
	flex: 0 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	min-height: 70px;
	padding: 8px 12px;
}
.nus-swissaid-logo-slot img {
	display: block;
	max-height: 70px;
	width: auto;
	max-width: 240px;
	object-fit: contain;
}
.nus-swissaid-logo-placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	min-height: 56px;
	padding: 10px 18px;
	border: 2px dashed rgba(88, 124, 52, .35);
	border-radius: 10px;
	font-family: var(--nus-font-display, "Instrument Sans", "DM Sans", sans-serif);
	font-weight: 700;
	font-size: .95rem;
	color: #587c34;
	letter-spacing: .02em;
	text-transform: uppercase;
}
.nus-swissaid-logos-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 720px;
	margin: 0 auto;
}
.nus-swissaid-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #c5c5c5;
	flex: 0 0 auto;
}
.nus-swissaid-dot.is-active { background: #587c34; }
.nus-swissaid-nav-line {
	flex: 1 1 auto;
	height: 2px;
	background: linear-gradient(90deg, #587c34 0%, #d4e157 45%, #c5c5c5 100%);
	min-width: 48px;
}
@media (max-width: 640px) {
	.nus-swissaid-title-row { flex-wrap: wrap; }
	.nus-swissaid-title-line { order: 3; flex-basis: 100%; }
	.nus-swissaid-logos-track { gap: 20px; }
}

body.dark-mode-activated .nus-swissaid-logos-panel { background: #1a1a1a; }
body.dark-mode-activated .nus-swissaid-logo-placeholder {
	border-color: rgba(184, 217, 106, .4);
	color: #b8d96a;
}

.nus-mission { padding: 84px 0 30px; text-align: center; background: var(--nus-cream); }
.nus-mission .nus-shead { color: var(--nus-green-deep); }
.nus-mission-statement { max-width: 60ch; margin: 0 auto; font-size: 1.05rem; color: var(--nus-text); }
.nus-values { padding: 20px 0 84px; background: var(--nus-cream); }
.nus-values-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.nus-value {
	background: var(--nus-soft);
	border-radius: 18px;
	padding: 30px 26px 28px;
	text-align: center;
	box-shadow: var(--nus-shadow);
	transition: transform .35s ease, box-shadow .35s ease;
}
.nus-value:hover { transform: translateY(-6px); box-shadow: var(--nus-shadow-hover); }
.nus-value-icon {
	width: 64px; height: 64px; margin: 0 auto 16px;
	border-radius: 50%;
	background: rgba(201,224,0,.22);
	display: flex; align-items: center; justify-content: center;
	font-size: 26px;
	color: var(--nus-green-deep);
}
.nus-value h3 {
	margin: 0 0 10px;
	font-family: var(--nus-font-display);
	font-size: 1.1rem; color: var(--nus-green-deep);
}
.nus-value p { margin: 0; font-size: .92rem; line-height: 1.6; color: var(--nus-text); }

/* --------------------------------------------------- 11. PARTNERS */
.nus-partners-section {
	position: relative;
	padding: 84px 0;
	background-size: cover; background-position: center;
	color: #fff;
	isolation: isolate;
}
.nus-partners-section::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(25,53,19,.55), rgba(25,53,19,.7));
}
.nus-partners-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.nus-partner {
	background: #fff;
	border-radius: 16px;
	height: 110px;
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
	box-shadow: var(--nus-shadow);
	transition: transform .25s ease;
}
.nus-partner:hover { transform: translateY(-4px); }
.nus-partner img { max-height: 60px; max-width: 80%; object-fit: contain; }
.nus-partner span { font-family: var(--nus-font-display); font-weight: 600; color: var(--nus-dark); font-size: 1.1rem; }

/* --------------------------------------------------- 12. NEWS & EVENTS */
.nus-news { padding: 84px 0; background: var(--nus-cream); }
.nus-news-head {
	display: inline-flex; align-items: center; gap: 22px;
	background: var(--nus-band);
	color: #fff;
	border-radius: 0 28px 28px 0;
	padding: 26px 40px 26px 0;
	margin-bottom: 36px;
}
.nus-news-head .nus-shead { color: #fff; margin: 0; }
.nus-news-item {
	display: grid; grid-template-columns: 1.2fr 1fr; gap: 34px;
	align-items: center;
	margin-bottom: 34px;
}
.nus-news-item:nth-child(even) { direction: rtl; }
.nus-news-item:nth-child(even) > * { direction: ltr; }
.nus-news-item img { width: 100%; border-radius: 16px; box-shadow: var(--nus-shadow); }
.nus-news-item h3 {
	font-family: var(--nus-font-display); font-size: 1.4rem;
	color: var(--nus-green-deep); margin: 0 0 12px;
}
.nus-news-item p { color: var(--nus-text); margin: 0; }

/* --------------------------------------------------- 13. STATS / FOOTER CTA */
.nus-stats { padding: 70px 0; background: #fff; }
.nus-stats-grid {
	display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 40px;
	align-items: center;
}
.nus-stats-intro { display: flex; align-items: center; gap: 20px; }
.nus-stats-intro img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.nus-stats-intro p { margin: 0; font-family: var(--nus-font-display); font-size: 1.25rem; color: var(--nus-green-deep); }
.nus-bars {
	display: flex; align-items: flex-end; justify-content: center; gap: 18px;
	height: 200px;
	background: var(--nus-soft);
	border-radius: 18px;
	padding: 22px;
}
.nus-bar { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.nus-bar i {
	display: block; width: 46px; border-radius: 10px 10px 0 0;
	background: linear-gradient(180deg, var(--nus-primary), var(--nus-secondary));
	writing-mode: vertical-rl;
	color: var(--nus-dark);
	font-size: .68rem; font-weight: 700;
	text-align: center;
	padding: 8px 0;
}
.nus-bar b { margin-top: 8px; font-size: .95rem; color: var(--nus-green-deep); }
.nus-newsletter { display: flex; flex-direction: column; gap: 12px; }
.nus-newsletter input[type="email"],
.nus-newsletter input[type="text"] {
	border: 0; border-radius: 8px; padding: 14px 16px;
	background: var(--nus-secondary); color: var(--nus-dark);
}
.nus-newsletter input::placeholder { color: rgba(25,53,19,.6); }
.nus-newsletter button {
	align-self: flex-start;
	border: 0; border-radius: 8px;
	background: #fff; color: var(--nus-dark);
	padding: 12px 30px; font-weight: 700; cursor: pointer;
	box-shadow: var(--nus-shadow);
}

/* --------------------------------------------------- responsive */
@media (max-width: 1024px) {
	.nus-whatis-grid { grid-template-columns: 1fr; }
	.nus-tgrid { grid-template-columns: repeat(2, 1fr); }
	.nus-values-grid { grid-template-columns: repeat(2, 1fr); }
	.nus-partners-grid { grid-template-columns: repeat(2, 1fr); }
	.nus-stats-grid { grid-template-columns: 1fr; }
	.nus-movement-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
	.nus-hero-cards { grid-template-columns: 1fr; }
	.nus-benefits--overlap { grid-template-columns: 1fr; max-width: 420px; }
	.nus-benefits--overlap .nus-benefit:nth-child(even) { transform: none; }
	.nus-tgrid { grid-template-columns: 1fr; }
	.nus-values-grid { grid-template-columns: 1fr; }
	.nus-partners-grid { grid-template-columns: 1fr; }
	.nus-follow-cards { grid-template-columns: 1fr; }
	.nus-social-rail { display: none; }
}

/* ------------------------------------------------------------------
   Home "missing sections" appended via wp-home-add-sections.php
   (native cea/Elementor widgets in clean flex-grid containers).
   This theme's container does not emit a per-child width, so the
   card cells are sized here, targeting the grid containers by id.
------------------------------------------------------------------ */
/* Set the --width variable the theme's container already consumes
   (width: var(--width)); it is otherwise unset on these cells. */
#nus-gridp > .e-con-inner > .e-con,
#nus-gridr > .e-con-inner > .e-con,
#nus-gridv > .e-con-inner > .e-con,
#nus-gridj > .e-con-inner > .e-con { flex: 0 0 auto; }
#nus-gridp > .e-con-inner > .e-con,
#nus-gridr > .e-con-inner > .e-con,
#nus-gridv > .e-con-inner > .e-con { --width: calc(33.333% - 24px); }
#nus-gridj > .e-con-inner > .e-con { --width: calc(25% - 24px); }

/* Recipe / values / join cards render as e-con-boxed and ignore --width — pin columns */
@media (min-width: 768px) {
	#nus-gridr > .e-con-inner > .e-con.e-child,
	#nus-gridv > .e-con-inner > .e-con.e-child {
		flex: 0 0 calc(33.333% - 19px) !important;
		width: calc(33.333% - 19px) !important;
		max-width: calc(33.333% - 19px) !important;
	}
	#nus-gridj > .e-con-inner > .e-con.e-child {
		flex: 0 0 calc(25% - 18px) !important;
		width: calc(25% - 18px) !important;
		max-width: calc(25% - 18px) !important;
	}
	#nus-gridr > .e-con-inner,
	#nus-gridv > .e-con-inner,
	#nus-gridj > .e-con-inner {
		width: 100% !important;
		max-width: 100% !important;
	}
}
@media (max-width: 1024px) {
	#nus-gridp > .e-con-inner > .e-con,
	#nus-gridr > .e-con-inner > .e-con,
	#nus-gridv > .e-con-inner > .e-con,
	#nus-gridj > .e-con-inner > .e-con { --width: calc(50% - 20px); }
}
@media (max-width: 767px) {
	#nus-gridp > .e-con-inner > .e-con,
	#nus-gridr > .e-con-inner > .e-con,
	#nus-gridv > .e-con-inner > .e-con,
	#nus-gridj > .e-con-inner > .e-con { --width: 100%; }
}
/* uniform product/recipe photo on top of the card */
#nus-gridp > .e-con-inner > .e-con .elementor-widget-image img,
#nus-gridr > .e-con-inner > .e-con .elementor-widget-image img { width: 100%; height: 230px; object-fit: cover; display: block; }

/* Equal-height product cards in the 3-up grid */
#nus-gridp > .e-con-inner > .e-con { display: flex; flex-direction: column; }
#nus-gridp > .e-con-inner > .e-con > .elementor-widget-ceafeaturebox { flex: 1 1 auto; display: flex; }
#nus-gridp > .e-con-inner > .e-con > .elementor-widget-ceafeaturebox > .feature-box-modern { flex: 1 1 auto; display: flex; flex-direction: column; }
#nus-gridp > .e-con-inner > .e-con > .elementor-widget-ceafeaturebox > .feature-box-modern > .feature-box-inner { flex: 1 1 auto; }

/* Uniform Feature Box Image (added manually in Elementor) so every product
   card has the same photo band height regardless of the source aspect ratio. */
#nus-gridp .feature-box-inner .cea-feature-box-img { margin-bottom: 18px; }
#nus-gridp .feature-box-inner .cea-feature-box-img img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
	border-radius: 12px;
}

/* ========================================================= Home EN (29) + SW (27919) + About (116)
   Sections after NUS Products use e-con-full with direct e-con-boxed children
   (no section-level .e-con-inner). Match Products gutter + card grids. */
:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-add-producers,
:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-add-recipes,
:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-add-join,
:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-add-values,
:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-add-partners {
	--padding-left: var(--nus-site-gutter) !important;
	--padding-right: var(--nus-site-gutter) !important;
	padding-left: var(--nus-site-gutter) !important;
	padding-right: var(--nus-site-gutter) !important;
	box-sizing: border-box;
}
:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-add-producers > .e-con.e-child,
:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-add-recipes > .e-con.e-child,
:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-add-join > .e-con.e-child,
:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-add-values > .e-con.e-child,
:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-add-partners > .e-con.e-child {
	width: min(var(--nus-site-max), 100%) !important;
	max-width: var(--nus-site-max) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
:is(.elementor-29, .elementor-27919, .elementor-116) #nus-gridr,
:is(.elementor-29, .elementor-27919, .elementor-116) #nus-gridv,
:is(.elementor-29, .elementor-27919, .elementor-116) #nus-gridj {
	width: 100% !important;
	max-width: 100% !important;
}
:is(.elementor-29, .elementor-27919, .elementor-116) #nus-add-producers .nus-vendor-map {
	border-radius: var(--nus-radius);
	overflow: hidden;
}

/* ========================================================= About Us (page 116)
   Consistent desktop gutters and vertical rhythm. Full-bleed bands keep
   edge-to-edge backgrounds; inner content aligns to the 1200px NUS grid. */
@media (min-width: 1025px) {
	.elementor-116 > .e-con.e-parent > .e-con-inner {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		padding-left: clamp(24px, 5vw, 48px);
		padding-right: clamp(24px, 5vw, 48px);
	}

	.elementor-116 > .e-con.e-parent {
		padding-left: clamp(24px, 5vw, 48px);
		padding-right: clamp(24px, 5vw, 48px);
	}

	/* Full-bleed shell only: hero + SWISSAID band (inner .nus-wrap handles gutters) */
	:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent:first-child,
	:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-about-swissaid {
		padding-left: 0;
		padding-right: 0;
	}

	:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-about-swissaid > .e-con-inner {
		max-width: none;
		padding-left: 0;
		padding-right: 0;
	}

	:is(.elementor-29, .elementor-27919, .elementor-116) > .e-con.e-parent#nus-about-swissaid .elementor-widget-shortcode {
		width: 100%;
	}

	/* Vertical rhythm on standard sections (nus-add-* gutters handled above) */
	.elementor-116 > .e-con.e-parent:not(:first-child):not(#nus-about-swissaid):not(#nus-add-producers):not(#nus-add-recipes):not(#nus-add-join):not(#nus-add-values):not(#nus-add-partners) {
		padding-top: clamp(64px, 7vw, 100px);
		padding-bottom: clamp(64px, 7vw, 100px);
	}
}

/* --------------------------------------------------- Partner logo marquee */
.nus-partners-marquee {
	overflow: hidden;
	width: 100%;
	padding: 8px 0 16px;
	mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.nus-partners-marquee__track {
	display: flex;
	align-items: center;
	gap: 70px;
	width: max-content;
	animation: nus-partners-scroll 40s linear infinite;
}
.nus-partners-marquee__track:hover {
	animation-play-state: paused;
}
.nus-partners-marquee__item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
}
.nus-partners-marquee__item img {
	display: block;
	width: auto;
	height: 64px;
	min-height: 48px;
	max-width: 180px;
	object-fit: contain;
}
.nus-partners-marquee__item span {
	font-family: var(--nus-font-head, inherit);
	font-size: 1.35rem;
	font-weight: 600;
	color: #3F5E2B;
	white-space: nowrap;
}
@keyframes nus-partners-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (max-width: 767px) {
	.nus-partners-marquee__track { gap: 40px; }
	.nus-partners-marquee__item img { height: 48px; max-width: 140px; }
	.nus-partners-marquee__item span { font-size: 1.1rem; }
}

/* ========================================================= Agrezen dark mode
   Theme toggle adds body.dark-mode-activated. Elementor containers on Home /
   About ship with hard-coded #FFF / #EEF0EA / #FAF7F0 fills that beat the
   theme's generic section rules, leaving white panels with inverted text. */
body.dark-mode-activated #site-content {
	background-color: var(--dark-bg, #121212) !important;
}

body.dark-mode-activated .elementor-29 .e-con:not(.elementor-element-32554b5):not(#nus-add-join),
body.dark-mode-activated .elementor-116 .e-con:not(#nus-add-join) {
	background-color: var(--dark-bg, #121212) !important;
	background-image: none !important;
	color: var(--light-color, #f5f5f5) !important;
}

/* Hero (home): keep cover photo — inner containers were painting solid #121212. */
body.dark-mode-activated .elementor-29 .elementor-element-32554b5 {
	position: relative;
	background-color: transparent !important;
}
body.dark-mode-activated .elementor-29 .elementor-element-32554b5::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .22) 32%, rgba(0, 0, 0, 0) 58%);
	pointer-events: none;
	z-index: 0;
}
body.dark-mode-activated .elementor-29 .elementor-element-32554b5 > .e-con-inner {
	position: relative;
	z-index: 1;
}
body.dark-mode-activated .elementor-29 .elementor-element-32554b5 .e-con:not(.elementor-element-88467c3):not(.elementor-element-ae3e102) {
	background-color: transparent !important;
	background-image: none !important;
}
body.dark-mode-activated .elementor-29 .elementor-element-32554b5::before {
	opacity: .12 !important;
}

/* “Traditional Crops Helping Families” callout (photos + green panel, still in hero). */
body.dark-mode-activated .elementor-29 .elementor-element-93e40d8,
body.dark-mode-activated .elementor-29 .elementor-element-93e40d8 .e-con {
	background-color: transparent !important;
}
body.dark-mode-activated .elementor-29 .elementor-element-93e40d8::before,
body.dark-mode-activated .elementor-29 .elementor-element-93e40d8 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before {
	background-color: #394e10 !important;
	opacity: 1 !important;
}
body.dark-mode-activated .elementor-29 .elementor-element-93e40d8 .elementor-widget-text-editor,
body.dark-mode-activated .elementor-29 .elementor-element-93e40d8 p {
	color: #fff !important;
}

/* “Why NUS Matters” band — keep photo + green gradient, not flat black. */
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc {
	background-color: var(--dark-bg, #121212) !important;
}
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc:not(.elementor-motion-effects-element-type-background),
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc > .elementor-motion-effects-container > .elementor-motion-effects-layer {
	background-image: url("https://nus.or.tz/wp-content/uploads/2025/10/service-bg-3.webp") !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc::before,
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc > .elementor-motion-effects-container > .elementor-motion-effects-layer::before {
	background-color: transparent !important;
	background-image: linear-gradient(180deg, rgba(18, 18, 18, .15) 0%, rgba(57, 78, 16, .88) 50%, #121212 100%) !important;
	opacity: 1 !important;
}
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc .e-con {
	background-color: transparent !important;
	background-image: none !important;
}
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc .section-title-wrapper .title,
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc .section-title-wrapper .sub-title,
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc .section-description,
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc .feature-box-title,
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc .fbox-content,
body.dark-mode-activated .elementor-29 .elementor-element-300b7cc .elementor-widget-text-editor {
	color: #fff !important;
}

/* Stats band nested inside hero keeps its own dark panel. */
body.dark-mode-activated .elementor-29 .elementor-element-88467c3,
body.dark-mode-activated .elementor-29 .elementor-element-ae3e102 {
	background-color: var(--dark-bg, #121212) !important;
	background-image: none !important;
}

body.dark-mode-activated .elementor-29 .e-con.e-parent:not(.elementor-element-32554b5):not(.elementor-element-300b7cc)::before,
body.dark-mode-activated .elementor-29 .e-con.e-parent:not(.elementor-element-32554b5):not(.elementor-element-300b7cc) > .elementor-motion-effects-container > .elementor-motion-effects-layer::before,
body.dark-mode-activated .elementor-116 .e-con.e-parent::before,
body.dark-mode-activated .elementor-116 .e-con.e-parent > .elementor-motion-effects-container > .elementor-motion-effects-layer::before {
	background-image: none !important;
	opacity: 0 !important;
}

body.dark-mode-activated #nus-add-join {
	background-color: #2c441d !important;
}

body.dark-mode-activated .elementor-29 .section-title-wrapper .title,
body.dark-mode-activated .elementor-29 .section-title-wrapper .sub-title,
body.dark-mode-activated .elementor-116 .section-title-wrapper .title,
body.dark-mode-activated .elementor-116 .section-title-wrapper .sub-title,
body.dark-mode-activated .elementor-29 .elementor-heading-title,
body.dark-mode-activated .elementor-116 .elementor-heading-title {
	color: var(--light-color, #f5f5f5) !important;
}

body.dark-mode-activated .elementor-29 .section-description,
body.dark-mode-activated .elementor-29 .section-content,
body.dark-mode-activated .elementor-29 .fbox-content,
body.dark-mode-activated .elementor-29 .feature-box-title,
body.dark-mode-activated .elementor-116 .section-description,
body.dark-mode-activated .elementor-116 .section-content,
body.dark-mode-activated .elementor-116 .fbox-content,
body.dark-mode-activated .elementor-116 .feature-box-title,
body.dark-mode-activated .elementor-29 .elementor-widget-text-editor,
body.dark-mode-activated .elementor-116 .elementor-widget-text-editor {
	color: #c8c8c8 !important;
}

body.dark-mode-activated .elementor-29 .feature-box-wrapper,
body.dark-mode-activated .elementor-116 .feature-box-wrapper {
	background-color: var(--dark-bg-rgba, #1d1d1d) !important;
	box-shadow: none !important;
	border: 1px solid rgba(255, 255, 255, .06);
}

body.dark-mode-activated #nus-gridp .feature-box-modern .feature-box-inner,
body.dark-mode-activated #nus-gridr > .e-con-inner > .e-con {
	background: var(--dark-bg-rgba, #1d1d1d) !important;
	border-radius: var(--nus-radius);
}

body.dark-mode-activated #nus-gridp .feature-box-title,
body.dark-mode-activated #nus-gridp .fbox-content {
	color: rgba(255, 255, 255, .92) !important;
}

body.dark-mode-activated .elementor-29 .testimonial-inner .post-title,
body.dark-mode-activated .elementor-29 .testimonial-inner .post-excerpt,
body.dark-mode-activated .elementor-29 .testimonial-inner .client-name,
body.dark-mode-activated .elementor-116 .testimonial-inner .post-title,
body.dark-mode-activated .elementor-116 .testimonial-inner .post-excerpt,
body.dark-mode-activated .elementor-116 .testimonial-inner .client-name {
	color: var(--light-color, #f5f5f5) !important;
}

body.dark-mode-activated .elementor-29 .cea-counter-wrapper .counter-title,
body.dark-mode-activated .elementor-29 .cea-counter-wrapper .counter-up,
body.dark-mode-activated .elementor-29 .cea-counter-wrapper .counter-suffix,
body.dark-mode-activated .elementor-116 .cea-counter-wrapper .counter-title,
body.dark-mode-activated .elementor-116 .cea-counter-wrapper .counter-up,
body.dark-mode-activated .elementor-116 .cea-counter-wrapper .counter-suffix {
	color: var(--light-color, #f5f5f5) !important;
}

body.dark-mode-activated .nus-presence-map,
body.dark-mode-activated .nus-vendor-map {
	box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

body.dark-mode-activated .leaflet-popup.nus-vendor-popup .leaflet-popup-content-wrapper,
body.dark-mode-activated .leaflet-tooltip.nus-vendor-tooltip {
	background: #1d1d1d;
	border-color: rgba(255, 255, 255, .12);
	color: #f0f0f0;
}
body.dark-mode-activated .leaflet-popup.nus-vendor-popup .leaflet-popup-tip,
body.dark-mode-activated .leaflet-tooltip.nus-vendor-tooltip::before {
	background: #1d1d1d;
	border-top-color: #1d1d1d;
}
body.dark-mode-activated .nus-vendor-tooltip-inner strong {
	color: #b8d96a;
}
body.dark-mode-activated .nus-vendor-contact,
body.dark-mode-activated .nus-vendor-regions {
	color: #b0b0b0;
}

/* Hero text must stay white on the photo (rules above set gray on all editors). */
body.dark-mode-activated .elementor-29 .elementor-element-32554b5 .elementor-heading-title,
body.dark-mode-activated .elementor-29 .elementor-element-32554b5 .elementor-widget-text-editor,
body.dark-mode-activated .elementor-29 .elementor-element-32554b5 .feature-box-title,
body.dark-mode-activated .elementor-29 .elementor-element-32554b5 .fbox-content {
	color: #fff !important;
}
body.dark-mode-activated .elementor-29 .elementor-element-32554b5 .feature-box-wrapper {
	background-color: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

/* Re-assert transparent hero descendants after generic feature-box / text rules. */
body.dark-mode-activated .elementor-29 .elementor-element-32554b5 .e-con:not(.elementor-element-88467c3):not(.elementor-element-ae3e102),
body.dark-mode-activated .elementor-29 .elementor-element-79efeed,
body.dark-mode-activated .elementor-29 .elementor-element-79efeed .e-con,
body.dark-mode-activated .elementor-29 .elementor-element-595831a {
	background-color: transparent !important;
	background-image: none !important;
}

/* ========================================================= Mobile header
   Theme hides .site-header ≤1024px and shows .header-mobilebar. Hero uses
   margin-top:-50px on tablet/mobile, which slides content over the bar so the
   logo and menu vanish while the white strip remains. */
@media (max-width: 1024px) {
	.agrezen-body-inner > .sticky-outer:first-of-type {
		position: relative;
		z-index: 10050 !important;
	}

	.header-mobilebar.navbar {
		position: relative;
		z-index: 10051 !important;
		min-height: 60px;
	}

	.header-mobilebar.navbar .container,
	.header-mobilebar.navbar .nav.mobilebar {
		position: relative;
		z-index: 2;
	}

	.header-mobilebar .mobile-logo {
		max-height: 44px;
		width: auto;
	}

	/* Keep hero below the mobile bar (Elementor sets --margin-top:-50px). */
	.elementor-29 .elementor-element.elementor-element-32554b5 {
		margin-top: 0 !important;
	}

	body.dark-mode-activated .header-mobilebar.navbar {
		background-color: var(--dark-bg, #121212) !important;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
	}

	body.dark-mode-activated .header-mobilebar.navbar a,
	body.dark-mode-activated .header-mobilebar.navbar i,
	body.dark-mode-activated .header-mobilebar.navbar .bi {
		color: #fff !important;
	}

	body.dark-mode-activated .mobile-menu-floating {
		background-color: var(--dark-bg, #121212) !important;
	}

	body.dark-mode-activated .mobile-menu-floating,
	body.dark-mode-activated .mobile-menu-floating a,
	body.dark-mode-activated .mobile-menu-floating .mobile-menu-wrapper {
		color: #f0f0f0 !important;
	}

	body.dark-mode-activated .mobile-menu-floating i.close-icon::before,
	body.dark-mode-activated .mobile-menu-floating i.close-icon::after {
		border-bottom-color: #f0f0f0 !important;
	}
}

/* ========================================================= Contact emails (site-wide)
   Agrezen theme sets .footer-widgets-wrap .text-widget-content a { font-size: 30px }. */
a.nus-contact-link,
a[href^="mailto:"].nus-contact-link,
.elementor-widget-text-editor a[href^="mailto:"],
.contact-info-wrapper a[href^="mailto:"],
.contact-widget-info a[href^="mailto:"] {
	font-size: 0.95rem !important;
	font-weight: 400 !important;
	line-height: 1.55 !important;
	text-decoration: none;
	word-break: break-word;
	overflow-wrap: anywhere;
}

/* ========================================================= Site footer */
.site-footer .footer-widget > p,
footer.footer .footer-widget > p {
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 0 0 10px;
	color: rgba(255, 255, 255, 0.88);
}
.site-footer .nus-footer-contact,
footer.footer .nus-footer-contact,
.site-footer .footer-widget h4,
footer.footer .footer-widget h4 {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem !important;
	font-weight: 400 !important;
	line-height: 1.55 !important;
	margin: 0 0 10px !important;
	color: rgba(255, 255, 255, 0.92) !important;
}
.site-footer .footer-widgets-wrap .text-widget-content .nus-footer-contact a,
.site-footer .footer-widgets-wrap .text-widget-content a.nus-contact-link,
.site-footer .footer-widgets-wrap .text-widget-content a[href^="mailto:"],
footer.footer .footer-widgets-wrap .text-widget-content .nus-footer-contact a,
footer.footer .footer-widgets-wrap .text-widget-content a[href^="mailto:"],
.site-footer .nus-footer-contact a,
footer.footer .nus-footer-contact a,
.site-footer .nus-footer-contact span,
footer.footer .nus-footer-contact span,
.site-footer .footer-widget h4 a,
footer.footer .footer-widget h4 a {
	color: inherit !important;
	font-size: 0.95rem !important;
	font-weight: 400 !important;
	line-height: 1.55 !important;
	text-decoration: none;
	word-break: break-word;
	overflow-wrap: anywhere;
	margin: 0 !important;
	display: inline !important;
	align-self: center;
}
.site-footer .nus-footer-contact a:hover,
footer.footer .nus-footer-contact a:hover,
.site-footer .footer-widgets-wrap .text-widget-content a[href^="mailto:"]:hover,
footer.footer .footer-widgets-wrap .text-widget-content a[href^="mailto:"]:hover,
.site-footer .footer-widget h4 a:hover,
footer.footer .footer-widget h4 a:hover {
	color: var(--nus-secondary, #b7a801) !important;
}
.site-footer .nus-footer-contact i,
footer.footer .nus-footer-contact i,
.site-footer .footer-widget h4 i,
footer.footer .footer-widget h4 i {
	flex: 0 0 60px;
	align-self: center;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 60px;
	height: 60px;
	margin: 0 !important;
	font-size: 18px !important;
	line-height: 1 !important;
	color: var(--nus-secondary, #b7a801);
}
.site-footer .footer-widget > p:first-of-type,
footer.footer .footer-widget > p:first-of-type {
	margin-bottom: 14px;
	opacity: 0.88;
}

/* Footer brand column — center logo, intro, and contact rows (desktop / tablet / mobile). */
.site-footer .cus-navmenu-wedgets,
footer.footer .cus-navmenu-wedgets,
.footer-widgets-wrap .cus-navmenu-wedgets {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-align: center !important;
}
.site-footer .cus-navmenu-wedgets .cus-logo-img,
footer.footer .cus-navmenu-wedgets .cus-logo-img,
.footer-widgets-wrap .cus-navmenu-wedgets .cus-logo-img {
	display: block !important;
	width: 100% !important;
	margin-inline: auto !important;
	text-align: center !important;
}
.site-footer .cus-navmenu-wedgets .cus-logo-img img,
footer.footer .cus-navmenu-wedgets .cus-logo-img img,
.footer-widgets-wrap .cus-navmenu-wedgets .cus-logo-img img {
	display: block !important;
	margin-inline: auto !important;
}
.site-footer .cus-navmenu-wedgets .footer-cta,
footer.footer .cus-navmenu-wedgets .footer-cta,
.footer-widgets-wrap .cus-navmenu-wedgets .footer-cta {
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100%;
}
.site-footer .cus-navmenu-wedgets .text-widget-content,
.site-footer .cus-navmenu-wedgets .text-widget-inner,
footer.footer .cus-navmenu-wedgets .text-widget-content,
footer.footer .cus-navmenu-wedgets .text-widget-inner,
.footer-widgets-wrap .cus-navmenu-wedgets .text-widget-content,
.footer-widgets-wrap .cus-navmenu-wedgets .text-widget-inner {
	width: 100%;
	margin-inline: auto;
}
.site-footer .cus-navmenu-wedgets .footer-widget,
footer.footer .cus-navmenu-wedgets .footer-widget,
.footer-widgets-wrap .cus-navmenu-wedgets .footer-widget {
	display: inline-flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	width: auto !important;
	max-width: min(22rem, 100%) !important;
	margin-inline: auto !important;
}
.site-footer .cus-navmenu-wedgets .footer-widget > p:first-of-type,
footer.footer .cus-navmenu-wedgets .footer-widget > p:first-of-type,
.footer-widgets-wrap .cus-navmenu-wedgets .footer-widget > p:first-of-type {
	align-self: stretch;
	text-align: center;
}
.site-footer .cus-navmenu-wedgets .nus-footer-contact,
footer.footer .cus-navmenu-wedgets .nus-footer-contact,
.footer-widgets-wrap .cus-navmenu-wedgets .nus-footer-contact {
	justify-content: flex-start !important;
	align-items: center !important;
	align-self: stretch;
	width: 100%;
}
