/**
 * ADABA Initiatives — main stylesheet
 * Typography matched to UI/UX PDF (Montserrat weight scale)
 */

:root {
	/* Brand colours */
	--adaba-green: #1a7a4a;
	--adaba-green-dark: #004d2c;
	--adaba-footer-bg: #1a5c38;
	--adaba-footer-bar-bg: #0f3d24;
	--adaba-green-light: #2d8a5a;
	--adaba-accent: #b8d42e;
	--adaba-gold: #c5a059;
	--adaba-black: #1c1c1c;
	--adaba-muted: #5a635e;
	--adaba-white: #ffffff;
	--adaba-bg: #f3f5f4;
	--adaba-hero-bg: #f8f9f8;
	--adaba-border: #e4ebe6;
	--adaba-radius: 16px;
	--adaba-radius-lg: 28px;
	--adaba-shadow: 0 16px 48px rgba(0, 77, 44, 0.1);
	--adaba-container: 1200px;

	/* UI/UX font stack — Montserrat matches mockup; Century Gothic fallback */
	--adaba-font: "Montserrat", "Century Gothic", CenturyGothic, "Apple Gothic", sans-serif;

	/* Weight scale (per UI/UX) */
	--fw-light: 300;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;

	/* Type scale */
	--fs-body: 16px;
	--fs-small: 14px;
	--fs-xs: 12px;
	--fs-tagline: 11px;
	--fs-nav: 15px;
	--fs-btn: 15px;
	--fs-btn-header: 14px;
	--lh-body: 1.65;
	--lh-tight: 1.15;
	--lh-snug: 1.35;
	--ls-tagline: 0.18em;
	--ls-label: 0.14em;
	--ls-tight: -0.02em;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--adaba-font);
	font-size: var(--fs-body);
	font-weight: var(--fw-regular);
	line-height: var(--lh-body);
	color: var(--adaba-black);
	background: var(--adaba-white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--adaba-green);
	text-decoration: none;
}

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

.adaba-container {
	width: min(100% - 40px, var(--adaba-container));
	margin-inline: auto;
}

.adaba-main {
	min-height: 50vh;
}

/* Header — logo left, nav dead center, CTA flush right */
.adaba-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--adaba-border);
}

.adaba-header__inner {
	padding-top: 0;
	padding-bottom: 0;
}

.adaba-header__bar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	width: 100%;
}

.adaba-header__left,
.adaba-header__right {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.adaba-header__right {
	margin-left: auto;
	gap: 8px;
}

.adaba-logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.adaba-logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.adaba-logo img,
.adaba-logo__img,
.custom-logo-link img {
	display: block;
	height: 48px;
	width: auto;
	max-width: none;
	object-fit: contain;
}

.adaba-nav--desktop {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.adaba-nav--mobile {
	display: none;
}

.adaba-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	flex-shrink: 0;
}

.adaba-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--adaba-green-dark);
	border-radius: 1px;
}

.adaba-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 36px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.adaba-nav__list li {
	position: relative;
	margin: 0;
	padding: 0;
}

.adaba-nav__list a {
	color: var(--adaba-black);
	font-weight: var(--fw-medium);
	font-size: var(--fs-nav);
	line-height: 1;
	padding: 4px 0 8px;
	display: inline-block;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.adaba-nav__list a:hover {
	color: var(--adaba-green-dark);
}

.adaba-nav__list .current-menu-item > a,
.adaba-nav__list .is-active > a,
.adaba-nav__list a.is-active {
	color: var(--adaba-green-dark);
	font-weight: var(--fw-medium);
}

.adaba-nav__list .current-menu-item > a::after,
.adaba-nav__list .is-active > a::after,
.adaba-nav__list a.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: var(--adaba-green-dark);
	border-radius: 2px;
}

.adaba-header__cta {
	white-space: nowrap;
}

.adaba-btn--header {
	padding: 11px 24px;
	font-size: var(--fs-btn-header);
	font-weight: var(--fw-semibold);
	line-height: 1.2;
	border-radius: 999px;
}

/* Buttons — UI/UX: semibold 600 */
.adaba-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: var(--fw-semibold);
	font-size: var(--fs-btn);
	border: 2px solid transparent;
	transition: 0.2s ease;
}

.adaba-btn--primary {
	background: var(--adaba-green-dark);
	color: var(--adaba-white) !important;
	border-color: var(--adaba-green-dark);
}

.adaba-btn--primary:hover {
	background: var(--adaba-green);
	border-color: var(--adaba-green);
	color: var(--adaba-white) !important;
}

.adaba-btn--outline {
	background: transparent;
	color: var(--adaba-green-dark) !important;
	border-color: var(--adaba-green-dark);
}

.adaba-btn--outline:hover {
	background: var(--adaba-green-dark);
	color: var(--adaba-white) !important;
}

.adaba-btn--white {
	background: var(--adaba-white);
	color: var(--adaba-green-dark) !important;
	border-color: var(--adaba-white);
}

/* Section labels — UI/UX: semibold caps + gold rule */
.section-label {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: var(--fs-xs);
	font-weight: var(--fw-semibold);
	letter-spacing: var(--ls-label);
	text-transform: uppercase;
	color: var(--adaba-green);
	margin: 0 0 16px;
}

.section-label__line {
	width: 36px;
	height: 2px;
	background: var(--adaba-gold);
}

.section-label--center {
	justify-content: center;
}

.text-green {
	color: var(--adaba-green);
}

.adaba-hero__title .text-green {
	color: var(--adaba-green);
	font-weight: var(--fw-bold);
}

/* Programmes / inner page split headlines */
.adaba-page-hero__content h1 .text-green {
	color: var(--adaba-green);
	font-weight: var(--fw-bold);
}

.adaba-section__title {
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	line-height: var(--lh-tight);
	color: var(--adaba-green-dark);
	margin: 0 0 24px;
	font-weight: var(--fw-bold);
}

.adaba-section__title--center {
	text-align: center;
}

.adaba-prose {
	color: var(--adaba-muted);
	font-weight: var(--fw-regular);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
}

.adaba-prose--justify {
	text-align: justify;
}

.adaba-prose p {
	margin: 0 0 1em;
}

/* Hero */
.adaba-hero {
	padding: 48px 0 0;
	background: var(--adaba-hero-bg);
}

.adaba-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 40px;
	align-items: center;
	padding-bottom: 56px;
}

/* Hero tagline — UI/UX: semibold caps, not extra-bold */
.adaba-hero__tagline {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 22px;
	font-size: var(--fs-tagline);
	font-weight: var(--fw-semibold);
	letter-spacing: var(--ls-tagline);
	text-transform: uppercase;
	color: var(--adaba-green-dark);
}

.adaba-hero__tagline-line {
	width: 40px;
	height: 2px;
	background: var(--adaba-gold);
	flex-shrink: 0;
}

/* Hero headline — UI/UX: light lead-in, bold green highlight */
.adaba-hero__title {
	font-size: clamp(1.95rem, 3.8vw, 3.05rem);
	line-height: var(--lh-tight);
	color: var(--adaba-black);
	margin: 0 0 22px;
	font-weight: var(--fw-light);
	letter-spacing: var(--ls-tight);
	max-width: 14.5em;
}

.adaba-hero__title .text-green {
	white-space: nowrap;
}

/* Hero intro — UI/UX: regular 400 */
.adaba-hero__intro {
	color: var(--adaba-muted);
	margin: 0 0 32px;
	font-size: var(--fs-body);
	font-weight: var(--fw-regular);
	line-height: var(--lh-body);
	max-width: 520px;
}

.adaba-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.adaba-hero__media {
	position: relative;
	min-height: 480px;
	padding: 20px 10px 20px 30px;
}

.adaba-hero__collage {
	position: relative;
	width: 100%;
	height: 440px;
}

