/* ============================================================================
 * THE MARK PREECE FAMILY HOUSE -- SITE STYLESHEET
 * ============================================================================
 * Homepage styles. Paste into Customizer -> Additional CSS, or enqueue.
 *
 * Brand palette (Mark Preece Family House):
 *   --mph-gold        #faa61c   PRIMARY (brand)
 *   --mph-gold-deep   #e08c10   hover/darker gold (derived)
 *   --mph-teal        #353f51   brand dark blue -- dark sections / headings
 *   --mph-teal-deep   #262f3c   darkest blue (derived) -- deep sections / shadows
 *   --mph-blue        #465daa   brand blue accent (links / highlights)
 *   --mph-blue-light  #a8b6de   brand light blue (subtle fills / borders)
 *   --mph-charcoal    #2c2c2c   body text (brand)
 *   --mph-cream       #fbf6ee   warm section backgrounds (brand)
 *   --mph-soft-white  #fafafa   soft white (brand)
 *   --mph-white       #ffffff   white
 *   NOTE: --mph-teal/-deep are kept as variable NAMES for compatibility but
 *   now hold the brand BLUES (no teal in the brand). Rename on request.
 *
 * Fonts: Poppins (headings) + Glacial Indifference (body).
 * Class prefix: mph-
 * ============================================================================ */

:root {
	--mph-gold: #faa61c;
	--mph-gold-deep: #e08c10;
	--mph-teal: #353f51;
	--mph-teal-deep: #262f3c;
	--mph-charcoal: #2c2c2c;
	--mph-cream: #fbf6ee;
	--mph-white: #ffffff;
	--mph-soft-white: #fafafa;
	--mph-blue: #465daa;
	--mph-blue-light: #a8b6de;
	--mph-muted: rgba(44, 44, 44, 0.65);
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */

.mph-btn .elementor-button,
.mph-btn a.elementor-button {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.8px;
	border-radius: 4px;
	padding: 18px 38px;
	transition: background-color 0.3s ease, color 0.3s ease,
				transform 0.2s ease, border-color 0.3s ease;
}

.mph-btn .elementor-button:hover {
	transform: translateY(-2px);
}

/* Gold (primary) */
.mph-btn-gold .elementor-button {
	background-color: var(--mph-gold);
	color: var(--mph-charcoal);
}
.mph-btn-gold .elementor-button:hover {
	background-color: var(--mph-gold-deep);
	color: var(--mph-charcoal);
}

/* Teal (secondary) */
.mph-btn-teal .elementor-button {
	background-color: var(--mph-teal);
	color: var(--mph-white);
}
.mph-btn-teal .elementor-button:hover {
	background-color: var(--mph-teal-deep);
	color: var(--mph-white);
}

/* Outline on dark backgrounds */
.mph-btn-outline-light .elementor-button {
	background-color: transparent;
	color: var(--mph-white);
	border: 2px solid rgba(255, 255, 255, 0.55);
	padding: 16px 36px;
}
.mph-btn-outline-light .elementor-button:hover {
	background-color: var(--mph-white);
	color: var(--mph-teal-deep);
	border-color: var(--mph-white);
}

/* ============================================================
   EYEBROW (section kicker)
   ============================================================ */

.mph-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}
.mph-eyebrow-wrap-center {
	display: flex;
	justify-content: center;
}
.mph-eyebrow-line {
	width: 32px;
	height: 2px;
	background: var(--mph-gold);
	display: inline-block;
}
.mph-eyebrow-text {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--mph-gold-deep);
}
.mph-eyebrow-on-dark .mph-eyebrow-text {
	color: var(--mph-gold);
}

/* ============================================================
   SECTION 1 -- HERO
   ============================================================ */

.mph-hero {
	position: relative;
}
.mph-hero-title .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-hero-sub p {
	margin: 0;
}
.mph-hero-btn-row {
	margin-top: 4px;
}

/* ============================================================
   SECTION 2 -- MISSION
   ============================================================ */

.mph-mission-img img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 24px 60px rgba(38, 47, 60, 0.16);
}
.mph-mission-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-mission-body p {
	margin: 0 0 16px 0;
}
.mph-mission-body p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1023px) {
	.mph-mission-row {
		flex-direction: column !important;
	}
	.mph-mission-col {
		width: 100% !important;
		flex-basis: 100% !important;
		padding-right: 0 !important;
	}
}

/* ============================================================
   SECTION 3 -- THREE PATHWAYS
   ============================================================ */

.mph-pathways-grid {
	width: 100%;
	gap: 28px 2%;
}
.mph-pathways-grid > .mph-path-card {
	width: 32% !important;
	flex-basis: 32% !important;
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	max-width: 32% !important;
	margin: 0 !important;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	min-height: 420px;
	display: flex;
	box-shadow: 0 14px 40px rgba(38, 47, 60, 0.12);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
				box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mph-pathways-grid > .mph-path-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 60px rgba(38, 47, 60, 0.22);
}

/* The photo fills the whole card; body overlays the bottom with a gradient */
.mph-path-card-photo-wrap {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.mph-path-card-photo-wrap .mph-path-card-img,
.mph-path-card-photo-wrap .mph-path-card-img img {
	width: 100%;
	height: 100%;
	display: block;
}
.mph-path-card-photo-wrap .mph-path-card-img img {
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mph-path-card:hover .mph-path-card-img img {
	transform: scale(1.05);
}

.mph-path-card-body {
	position: relative;
	z-index: 2;
	margin-top: auto;
	width: 100%;
	background: linear-gradient(to top,
		rgba(38, 47, 60, 0.92) 0%,
		rgba(38, 47, 60, 0.78) 55%,
		rgba(38, 47, 60, 0) 100%);
}
.mph-path-card-title .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-path-card-desc p {
	margin: 0;
}

.mph-path-card-link-wrap .mph-path-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--mph-gold);
	text-decoration: none;
	transition: color 0.2s ease;
}
.mph-path-card-link-wrap .mph-path-card-link:hover {
	color: var(--mph-white);
}
.mph-path-card-link-arrow {
	display: inline-block;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mph-path-card-link:hover .mph-path-card-link-arrow {
	transform: translateX(4px);
}

@media (max-width: 1023px) {
	.mph-pathways-grid > .mph-path-card {
		width: 100% !important;
		flex-basis: 100% !important;
		max-width: 100% !important;
		margin-bottom: 24px !important;
		min-height: 360px;
	}
}

/* ============================================================
   SECTION 4 -- IMPACT STATS
   ============================================================ */

.mph-impact-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-impact-sub p {
	margin: 0;
}
.mph-impact-grid {
	width: 100%;
	gap: 24px 2%;
}
.mph-stat-card {
	width: 23% !important;
	flex-basis: 23% !important;
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	max-width: 23% !important;
	margin: 0 !important;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.mph-stat-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(250, 166, 28, 0.5);
}
.mph-stat-icon-wrap {
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: rgba(250, 166, 28, 0.14);
	display: flex;
	align-items: center;
	justify-content: center;
}
.mph-stat-icon-wrap .mph-stat-icon {
	margin: 0;
}
.mph-stat-num .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-stat-label p {
	margin: 0;
	font-family: "Glacial Indifference", sans-serif;
}

@media (max-width: 1023px) {
	.mph-stat-card {
		width: 48% !important;
		flex-basis: 48% !important;
		max-width: 48% !important;
		margin-bottom: 22px !important;
	}
}
@media (max-width: 600px) {
	.mph-impact-grid {
		flex-direction: column !important;
	}
	.mph-stat-card {
		width: 100% !important;
		flex-basis: 100% !important;
		max-width: 100% !important;
	}
}

/* ============================================================
   SECTION 4b -- QUICK LINKS (five smaller links)
   ============================================================ */

.mph-ql-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-ql-grid {
	width: 100%;
	gap: 18px 2%;
}
.mph-ql-card {
	width: 18% !important;
	flex-basis: 18% !important;
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	max-width: 18% !important;
	margin: 0 !important;
	background: var(--mph-white);
	border: 1px solid rgba(38, 47, 60, 0.1);
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(38, 47, 60, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.mph-ql-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(38, 47, 60, 0.12);
	border-color: rgba(250, 166, 28, 0.55);
}
.mph-ql-icon-wrap {
	width: 54px;
	height: 54px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: rgba(53, 63, 81, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.25s ease;
}
.mph-ql-card:hover .mph-ql-icon-wrap {
	background: rgba(250, 166, 28, 0.16);
}
.mph-ql-icon-wrap .mph-ql-icon {
	margin: 0;
}
.mph-ql-link .elementor-button {
	background: transparent;
	padding: 0;
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--mph-teal);
	letter-spacing: 0;
}
.mph-ql-link .elementor-button:hover {
	color: var(--mph-gold-deep);
	background: transparent;
}

@media (max-width: 1023px) {
	.mph-ql-card {
		width: 31% !important;
		flex-basis: 31% !important;
		max-width: 31% !important;
		margin-bottom: 18px !important;
	}
}
@media (max-width: 600px) {
	.mph-ql-grid {
		flex-direction: column !important;
	}
	.mph-ql-card {
		width: 100% !important;
		flex-basis: 100% !important;
		max-width: 100% !important;
	}
}

/* ============================================================
   SECTION 5 -- STORIES
   ============================================================ */

.mph-stories-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-stories-grid {
	width: 100%;
	gap: 30px 2%;
}
.mph-stories-grid > .mph-story-card {
	width: 32% !important;
	flex-basis: 32% !important;
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	max-width: 32% !important;
	margin: 0 !important;
	background: var(--mph-white);
	border: 1px solid rgba(38, 47, 60, 0.08);
	border-radius: 6px;
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
				box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mph-stories-grid > .mph-story-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 50px rgba(38, 47, 60, 0.14);
}
.mph-story-card-photo-wrap {
	position: relative;
	overflow: hidden;
	line-height: 0;
}
.mph-story-card-photo-wrap .mph-story-card-img img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 20 / 13;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mph-story-card:hover .mph-story-card-img img {
	transform: scale(1.05);
}
.mph-story-card-badge-wrap {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	line-height: normal;
}
.mph-story-card-badge {
	display: inline-block;
	background: var(--mph-teal-deep);
	color: var(--mph-white);
	font-family: "Glacial Indifference", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 6px 13px;
	border-radius: 3px;
	line-height: 1.3;
}
.mph-story-card-title .elementor-heading-title {
	font-family: "Poppins", sans-serif;
	transition: color 0.25s ease;
}
.mph-story-card:hover .mph-story-card-title .elementor-heading-title {
	color: var(--mph-gold-deep);
}
.mph-story-card-excerpt p {
	margin: 0;
}
.mph-story-card-link-wrap .mph-story-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--mph-teal);
	text-decoration: none;
	transition: color 0.2s ease;
}
.mph-story-card-link-wrap .mph-story-card-link:hover {
	color: var(--mph-gold-deep);
}
.mph-story-card-link-arrow {
	display: inline-block;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mph-story-card-link:hover .mph-story-card-link-arrow {
	transform: translateX(4px);
}

@media (max-width: 1023px) {
	.mph-stories-grid > .mph-story-card {
		width: 100% !important;
		flex-basis: 100% !important;
		max-width: 100% !important;
		margin-bottom: 28px !important;
	}
}

/* ============================================================
   SECTION 6 -- SUPPORTERS
   ============================================================ */

.mph-supporters-heading .elementor-heading-title {
	font-family: "Glacial Indifference", sans-serif;
	text-transform: uppercase;
}
.mph-supporters-logos-wrap {
	width: 100%;
}
.mph-supporters-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
}
.mph-supporters-logo img {
	display: block;
	max-height: 64px;
	width: auto;
	opacity: 0.7;
	filter: grayscale(100%);
	transition: opacity 0.3s ease, filter 0.3s ease;
}
.mph-supporters-logo img:hover {
	opacity: 1;
	filter: grayscale(0%);
}

/* ============================================================
   SECTION 7 -- FINAL CTA
   ============================================================ */

.mph-cta {
	position: relative;
}
.mph-cta-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-cta-sub p {
	margin: 0;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
	.mph-btn .elementor-button,
	.mph-path-card,
	.mph-path-card-img img,
	.mph-story-card,
	.mph-story-card-img img,
	.mph-supporters-logo img,
	.mph-path-card-link-arrow,
	.mph-story-card-link-arrow {
		transition-duration: 0.01ms !important;
	}
	.mph-path-card:hover,
	.mph-story-card:hover,
	.mph-btn .elementor-button:hover {
		transform: none !important;
	}
}


