/*
Theme Name: NBF Theme
Theme URI: https://example.com/nbf-theme
Author: Glowing Dark
Author URI: https://glowingdark.com
Description: WordPress theme built for Rasiklalparvati Foundation.
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nbf-theme
*/

/* Keep file to satisfy WordPress theme stylesheet requirement. */

:root {
	--rpf-ink: #00150f;
	--rpf-body: #414845;
	--rpf-muted: #717975;
	--rpf-line: rgba(0, 21, 15, 0.12);
	--rpf-surface: #ffffff;
	--rpf-surface-soft: #f4f4f1;
	--rpf-surface-accent: #eeeeec;
	--rpf-brand: #006c49;
	--rpf-brand-dark: #005236;
	--rpf-brand-blue: #062c23;
	--rpf-brand-blue-dark: #00150f;
	--rpf-gold: #cca730;
	--rpf-coral: #ba1a1a;
	--rpf-shadow: 0 20px 40px rgba(0, 21, 15, 0.06);
	--rpf-radius-lg: 24px;
	--rpf-radius-md: 16px;
	--rpf-radius-sm: 10px;
	--rpf-max: 1240px;
	--rpf-glass-bg: rgba(255, 255, 255, 0.7);
	--rpf-glass-border: rgba(255, 255, 255, 0.4);
	--rpf-font-heading: "Libre Caslon Text", Georgia, serif;
	--rpf-font-body: "Hanken Grotesk", "Segoe UI", sans-serif;
}

body {
	color: var(--rpf-body);
	background: #faf9f7;
}

body,
button,
input,
select,
textarea {
	font-family: var(--rpf-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero__caption h1,
.hero__caption h2 {
	font-family: var(--rpf-font-heading);
	color: var(--rpf-ink);
	font-weight: 400;
	letter-spacing: -0.01em;
}

.container,
.container-fluid {
	max-width: var(--rpf-max);
}

.header-area .main-header {
	background: var(--rpf-glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
	z-index: 1000;
	box-shadow: 0 4px 30px rgba(0, 21, 15, 0.05);
	transition: backdrop-filter 0.5s ease;
}

.header-area .main-header:hover {
	backdrop-filter: blur(28px);
	-webkit-backdrop-filter: blur(28px);
}

.header-area .header-bottom {
	padding: 8px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-area .header-bottom.header-sticky.sticky-bar {
	position: sticky;
	top: 0;
	left: auto;
	width: 100%;
	animation: none;
}

.logo img,
.footer-logo img,
.custom-logo {
	max-height: 72px;
	width: auto;
	object-fit: contain;
}

.logo,
.logo a,
.footer-logo,
.footer-logo a,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.logo a,
.footer-logo a,
.custom-logo-link {
	max-height: 80px;
	overflow: hidden;
}

.logo img,
.footer-logo img,
.custom-logo-link img,
img.custom-logo {
	display: block;
	width: auto !important;
	max-width: 100%;
	max-height: 72px !important;
	height: auto !important;
}

.header-area .row.align-items-center {
	min-height: 72px;
}

.header-area .logo {
	max-width: 100%;
}

.header-area .logo a,
.footer-logo a,
.rpf-site-logo {
	max-width: 100%;
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.header-area .logo img,
.rpf-site-logo img {
	max-height: 72px !important;
	width: auto !important;
	height: auto !important;
	display: block;
	object-fit: contain;
}
.footer-logo img {
	max-height: 56px !important;
	width: auto !important;
	height: auto !important;
	display: block;
	object-fit: contain;
}

.header-area .menu-wrapper {
	min-height: 72px;
}

.header-area .col-xl-2.col-lg-2,
.header-area .col-xl-10.col-lg-10 {
	display: flex;
	align-items: center;
}

#navigation {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

#navigation li a {
	font-size: 12px;
	font-weight: 700;
	font-family: var(--rpf-font-body);
	color: var(--rpf-body);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	position: relative;
	padding: 10px 18px;
	border-radius: 999px;
	transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

#navigation li a:hover,
#navigation li.current-menu-item > a {
	color: var(--rpf-ink);
	background: rgba(0, 108, 73, 0.08);
	transform: translateY(-1px);
}

#navigation li.current-menu-item > a,
#navigation li.current-menu-ancestor > a {
	color: var(--rpf-brand);
	background: rgba(0, 108, 73, 0.1);
	box-shadow: inset 0 0 0 1px rgba(0, 108, 73, 0.14);
}

#navigation li a::after {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 6px;
	height: 2px;
	border-radius: 999px;
	background: var(--rpf-brand);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}

#navigation li a:hover::after,
#navigation li.current-menu-item > a::after,
#navigation li.current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.header-btn,
.rpf-mini-btn,
.rpf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.header-btn {
	background: var(--rpf-brand);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 12px 28px rgba(0, 108, 73, 0.22);
	margin-left: 16px;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: none;
}

.header-btn:hover,
.rpf-btn:hover,
.rpf-mini-btn:hover {
	transform: translateY(-2px);
	opacity: 0.92;
}

.rpf-home {
	overflow: clip;
}

.rpf-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 18px;
	border-radius: 999px;
	background: rgba(0, 108, 73, 0.08);
	border: 1px solid rgba(0, 108, 73, 0.25);
	color: var(--rpf-brand);
	font-family: var(--rpf-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.rpf-hero {
	padding: 120px 0 72px;
	position: relative;
}

.rpf-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at right top, rgba(0, 108, 73, 0.1), transparent 34%),
		radial-gradient(circle at left center, rgba(204, 167, 48, 0.06), transparent 28%),
		linear-gradient(180deg, rgba(250, 249, 247, 0) 0%, rgba(250, 249, 247, 1) 100%);
	pointer-events: none;
}

.rpf-hero .container,
.rpf-impact-strip .container,
.rpf-story .container,
.rpf-programs .container,
.rpf-featured-projects .container,
.rpf-gallery-band .container,
.rpf-team .container,
.rpf-cta .container {
	position: relative;
	z-index: 1;
}

.rpf-hero__grid,
.rpf-story__grid,
.rpf-cta__box {
	display: grid;
	gap: 44px;
	align-items: center;
}

.rpf-hero__grid {
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

/* ── Homepage immersive hero: full-bleed image + overlay content ── */
.rpf-hero--immersive {
	padding: 0;
	min-height: 86vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.rpf-hero--immersive::before {
	display: none;
}

.rpf-hero--immersive__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.rpf-hero--immersive__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rpf-hero--immersive__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(100deg, rgba(0, 21, 15, 0.74) 0%, rgba(0, 21, 15, 0.45) 42%, rgba(0, 21, 15, 0.1) 72%);
}

.rpf-hero--immersive .container {
	position: relative;
	z-index: 2;
}

.rpf-hero--immersive__content {
	max-width: 600px;
	padding: 150px 0 110px;
	color: #fff;
}

.rpf-hero--immersive__content .rpf-kicker {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.1);
}

.rpf-hero--immersive__content h1 {
	color: #fff;
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1;
	margin: 18px 0 20px;
	max-width: none;
}

.rpf-hero--immersive__content .rpf-hero__lead {
	color: rgba(255, 255, 255, 0.88);
	max-width: 52ch;
}

.rpf-hero__note.rpf-hero__note--inline {
	position: static;
	margin-top: 28px;
	max-width: 420px;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: none;
}

.rpf-hero-metrics--floating {
	position: absolute;
	right: 48px;
	bottom: 48px;
	width: 320px;
	z-index: 2;
}

@media (max-width: 1199px) {
	.rpf-hero-metrics--floating {
		display: none;
	}
}

@media (max-width: 767px) {
	.rpf-hero--immersive {
		min-height: auto;
	}

	.rpf-hero--immersive__content {
		padding: 120px 0 60px;
	}
}

/* ── About page: hero + impact sections (were unstyled → squished) ── */
.rpf-page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 56px;
	align-items: center;
}