.adaba-hero__collage::before {
	content: '';
	position: absolute;
	left: 8%;
	top: 10%;
	right: 2%;
	bottom: 4%;
	background: #e9edea;
	border-radius: 32px;
	z-index: 0;
}

.adaba-hero__frame {
	overflow: hidden;
	box-shadow: var(--adaba-shadow);
}

.adaba-hero__frame--main {
	position: absolute;
	left: 20%;
	right: auto;
	top: 28px;
	width: 58%;
	height: 390px;
	z-index: 2;
	border-radius: 28px;
	background: #f0f2f1;
}

.adaba-hero__frame--main.is-cutout {
	overflow: visible;
	box-shadow: none;
	background: transparent;
}

/* Single-photo hero (no collage frames) */
.adaba-hero__collage.is-single::before {
	left: 6%;
	top: 6%;
	right: 4%;
	bottom: 4%;
}
.adaba-hero__collage.is-single .adaba-hero__frame--main {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.adaba-hero__collage.is-single .adaba-hero__img--main {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 28% 35%;
	border-radius: 28px;
}

.adaba-hero__frame--secondary {
	position: absolute;
	left: -3%;
	top: -10px;
	width: 32%;
	height: 158px;
	z-index: 4;
	border-radius: 18px;
	border: 4px solid #fff;
}

.adaba-hero__frame--tertiary {
	position: absolute;
	left: auto;
	right: 0;
	bottom: 0;
	width: 48%;
	height: 190px;
	z-index: 3;
	border-radius: 18px;
	padding: 4px;
	background: linear-gradient(135deg, var(--adaba-gold), #e8d4a8);
}

.adaba-hero__frame--tertiary .adaba-hero__img--tertiary {
	border-radius: 14px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.adaba-hero__img--main.is-cutout {
	object-fit: contain;
	object-position: center bottom;
}

.adaba-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.adaba-hero__deco--square {
	position: absolute;
	right: 6%;
	bottom: 22%;
	width: 76px;
	height: 76px;
	background: var(--adaba-green-dark);
	border-radius: 6px;
	z-index: 1;
}

.adaba-hero__deco--dots {
	position: absolute;
	left: 0;
	top: 18%;
	width: 88px;
	height: 88px;
	background: radial-gradient(circle, #c8d0cb 2px, transparent 2px);
	background-size: 11px 11px;
	z-index: 0;
}

/* Stats bar — UI/UX: pale band, gold divider, outline icons */
.adaba-stats-bar {
	background-color: #f7f8f7;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
	border: none;
	padding: 36px 0;
}

.adaba-stats-bar__inner {
	display: flex;
	align-items: center;
	gap: 28px;
}

.adaba-stats-bar__lead {
	flex: 0 0 255px;
	max-width: 255px;
	margin: 0;
	font-size: 15px;
	font-weight: var(--fw-bold);
	line-height: 1.5;
	color: var(--adaba-green-dark);
}

.adaba-stats-bar__divider {
	width: 1px;
	height: 72px;
	background: var(--adaba-gold);
	flex-shrink: 0;
}

.adaba-stats-bar__grid {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-width: 0;
}

.adaba-stat {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 1 auto;
}

.adaba-stat__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	color: var(--adaba-gold);
}

.adaba-stat__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.adaba-stat__icon--africa {
	width: 30px;
	height: 34px;
}

.adaba-stat__text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.adaba-stat__value {
	font-size: 1.5rem;
	font-weight: var(--fw-bold);
	color: var(--adaba-green-dark);
	line-height: 1;
	letter-spacing: -0.01em;
}

.adaba-stat__label {
	font-size: 11px;
	font-weight: var(--fw-regular);
	color: #8a928d;
	line-height: 1.35;
	white-space: nowrap;
}

/* Trust line only — bridges hero → about (no stat grid) */
.adaba-stats-bar--lead-only {
	background: var(--adaba-hero-bg);
	background-image: none;
	padding: 0 0 32px;
}

.adaba-stats-bar--lead-only .adaba-stats-bar__inner {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
}

.adaba-stats-bar--lead-only .adaba-stats-bar__lead {
	flex: none;
	max-width: none;
	font-size: 15px;
	line-height: 1.45;
	white-space: nowrap;
}

.adaba-stats-bar--lead-only .adaba-stats-bar__divider {
	width: 48px;
	height: 2px;
}

/* Cards */
.adaba-card {
	background: var(--adaba-white);
	border: 1px solid var(--adaba-border);
	border-radius: var(--adaba-radius);
	padding: 28px;
	box-shadow: var(--adaba-shadow);
}

.adaba-impact-boxes__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 36px;
}

.adaba-card--impact h3 {
	color: var(--adaba-green-dark);
	margin: 0 0 12px;
	font-size: 1.1rem;
	font-weight: var(--fw-semibold);
}

.adaba-card--impact p {
	margin: 0;
	color: var(--adaba-muted);
	font-size: var(--fs-nav);
	font-weight: var(--fw-regular);
	text-align: justify;
}

/* Impact statement */
.adaba-impact-statement__inner {
	max-width: 900px;
}

/* Home — About Adaba (UI/UX split + vision card) */
.adaba-section {
	padding: 72px 0;
}

.adaba-home-about {
	background-color: #f8f9f8;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
	padding: 64px 0 56px;
}

.adaba-home-about__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px 64px;
	align-items: start;
}

.adaba-home-about__media {
	padding-left: 24px;
}

.adaba-home-about__image-wrap {
	position: relative;
}

.adaba-home-about__image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	height: auto;
	min-height: 0;
	object-fit: cover;
	object-position: center 40%;
	border-radius: 20px;
}

.adaba-home-about__vision {
	position: absolute;
	left: -24px;
	bottom: 24px;
	width: min(290px, 72%);
	background: var(--adaba-green-dark);
	color: var(--adaba-white);
	border-radius: 16px;
	padding: 22px 24px 20px;
	box-shadow: 0 14px 36px rgba(0, 77, 44, 0.2);
}

.adaba-home-about__vision-title {
	margin: 0 0 8px;
	font-size: 1.125rem;
	font-weight: var(--fw-bold);
	color: var(--adaba-white);
	line-height: var(--lh-snug);
}

.adaba-home-about__vision-text {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: var(--fw-regular);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.93);
}

.adaba-home-about__vision-line {
	display: block;
	width: 32px;
	height: 2px;
	background: var(--adaba-gold);
}

.adaba-home-about__content {
	padding-right: 8px;
}

.adaba-home-about__title {
	font-size: clamp(1.9rem, 3.1vw, 2.45rem);
	line-height: 1.2;
	color: var(--adaba-black);
	margin: 0 0 20px;
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight);
	white-space: nowrap;
}

.adaba-home-about__prose {
	margin-bottom: 26px;
	color: var(--adaba-muted);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
}

.adaba-home-about__prose p {
	margin: 0;
	color: var(--adaba-muted);
	opacity: 1;
}

.adaba-home-about .adaba-btn--outline {
	background: var(--adaba-white);
	border-width: 1.5px;
	padding: 13px 26px;
}

.adaba-home-about .adaba-btn--outline:hover {
	background: var(--adaba-green-dark);
	color: var(--adaba-white) !important;
	border-color: var(--adaba-green-dark);
}

/* Home — What We Do / program cards */
.adaba-what-we-do {
	background-color: #f8f9f8;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
	padding: 24px 0 64px;
}

.adaba-what-we-do__title {
	margin: 0 0 36px;
	text-align: center;
	font-size: clamp(1.85rem, 3vw, 2.35rem);
	font-weight: var(--fw-bold);
	line-height: var(--lh-tight);
	color: var(--adaba-black);
}

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

.adaba-program-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: #f3f5f4;
	border: 1px solid #e6ebe8;
	border-radius: 16px;
	padding: 22px 18px;
	min-height: 100%;
}

.adaba-program-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--adaba-green-dark);
	color: var(--adaba-white);
}

.adaba-program-card__icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

.adaba-program-card__body {
	min-width: 0;
}