/* ============================================================================
 * FOOTER
 * ============================================================================
 * RMH-style footer: newsletter band, main link columns + contact, land
 * acknowledgement, bottom legal bar. Class prefix mph-foot-.
 * ============================================================================ */

/* ============================================================
   1. Newsletter band
   ============================================================ */

.mph-foot-news-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-foot-news-sub p {
	margin: 0;
}
.mph-foot-news-form-slot-wrap {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
}
.mph-foot-news-form-slot {
	border: 2px dashed rgba(255, 255, 255, 0.4);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.06);
	padding: 32px 26px;
	text-align: center;
}
.mph-foot-news-form-slot-tag {
	display: inline-block;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--mph-gold);
	background: rgba(250, 166, 28, 0.14);
	padding: 5px 12px;
	border-radius: 100px;
	margin-bottom: 12px;
}
.mph-foot-news-form-slot p {
	margin: 0;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   2. Main footer (logo + contact + link columns)
   ============================================================ */

.mph-foot-main-row {
	width: 100%;
	gap: 32px 2%;
}

/* Contact column (logo + address + social) */
.mph-foot-col-contact {
	width: 28% !important;
	flex-basis: 28% !important;
}
.mph-foot-logo img {
	display: block;
	max-width: 220px;
	width: 100%;
	height: auto;
}
/* Force the logo to solid white regardless of its source colors.
   brightness(0) crushes it to black, invert(1) flips that to white. */
.mph-foot-logo-white img {
	filter: brightness(0) invert(1);
}
.mph-foot-contact-wrap .mph-foot-contact-line {
	margin: 0 0 10px 0;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14.5px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.75);
}
.mph-foot-contact-wrap .mph-foot-contact-line strong {
	color: var(--mph-white);
	font-weight: 700;
}
.mph-foot-contact-wrap .mph-foot-contact-line a {
	color: var(--mph-gold);
	text-decoration: none;
	transition: color 0.2s ease;
}
.mph-foot-contact-wrap .mph-foot-contact-line a:hover {
	color: var(--mph-gold-deep);
}

/* Social icons */
.mph-foot-social {
	display: flex;
	gap: 12px;
	margin-top: 18px;
}
.mph-foot-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--mph-white);
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.mph-foot-social a:hover {
	background: var(--mph-gold);
	color: var(--mph-charcoal);
	transform: translateY(-2px);
}

/* Link columns */
.mph-foot-col-links {
	width: 18% !important;
	flex-basis: 18% !important;
}
.mph-foot-col-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
}
.mph-foot-link-list-wrap .mph-foot-link-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mph-foot-link-list-wrap .mph-foot-link-list li {
	margin-bottom: 11px;
}
.mph-foot-link-list-wrap .mph-foot-link-list a {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	transition: color 0.2s ease, padding-left 0.2s ease;
}
.mph-foot-link-list-wrap .mph-foot-link-list a:hover {
	color: var(--mph-gold);
	padding-left: 4px;
}

@media (max-width: 1023px) {
	.mph-foot-col-contact {
		width: 100% !important;
		flex-basis: 100% !important;
		margin-bottom: 36px;
	}
	.mph-foot-col-links {
		width: 46% !important;
		flex-basis: 46% !important;
		margin-bottom: 28px;
	}
}

@media (max-width: 600px) {
	.mph-foot-col-links {
		width: 100% !important;
		flex-basis: 100% !important;
	}
}

/* ============================================================
   3. Land acknowledgement
   ============================================================ */

.mph-foot-land-body p {
	margin: 0 0 10px 0;
	text-align: center;
}
.mph-foot-land-body p:first-child {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}
.mph-foot-land-body p:last-child {
	margin-bottom: 0;
}

/* ============================================================
   4. Bottom bar
   ============================================================ */

.mph-foot-bottom-row {
	width: 100%;
}
.mph-foot-legal-wrap .mph-foot-legal p {
	margin: 0;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 12.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.5);
}
.mph-foot-bottom-links-wrap .mph-foot-bottom-links {
	display: flex;
	gap: 22px;
}
.mph-foot-bottom-links-wrap .mph-foot-bottom-links a {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.2s ease;
}
.mph-foot-bottom-links-wrap .mph-foot-bottom-links a:hover {
	color: var(--mph-gold);
}

@media (max-width: 600px) {
	.mph-foot-bottom-row {
		flex-direction: column !important;
		gap: 14px;
		text-align: center;
	}
	.mph-foot-legal-wrap .mph-foot-legal p {
		text-align: center;
	}
}

/* Reduced motion (footer) */
@media (prefers-reduced-motion: reduce) {
	.mph-foot-social a,
	.mph-foot-link-list a {
		transition-duration: 0.01ms !important;
	}
	.mph-foot-social a:hover {
		transform: none !important;
	}
}


/* ============================================================================
 * INTERIOR HERO (reusable across all interior pages)
 * ============================================================================
 * Used by every interior page via the interior_hero() helper. ~44vh,
 * dark teal overlay on a background image, eyebrow + title + optional
 * subtitle + breadcrumb. Class prefix mph-interior-hero-.
 * ============================================================================ */

.mph-interior-hero {
	position: relative;
}
.mph-interior-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.mph-interior-hero-eyebrow-line {
	width: 32px;
	height: 2px;
	background: var(--mph-gold);
	display: inline-block;
}
.mph-interior-hero-eyebrow-text {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--mph-gold);
}
.mph-interior-hero-title .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-interior-hero-subtitle p {
	margin: 0;
}
.mph-interior-hero-crumbs {
	margin-top: 22px;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
}
.mph-interior-hero-crumbs a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.2s ease;
}
.mph-interior-hero-crumbs a:hover {
	color: var(--mph-gold);
}
.mph-interior-hero-crumbs-sep {
	margin: 0 10px;
	color: rgba(255, 255, 255, 0.4);
}
.mph-interior-hero-crumbs-current {
	color: var(--mph-white);
}

/* ----------------------------------------------------------------------------
 * Yoast SEO breadcrumb shortcode -- matched to the old breadcrumb look.
 * Yoast markup: .elementor-shortcode wraps nested spans with anchor links,
 * a plain-text separator between items, and a breadcrumb_last span for the
 * current page. The separators are text nodes (not elements), so we tone down
 * the wrapper color and brighten the links / current page.
 *
 * Scoped to the interior hero (dark teal bg) to mirror the old placement, with
 * a light-background fallback below for the shortcode used elsewhere.
 * -------------------------------------------------------------------------- */
.mph-interior-hero .elementor-shortcode {
	margin-top: 22px;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14px;
	line-height: 1.5;
	word-spacing: 5px;                 /* widens the separators toward the old gaps */
	color: rgba(255, 255, 255, 0.4);   /* the separators inherit this */
}
.mph-interior-hero .elementor-shortcode a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.2s ease;
}
.mph-interior-hero .elementor-shortcode a:hover {
	color: var(--mph-gold);
}
.mph-interior-hero .elementor-shortcode .breadcrumb_last {
	color: var(--mph-white);
}

/* Light-background fallback (Yoast breadcrumb placed outside the dark hero) */
.mph-breadcrumbs .elementor-shortcode,
.elementor-widget-shortcode:not(.mph-interior-hero *) > .elementor-widget-container > .elementor-shortcode {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(44, 44, 44, 0.4);
}
.mph-breadcrumbs .elementor-shortcode a {
	color: rgba(44, 44, 44, 0.65);
	text-decoration: none;
	transition: color 0.2s ease;
}
.mph-breadcrumbs .elementor-shortcode a:hover {
	color: var(--mph-gold-deep);
}
.mph-breadcrumbs .elementor-shortcode .breadcrumb_last {
	color: var(--mph-charcoal);
}

/* ============================================================================
 * ABOUT US PAGE
 * ============================================================================ */

/* ---- Shared: image columns ---- */
.mph-about-preece-img img,
.mph-about-story-img img,
.mph-about-house-img img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 22px 55px rgba(38, 47, 60, 0.16);
}

/* ---- Shared: body text ---- */
.mph-about-preece-body p,
.mph-about-story-body p,
.mph-about-house-body p {
	margin: 0 0 16px 0;
}
.mph-about-preece-body p:last-child,
.mph-about-story-body p:last-child,
.mph-about-house-body p:last-child {
	margin-bottom: 0;
}
.mph-about-preece-heading .elementor-heading-title,
.mph-about-story-heading .elementor-heading-title,
.mph-about-house-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}

/* ---- Responsive: stack two-column rows ---- */
@media (max-width: 1023px) {
	.mph-about-preece-row,
	.mph-about-story-row,
	.mph-about-house-row {
		flex-direction: column !important;
	}
	.mph-about-preece-col,
	.mph-about-story-col,
	.mph-about-house-col {
		width: 100% !important;
		flex-basis: 100% !important;
		padding-right: 0 !important;
	}
}

/* ---- Our House stats ---- */
.mph-about-house-stats-wrap .mph-about-house-stats {
	display: flex;
	align-items: stretch;
	gap: 26px;
	padding: 24px 28px;
	background: var(--mph-cream);
	border-left: 3px solid var(--mph-gold);
	border-radius: 0 6px 6px 0;
}
.mph-about-house-stats-wrap .mph-about-house-stat {
	flex: 1;
}
.mph-about-house-stats-wrap .mph-about-house-stat-num {
	font-family: "Poppins", sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -1px;
	color: var(--mph-teal);
}
.mph-about-house-stats-wrap .mph-about-house-stat-label {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(44, 44, 44, 0.7);
	margin-top: 8px;
}
.mph-about-house-stats-wrap .mph-about-house-stat-divider {
	width: 1px;
	background: rgba(44, 44, 44, 0.12);
}

@media (max-width: 480px) {
	.mph-about-house-stats-wrap .mph-about-house-stats {
		flex-direction: column;
		gap: 18px;
	}
	.mph-about-house-stats-wrap .mph-about-house-stat-divider {
		width: 100%;
		height: 1px;
	}
}

/* ---- Mission band ---- */
.mph-about-mission {
	position: relative;
}
.mph-about-mission-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}

/* ---- The Organization ---- */
.mph-about-org-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-about-org-intro p {
	margin: 0;
}
.mph-about-org-row {
	width: 100%;
	margin-bottom: 48px;
}
.mph-about-org-col {
	width: 48% !important;
	flex-basis: 48% !important;
}
.mph-about-org-col-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--mph-gold);
	display: inline-block;
}

/* Sub-headings (group labels: Co-ordinators, Directors, Housekeeping) */
.mph-about-org-subheading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
}
.mph-about-org-col > .mph-about-org-subheading {
	margin-top: 24px;
}

/* Icon List (staff / board names) -- native widget, styled via its
   internal Elementor classes so the editor edits content in the panel */
.mph-about-org-list .elementor-icon-list-items {
	margin: 0;
	padding: 0;
}
.mph-about-org-list .elementor-icon-list-item {
	margin-bottom: 0;
}
.mph-about-org-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(44, 44, 44, 0.82);
}
.mph-about-org-list .elementor-icon-list-icon {
	padding-top: 3px;
}

/* Docs block (policies + reports) -- white card wrapping two Icon Lists */
.mph-about-org-docs-outer {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.mph-about-org-docs {
	width: 100%;
	gap: 40px 5%;
	background: var(--mph-white);
	border: 1px solid rgba(38, 47, 60, 0.1);
	border-radius: 8px;
	padding: 36px 40px;
}
.mph-about-org-docs-group {
	width: 46% !important;
	flex-basis: 46% !important;
}
.mph-about-org-docs-title .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}

/* Docs Icon List -- items are links */
.mph-about-org-docs-list .elementor-icon-list-items {
	margin: 0;
	padding: 0;
}
.mph-about-org-docs-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 15px;
	color: var(--mph-teal);
	transition: color 0.2s ease;
}
.mph-about-org-docs-list .elementor-icon-list-item:hover .elementor-icon-list-text {
	color: var(--mph-gold-deep);
}
.mph-about-org-docs-list .elementor-icon-list-icon {
	padding-top: 2px;
}

@media (max-width: 1023px) {
	.mph-about-org-row {
		flex-direction: column !important;
	}
	.mph-about-org-col {
		width: 100% !important;
		flex-basis: 100% !important;
		margin-bottom: 36px;
	}
	.mph-about-org-col:last-child {
		margin-bottom: 0;
	}
	.mph-about-org-docs {
		flex-direction: column !important;
	}
	.mph-about-org-docs-group {
		width: 100% !important;
		flex-basis: 100% !important;
		margin-bottom: 28px;
	}
	.mph-about-org-docs-group:last-child {
		margin-bottom: 0;
	}
}