.rpf-page-hero__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rpf-page-hero__media {
	border-radius: var(--rpf-radius-lg);
	overflow: hidden;
	box-shadow: var(--rpf-shadow);
	aspect-ratio: 4 / 3;
}

.rpf-page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rpf-impact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 56px;
	align-items: center;
}

.rpf-impact-copy {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rpf-impact-media {
	border-radius: var(--rpf-radius-lg);
	overflow: hidden;
	box-shadow: var(--rpf-shadow);
	aspect-ratio: 4 / 3;
}

.rpf-impact-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rpf-impact-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 8px;
}

.rpf-impact-stats div {
	padding: 18px 20px;
	border-radius: var(--rpf-radius-sm);
	border: 1px solid rgba(0, 108, 73, 0.1);
	background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(239,246,255,0.88));
	box-shadow: 0 10px 28px rgba(0, 108, 73, 0.07);
}

.rpf-impact-stats strong {
	display: block;
	color: var(--rpf-ink);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.rpf-impact-stats span {
	display: block;
	margin-top: 5px;
	color: var(--rpf-muted);
	font-size: 13px;
	line-height: 1.5;
}

@media (max-width: 991px) {
	.rpf-page-hero__grid,
	.rpf-impact-layout {
		grid-template-columns: 1fr;
	}
	.rpf-page-hero__media,
	.rpf-impact-media {
		max-height: 360px;
	}
}

/* ── About page: centered "Stately yet Soulful" hero variant ── */
.rpf-page-hero--centered .rpf-page-hero__grid {
	grid-template-columns: 1fr;
	text-align: center;
}

.rpf-page-hero--centered .rpf-page-hero__content {
	max-width: 720px;
	margin: 0 auto;
	align-items: center;
}

.rpf-page-hero--centered .rpf-page-hero__content .rpf-kicker {
	margin-left: auto;
	margin-right: auto;
}

.rpf-page-hero--centered .rpf-hero__actions {
	justify-content: center;
}

.rpf-page-hero--centered .rpf-page-hero__media {
	margin: 40px auto 0;
	max-width: 960px;
	aspect-ratio: 21 / 9;
}

.rpf-hero__content h1 {
	font-size: clamp(42px, 5vw, 72px);
	line-height: 0.98;
	margin: 18px 0 20px;
	max-width: 12ch;
}

.rpf-hero__content h1 span {
	display: block;
	text-wrap: balance;
}

.rpf-hero__lead,
.rpf-section-head p,
.rpf-story__content p,
.rpf-project-card__body p,
.rpf-program-card__body p,
.rpf-cta__box p {
	font-size: 17px;
	line-height: 1.85;
	color: var(--rpf-body);
}

.rpf-tax-badge {
	padding: 14px 16px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(0, 108, 73, 0.12), rgba(226, 170, 66, 0.18));
	border: 1px solid rgba(0, 108, 73, 0.25);
	color: var(--rpf-ink);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.55;
}

/* Who We Are – Read More (mobile only) */
.rpf-read-more-btn {
	display: none;
}

@media (max-width: 767px) {
	.rpf-story-more {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
	}
	.rpf-story-more.is-open {
		max-height: 600px;
	}
	.rpf-read-more-btn {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		margin-top: 10px;
		background: none;
		border: none;
		padding: 0;
		color: var(--rpf-brand);
		font-size: 15px;
		font-weight: 600;
		cursor: pointer;
	}
	.rpf-read-more-btn i {
		transition: transform 0.3s ease;
		font-size: 12px;
	}
	.rpf-read-more-btn[aria-expanded="true"] i {
		transform: rotate(180deg);
	}
	.rpf-read-more-btn[aria-expanded="true"] .rpf-rm-label::before {
		content: 'Read Less';
	}
	.rpf-read-more-btn[aria-expanded="false"] .rpf-rm-label::before {
		content: 'Read More';
	}
}

.rpf-hero__actions,
.rpf-project-card__actions,
.rpf-cta__actions,
.rpf-inline-points {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.rpf-btn {
	min-height: 54px;
	padding: 0 26px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
}

.rpf-btn--primary,
.rpf-mini-btn {
	background: var(--rpf-brand);
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 16px 32px rgba(0, 108, 73, 0.2);
}

.rpf-btn--ghost {
	background: var(--rpf-glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-color: var(--rpf-line);
	color: var(--rpf-ink);
}

.rpf-btn--ghost-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.36);
	color: #fff;
}

.rpf-trust-row,
.rpf-impact-strip__grid,
.rpf-programs__grid,
.rpf-projects-grid,
.rpf-gallery-grid,
.rpf-team__grid {
	display: grid;
	gap: 20px;
}

.rpf-trust-row {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 34px;
}

.rpf-trust-row div,
.rpf-impact-strip__grid > div {
	padding: 20px 22px;
	border-radius: var(--rpf-radius-md);
	border: 1px solid var(--rpf-glass-border);
	background: var(--rpf-glass-bg);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: var(--rpf-shadow);
	position: relative;
	overflow: hidden;
}

.rpf-trust-row div::before,
.rpf-impact-strip__grid > div::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 3px;
	background: var(--rpf-brand);
}

.rpf-trust-row strong,
.rpf-impact-strip strong {
	display: block;
	color: var(--rpf-ink);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.rpf-trust-row span,
.rpf-impact-strip span {
	display: block;
	margin-top: 7px;
	color: var(--rpf-muted);
	font-size: 14px;
	line-height: 1.6;
}

.rpf-hero__media {
	position: relative;
	min-height: 620px;
}

.rpf-hero__image {
	position: absolute;
	overflow: hidden;
	border-radius: 28px;
	box-shadow: var(--rpf-shadow);
}

.rpf-hero__image img,
.rpf-story__media img,
.rpf-program-card img,
.rpf-project-card img,
.rpf-gallery-grid img,
.rpf-team-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rpf-hero__image--main {
	inset: 0 70px 110px 0;
}

.rpf-hero__image--card {
	width: 280px;
	height: 220px;
	right: 0;
	top: 42px;
	border: 8px solid rgba(255, 255, 255, 0.88);
}

.rpf-hero__image--side {
	width: 220px;
	height: 260px;
	right: 28px;
	bottom: 12px;
	border: 8px solid rgba(255, 255, 255, 0.88);
}

.rpf-hero__media .rpf-hero-metrics {
	position: absolute;
	right: 0;
	bottom: 20px;
	width: 300px;
	z-index: 4;
}

.rpf-hero__note {
	position: absolute;
	left: 34px;
	bottom: 28px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	max-width: 300px;
	padding: 18px 20px;
	border-radius: var(--rpf-radius-md);
	background: rgba(0, 21, 15, 0.86);
	color: #fff;
	box-shadow: 0 20px 40px rgba(0, 21, 15, 0.24);
}

.rpf-hero__note i,
.rpf-icon {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(204, 167, 48, 0.18);
	color: var(--rpf-gold);
	font-size: 18px;
}

.rpf-hero__note strong {
	display: block;
	font-size: 16px;
	line-height: 1.3;
	margin-bottom: 5px;
}

.rpf-hero__note span {
	display: block;
	font-size: 13px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
}

.rpf-impact-strip {
	padding: 0 0 38px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(229, 241, 250, 0.72) 100%);
}

.rpf-impact-strip__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rpf-story,
.rpf-programs,
.rpf-featured-projects,
.rpf-team {
	padding: 84px 0;
}

.rpf-story__grid {
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 52px;
}