.adaba-program-card__title {
	margin: 0 0 8px;
	font-size: 1.02rem;
	font-weight: var(--fw-bold);
	line-height: 1.3;
	color: var(--adaba-black);
}

.adaba-program-card__text {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.55;
	color: var(--adaba-muted);
}

.adaba-program-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: var(--fw-semibold);
	color: var(--adaba-green-dark) !important;
	text-decoration: none;
}

.adaba-program-card__link:hover {
	color: var(--adaba-green) !important;
}

.adaba-program-card__link span {
	font-size: 14px;
	line-height: 1;
}

/* Carousel */
.adaba-carousel {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
}

.adaba-carousel__track {
	display: flex;
	gap: 32px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 16px 8px;
	flex: 1;
	align-items: center;
}

.adaba-carousel__track::-webkit-scrollbar {
	display: none;
}

.adaba-carousel__item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	height: 80px;
	padding: 12px 20px;
	background: #fff;
	border: 1px solid var(--adaba-border);
	border-radius: 12px;
}

.adaba-carousel__item img {
	max-height: 56px;
	width: auto;
	object-fit: contain;
}

.adaba-carousel__btn {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--adaba-border);
	background: #fff;
	color: var(--adaba-green-dark);
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
}

/* Partner logo strip — below What We Do */
.adaba-partners-strip {
	background: var(--adaba-bg);
	padding: 40px 0 48px;
	border-top: 1px solid var(--adaba-border);
}

.adaba-partners-strip__title {
	margin: 0 0 24px;
	text-align: center;
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--adaba-green-dark);
}

/* Continuous marquee — seamless loop, no stepped scrolling */
.adaba-partners-marquee {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.adaba-partners-marquee__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: adaba-partners-marquee 50s linear infinite;
}

.adaba-partners-marquee__group {
	display: flex;
	align-items: center;
	gap: 56px;
	padding-right: 56px;
	flex-shrink: 0;
}

.adaba-partners-marquee__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	min-width: 72px;
}

.adaba-partners-marquee__logo img {
	display: block;
	max-height: 48px;
	max-width: 160px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(12%);
	opacity: 0.92;
	transition: filter 0.25s ease, opacity 0.25s ease;
}

.adaba-partners-marquee__logo:hover img,
.adaba-partners-marquee__logo:focus-within img {
	filter: none;
	opacity: 1;
}

@keyframes adaba-partners-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.adaba-partners-marquee__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		gap: 24px;
	}

	.adaba-partners-marquee__group {
		flex-wrap: wrap;
		justify-content: center;
		padding-right: 0;
	}
}

/* Impact band — full-section photo background with green veil */
.adaba-impact-band {
	position: relative;
	background: var(--adaba-green-dark);
	color: var(--adaba-white);
	overflow: hidden;
}

.adaba-impact-band__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.adaba-impact-band__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center 32%;
}

.adaba-impact-band__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(
			90deg,
			rgba(0, 77, 44, 0.58) 0%,
			rgba(0, 77, 44, 0.40) 22%,
			rgba(0, 77, 44, 0.18) 40%,
			rgba(0, 77, 44, 0.14) 50%,
			rgba(0, 77, 44, 0.18) 60%,
			rgba(0, 77, 44, 0.40) 78%,
			rgba(0, 77, 44, 0.58) 100%
		);
}

.adaba-impact-band__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.92fr);
	gap: 32px;
	align-items: center;
	min-height: 288px;
	padding: 38px 0;
}

/* Testimonial-only band — photo showcase (no text overlay) */
.adaba-impact-band--testimonial {
	min-height: 420px;
}

.adaba-impact-band__grid--testimonial {
	grid-template-columns: 1fr;
	justify-items: end;
	min-height: 420px;
	padding: 0;
}

.adaba-impact-band__grid--testimonial .adaba-impact-band__right {
	max-width: 460px;
	text-align: left;
}

.adaba-impact-band__left {
	position: relative;
	max-width: 420px;
}

.adaba-impact-band__quote-mark {
	display: block;
	font-size: 3rem;
	line-height: 0.8;
	color: var(--adaba-gold);
	font-family: Georgia, "Times New Roman", serif;
	margin-bottom: 6px;
}

.adaba-impact-band__title {
	margin: 0 0 12px;
	font-size: clamp(1.2rem, 1.9vw, 1.5rem);
	font-weight: var(--fw-medium);
	line-height: 1.34;
	color: var(--adaba-white);
	max-width: none;
	letter-spacing: var(--ls-tight);
}

.adaba-impact-band__title-line--first {
	white-space: nowrap;
}

.adaba-impact-band__line {
	display: block;
	width: 36px;
	height: 2px;
	background: var(--adaba-gold);
	margin-bottom: 16px;
}

.adaba-impact-band__stats {
	display: flex;
	align-items: center;
	gap: 0;
	flex-wrap: wrap;
}

.adaba-impact-band__stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 0 16px;
}

.adaba-impact-band__stat:first-child {
	padding-left: 0;
}

.adaba-impact-band__stat-divider {
	width: 1px;
	height: 34px;
	background: rgba(255, 255, 255, 0.32);
	flex-shrink: 0;
}

.adaba-impact-band__stat-value {
	font-size: 1.35rem;
	font-weight: var(--fw-semibold);
	line-height: 1;
	color: var(--adaba-white);
}

.adaba-impact-band__stat-label {
	font-size: 11px;
	font-weight: var(--fw-regular);
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.25;
}

.adaba-impact-band__right {
	position: relative;
	justify-self: end;
	margin-left: auto;
	padding-left: 20px;
	max-width: 268px;
}

.adaba-impact-band__testimonial {
	margin: 0;
	padding: 0;
	border: none;
}

.adaba-impact-band__testimonial p {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.55;
	font-weight: var(--fw-regular);
	color: rgba(255, 255, 255, 0.9);
}

.adaba-impact-band__attribution {
	margin: 0;
	font-size: 13px;
	font-weight: var(--fw-medium);
	color: var(--adaba-gold);
}

/* CTA strip — home variant */
.adaba-cta-strip--home {
	background: var(--adaba-bg);
	padding: 0;
}

.adaba-cta-strip--home .adaba-cta-strip__inner {
	padding: 32px 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	align-items: center;
	justify-content: flex-start;
	gap: 36px;
}

.adaba-cta-strip__lead {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 0 1 auto;
	min-width: 0;
}

.adaba-cta-strip__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #e8ece9;
	color: var(--adaba-green-dark);
}

.adaba-cta-strip__icon svg {
	width: 26px;
	height: 26px;
	display: block;
}

.adaba-cta-strip--home .adaba-cta-strip__text h2 {
	color: var(--adaba-black);
	font-size: clamp(1.15rem, 1.85vw, 1.4rem);
	font-weight: var(--fw-semibold);
	line-height: 1.32;
	margin: 0 0 6px;
}

.adaba-cta-strip--home .adaba-cta-strip__text p {
	color: var(--adaba-muted);
	font-size: 14px;
	line-height: 1.55;
	max-width: 500px;
	margin: 0;
}

.adaba-cta-strip--home .adaba-btn {
	padding: 12px 24px;
	font-size: 14px;
}

.adaba-cta-strip--home .adaba-btn--outline {
	background: var(--adaba-bg);
}

.adaba-cta-strip--home .adaba-btn--outline:hover {
	background: var(--adaba-green-dark);
	color: var(--adaba-white) !important;
	border-color: var(--adaba-green-dark);
}

.adaba-cta-strip--home .adaba-cta-strip__actions {
	flex: 0 0 auto;
}

/* Quote band (inner pages) */
.adaba-quote-band {
	background: var(--adaba-green-dark);
	color: var(--adaba-white);
	padding: 0;
}

.adaba-quote-band__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 0;
	align-items: stretch;
	min-height: 360px;
}