/* ============================================================================
 * STAY WITH US / OUR SERVICES PAGE
 * ============================================================================ */

/* ---- Intro ---- */
.mph-serv-intro-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-serv-intro-body p {
	margin: 0 0 16px 0;
}
.mph-serv-intro-body p:last-child {
	margin-bottom: 0;
}

/* ---- Location + amenities ---- */
.mph-serv-loc-img img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 22px 55px rgba(38, 47, 60, 0.16);
}
.mph-serv-loc-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-serv-loc-body p {
	margin: 0;
}
.mph-serv-amenities-row {
	width: 100%;
	gap: 0 4%;
}
.mph-serv-amenities-col {
	width: 48% !important;
	flex-basis: 48% !important;
}
/* Amenity icon lists -- check icons, comfortable row spacing */
.mph-serv-amenities-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 15px;
	line-height: 1.45;
	color: rgba(44, 44, 44, 0.82);
}
.mph-serv-amenities-list .elementor-icon-list-icon {
	padding-top: 3px;
}

@media (max-width: 1023px) {
	.mph-serv-loc-row {
		flex-direction: column !important;
	}
	.mph-serv-loc-col {
		width: 100% !important;
		flex-basis: 100% !important;
		padding-right: 0 !important;
	}
}
@media (max-width: 600px) {
	.mph-serv-amenities-row {
		flex-direction: column !important;
	}
	.mph-serv-amenities-col {
		width: 100% !important;
		flex-basis: 100% !important;
	}
}

/* ---- How it works -- info cards ---- */
.mph-serv-process-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-serv-process-intro p {
	margin: 0;
}
.mph-serv-info-row {
	width: 100%;
	gap: 26px 2%;
}
.mph-serv-info-card {
	width: 31% !important;
	flex-basis: 31% !important;
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	max-width: 31% !important;
	margin: 0 !important;
	background: var(--mph-cream);
	border: 1px solid rgba(38, 47, 60, 0.1);
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(38, 47, 60, 0.07);
}
.mph-serv-info-icon-wrap .mph-serv-info-icon .elementor-icon {
	color: var(--mph-gold);
}
.mph-serv-info-title .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-serv-info-body p {
	margin: 0;
	font-family: "Glacial Indifference", sans-serif;
}
.mph-serv-info-body a {
	color: var(--mph-teal);
	font-weight: 700;
	text-decoration: none;
}
.mph-serv-info-body a:hover {
	color: var(--mph-gold-deep);
}
.mph-serv-info-body strong {
	color: var(--mph-teal);
}
.mph-serv-info-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14.5px;
	line-height: 1.45;
	color: rgba(44, 44, 44, 0.78);
}
.mph-serv-info-list .elementor-icon-list-icon {
	padding-top: 3px;
}

@media (max-width: 1023px) {
	.mph-serv-info-row {
		flex-direction: column !important;
	}
	.mph-serv-info-card {
		width: 100% !important;
		flex-basis: 100% !important;
		max-width: 100% !important;
		margin-bottom: 22px !important;
	}
}

/* ---- Urgent / visitor notes (dark band) ---- */
.mph-serv-notes-row {
	width: 100%;
	gap: 0 4%;
}
.mph-serv-note-card {
	width: 48% !important;
	flex-basis: 48% !important;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
}
.mph-serv-note-icon-wrap .mph-serv-note-icon .elementor-icon {
	color: var(--mph-gold);
}
.mph-serv-note-title .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-serv-note-body p {
	margin: 0;
	font-family: "Glacial Indifference", sans-serif;
}
.mph-serv-note-body a {
	color: var(--mph-gold);
	font-weight: 700;
	text-decoration: none;
}
.mph-serv-note-body a:hover {
	color: var(--mph-white);
}

@media (max-width: 600px) {
	.mph-serv-notes-row {
		flex-direction: column !important;
	}
	.mph-serv-note-card {
		width: 100% !important;
		flex-basis: 100% !important;
		margin-bottom: 18px;
	}
	.mph-serv-note-card:last-child {
		margin-bottom: 0;
	}
}

/* ---- CTA ---- */
.mph-serv-cta {
	position: relative;
}
.mph-serv-cta-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-serv-cta-sub p {
	margin: 0;
}


/* ============================================================================
 * GUEST GUIDELINES PAGE
 * ============================================================================
 * 5 category accordions. Styles the classic Elementor Accordion widget via
 * its internal classes so the brand look applies without touching the
 * editable content.
 * ============================================================================ */

.mph-guide-intro-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-guide-intro p {
	margin: 0;
}

/* Category block */
.mph-guide-cat {
	width: 100%;
}
.mph-guide-cat-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--mph-gold);
	display: inline-block;
}

/* ---- Classic Accordion styling ---- */
.mph-guide-accordion .elementor-accordion {
	border: 0;
}
.mph-guide-accordion .elementor-accordion-item {
	border: 1px solid rgba(38, 47, 60, 0.12);
	border-radius: 6px;
	margin-bottom: 12px;
	overflow: hidden;
	background: var(--mph-white);
	transition: box-shadow 0.25s ease;
}
.mph-guide-accordion .elementor-accordion-item:hover {
	box-shadow: 0 8px 24px rgba(38, 47, 60, 0.08);
}

/* Title row */
.mph-guide-accordion .elementor-tab-title {
	border: 0 !important;
	padding: 18px 22px;
	background: var(--mph-white);
	transition: background-color 0.2s ease, color 0.2s ease;
}
.mph-guide-accordion .elementor-tab-title.elementor-active {
	background: var(--mph-cream);
}
.mph-guide-accordion .elementor-tab-title a,
.mph-guide-accordion .elementor-tab-title .elementor-accordion-title {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--mph-teal);
	letter-spacing: -0.2px;
}
.mph-guide-accordion .elementor-tab-title.elementor-active a,
.mph-guide-accordion .elementor-tab-title.elementor-active .elementor-accordion-title {
	color: var(--mph-teal-deep);
}

/* Accordion icon (plus/minus) -- target the inner i/svg so color + size
   actually apply (the wrapper alone doesn't carry the glyph color/size) */
.mph-guide-accordion .elementor-accordion-icon {
	color: var(--mph-gold);
	width: auto;
	font-size: 15px;
}
.mph-guide-accordion .elementor-accordion-icon i,
.mph-guide-accordion .elementor-accordion-icon svg {
	color: var(--mph-gold);
	fill: var(--mph-gold);
	font-size: 15px;
	width: 15px;
	height: 15px;
}
.mph-guide-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon,
.mph-guide-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon i,
.mph-guide-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon svg {
	color: var(--mph-gold-deep);
	fill: var(--mph-gold-deep);
}

/* Content panel */
.mph-guide-accordion .elementor-tab-content {
	border: 0 !important;
	padding: 4px 22px 22px;
	background: var(--mph-cream);
	font-family: "Glacial Indifference", sans-serif;
}
.mph-guide-accordion .elementor-tab-content p {
	margin: 0 0 12px 0;
	font-size: 15.5px;
	line-height: 1.7;
	color: rgba(44, 44, 44, 0.82);
}
.mph-guide-accordion .elementor-tab-content p:last-child {
	margin-bottom: 0;
}
.mph-guide-accordion .elementor-tab-content strong {
	color: var(--mph-teal);
	font-weight: 700;
}

/* ---- CTA ---- */
.mph-guide-cta {
	position: relative;
}
.mph-guide-cta-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-guide-cta-sub p {
	margin: 0;
}


/* ============================================================================
 * GUEST REFERRAL FORM PAGE
 * ============================================================================
 * Notes + an iframe embed of the externally-hosted Housemate form, with a
 * fallback button if framing is blocked.
 * ============================================================================ */

.mph-ref-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}

/* Notes card */
.mph-ref-notes-card {
	width: 100%;
	max-width: 760px;
	background: var(--mph-cream);
	border: 1px solid rgba(38, 47, 60, 0.12);
	border-left: 3px solid var(--mph-gold);
	border-radius: 0 6px 6px 0;
}
.mph-ref-notes-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(44, 44, 44, 0.82);
}
.mph-ref-notes-list .elementor-icon-list-icon {
	padding-top: 3px;
}

.mph-ref-phone p {
	margin: 0;
}
.mph-ref-phone a {
	color: var(--mph-teal);
	font-weight: 700;
	text-decoration: none;
}
.mph-ref-phone a:hover {
	color: var(--mph-gold-deep);
}

/* iframe embed */
.mph-ref-iframe-outer {
	width: 100%;
}
.mph-ref-iframe-wrap {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	background: var(--mph-white);
	border: 1px solid rgba(38, 47, 60, 0.12);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(38, 47, 60, 0.1);
}
.mph-ref-iframe {
	display: block;
	width: 100%;
	min-height: 900px;
	border: 0;
}

@media (max-width: 768px) {
	.mph-ref-iframe {
		min-height: 1100px;
	}
}

/* Fallback button area */
.mph-ref-fallback-note p {
	margin: 0;
}
.mph-ref-cta {
	position: relative;
}
.mph-ref-cta-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-ref-cta-sub p {
	margin: 0;
}


/* ============================================================================
 * WISH LIST PAGE (Ways to Give)
 * ============================================================================ */

/* New button variant: outline teal (for light backgrounds) */
.mph-btn-outline-teal .elementor-button {
	background-color: transparent;
	color: var(--mph-teal);
	border: 2px solid var(--mph-teal);
	padding: 16px 36px;
}
.mph-btn-outline-teal .elementor-button:hover {
	background-color: var(--mph-teal);
	color: var(--mph-white);
	border-color: var(--mph-teal);
}

/* ---- Intro (image + text) ---- */
.mph-wish-intro-img img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 22px 55px rgba(38, 47, 60, 0.16);
}
.mph-wish-intro-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-wish-intro-body p {
	margin: 0 0 16px 0;
}
.mph-wish-intro-body p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1023px) {
	.mph-wish-intro-row {
		flex-direction: column !important;
	}
	.mph-wish-intro-col {
		width: 100% !important;
		flex-basis: 100% !important;
		padding-right: 0 !important;
	}
}

/* ---- Items grid (category cards with icon lists) ---- */
.mph-wish-items-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-wish-items-intro p {
	margin: 0;
}
.mph-wish-items-grid {
	width: 100%;
	gap: 26px 2%;
}
.mph-wish-cat-card {
	width: 31% !important;
	flex-basis: 31% !important;
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	max-width: 31% !important;
	margin: 0 !important;
	background: var(--mph-white);
	border: 1px solid rgba(38, 47, 60, 0.1);
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(38, 47, 60, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mph-wish-cat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 45px rgba(38, 47, 60, 0.13);
}
.mph-wish-cat-icon-wrap .mph-wish-cat-icon .elementor-icon {
	color: var(--mph-gold);
}
.mph-wish-cat-title .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-wish-cat-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14.5px;
	line-height: 1.45;
	color: rgba(44, 44, 44, 0.8);
}
.mph-wish-cat-list .elementor-icon-list-icon {
	padding-top: 3px;
}

@media (max-width: 1023px) {
	.mph-wish-cat-card {
		width: 48% !important;
		flex-basis: 48% !important;
		max-width: 48% !important;
		margin-bottom: 22px !important;
	}
}
@media (max-width: 600px) {
	.mph-wish-items-grid {
		flex-direction: column !important;
	}
	.mph-wish-cat-card {
		width: 100% !important;
		flex-basis: 100% !important;
		max-width: 100% !important;
	}
}

/* ---- How to give (two cards) ---- */
.mph-wish-how-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-wish-how-row {
	width: 100%;
	gap: 0 4%;
}
.mph-wish-how-card {
	width: 48% !important;
	flex-basis: 48% !important;
	background: var(--mph-cream);
	border: 1px solid rgba(38, 47, 60, 0.1);
	border-radius: 8px;
}
.mph-wish-how-icon-wrap .mph-wish-how-icon .elementor-icon {
	color: var(--mph-gold);
}
.mph-wish-how-title .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-wish-how-body p {
	margin: 0;
	font-family: "Glacial Indifference", sans-serif;
}
.mph-wish-how-body a {
	color: var(--mph-teal);
	font-weight: 700;
	text-decoration: none;
}
.mph-wish-how-body a:hover {
	color: var(--mph-gold-deep);
}