.rpf-story__media {
	min-height: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--rpf-radius-lg);
	box-shadow: var(--rpf-shadow);
	background: linear-gradient(135deg, rgba(0, 108, 73, 0.08), rgba(0, 108, 73, 0.08));
}

.rpf-inline-points div {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(0, 108, 73, 0.08), rgba(0, 108, 73, 0.1));
	color: var(--rpf-ink);
	font-size: 14px;
	font-weight: 600;
}

.rpf-inline-points i {
	color: var(--rpf-brand);
}

.rpf-programs {
	background:
		linear-gradient(180deg, rgba(229, 241, 250, 0.8) 0%, rgba(237, 248, 242, 0.72) 100%);
}

.rpf-section-head {
	max-width: 100%;
	margin-bottom: 40px;
}

.rpf-section-head h2,
.rpf-story__content h2,
.rpf-cta__box h2 {
	font-size: clamp(30px, 3vw, 52px);
	line-height: 1.08;
	margin: 18px 0;
}

.rpf-programs__grid,
.rpf-projects-grid,
.rpf-team__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rpf-program-card,
.rpf-project-card,
.rpf-team-card {
	background: #ffffff;
	border: 1px solid var(--rpf-line);
	border-radius: var(--rpf-radius-lg);
	overflow: hidden;
	box-shadow: var(--rpf-shadow);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	display: flex;
	flex-direction: column;
}

.rpf-program-card:hover,
.rpf-project-card:hover,
.rpf-team-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 60px rgba(0, 21, 15, 0.1);
	border-color: rgba(0, 108, 73, 0.2);
}

.rpf-program-card img {
	height: auto;
	aspect-ratio: 4 / 3;
}

.rpf-project-card img {
	height: auto;
	aspect-ratio: 4 / 3;
}

.rpf-program-card__body,
.rpf-project-card__body {
	padding: 26px;
	flex: 1 1 auto;
}

.rpf-program-card__body h3,
.rpf-project-card__body h3,
.rpf-team-card h3 {
	font-size: 28px;
	line-height: 1.15;
	margin: 16px 0 12px;
}

.rpf-project-card__body h3 {
	font-size: 26px;
}

.rpf-project-card__body h3 a {
	color: var(--rpf-ink);
}

.rpf-project-card__body h3 a:hover,
.rpf-text-link:hover {
	color: var(--rpf-brand);
}

.rpf-project-card__actions {
	justify-content: space-between;
	align-items: center;
	margin-top: 22px;
}

/* Project progress bar */
.rpf-project-progress {
	margin: 16px 0 4px;
}

.rpf-progress-bar {
	height: 6px;
	border-radius: 999px;
	background: rgba(0, 21, 15, 0.08);
	overflow: hidden;
	margin-bottom: 8px;
}

.rpf-progress-fill {
	height: 100%;
	border-radius: 999px;
	background: var(--rpf-brand);
	transition: width 0.6s ease;
}

.rpf-progress-label {
	font-size: 13px;
	color: var(--rpf-muted);
	margin: 0;
}

.rpf-progress-label strong {
	color: var(--rpf-brand);
	font-weight: 700;
}

.rpf-mini-btn {
	min-height: 42px;
	padding: 0 18px;
	font-size: 14px;
}

.rpf-text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
	color: var(--rpf-ink);
}

.rpf-gallery-band {
	padding: 88px 0;
	background: linear-gradient(160deg, var(--rpf-ink) 0%, var(--rpf-brand-blue) 55%, var(--rpf-brand) 130%);
	position: relative;
}

.rpf-gallery-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(204, 167, 48, 0.14), transparent 20%),
		radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06), transparent 24%);
	pointer-events: none;
}

.rpf-section-head--light .rpf-kicker {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.rpf-section-head--light h2,
.rpf-section-head--light p {
	color: #fff;
}

.rpf-gallery-grid {
	grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
}

.rpf-gallery-grid img {
	height: 290px;
	border-radius: 24px;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.rpf-team-card {
	padding: 18px;
	text-align: center;
}

.rpf-team-card img {
	height: auto;
	aspect-ratio: 4 / 5;
	border-radius: 20px;
}

.rpf-team-card h3 {
	margin: 18px 0 8px;
}

.rpf-team-card p {
	margin: 0 0 10px;
	font-size: 15px;
	color: var(--rpf-muted);
}

.rpf-cta {
	padding: 0 0 90px;
}

.rpf-cta__box {
	grid-template-columns: minmax(0, 1.1fr) auto;
	padding: 44px;
	border-radius: var(--rpf-radius-lg);
	background: linear-gradient(160deg, var(--rpf-ink) 0%, var(--rpf-brand-blue) 55%, var(--rpf-brand) 130%);
	box-shadow: 0 30px 60px rgba(0, 21, 15, 0.22);
	position: relative;
	overflow: hidden;
}

.rpf-cta__box::after {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	right: -60px;
	top: -80px;
	background: radial-gradient(circle, rgba(204, 167, 48, 0.24), transparent 70%);
	pointer-events: none;
}

.rpf-cta__box h2,
.rpf-cta__box p {
	color: #fff;
}

/* Rahat Roti Ki banner */
.rpf-rahat-banner__box {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 48px;
	align-items: center;
	padding: 48px;
	border-radius: var(--rpf-radius-lg);
	background: #ffffff;
	border: 1px solid var(--rpf-line);
	box-shadow: var(--rpf-shadow);
}

.rpf-rahat-banner__copy p {
	font-size: 16px;
	line-height: 1.85;
	color: var(--rpf-body);
	margin: 0 0 16px;
}

.rpf-rahat-banner__media {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.rpf-rahat-banner__media img {
	max-width: 260px;
	width: 100%;
	height: auto;
}

.rpf-rahat-banner__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	width: 100%;
}

.rpf-rahat-banner__stats div {
	text-align: center;
	padding: 18px 16px;
	border-radius: var(--rpf-radius-sm);
	border: 1px solid var(--rpf-line);
	background: var(--rpf-surface-soft);
}

.rpf-rahat-banner__stats span {
	display: block;
	font-size: 24px;
	font-weight: 700;
	color: var(--rpf-brand);
	line-height: 1.2;
}

.rpf-rahat-banner__stats p {
	margin: 6px 0 0;
	font-size: 13px;
	color: var(--rpf-muted);
}

@media (max-width: 900px) {
	.rpf-rahat-banner__box {
		grid-template-columns: 1fr;
		padding: 32px 24px;
	}
}

.footer-wrapper {
	background: #ffffff;
	border-top: 1px solid var(--rpf-line);
}

.footer-area {
	padding-top: 72px;
}

.footer-area.footer-padding {
	padding-top: 64px;
	padding-bottom: 32px;
}

.footer-area .single-footer-caption.mb-50 {
	margin-bottom: 24px;
}

.footer-area .footer-logo.mb-35 {
	margin-bottom: 16px;
}

.footer-area .footer-logo a {
	font-family: var(--rpf-font-heading);
	font-style: italic;
	font-size: 26px;
	color: var(--rpf-brand);
}

.footer-area .footer-logo img {
	max-height: 64px !important;
}

.footer-area .footer-pera p {
	margin-bottom: 18px;
	max-width: 340px;
	font-size: 15px;
	line-height: 1.7;
}

.rpf-footer-badges {
	display: inline-block;
	max-width: 520px;
	padding: 12px 16px;
	border-radius: var(--rpf-radius-sm);
	background: var(--rpf-glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--rpf-glass-border);
	box-shadow: var(--rpf-shadow);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--rpf-ink);
	line-height: 1.6;
}

.rpf-footer-donate-wrap {
	margin-top: 20px;
}

.rpf-footer-reach-list li {
	line-height: 1.65;
	margin-bottom: 8px;
}

.rpf-footer-reach-list strong {
	color: var(--rpf-ink);
}

.footer-wrapper .footer-area .footer-tittle h4 {
	font-family: var(--rpf-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rpf-ink);
	margin-bottom: 18px;
}

.footer-wrapper .footer-bottom-area .footer-copy-right p,
.footer-wrapper .footer-area .footer-tittle ul li a,
.footer-wrapper .footer-area .footer-pera p,
.footer-wrapper .footer-social a,
.footer-wrapper .rpf-footer-reach-list li {
	color: var(--rpf-body);
}

.footer-tittle ul li {
	margin-bottom: 10px;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--rpf-line);
	margin-right: 8px;
}