.adaba-quote-band__content {
	padding: 64px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.adaba-quote-band__icon {
	font-size: 64px;
	line-height: 1;
	opacity: 0.35;
	margin-bottom: 12px;
}

.adaba-quote-band__content h2 {
	margin: 0;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	line-height: var(--lh-snug);
	font-weight: var(--fw-semibold);
}

.adaba-quote-band__image {
	position: relative;
	overflow: hidden;
}

.adaba-quote-band__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 360px;
}

.adaba-quote-band--compact {
	padding: 48px 0;
}

.adaba-quote-band__collab {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.adaba-quote-band__collab p {
	margin: 0;
	font-size: 1.15rem;
	font-weight: var(--fw-regular);
	max-width: 720px;
}

/* CTA strip */
.adaba-cta-strip {
	background: var(--adaba-bg);
}

.adaba-cta-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 48px;
	background: #fff;
	border-radius: var(--adaba-radius-lg);
	border: 1px solid var(--adaba-border);
	box-shadow: var(--adaba-shadow);
}

.adaba-cta-strip__inner--stack {
	flex-direction: column;
	text-align: center;
}

.adaba-cta-strip__text h2 {
	margin: 0 0 12px;
	color: var(--adaba-green-dark);
	font-size: 1.65rem;
	font-weight: var(--fw-bold);
	line-height: var(--lh-snug);
}

.adaba-cta-strip__text p {
	margin: 0;
	color: var(--adaba-muted);
	font-weight: var(--fw-regular);
	font-size: var(--fs-body);
}

.adaba-cta-strip__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Page heroes */
.adaba-page-hero {
	padding: 64px 0 48px;
}

.adaba-page-hero--about,
.adaba-page-hero--programmes {
	padding-bottom: 0;
}

/* About page — compact hero band (faces visible, minimal green on photo) */
.adaba-about-hero {
	background: var(--adaba-green-dark);
	overflow: hidden;
}

.adaba-about-hero__wrap {
	position: relative;
	height: 400px;
	min-height: 400px;
	max-height: 400px;
	display: flex;
	align-items: stretch;
}

.adaba-about-hero__content {
	position: relative;
	z-index: 4;
	flex: 0 0 42%;
	width: 42%;
	max-width: none;
	min-width: 0;
	margin-inline: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 28px 32px 28px max(20px, calc((100vw - var(--adaba-container)) / 2));
	color: var(--adaba-white);
}

.adaba-about-hero__content.adaba-container {
	width: 42%;
	max-width: none;
	margin-inline: 0;
}

.adaba-about-hero__title {
	margin: 0 0 10px;
	font-size: clamp(1.65rem, 2.6vw, 2.15rem);
	font-weight: var(--fw-bold);
	line-height: 1.2;
	color: var(--adaba-white);
	max-width: none;
}

.adaba-about-hero__tagline {
	margin: 0;
	max-width: 22em;
	font-size: clamp(0.9rem, 1.3vw, 1rem);
	font-weight: var(--fw-regular);
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.9);
}

.adaba-about-hero__label {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: var(--fw-semibold);
	letter-spacing: var(--ls-tagline);
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
}

.adaba-about-hero__accent {
	display: block;
	width: 36px;
	height: 2px;
	background: var(--adaba-gold);
	margin-bottom: 10px;
}

.adaba-about-hero__accent--bottom {
	display: none;
}

.adaba-about-hero__media {
	position: absolute;
	top: 0;
	right: 0;
	width: 62%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background: var(--adaba-green-dark);
}

.adaba-about-hero__seep {
	position: absolute;
	inset: 0 auto 0 0;
	width: 12%;
	z-index: 3;
	pointer-events: none;
	background: linear-gradient(90deg, var(--adaba-green-dark) 0%, transparent 100%);
}

.adaba-about-hero__img {
	position: relative;
	z-index: 1;
	width: auto;
	max-width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	object-position: right center;
	border-radius: 0;
	-webkit-mask-image: none;
	mask-image: none;
	transform: none;
}

/* About page — Our Story */
.adaba-about-story {
	background: var(--adaba-white);
	padding-top: 80px;
	padding-bottom: 80px;
}

.adaba-about-story__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.adaba-about-story__title {
	margin: 0 0 20px;
	font-size: clamp(1.85rem, 3vw, 2.45rem);
	font-weight: var(--fw-bold);
	line-height: var(--lh-tight);
	color: var(--adaba-black);
}

.adaba-about-story__prose {
	color: var(--adaba-muted);
}

.adaba-about-story__prose p {
	color: var(--adaba-muted);
}

.adaba-about-story__media {
	position: relative;
	padding: 0 0 28px 28px;
}

.adaba-about-story__frame {
	position: relative;
	z-index: 1;
	border-radius: var(--adaba-radius-lg);
	overflow: hidden;
}

.adaba-about-story__image {
	display: block;
	width: 100%;
	height: auto;
	min-height: 320px;
	object-fit: cover;
	border-radius: var(--adaba-radius-lg);
}

.adaba-about-story__deco--dots {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 96px;
	height: 96px;
	background: radial-gradient(circle, #c8d0cb 2px, transparent 2px);
	background-size: 11px 11px;
	z-index: 0;
}

.adaba-about-story__deco--line {
	position: absolute;
	right: 28px;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: var(--adaba-gold);
	z-index: 2;
}

.adaba-page-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
}

.adaba-page-hero__grid--reverse .adaba-page-hero__content {
	order: 1;
}

.adaba-page-hero__panel {
	background: var(--adaba-green-dark);
	color: #fff;
	padding: 64px 48px;
	border-radius: 0 0 48px 0;
}

.adaba-page-hero__panel .section-label {
	color: var(--adaba-accent);
}

.adaba-page-hero__panel h1 {
	margin: 0 0 16px;
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	font-weight: var(--fw-bold);
	line-height: var(--lh-tight);
}

.adaba-page-hero__panel p {
	margin: 0;
	opacity: 0.92;
	font-weight: var(--fw-regular);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
}

.adaba-page-hero__image img,
.adaba-page-hero__image--rounded img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	border-radius: 0 0 0 48px;
}

.adaba-page-hero__content {
	padding: 48px 48px 48px 0;
}

.adaba-page-hero__grid--reverse .adaba-page-hero__content {
	padding: 48px 0 48px 48px;
}

.adaba-page-hero__content h1 {
	font-weight: var(--fw-light);
	line-height: var(--lh-tight);
	color: var(--adaba-black);
}

.adaba-page-hero--simple h1 {
	color: var(--adaba-green-dark);
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: var(--fw-bold);
	line-height: var(--lh-tight);
	margin: 0 0 16px;
}

.adaba-split h2 {
	font-weight: var(--fw-bold);
	color: var(--adaba-green-dark);
	line-height: var(--lh-snug);
}

/* Split layout */
.adaba-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.adaba-rounded-img {
	border-radius: var(--adaba-radius-lg);
	width: 100%;
	object-fit: cover;
}

/* Mission / vision */
.adaba-mv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 32px;
}

.adaba-card--mv {
	text-align: center;
}

.adaba-card__icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: rgba(26, 92, 56, 0.1);
	color: var(--adaba-green);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.adaba-card--mv h3 {
	color: var(--adaba-green-dark);
	margin: 0 0 12px;
	font-weight: var(--fw-semibold);
}

.adaba-card--mv p {
	margin: 0;
	color: var(--adaba-muted);
	font-weight: var(--fw-regular);
	text-align: justify;
}

/* Values */
.adaba-values {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	margin-top: 32px;
	border: 1px solid var(--adaba-border);
	border-radius: var(--adaba-radius);
	overflow: hidden;
	background: #fff;
}

.adaba-values__item {
	flex: 1 1 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 28px 16px;
	border-right: 1px solid var(--adaba-border);
	font-weight: var(--fw-semibold);
	font-size: var(--fs-small);
	color: var(--adaba-green-dark);
}

.adaba-values__item:last-child {
	border-right: 0;
}