@media (max-width: 600px) {
	.mph-wish-how-row {
		flex-direction: column !important;
	}
	.mph-wish-how-card {
		width: 100% !important;
		flex-basis: 100% !important;
		margin-bottom: 18px;
	}
	.mph-wish-how-card:last-child {
		margin-bottom: 0;
	}
}

/* ---- CTA ---- */
.mph-wish-cta {
	position: relative;
}
.mph-wish-cta-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-wish-cta-sub p {
	margin: 0;
}


/* ============================================================================
 * ADOPT-A-DAY PAGE (Ways to Give)
 * ============================================================================ */

/* ---- Intro (image + text) ---- */
.mph-aad-intro-img img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 22px 55px rgba(38, 47, 60, 0.16);
}
.mph-aad-intro-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-aad-intro-body p {
	margin: 0 0 16px 0;
}
.mph-aad-intro-body p:last-child {
	margin-bottom: 0;
}
.mph-aad-intro-body strong {
	color: var(--mph-teal);
	font-weight: 700;
}

@media (max-width: 1023px) {
	.mph-aad-intro-row {
		flex-direction: column !important;
	}
	.mph-aad-intro-col {
		width: 100% !important;
		flex-basis: 100% !important;
		padding-right: 0 !important;
	}
}

/* ---- Recognition cards ---- */
.mph-aad-rec-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-aad-rec-intro p {
	margin: 0;
}
.mph-aad-rec-grid {
	width: 100%;
	gap: 24px 2%;
}
.mph-aad-rec-card {
	width: 23% !important;
	flex-basis: 23% !important;
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	max-width: 23% !important;
	margin: 0 !important;
	background: var(--mph-white);
	border: 1px solid rgba(38, 47, 60, 0.1);
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(38, 47, 60, 0.07);
}
.mph-aad-rec-icon-wrap {
	width: 100%;
}
.mph-aad-rec-icon-wrap .mph-aad-rec-icon .elementor-icon {
	color: var(--mph-gold);
}
.mph-aad-rec-icon-wrap .mph-aad-rec-icon {
	text-align: center;
}
.mph-aad-rec-title .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-aad-rec-desc p {
	margin: 0;
}

@media (max-width: 1023px) {
	.mph-aad-rec-card {
		width: 48% !important;
		flex-basis: 48% !important;
		max-width: 48% !important;
		margin-bottom: 20px !important;
	}
}
@media (max-width: 600px) {
	.mph-aad-rec-grid {
		flex-direction: column !important;
	}
	.mph-aad-rec-card {
		width: 100% !important;
		flex-basis: 100% !important;
		max-width: 100% !important;
	}
}

/* ---- Form section ---- */
.mph-aad-form-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-aad-form-intro p {
	margin: 0;
}
.mph-aad-form-intro a {
	color: var(--mph-teal);
	font-weight: 700;
	text-decoration: none;
}
.mph-aad-form-intro a:hover {
	color: var(--mph-gold-deep);
}
.mph-aad-form-slot-wrap {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}
.mph-aad-form-slot {
	border: 2px dashed rgba(53, 63, 81, 0.35);
	border-radius: 8px;
	background: var(--mph-cream);
	padding: 44px 32px;
	text-align: center;
}
.mph-aad-form-slot-tag {
	display: inline-block;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--mph-teal);
	background: rgba(53, 63, 81, 0.1);
	padding: 5px 12px;
	border-radius: 100px;
	margin-bottom: 12px;
}
.mph-aad-form-slot p {
	margin: 0;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14px;
	color: var(--mph-muted);
}

/* ---- CTA ---- */
.mph-aad-cta {
	position: relative;
}
.mph-aad-cta-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-aad-cta-sub p {
	margin: 0;
}


/* ============================================================================
 * HOST A FUNDRAISER PAGE (Ways to Give)
 * ============================================================================ */

/* ---- Intro (image + text) ---- */
.mph-fund-intro-img img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 22px 55px rgba(38, 47, 60, 0.16);
}
.mph-fund-intro-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-fund-intro-body p {
	margin: 0 0 16px 0;
}
.mph-fund-intro-body p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1023px) {
	.mph-fund-intro-row {
		flex-direction: column !important;
	}
	.mph-fund-intro-col {
		width: 100% !important;
		flex-basis: 100% !important;
		padding-right: 0 !important;
	}
}

/* ---- Steps (container card wrapping a Pro icon box) ---- */
.mph-fund-steps-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-fund-steps-grid {
	width: 100%;
	gap: 26px 2%;
}
.mph-fund-step {
	width: 32% !important;
	flex-basis: 32% !important;
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	max-width: 32% !important;
	margin: 0 !important;
	background: var(--mph-white);
	border: 1px solid rgba(38, 47, 60, 0.1);
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(38, 47, 60, 0.07);
}
.mph-fund-step-box .elementor-icon-box-icon {
	margin-bottom: 16px;
}
.mph-fund-step-box .elementor-icon-box-icon i,
.mph-fund-step-box .elementor-icon-box-icon svg {
	color: var(--mph-gold);
	fill: var(--mph-gold);
}
.mph-fund-step-box .elementor-icon-box-title {
	margin-bottom: 10px;
}

@media (max-width: 1023px) {
	.mph-fund-steps-grid {
		flex-direction: column !important;
	}
	.mph-fund-step {
		width: 100% !important;
		flex-basis: 100% !important;
		max-width: 100% !important;
		margin-bottom: 20px !important;
	}
}

/* ---- Ideas (icon lists) ---- */
.mph-fund-ideas-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-fund-ideas-row {
	width: 100%;
	gap: 0 4%;
}
.mph-fund-ideas-col {
	width: 48% !important;
	flex-basis: 48% !important;
}
.mph-fund-ideas-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 15.5px;
	line-height: 1.45;
	color: rgba(44, 44, 44, 0.82);
}
.mph-fund-ideas-list .elementor-icon-list-icon {
	padding-top: 3px;
}

@media (max-width: 600px) {
	.mph-fund-ideas-row {
		flex-direction: column !important;
	}
	.mph-fund-ideas-col {
		width: 100% !important;
		flex-basis: 100% !important;
	}
}

/* ---- CTA ---- */
.mph-fund-cta {
	position: relative;
}
.mph-fund-cta-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-fund-cta-sub p {
	margin: 0;
}
.mph-fund-cta-sub a {
	color: var(--mph-gold);
	font-weight: 700;
	text-decoration: none;
}
.mph-fund-cta-sub a:hover {
	color: var(--mph-white);
}


/* ============================================================================
 * MAJOR GIFTS PAGE (Ways to Give)
 * ============================================================================ */

/* ---- Intro ---- */
.mph-mg-intro-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-mg-intro-body p {
	margin: 0 0 16px 0;
}
.mph-mg-intro-body p:last-child {
	margin-bottom: 0;
}

/* ---- 8 gift types (container cards wrapping Pro icon boxes) ---- */
.mph-mg-types-grid {
	width: 100%;
	gap: 24px 2%;
}
.mph-mg-card {
	width: 23% !important;
	flex-basis: 23% !important;
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	max-width: 23% !important;
	margin: 0 !important;
	background: var(--mph-white);
	border: 1px solid rgba(38, 47, 60, 0.1);
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(38, 47, 60, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mph-mg-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 45px rgba(38, 47, 60, 0.13);
}
.mph-mg-box .elementor-icon-box-icon {
	margin-bottom: 14px;
}
.mph-mg-box .elementor-icon-box-icon i,
.mph-mg-box .elementor-icon-box-icon svg {
	color: var(--mph-gold);
	fill: var(--mph-gold);
}
.mph-mg-box .elementor-icon-box-title {
	margin-bottom: 8px;
}

@media (max-width: 1023px) {
	.mph-mg-card {
		width: 48% !important;
		flex-basis: 48% !important;
		max-width: 48% !important;
		margin-bottom: 22px !important;
	}
}
@media (max-width: 600px) {
	.mph-mg-types-grid {
		flex-direction: column !important;
	}
	.mph-mg-card {
		width: 100% !important;
		flex-basis: 100% !important;
		max-width: 100% !important;
	}
}

/* ---- Contact cards ---- */
.mph-mg-contact-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-mg-contact-intro p {
	margin: 0;
}
.mph-mg-contact-intro a {
	color: var(--mph-teal);
	font-weight: 700;
	text-decoration: none;
}
.mph-mg-contact-intro a:hover {
	color: var(--mph-gold-deep);
}
.mph-mg-contact-row {
	width: 100%;
	gap: 0 4%;
}
.mph-mg-contact-card {
	width: 48% !important;
	flex-basis: 48% !important;
	background: var(--mph-cream);
	border: 1px solid rgba(38, 47, 60, 0.1);
	border-left: 3px solid var(--mph-gold);
	border-radius: 0 8px 8px 0;
}
.mph-mg-contact-name .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-mg-contact-role p {
	margin: 0;
	font-family: "Glacial Indifference", sans-serif;
}
.mph-mg-contact-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14.5px;
	color: rgba(44, 44, 44, 0.82);
}
.mph-mg-contact-list .elementor-icon-list-item:hover .elementor-icon-list-text {
	color: var(--mph-gold-deep);
}
.mph-mg-contact-list .elementor-icon-list-icon {
	padding-top: 3px;
}

@media (max-width: 600px) {
	.mph-mg-contact-row {
		flex-direction: column !important;
	}
	.mph-mg-contact-card {
		width: 100% !important;
		flex-basis: 100% !important;
		margin-bottom: 18px;
	}
	.mph-mg-contact-card:last-child {
		margin-bottom: 0;
	}
}

/* ---- CTA ---- */
.mph-mg-cta {
	position: relative;
}
.mph-mg-cta-heading .elementor-heading-title {
	font-family: "Poppins", sans-serif;
}
.mph-mg-cta-sub p {
	margin: 0;
}


/* ============================================================================
 * VOLUNTEER PAGE (Get Involved)
 * ============================================================================ */

/* ---- Intro ---- */
.mph-vol-intro-img img {
	display: block; width: 100%; height: auto;
	border-radius: 6px; box-shadow: 0 22px 55px rgba(38, 47, 60, 0.16);
}
.mph-vol-intro-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-vol-intro-body p { margin: 0 0 16px 0; }
.mph-vol-intro-body p:last-child { margin-bottom: 0; }

@media (max-width: 1023px) {
	.mph-vol-intro-row { flex-direction: column !important; }
	.mph-vol-intro-col { width: 100% !important; flex-basis: 100% !important; padding-right: 0 !important; }
}

/* ---- Qualifications ---- */
.mph-vol-qual-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-vol-qual-intro p { margin: 0; }
.mph-vol-qual-row { width: 100%; gap: 0 4%; }
.mph-vol-qual-col { width: 48% !important; flex-basis: 48% !important; }
.mph-vol-qual-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif; font-size: 15.5px;
	line-height: 1.45; color: rgba(44, 44, 44, 0.82);
}
.mph-vol-qual-list .elementor-icon-list-icon { padding-top: 3px; }

@media (max-width: 600px) {
	.mph-vol-qual-row { flex-direction: column !important; }
	.mph-vol-qual-col { width: 100% !important; flex-basis: 100% !important; }
}