.footer-wrapper .footer-social a:hover,
.footer-wrapper .footer-area .footer-tittle ul li a:hover {
	color: var(--rpf-brand);
	border-color: rgba(0, 108, 73, 0.4);
}

.footer-bottom-area {
	background: transparent;
	border-top: 1px solid var(--rpf-line);
}

.footer-bottom-area .footer-border {
	padding: 20px 0 12px;
}

.footer-wrapper .footer-bottom-area .footer-copy-right p a {
	color: var(--rpf-brand);
}

/* Footer newsletter block */
.rpf-footer-newsletter {
	margin-top: 22px;
	max-width: 320px;
}

.rpf-footer-newsletter h4 {
	font-family: var(--rpf-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rpf-ink);
	margin-bottom: 6px;
}

.rpf-footer-newsletter .rpf-muted-note {
	font-size: 13px;
	margin-bottom: 10px;
}

.rpf-footer-newsletter form {
	display: flex;
	gap: 8px;
	margin-top: 6px;
}

.rpf-footer-newsletter input[type="email"] {
	flex: 1 1 auto;
	min-width: 0;
	border: none;
	border-bottom: 1px solid var(--rpf-line);
	background: var(--rpf-surface-soft);
	border-radius: var(--rpf-radius-sm) var(--rpf-radius-sm) 0 0;
	padding: 12px 14px;
	font-family: var(--rpf-font-body);
	font-size: 14px;
	color: var(--rpf-ink);
	outline: none;
	transition: border-color 0.2s ease;
}

.rpf-footer-newsletter input[type="email"]:focus {
	border-color: var(--rpf-brand);
}

.rpf-footer-newsletter button {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: var(--rpf-brand);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.rpf-footer-newsletter button:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

@media (max-width: 1199px) {
	.rpf-hero__grid,
	.rpf-story__grid,
	.rpf-cta__box {
		grid-template-columns: 1fr;
	}

	.rpf-hero__media {
		min-height: 540px;
	}

	.rpf-programs__grid,
	.rpf-projects-grid,
	.rpf-team__grid,
	.rpf-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.rpf-hero {
		padding-top: 104px;
	}

	.rpf-trust-row,
	.rpf-impact-strip__grid {
		grid-template-columns: 1fr;
	}

	.rpf-hero__media {
		min-height: 480px;
	}

	.rpf-hero__image--main {
		inset: 0 56px 92px 0;
	}

	.rpf-hero__image--card {
		width: 220px;
		height: 180px;
	}

	.rpf-hero__image--side {
		width: 180px;
		height: 220px;
	}

	.rpf-story__media {
		min-height: 420px;
	}
}

@media (max-width: 767px) {
	.header-area .header-bottom {
		padding: 10px 0;
	}

	.rpf-hero,
	.rpf-story,
	.rpf-programs,
	.rpf-featured-projects,
	.rpf-gallery-band,
	.rpf-team {
		padding: 70px 0;
	}

	.rpf-hero__content h1,
	.rpf-section-head h2,
	.rpf-story__content h2,
	.rpf-cta__box h2 {
		max-width: none;
	}

	.rpf-hero__media {
		min-height: auto;
		display: grid;
		gap: 16px;
	}

	.rpf-hero__image,
	.rpf-hero__note,
	.rpf-hero__media .rpf-hero-metrics {
		position: static;
		width: 100%;
		height: auto;
		max-width: none;
	}

	.rpf-hero__image img {
		aspect-ratio: 4 / 3;
	}

	.rpf-programs__grid,
	.rpf-projects-grid,
	.rpf-gallery-grid,
	.rpf-team__grid {
		grid-template-columns: 1fr;
	}

	.rpf-cta__box {
		padding: 32px 24px;
	}
}

.rpf-page-shell {
	overflow: clip;
}

.rpf-page-section {
	padding: 28px 0 84px;
}

.rpf-page-hero {
	padding: 118px 0 64px;
	position: relative;
}

.rpf-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.95) 18%, rgba(237, 244, 251, 0.82) 100%),
		radial-gradient(circle at right top, rgba(226, 170, 66, 0.14), transparent 32%),
		radial-gradient(circle at left center, rgba(0, 108, 73, 0.08), transparent 28%);
	pointer-events: none;
}

.rpf-page-hero .container,
.rpf-page-section .container {
	position: relative;
	z-index: 1;
}

.rpf-page-hero__grid,
.rpf-contact-layout,
.rpf-donate-layout,
.rpf-impact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 52px;
	align-items: center;
}

.rpf-page-hero__content h1,
.rpf-section-head h2,
.rpf-info-card h3,
.rpf-richtext-card h2,
.rpf-richtext-card h3 {
	color: var(--rpf-ink);
}

.rpf-page-hero__content .rpf-kicker {
	margin-bottom: 22px;
	align-self: flex-start;
}

.rpf-page-hero__content h1 {
	margin: 0 0 26px;
}

.rpf-page-hero__content p,
.rpf-info-card p,
.rpf-richtext-card,
.rpf-contact-form label span,
.rpf-muted-note {
	font-size: 16px;
	line-height: 1.8;
	color: var(--rpf-body);
}

.rpf-page-hero__content p {
	max-width: 100%;
	margin: 0 0 30px;
}

.rpf-page-hero__media img,
.rpf-impact-media img,
.rpf-qr-card img,
.rpf-gallery-card img {
	width: 100%;
	border-radius: 28px;
	object-fit: cover;
	box-shadow: var(--rpf-shadow);
	border: 1px solid rgba(0, 21, 15, 0.08);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rpf-page-hero__media iframe {
	width: 100%;
	border-radius: 28px;
	box-shadow: var(--rpf-shadow);
	border: 1px solid rgba(0, 21, 15, 0.08);
	min-height: 380px;
}

.rpf-page-hero__media img:hover,
.rpf-impact-media img:hover,
.rpf-qr-card img:hover,
.rpf-gallery-card:hover img,
.rpf-program-card:hover img,
.rpf-project-card:hover img,
.rpf-story__media:hover img,
.rpf-team-card:hover img {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 28px 60px rgba(0, 21, 15, 0.16);
}

.rpf-section-head--left {
	text-align: left;
	margin-bottom: 26px;
}

.rpf-notice {
	padding: 14px 18px;
	border-radius: 16px;
	margin-bottom: 24px;
}

.rpf-notice--success {
	background: #e9f7ef;
	color: #185b3e;
	border: 1px solid rgba(24, 91, 62, 0.14);
}

.rpf-notice--error {
	background: #fff1f1;
	color: #8d2f2f;
	border: 1px solid rgba(141, 47, 47, 0.14);
}

.rpf-contact-card,
.rpf-info-card,
.rpf-richtext-card,
.rpf-qr-card {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--rpf-line);
	border-radius: var(--rpf-radius-lg);
	box-shadow: var(--rpf-shadow);
}

.rpf-contact-card,
.rpf-richtext-card {
	padding: 34px;
}