.adaba-values__icon {
	color: var(--adaba-green);
	font-size: 22px;
}

/* Team */
.adaba-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
	margin-top: 36px;
}

.adaba-team-card {
	background: #fff;
	border-radius: var(--adaba-radius);
	overflow: hidden;
	border: 1px solid var(--adaba-border);
	box-shadow: var(--adaba-shadow);
}

.adaba-team-card__photo {
	position: relative;
}

.adaba-team-card__photo img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	object-position: top center;
	background: var(--adaba-bg);
}

.adaba-team-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	display: inline-block;
	padding: 5px 11px;
	border-radius: 999px;
	background: var(--adaba-green-dark);
	color: var(--adaba-white);
	font-size: 11px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.02em;
	line-height: 1;
	box-shadow: 0 2px 8px rgba(0, 77, 44, 0.25);
}

.adaba-team-card__badge--leadership {
	background: var(--adaba-gold, #c79a3a);
	box-shadow: 0 2px 8px rgba(199, 154, 58, 0.3);
}

.adaba-team-card__badge--team {
	background: #5b6b62;
	box-shadow: 0 2px 8px rgba(91, 107, 98, 0.3);
}

.adaba-team-card__body {
	padding: 20px;
}

.adaba-team-card__body h3 {
	margin: 0 0 4px;
	color: var(--adaba-green-dark);
	font-weight: var(--fw-bold);
	font-size: 1.05rem;
}

.adaba-team-card__role {
	margin: 0 0 12px;
	color: var(--adaba-green);
	font-weight: var(--fw-medium);
	font-size: var(--fs-small);
}

.adaba-team-card__body .adaba-prose {
	font-size: var(--fs-small);
	font-weight: var(--fw-regular);
}

.adaba-team-card__linkedin {
	font-size: 13px;
	font-weight: var(--fw-semibold);
	display: inline-block;
	margin-top: 10px;
}

.adaba-team-card__linkedin svg {
	width: 18px;
	height: 18px;
	display: block;
	color: var(--adaba-green);
}

/* Programmes page — hero (design_ref-2) */
.adaba-programmes-hero {
	background: var(--adaba-hero-bg);
	padding: 56px 0 64px;
}

.adaba-programmes-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.adaba-programmes-hero__content {
	padding-right: 12px;
}

.adaba-programmes-hero__title {
	margin: 0 0 18px;
	font-size: clamp(2rem, 3.6vw, 2.85rem);
	font-weight: var(--fw-light);
	line-height: var(--lh-tight);
	color: var(--adaba-black);
}

.adaba-programmes-hero__title strong,
.adaba-programmes-hero__title .text-green {
	font-weight: var(--fw-bold);
	color: var(--adaba-green-dark);
}

.adaba-programmes-hero__intro {
	margin: 0;
	max-width: 520px;
	color: var(--adaba-muted);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
}

.adaba-programmes-hero__media {
	position: relative;
	min-height: 340px;
}

.adaba-programmes-hero__deco--arc {
	position: absolute;
	top: -28px;
	right: -20px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--adaba-green-dark);
	z-index: 0;
}

.adaba-programmes-hero__deco--dots {
	position: absolute;
	top: 88px;
	right: 8px;
	width: 72px;
	height: 72px;
	background: radial-gradient(circle, #b8c4bc 2px, transparent 2px);
	background-size: 10px 10px;
	z-index: 2;
}

.adaba-programmes-hero__frame {
	position: relative;
	z-index: 1;
	border-radius: var(--adaba-radius-lg);
	overflow: hidden;
	box-shadow: var(--adaba-shadow);
}

.adaba-programmes-hero__img {
	display: block;
	width: 100%;
	min-height: 340px;
	object-fit: cover;
	object-position: center;
}

/* Programmes — core program cards */
.adaba-programmes-list {
	padding-top: 72px;
	padding-bottom: 72px;
}

.adaba-programmes-list__title {
	margin: 8px 0 48px;
	text-align: center;
	font-size: clamp(1.65rem, 2.8vw, 2.1rem);
	font-weight: var(--fw-semibold);
	color: var(--adaba-green-dark);
	line-height: var(--lh-snug);
}

.adaba-programme-card {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 0;
	align-items: stretch;
	margin-bottom: 32px;
	background: #f7f9f8;
	border-radius: var(--adaba-radius-lg);
	overflow: hidden;
	border: 1px solid var(--adaba-border);
	box-shadow: 0 8px 32px rgba(0, 77, 44, 0.06);
}

.adaba-programme-card--reverse {
	grid-template-columns: 1.05fr 0.95fr;
}

.adaba-programme-card--reverse .adaba-programme-card__media {
	order: 2;
}

.adaba-programme-card--reverse .adaba-programme-card__body {
	order: 1;
}

.adaba-programme-card__media {
	height: 400px;
}

.adaba-programme-card__img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	display: block;
}

.adaba-programme-card__body {
	padding: 36px 40px;
	display: flex;
	flex-direction: column;
}

.adaba-programme-card__body .adaba-program-card__icon {
	margin-bottom: 16px;
}

.adaba-programme-card__title {
	margin: 0 0 14px;
	font-size: 1.35rem;
	font-weight: var(--fw-bold);
	line-height: var(--lh-snug);
	color: var(--adaba-green-dark);
}

.adaba-programme-card__number {
	color: var(--adaba-green);
	margin-right: 4px;
}

.adaba-programme-card__desc {
	color: var(--adaba-muted);
	font-size: var(--fs-small);
	margin-bottom: 22px;
}

.adaba-programme-card__desc p {
	margin: 0;
}

.adaba-programme-card__meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--adaba-border);
}

.adaba-programme-card__meta-col strong {
	display: block;
	margin: 8px 0 6px;
	font-size: 11px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--adaba-green-dark);
}

.adaba-programme-card__meta-col p {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--adaba-muted);
}

.adaba-programme-card__meta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(26, 122, 74, 0.1);
	color: var(--adaba-green);
}

.adaba-programme-card__meta-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.adaba-programme-card__link {
	margin-top: auto;
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--adaba-green-dark) !important;
}

/* Programmes — green CTA band */
.adaba-programmes-cta {
	background: var(--adaba-green-dark);
	color: var(--adaba-white);
	padding: 40px 0;
}

.adaba-programmes-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}

.adaba-programmes-cta__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: var(--adaba-white);
}

.adaba-programmes-cta__icon svg {
	width: 26px;
	height: 26px;
	display: block;
}

.adaba-programmes-cta__text {
	flex: 1;
	min-width: 240px;
}

.adaba-programmes-cta__lead {
	margin: 0 0 4px;
	font-size: 1.15rem;
	font-weight: var(--fw-semibold);
	color: var(--adaba-white);
}

.adaba-programmes-cta__text p:last-child {
	margin: 0;
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.5;
}

/* About — mission & vision panel */
.adaba-about-mv {
	padding-top: 64px;
	padding-bottom: 64px;
}

.adaba-about-mv__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin-top: 28px;
	background: var(--adaba-bg);
	border-radius: var(--adaba-radius-lg);
	border: 1px solid var(--adaba-border);
	overflow: hidden;
}

.adaba-about-mv__item {
	padding: 40px 36px;
	text-align: center;
}

.adaba-about-mv__item:first-child {
	border-right: 1px solid var(--adaba-border);
}

.adaba-about-mv__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--adaba-green-dark);
	color: var(--adaba-white);
}

.adaba-about-mv__icon svg {
	width: 26px;
	height: 26px;
	display: block;
}

.adaba-about-mv__item h3 {
	margin: 0 0 14px;
	font-size: 1.2rem;
	font-weight: var(--fw-bold);
	color: var(--adaba-green-dark);
}

.adaba-about-mv__item p {
	margin: 0;
	font-size: var(--fs-small);
	line-height: 1.6;
	color: var(--adaba-muted);
}

/* About — values row */
.adaba-about-values {
	padding-bottom: 72px;
}