/* ---- Ways to volunteer (container cards wrapping icon boxes) ---- */
.mph-vol-roles-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-vol-roles-grid { width: 100%; gap: 26px 2%; }
.mph-vol-role-card {
	width: 31% !important; flex-basis: 31% !important;
	flex-grow: 0 !important; flex-shrink: 0 !important; max-width: 31% !important;
	margin: 0 !important; background: var(--mph-white);
	border: 1px solid rgba(38, 47, 60, 0.1); border-radius: 8px;
	box-shadow: 0 10px 30px rgba(38, 47, 60, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mph-vol-role-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(38, 47, 60, 0.13); }
.mph-vol-role-box .elementor-icon-box-icon { margin-bottom: 14px; }
.mph-vol-role-box .elementor-icon-box-icon i,
.mph-vol-role-box .elementor-icon-box-icon svg { color: var(--mph-gold); fill: var(--mph-gold); }
.mph-vol-role-box .elementor-icon-box-title { margin-bottom: 8px; }
.mph-vol-roles-note-wrap { width: 100%; }
.mph-vol-roles-note p { margin: 0; }
.mph-vol-roles-note a { color: var(--mph-teal); font-weight: 700; text-decoration: none; }
.mph-vol-roles-note a:hover { color: var(--mph-gold-deep); }

@media (max-width: 1023px) {
	.mph-vol-role-card { width: 48% !important; flex-basis: 48% !important; max-width: 48% !important; margin-bottom: 22px !important; }
}
@media (max-width: 600px) {
	.mph-vol-roles-grid { flex-direction: column !important; }
	.mph-vol-role-card { width: 100% !important; flex-basis: 100% !important; max-width: 100% !important; }
}

/* ---- CTA ---- */
.mph-vol-cta { position: relative; }
.mph-vol-cta-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-vol-cta-sub p { margin: 0; }


/* ============================================================================
 * THYME FOR DINNER PAGE (Get Involved)
 * ============================================================================ */

/* ---- Intro ---- */
.mph-thyme-intro-img img {
	display: block; width: 100%; height: auto;
	border-radius: 6px; box-shadow: 0 22px 55px rgba(38, 47, 60, 0.16);
}
.mph-thyme-intro-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-thyme-intro-body p { margin: 0 0 16px 0; }
.mph-thyme-intro-body p:last-child { margin-bottom: 0; }

@media (max-width: 1023px) {
	.mph-thyme-intro-row { flex-direction: column !important; }
	.mph-thyme-intro-col { width: 100% !important; flex-basis: 100% !important; padding-right: 0 !important; }
}

/* ---- How it works (container cards wrapping icon boxes) ---- */
.mph-thyme-how-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-thyme-how-grid { width: 100%; gap: 26px 2%; }
.mph-thyme-step {
	width: 32% !important; flex-basis: 32% !important;
	flex-grow: 0 !important; flex-shrink: 0 !important; max-width: 32% !important;
	margin: 0 !important; background: var(--mph-white);
	border: 1px solid rgba(38, 47, 60, 0.1); border-radius: 8px;
	box-shadow: 0 10px 30px rgba(38, 47, 60, 0.07);
}
.mph-thyme-step-box .elementor-icon-box-icon { margin-bottom: 16px; }
.mph-thyme-step-box .elementor-icon-box-icon i,
.mph-thyme-step-box .elementor-icon-box-icon svg { color: var(--mph-gold); fill: var(--mph-gold); }
.mph-thyme-step-box .elementor-icon-box-title { margin-bottom: 10px; }
.mph-thyme-how-note-wrap { width: 100%; }
.mph-thyme-how-note p { margin: 0; }

@media (max-width: 1023px) {
	.mph-thyme-how-grid { flex-direction: column !important; }
	.mph-thyme-step { width: 100% !important; flex-basis: 100% !important; max-width: 100% !important; margin-bottom: 20px !important; }
}

/* ---- Menu ideas ---- */
.mph-thyme-menu-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-thyme-menu-row { width: 100%; gap: 0 4%; }
.mph-thyme-menu-col { width: 48% !important; flex-basis: 48% !important; }
.mph-thyme-menu-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif; font-size: 15.5px;
	line-height: 1.45; color: rgba(44, 44, 44, 0.82);
}
.mph-thyme-menu-list .elementor-icon-list-icon { padding-top: 3px; }

@media (max-width: 600px) {
	.mph-thyme-menu-row { flex-direction: column !important; }
	.mph-thyme-menu-col { width: 100% !important; flex-basis: 100% !important; }
}

/* ---- Sign-up form (Gravity Forms slot) ---- */
.mph-thyme-form-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-thyme-form-intro p { margin: 0; }
.mph-thyme-form-slot-wrap { width: 100%; max-width: 720px; margin: 0 auto; }
.mph-thyme-form-slot {
	border: 2px dashed rgba(53, 63, 81, 0.35);
	border-radius: 8px; background: var(--mph-white);
	padding: 44px 32px; text-align: center;
}
.mph-thyme-form-slot-tag {
	display: inline-block; font-family: "Glacial Indifference", sans-serif;
	font-size: 11px; font-weight: 700; letter-spacing: 2px;
	color: var(--mph-teal); background: rgba(53, 63, 81, 0.1);
	padding: 5px 12px; border-radius: 100px; margin-bottom: 12px;
}
.mph-thyme-form-slot p {
	margin: 0; font-family: "Glacial Indifference", sans-serif;
	font-size: 14px; color: var(--mph-muted);
}


/* ============================================================================
 * CORPORATE PARTNERSHIPS PAGE (Get Involved)
 * ============================================================================ */

.mph-corp-intro-img img {
	display: block; width: 100%; height: auto;
	border-radius: 6px; box-shadow: 0 22px 55px rgba(38, 47, 60, 0.16);
}
.mph-corp-intro-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-corp-intro-body p { margin: 0 0 16px 0; }
.mph-corp-intro-body p:last-child { margin-bottom: 0; }

@media (max-width: 1023px) {
	.mph-corp-intro-row { flex-direction: column !important; }
	.mph-corp-intro-col { width: 100% !important; flex-basis: 100% !important; padding-right: 0 !important; }
}

/* Ways to partner (container cards wrapping icon boxes) */
.mph-corp-ways-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-corp-ways-grid { width: 100%; gap: 26px 2%; }
.mph-corp-way-card {
	width: 31% !important; flex-basis: 31% !important;
	flex-grow: 0 !important; flex-shrink: 0 !important; max-width: 31% !important;
	margin: 0 !important; background: var(--mph-white);
	border: 1px solid rgba(38, 47, 60, 0.1); border-radius: 8px;
	box-shadow: 0 10px 30px rgba(38, 47, 60, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mph-corp-way-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(38, 47, 60, 0.13); }
.mph-corp-way-box .elementor-icon-box-icon { margin-bottom: 14px; }
.mph-corp-way-box .elementor-icon-box-icon i,
.mph-corp-way-box .elementor-icon-box-icon svg { color: var(--mph-gold); fill: var(--mph-gold); }
.mph-corp-way-box .elementor-icon-box-title { margin-bottom: 8px; }

@media (max-width: 1023px) {
	.mph-corp-way-card { width: 48% !important; flex-basis: 48% !important; max-width: 48% !important; margin-bottom: 22px !important; }
}
@media (max-width: 600px) {
	.mph-corp-ways-grid { flex-direction: column !important; }
	.mph-corp-way-card { width: 100% !important; flex-basis: 100% !important; max-width: 100% !important; }
}

/* Why partner */
.mph-corp-why-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-corp-why-row { width: 100%; gap: 0 4%; }
.mph-corp-why-col { width: 48% !important; flex-basis: 48% !important; }
.mph-corp-why-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif; font-size: 15.5px;
	line-height: 1.45; color: rgba(44, 44, 44, 0.82);
}
.mph-corp-why-list .elementor-icon-list-icon { padding-top: 3px; }

@media (max-width: 600px) {
	.mph-corp-why-row { flex-direction: column !important; }
	.mph-corp-why-col { width: 100% !important; flex-basis: 100% !important; }
}

/* CTA */
.mph-corp-cta { position: relative; }
.mph-corp-cta-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-corp-cta-sub p { margin: 0; }
.mph-corp-cta-sub a { color: var(--mph-gold); font-weight: 700; text-decoration: none; }
.mph-corp-cta-sub a:hover { color: var(--mph-white); }


/* ============================================================================
 * GET INVOLVED -- MAIN / HUB PAGE
 * ============================================================================
 * Reusable alternating image/text "hub row" pattern (also used by the
 * Ways to Give hub). Class prefix mph-hub-row-.
 * ============================================================================ */

.mph-gi-intro-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-gi-intro-body p { margin: 0; }

/* Hub row */
.mph-hub-row-inner { width: 100%; }
.mph-hub-row-col { width: 46% !important; flex-basis: 46% !important; }
.mph-hub-row-img img {
	display: block; width: 100%; height: auto;
	border-radius: 8px; box-shadow: 0 20px 50px rgba(38, 47, 60, 0.15);
}
.mph-hub-row-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mph-hub-row-eyebrow-line { width: 28px; height: 2px; background: var(--mph-gold); display: inline-block; }
.mph-hub-row-eyebrow-text {
	font-family: "Glacial Indifference", sans-serif; font-size: 12.5px;
	font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
	color: var(--mph-gold-deep);
}
.mph-hub-row-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-hub-row-body p { margin: 0; }

/* Stack on tablet/mobile; image always first when stacked regardless of side */
@media (max-width: 1023px) {
	.mph-hub-row-inner { flex-direction: column !important; }
	.mph-hub-row-col { width: 100% !important; flex-basis: 100% !important; }
	.mph-hub-row-col-image { margin-bottom: 32px; order: -1; }
}

/* CTA */
.mph-gi-cta { position: relative; }
.mph-gi-cta-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-gi-cta-sub p { margin: 0; }


/* ============================================================================
 * WAYS TO GIVE -- MAIN / HUB PAGE
 * ============================================================================
 * Reuses the shared .mph-hub-row-* pattern (defined with the Get Involved hub).
 * Only the intro + CTA need page-specific rules.
 * ============================================================================ */

.mph-wtg-intro-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-wtg-intro-body p { margin: 0; }
.mph-wtg-cta { position: relative; }
.mph-wtg-cta-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-wtg-cta-sub p { margin: 0; }


/* ============================================================================
 * UPCOMING EVENTS PAGE
 * ============================================================================
 * Minimal page: intro + a large shortcode slot for the future events plugin.
 * ============================================================================ */

.mph-ev-intro-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-ev-intro p { margin: 0; }

/* Large events shortcode slot */
.mph-ev-slot-wrap { width: 100%; }
.mph-ev-slot {
	width: 100%;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 2px dashed rgba(53, 63, 81, 0.35);
	border-radius: 10px;
	background: var(--mph-cream);
	padding: 56px 36px;
}
.mph-ev-slot-tag {
	display: inline-block; font-family: "Glacial Indifference", sans-serif;
	font-size: 11px; font-weight: 700; letter-spacing: 2px;
	color: var(--mph-teal); background: rgba(53, 63, 81, 0.1);
	padding: 5px 12px; border-radius: 100px; margin-bottom: 18px;
}
.mph-ev-slot-title {
	margin: 0 0 10px 0; font-family: "Poppins", sans-serif;
	font-size: 20px; font-weight: 700; color: var(--mph-teal);
}
.mph-ev-slot-note {
	margin: 0; font-family: "Glacial Indifference", sans-serif;
	font-size: 14.5px; line-height: 1.6; color: var(--mph-muted);
	max-width: 520px;
}

/* CTA */
.mph-ev-cta { position: relative; }
.mph-ev-cta-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-ev-cta-sub p { margin: 0; }


/* ============================================================================
 * ABOUT US -- OUR BOARD & OUR STAFF (shared person cards)
 * ============================================================================ */

.mph-board-intro-heading .elementor-heading-title,
.mph-staff-intro-heading .elementor-heading-title,
.mph-board-group-heading .elementor-heading-title,
.mph-staff-group-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-board-intro-body p, .mph-staff-intro-body p { margin: 0; }
.mph-board-intro-body a, .mph-staff-intro-body a { color: var(--mph-teal); font-weight: 600; text-decoration: none; }
.mph-board-intro-body a:hover, .mph-staff-intro-body a:hover { color: var(--mph-gold-deep); }

.mph-board-grid, .mph-staff-grid { width: 100%; gap: 36px 2%; }

.mph-person-card {
	width: 23% !important; flex-basis: 23% !important;
	flex-grow: 0 !important; flex-shrink: 0 !important; max-width: 23% !important;
	margin: 0 !important;
}
.mph-person-img-wrap {
	width: 100%; margin-bottom: 18px; border-radius: 12px; overflow: hidden;
	box-shadow: 0 12px 30px rgba(38, 47, 60, 0.12);
}
.mph-person-img img {
	display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
}
.mph-person-name .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-person-role p {
	margin: 0; font-family: "Glacial Indifference", sans-serif;
	font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; font-size: 12px;
}
.mph-person-bio p, .mph-person-contact p {
	margin: 0; font-family: "Glacial Indifference", sans-serif;
}
.mph-person-contact a { color: var(--mph-teal); text-decoration: none; }
.mph-person-contact a:hover { color: var(--mph-gold-deep); }

@media (max-width: 1023px) {
	.mph-person-card { width: 48% !important; flex-basis: 48% !important; max-width: 48% !important; margin-bottom: 12px !important; }
}
@media (max-width: 600px) {
	.mph-board-grid, .mph-staff-grid { flex-direction: column !important; }
	.mph-person-card { width: 100% !important; flex-basis: 100% !important; max-width: 100% !important; }
}