.rpf-contact-stack {
	display: grid;
	gap: 18px;
}

.rpf-info-card {
	padding: 24px 26px;
}

.rpf-info-card a:not(.rpf-btn):not(.rpf-mini-btn),
.rpf-contact-stack a:not(.rpf-btn):not(.rpf-mini-btn),
.rpf-page-shell a:not(.rpf-btn):not(.rpf-mini-btn):not(.rpf-btn--ghost),
.rpf-footer-reach-list a {
	color: var(--rpf-brand);
}

.rpf-info-card a:not(.rpf-btn):not(.rpf-mini-btn):hover,
.rpf-contact-stack a:not(.rpf-btn):not(.rpf-mini-btn):hover,
.rpf-page-shell a:not(.rpf-btn):not(.rpf-mini-btn):not(.rpf-btn--ghost):hover,
.rpf-footer-reach-list a:hover {
	color: var(--rpf-brand-dark);
}

.rpf-info-card .rpf-btn,
.rpf-contact-stack .rpf-btn,
.rpf-info-card .rpf-mini-btn,
.rpf-contact-stack .rpf-mini-btn {
	color: #fff;
}

.rpf-info-card--accent,
.rpf-qr-card {
	background: linear-gradient(180deg, #ffffff 0%, var(--rpf-surface-soft) 100%);
}

.rpf-contact-form {
	display: grid;
	gap: 16px;
}

.rpf-contact-form label {
	display: grid;
	gap: 8px;
}

.rpf-contact-form input,
.rpf-contact-form textarea {
	width: 100%;
	border-radius: 18px;
	border: 1px solid rgba(0, 21, 15, 0.12);
	background: #fff;
	padding: 15px 18px;
	font-size: 15px;
	color: var(--rpf-ink);
}

.rpf-contact-form input:focus,
.rpf-contact-form textarea:focus {
	outline: none;
	border-color: rgba(0, 108, 73, 0.5);
	box-shadow: 0 0 0 4px rgba(0, 108, 73, 0.1);
}

.rpf-impact-layout {
	padding: 34px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(0, 21, 15, 0.08);
	border-radius: 32px;
	box-shadow: 0 22px 50px rgba(0, 21, 15, 0.08);
}

.rpf-impact-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 28px;
}

.rpf-impact-stats div {
	padding: 18px;
	border-radius: 20px;
	background: #f8fafc;
	border: 1px solid rgba(0, 21, 15, 0.08);
}

.rpf-impact-stats strong {
	display: block;
	color: var(--rpf-ink);
	font-size: 20px;
	margin-bottom: 6px;
}

.rpf-gallery-masonry {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.rpf-gallery-card {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 28px;
}

.rpf-gallery-card figcaption {
	position: absolute;
	inset: auto 16px 16px 16px;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(0, 21, 15, 0.68);
	color: #fff;
	backdrop-filter: blur(12px);
}

.rpf-inline-list {
	margin: 0 0 20px;
	padding-left: 18px;
}

.rpf-inline-list li {
	margin-bottom: 8px;
}

.rpf-founder-quote {
	margin: 8px 0 0;
	padding: 14px 18px;
	border-left: 4px solid var(--rpf-brand);
	background: rgba(0, 108, 73, 0.06);
	border-radius: var(--rpf-radius-sm);
	font-family: var(--rpf-font-heading);
	font-style: italic;
	font-size: 18px;
	line-height: 1.65;
	color: var(--rpf-ink);
}

.rpf-audit-list li a {
	font-weight: 700;
	color: var(--rpf-brand);
}

.rpf-audit-list li a:hover {
	color: var(--rpf-brand-dark);
}

.rpf-cause-proof {
	padding-top: 0;
}

.rpf-donate-layout {
	align-items: stretch;
}

.rpf-impact-tier-wrap {
	margin-bottom: 28px;
	padding: 28px;
	border-radius: var(--rpf-radius-lg);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--rpf-line);
	box-shadow: var(--rpf-shadow);
}

.rpf-impact-tier-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.rpf-impact-tier {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px;
	border-radius: var(--rpf-radius-sm);
	border: 1px solid var(--rpf-line);
	background: #ffffff;
	color: var(--rpf-ink);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

button.rpf-impact-tier {
	font: inherit;
	text-align: left;
	width: 100%;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.rpf-impact-tier strong {
	font-size: 20px;
	line-height: 1.2;
}

.rpf-impact-tier span {
	font-size: 14px;
	color: var(--rpf-muted);
}

.rpf-impact-tier:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 30px rgba(0, 108, 73, 0.14);
	border-color: rgba(0, 108, 73, 0.35);
}

.rpf-impact-tier--custom {
	background: rgba(0, 108, 73, 0.08);
	border-color: rgba(0, 108, 73, 0.3);
}

.rpf-payment-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 8px;
}

.rpf-payment-option {
	padding: 16px;
	border-radius: var(--rpf-radius-sm);
	border: 1px solid var(--rpf-line);
	background: rgba(255, 255, 255, 0.95);
}

.rpf-payment-option h3 {
	font-size: 18px;
	margin-bottom: 8px;
}

.rpf-payment-option p {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.6;
}

.rpf-volunteer-form {
	display: grid;
	gap: 18px;
}

.rpf-volunteer-step {
	padding: 18px;
	border-radius: 18px;
	border: 1px solid rgba(0, 21, 15, 0.1);
	background: rgba(255, 255, 255, 0.88);
	display: grid;
	gap: 10px;
}

.rpf-volunteer-step h3 {
	font-size: 20px;
	margin: 0;
}

.rpf-volunteer-step label {
	display: grid;
	gap: 6px;
	font-size: 15px;
	color: var(--rpf-ink);
}

.rpf-volunteer-step input,
.rpf-volunteer-step select {
	width: 100%;
	border-radius: 12px;
	border: 1px solid rgba(0, 21, 15, 0.14);
	padding: 11px 14px;
	font-size: 14px;
}

.rpf-volunteer-step input[type="radio"] {
	width: auto;
	margin-right: 8px;
}

.rpf-volunteer-actions {
	display: flex;
	justify-content: flex-start;
}

.rpf-mobile-donate-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	background: rgba(0, 21, 15, 0.94);
	backdrop-filter: blur(8px);
	box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2);
}

.rpf-mobile-donate-bar__btn {
	display: block;
	text-align: center;
	min-height: 48px;
	line-height: 48px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: var(--rpf-brand);
	color: #fff;
}

.rpf-mobile-donate-bar__btn:hover {
	color: #fff;
}

.rpf-qr-card {
	padding: 24px;
	text-align: center;
}

.rpf-qr-card img {
	max-width: 320px;
	margin: 0 auto 18px;
}

@media (max-width: 991px) {
	.rpf-page-hero__grid,
	.rpf-contact-layout,
	.rpf-donate-layout,
	.rpf-impact-layout {
		grid-template-columns: 1fr;
	}

	.rpf-impact-tier-grid,
	.rpf-payment-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rpf-gallery-masonry,
	.rpf-impact-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.rpf-page-hero {
		padding: 98px 0 42px;
	}

	.rpf-page-section {
		padding: 18px 0 62px;
	}

	.rpf-contact-card,
	.rpf-richtext-card,
	.rpf-info-card,
	.rpf-impact-layout {
		padding: 22px;
	}

	.rpf-gallery-masonry,
	.rpf-impact-stats {
		grid-template-columns: 1fr;
	}

	.rpf-impact-tier-wrap {
		padding: 20px;
	}

	.rpf-impact-tier-grid,
	.rpf-payment-grid {
		grid-template-columns: 1fr;
	}

	.rpf-page-hero__media iframe {
		min-height: 300px;
	}
}
/* ── Volunteers Section ──────────────────────────────────────────────── */
.rpf-volunteers {
	padding: 84px 0;
	background:
		linear-gradient(180deg, rgba(229, 241, 250, 0.55) 0%, rgba(237, 248, 242, 0.45) 100%);
	position: relative;
}