.adaba-about-values__row {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	margin-top: 32px;
	border: 1px solid var(--adaba-border);
	border-radius: var(--adaba-radius);
	background: var(--adaba-white);
	overflow: hidden;
}

.adaba-about-values__item {
	flex: 1 1 140px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 28px 16px;
	border-right: 1px solid var(--adaba-border);
	text-align: center;
}

.adaba-about-values__item:last-child {
	border-right: 0;
}

.adaba-about-values__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--adaba-green);
}

.adaba-about-values__icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

.adaba-about-values__label {
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--adaba-green-dark);
}

/* About — team grid */
.adaba-team-grid--about {
	grid-template-columns: repeat(3, 1fr);
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 36px;
}

.adaba-team-card--about {
	background: var(--adaba-bg);
	border: 1px solid var(--adaba-border);
	box-shadow: none;
}

.adaba-team-card--about .adaba-team-card__photo img {
	height: 260px;
}

.adaba-team-card__bio {
	font-size: var(--fs-small);
	color: var(--adaba-muted);
}

.adaba-cta-strip--page {
	margin-top: 0;
}

/* Partnerships page — CTA + story rows */
.adaba-cta-strip--partnerships .adaba-cta-strip__inner {
	flex-direction: column;
	align-items: stretch;
	text-align: left;
	gap: 24px;
}

.adaba-cta-strip--partnerships .adaba-cta-strip__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px;
	width: 100%;
}

.adaba-cta-strip--partnerships .adaba-cta-strip__actions .adaba-btn {
	flex: 1 1 calc(50% - 6px);
	min-width: 200px;
	justify-content: center;
}

.adaba-partnership-row.adaba-programme-row {
	margin-bottom: 40px;
}

.adaba-partnership-row .adaba-programme-row__content {
	padding: 28px 24px;
}

.adaba-partnership-row .adaba-prose--justify {
	text-align: left;
}

/* Programme rows (legacy + partnerships) */
.adaba-programme-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
	margin-bottom: 56px;
}

.adaba-programme-row--reverse .adaba-programme-row__media {
	order: 2;
}

.adaba-programme-row--reverse .adaba-programme-row__content {
	order: 1;
}

.adaba-programme-row__img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	border-radius: var(--adaba-radius-lg);
}

.adaba-programme-row__number {
	display: inline-block;
	color: var(--adaba-green);
	font-weight: var(--fw-semibold);
	font-size: var(--fs-small);
	margin-bottom: 8px;
}

.adaba-programme-row__content h3 {
	color: var(--adaba-green-dark);
	margin: 0 0 16px;
	font-size: 1.5rem;
	font-weight: var(--fw-bold);
	line-height: var(--lh-snug);
}

/* Services */
.adaba-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}

.adaba-card--service__img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 16px;
}

/* Publications tabs */
.adaba-pub-tabs__nav {
	display: flex;
	gap: 8px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.adaba-pub-tabs__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.25;
	min-height: 44px;
	padding: 12px 24px;
	border-radius: 999px;
	border: 2px solid var(--adaba-border);
	background: #fff;
	font-family: var(--adaba-font);
	font-weight: var(--fw-medium);
	font-size: var(--fs-small);
	cursor: pointer;
	color: var(--adaba-black);
}

.adaba-pub-tabs__btn.is-active {
	background: var(--adaba-green-dark);
	border-color: var(--adaba-green-dark);
	color: #fff;
	font-weight: var(--fw-semibold);
}

.adaba-pub-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.adaba-pub-list li {
	padding: 20px 0;
	border-bottom: 1px solid var(--adaba-border);
}

.adaba-pub-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	color: var(--adaba-green-dark);
	font-weight: var(--fw-semibold);
	font-size: 1.05rem;
}

.adaba-pub-list p {
	margin: 8px 0 0;
	color: var(--adaba-muted);
	font-size: var(--fs-nav);
	font-weight: var(--fw-regular);
}

/* Publications — YouTube video grid */
.adaba-video-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 36px 32px;
}

.adaba-video-card {
	margin: 0;
}

.adaba-video-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
	background: #0a1f14;
	box-shadow: 0 10px 28px rgba(0, 77, 44, 0.1);
}

.adaba-video-card__thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.adaba-video-card__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0;
	cursor: pointer;
	background: linear-gradient(180deg, rgba(0, 32, 18, 0.08) 0%, rgba(0, 32, 18, 0.42) 100%);
	transition: background 0.2s ease;
}

.adaba-video-card__play:hover,
.adaba-video-card__play:focus-visible {
	background: linear-gradient(180deg, rgba(0, 32, 18, 0.12) 0%, rgba(0, 32, 18, 0.52) 100%);
}

.adaba-video-card__play-icon {
	display: block;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: var(--adaba-green-dark);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
	position: relative;
}

.adaba-video-card__play-icon::after {
	content: '';
	position: absolute;
	left: 54%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent #fff;
}

.adaba-video-card__embed {
	position: absolute;
	inset: 0;
}

.adaba-video-card__embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.adaba-video-card.is-playing .adaba-video-card__thumb,
.adaba-video-card.is-playing .adaba-video-card__play {
	display: none;
}

.adaba-video-card.is-playing .adaba-video-card__embed {
	display: block !important;
}

.adaba-video-card__title {
	margin: 16px 0 6px;
	font-size: 1.125rem;
	font-weight: var(--fw-semibold);
	color: var(--adaba-green-dark);
	line-height: var(--lh-snug);
}

.adaba-video-card__desc {
	margin: 0 0 8px;
	color: var(--adaba-muted);
	font-size: var(--fs-nav);
	line-height: 1.5;
}

.adaba-video-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--adaba-green-dark);
	text-decoration: none;
}

.adaba-video-card__link:hover,
.adaba-video-card__link:focus-visible {
	text-decoration: underline;
}

/* Publications — subheadings inside a tab */
.adaba-pub-subhead {
	margin: 8px 0 18px;
	font-size: 1.05rem;
	font-weight: var(--fw-semibold);
	color: var(--adaba-green-dark);
}

.adaba-video-grid + .adaba-pub-subhead {
	margin-top: 40px;
}

/* Our Services (Programmes page) */
.adaba-services__title {
	text-align: center;
	font-size: clamp(1.6rem, 2.6vw, 2.1rem);
	font-weight: var(--fw-bold);
	color: var(--adaba-black);
	margin: 8px 0 36px;
}

.adaba-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.adaba-services__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding: 28px;
	background: var(--adaba-white);
	border: 1px solid var(--adaba-border);
	border-radius: var(--adaba-radius);
	box-shadow: var(--adaba-shadow);
}

.adaba-services__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: var(--adaba-gold);
}

.adaba-services__icon svg {
	width: 30px;
	height: 30px;
}

.adaba-services__name {
	margin: 0;
	font-size: 1.15rem;
	font-weight: var(--fw-semibold);
	color: var(--adaba-green-dark);
	line-height: var(--lh-snug);
}

.adaba-services__desc {
	margin: -4px 0 0;
	font-size: var(--fs-small);
	line-height: 1.6;
	color: var(--adaba-grey, #5b6b62);
}

/* Per-card 2-image auto slider */
.adaba-service-slider {
	width: 100%;
	height: 190px;
	overflow: hidden;
	border-radius: 12px;
	background: #eef1ef;
}
.adaba-service-slider__track {
	display: flex;
	width: 200%;
	height: 100%;
	animation: adaba-svc-slide 9s infinite;
}
.adaba-service-slider__img {
	flex: 0 0 50%;
	width: 50%;
	height: 100%;
	object-fit: cover;
	object-position: center 18%;
}
.adaba-services__card:nth-child(2) .adaba-service-slider__track {
	animation-delay: -3s;
}
.adaba-services__card:nth-child(3) .adaba-service-slider__track {
	animation-delay: -6s;
}
@keyframes adaba-svc-slide {
	0%, 42% { transform: translateX(0); }
	50%, 92% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
	.adaba-service-slider__track {
		animation: none;
	}
}

/* Programme card 2-image slider (matches home Our Services) */
.adaba-programme-slider {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #eef1ef;
}
.adaba-programme-slider__track {
	display: flex;
	width: 200%;
	height: 100%;
	animation: adaba-svc-slide 9s infinite;
}
.adaba-programme-slider__img {
	flex: 0 0 50%;
	width: 50%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}
.adaba-programme-card:nth-child(2n) .adaba-programme-slider__track {
	animation-delay: -3s;
}
.adaba-programme-card:nth-child(3n) .adaba-programme-slider__track {
	animation-delay: -6s;
}
@media (prefers-reduced-motion: reduce) {
	.adaba-programme-slider__track {
		animation: none;
	}
}

.adaba-services__gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 36px;
}