/* ============================================================================
 * ABOUT US -- OUR IMPACT
 * (stat cards reuse the homepage .mph-stat-card / .mph-impact-grid styles)
 * ============================================================================ */

.mph-impact-cta { position: relative; }
.mph-impact-cta-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-impact-cta-sub p { margin: 0; }

/* Who We Serve */
.mph-serve-img img {
	display: block; width: 100%; height: auto;
	border-radius: 8px; box-shadow: 0 22px 55px rgba(38, 47, 60, 0.16);
}
.mph-serve-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-serve-body p { margin: 0; }
.mph-serve-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif; font-size: 15.5px;
	line-height: 1.45; color: rgba(44, 44, 44, 0.82);
}
.mph-serve-list .elementor-icon-list-icon { padding-top: 3px; }

@media (max-width: 1023px) {
	.mph-serve-row { flex-direction: column !important; }
	.mph-serve-col { width: 100% !important; flex-basis: 100% !important; padding-right: 0 !important; }
}

/* Reports & financial statements */
.mph-reports-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-reports-intro p { margin: 0; }
.mph-reports-row { width: 100%; gap: 0 4%; }
.mph-reports-col {
	width: 46% !important; flex-basis: 46% !important;
	background: var(--mph-white); border: 1px solid rgba(38, 47, 60, 0.1);
	border-radius: 10px; padding: 30px 32px;
}
.mph-reports-col-title .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-reports-list .elementor-icon-list-text {
	font-family: "Glacial Indifference", sans-serif; font-size: 15px;
	color: rgba(44, 44, 44, 0.82);
}
.mph-reports-list .elementor-icon-list-item:hover .elementor-icon-list-text { color: var(--mph-gold-deep); }
.mph-reports-list .elementor-icon-list-icon { padding-top: 2px; }

@media (max-width: 1023px) {
	.mph-reports-row { flex-direction: column !important; }
	.mph-reports-col { width: 100% !important; flex-basis: 100% !important; margin-bottom: 18px; }
	.mph-reports-col:last-child { margin-bottom: 0; }
}


/* ============================================================================
 * STAY WITH US -- SEE INSIDE (hover-caption gallery)
 * ============================================================================ */

.mph-si-intro-heading .elementor-heading-title,
.mph-si-group-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-si-intro-body p, .mph-si-group-sub p { margin: 0; }

/* Gallery grids */
.mph-gal-grid { width: 100%; }
.mph-gal-grid-large { gap: 24px 2%; }
.mph-gal-grid-small { gap: 22px 2%; }
.mph-gal-tile-wrap-large { width: 49% !important; flex-basis: 49% !important; flex-grow: 0 !important; flex-shrink: 0 !important; }
.mph-gal-tile-wrap-small { width: 32% !important; flex-basis: 32% !important; flex-grow: 0 !important; flex-shrink: 0 !important; }

/* Tile + image */
.mph-gal-tile {
	position: relative; margin: 0; border-radius: 12px; overflow: hidden;
	box-shadow: 0 12px 32px rgba(38, 47, 60, 0.12); cursor: pointer;
}
.mph-gal-tile img {
	display: block; width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.5s ease;
}
.mph-gal-large img { aspect-ratio: 16 / 11; }
.mph-gal-small img { aspect-ratio: 5 / 4; }
.mph-gal-tile:hover img { transform: scale(1.06); }

/* Hover-reveal caption overlay (JoeAnna's-style) */
.mph-gal-cap {
	position: absolute; left: 0; right: 0; bottom: 0;
	display: flex; flex-direction: column; gap: 5px;
	padding: 26px 24px 22px;
	color: #fff; text-align: left;
	background: linear-gradient(to top, rgba(38,47,60,0.92) 0%, rgba(38,47,60,0.72) 55%, rgba(38,47,60,0) 100%);
	transform: translateY(calc(100% - 58px));
	transition: transform 0.4s ease;
}
.mph-gal-tile:hover .mph-gal-cap,
.mph-gal-tile:focus-within .mph-gal-cap { transform: translateY(0); }
.mph-gal-cap-title {
	font-family: "Poppins", sans-serif; font-size: 18px; font-weight: 700;
	line-height: 1.25;
}
.mph-gal-small .mph-gal-cap-title { font-size: 16px; }
.mph-gal-cap-desc {
	font-family: "Glacial Indifference", sans-serif; font-size: 13.5px;
	line-height: 1.5; color: rgba(255, 255, 255, 0.88);
	opacity: 0; transition: opacity 0.4s ease 0.05s;
}
.mph-gal-tile:hover .mph-gal-cap-desc,
.mph-gal-tile:focus-within .mph-gal-cap-desc { opacity: 1; }

/* Always show full caption on touch devices (no hover) */
@media (hover: none) {
	.mph-gal-cap { transform: translateY(0); }
	.mph-gal-cap-desc { opacity: 1; }
}

@media (max-width: 767px) {
	.mph-gal-grid-large, .mph-gal-grid-small { flex-direction: column !important; }
	.mph-gal-tile-wrap-large, .mph-gal-tile-wrap-small {
		width: 100% !important; flex-basis: 100% !important; margin-bottom: 18px;
	}
	.mph-gal-cap { transform: translateY(0); }
	.mph-gal-cap-desc { opacity: 1; }
}

/* Virtual tour slot */
.mph-si-tour-slot-wrap { width: 100%; }
.mph-si-tour-slot {
	width: 100%; min-height: 300px; display: flex; flex-direction: column;
	align-items: center; justify-content: center; text-align: center;
	border: 2px dashed rgba(53, 63, 81, 0.35); border-radius: 12px;
	background: var(--mph-cream); padding: 50px 32px;
}
.mph-si-tour-tag {
	display: inline-block; font-family: "Glacial Indifference", sans-serif;
	font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--mph-teal);
	background: rgba(53, 63, 81, 0.1); padding: 5px 12px; border-radius: 100px;
	margin-bottom: 16px;
}
.mph-si-tour-title { margin: 0 0 10px; font-family: "Poppins", sans-serif; font-size: 20px; font-weight: 700; color: var(--mph-teal); }
.mph-si-tour-note { margin: 0; font-family: "Glacial Indifference", sans-serif; font-size: 14.5px; line-height: 1.6; color: var(--mph-muted); max-width: 520px; }

/* CTA */
.mph-si-cta { position: relative; }
.mph-si-cta-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-si-cta-sub p { margin: 0; }


/* ============================================================================
 * EVENT PAGES -- GOLF4LIFE & FALL FOR BEER (shared template)
 * Both pages use parallel classes (mph-golf-* / mph-beer-*); rules are grouped.
 * ============================================================================ */

/* ---- Facts band (dark) ---- */
.mph-golf-facts-grid, .mph-beer-facts-grid { width: 100%; gap: 30px 2%; }
.mph-golf-fact, .mph-beer-fact {
	width: 23% !important; flex-basis: 23% !important;
	flex-grow: 0 !important; flex-shrink: 0 !important; max-width: 23% !important; margin: 0 !important;
}
.mph-golf-fact-icon-wrap, .mph-beer-fact-icon-wrap {
	width: 50px; height: 50px; margin: 0 auto 10px; border-radius: 50%;
	background: rgba(250, 166, 28, 0.14); display: flex; align-items: center; justify-content: center;
}
.mph-golf-fact-icon-wrap .mph-golf-fact-icon, .mph-beer-fact-icon-wrap .mph-beer-fact-icon { margin: 0; }
.mph-golf-fact-label p, .mph-beer-fact-label p {
	margin: 0; font-family: "Glacial Indifference", sans-serif; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.mph-golf-fact-value .elementor-heading-title, .mph-beer-fact-value .elementor-heading-title { font-family: "Poppins", sans-serif; }

@media (max-width: 767px) {
	.mph-golf-facts-grid, .mph-beer-facts-grid { flex-direction: column !important; }
	.mph-golf-fact, .mph-beer-fact { width: 100% !important; flex-basis: 100% !important; max-width: 100% !important; margin-bottom: 22px !important; }
}

/* ---- About (image + text) ---- */
.mph-golf-about-img img, .mph-beer-about-img img {
	display: block; width: 100%; height: auto; border-radius: 8px; box-shadow: 0 22px 55px rgba(38, 47, 60, 0.16);
}
.mph-golf-about-heading .elementor-heading-title, .mph-beer-about-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-golf-about-body p, .mph-beer-about-body p { margin: 0 0 16px 0; }
.mph-golf-about-body p:last-child, .mph-beer-about-body p:last-child { margin-bottom: 0; }

@media (max-width: 1023px) {
	.mph-golf-about-row, .mph-beer-about-row { flex-direction: column !important; }
	.mph-golf-about-col, .mph-beer-about-col { width: 100% !important; flex-basis: 100% !important; padding-right: 0 !important; }
}

/* ---- Ways to take part (container cards wrapping icon boxes) ---- */
.mph-golf-part-heading .elementor-heading-title, .mph-beer-part-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-golf-part-grid, .mph-beer-part-grid { width: 100%; gap: 26px 2%; }
.mph-golf-part-card, .mph-beer-part-card {
	width: 31% !important; flex-basis: 31% !important; flex-grow: 0 !important; flex-shrink: 0 !important; max-width: 31% !important; margin: 0 !important;
	background: var(--mph-white); border: 1px solid rgba(38, 47, 60, 0.1); border-radius: 8px;
	box-shadow: 0 10px 30px rgba(38, 47, 60, 0.07); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mph-golf-part-card:hover, .mph-beer-part-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(38, 47, 60, 0.13); }
.mph-golf-part-box .elementor-icon-box-icon, .mph-beer-part-box .elementor-icon-box-icon { margin-bottom: 14px; }
.mph-golf-part-box .elementor-icon-box-icon i, .mph-golf-part-box .elementor-icon-box-icon svg,
.mph-beer-part-box .elementor-icon-box-icon i, .mph-beer-part-box .elementor-icon-box-icon svg { color: var(--mph-gold); fill: var(--mph-gold); }
.mph-golf-part-box .elementor-icon-box-title, .mph-beer-part-box .elementor-icon-box-title { margin-bottom: 8px; }
.mph-golf-part-link .elementor-button, .mph-beer-part-link .elementor-button {
	background: transparent; padding: 0; font-family: "Poppins", sans-serif; font-size: 14px; font-weight: 600; color: var(--mph-gold-deep); letter-spacing: 0;
}
.mph-golf-part-link .elementor-button:hover, .mph-beer-part-link .elementor-button:hover { color: var(--mph-teal); background: transparent; }

@media (max-width: 1023px) {
	.mph-golf-part-grid, .mph-beer-part-grid { flex-direction: column !important; }
	.mph-golf-part-card, .mph-beer-part-card { width: 100% !important; flex-basis: 100% !important; max-width: 100% !important; margin-bottom: 20px !important; }
}

/* ---- Highlight stat callout ---- */
.mph-golf-hl-num .elementor-heading-title, .mph-beer-hl-num .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-golf-hl-label p, .mph-beer-hl-label p { margin: 0; }
.mph-golf-hl-label strong, .mph-beer-hl-label strong { color: #fff; font-weight: 700; }

/* ---- Gallery (editable image grid) ---- */
.mph-golf-gal-heading .elementor-heading-title, .mph-beer-gal-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-golf-gal-grid, .mph-beer-gal-grid { width: 100%; gap: 22px 2%; }
.mph-golf-gal-cell, .mph-beer-gal-cell {
	width: 32% !important; flex-basis: 32% !important; flex-grow: 0 !important; flex-shrink: 0 !important; max-width: 32% !important; margin: 0 !important;
}
.mph-golf-gal-img img, .mph-beer-gal-img img {
	display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover;
	border-radius: 10px; box-shadow: 0 10px 26px rgba(38, 47, 60, 0.1); transition: transform 0.35s ease;
}
.mph-golf-gal-cell:hover img, .mph-beer-gal-cell:hover img { transform: scale(1.04); }

@media (max-width: 767px) {
	.mph-golf-gal-grid, .mph-beer-gal-grid { flex-direction: column !important; }
	.mph-golf-gal-cell, .mph-beer-gal-cell { width: 100% !important; flex-basis: 100% !important; max-width: 100% !important; margin-bottom: 18px; }
}

/* ---- CTA ---- */
.mph-golf-cta, .mph-beer-cta { position: relative; }
.mph-golf-cta-heading .elementor-heading-title, .mph-beer-cta-heading .elementor-heading-title { font-family: "Poppins", sans-serif; }
.mph-golf-cta-sub p, .mph-beer-cta-sub p { margin: 0; }

/* ============================================================
   DONATE PAGE (/donate/)
   Reuses: mph-interior-hero, mph-eyebrow, mph-btn, section rhythm.
   New classes below are scoped mph-donate-.
   ============================================================ */

/* ---- Form band ---- */
.mph-donate-form-card {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	border: 1px solid rgba(168, 182, 222, 0.55);
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(38, 47, 60, 0.1);
	box-sizing: border-box;
}
.mph-donate-embed-wrap {
	width: 100%;
}
.mph-donate-embed iframe {
	display: block;
	width: 100%;
	min-height: 920px;
	border: 0;
	border-radius: 6px;
	background: var(--mph-white);
}

/* ---- Cheque callout ---- */
.mph-donate-cheque-card {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	border: 1px solid rgba(168, 182, 222, 0.55);
	border-left: 5px solid var(--mph-gold);
	border-radius: 10px;
	box-shadow: 0 10px 28px rgba(38, 47, 60, 0.07);
	box-sizing: border-box;
}
.mph-donate-cheque-body p {
	margin: 0 0 10px;
}
.mph-donate-cheque-body p:last-child {
	margin-bottom: 0;
}

/* ---- Other ways to give (3-up cards) ---- */
.mph-donate-alt-row {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.mph-donate-alt-card {
	border: 1px solid rgba(168, 182, 222, 0.55);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(38, 47, 60, 0.06);
	box-sizing: border-box;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mph-donate-alt-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(38, 47, 60, 0.13);
}
.mph-donate-alt-eyebrow-text {
	font-family: 'Poppins', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--mph-blue);
}
.mph-donate-alt-eyebrow-wrap {
	margin-bottom: 10px;
}
.mph-donate-alt-btn .elementor-button {
	padding: 14px 26px;
}

/* ---- Info / closer band ---- */
.mph-donate-info-body strong {
	color: var(--mph-gold);
	font-weight: 700;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.mph-donate-alt-card {
		width: 47% !important;
	}
}
@media (max-width: 767px) {
	.mph-donate-alt-row {
		flex-direction: column !important;
	}
	.mph-donate-alt-card {
		width: 100% !important;
	}
	.mph-donate-embed iframe {
		min-height: 980px;
	}
}

/* ============================================================
   CAREERS PAGE (/careers/)
   ============================================================ */

.mph-job-list {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}
.mph-job-card {
	border: 1px solid rgba(168, 182, 222, 0.55);
	border-left: 5px solid var(--mph-gold);
	border-radius: 10px;
	box-shadow: 0 10px 28px rgba(38, 47, 60, 0.07);
	box-sizing: border-box;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mph-job-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(38, 47, 60, 0.12);
}
.mph-job-eyebrow-wrap {
	margin-bottom: 12px;
}
.mph-job-eyebrow-text {
	display: inline-block;
	font-family: "Poppins", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--mph-blue);
	background: rgba(168, 182, 222, 0.22);
	border: 1px solid rgba(168, 182, 222, 0.7);
	border-radius: 100px;
	padding: 5px 13px;
}
.mph-job-body p {
	margin: 0;
}
.mph-job-btn-row {
	width: 100%;
}
.mph-job-empty {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	border: 1px dashed rgba(168, 182, 222, 0.9);
	border-radius: 10px;
	box-sizing: border-box;
}
.mph-job-empty-body p {
	margin: 0;
}

/* ============================================================
   CONTACT + NEWSLETTER PAGE
   ============================================================ */

/* ---- Details column ---- */
.mph-contact-row-grid {
	width: 100%;
}
.mph-contact-row-wrap {
	width: 100%;
}
.mph-contact-row {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(168, 182, 222, 0.45);
}
.mph-contact-label {
	font-family: "Poppins", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--mph-blue);
}
.mph-contact-value {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 17px;
	line-height: 1.6;
	color: var(--mph-charcoal);
}
.mph-contact-value a {
	color: var(--mph-teal);
	text-decoration: none;
	transition: color 0.25s ease;
}
.mph-contact-value a:hover {
	color: var(--mph-gold-deep);
}
.mph-contact-directions {
	display: block;
	margin-top: 8px;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.4px;
}
.mph-contact-socials {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 18px;
}
.mph-contact-social-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.mph-contact-social {
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	color: var(--mph-teal);
	background: rgba(168, 182, 222, 0.18);
	border: 1px solid rgba(168, 182, 222, 0.7);
	border-radius: 100px;
	padding: 7px 15px;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.mph-contact-social:hover {
	background: var(--mph-teal);
	border-color: var(--mph-teal);
	color: var(--mph-white);
}

/* ---- Form card ---- */
.mph-contact-form-card {
	border: 1px solid rgba(168, 182, 222, 0.55);
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(38, 47, 60, 0.1);
	box-sizing: border-box;
}

/* ---- Form slots (placeholder until the real embed is pasted in) ---- */
.mph-form-slot {
	border: 1px dashed rgba(168, 182, 222, 0.9);
	border-radius: 8px;
	background: rgba(168, 182, 222, 0.1);
	padding: 26px 24px;
	text-align: center;
}
.mph-form-slot-title {
	margin: 0 0 8px;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--mph-blue);
}
.mph-form-slot-note {
	margin: 0;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(44, 44, 44, 0.7);
}