.rpf-volunteers::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 10% 80%, rgba(0, 108, 73, 0.07), transparent 30%),
		radial-gradient(circle at 90% 20%, rgba(0, 108, 73, 0.06), transparent 28%);
	pointer-events: none;
}

.rpf-volunteers .container {
	position: relative;
	z-index: 1;
}

.rpf-volunteers .rpf-section-head {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.rpf-volunteer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	margin-top: 8px;
}

.rpf-volunteer-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 40px 28px 36px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.94));
	border: 1px solid rgba(0, 108, 73, 0.1);
	border-radius: 26px;
	box-shadow: 0 16px 36px rgba(0, 108, 73, 0.07);
	transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
	position: relative;
	overflow: hidden;
}

.rpf-volunteer-card::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 3px;
	background: var(--rpf-brand);
	opacity: 0;
	transition: opacity 0.32s ease;
}

.rpf-volunteer-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 54px rgba(0, 108, 73, 0.13);
	border-color: rgba(0, 108, 73, 0.2);
}

.rpf-volunteer-card:hover::before {
	opacity: 1;
}

.rpf-volunteer-avatar {
	display: block;
	width: 250px;
	height: 320px;
	border-radius: 26px;
	overflow: hidden;
	border: 4px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 24px rgba(0, 108, 73, 0.14);
	background: linear-gradient(135deg, rgba(0, 108, 73, 0.1), rgba(0, 108, 73, 0.1));
	flex-shrink: 0;
	transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.rpf-volunteer-card:hover .rpf-volunteer-avatar {
	transform: scale(1.06);
	box-shadow: 0 14px 32px rgba(0, 108, 73, 0.2);
}

.rpf-volunteer-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rpf-volunteer-card h3 {
	font-size: 18px;
	line-height: 1.3;
	margin: 16px 0 6px;
	color: var(--rpf-ink);
}

.rpf-volunteer-card h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.rpf-volunteer-card h3 a:hover {
	color: var(--rpf-brand);
}

.rpf-volunteer-card .rpf-vol-location {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	color: var(--rpf-muted);
	font-weight: 500;
}

.rpf-volunteer-card .rpf-vol-location i {
	color: var(--rpf-brand);
	font-size: 12px;
}

.rpf-volunteer-card .rpf-vol-badge {
	margin-top: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(0, 108, 73, 0.08), rgba(0, 108, 73, 0.1));
	color: var(--rpf-ink);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.rpf-volunteer-card .rpf-vol-badge i {
	color: var(--rpf-brand);
	font-size: 11px;
}

/* Pagination */
.rpf-pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 48px;
}

.rpf-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(0, 108, 73, 0.12);
	color: var(--rpf-ink);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.rpf-pagination .page-numbers.current,
.rpf-pagination .page-numbers:hover {
	background: var(--rpf-brand);
	color: #fff;
	border-color: transparent;
}

/* Empty state */
.rpf-empty-state {
	text-align: center;
	padding: 48px 24px;
	color: var(--rpf-muted);
	font-size: 16px;
}

/* Responsive */
@media (max-width: 1199px) {
	.rpf-volunteer-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.rpf-volunteer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.rpf-volunteers {
		padding: 60px 0;
	}

	.rpf-volunteer-card {
		padding: 24px 14px 20px;
	}

	.rpf-volunteer-avatar {
		width: 110px;
		height: 110px;
	}

	.rpf-volunteer-card h3 {
		font-size: 15px;
		margin: 12px 0 5px;
	}
}