.adaba-services__photo {
	flex: 0 1 240px;
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	background: #eef1ef;
	box-shadow: 0 6px 18px rgba(0, 77, 44, 0.08);
}

.adaba-services__photo img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.adaba-services__photo figcaption {
	padding: 10px 14px;
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	color: var(--adaba-green-dark);
}

/* How we create Impact */
.adaba-impact-how__title {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	font-weight: var(--fw-bold);
	color: var(--adaba-green-dark);
	margin: 0 0 32px;
}
.adaba-impact-how__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.adaba-impact-how__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--adaba-lime, #8cc63f);
	color: #fff;
	font-weight: var(--fw-bold);
	font-size: 0.95rem;
	margin-bottom: 14px;
}
.adaba-impact-how__name {
	font-size: 1.05rem;
	font-weight: var(--fw-bold);
	color: var(--adaba-green-dark);
	margin: 0 0 8px;
}
.adaba-impact-how__text {
	font-size: var(--fs-small);
	line-height: 1.6;
	color: var(--adaba-grey, #5b6b62);
	margin: 0;
}
@media (max-width: 900px) {
	.adaba-impact-how__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}
@media (max-width: 540px) {
	.adaba-impact-how__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.adaba-services__grid {
		grid-template-columns: 1fr;
	}

	.adaba-services__photo {
		flex: 0 1 calc(50% - 8px);
	}
}

/* Contact */
.adaba-contact-social {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.adaba-contact-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--adaba-green-dark);
	color: #fff;
	transition: background 0.2s ease, transform 0.2s ease;
}
.adaba-contact-social__link:hover {
	background: var(--adaba-lime, #8cc63f);
	transform: translateY(-2px);
}
.adaba-contact-social__link svg {
	width: 20px;
	height: 20px;
}

.adaba-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 28px;
}

.adaba-form label {
	display: block;
	margin-bottom: 16px;
}

.adaba-form label span {
	display: block;
	font-weight: var(--fw-semibold);
	color: var(--adaba-green-dark);
	margin-bottom: 6px;
	font-size: var(--fs-small);
}

.adaba-form input,
.adaba-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--adaba-border);
	border-radius: 10px;
	font-family: var(--adaba-font);
	font-size: var(--fs-nav);
	font-weight: var(--fw-regular);
}

.adaba-form-notice--success {
	color: var(--adaba-green);
	font-weight: var(--fw-semibold);
}

.adaba-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.adaba-contact-list li {
	margin-bottom: 20px;
}

.adaba-contact-list strong {
	display: block;
	color: var(--adaba-green-dark);
	margin-bottom: 4px;
	font-weight: var(--fw-semibold);
	font-size: var(--fs-small);
}

/* Footer — lighter brand green, no white logo box */
.adaba-footer {
	background: var(--adaba-footer-bg);
	color: rgba(255, 255, 255, 0.9);
	margin-top: 0;
}

.adaba-footer__logo {
	display: inline-block;
	line-height: 0;
	margin-bottom: 4px;
	background: transparent;
}

.adaba-footer__logo-img {
	display: block;
	height: 50px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
	object-position: left center;
	/* Black-bg logo: blend so dark pixels show footer green, brand marks stay visible */
	mix-blend-mode: screen;
}

.adaba-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding: 64px 0 48px;
}

.adaba-footer__about {
	margin: 16px 0;
	font-size: var(--fs-small);
	font-weight: var(--fw-regular);
	line-height: 1.6;
	max-width: 300px;
}

.adaba-footer__social {
	display: flex;
	gap: 10px;
}

.adaba-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff !important;
	font-size: var(--fs-xs);
	font-weight: var(--fw-semibold);
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.adaba-footer__social a:hover,
.adaba-footer__social a:focus-visible {
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-1px);
}

.adaba-footer__social a svg {
	width: 18px;
	height: 18px;
}

.adaba-footer__newsletter {
	display: inline-block;
	margin-top: 18px;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--adaba-accent);
	color: var(--adaba-green-dark);
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	transition: transform 0.15s ease, filter 0.15s ease;
}

.adaba-footer__newsletter:hover,
.adaba-footer__newsletter:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.05);
	color: var(--adaba-green-dark);
}

.adaba-footer h3 {
	color: #fff;
	font-size: 1rem;
	font-weight: var(--fw-semibold);
	margin: 0 0 16px;
}

.adaba-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.adaba-footer li {
	margin-bottom: 10px;
}

.adaba-footer a {
	color: rgba(255, 255, 255, 0.85) !important;
	font-size: var(--fs-small);
	font-weight: var(--fw-regular);
}

.adaba-footer a:hover {
	color: #fff !important;
}

.adaba-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--adaba-footer-bar-bg);
	padding: 18px 0;
	font-size: 13px;
	font-weight: var(--fw-regular);
}