/* Styling for whatever form markup gets pasted into a slot wrapper, so the
   embed inherits the MPH look without editing the embed code itself. */
.mph-form-slot-wrap label {
	display: block;
	margin-bottom: 6px;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: var(--mph-teal);
}
.mph-form-slot-wrap input[type="text"],
.mph-form-slot-wrap input[type="email"],
.mph-form-slot-wrap input[type="tel"],
.mph-form-slot-wrap textarea,
.mph-form-slot-wrap select {
	width: 100%;
	box-sizing: border-box;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 16px;
	color: var(--mph-charcoal);
	background-color: var(--mph-white);
	border: 1px solid rgba(168, 182, 222, 0.9);
	border-radius: 6px;
	padding: 13px 15px;
	margin-bottom: 16px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.mph-form-slot-wrap input[type="text"]:focus,
.mph-form-slot-wrap input[type="email"]:focus,
.mph-form-slot-wrap input[type="tel"]:focus,
.mph-form-slot-wrap textarea:focus,
.mph-form-slot-wrap select:focus {
	outline: none;
	border-color: var(--mph-gold);
	box-shadow: 0 0 0 3px rgba(250, 166, 28, 0.18);
}
.mph-form-slot-wrap textarea {
	min-height: 150px;
	resize: vertical;
}
.mph-form-slot-wrap input[type="submit"],
.mph-form-slot-wrap button[type="submit"] {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.8px;
	color: var(--mph-charcoal);
	background: var(--mph-gold);
	border: 0;
	border-radius: 4px;
	padding: 16px 38px;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.2s ease;
}
.mph-form-slot-wrap input[type="submit"]:hover,
.mph-form-slot-wrap button[type="submit"]:hover {
	background: var(--mph-gold-deep);
	transform: translateY(-2px);
}

/* ---- Newsletter band ---- */
.mph-newsletter-card {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	border: 1px solid rgba(168, 182, 222, 0.55);
	border-radius: 12px;
	box-shadow: 0 14px 36px rgba(38, 47, 60, 0.09);
	box-sizing: border-box;
}
.mph-newsletter-legal {
	margin-top: 18px;
}
.mph-newsletter-legal p {
	margin: 0;
}
.mph-newsletter-legal a {
	color: var(--mph-blue);
}

/* ---- Directions ---- */
.mph-dir-grid {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.mph-dir-card {
	border: 1px solid rgba(168, 182, 222, 0.55);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(38, 47, 60, 0.06);
	box-sizing: border-box;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mph-dir-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(38, 47, 60, 0.12);
}
.mph-dir-title {
	margin: 0 0 14px;
	font-family: "Poppins", sans-serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--mph-teal);
}
.mph-dir-title a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}
.mph-dir-title a:hover {
	color: var(--mph-gold-deep);
}
.mph-dir-arrow {
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mph-dir-title a:hover .mph-dir-arrow {
	transform: translateX(4px);
}
.mph-dir-steps {
	margin: 0;
	padding-left: 20px;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(44, 44, 44, 0.78);
}
.mph-dir-steps li {
	margin-bottom: 6px;
}
.mph-dir-steps li:last-child {
	margin-bottom: 0;
}

/* ---- Map ---- */
.mph-contact-map-wrap {
	width: 100%;
	max-width: 1000px;
	margin: 44px auto 0;
}
.mph-contact-map iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
	border-radius: 10px;
	box-shadow: 0 14px 36px rgba(38, 47, 60, 0.12);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.mph-contact-details,
	.mph-contact-form-card {
		width: 100% !important;
	}
}
@media (max-width: 767px) {
	.mph-dir-card {
		width: 100% !important;
	}
	.mph-contact-map iframe {
		height: 320px;
	}
	.mph-job-btn-row {
		flex-direction: column !important;
		align-items: stretch !important;
	}
}

/* ============================================================
   VOLUNTEER APPLICATION PAGE + GRAVITY FORMS BRANDING
   ============================================================
   Gravity Forms styling is scoped to .mph-gform-area so it only applies
   where we opt in. Add that class to any container holding a GF shortcode
   to get MPH-styled inputs, buttons, progress bar and validation.
   ============================================================ */

.mph-vol-form-card {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	border: 1px solid rgba(168, 182, 222, 0.55);
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(38, 47, 60, 0.1);
	box-sizing: border-box;
}
.mph-vol-form-lead {
	width: 100%;
}
.mph-vol-help-body a {
	color: var(--mph-gold);
	text-decoration: none;
}
.mph-vol-help-body a:hover {
	text-decoration: underline;
}

/* ---- Labels ---- */
.mph-gform-area .gfield_label,
.mph-gform-area legend.gfield_label {
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: var(--mph-teal);
	margin-bottom: 6px;
}
.mph-gform-area .gfield_required {
	color: var(--mph-gold-deep);
}
.mph-gform-area .gfield_description,
.mph-gform-area .gform_fileupload_rules {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(44, 44, 44, 0.65);
}
.mph-gform-area .ginput_complex label,
.mph-gform-area .gform_fields .gfield_label_before_complex {
	font-size: 13px;
	font-weight: 500;
	color: rgba(44, 44, 44, 0.7);
}