@media (max-width: 479px) {
	.rpf-volunteer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.rpf-volunteer-card {
		padding: 20px 10px 16px;
	}

	.rpf-volunteer-avatar {
		width: 90px;
		height: 90px;
	}

	.rpf-volunteer-card h3 {
		font-size: 13px;
	}

	.rpf-volunteer-card .rpf-vol-location,
	.rpf-volunteer-card .rpf-vol-badge {
		font-size: 11px;
	}
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE OVERHAUL  –  Breakpoints: 991 | 767 | 575 | 420 px
   ═══════════════════════════════════════════════════════════════ */

/* ── Global: prevent horizontal overflow on all screens ── */
html,
body {
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

/* ── Mobile menu: override reference-theme transparent/absolute dropdown ── */

/* Raise the mobile_menu z-index above page content */
.mobile_menu {
	z-index: 9999 !important;
}

/* Hide the old MENU label text from slicknav */
.mobile_menu .slicknav_menu .slicknav_menutxt {
	display: none !important;
}

/* The hamburger button — green pill, top-right, proper size */
.mobile_menu .slicknav_menu .slicknav_btn {
	background-color: var(--rpf-brand) !important;
	border-radius: 12px !important;
	padding: 10px 14px !important;
	top: -48px !important;
	box-shadow: 0 4px 16px rgba(0, 108, 73, 0.35) !important;
	transition: background-color 0.2s ease !important;
	cursor: pointer !important;
}

.mobile_menu .slicknav_menu .slicknav_btn:hover {
	background-color: var(--rpf-brand-dark) !important;
}

.mobile_menu .slicknav_menu .slicknav_btn .slicknav_icon-bar {
	background-color: #ffffff !important;
	width: 22px !important;
	height: 2px !important;
	border-radius: 2px !important;
	display: block !important;
	box-shadow: none !important;
}

.mobile_menu .slicknav_menu .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
	margin-top: 5px !important;
}

/* Dropdown nav panel — solid white background, shadow, centered items */
.mobile_menu .slicknav_menu .slicknav_nav {
	background: #ffffff !important;
	border-top: 3px solid var(--rpf-brand) !important;
	border-radius: 0 0 20px 20px !important;
	box-shadow: 0 20px 48px rgba(0, 21, 15, 0.18) !important;
	padding: 12px 8px 20px !important;
	margin: 0 !important;
	text-align: center !important;
	list-style: none !important;
}

.mobile_menu .slicknav_menu .slicknav_nav li {
	list-style: none !important;
}

.mobile_menu .slicknav_menu .slicknav_nav a {
	color: var(--rpf-ink) !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	font-family: Poppins, "Segoe UI", sans-serif !important;
	padding: 11px 24px !important;
	border-radius: 12px !important;
	margin: 3px 12px !important;
	display: block !important;
	text-align: center !important;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease !important;
}

.mobile_menu .slicknav_menu .slicknav_nav a:hover {
	background: var(--rpf-surface-accent) !important;
	color: var(--rpf-brand) !important;
}

.mobile_menu .slicknav_menu .slicknav_nav .slicknav_item a {
	display: inline !important;
	padding: 0 !important;
	margin: 0 !important;
}

.mobile_menu .slicknav_menu .slicknav_nav .slicknav_row {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 11px 24px !important;
	border-radius: 12px !important;
	margin: 3px 12px !important;
	cursor: pointer !important;
	transition: background 0.2s ease !important;
}

.mobile_menu .slicknav_menu .slicknav_nav .slicknav_row:hover {
	background: var(--rpf-surface-accent) !important;
}

.mobile_menu .slicknav_menu .slicknav_nav .slicknav_row:hover a {
	color: var(--rpf-brand) !important;
}

.mobile_menu .slicknav_menu .slicknav_nav .slicknav_arrow {
	color: var(--rpf-muted) !important;
	font-size: 12px !important;
	padding: 0 0 0 8px !important;
}

/* ── 991 px — Large tablets ──────────────────────────────────── */
@media (max-width: 991px) {

	/* Kill the oversized header rows */
	.header-area .row.align-items-center,
	.header-area .menu-wrapper {
		min-height: unset;
	}

	/* Cap logo height for tablets */
	.header-area .logo img,
	.header-area .logo .custom-logo,
	img.custom-logo {
		max-height: 110px !important;
	}
}

/* ── 767 px — Phones (landscape) ────────────────────────────── */
@media (max-width: 767px) {

	/* Compact logo */
	.header-area .logo img,
	.header-area .logo .custom-logo,
	img.custom-logo {
		max-height: 72px !important;
	}

	/* Remove the max-width cap on hero headline */
	.rpf-hero__content h1 {
		max-width: none;
	}

	/* Hero action buttons: stack & go full-width */
	.rpf-hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.rpf-hero__actions .rpf-btn {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	/* CTA action buttons: stack & go full-width */
	.rpf-cta__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		margin-top: 28px;
	}

	.rpf-cta__actions .rpf-btn {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	/* Page-hero CTA button: full-width on phones */
	.rpf-page-hero__content .rpf-btn {
		width: 100%;
		justify-content: center;
	}

	/* Gallery band padding tweak */
	.rpf-gallery-band {
		padding: 52px 0;
	}

	/* Impact stats: keep 2-col at large phones */
	.rpf-impact-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	/* Section head bottom gap */
	.rpf-section-head {
		margin-bottom: 28px;
	}
}

/* ── 575 px — Small phones (portrait) ───────────────────────── */
@media (max-width: 575px) {

	/* Safe horizontal padding inside every container */
	.container,
	.container-fluid {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	/* Compact header row */
	.header-area .row.align-items-center,
	.header-area .menu-wrapper {
		min-height: unset;
	}

	/* Tiny logo */
	.header-area .logo img,
	.header-area .logo .custom-logo,
	img.custom-logo {
		max-height: 60px !important;
	}

	/* ── Section vertical spacing ── */
	.rpf-hero,
	.rpf-story,
	.rpf-programs,
	.rpf-featured-projects,
	.rpf-gallery-band,
	.rpf-team,
	.rpf-cta {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.rpf-page-hero {
		padding-top: 72px;
		padding-bottom: 30px;
	}

	.rpf-page-section {
		padding-top: 10px;
		padding-bottom: 48px;
	}

	.rpf-volunteers {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	/* ── Typography scale-down ── */
	.rpf-hero__content h1 {
		font-size: clamp(28px, 9vw, 40px);
	}

	.rpf-page-hero__content h1 {
		font-size: clamp(24px, 8vw, 36px);
	}

	.rpf-section-head h2,
	.rpf-story__content h2,
	.rpf-cta__box h2,
	.rpf-richtext-card h2 {
		font-size: clamp(20px, 6vw, 30px);
	}

	.rpf-program-card__body h3,
	.rpf-project-card__body h3,
	.rpf-team-card h3 {
		font-size: 22px;
		line-height: 1.2;
	}

	.rpf-volunteer-card h3 {
		font-size: 18px;
	}

	/* ── Hero: hide layered decorative images — keep only main ── */
	.rpf-hero__image--side,
	.rpf-hero__image--card {
		display: none;
	}

	/* ── Impact stats: single column ── */
	.rpf-impact-stats {
		grid-template-columns: 1fr;
	}

	/* ── Gallery masonry (gallery page): single column ── */
	.rpf-gallery-masonry {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	/* ── Gallery band (home): 2-col ── */
	.rpf-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rpf-gallery-grid img {
		height: 200px;
	}

	/* ── Card inner padding reduction ── */
	.rpf-contact-card,
	.rpf-richtext-card {
		padding: 20px;
		border-radius: 20px;
	}

	.rpf-info-card {
		padding: 18px;
		border-radius: 20px;
	}

	.rpf-impact-layout {
		padding: 20px;
		gap: 24px;
		border-radius: 22px;
	}

	.rpf-cta__box {
		padding: 24px 18px;
		border-radius: 22px;
	}

	/* ── Footer ── */
	.footer-area {
		padding-top: 48px;
	}

	.footer-area.footer-padding {
		padding-top: 48px;
		padding-bottom: 28px;
	}

	.footer-area .single-footer-caption {
		margin-bottom: 28px !important;
	}

	.footer-area .footer-pera p {
		max-width: 100%;
	}

	.footer-area .footer-logo img {
		max-height: 80px !important;
	}

	/* ── Section head ── */
	.rpf-section-head {
		margin-bottom: 24px;
	}

	/* ── Volunteer avatar slightly smaller ── */
	.rpf-volunteer-avatar {
		width: 96px;
		height: 96px;
	}

	body {
		padding-bottom: 76px;
	}
}

/* ── 420 px — Very small phones ─────────────────────────────── */
@media (max-width: 420px) {

	/* Further spacing compression */
	.rpf-hero,
	.rpf-story,
	.rpf-programs,
	.rpf-featured-projects,
	.rpf-gallery-band,
	.rpf-team,
	.rpf-cta,
	.rpf-volunteers {
		padding-top: 36px;
		padding-bottom: 36px;
	}

	.rpf-page-hero {
		padding-top: 64px;
		padding-bottom: 22px;
	}

	.rpf-page-section {
		padding-top: 8px;
		padding-bottom: 36px;
	}

	/* Gallery band grid: single column */
	.rpf-gallery-grid {
		grid-template-columns: 1fr;
	}

	.rpf-gallery-grid img {
		height: 220px;
	}

	/* Volunteer grid: 2 columns on small mobile */
	.rpf-volunteer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	/* Minimum 48-px touch targets on interactive elements */
	.rpf-btn,
	.rpf-mini-btn,
	.header-btn {
		min-height: 48px;
		padding: 12px 20px;
	}

	/* CTA box: tightest padding */
	.rpf-cta__box {
		padding: 20px 14px;
	}

	/* Story image: shrink aspect to save space */
	.rpf-hero__image img {
		aspect-ratio: 3 / 2;
	}

	/* Typography floor */
	.rpf-section-head h2,
	.rpf-story__content h2,
	.rpf-cta__box h2 {
		font-size: clamp(18px, 6vw, 26px);
	}
}
/* ═══════════════════════════════════════════════════════════════
   NEW HEARTCORE COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Impact Pulse: fixed floating glass icon nav ── */
.rpf-impact-pulse {
	position: fixed;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 18px 14px 20px;
	border-radius: 999px;
	background: var(--rpf-glass-bg);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--rpf-glass-border);
	box-shadow: var(--rpf-shadow);
}

.rpf-impact-pulse__label {
	text-align: center;
	margin-bottom: 4px;
	white-space: nowrap;
}

.rpf-impact-pulse__label strong {
	display: block;
	font-family: var(--rpf-font-heading);
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
	color: var(--rpf-brand);
	line-height: 1.2;
}

.rpf-impact-pulse__label span {
	display: block;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rpf-muted);
	margin-top: 2px;
}

.rpf-impact-pulse a {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--rpf-muted);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rpf-impact-pulse a .material-symbols-outlined {
	font-size: 20px;
}

.rpf-impact-pulse a:hover,
.rpf-impact-pulse a.is-active {
	background: var(--rpf-brand);
	color: #fff;
	transform: translateY(-2px);
}

.rpf-impact-pulse a .rpf-tooltip {
	position: absolute;
	right: calc(100% + 12px);
	top: 50%;
	transform: translateY(-50%) translateX(4px);
	background: var(--rpf-ink);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
	white-space: nowrap;
	padding: 6px 12px;
	border-radius: 999px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.rpf-impact-pulse a:hover .rpf-tooltip {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

@media (max-width: 1200px) {
	.rpf-impact-pulse {
		display: none;
	}
}

/* ── Glass hero metrics board (Live Impact Metrics) ── */
.rpf-hero-metrics {
	background: var(--rpf-glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--rpf-glass-border);
	border-radius: var(--rpf-radius-lg);
	padding: 28px;
	box-shadow: var(--rpf-shadow);
}

.rpf-hero-metrics__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--rpf-line);
	padding-bottom: 16px;
	margin-bottom: 18px;
}

.rpf-hero-metrics__head h3 {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0;
	color: var(--rpf-ink);
}

.rpf-hero-metrics__live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rpf-brand);
	background: rgba(0, 108, 73, 0.1);
	padding: 4px 10px;
	border-radius: 999px;
}

.rpf-hero-metrics__live::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--rpf-brand);
	animation: rpf-pulse-dot 1.6s infinite;
}