.adaba-footer__bar-inner p {
	margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.adaba-hero__grid,
	.adaba-split,
	.adaba-home-about__grid,
	.adaba-about-story__grid,
	.adaba-impact-band__grid,
	.adaba-page-hero__grid,
	.adaba-programmes-hero__grid,
	.adaba-programme-card,
	.adaba-programme-card--reverse,
	.adaba-about-mv__panel,
	.adaba-mv-grid,
	.adaba-contact-grid,
	.adaba-quote-band__grid,
	.adaba-programme-row {
		grid-template-columns: 1fr;
	}

	/* Vision card below photo when layout stacks — keeps faces visible */
	.adaba-home-about__image-wrap {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.adaba-home-about__vision {
		position: static;
		left: auto;
		bottom: auto;
		width: 100%;
		max-width: none;
		order: 2;
	}

	.adaba-home-about__image {
		order: 1;
		border-radius: 16px;
	}

	.adaba-impact-boxes__grid,
	.adaba-program-cards,
	.adaba-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.adaba-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.adaba-hero__media {
		min-height: 320px;
	}

	.adaba-page-hero__panel {
		border-radius: var(--adaba-radius-lg);
	}

	.adaba-page-hero__image img {
		border-radius: var(--adaba-radius-lg);
		min-height: 280px;
	}

	.adaba-programme-row--reverse .adaba-programme-row__media,
	.adaba-programme-row--reverse .adaba-programme-row__content {
		order: unset;
	}

	.adaba-programme-card--reverse .adaba-programme-card__media,
	.adaba-programme-card--reverse .adaba-programme-card__body {
		order: unset;
	}

	.adaba-programme-card__media {
		height: 240px;
	}

	.adaba-programme-card__meta {
		grid-template-columns: 1fr;
	}

	.adaba-about-mv__item:first-child {
		border-right: 0;
		border-bottom: 1px solid var(--adaba-border);
	}

	.adaba-team-grid--about {
		grid-template-columns: repeat(2, 1fr);
	}

	.adaba-about-hero__wrap {
		height: 360px;
		min-height: 360px;
		max-height: 360px;
	}

	.adaba-about-hero__content,
	.adaba-about-hero__content.adaba-container {
		flex: 0 0 44%;
		width: 44%;
		padding-right: 20px;
	}

	.adaba-about-hero__media {
		width: 58%;
	}
}

@media (max-width: 1024px) {
	.adaba-nav__list {
		gap: 24px;
	}

	.adaba-nav__list a {
		font-size: 14px;
	}

	.adaba-btn--header {
		padding: 10px 20px;
		font-size: 13px;
	}

	.adaba-logo img,
	.adaba-logo__img,
	.custom-logo-link img {
		height: 44px;
	}
}

@media (max-width: 900px) {
	.adaba-nav--desktop {
		display: none;
	}

	.adaba-header__cta {
		display: none;
	}

	.adaba-nav-toggle {
		display: flex;
	}
}

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

	/* Header mobile: logo left, hamburger right */
	.adaba-header__bar {
		min-height: 64px;
	}

	.adaba-header__left {
		flex: 1;
		min-width: 0;
	}

	.adaba-header__right {
		flex-shrink: 0;
	}

	.adaba-logo img,
	.adaba-logo__img,
	.custom-logo-link img {
		height: 40px;
		max-width: 150px;
		object-fit: contain;
		object-position: left center;
	}

	.adaba-header__cta {
		display: none;
	}

	.adaba-nav-toggle {
		display: flex;
	}

	.adaba-nav--mobile {
		display: block;
		border-top: 1px solid var(--adaba-border);
		padding: 0 0 16px;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
	}

	.adaba-nav--mobile.is-open {
		max-height: 480px;
		opacity: 1;
		padding-bottom: 20px;
	}

	.adaba-nav--mobile .adaba-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 12px 0 16px;
	}

	.adaba-nav--mobile .adaba-nav__list a {
		font-size: 16px;
		padding: 10px 0;
	}

	.adaba-nav__mobile-cta {
		width: 100%;
		justify-content: center;
	}

	body.adaba-nav-open {
		overflow: hidden;
	}

	/* Hero mobile */
	.adaba-hero {
		padding-top: 28px;
	}

	.adaba-hero__grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-bottom: 32px;
	}

	.adaba-hero__title {
		font-size: clamp(1.65rem, 6.5vw, 2.1rem);
		margin-bottom: 16px;
		max-width: none;
	}

	.adaba-hero__title .text-green {
		white-space: normal;
	}

	.adaba-hero__intro {
		font-size: 15px;
		margin-bottom: 22px;
		max-width: none;
	}

	.adaba-hero__actions {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}

	/* Consistent single-button sizing on mobile (content width, not full bleed) */
	.adaba-hero__actions .adaba-btn,
	.adaba-home-about .adaba-btn,
	.adaba-programmes-cta__inner > .adaba-btn {
		flex: 0 0 auto;
		width: auto;
		min-width: 168px;
		padding: 13px 26px;
		font-size: 14px;
		font-weight: var(--fw-semibold);
		justify-content: center;
		gap: 6px;
	}

	.adaba-hero__actions .adaba-btn span {
		font-size: 14px;
	}

	.adaba-hero__media {
		min-height: 300px;
		padding: 0;
	}

	.adaba-hero__collage {
		height: 320px;
	}

	.adaba-hero__frame--main {
		left: 14%;
		width: 68%;
		height: 280px;
		top: 16px;
	}

	.adaba-hero__frame--secondary {
		left: 0;
		top: 4px;
		width: 34%;
		height: 112px;
		border-width: 3px;
		border-radius: 14px;
	}

	.adaba-hero__frame--tertiary {
		right: 0;
		left: auto;
		width: 46%;
		height: 140px;
	}

	.adaba-stats-bar--lead-only {
		padding: 0 0 28px;
	}

	.adaba-stats-bar--lead-only .adaba-stats-bar__lead {
		max-width: 26ch;
		font-size: 14px;
		white-space: normal;
	}

	.adaba-home-about {
		padding: 48px 0 56px;
	}

	.adaba-home-about__media {
		padding-left: 0;
	}

	.adaba-home-about__image {
		aspect-ratio: 4 / 3;
		object-position: center 35%;
	}

	.adaba-video-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.adaba-pub-tabs__nav {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
		width: 100%;
	}

	.adaba-pub-tabs__btn {
		width: 100%;
		min-height: 52px;
		padding: 10px 8px;
		font-size: 11px;
		line-height: 1.3;
	}

	.adaba-home-about__title {
		max-width: none;
		white-space: normal;
	}

	.adaba-about-hero__wrap {
		flex-direction: column;
		height: auto;
		min-height: 0;
		max-height: none;
	}

	.adaba-about-hero__content,
	.adaba-about-hero__content.adaba-container {
		width: 100%;
		padding: 28px 0 20px;
	}

	.adaba-about-hero__title {
		max-width: none;
		font-size: clamp(1.5rem, 5vw, 1.85rem);
	}

	.adaba-about-hero__tagline {
		max-width: none;
		font-size: 0.95rem;
	}

	.adaba-about-hero__media {
		position: relative;
		width: 100%;
		height: 320px;
		justify-content: center;
	}

	.adaba-about-hero__seep {
		width: 18%;
		background: linear-gradient(90deg, var(--adaba-green-dark) 0%, transparent 100%);
	}

	.adaba-about-hero__img {
		width: auto;
		max-width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center bottom;
		border-radius: 0;
		-webkit-mask-image: none;
		mask-image: none;
		transform: none;
	}

	.adaba-about-story {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.adaba-about-story__media {
		padding: 0 0 20px 0;
	}

	.adaba-impact-band--testimonial {
		min-height: 320px;
	}

	.adaba-impact-band__photo {
		object-position: center 28%;
	}

	.adaba-impact-band__veil {
		background:
			linear-gradient(
				180deg,
				rgba(0, 77, 44, 0.32) 0%,
				rgba(0, 77, 44, 0.28) 100%
			);
	}

	.adaba-impact-band__grid--testimonial {
		min-height: 320px;
		padding: 0;
	}

	.adaba-impact-band__grid {
		grid-template-columns: 1fr;
		padding: 28px 0;
		min-height: auto;
	}

	.adaba-impact-band__right {
		max-width: none;
		padding-left: 0;
		margin-left: 0;
		justify-self: stretch;
	}

	.adaba-cta-strip--home .adaba-cta-strip__inner {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		padding: 32px 0;
	}

	.adaba-cta-strip__actions {
		justify-content: flex-start;
		width: 100%;
	}

	.adaba-impact-boxes__grid,
	.adaba-program-cards,
	.adaba-services-grid {
		grid-template-columns: 1fr;
	}

	.adaba-cta-strip__inner {
		flex-direction: column;
		text-align: center;
		padding: 32px 24px;
	}

	.adaba-cta-strip--partnerships .adaba-cta-strip__inner {
		text-align: left;
		align-items: stretch;
	}

	.adaba-cta-strip--partnerships .adaba-cta-strip__actions {
		flex-direction: column;
	}

	.adaba-cta-strip--partnerships .adaba-cta-strip__actions .adaba-btn {
		flex: 1 1 auto;
		width: 100%;
		min-width: 0;
	}

	.adaba-programmes-cta {
		padding: 32px 0;
	}

	.adaba-programmes-cta__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.adaba-programmes-cta__text {
		min-width: 0;
		width: 100%;
	}

	.adaba-programmes-cta__inner > .adaba-btn {
		width: auto;
		min-width: 168px;
		justify-content: center;
	}

	.adaba-programme-row {
		gap: 20px;
		margin-bottom: 32px;
	}

	.adaba-programme-row__img {
		height: auto;
		min-height: 0;
		max-height: 240px;
		object-fit: cover;
	}

	.adaba-partnership-row .adaba-programme-row__content {
		padding: 24px 20px;
	}

	.adaba-cta-strip__actions {
		justify-content: center;
	}

	.adaba-footer__grid {
		grid-template-columns: 1fr;
	}

	.adaba-hero__img--main {
		width: 100%;
	}
}
