/* ==========================================================================
   MMPS section widgets
   ========================================================================== */

/* Section headers */
.mmps-sec__head { margin-bottom: 38px; }
.mmps-sec__head--center { text-align: center; }
.mmps-sec__title { font-family: var(--font-display); color: var(--mmps-navy); font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 0 0 .3em; }
.mmps-sec__sub { font-family: var(--font-display); font-style: italic; color: var(--mmps-gray, #8A8F98); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.mmps-sec__head--left .mmps-sec__sub { margin: 0; }
.mmps-sec__more { float: right; margin-top: -46px; font-weight: 700; font-size: .92rem; color: var(--mmps-royal); text-decoration: none; }
.mmps-sec__more:hover { color: var(--mmps-navy); }

/* ---------------- About intro ---------------- */
.mmps-about { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.mmps-about__media { position: relative; }
.mmps-about__img-main { width: 88%; border-radius: 20px; box-shadow: 0 24px 60px rgba(13,47,107,.16); display: block; }
.mmps-about__img-small {
	position: absolute; right: 0; bottom: -34px; width: 46%;
	border-radius: 16px; border: 6px solid #fff; box-shadow: 0 18px 44px rgba(13,47,107,.2);
}
.mmps-about__badge {
	position: absolute; top: 18px; right: 4%;
	background: var(--mmps-navy); color: #fff; border-radius: 14px;
	padding: 14px 18px; text-align: center; box-shadow: 0 14px 34px rgba(13,47,107,.3);
}
.mmps-about__badge strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--mmps-gold); line-height: 1; }
.mmps-about__badge span { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.mmps-about__text { color: #4a5268; }
.mmps-about__chips { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0; }
.mmps-about__chip {
	display: flex; align-items: center; gap: 9px;
	background: var(--mmps-light); border-radius: 12px; padding: 12px 16px;
	font-size: .85rem; font-weight: 600; color: var(--mmps-navy);
}
.mmps-about__chip-icon { color: var(--mmps-royal); display: inline-flex; font-size: 1.1rem; }
.mmps-about__quote {
	margin: 0 0 24px; padding: 4px 0 4px 20px; border-left: 3px solid var(--mmps-gold);
}
.mmps-about__quote p { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; color: var(--mmps-navy); margin: 0 0 6px; }
.mmps-about__quote cite { font-style: normal; font-size: .85rem; color: var(--mmps-gray, #8A8F98); }

/* ---------------- Icon cards ---------------- */
.mmps-icards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.mmps-icards__card {
	background: #fff; border-radius: 18px; padding: 36px 30px;
	box-shadow: 0 14px 40px rgba(13,47,107,.08);
	transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s;
}
.mmps-icards__card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(13,47,107,.14); }
.mmps-icards__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 54px; height: 54px; border-radius: 14px;
	background: var(--mmps-light); color: var(--mmps-royal); font-size: 1.4rem; margin-bottom: 18px;
}
.mmps-icards__card h3 { font-family: var(--font-display); color: var(--mmps-navy); font-size: 1.45rem; margin: 0 0 4px; }
.mmps-icards__sub { font-family: var(--font-display); font-style: italic; color: var(--mmps-royal); margin: 0 0 10px; font-size: .98rem; }
.mmps-icards__text { color: #4a5268; font-size: .95rem; margin: 0 0 10px; }

/* balanced rows for exactly-4 fancy card sets (avoid a 3+1 orphan).
   Scoped to the fancy variant only — classic grids keep their auto-fit floor.
   minmax(0,1fr) lets tracks shrink evenly instead of overflowing a narrow column. */
@media (min-width: 1100px) {
	.mmps-icards--fancy.mmps-icards--count-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 700px) and (max-width: 1099.98px) {
	.mmps-icards--fancy.mmps-icards--count-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* fancy variant — centered, ringed line icon, gold accent sweep on hover */
.mmps-icards--fancy .mmps-icards__card {
	text-align: center; padding: 42px 28px 34px;
	position: relative; overflow: hidden;
}
.mmps-icards--fancy .mmps-icards__card::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--mmps-gold), #ffc14d);
	transform: scaleX(0); transform-origin: left;
	transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.mmps-icards--fancy .mmps-icards__card:hover::before { transform: scaleX(1); }
.mmps-icards--fancy .mmps-icards__icon {
	width: 72px; height: 72px; border-radius: 50%;
	background: var(--mmps-light); color: var(--mmps-royal);
	box-shadow: inset 0 0 0 1px rgba(13,47,107,.08), 0 0 0 8px rgba(242,178,51,.12);
	transition: background .35s, color .35s, box-shadow .35s, transform .35s cubic-bezier(.22,.61,.36,1);
}
.mmps-icards--fancy .mmps-icards__icon svg { width: 30px; height: 30px; }
.mmps-icards--fancy .mmps-icards__card:hover .mmps-icards__icon {
	background: var(--mmps-navy); color: var(--mmps-gold);
	transform: translateY(-4px) scale(1.06);
	box-shadow: inset 0 0 0 1px rgba(13,47,107,0), 0 0 0 10px rgba(242,178,51,.22);
}
.mmps-icards--fancy .mmps-icards__card h3 { font-size: 1.32rem; }

@media (prefers-reduced-motion: reduce) {
	.mmps-icards--fancy .mmps-icards__card::before,
	.mmps-icards--fancy .mmps-icards__icon,
	.mmps-tl__card, .mmps-tl__marker {
		transition: none !important; animation: none !important;
	}
	.mmps-icards--fancy .mmps-icards__card:hover::before { transform: scaleX(0) !important; }
	.mmps-icards--fancy .mmps-icards__card:hover .mmps-icards__icon,
	.mmps-tl--hover .mmps-tl__item:hover .mmps-tl__card,
	.mmps-tl--hover .mmps-tl__item:hover .mmps-tl__marker { transform: none !important; }
}

/* animated variant — icon lifts, title shifts & gains a gold underline on hover */
.mmps-icards--animated .mmps-icards__card h3 { position: relative; display: inline-block; transition: transform .35s var(--mmps-ease), color .35s; }
.mmps-icards--animated .mmps-icards__card h3::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--mmps-gold); transition: width .4s var(--mmps-ease); }
.mmps-icards--animated .mmps-icards__card:hover h3 { transform: translateX(4px); color: var(--mmps-royal); }
.mmps-icards--animated .mmps-icards__card:hover h3::after { width: 100%; }
.mmps-icards--animated .mmps-icards__icon { transition: transform .4s var(--mmps-ease); }
.mmps-icards--animated .mmps-icards__card:hover .mmps-icards__icon { transform: translateY(-4px) rotate(-6deg); }

/* ---------------- Stats ---------------- */
.mmps-statsw { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 30px; text-align: center; }
.mmps-statsw__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 3.4rem; line-height: 1.05; }
.mmps-statsw--dark .mmps-statsw__num { color: var(--mmps-gold); }
.mmps-statsw--light .mmps-statsw__num { color: var(--mmps-navy); }
.mmps-statsw__label { display: block; margin-top: 8px; font-size: .9rem; }
.mmps-statsw--dark .mmps-statsw__label { color: rgba(255,255,255,.85); }
.mmps-statsw--light .mmps-statsw__label { color: #4a5268; }

/* ---------------- Testimonials ---------------- */
.mmps-testi { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.mmps-testi__card {
	margin: 0; background: #fff; border-radius: 18px; padding: 34px 30px 28px; position: relative;
	box-shadow: 0 14px 40px rgba(13,47,107,.08);
	overflow: hidden;
	transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s cubic-bezier(.22,.61,.36,1), background .35s;
}
.mmps-testi__card::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
	background: linear-gradient(90deg, var(--mmps-gold), #ffc14d);
	transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.mmps-testi__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 64px rgba(13,47,107,.16);
}
.mmps-testi__card:hover::after { transform: scaleX(1); }
.mmps-testi__card:hover .mmps-testi__mark { opacity: 1; transform: scale(1.12) rotate(-6deg); }
.mmps-on-dark .mmps-testi__card:hover,
.mmps-testi--on-dark .mmps-testi__card:hover { background: rgba(255,255,255,.12); box-shadow: 0 26px 64px rgba(0,0,0,.3); }
.mmps-statsw + .mmps-testi .mmps-testi__card,
.mmps-testi--on-dark .mmps-testi__card { background: rgba(255,255,255,.06); }
.mmps-testi__mark {
	position: absolute; top: 10px; left: 22px;
	font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--mmps-gold); opacity: .55;
	transition: opacity .35s, transform .35s cubic-bezier(.22,.61,.36,1);
}
.mmps-testi__card blockquote { margin: 18px 0 14px; font-size: .98rem; color: #4a5268; font-style: italic; }
.mmps-testi__card figcaption { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mmps-royal); }

/* Testimonials carousel */
.mmps-testi--carousel {
	display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch; padding: 6px 4px 18px; scrollbar-width: none;
}
.mmps-testi--carousel::-webkit-scrollbar { display: none; }
.mmps-testi--carousel .mmps-testi__card {
	flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start;
}
.mmps-carousel-nav { display: flex; gap: 12px; justify-content: center; margin-top: 18px; }
.mmps-carousel-nav button {
	width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
	border: 1.5px solid rgba(13,47,107,.25); background: #fff; color: var(--mmps-navy);
	font-size: 1.1rem; transition: all .3s cubic-bezier(.22,.61,.36,1);
}
.mmps-carousel-nav button:hover { background: var(--mmps-gold); border-color: var(--mmps-gold); color: var(--mmps-navy); transform: translateY(-2px); }
.mmps-on-dark .mmps-carousel-nav button { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); color: #fff; }
.mmps-on-dark .mmps-carousel-nav button:hover { background: var(--mmps-gold); color: var(--mmps-navy); border-color: var(--mmps-gold); }
@media (max-width: 900px) {
	.mmps-testi--carousel .mmps-testi__card { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
	.mmps-testi--carousel .mmps-testi__card { flex-basis: 88%; }
}

/* on navy containers */
.e-con[style*="0D2F6B"] .mmps-testi__card,
.mmps-on-dark .mmps-testi__card { background: rgba(255,255,255,.07); }
.mmps-on-dark .mmps-testi__card blockquote { color: rgba(255,255,255,.85); }
.mmps-on-dark .mmps-testi__card figcaption { color: var(--mmps-light-blue); }
.mmps-on-dark .mmps-sec__title { color: #fff; }
.mmps-on-dark .mmps-kicker { color: var(--mmps-gold); }
.mmps-on-dark .mmps-sec__sub { color: var(--mmps-light-blue); }

/* ---------------- Feature split ---------------- */
.mmps-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.mmps-split--img-left .mmps-split__media { order: -1; }
.mmps-split__media img { width: 100%; border-radius: 20px; box-shadow: 0 24px 60px rgba(13,47,107,.16); display: block; }

/* feature-split image slideshow */
.mmps-slideshow { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(13,47,107,.16); }
.mmps-slideshow__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 20px; opacity: 0; transition: opacity 1s ease; }
.mmps-slideshow__img.is-active { opacity: 1; }
.mmps-split__text { color: #4a5268; }
.mmps-split__list { list-style: none; margin: 18px 0 26px; padding: 0; }
.mmps-split__list li { position: relative; padding: 6px 0 6px 32px; color: var(--mmps-navy); font-weight: 500; font-size: .97rem; }
.mmps-split__list li::before {
	content: "✓"; position: absolute; left: 0; top: 6px;
	width: 22px; height: 22px; border-radius: 50%;
	background: var(--mmps-gold); color: var(--mmps-navy); font-size: .7rem; font-weight: 700;
	display: flex; align-items: center; justify-content: center;
}

/* ---------------- News grid ---------------- */
.mmps-news { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 26px; }
.mmps-news__card .mmps-card__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.mmps-news__meta { display: flex; align-items: center; gap: 12px; margin: 0 0 10px; font-size: .78rem; color: var(--mmps-gray, #8A8F98); }
.mmps-news__cat {
	background: var(--mmps-light-blue); color: var(--mmps-navy);
	border-radius: 999px; padding: 3px 12px; font-weight: 700; letter-spacing: .04em;
}

/* ---------------- Logo marquee ---------------- */
.mmps-marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.mmps-marquee__track { display: flex; gap: 22px; width: max-content; animation: mmps-marquee 32s linear infinite; }
.mmps-marquee:hover .mmps-marquee__track { animation-play-state: paused; }
@keyframes mmps-marquee { to { transform: translateX(-50%); } }
.mmps-marquee__item {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	min-width: 170px; height: 86px; padding: 14px 22px;
	background: #fff; border: 1px solid #e6eaf2; border-radius: 14px;
	text-decoration: none; color: var(--mmps-navy);
	font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-align: center; text-transform: uppercase;
}
.mmps-marquee__item img { max-height: 56px; width: auto; }

/* Static accreditation row (no animation, centred, one of each) */
.mmps-marquee--static { -webkit-mask-image: none; mask-image: none; }
.mmps-marquee--static .mmps-marquee__track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
.mmps-marquee--plain .mmps-marquee__item { background: none; border: 0; min-width: 0; height: auto; padding: 10px 22px; }
.mmps-marquee--plain .mmps-marquee__item img { max-height: 78px; }

/* ---------------- Instagram ---------------- */
.mmps-insta { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; }
.mmps-insta__item { position: relative; display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 1; }
.mmps-insta__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.mmps-insta__item:hover img { transform: scale(1.07); }
.mmps-insta__cap {
	position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 14px;
	background: linear-gradient(180deg, transparent 40%, rgba(13,47,107,.82));
	color: #fff; font-size: .78rem; font-weight: 600; opacity: 0; transition: opacity .35s;
}
.mmps-insta__item:hover .mmps-insta__cap { opacity: 1; }

/* ---------------- CTA band ---------------- */
.mmps-ctaband {
	position: relative; border-radius: 0; background: var(--mmps-navy) center/cover no-repeat;
	padding: 110px 24px; text-align: center; overflow: hidden;
}
.mmps-ctaband::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(8,29,66,.78), rgba(8,29,66,.78)); }
.mmps-ctaband__inner { position: relative; max-width: 760px; margin: 0 auto; }
.mmps-ctaband h2 { color: #fff; font-family: var(--font-display); font-size: clamp(2rem, 4.6vw, 3.2rem); margin: 0 0 .4em; }
.mmps-ctaband p { color: var(--mmps-light-blue); margin: 0 auto 1.8em; max-width: 560px; }
.mmps-ctaband__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Page header ---------------- */
.mmps-pageheader {
	position: relative; overflow: hidden;
	background: linear-gradient(160deg, var(--mmps-navy), #0a2452) center/cover no-repeat;
	text-align: center; color: #fff;
	padding: calc(var(--mmps-header-h, 92px) + 70px) 24px 70px;
}
.mmps-pageheader::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(8,29,66,.66), rgba(8,29,66,.72)); opacity: 0; }
.mmps-pageheader[style*="background-image"]::before { opacity: 1; }
.mmps-pageheader--compact { padding-top: calc(var(--mmps-header-h, 92px) + 40px); padding-bottom: 44px; }
.mmps-pageheader--tall { padding-top: calc(var(--mmps-header-h, 92px) + 130px); padding-bottom: 130px; }
.mmps-pageheader__inner { position: relative; max-width: 880px; margin: 0 auto; }
.mmps-pageheader__title { font-family: var(--font-display); color: #fff; font-size: clamp(2.4rem, 6vw, 4rem); margin: 0; }
.mmps-pageheader__sub { color: var(--mmps-light-blue); max-width: 620px; margin: 1em auto 0; }
.mmps-pageheader__crumb { margin-top: 1.6em; font-size: .8rem; letter-spacing: .06em; color: rgba(255,255,255,.65); display: flex; gap: 10px; justify-content: center; }
.mmps-pageheader__crumb a { color: #fff; text-decoration: none; }
.mmps-pageheader__crumb a:hover { color: var(--mmps-gold); }

/* ---------------- Team cards ---------------- */
.mmps-team { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.mmps-team__card {
	background: #fff; border-radius: 18px; padding: 34px 26px; text-align: center;
	box-shadow: 0 14px 40px rgba(13,47,107,.08);
	transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s;
}
.mmps-team__card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(13,47,107,.14); }
.mmps-team__photo {
	width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px;
	background: linear-gradient(150deg, var(--mmps-light-blue), var(--mmps-sky));
	display: flex; align-items: center; justify-content: center;
	border: 4px solid #fff; box-shadow: 0 10px 26px rgba(13,47,107,.18);
}
.mmps-team__photo img { width: 100%; height: 100%; object-fit: cover; }
.mmps-team__initial { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--mmps-navy); }
.mmps-team__card h3 { font-family: var(--font-display); color: var(--mmps-navy); font-size: 1.35rem; margin: 0 0 2px; }
.mmps-team__role { color: var(--mmps-royal); font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 4px; }
.mmps-team__quals { color: var(--mmps-gray, #8A8F98); font-size: .82rem; margin: 0; }

/* ---------------- Fees table extras ---------------- */
.mmps-table__hl td { background: #FFF7E4 !important; }
.mmps-table__footnote { font-size: .85rem; color: var(--mmps-gray, #8A8F98); margin-top: 14px; }

/* ---------------- Info cards ---------------- */
.mmps-infocards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.mmps-infocards__card {
	background: #fff; border-radius: 16px; padding: 30px 26px;
	box-shadow: 0 10px 34px rgba(13,47,107,.08);
	border-top: 3px solid var(--mmps-gold);
	transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s cubic-bezier(.22,.61,.36,1), border-color .35s;
}
.mmps-infocards__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 60px rgba(13,47,107,.15);
	border-top-color: var(--mmps-royal);
}
.mmps-infocards__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 12px;
	background: var(--mmps-light); color: var(--mmps-royal); font-size: 1.15rem; margin-bottom: 14px;
	transition: background .35s, color .35s, transform .35s cubic-bezier(.22,.61,.36,1);
}
.mmps-infocards__icon svg { width: 22px; height: 22px; display: block; }
.mmps-infocards__card:hover .mmps-infocards__icon {
	background: var(--mmps-navy); color: var(--mmps-gold); transform: translateY(-3px) rotate(-5deg);
}
.mmps-infocards__card h3 { font-family: var(--font-display); color: var(--mmps-navy); font-size: 1.25rem; margin: 0 0 8px; }
.mmps-infocards__card p { margin: 0; color: #4a5268; font-size: .92rem; line-height: 1.7; }

/* ---------------- Documents list ---------------- */
.mmps-docs { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.mmps-docs__item a {
	display: flex; align-items: center; gap: 16px;
	background: #fff; border-radius: 14px; padding: 18px 22px;
	box-shadow: 0 8px 26px rgba(13,47,107,.07); text-decoration: none;
	transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s;
}
.mmps-docs__item a:hover { transform: translateX(6px); box-shadow: 0 14px 38px rgba(13,47,107,.12); }
.mmps-docs__icon {
	flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 12px;
	background: var(--mmps-light); color: var(--mmps-royal);
}
.mmps-docs__body { flex: 1; display: flex; flex-direction: column; }
.mmps-docs__body strong { color: var(--mmps-navy); font-size: 1rem; }
.mmps-docs__body em { font-style: normal; font-size: .78rem; color: var(--mmps-gray, #8A8F98); }
.mmps-docs__cta {
	font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	color: var(--mmps-gold);
}

/* ---------------- Leader's Message ---------------- */
.mmps-leader__inner {
	display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start;
}
.mmps-leader__media { position: relative; }
/* Sticky scroll + reveal/float animations disabled — they interfered with scrolling. */
.mmps-leader--sticky .mmps-leader__media { position: relative; top: auto; }
.mmps-leader .mmps-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

.mmps-leader__frame {
	position: relative; width: 100%; max-width: 380px; margin-inline: auto;
	aspect-ratio: 4/5; border-radius: 22px; overflow: visible;
}
/* gold geometric frame echoing the brand flower, behind the portrait (static) */
.mmps-leader__frame-deco {
	position: absolute; inset: -18px -18px auto auto; width: 78%; height: 78%;
	border: 2px solid var(--mmps-gold); border-radius: 30% 30% 30% 0;
	transform: rotate(45deg); z-index: 0; opacity: .9;
}

.mmps-leader__photo {
	position: relative; z-index: 1; display: block; width: 100%; height: 100%;
	object-fit: cover; border-radius: 22px;
	box-shadow: 0 28px 60px rgba(13,47,107,.22);
}
.mmps-leader__photo--empty { background: linear-gradient(150deg, var(--mmps-light-blue), var(--mmps-sky)); }

.mmps-leader__badge {
	position: absolute; z-index: 2; left: -14px; bottom: 28px;
	background: var(--mmps-navy); color: #fff; border-radius: 14px;
	padding: 12px 18px; text-align: center; box-shadow: 0 16px 34px rgba(13,47,107,.3);
}
.mmps-leader__badge strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--mmps-gold); line-height: 1; }
.mmps-leader__badge em { font-style: normal; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }

.mmps-leader__plate { text-align: center; margin-top: 34px; }
.mmps-leader__plate strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--mmps-navy); }
.mmps-leader__plate span { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mmps-royal); }

.mmps-leader__heading { font-family: var(--font-display); color: var(--mmps-navy); font-size: clamp(2rem, 4vw, 2.8rem); margin: .1em 0 .6em; }

.mmps-leader__hadith {
	position: relative; margin: 0 0 30px; padding: 8px 0 8px 34px;
	border-left: 3px solid var(--mmps-gold);
}
.mmps-leader__hadith .mmps-leader__mark {
	position: absolute; left: 10px; top: -18px; font-family: var(--font-display);
	font-size: 3.4rem; line-height: 1; color: var(--mmps-gold); opacity: .5;
}
.mmps-leader__hadith p { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--mmps-navy); margin: 0 0 6px; }
.mmps-leader__hadith cite { font-style: normal; font-size: .82rem; letter-spacing: .04em; color: var(--mmps-gray, #8A8F98); }

.mmps-leader__text { color: #4a5268; font-size: 1.02rem; }
.mmps-leader__text p { margin: 0 0 1.1em; }

.mmps-leader__pull {
	font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.8rem);
	color: var(--mmps-royal); line-height: 1.4; margin: 28px 0; padding: 22px 28px;
	background: linear-gradient(120deg, rgba(77,182,230,.12), rgba(242,178,51,.10));
	border-radius: 16px;
}

.mmps-leader__sign { margin-top: 26px; }
.mmps-leader__sign-name {
	display: block; font-family: var(--font-display); font-style: italic; font-weight: 600;
	font-size: 2rem; color: var(--mmps-navy); line-height: 1;
}
.mmps-leader__sign-role { font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mmps-royal); }

@media (max-width: 900px) {
	.mmps-leader__inner { grid-template-columns: 1fr; gap: 40px; }
	.mmps-leader--sticky .mmps-leader__media { position: static; }
	.mmps-leader__frame { max-width: 300px; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 920px) {
	.mmps-about, .mmps-split { grid-template-columns: 1fr; gap: 40px; }
	.mmps-split--img-left .mmps-split__media { order: 0; }
	.mmps-about__img-small { bottom: -20px; }
	.mmps-sec__more { float: none; display: inline-block; margin-top: 8px; }
}

/* ---------------- Process timeline ---------------- */
.mmps-tl {
	--tl-accent: var(--mmps-gold);
	--tl-line: rgba(13,47,107,.22);
	--tl-marker-bg: #fff;
	--tl-marker: 56px;
	position: relative;
}
.mmps-tl--line-solid { --tl-line-style: solid; }
.mmps-tl--line-dashed { --tl-line-style: dashed; }
.mmps-tl--line-dotted { --tl-line-style: dotted; }
.mmps-tl__marker {
	width: var(--tl-marker); height: var(--tl-marker); border-radius: 50%;
	background: var(--tl-marker-bg); border: 2px solid var(--tl-accent);
	display: flex; align-items: center; justify-content: center;
	color: var(--mmps-navy); box-shadow: 0 8px 24px rgba(13,47,107,.12);
	flex: 0 0 auto; position: relative; z-index: 1;
	transition: transform .35s cubic-bezier(.22,.61,.36,1), background .35s, color .35s, border-color .35s;
}
.mmps-tl__marker svg { width: calc(var(--tl-marker) * .42); height: calc(var(--tl-marker) * .42); }
.mmps-tl__marker-num { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.mmps-tl__card {
	background: #fff; border-radius: 18px; padding: 26px 28px;
	box-shadow: 0 14px 40px rgba(13,47,107,.09);
	position: relative;
	transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s cubic-bezier(.22,.61,.36,1);
}
.mmps-tl--hover .mmps-tl__item:hover .mmps-tl__card {
	transform: translateY(-6px);
	box-shadow: 0 24px 60px rgba(13,47,107,.16);
}
.mmps-tl--hover .mmps-tl__item:hover .mmps-tl__marker {
	transform: scale(1.08);
	background: var(--mmps-navy); color: var(--mmps-gold); border-color: var(--mmps-navy);
}

/* Tinted cards — soft brand washes cycling per step, with a matching accent edge
   and marker ring. --tl-tint / --tl-accent are set per nth-child so every
   descendant (card, marker, number) stays in the same family. */
.mmps-tl--tinted .mmps-tl__item:nth-child(4n+1) { --tl-tint: #EDF2FA; --tl-accent: var(--mmps-navy); }
.mmps-tl--tinted .mmps-tl__item:nth-child(4n+2) { --tl-tint: #FDF4E1; --tl-accent: var(--mmps-gold); }
.mmps-tl--tinted .mmps-tl__item:nth-child(4n+3) { --tl-tint: #EAF6FD; --tl-accent: var(--mmps-sky, #4DB6E6); }
.mmps-tl--tinted .mmps-tl__item:nth-child(4n+4) { --tl-tint: #E7F5F3; --tl-accent: var(--mmps-teal, #00A99D); }
.mmps-tl--tinted .mmps-tl__card {
	background: var(--tl-tint);
	border-top: 3px solid var(--tl-accent);
	box-shadow: 0 12px 34px rgba(13,47,107,.08);
}
.mmps-tl--tinted.mmps-tl--zigzag .mmps-tl__item:nth-child(odd) .mmps-tl__card { border-top: 0; border-right: 3px solid var(--tl-accent); }
.mmps-tl--tinted.mmps-tl--zigzag .mmps-tl__item:nth-child(even) .mmps-tl__card { border-top: 0; border-left: 3px solid var(--tl-accent); }
.mmps-tl--tinted .mmps-tl__marker { border-color: var(--tl-accent); color: var(--tl-accent); }
.mmps-tl--tinted .mmps-tl__num { color: var(--tl-accent); }
.mmps-tl--tinted.mmps-tl--hover .mmps-tl__item:hover .mmps-tl__marker {
	background: var(--tl-accent); color: #fff; border-color: var(--tl-accent);
}
@media (max-width: 767px) {
	.mmps-tl--tinted.mmps-tl--zigzag .mmps-tl__item:nth-child(odd) .mmps-tl__card,
	.mmps-tl--tinted.mmps-tl--zigzag .mmps-tl__item:nth-child(even) .mmps-tl__card { border-right: 0; border-left: 3px solid var(--tl-accent); }
}
.mmps-tl__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.mmps-tl__num {
	font-size: .72rem; font-weight: 700; letter-spacing: .16em;
	text-transform: uppercase; color: var(--mmps-royal);
}
.mmps-tl__badge {
	display: inline-block; padding: 3px 12px; border-radius: 99px;
	background: rgba(240,177,42,.18); color: #8a6210;
	font-size: .74rem; font-weight: 700;
}
.mmps-tl__card h4 { font-family: var(--font-display); color: var(--mmps-navy); font-size: 1.3rem; margin: 0 0 8px; }
.mmps-tl__card p { margin: 0; color: #4a5268; font-size: .93rem; line-height: 1.7; }
.mmps-tl__link { display: inline-block; margin-top: 12px; font-size: .85rem; font-weight: 700; color: var(--mmps-royal); text-decoration: none; }
.mmps-tl__link:hover { text-decoration: underline; }

/* Zigzag: centre line, cards alternate sides */
.mmps-tl--zigzag { max-width: 1000px; margin-inline: auto; padding: 10px 0 4px; }
.mmps-tl--zigzag::before {
	content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
	border-left: 2px var(--tl-line-style, dashed) var(--tl-line);
	transform: translateX(-1px);
}
.mmps-tl--zigzag .mmps-tl__item {
	position: relative; width: 50%;
	padding-right: calc(var(--tl-marker) / 2 + 30px);
	margin-bottom: 36px;
}
.mmps-tl--zigzag .mmps-tl__item:last-child { margin-bottom: 0; }
.mmps-tl--zigzag .mmps-tl__item:nth-child(even) {
	margin-left: 50%;
	padding-right: 0;
	padding-left: calc(var(--tl-marker) / 2 + 30px);
}
.mmps-tl--zigzag .mmps-tl__marker {
	position: absolute; top: 8px;
	right: calc(-1 * var(--tl-marker) / 2);
}
.mmps-tl--zigzag .mmps-tl__item:nth-child(even) .mmps-tl__marker {
	right: auto;
	left: calc(-1 * var(--tl-marker) / 2);
}

/* Left rail: line down the left, cards to the right */
.mmps-tl--rail { max-width: 820px; margin-inline: auto; }
.mmps-tl--rail::before {
	content: ""; position: absolute; top: 0; bottom: 0;
	left: calc(var(--tl-marker) / 2);
	border-left: 2px var(--tl-line-style, dashed) var(--tl-line);
	transform: translateX(-1px);
}
.mmps-tl--rail .mmps-tl__item { position: relative; display: flex; gap: 26px; align-items: flex-start; margin-bottom: 30px; }
.mmps-tl--rail .mmps-tl__item:last-child { margin-bottom: 0; }
.mmps-tl--rail .mmps-tl__card { flex: 1; }

/* Horizontal: markers on a top line, cards below.
   Flex + nowrap so the connector never wraps into stubs; scrolls if tight. */
.mmps-tl--horizontal { display: flex; flex-wrap: nowrap; gap: 24px; overflow-x: auto; padding-bottom: 8px; }
.mmps-tl--horizontal .mmps-tl__item { flex: 1 0 230px; min-width: 230px; }
.mmps-tl--horizontal .mmps-tl__item { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.mmps-tl--horizontal .mmps-tl__item::before {
	content: ""; position: absolute; left: -12px; right: -12px;
	top: calc(var(--tl-marker) / 2);
	border-top: 2px var(--tl-line-style, dashed) var(--tl-line);
}
.mmps-tl--horizontal .mmps-tl__item:first-child::before { left: 50%; }
.mmps-tl--horizontal .mmps-tl__item:last-child::before { right: 50%; }
.mmps-tl--horizontal .mmps-tl__marker { margin-bottom: 20px; }
.mmps-tl--horizontal .mmps-tl__meta { justify-content: center; }
.mmps-tl--horizontal .mmps-tl__card { width: 100%; }

/* No connector */
.mmps-tl--line-none::before,
.mmps-tl--line-none .mmps-tl__item::before { display: none; }

/* Collapse zigzag + horizontal to a left rail on small screens */
@media (max-width: 767px) {
	.mmps-tl--zigzag::before { left: calc(var(--tl-marker) / 2); }
	.mmps-tl--zigzag .mmps-tl__item,
	.mmps-tl--zigzag .mmps-tl__item:nth-child(even) {
		width: 100%; margin-left: 0;
		padding-left: calc(var(--tl-marker) + 20px); padding-right: 0;
	}
	.mmps-tl--zigzag .mmps-tl__marker,
	.mmps-tl--zigzag .mmps-tl__item:nth-child(even) .mmps-tl__marker { left: 0; right: auto; }
	.mmps-tl--horizontal { flex-direction: column; overflow-x: visible; }
	.mmps-tl--horizontal .mmps-tl__item { min-width: 0; }
	.mmps-tl--horizontal .mmps-tl__item::before { display: none; }
}


/* ---------------- Photo focal defaults ----------------
   Cover-cropped photos framed on the upper third so faces are not cut off. */
.mmps-split__media img,
.mmps-news__card img,
.mmps-exgal__panel img,
.mmps-story__media img,
.mmps-insta__item img,
.mmps-team__photo img { object-position: 50% 30%; }

/* ---------------- Newsletters list ---------------- */
.mmps-nl { width: 100%; }
.mmps-nl__year {
	font-family: var(--font-display); color: var(--mmps-navy); font-size: 1.35rem;
	margin: 34px 0 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(13,47,107,.12);
}
.mmps-nl__year:first-child { margin-top: 0; }
.mmps-nl__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.mmps-nl__item {
	display: flex; align-items: center; gap: 16px;
	background: #fff; border: 1px solid rgba(13,47,107,.10); border-radius: 14px;
	padding: 16px 18px;
	transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s, border-color .3s;
}
.mmps-nl__item:hover {
	transform: translateY(-3px); border-color: rgba(242,178,51,.6);
	box-shadow: 0 16px 40px rgba(13,47,107,.12);
}
.mmps-nl__icon {
	flex: 0 0 auto; width: 42px; height: 42px; border-radius: 10px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--mmps-light); color: var(--mmps-royal);
}
.mmps-nl__item:hover .mmps-nl__icon { background: var(--mmps-navy); color: var(--mmps-gold); }
.mmps-nl__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.mmps-nl__title { font-weight: 600; color: var(--mmps-navy); font-size: 1rem; }
.mmps-nl__meta { font-size: .8rem; color: #6b7280; letter-spacing: .02em; }
.mmps-nl__dl {
	flex: 0 0 auto; text-decoration: none; font-size: .8rem; font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase;
	color: var(--mmps-navy); background: var(--mmps-gold);
	padding: 10px 18px; border-radius: 999px; transition: background .25s, transform .25s;
}
.mmps-nl__dl:hover { background: #ffc14d; transform: scale(1.04); }
.mmps-nl__empty { color: #6b7280; font-style: italic; }
@media (max-width: 600px) {
	.mmps-nl__item { flex-wrap: wrap; }
	.mmps-nl__dl { width: 100%; text-align: center; }
}

/* ---------------- Support Us: how to give ---------------- */
.mmps-give {
	background: #fff; border: 1px solid rgba(13,47,107,.10); border-radius: 20px;
	padding: 34px 34px 30px; box-shadow: 0 16px 44px rgba(13,47,107,.08);
}
.mmps-give__title { font-family: var(--font-display); color: var(--mmps-navy); font-size: 1.6rem; margin: 0 0 18px; }
.mmps-give__list { margin: 0 0 20px; padding-left: 0; list-style: none; counter-reset: give; display: grid; gap: 14px; }
.mmps-give__list li {
	position: relative; padding-left: 46px; color: #4a5268; line-height: 1.7; counter-increment: give;
}
.mmps-give__list li::before {
	content: counter(give); position: absolute; left: 0; top: 1px;
	width: 30px; height: 30px; border-radius: 50%;
	background: var(--mmps-gold); color: var(--mmps-navy);
	font-family: var(--font-display); font-weight: 700; font-size: .95rem;
	display: flex; align-items: center; justify-content: center;
}
.mmps-give__list strong { color: var(--mmps-navy); }
.mmps-give__note { color: #4a5268; font-size: .95rem; margin: 0 0 22px; }
.mmps-give__actions { display: flex; gap: 14px; flex-wrap: wrap; }