/* ---- Inputs ---- */
.mph-gform-area input[type="text"],
.mph-gform-area input[type="email"],
.mph-gform-area input[type="tel"],
.mph-gform-area input[type="url"],
.mph-gform-area input[type="number"],
.mph-gform-area input[type="password"],
.mph-gform-area textarea,
.mph-gform-area select {
	width: 100%;
	box-sizing: border-box;
	font-family: "Glacial Indifference", sans-serif;
	font-size: 16px;
	color: var(--mph-charcoal);
	background-color: var(--mph-white);
	border: 1px solid rgba(168, 182, 222, 0.9);
	border-radius: 6px;
	padding: 12px 14px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.mph-gform-area input[type="text"]:focus,
.mph-gform-area input[type="email"]:focus,
.mph-gform-area input[type="tel"]:focus,
.mph-gform-area input[type="url"]:focus,
.mph-gform-area input[type="number"]:focus,
.mph-gform-area textarea:focus,
.mph-gform-area select:focus {
	outline: none;
	border-color: var(--mph-gold);
	box-shadow: 0 0 0 3px rgba(250, 166, 28, 0.18);
}
.mph-gform-area textarea {
	min-height: 150px;
	resize: vertical;
}

/* ---- Choices ---- */
.mph-gform-area .gfield_checkbox label,
.mph-gform-area .gfield_radio label {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 16px;
	color: var(--mph-charcoal);
}
.mph-gform-area .gfield_checkbox input[type="checkbox"],
.mph-gform-area .gfield_radio input[type="radio"] {
	accent-color: var(--mph-gold);
	width: 18px;
	height: 18px;
}
.mph-gform-area .gchoice {
	margin-bottom: 8px;
}

/* Inline shift lists (gf_list_inline) and month columns (gf_list_3col). */
.mph-gform-area .gf_list_inline .gfield_checkbox {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 26px;
}
.mph-gform-area .gf_list_2col .gfield_checkbox,
.mph-gform-area .gf_list_3col .gfield_checkbox {
	display: grid;
	gap: 6px 20px;
}
.mph-gform-area .gf_list_2col .gfield_checkbox {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mph-gform-area .gf_list_3col .gfield_checkbox {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ---- Section headers ---- */
.mph-gform-area .gsection {
	border-bottom: 1px solid var(--mph-powder, rgba(168, 182, 222, 0.7));
	padding-bottom: 12px;
	margin-bottom: 8px;
}
.mph-gform-area .gsection_title {
	font-family: "Poppins", sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.2px;
	color: var(--mph-teal);
	margin: 0 0 6px;
}
.mph-gform-area .gsection_description {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(44, 44, 44, 0.7);
}

/* ---- Consent field ---- */
.mph-gform-area .ginput_container_consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.mph-gform-area .gfield_consent_description {
	margin-top: 10px;
	padding: 16px 18px;
	background: rgba(168, 182, 222, 0.14);
	border-left: 3px solid var(--mph-gold);
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(44, 44, 44, 0.78);
	max-height: none;
}

/* ---- Buttons ---- */
.mph-gform-area .gform_button,
.mph-gform-area .gform_next_button,
.mph-gform-area .gform_previous_button,
.mph-gform-area .gform_save_link {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.8px;
	border-radius: 4px;
	padding: 16px 34px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease,
		border-color 0.25s ease, transform 0.2s ease;
}
.mph-gform-area .gform_button,
.mph-gform-area .gform_next_button {
	background: var(--mph-gold);
	color: var(--mph-charcoal);
	border-color: var(--mph-gold);
}
.mph-gform-area .gform_button:hover,
.mph-gform-area .gform_next_button:hover {
	background: var(--mph-gold-deep);
	border-color: var(--mph-gold-deep);
	transform: translateY(-2px);
}
.mph-gform-area .gform_previous_button {
	background: transparent;
	color: var(--mph-teal);
	border-color: var(--mph-teal);
}
.mph-gform-area .gform_previous_button:hover {
	background: var(--mph-teal);
	color: var(--mph-white);
}
.mph-gform-area .gform_save_link {
	display: inline-block;
	background: transparent;
	color: var(--mph-blue);
	border-color: transparent;
	text-decoration: underline;
	text-underline-offset: 3px;
	padding: 16px 10px;
}
.mph-gform-area .gform_save_link:hover {
	color: var(--mph-teal);
}
.mph-gform-area .gform_page_footer,
.mph-gform-area .gform_footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid rgba(168, 182, 222, 0.5);
}

/* ---- Progress bar (steps) ---- */
.mph-gform-area .gf_progressbar_wrapper {
	margin-bottom: 30px;
}
.mph-gform-area .gf_progressbar_title {
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--mph-blue);
	margin-bottom: 10px;
}
.mph-gform-area .gf_progressbar {
	background: rgba(168, 182, 222, 0.3);
	border-radius: 100px;
	overflow: hidden;
}
.mph-gform-area .gf_progressbar_percentage {
	background: var(--mph-gold);
	border-radius: 100px;
}
.mph-gform-area .gf_progressbar_percentage span {
	color: var(--mph-charcoal);
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 700;
}
.mph-gform-area .gf_page_steps {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-bottom: 26px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(168, 182, 222, 0.5);
}
.mph-gform-area .gf_step {
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: rgba(44, 44, 44, 0.45);
}
.mph-gform-area .gf_step_active {
	color: var(--mph-teal);
}
.mph-gform-area .gf_step_completed {
	color: var(--mph-gold-deep);
}

/* ---- Validation ---- */
.mph-gform-area .gform_validation_errors {
	background: rgba(250, 166, 28, 0.1);
	border: 1px solid var(--mph-gold);
	border-radius: 8px;
	box-shadow: none;
}
.mph-gform-area .gform_validation_errors > h2 {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	color: var(--mph-teal);
}
.mph-gform-area .gfield_error input,
.mph-gform-area .gfield_error textarea,
.mph-gform-area .gfield_error select {
	border-color: #c0392b;
}
.mph-gform-area .validation_message {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 14px;
	color: #c0392b;
	background: transparent;
	border: 0;
	padding: 6px 0 0;
}

/* ---- Confirmation ---- */
.mph-gform-area .gform_confirmation_message {
	font-family: "Glacial Indifference", sans-serif;
	font-size: 18px;
	line-height: 1.7;
	color: var(--mph-charcoal);
	text-align: center;
	padding: 20px 0;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
	.mph-gform-area .gf_list_3col .gfield_checkbox {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.mph-gform-area .gf_list_2col .gfield_checkbox {
		grid-template-columns: 1fr;
	}
	.mph-gform-area .gform_page_footer,
	.mph-gform-area .gform_footer {
		flex-direction: column;
		align-items: stretch;
	}
	.mph-gform-area .gform_button,
	.mph-gform-area .gform_next_button,
	.mph-gform-area .gform_previous_button {
		width: 100%;
	}
	.mph-gform-area .gf_page_steps {
		gap: 6px 14px;
	}
	.mph-gform-area .gf_step {
		font-size: 12px;
	}
}

/* ============================================================
   SELECT DROPDOWN ARROW (forms)
   ============================================================
   Selects need an explicit arrow because appearance:none removes the
   native one. The chevron is drawn with two linear-gradients rather than
   an SVG data URI, so this file stays free of markup characters.

   Every background longhand is stated here (image, position, size,
   repeat). Never set the `background` shorthand on these selects: it
   resets repeat to `repeat` and size to `auto`, which makes a themed
   arrow tile across the whole control.
   ============================================================ */

.mph-gform-area select,
.mph-form-slot-wrap select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 42px;
	background-color: var(--mph-white);
	background-image:
		linear-gradient(45deg, transparent 50%, var(--mph-teal) 50%),
		linear-gradient(135deg, var(--mph-teal) 50%, transparent 50%);
	background-position: right 19px center, right 12px center;
	background-size: 7px 7px, 7px 7px;
	background-repeat: no-repeat, no-repeat;
}

/* Hold the arrow through hover and focus, ahead of theme rules that set
   only background-image and would otherwise inherit a tiling repeat. */
.mph-gform-area select:hover,
.mph-gform-area select:focus,
.mph-form-slot-wrap select:hover,
.mph-form-slot-wrap select:focus {
	background-image:
		linear-gradient(45deg, transparent 50%, var(--mph-gold-deep) 50%),
		linear-gradient(135deg, var(--mph-gold-deep) 50%, transparent 50%) !important;
	background-position: right 19px center, right 12px center !important;
	background-size: 7px 7px, 7px 7px !important;
	background-repeat: no-repeat, no-repeat !important;
}

/* Native arrow in legacy Edge. */
.mph-gform-area select::-ms-expand,
.mph-form-slot-wrap select::-ms-expand {
	display: none;
}

/* Multi-selects show a list, not a single value: no arrow, no padding. */
.mph-gform-area select[multiple],
.mph-form-slot-wrap select[multiple] {
	background-image: none;
	padding-right: 14px;
}

/* ============================================================
   SELECT TEXT VISIBILITY (forms)
   ============================================================
   The value shown in a closed select can be hidden by several theme
   properties that outrank a plain `color` declaration:

     -webkit-text-fill-color  overrides color outright in Chrome/Safari
     text-indent              pushes the value out of the control
     text-shadow / opacity    wash it out
     font-size: 0             a trick some themes use to hide native UI
     a fixed height           can clip the line box

   Each is neutralised here. This also covers GF's Month / Day / Year
   prompts on date dropdowns, which are rendered as option text and so
   disappear under exactly the same rules.
   ============================================================ */

.mph-gform-area select,
.mph-form-slot-wrap select {
	color: var(--mph-charcoal) !important;
	-webkit-text-fill-color: var(--mph-charcoal) !important;
	text-indent: 0 !important;
	text-shadow: none !important;
	opacity: 1 !important;
	visibility: visible !important;
	font-size: 16px !important;
	line-height: 1.4 !important;
	height: auto !important;
	min-height: 48px;
	text-transform: none;
}

/* Options render in the native popup: keep them legible independently of
   the control, including on systems using a dark UI theme. */
.mph-gform-area select option,
.mph-form-slot-wrap select option {
	color: var(--mph-charcoal);
	-webkit-text-fill-color: var(--mph-charcoal);
	background-color: var(--mph-white);
	font-size: 16px;
}

/* Placeholder / prompt options read as hint text, not as a value. */
.mph-gform-area select option.gf_placeholder,
.mph-gform-area select option[value=""],
.mph-form-slot-wrap select option[value=""] {
	color: rgba(44, 44, 44, 0.55);
	-webkit-text-fill-color: rgba(44, 44, 44, 0.55);
}

/* Same guarantee for text inputs and textareas, which are vulnerable to
   the identical set of rules. */
.mph-gform-area input[type="text"],
.mph-gform-area input[type="email"],
.mph-gform-area input[type="tel"],
.mph-gform-area input[type="url"],
.mph-gform-area input[type="number"],
.mph-gform-area textarea,
.mph-form-slot-wrap input[type="text"],
.mph-form-slot-wrap input[type="email"],
.mph-form-slot-wrap input[type="tel"],
.mph-form-slot-wrap textarea {
	color: var(--mph-charcoal) !important;
	-webkit-text-fill-color: var(--mph-charcoal) !important;
	text-indent: 0;
	text-shadow: none;
	opacity: 1;
}

/* Visible placeholder text in inputs and textareas. */
.mph-gform-area input::placeholder,
.mph-gform-area textarea::placeholder,
.mph-form-slot-wrap input::placeholder,
.mph-form-slot-wrap textarea::placeholder {
	color: rgba(44, 44, 44, 0.5);
	-webkit-text-fill-color: rgba(44, 44, 44, 0.5);
	opacity: 1;
}

/* ============================================================
   MOBILE GUTTERS -- SAFETY NET
   ============================================================
   Every section is built with left/right padding of 0 and relies on
   Elementor's boxed container for its side gutter. That gutter does not
   always survive on mobile (full-width containers, nested containers, or
   an inner container overriding it), which lets text run to the screen
   edge. These rules guarantee a gutter on every MPH section regardless.

   !important is required: Elementor writes per-element padding with a
   higher-specificity selector than a plain class.

   Deliberately NOT doing overflow-x: hidden on html/body. It is the usual
   quick fix for edge-to-edge text, but a clipping ancestor disables
   position: sticky, which would break the sticky header.
   ============================================================ */

@media (max-width: 767px) {
	/* The hero's own section class already matches this selector, so its
	   inner content container is deliberately not listed -- padding both
	   would double the gutter. box-sizing keeps the padding inside the
	   width rather than widening the section. */
	[class*="mph-section-"],
	.mph-hub-row {
		padding-left: 22px !important;
		padding-right: 22px !important;
		box-sizing: border-box !important;
	}

	/* Elementor wraps boxed-container children in .e-con-inner; zero its
	   sides so the gutter above is not doubled. */
	[class*="mph-section-"] > .e-con-inner,
	.mph-hub-row > .e-con-inner {
		padding-left: 0 !important;
		padding-right: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	/* Inner containers keep their own padding but stay within the gutter. */
	[class*="mph-section-"] .e-con,
	[class*="mph-section-"] .e-con-inner {
		box-sizing: border-box !important;
	}

	/* Cards and inner containers keep their own padding but must never
	   push past the gutter. */
	[class*="mph-section-"] .e-con,
	[class*="mph-section-"] .elementor-widget {
		max-width: 100% !important;
	}

	/* Media and embeds stay inside the gutter. */
	[class*="mph-section-"] img,
	[class*="mph-section-"] iframe,
	[class*="mph-section-"] video,
	[class*="mph-section-"] table {
		max-width: 100% !important;
		height: auto;
	}
	[class*="mph-section-"] iframe {
		width: 100% !important;
	}

	/* Long unbroken strings -- email addresses, URLs, registration numbers --
	   wrap instead of forcing the page wider. */
	[class*="mph-section-"] p,
	[class*="mph-section-"] li,
	[class*="mph-section-"] h1,
	[class*="mph-section-"] h2,
	[class*="mph-section-"] h3,
	[class*="mph-section-"] h4,
	[class*="mph-section-"] a,
	[class*="mph-section-"] span {
		overflow-wrap: break-word;
		word-wrap: break-word;
	}
}

/* Narrow phones: a slightly tighter gutter buys back usable width. */
@media (max-width: 400px) {
	[class*="mph-section-"],
	.mph-hub-row {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}
}