@keyframes rpf-pulse-dot {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.35;
	}
}

.rpf-hero-metrics__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 16px;
}

.rpf-hero-metrics__grid strong {
	display: block;
	font-family: var(--rpf-font-heading);
	font-weight: 400;
	font-size: 28px;
	color: var(--rpf-ink);
	line-height: 1.1;
}

.rpf-hero-metrics__grid span {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: var(--rpf-muted);
	line-height: 1.4;
}

/* ── Masonry gallery hover captions ── */
.rpf-gallery-card {
	position: relative;
	overflow: hidden;
}

.rpf-gallery-card img {
	transition: transform 0.7s ease;
}

.rpf-gallery-card:hover img {
	transform: scale(1.06);
}

.rpf-gallery-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 21, 15, 0.75) 0%, rgba(0, 21, 15, 0) 55%);
	opacity: 0.55;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.rpf-gallery-card:hover::after {
	opacity: 0.92;
}

.rpf-gallery-card figcaption {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	color: #fff;
	font-family: var(--rpf-font-heading);
	font-style: italic;
	font-size: 15px;
	line-height: 1.35;
	transform: translateY(10px);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.rpf-gallery-card:hover figcaption {
	transform: translateY(0);
	opacity: 1;
}

/* ── Leadership bento card (page-about founder) ── */
.rpf-founder-section .rpf-impact-media {
	aspect-ratio: 3 / 4;
	max-height: none;
}

.rpf-leader-bento {
	position: relative;
	border-radius: var(--rpf-radius-lg);
	overflow: hidden;
	box-shadow: var(--rpf-shadow);
	min-height: 520px;
	height: 100%;
	display: flex;
	align-items: flex-end;
}

.rpf-leader-bento img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Face sits ~22% down the source photo (below ceiling headroom) */
	object-position: center 22%;
	transition: transform 0.7s ease;
}

.rpf-leader-bento:hover img {
	transform: scale(1.04);
}

.rpf-leader-bento::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 21, 15, 0.88) 0%, rgba(0, 21, 15, 0.15) 60%, rgba(0, 21, 15, 0) 100%);
}

.rpf-leader-bento__body {
	position: relative;
	z-index: 2;
	padding: 32px;
	color: #fff;
}

.rpf-leader-bento__body h3 {
	font-family: var(--rpf-font-heading);
	font-size: 26px;
	color: #fff;
	margin: 0 0 4px;
}

.rpf-leader-bento__role {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rpf-gold);
	margin-bottom: 12px;
	display: block;
}

.rpf-leader-bento__quote {
	font-family: var(--rpf-font-heading);
	font-style: italic;
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
	max-width: 520px;
	transform: translateY(12px);
	opacity: 0;
	max-height: 0;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.rpf-leader-bento:hover .rpf-leader-bento__quote {
	transform: translateY(0);
	opacity: 1;
	max-height: 200px;
	margin-top: 8px;
}

@media (max-width: 767px) {
	.rpf-leader-bento__quote {
		opacity: 1;
		transform: none;
		max-height: none;
		margin-top: 8px;
	}
}

/* ── 80G Tax Exemption page ── */
.rpf-80g-credentials {
	margin-top: 28px;
}

.rpf-credential-list,
.rpf-bullet-list {
	margin: 0;
	padding-left: 18px;
	color: var(--rpf-body);
	line-height: 1.8;
}

.rpf-credential-list li,
.rpf-bullet-list li {
	margin-bottom: 8px;
}

.rpf-80g-grid,
.rpf-80g-rules {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.rpf-claim-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
	counter-reset: rpf-claim;
}

.rpf-claim-steps li {
	position: relative;
	padding: 22px 22px 22px 72px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(0, 21, 15, 0.08);
	box-shadow: 0 10px 30px rgba(0, 21, 15, 0.04);
}

.rpf-claim-steps li::before {
	counter-increment: rpf-claim;
	content: counter(rpf-claim);
	position: absolute;
	left: 20px;
	top: 22px;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--rpf-brand);
	color: #fff;
	font-weight: 700;
}

.rpf-claim-steps strong {
	display: block;
	margin-bottom: 6px;
	color: var(--rpf-ink);
}

.rpf-claim-steps span,
.rpf-faq-item p {
	color: var(--rpf-body);
	line-height: 1.75;
}

.rpf-faq-list {
	display: grid;
	gap: 14px;
}

.rpf-faq-item {
	background: #fff;
	border: 1px solid rgba(0, 21, 15, 0.08);
	border-radius: 16px;
	padding: 6px 18px;
	box-shadow: 0 10px 30px rgba(0, 21, 15, 0.04);
}

.rpf-faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 14px 0;
	font-weight: 700;
	color: var(--rpf-ink);
}

.rpf-faq-item summary::-webkit-details-marker {
	display: none;
}

.rpf-faq-item p {
	margin: 0 0 16px;
}

@media (max-width: 991px) {
	.rpf-80g-grid,
	.rpf-80g-rules {
		grid-template-columns: 1fr;
	}
}

/* ── Single volunteer profile ── */
.rpf-volunteer-single-hero .rpf-page-hero__content {
	max-width: 720px;
	margin: 0 auto;
}

.rpf-volunteer-profile {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 48px;
	align-items: start;
	padding: 36px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.94));
	border: 1px solid rgba(0, 108, 73, 0.1);
	border-radius: var(--rpf-radius-lg);
	box-shadow: var(--rpf-shadow);
}

.rpf-volunteer-profile__media {
	border-radius: 28px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: linear-gradient(135deg, rgba(0, 108, 73, 0.08), rgba(0, 108, 73, 0.16));
	box-shadow: 0 16px 36px rgba(0, 108, 73, 0.1);
}

.rpf-volunteer-profile__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.rpf-volunteer-profile__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin-bottom: 14px;
}

.rpf-volunteer-profile__content h2 {
	margin: 0 0 16px;
	font-size: clamp(28px, 3vw, 40px);
}

.rpf-volunteer-profile__bio {
	margin: 18px 0 28px;
	color: var(--rpf-body);
	font-size: 16px;
	line-height: 1.8;
}

.rpf-volunteer-profile__bio p {
	margin: 0 0 14px;
}

.rpf-volunteer-profile .rpf-vol-badge,
.rpf-volunteer-profile .rpf-vol-location {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.rpf-volunteer-profile .rpf-vol-badge {
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(0, 108, 73, 0.1);
	color: var(--rpf-brand);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.rpf-volunteer-profile .rpf-vol-location {
	color: var(--rpf-muted);
	font-size: 14px;
	font-weight: 500;
}

.rpf-volunteer-profile .rpf-vol-location i {
	color: var(--rpf-brand);
}

@media (max-width: 991px) {
	.rpf-volunteer-profile {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 24px;
	}

	.rpf-volunteer-profile__media {
		max-width: 420px;
		margin: 0 auto;
		width: 100%;
	}
}

