/*
Theme Name: Mera Humsafar
Theme URI: https://merahumsafar.uk/
Author: Codex
Description: Custom WordPress theme for Mera Humsafar with customizable branding, layouts, and conversion-focused templates.
Version: 1.0.0
Text Domain: mera-humsafar
*/

/*
 * Global design tokens.
 * Most visible colors are overwritten from the WordPress Customizer through inline CSS.
 */
:root {
	--mh-color-bg: #ffffff;
	--mh-color-surface: #ffffff;
	--mh-color-surface-soft: #ffffff;
	--mh-color-text: #2d2230;
	--mh-color-muted: #796977;
	--mh-color-border: rgba(45, 34, 48, 0.12);
	--mh-color-primary: #d51077;
	--mh-color-primary-strong: #d51077;
	--mh-color-accent: #eed5ad;
	--mh-color-dark: #0d121c;
	--mh-color-footer: #0a0a0a;
	--mh-registration-card-bg: #ffffff;
	--mh-registration-title-bg: #ffffff;
	--mh-shadow-soft: 0 18px 40px rgba(31, 18, 32, 0.08);
	--mh-shadow-card: 0 26px 80px rgba(31, 18, 32, 0.12);
	--mh-radius-sm: 14px;
	--mh-radius-md: 24px;
	--mh-radius-lg: 36px;
	--mh-container: 1240px;
	--mh-font-heading: "Cormorant Garamond", Georgia, serif;
	--mh-font-body: "Manrope", "Segoe UI", sans-serif;
	--mh-font-home-heading: var(--mh-font-heading);
	--mh-font-home-body: var(--mh-font-body);
	--mh-font-about-heading: var(--mh-font-heading);
	--mh-font-about-body: var(--mh-font-body);
	--mh-font-founder-heading: var(--mh-font-heading);
	--mh-font-founder-body: var(--mh-font-body);
	--mh-font-services-heading: var(--mh-font-heading);
	--mh-font-services-body: var(--mh-font-body);
	--mh-font-contact-heading: var(--mh-font-heading);
	--mh-font-contact-body: var(--mh-font-body);
	--mh-font-payment-heading: var(--mh-font-heading);
	--mh-font-payment-body: var(--mh-font-body);
	--mh-font-registration-heading: var(--mh-font-heading);
	--mh-font-registration-body: var(--mh-font-body);
	--mh-font-blog-heading: var(--mh-font-heading);
	--mh-font-blog-body: var(--mh-font-body);
	--mh-type-body-size: 16px;
	--mh-type-subtitle-size: 18px;
	--mh-mobile-page-title-size: 46px;
	--mh-type-home-title-size: 62px;
	--mh-type-about-title-size: 58px;
	--mh-type-founder-title-size: 58px;
	--mh-type-services-title-size: 60px;
	--mh-services-solution-title-size: 58px;
	--mh-services-process-title-size: 52px;
	--mh-services-selectivity-title-size: 58px;
	--mh-services-who-title-size: 52px;
	--mh-services-confidentiality-title-size: 58px;
	--mh-services-card-title-size: 42px;
	--mh-type-contact-title-size: 56px;
	--mh-type-payment-title-size: 50px;
	--mh-type-registration-title-size: 56px;
	--mh-type-blog-title-size: 44px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--mh-color-text);
	background-color: var(--mh-color-bg);
	background-image: none;
	font-family: var(--mh-font-body);
	font-size: var(--mh-type-body-size);
	line-height: 1.7;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.mh-container {
	width: min(calc(100% - 32px), var(--mh-container));
	margin: 0 auto;
}

.mh-section {
	padding: 72px 0;
}

.mh-section + .mh-section {
	padding-top: 28px;
}

.mh-section-title,
.entry-title,
.page-title {
	margin: 0 0 18px;
	font-family: var(--mh-font-heading);
	font-size: clamp(2.3rem, 4vw, 4.6rem);
	line-height: 0.98;
	font-weight: 600;
	letter-spacing: -0.03em;
}

.page-title {
	text-transform: uppercase;
}

.mh-section-intro,
.entry-content,
.page-content {
	color: var(--mh-color-muted);
}

/* Shared subtitle scale keeps intros consistent while remaining editable in the Customizer. */
.mh-section-intro,
.mh-founder-intro-text,
.mh-enquiry-copy,
.mh-payment-lead,
.mh-payment-checkout-card > p,
.mh-registration-title-block p,
.mh-registration-inline-header p,
.mh-generic-title-block p,
.mh-page-banner p {
	font-size: clamp(0.98rem, var(--mh-type-subtitle-size, 18px), 1.75rem);
	line-height: 1.7;
}

.mh-topbar {
	border-bottom: 1px solid rgba(45, 34, 48, 0.08);
	background: #ffffff;
}

.mh-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
	font-size: 0.95rem;
}

.mh-topbar-contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	color: var(--mh-color-muted);
}

.mh-contact-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(45, 34, 48, 0.08);
}

.mh-contact-chip svg,
.mh-social-links svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.mh-social-links {
	display: flex;
	align-items: center;
	gap: 14px;
}

.mh-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(45, 34, 48, 0.08);
	color: var(--mh-color-muted);
	transition: color 0.2s ease, transform 0.2s ease;
}

.mh-social-links a:hover {
	color: var(--mh-color-primary-strong);
	transform: translateY(-2px);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #ffffff;
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(45, 34, 48, 0.08);
}

.site-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 18px 0;
}

.mh-shell-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: #ffffff;
	border-bottom: 1px solid rgba(45, 34, 48, 0.08);
	backdrop-filter: blur(18px);
	box-shadow: 0 16px 40px rgba(29, 22, 34, 0.06);
	transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

body.home .mh-shell-header,
.mh-front-page .mh-shell-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: transparent !important;
	border-bottom: 0 !important;
	backdrop-filter: none !important;
	box-shadow: none !important;
}

body.home .mh-shell-header-inner,
.mh-front-page .mh-shell-header-inner {
	transform: translateY(var(--mh-home-header-offset-y, var(--mh-header-offset-y, 0)));
}

body.home .mh-shell-header.is-scrolled,
.mh-front-page .mh-shell-header.is-scrolled {
	position: fixed;
	background: rgba(255, 255, 255, 0.96) !important;
	border-bottom: 1px solid rgba(45, 34, 48, 0.08) !important;
	backdrop-filter: blur(18px) !important;
	box-shadow: 0 16px 40px rgba(29, 22, 34, 0.08) !important;
}

.mh-shell-header-inner {
	grid-template-columns: 1fr auto 1fr;
	padding: 26px 0;
	transform: translateY(var(--mh-header-offset-y, 0));
}

.mh-shell-header-left,
.mh-shell-header-right {
	display: flex;
	align-items: center;
}

.mh-shell-header-left {
	justify-content: flex-start;
	gap: 14px;
}

.mh-shell-header-right {
	justify-content: flex-end;
	gap: 16px;
}

.mh-shell-branding {
	justify-content: center;
}

.mh-shell-header-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	line-height: 1;
	padding: 0;
	background: transparent !important;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.mh-shell-header-logo img {
	display: block;
	width: auto;
	max-width: var(--mh-header-logo-width, 132px);
	max-height: var(--mh-header-logo-height, 54px);
	object-fit: contain;
	background: transparent !important;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.mh-shell-logo-mobile {
	display: none;
}

.mh-header-link,
.mh-header-locale {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #d51077;
}

.mh-header-locale {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.mh-header-locale-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.mh-header-locale-icon svg {
	width: 24px;
	height: 24px;
}

.mh-inner-register-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 11px 18px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: #d51077;
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 0 14px 30px rgba(213, 16, 119, 0.18);
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mh-inner-register-button:hover,
.mh-inner-register-button:focus-visible {
	background: #b80b63;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(213, 16, 119, 0.24);
}

.mh-shell-menu-toggle {
	display: inline-flex;
	width: auto;
	height: auto;
	padding: 0;
	background: transparent;
	border: 0;
	color: #d51077;
	box-shadow: none;
}

.mh-shell-menu-toggle:hover,
.mh-shell-menu-toggle:focus-visible {
	color: #ffd3ea;
}

.mh-shell-menu-toggle svg {
	width: 34px;
	height: 34px;
}

.mh-burger-lines {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 34px;
}

.mh-burger-lines span {
	display: block;
	width: 34px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.mh-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 210;
	background: rgba(29, 24, 41, 0.22);
	backdrop-filter: blur(4px);
}

.mh-menu-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 220;
	width: min(420px, 100%);
	height: 100vh;
	padding: 30px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: -24px 0 80px rgba(19, 15, 32, 0.16);
	transform: translateX(100%);
	transition: transform 0.25s ease;
}

.mh-menu-drawer.is-open {
	transform: translateX(0);
}

.mh-menu-drawer-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.mh-menu-close {
	align-self: flex-end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: #d51077;
	font-size: 2.4rem;
	line-height: 1;
	cursor: pointer;
}

.mh-drawer-navigation {
	display: block;
	margin-top: 24px;
}

.mh-drawer-navigation ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
}

.mh-drawer-navigation a {
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--mh-color-primary-strong);
}

.mh-drawer-register-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 28px;
	padding: 15px 20px;
	border-radius: 999px;
	background: #d51077;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	box-shadow: 0 16px 36px rgba(213, 16, 119, 0.18);
}

.mh-drawer-register-button:hover,
.mh-drawer-register-button:focus-visible {
	background: #b80b63;
	color: #ffffff;
}

.mh-drawer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: auto;
	padding-top: 30px;
}

.mh-drawer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 248, 241, 0.9);
	border: 1px solid rgba(45, 34, 48, 0.08);
	color: #d51077;
}

body.mh-menu-open {
	overflow: hidden;
}

.site-branding {
	display: inline-flex;
	align-items: center;
}

.mh-branding-link {
	display: inline-flex;
	align-items: center;
}

.site-branding img {
	max-height: 86px;
	width: auto;
	object-fit: contain;
}

.mh-logo-mobile {
	display: none;
}

.site-branding-text {
	font-family: var(--mh-font-heading);
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: -0.03em;
}

.site-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.site-navigation ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 18px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation a {
	position: relative;
	display: inline-block;
	padding: 8px 0;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mh-color-primary-strong);
}

.site-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 2px;
	transform: scaleX(0);
	transform-origin: center;
	background: var(--mh-color-primary);
	transition: transform 0.2s ease;
}

.site-navigation a:hover::after,
.site-navigation .current-menu-item > a::after,
.site-navigation .current_page_item > a::after {
	transform: scaleX(1);
}

.mh-header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.mh-button,
.mh-button-outline,
.mh-mobile-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--mh-radius-sm);
	font-weight: 800;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

a,
button,
input,
select,
textarea,
.mh-button,
.mh-button-outline,
.mh-inner-register-button,
.mh-drawer-register-button {
	-webkit-tap-highlight-color: transparent;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input[type="button"]:focus:not(:focus-visible),
input[type="submit"]:focus:not(:focus-visible),
.mh-button:focus:not(:focus-visible),
.mh-button-outline:focus:not(:focus-visible),
.mh-inner-register-button:focus:not(:focus-visible),
.mh-drawer-register-button:focus:not(:focus-visible),
.wpcf7-submit:focus:not(:focus-visible),
.forminator-button:focus:not(:focus-visible) {
	outline: none !important;
	box-shadow: none;
}

.mh-button:focus-visible,
.mh-button-outline:focus-visible,
.mh-inner-register-button:focus-visible,
.mh-drawer-register-button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible {
	outline: 2px solid rgba(213, 16, 119, 0.45);
	outline-offset: 3px;
}

.mh-button:hover,
.mh-button-outline:hover,
.mh-mobile-menu-toggle:hover {
	transform: translateY(-1px);
}

.mh-button {
	padding: 14px 22px;
	border: 1px solid transparent;
	background: var(--mh-color-primary-strong);
	color: #fff;
	box-shadow: 0 18px 30px rgba(90, 47, 50, 0.18);
}

.mh-button-outline {
	padding: 13px 22px;
	border: 1px solid var(--mh-color-primary-strong);
	background: transparent;
	color: var(--mh-color-primary-strong);
}

.mh-mobile-menu-toggle {
	display: none;
	width: 52px;
	height: 52px;
	border: 1px solid var(--mh-color-border);
	background: #fff;
	color: var(--mh-color-primary-strong);
}

.mh-shell-header .mh-mobile-menu-toggle,
body.home .mh-mobile-menu-toggle.mh-shell-menu-toggle {
	display: inline-flex;
	width: auto;
	height: auto;
	border: 0;
	background: transparent;
	color: #d51077;
}

.mh-mobile-menu-toggle svg {
	width: 22px;
	height: 22px;
}

.mh-hero {
	padding: 64px 0 42px;
}

.mh-homepage-shell {
	background: #ffffff;
}

.mh-page-shell,
.mh-registration-shell,
.mh-themed-page-shell,
.mh-landing-home,
.mh-hero,
.mh-section,
.mh-footer {
	background-color: #ffffff;
}

/* Client requirement: keep page and form backgrounds white across the site. */
.mh-page-shell,
.mh-themed-page-shell,
.mh-registration-shell,
.mh-entry-card,
.mh-generic-page-card,
.mh-registration-form-card,
.mh-form-shell {
	background-color: #ffffff !important;
	background-image: none !important;
}

.mh-home-hero {
	padding: 0;
	background-color: #f6f2ec;
	background-position: var(--mh-home-shell-position, center center);
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.mh-home-hero.has-background-image {
	background-image:
		linear-gradient(180deg, rgba(234, 229, 220, 0.34), rgba(234, 229, 220, 0.28)),
		var(--mh-home-shell-image);
}

.mh-home-hero-content {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	padding: 150px 0 110px;
	transform: translateY(var(--mh-home-content-offset-y, 0));
}

.mh-home-hero-logo {
	display: flex;
	justify-content: center;
	margin-bottom: 26px;
	transform: translateY(var(--mh-home-logo-offset-y, 0));
}

.mh-home-hero-logo img {
	max-height: var(--mh-home-logo-height, 108px);
	width: var(--mh-home-logo-width, auto);
	object-fit: contain;
}

.mh-home-hero-content h1 {
	margin: 0 0 18px;
	font-family: var(--mh-font-body);
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.25;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d51077;
}

.mh-home-hero-eyebrow {
	margin: 0 auto 14px;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mh-home-eyebrow-color, #ffffff);
}

.mh-home-hero-copy {
	max-width: 42ch;
	margin: 0 auto;
	font-size: 1.05rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mh-home-hero-copy-main {
	margin-top: 0;
	color: var(--mh-home-intro-color, #ffffff);
}

.mh-home-hero-copy-secondary {
	margin-top: 10px;
	color: var(--mh-home-trust-line-color, #ffffff);
}

.mh-home-hero-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 30px;
}

.mh-home-hero-actions .mh-button,
.mh-home-hero-actions .mh-button-outline {
	min-width: 214px;
	padding: 18px 28px;
	border-radius: 0;
	background: var(--mh-home-primary-cta-bg, #5f6d7c);
	border-color: var(--mh-home-primary-cta-bg, #5f6d7c);
	color: var(--mh-home-primary-cta-text, #ffffff);
	box-shadow: none;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mh-home-hero-actions .mh-button:nth-child(2),
.mh-home-hero-actions .mh-button-outline:nth-child(2) {
	background: var(--mh-home-secondary-cta-bg, #5f6d7c);
	border-color: var(--mh-home-secondary-cta-bg, #5f6d7c);
	color: var(--mh-home-secondary-cta-text, #ffffff);
}

.mh-home-hero-actions .mh-button:first-child:hover,
.mh-home-hero-actions .mh-button-outline:first-child:hover {
	background: var(--mh-home-primary-cta-hover-bg, #d51077);
	border-color: var(--mh-home-primary-cta-hover-bg, #d51077);
	color: var(--mh-home-primary-cta-hover-text, #ffffff);
}

.mh-home-hero-actions .mh-button:nth-child(2):hover,
.mh-home-hero-actions .mh-button-outline:nth-child(2):hover {
	background: var(--mh-home-secondary-cta-hover-bg, #d51077);
	border-color: var(--mh-home-secondary-cta-hover-bg, #d51077);
	color: var(--mh-home-secondary-cta-hover-text, #ffffff);
}

@media (hover: none), (pointer: coarse) {
	.mh-home-hero-actions .mh-button,
	.mh-home-hero-actions .mh-button-outline,
	.mh-home-hero-actions .mh-button:focus,
	.mh-home-hero-actions .mh-button:active,
	.mh-home-hero-actions .mh-button:focus-visible,
	.mh-home-hero-actions .mh-button-outline:focus,
	.mh-home-hero-actions .mh-button-outline:active,
	.mh-home-hero-actions .mh-button-outline:focus-visible {
		outline: 0 !important;
		box-shadow: none !important;
		-webkit-tap-highlight-color: transparent;
	}

	.mh-home-hero-actions .mh-button:first-child,
	.mh-home-hero-actions .mh-button:first-child:focus,
	.mh-home-hero-actions .mh-button:first-child:active,
	.mh-home-hero-actions .mh-button:first-child:focus-visible,
	.mh-home-hero-actions .mh-button-outline:first-child,
	.mh-home-hero-actions .mh-button-outline:first-child:focus,
	.mh-home-hero-actions .mh-button-outline:first-child:active,
	.mh-home-hero-actions .mh-button-outline:first-child:focus-visible {
		border-color: var(--mh-home-primary-cta-bg, #5f6d7c) !important;
	}

	.mh-home-hero-actions .mh-button:nth-child(2),
	.mh-home-hero-actions .mh-button:nth-child(2):focus,
	.mh-home-hero-actions .mh-button:nth-child(2):active,
	.mh-home-hero-actions .mh-button:nth-child(2):focus-visible,
	.mh-home-hero-actions .mh-button-outline:nth-child(2),
	.mh-home-hero-actions .mh-button-outline:nth-child(2):focus,
	.mh-home-hero-actions .mh-button-outline:nth-child(2):active,
	.mh-home-hero-actions .mh-button-outline:nth-child(2):focus-visible {
		border-color: var(--mh-home-secondary-cta-bg, #5f6d7c) !important;
	}
}

.mh-landing-home {
	background: #ffffff;
}

body.home .mh-topbar,
body.home .site-header,
.mh-front-page .mh-topbar,
.mh-front-page .site-header {
	background: #ffffff;
}

body.home .site-header {
	border-bottom-color: transparent;
}

body.home .site-header.mh-shell-header {
	background: transparent !important;
	border-bottom: 0 !important;
	backdrop-filter: none !important;
	box-shadow: none !important;
}

body.home .site-header.mh-shell-header.is-scrolled,
.mh-front-page .site-header.mh-shell-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96) !important;
	border-bottom: 1px solid rgba(45, 34, 48, 0.08) !important;
	backdrop-filter: blur(18px) !important;
	box-shadow: 0 16px 40px rgba(29, 22, 34, 0.08) !important;
}

.mh-front-page .site-header {
	border-bottom-color: rgba(45, 34, 48, 0.04);
}

body.home .site-branding img,
.mh-front-page .site-branding img {
	background: transparent;
	box-shadow: none;
}

.mh-landing-hero {
	padding: 36px 0 18px;
	background-color: #ffffff;
	background-position: var(--mh-landing-hero-position, center center);
	background-size: cover;
	background-repeat: no-repeat;
}

.mh-landing-hero.has-background-image {
	background-image:
		linear-gradient(180deg, rgba(18, 14, 28, 0.52), rgba(18, 14, 28, 0.44)),
		var(--mh-landing-hero-image);
}

.mh-landing-enquiry-card {
	max-width: 430px;
	margin: 0 auto;
	padding: 28px 30px 24px;
	border: 1px solid rgba(45, 34, 48, 0.06);
	border-radius: 28px;
	background: rgba(var(--mh-home-hero-card-bg, 255, 255, 255), var(--mh-home-hero-card-opacity, 0.98));
	box-shadow: 0 30px 80px rgba(23, 19, 50, 0.24);
	text-align: center;
	backdrop-filter: blur(var(--mh-home-hero-card-blur, 10px));
}

.mh-landing-enquiry-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.mh-landing-enquiry-logo img {
	max-height: 60px;
	width: auto;
	object-fit: contain;
}

.mh-landing-enquiry-logo-text span {
	font-family: var(--mh-font-heading);
	font-size: 2.8rem;
	line-height: 1;
	color: var(--mh-color-primary-strong);
}

.mh-landing-enquiry-title {
	margin: 0 0 8px;
	font-family: var(--mh-font-heading);
	font-size: var(--mh-home-heading-size, 2.3rem);
	line-height: 1;
	color: var(--mh-color-primary-strong);
}

.mh-landing-enquiry-copy {
	margin: 0 auto 14px;
	margin: 0 auto;
	max-width: 34ch;
	color: var(--mh-color-muted);
	font-size: 1rem;
}

.mh-landing-hero-actions {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.mh-landing-enquiry-form {
	width: 100%;
	margin: 0 auto;
}

.mh-landing-enquiry-form .wpcf7-form {
	display: grid;
	gap: 12px;
}

.mh-landing-enquiry-form .wpcf7-form p {
	margin: 0;
}

.mh-landing-enquiry-form input[type="text"],
.mh-landing-enquiry-form input[type="email"],
.mh-landing-enquiry-form input[type="tel"],
.mh-landing-enquiry-form select,
.mh-landing-enquiry-form textarea {
	padding: 14px 14px;
	border-width: 0 0 1px;
	border-style: solid;
	border-color: rgba(45, 34, 48, 0.16);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font-size: 0.96rem;
}

.mh-landing-enquiry-form input[type="text"]:focus,
.mh-landing-enquiry-form input[type="email"]:focus,
.mh-landing-enquiry-form input[type="tel"]:focus,
.mh-landing-enquiry-form select:focus,
.mh-landing-enquiry-form textarea:focus {
	border-color: rgba(213, 16, 119, 0.46);
	box-shadow: none;
}

.mh-landing-enquiry-form .wpcf7-submit {
	width: 100%;
	margin-top: 10px;
	border-radius: 999px;
	min-height: 54px;
	padding: 12px 20px;
	font-size: 1rem;
}

.mh-hero-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 34px;
	align-items: center;
	padding: 54px;
	border-radius: var(--mh-radius-lg);
	background:
		linear-gradient(135deg, rgba(9, 14, 24, 0.96), rgba(17, 20, 32, 0.92)),
		radial-gradient(circle at top left, rgba(238, 213, 173, 0.18), transparent 30%);
	box-shadow: var(--mh-shadow-card);
	color: #fff;
	overflow: hidden;
}

.mh-hero-card.has-background-image {
	background:
		linear-gradient(135deg, rgba(9, 14, 24, 0.86), rgba(17, 20, 32, 0.84)),
		radial-gradient(circle at top left, rgba(238, 213, 173, 0.12), transparent 30%);
	background-size: cover;
	background-position: center;
}

.mh-hero-card.has-background-image::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		linear-gradient(135deg, rgba(9, 14, 24, 0.68), rgba(17, 20, 32, 0.72)),
		radial-gradient(circle at top left, rgba(238, 213, 173, 0.16), transparent 30%);
}

.mh-hero-copy,
.mh-hero-media {
	position: relative;
	z-index: 1;
}

.mh-hero-copy h1 {
	margin: 0 0 24px;
	font-family: var(--mh-font-heading);
	font-size: clamp(3rem, 5vw, 5.4rem);
	line-height: 0.95;
	font-weight: 600;
	max-width: 11ch;
}

.mh-hero-copy p {
	margin: 0 0 22px;
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.86);
}

.mh-hero-trust-line {
	max-width: 34ch;
	font-size: 1.12rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.94);
	padding-left: 18px;
	border-left: 2px solid rgba(238, 213, 173, 0.5);
}

.mh-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.mh-hero-media {
	display: flex;
	justify-content: center;
}

.mh-hero-media-frame {
	width: min(100%, 460px);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	border: 8px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.08);
}

.mh-hero-media-frame.is-fallback {
	display: grid;
	place-items: center;
	padding: 22px;
	text-align: center;
	font-family: var(--mh-font-heading);
	font-size: 2rem;
}

.mh-hero-media-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mh-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.mh-section-heading-center {
	max-width: 760px;
	margin: 0 auto 28px;
	text-align: center;
}

.mh-trust-strip-band {
	padding-top: 28px;
	padding-bottom: 42px;
}

.mh-trust-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.mh-trust-pill {
	padding: 16px 18px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 241, 0.96));
	box-shadow: var(--mh-shadow-soft);
	font-weight: 800;
	text-align: center;
	color: var(--mh-color-primary-strong);
}

.mh-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 28px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: var(--mh-radius-md);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--mh-shadow-soft);
	min-width: 0;
	overflow: hidden;
}

.mh-card h3 {
	margin: 0 0 12px;
	font-family: var(--mh-font-heading);
	font-size: 2rem;
	line-height: 1;
}

.mh-page-shell {
	padding: 52px 0 64px;
}

.mh-registration-shell {
	padding-top: 28px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.mh-themed-page-shell {
	padding-top: 28px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.mh-registration-shell.has-registration-background-image {
	position: relative;
}

.mh-registration-shell.has-registration-background-image .mh-container,
.mh-themed-page-shell.has-themed-page-background-image .mh-container {
	position: relative;
	z-index: 1;
}

.mh-registration-title-block,
.mh-registration-inline-header,
.mh-generic-title-block,
.mh-generic-inline-header {
	margin-bottom: 28px;
}

.mh-registration-title-block,
.mh-generic-title-block {
	padding: 32px 36px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: var(--mh-radius-lg);
	background: #ffffff;
	backdrop-filter: none;
	box-shadow: var(--mh-shadow-soft);
}

.mh-registration-title-block p,
.mh-registration-inline-header p,
.mh-generic-title-block p,
.mh-generic-inline-header p {
	max-width: 68ch;
	margin: 0;
	color: var(--mh-color-muted);
}

.mh-registration-inline-header .page-title,
.mh-registration-title-block .page-title,
.mh-generic-inline-header .page-title,
.mh-generic-title-block .page-title {
	margin-bottom: 14px;
}

.mh-registration-form-card,
.mh-generic-page-card {
	background: #ffffff;
}

.mh-registration-landing-intro {
	max-width: 900px;
	margin: 0 auto 32px;
	text-align: center;
}

.mh-registration-landing-intro .page-title {
	margin: 0 0 18px;
	color: #d51077;
	font-family: var(--mh-font-registration-heading, var(--mh-font-heading));
	font-size: clamp(2.25rem, calc(var(--mh-type-registration-title-size, 56px) * 0.88), 4.4rem);
	line-height: 0.95;
}

.mh-registration-landing-intro p {
	margin: 0 auto;
	max-width: 820px;
	color: var(--mh-color-text);
	font-size: var(--mh-type-subtitle-size, 18px);
	line-height: 1.75;
}

.mh-registration-landing-intro .mh-registration-free-label {
	margin-top: 16px;
	color: #d51077;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.mh-page-banner {
	margin-bottom: 36px;
	padding: 44px;
	border-radius: var(--mh-radius-lg);
	background: linear-gradient(135deg, rgba(238, 213, 173, 0.6), rgba(255, 255, 255, 0.85));
}

/* Privacy Policy should stay clean and fully white, without the beige page-banner wash. */
.mh-privacy-policy-banner,
.mh-privacy-policy-card {
	background: #ffffff !important;
	background-image: none !important;
}

.mh-privacy-policy-banner {
	/* Privacy pages are text-heavy, so keep the title close to the policy content. */
	margin-bottom: 8px;
	padding: 20px 44px 8px;
	box-shadow: none;
}

.mh-privacy-policy-banner .page-title {
	color: #d51077 !important;
}

body.privacy-policy .mh-page-shell {
	padding-top: 24px;
}

body.privacy-policy .mh-privacy-policy-card {
	margin-top: 0;
}

/* Blog pages use a cleaner white editorial card so the pink heading becomes the focus. */
.blog .mh-page-banner,
.archive .mh-page-banner,
.single-post .mh-page-banner {
	background: #ffffff;
	background-image: none;
	border: 1px solid rgba(45, 34, 48, 0.06);
	box-shadow: var(--mh-shadow-soft);
}

.mh-page-banner p {
	max-width: 70ch;
	margin: 0;
	color: var(--mh-color-muted);
}

.mh-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 28px;
}

.mh-entry-card {
	padding: 34px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: var(--mh-radius-md);
	background: var(--mh-color-surface);
	box-shadow: var(--mh-shadow-soft);
}

.mh-post-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
	gap: 34px;
	align-items: start;
}

.mh-post-list {
	display: grid;
	gap: 24px;
}

.mh-post-card {
	display: grid;
	grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
	gap: 22px;
	padding: 22px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: var(--mh-radius-md);
	background: #ffffff;
	box-shadow: var(--mh-shadow-soft);
}

.mh-post-thumb {
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(238, 213, 173, 0.8), rgba(165, 106, 93, 0.28));
}

.mh-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mh-post-card h2,
.mh-post-card h3 {
	margin: 0 0 12px;
	font-family: var(--mh-font-heading);
	font-size: 2.2rem;
	line-height: 0.98;
}

.mh-post-meta {
	margin-bottom: 12px;
	font-size: 0.94rem;
	color: var(--mh-color-muted);
}

.mh-sidebar {
	display: grid;
	gap: 20px;
	min-width: 0;
}

.mh-post-grid > .mh-sidebar {
	position: sticky;
	top: 108px;
	display: flex;
	flex-direction: column;
	align-self: start;
	max-width: 100%;
}

.mh-sidebar-widgets {
	display: grid;
	gap: 20px;
	min-width: 0;
	overflow: visible;
}

.mh-sidebar-widget,
.widget {
	min-width: 0;
	padding: 24px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: var(--mh-radius-md);
	background: #ffffff;
	box-shadow: var(--mh-shadow-soft);
}

.widget-title {
	margin: 0 0 16px;
	font-family: var(--mh-font-heading);
	font-size: 1.9rem;
}

.widget ul {
	margin: 0;
	padding-left: 18px;
}

.widget li {
	margin-bottom: 10px;
	overflow-wrap: anywhere;
}

.mh-sidebar-cta {
	flex: 0 0 auto;
	z-index: 2;
	overflow: hidden;
	border-color: rgba(213, 16, 119, 0.2);
	background:
		linear-gradient(135deg, rgba(213, 16, 119, 0.08), rgba(255, 255, 255, 0.98) 58%),
		#ffffff;
	box-shadow: 0 -12px 38px rgba(213, 16, 119, 0.12), var(--mh-shadow-soft);
}

.mh-sidebar-cta p {
	margin: 0 0 20px;
	color: var(--mh-color-muted);
	font-size: 0.98rem;
	line-height: 1.65;
}

.mh-sidebar-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 13px 20px;
	border-radius: 999px;
	background: #d51077 !important;
	background-color: #d51077 !important;
	background-image: none !important;
	color: #ffffff !important;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 18px 36px rgba(213, 16, 119, 0.22);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mh-sidebar-cta-button:hover,
.mh-sidebar-cta-button:focus {
	background: #d51077 !important;
	background-color: #d51077 !important;
	background-image: none !important;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 22px 44px rgba(213, 16, 119, 0.28);
}

.entry-content > *:first-child,
.page-content > *:first-child {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.page-content h2,
.page-content h3,
.page-content h4 {
	color: var(--mh-color-primary-strong);
	font-family: var(--mh-font-heading);
}

.entry-content a,
.page-content a {
	color: var(--mh-color-primary-strong);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mh-registration-builder h2 {
	margin: 0 0 18px;
	font-family: var(--mh-font-heading);
	font-size: 2.9rem;
	line-height: 1;
	color: var(--mh-color-primary-strong);
	text-align: center;
}

.mh-services-page {
	background: #ffffff !important;
	background-image: none !important;
}

.mh-services-page .mh-section:first-child {
	padding-top: 12px;
}

.mh-services-intro-section {
	padding-bottom: 34px;
}

.mh-services-intro {
	display: grid;
	justify-items: center;
	gap: 0;
	text-align: center;
}

.mh-services-page-title {
	margin: 0;
	font-family: var(--mh-font-heading);
	font-size: clamp(2.15rem, 4vw, 3.35rem);
	line-height: 1;
	font-weight: 600;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--mh-color-primary-strong);
}

.mh-services-feature-image {
	position: relative;
	width: min(100%, var(--mh-services-image-width, 960px));
	margin: 0 auto;
	overflow: hidden;
	border-radius: var(--mh-services-image-radius, 32px);
	background: #ffffff;
	box-shadow: 0 26px 80px rgba(31, 18, 32, 0.12);
}

.mh-services-feature-image img {
	width: 100%;
	height: var(--mh-services-image-height, 560px);
	object-fit: var(--mh-services-image-fit, contain);
	object-position: var(--mh-services-image-position, center center);
}

.mh-services-feature-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 12, 20, 0.12), rgba(16, 12, 20, 0.36));
	pointer-events: none;
}

.mh-services-image-title {
	position: absolute;
	left: 50%;
	bottom: 34px;
	z-index: 1;
	width: min(calc(100% - 40px), 760px);
	transform: translateX(-50%);
	font-family: var(--mh-font-heading);
	font-size: clamp(2.15rem, 4vw, 3.35rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--mh-color-primary-strong);
	text-shadow: 0 10px 28px rgba(255, 255, 255, 0.42);
}

.mh-services-overview-section {
	padding-top: 18px;
}

.mh-services-overview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.mh-services-overview-card {
	min-height: 215px;
	padding: 36px 34px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(29, 22, 34, 0.07);
}

.mh-services-overview-card h2 {
	margin: 0 0 24px;
	font-family: var(--mh-font-heading);
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 1;
	color: var(--mh-color-text);
}

.mh-services-overview-card p {
	margin: 0;
	font-size: 1.06rem;
	line-height: 1.72;
	color: var(--mh-color-text);
}

.mh-services-page .mh-home-conversion-band,
.mh-services-page .mh-process-band,
.mh-services-page .mh-privacy-band,
.mh-services-page .mh-faq-band,
.mh-services-page .mh-home-editorial-card,
.mh-services-page .mh-home-solution-card,
.mh-services-page .mh-home-selectivity-card,
.mh-services-page .mh-home-confidentiality-card,
.mh-services-page .mh-home-editorial-point,
.mh-services-page .mh-home-solution-points,
.mh-services-page .mh-process-card,
.mh-services-page .mh-card,
.mh-services-page .mh-faq-item,
.mh-services-page .mh-services-overview-card {
	background: #ffffff !important;
	background-image: none !important;
}

.mh-services-benefits-section .mh-section-heading-center {
	margin-bottom: 38px;
}

.mh-services-benefits-section .mh-section-title {
	font-size: clamp(3rem, 6vw, 5.2rem);
	line-height: 0.95;
	color: var(--mh-color-text);
}

.mh-services-benefits-section .mh-section-heading-center p {
	max-width: 760px;
	margin: 16px auto 0;
	color: var(--mh-color-muted);
}

.mh-services-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.mh-services-benefit-card {
	min-height: 215px;
	padding: 36px 34px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(29, 22, 34, 0.07);
}

.mh-services-benefit-card h2 {
	margin: 0 0 24px;
	font-family: var(--mh-font-heading);
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 1;
	color: var(--mh-color-text);
}

.mh-services-benefit-card p {
	margin: 0;
	font-size: 1.06rem;
	line-height: 1.72;
	color: var(--mh-color-text);
}

.mh-process-band {
	background: linear-gradient(180deg, color-mix(in srgb, var(--mh-color-bg) 76%, #ffffff), rgba(255, 255, 255, 0.92));
}

.mh-home-conversion-band {
	background: linear-gradient(180deg, color-mix(in srgb, var(--mh-color-bg) 58%, #ffffff), rgba(255, 255, 255, 0.98));
}

.mh-home-problem-band {
	background: linear-gradient(180deg, color-mix(in srgb, var(--mh-color-bg) 66%, #ffffff), rgba(255, 255, 255, 0.98));
}

.mh-home-editorial-card,
.mh-home-problem-card,
.mh-home-solution-card,
.mh-home-selectivity-card,
.mh-home-confidentiality-card {
	position: relative;
	padding: 36px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: var(--mh-radius-lg);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: var(--mh-shadow-soft);
	overflow: hidden;
}

.mh-home-editorial-card::before,
.mh-home-problem-card::before,
.mh-home-solution-card::before,
.mh-home-selectivity-card::before,
.mh-home-confidentiality-card::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, rgba(213, 16, 119, 0.95), rgba(238, 213, 173, 0.92));
}

.mh-home-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mh-color-primary);
}

.mh-home-kicker::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d51077;
	box-shadow: 0 0 0 6px rgba(213, 16, 119, 0.08);
}

.mh-home-editorial-head {
	max-width: 760px;
	margin-bottom: 28px;
}

.mh-home-editorial-head p,
.mh-home-problem-copy p,
.mh-home-solution-copy p,
.mh-home-confidentiality-copy p,
.mh-home-selectivity-copy p {
	color: var(--mh-color-muted);
}

.mh-home-editorial-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.mh-home-problem-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.mh-home-editorial-point {
	padding: 22px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid rgba(45, 34, 48, 0.08);
}

.mh-home-problem-point,
.mh-home-solution-points {
	padding: 22px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 248, 241, 0.98));
	border: 1px solid rgba(45, 34, 48, 0.08);
}

.mh-home-problem-point {
	min-height: 100%;
}

.mh-home-editorial-point h3 {
	margin: 0 0 10px;
	font-family: var(--mh-font-heading);
	font-size: 2rem;
	line-height: 1;
	color: var(--mh-color-primary-strong);
}

.mh-home-editorial-point p {
	margin: 0;
	color: var(--mh-color-muted);
}

.mh-home-problem-point h3,
.mh-home-solution-points h3 {
	margin: 0 0 10px;
	font-family: var(--mh-font-heading);
	font-size: 2rem;
	line-height: 1;
	color: var(--mh-color-primary-strong);
}

.mh-home-problem-point p,
.mh-home-solution-points p {
	margin: 0;
	color: var(--mh-color-muted);
}

.mh-home-problem-intro {
	max-width: 62ch;
	margin-bottom: 26px;
	font-size: 1.04rem;
}

.mh-home-solution-card {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	gap: 24px;
	align-items: stretch;
	background:
		radial-gradient(circle at top right, rgba(238, 213, 173, 0.18), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.98));
}

.mh-home-solution-points ul {
	margin: 0;
	padding-left: 22px;
}

.mh-home-solution-points li {
	margin-bottom: 10px;
	font-weight: 700;
	color: var(--mh-color-primary-strong);
}

.mh-home-selectivity-card {
	background:
		radial-gradient(circle at top left, rgba(238, 213, 173, 0.22), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 248, 241, 0.98));
}

.mh-home-selectivity-list {
	margin: 22px 0;
	padding-left: 22px;
}

.mh-home-selectivity-list li {
	margin-bottom: 10px;
	font-weight: 700;
	color: var(--mh-color-primary-strong);
}

.mh-services-page .mh-home-selectivity-list li {
	color: var(--mh-services-selectivity-point-color, #d51077);
}

.mh-home-selectivity-list li::marker,
.mh-home-solution-points li::marker,
.mh-privacy-points li::marker {
	color: #d51077;
}

.mh-services-page .mh-home-selectivity-list li::marker {
	color: var(--mh-services-selectivity-point-color, #d51077);
}

/* Services page privacy bullets can be tuned from the Our Services Customizer panel. */
.mh-services-page .mh-privacy-points li {
	color: var(--mh-services-privacy-bullet-color, #d51077);
	font-weight: 700;
}

.mh-services-page .mh-privacy-points li::marker {
	color: var(--mh-services-privacy-bullet-color, #d51077);
}

.mh-home-selectivity-closing {
	margin-bottom: 0;
	font-size: 1.02rem;
}

.mh-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.mh-process-card {
	padding: 28px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: var(--mh-radius-md);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--mh-shadow-soft);
}

.mh-process-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: var(--mh-color-primary-strong);
	color: #fff;
	font-family: var(--mh-font-heading);
	font-size: 1.6rem;
}

.mh-eligibility-card {
	text-align: center;
}

.mh-founder-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 24px;
	align-items: stretch;
}

.mh-founder-feature-copy,
.mh-founder-feature-card,
.mh-final-cta,
.mh-faq-item {
	padding: 28px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: var(--mh-radius-md);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--mh-shadow-soft);
}

.mh-founder-feature-card h3 {
	margin-top: 0;
	font-family: var(--mh-font-heading);
	font-size: 2rem;
	line-height: 1;
}

.mh-faq-band {
	background: linear-gradient(180deg, color-mix(in srgb, var(--mh-color-bg) 72%, #ffffff), rgba(255, 255, 255, 0.96));
}

.mh-privacy-band {
	background: linear-gradient(180deg, color-mix(in srgb, var(--mh-color-bg) 52%, #ffffff), rgba(255, 255, 255, 0.98));
}

.mh-privacy-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 24px;
	align-items: stretch;
}

.mh-home-confidentiality-card {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 24px;
	align-items: stretch;
}

.mh-home-confidentiality-intro {
	font-size: 1.06rem;
	font-weight: 700;
}

.mh-home-confidentiality-points {
	padding: 22px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 248, 241, 0.9), rgba(255, 255, 255, 0.96));
	border: 1px solid rgba(45, 34, 48, 0.08);
}

/* Keep the Our Services privacy points panel fully white to match the premium card set. */
.mh-services-page .mh-home-confidentiality-points {
	background: #ffffff !important;
	background-image: none !important;
}

.mh-privacy-points {
	margin: 0;
	padding-left: 20px;
	color: var(--mh-color-muted);
}

.mh-privacy-points li {
	margin-bottom: 12px;
}

.mh-faq-stack {
	display: grid;
	gap: 16px;
}

.mh-faq-item summary {
	cursor: pointer;
	font-family: var(--mh-font-heading);
	font-size: 1.8rem;
	line-height: 1.05;
	list-style: none;
}

.mh-faq-item summary::-webkit-details-marker {
	display: none;
}

.mh-faq-answer {
	padding-top: 14px;
	color: var(--mh-color-muted);
}

.mh-final-cta {
	text-align: center;
	background:
		radial-gradient(circle at top left, rgba(238, 213, 173, 0.55), transparent 30%),
		linear-gradient(135deg, rgba(255, 248, 241, 0.95), rgba(255, 255, 255, 0.98));
	padding: 36px;
}

.mh-card .mh-button-outline,
.mh-card .mh-button {
	margin-top: auto;
	align-self: flex-start;
}

.mh-registration-form {
	display: grid;
	gap: 22px;
}

.mh-form-shell {
	width: min(100%, 980px);
	margin: 0 auto;
	background: #ffffff;
}

.mh-registration-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 22px;
	align-items: start;
}

.mh-registration-field {
	display: grid;
	gap: 10px;
	align-content: start;
}

.mh-field-full {
	grid-column: 1 / -1;
}

.mh-registration-field label,
.mh-registration-field small {
	color: var(--mh-color-muted);
}

.mh-registration-field label {
	font-weight: 700;
	font-size: 0.96rem;
	letter-spacing: 0.01em;
	color: var(--mh-color-primary-strong);
}

.mh-registration-field label span {
	color: #b42318;
}

.mh-registration-field input,
.mh-registration-field select,
.mh-registration-field textarea,
.search-form input[type="search"],
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	padding: 16px 18px;
	border: 1px solid rgba(45, 34, 48, 0.1);
	border-radius: 18px;
	background: #ffffff;
	color: var(--mh-color-text);
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mh-registration-field select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, rgba(90, 47, 50, 0.72) 50%),
		linear-gradient(135deg, rgba(90, 47, 50, 0.72) 50%, transparent 50%);
	background-position:
		calc(100% - 22px) calc(50% - 3px),
		calc(100% - 16px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 44px;
}

.mh-registration-field input:focus,
.mh-registration-field select:focus,
.mh-registration-field textarea:focus,
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: rgba(165, 106, 93, 0.6);
	box-shadow: 0 0 0 4px rgba(165, 106, 93, 0.1);
}

.search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: stretch;
	width: 100%;
}

.search-form label {
	min-width: 0;
}

.search-form input[type="submit"] {
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 16px;
	background: var(--mh-color-primary-strong);
	color: #fff;
	font-weight: 800;
}

.mh-choice-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	padding: 6px 0 4px;
	min-height: 54px;
}

.mh-choice {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mh-choice:hover {
	transform: translateY(-1px);
	border-color: rgba(165, 106, 93, 0.3);
	box-shadow: 0 10px 20px rgba(31, 18, 32, 0.06);
}

.mh-choice input[type="radio"],
.mh-choice input[type="checkbox"] {
	accent-color: #d51077;
}

.mh-registration-gate-notice,
.mh-registration-gate-copy {
	margin-bottom: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(180, 35, 24, 0.18);
	border-radius: 16px;
	background: rgba(254, 243, 242, 0.95);
	color: #b42318;
	font-weight: 700;
}

.mh-registration-submit {
	width: fit-content;
	min-width: 180px;
	padding: 16px 30px;
	border: 0;
	border-radius: 18px;
	background: #d51077;
	background-image: none;
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.02em;
	box-shadow: 0 20px 36px rgba(213, 16, 119, 0.24);
	cursor: pointer;
}

.mh-registration-builder > .mh-registration-form,
.mh-registration-form {
	position: relative;
}

.mh-registration-builder {
	padding-top: 4px;
}

.mh-registration-builder h2 + .mh-registration-gate-notice,
.mh-registration-builder h2 + .mh-form-success {
	margin-top: 6px;
}

.mh-registration-field small {
	font-size: 0.84rem;
	line-height: 1.5;
}

.mh-registration-submit:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.mh-form-success {
	margin-bottom: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(2, 122, 72, 0.18);
	border-radius: 16px;
	background: rgba(236, 253, 243, 0.95);
	color: #027a48;
	font-weight: 700;
}

.mh-footer {
	margin-top: 48px;
	padding: 70px 0 20px;
	background: linear-gradient(180deg, color-mix(in srgb, var(--mh-color-bg) 54%, #ffffff), rgba(255, 248, 249, 0.92));
	border-top: 1px solid rgba(45, 34, 48, 0.08);
}

.mh-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(180px, 0.7fr));
	gap: 34px;
}

.mh-footer-title {
	margin: 0 0 20px;
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #000000;
}

.mh-footer-about,
.mh-footer-column {
	color: var(--mh-color-text);
}

.mh-footer-column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mh-footer-column li {
	margin-bottom: 14px;
}

.mh-footer-column a {
	color: var(--mh-color-text);
}

.mh-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(45, 34, 48, 0.08);
	font-size: 0.95rem;
}

.mh-footer-policy-link {
	font-weight: 700;
	color: var(--mh-color-primary-strong);
}

.mh-footer-credit {
	display: inline-flex;
	gap: 4px;
	margin-left: 6px;
}

.mh-footer-credit a {
	font-weight: 700;
	color: var(--mh-color-primary-strong);
}

.mh-whatsapp-float {
	display: none !important;
}

/* Hide floating WhatsApp widgets while keeping footer social links visible. */
#ht-ctc-chat,
.ht-ctc-chat,
.ht_ctc_chat,
.ctc-chat,
.joinchat {
	display: none !important;
}

.mh-empty-state {
	padding: 22px;
	border: 1px dashed var(--mh-color-border);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.7);
	color: var(--mh-color-muted);
}

.mh-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 12px;
}

.mh-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--mh-color-border);
	border-radius: 12px;
	background: #fff;
}

.mh-pagination .current {
	border-color: var(--mh-color-primary-strong);
	background: var(--mh-color-primary-strong);
	color: #fff;
}

.mh-founder-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.5fr) minmax(0, 0.7fr);
	gap: 34px;
	align-items: start;
}

.mh-founder-story-layout {
	grid-template-columns: minmax(280px, var(--mh-founder-story-image-column, 46%)) minmax(0, 1fr);
	gap: var(--mh-founder-story-gap, 34px);
}

.mh-founder-photo img,
.mh-founder-photo .mh-empty-state {
	width: 100%;
	border-radius: 28px;
	box-shadow: var(--mh-shadow-soft);
}

.mh-founder-story-photo img,
.mh-founder-story-photo .mh-empty-state {
	height: var(--mh-founder-story-image-height, 620px);
	border-radius: var(--mh-founder-story-image-radius, 28px);
	object-fit: var(--mh-founder-story-image-fit, cover);
	object-position: var(--mh-founder-story-image-position, center center);
}

.mh-founder-story-photo .mh-empty-state {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	padding: 28px;
	background: #ffffff;
	color: var(--mh-color-muted);
	text-align: center;
}

.mh-founder-intro {
	padding-top: 24px;
}

.mh-founder-role {
	margin: 0 0 12px;
	font-size: 1.2rem;
	color: var(--mh-color-muted);
}

.mh-founder-story-layout .mh-founder-role {
	margin: 12px 0 0;
	font-size: clamp(1rem, var(--mh-founder-role-size, 40px), 6rem) !important;
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: none !important;
	color: var(--mh-founder-story-text-color, var(--mh-color-muted));
}

.mh-founder-intro-text {
	margin: 0 0 16px;
	color: var(--mh-color-muted);
}

.mh-founder-content {
	grid-column: 1 / -1;
}

.mh-founder-story {
	display: grid;
	gap: 18px;
}

.mh-founder-story p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--mh-founder-story-text-color, var(--mh-color-text));
}

.mh-founder-page {
	background: #ffffff !important;
	background-image: none !important;
}

.mh-founder-page .mh-container,
.mh-founder-page .mh-founder-layout,
.mh-founder-page .mh-founder-content,
.mh-founder-page .mh-generic-title-block,
.mh-founder-page .mh-generic-page-card {
	background: var(--mh-founder-story-card-bg, #ffffff) !important;
	background-image: none !important;
}

.mh-founder-story-card {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0;
	background: transparent;
}

.mh-founder-story-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
	gap: clamp(28px, 5vw, 70px);
	align-items: center;
	margin-bottom: clamp(34px, 5vw, 62px);
}

.mh-founder-story-header {
	padding: clamp(34px, 5vw, 66px);
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: 34px;
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(29, 22, 34, 0.06);
}

.mh-founder-story-kicker {
	margin: 0 0 18px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mh-founder-story-kicker-color, var(--mh-color-primary-strong));
}

.mh-founder-story-layout .page-title {
	color: var(--mh-founder-story-heading-color, var(--mh-color-primary-strong));
}

.mh-founder-title-intro {
	margin: 18px 0 0;
	max-width: 660px;
	color: var(--mh-founder-story-text-color, var(--mh-color-muted));
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.7;
}

.mh-founder-story-header h1 {
	margin: 0;
	font-family: var(--mh-font-heading);
	font-size: clamp(2.7rem, 5.8vw, 5.2rem);
	font-weight: 600;
	line-height: 0.96;
	letter-spacing: -0.035em;
	color: var(--mh-color-text);
}

.mh-founder-story-rule {
	display: block;
	width: 118px;
	height: 4px;
	margin-top: var(--mh-founder-title-rule-gap, 18px);
	background: linear-gradient(90deg, var(--mh-color-primary-strong), var(--mh-color-accent));
}

.mh-founder-story-image {
	overflow: hidden;
	margin: 0;
	border-radius: var(--mh-founder-story-image-radius, 34px);
	background: #ffffff;
	box-shadow: 0 32px 90px rgba(29, 22, 34, 0.14);
}

.mh-founder-story-image img {
	width: 100%;
	height: var(--mh-founder-story-image-height, 620px);
	object-fit: var(--mh-founder-story-image-fit, cover);
	object-position: var(--mh-founder-story-image-position, center center);
}

.mh-founder-story-copy {
	display: grid;
	gap: clamp(24px, 3.5vw, 42px);
	padding: clamp(34px, 6vw, 72px);
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: 0 0 34px 34px;
	background: #f6f4f5;
	box-shadow: 0 24px 70px rgba(29, 22, 34, 0.06);
}

.mh-founder-story-copy p {
	margin: 0;
	font-family: var(--mh-font-body);
	font-size: clamp(1.25rem, 2.2vw, 2rem);
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: 0.005em;
	color: #111111;
}

.mh-founder-story[style] p {
	font-size: inherit;
	font-family: var(--mh-font-founder-body, var(--mh-font-body));
	font-weight: 400;
	line-height: 1.85;
	letter-spacing: 0;
	color: var(--mh-founder-story-text-color, var(--mh-color-text));
}

.mh-founder-editor-content {
	margin-top: 56px;
	padding-top: 34px;
	border-top: 1px solid rgba(45, 34, 48, 0.12);
}

.mh-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
	gap: 28px;
	align-items: start;
}

.mh-contact-page {
	padding-top: 0;
	background: #ffffff !important;
	background-image: none !important;
}

.mh-enquiry-page {
	padding: 76px 0 96px;
	background: #ffffff !important;
	background-image: none !important;
}

.mh-enquiry-intro {
	width: min(100%, 760px);
	margin: 0 auto 46px;
	text-align: center;
	color: var(--mh-color-text);
}

.mh-enquiry-monogram {
	margin: 0 0 8px;
	font-family: var(--mh-font-heading);
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	line-height: 1;
	color: var(--mh-color-primary-strong);
}

.mh-enquiry-intro h1 {
	margin: 0;
	font-family: var(--mh-font-heading);
	font-size: clamp(2.15rem, 4vw, 3.35rem);
	line-height: 1;
	text-transform: uppercase;
	color: var(--mh-color-primary-strong);
}

.mh-enquiry-rule {
	display: block;
	width: 86px;
	height: 4px;
	margin: 22px auto 24px;
	background: var(--mh-color-accent);
}

.mh-enquiry-copy {
	max-width: 650px;
	margin: 0 auto 20px;
	font-size: 1.1rem;
	line-height: 1.65;
	color: #000000;
}

.mh-enquiry-contact-lines {
	display: grid;
	gap: 8px;
	justify-items: center;
	margin-top: 18px;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--mh-color-primary-strong);
}

.mh-enquiry-contact-lines p {
	margin: 0;
}

.mh-enquiry-contact-lines span {
	margin-right: 6px;
}

.mh-enquiry-contact-lines a {
	color: inherit;
	text-decoration: none;
}

.mh-enquiry-form-section {
	width: min(100%, 760px);
	margin: 0 auto;
}

.mh-enquiry-form-card {
	padding: 34px;
	border: 0;
	border-radius: 0;
	background: #d51077 !important;
	box-shadow: none;
}

.mh-enquiry-form-card .mh-cf7-shell,
.mh-enquiry-form-card .mh-cf7-shell .wpcf7-form {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
}

.mh-enquiry-form-card .wpcf7-form input[type="text"],
.mh-enquiry-form-card .wpcf7-form input[type="email"],
.mh-enquiry-form-card .wpcf7-form input[type="tel"],
.mh-enquiry-form-card .wpcf7-form input[type="number"],
.mh-enquiry-form-card .wpcf7-form select,
.mh-enquiry-form-card .wpcf7-form textarea {
	border: 0;
	border-radius: 8px;
	background: #ffffff;
	color: #000000;
	box-shadow: none;
}

.mh-enquiry-form-card .wpcf7-form textarea {
	min-height: 142px;
}

.mh-enquiry-form-card .wpcf7-form input::placeholder,
.mh-enquiry-form-card .wpcf7-form textarea::placeholder {
	color: #2d2230;
	opacity: 0.86;
}

.mh-enquiry-form-card .mh-cf7-shell .wpcf7-submit,
.mh-enquiry-form-card .wpcf7 .wpcf7-submit {
	margin-left: auto;
	min-width: 116px;
	border-radius: 6px;
	background: #ffffff;
	color: var(--mh-color-primary);
	box-shadow: none;
}

.mh-contact-hero {
	padding: 90px 0 96px;
	background-color: #2d2230;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.mh-contact-hero-inner {
	max-width: 720px;
	padding: 34px 38px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--mh-radius-lg);
	background: rgba(12, 14, 22, 0.26);
	backdrop-filter: blur(8px);
	color: #fff;
}

.mh-contact-hero-badge {
	display: inline-flex;
	margin-bottom: 18px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mh-contact-hero .page-title {
	color: #fff;
	margin-bottom: 16px;
}

.mh-contact-hero p {
	margin: 0;
	max-width: 60ch;
	color: rgba(255, 255, 255, 0.84);
}

.mh-contact-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
	gap: 30px;
	margin-top: -54px;
	align-items: start;
}

.mh-contact-showcase-form {
	scroll-margin-top: 90px;
}

.mh-contact-copy-card,
.mh-contact-form-card {
	height: 100%;
}

.mh-contact-copy-card {
	padding: 36px;
}

.mh-contact-copy-head {
	margin-bottom: 28px;
}

.mh-contact-copy-head h2,
.mh-contact-form-head h2 {
	margin: 0 0 12px;
	font-family: var(--mh-font-heading);
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 0.98;
	color: var(--mh-color-primary-strong);
}

.mh-contact-copy-head p,
.mh-contact-form-head p {
	margin: 0;
	color: var(--mh-color-muted);
}

.mh-contact-details-grid {
	display: grid;
	grid-template-columns: minmax(230px, 0.9fr) minmax(300px, 1.1fr);
	gap: 20px;
}

.mh-contact-detail-item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	padding: 22px;
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.72);
}

.mh-contact-detail-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(213, 16, 119, 0.08);
	color: var(--mh-color-primary);
}

.mh-contact-detail-icon svg {
	width: 18px;
	height: 18px;
}

.mh-contact-detail-item h3 {
	margin: 0 0 10px;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--mh-color-primary);
}

.mh-contact-detail-item p {
	margin: 0;
	min-width: 0;
	color: #000000;
}

.mh-contact-detail-item a {
	display: inline;
	max-width: 100%;
	color: #000000;
	font-size: 0.98rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.mh-contact-detail-email a {
	font-size: clamp(0.78rem, 0.82vw, 0.92rem);
	white-space: nowrap;
}

.mh-contact-detail-item.mh-field-full {
	grid-template-columns: minmax(0, 1fr);
}

.mh-contact-form-card {
	padding: 36px;
	box-shadow: 0 26px 80px rgba(31, 18, 32, 0.16);
}

.mh-contact-form-head {
	margin-bottom: 22px;
}

.mh-contact-form-card .mh-cf7-shell {
	width: 100%;
}

.mh-payment-page {
	background: #ffffff !important;
	background-image: none !important;
}

.mh-payment-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: start;
	max-width: 1240px;
	margin: 0 auto;
}

.mh-payment-copy-card,
.mh-payment-checkout-card {
	border: 1px solid rgba(45, 34, 48, 0.08);
	border-radius: 34px;
	background: var(--mh-payment-content-bg, #ffffff);
	box-shadow: 0 28px 90px rgba(31, 18, 32, 0.08);
}

.mh-payment-copy-card {
	padding: clamp(30px, 5vw, 64px);
}

.mh-payment-checkout-card {
	position: sticky;
	top: 116px;
	padding: clamp(26px, 4vw, 42px);
	background: var(--mh-payment-checkout-bg, #ffffff);
}

.mh-payment-kicker {
	margin: 0 0 22px;
	font-family: var(--mh-font-heading);
	font-size: clamp(3rem, 5.8vw, 5.8rem);
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: -0.04em;
	color: var(--mh-color-text);
}

.mh-payment-copy-card h1,
.mh-payment-copy-card h2,
.mh-payment-checkout-card h2 {
	margin: 0;
	color: var(--mh-color-text);
	font-family: var(--mh-font-heading);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.06;
}

.mh-payment-copy-card h1 {
	max-width: 780px;
	font-size: clamp(2.25rem, 4.1vw, 4.4rem);
}

.mh-payment-lead {
	margin-top: 34px;
	max-width: 850px;
	color: var(--mh-color-muted);
	font-family: var(--mh-font-body);
	font-size: clamp(1.1rem, 1.55vw, 1.35rem);
	line-height: 1.85;
	letter-spacing: 0;
}

.mh-payment-lead p,
.mh-payment-terms p {
	margin: 0;
}

.mh-payment-includes,
.mh-payment-terms {
	margin-top: clamp(38px, 5vw, 62px);
}

.mh-payment-includes h2,
.mh-payment-terms h2 {
	margin-bottom: 20px;
	font-size: clamp(1.9rem, 3.1vw, 3.2rem);
}

.mh-payment-includes h2,
.mh-payment-terms h2 {
	color: var(--mh-payment-accent, var(--mh-color-primary));
}

.mh-payment-includes ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding-left: 1.35em;
	color: var(--mh-color-text);
	font-family: var(--mh-font-body);
	font-size: clamp(1.05rem, 1.45vw, 1.25rem);
	line-height: 1.75;
	letter-spacing: 0;
}

.mh-payment-includes li::marker {
	color: var(--mh-payment-accent, var(--mh-color-primary));
}

.mh-payment-terms {
	padding-top: clamp(28px, 4vw, 44px);
	border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.mh-payment-terms p {
	max-width: 920px;
	color: var(--mh-color-muted);
	font-family: var(--mh-font-body);
	font-size: clamp(1.02rem, 1.35vw, 1.18rem);
	line-height: 1.85;
	letter-spacing: 0;
}

.mh-payment-terms p + p {
	margin-top: 32px;
}

.mh-payment-checkout-card h2 {
	font-family: var(--mh-font-heading);
	font-size: clamp(2.1rem, 3.2vw, 3.4rem);
	color: var(--mh-payment-accent, var(--mh-color-primary));
}

.mh-payment-checkout-card > p {
	margin: 12px 0 24px;
	color: var(--mh-color-muted);
	font-size: 1rem;
}

.mh-payment-embed {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.mh-payment-placeholder {
	padding: 28px;
	border: 1px dashed rgba(45, 34, 48, 0.22);
	border-radius: 20px;
	background: #ffffff;
	color: var(--mh-color-muted);
	text-align: center;
}

.mh-payment-embed .forminator-ui {
	margin: 0 !important;
}

.mh-payment-embed .forminator-row {
	margin-bottom: 16px !important;
}

.mh-payment-embed .forminator-input,
.mh-payment-embed .forminator-textarea,
.mh-payment-embed .forminator-select2 + .select2 .select2-selection {
	min-height: 58px !important;
	border: 1px solid rgba(45, 34, 48, 0.16) !important;
	border-radius: 14px !important;
	background: #ffffff !important;
	color: #111111 !important;
	box-shadow: none !important;
}

.mh-payment-embed .forminator-button-submit,
.mh-payment-embed .forminator-button-paypal,
.mh-payment-embed .forminator-button-stripe {
	width: 100% !important;
	min-height: 56px !important;
	border-radius: 14px !important;
	background: var(--mh-payment-accent, var(--mh-color-primary)) !important;
	color: #ffffff !important;
	font-weight: 800 !important;
	letter-spacing: 0.02em !important;
}

/* PayPal renders its own branded buttons; keep the wrapper neutral so the
 * required PayPal yellow/black checkout UI does not sit on a pink strip. */
.mh-payment-embed .forminator-button-paypal,
.mh-payment-embed .forminator-paypal,
.mh-payment-embed .forminator-paypal-field,
.mh-payment-embed .forminator-field-paypal {
	min-height: auto !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: inherit !important;
}

.mh-payment-embed .forminator-button-paypal iframe,
.mh-payment-embed .forminator-paypal iframe,
.mh-payment-embed .forminator-paypal-field iframe,
.mh-payment-embed .forminator-field-paypal iframe {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	border-radius: 12px !important;
	overflow: hidden !important;
}

.mh-payment-embed .forminator-response-message,
.mh-payment-embed .forminator-error-message {
	margin: 0 0 18px !important;
	padding: 16px 18px !important;
	border-radius: 14px !important;
	font-family: var(--mh-font-body) !important;
	font-size: 0.95rem !important;
	line-height: 1.45 !important;
}

.mh-payment-embed .forminator-response-message.forminator-error,
.mh-payment-embed .forminator-error-message {
	border-left: 4px solid #d51077 !important;
	background: #fff2f7 !important;
	color: #5c1738 !important;
}

.mh-payment-embed .forminator-edit-module {
	display: none !important;
}

.mh-cf7-shell,
.mh-registration-builder {
	width: min(100%, 900px);
	margin: 0 auto;
}

/* Keep all form cards pure white; this overrides older warm-tinted card backgrounds. */
.mh-registration-shell,
.mh-themed-page-shell,
.mh-payment-shell,
.mh-registration-form-card,
.mh-generic-page-card,
.mh-contact-form-card,
.mh-form-shell,
.mh-registration-builder,
.mh-registration-form,
.mh-cf7-shell,
.mh-cf7-shell .wpcf7-form {
	background: #ffffff !important;
	background-color: #ffffff !important;
	background-image: none !important;
}

.mh-cf7-shell .wpcf7-form {
	display: grid;
	gap: 18px;
}

/* The contact enquiry design intentionally uses a pink panel with white fields. */
.mh-enquiry-form-card.mh-contact-form-card {
	background: #d51077 !important;
	background-color: #d51077 !important;
	background-image: none !important;
}

.mh-enquiry-form-card .mh-cf7-shell,
.mh-enquiry-form-card .mh-cf7-shell .wpcf7-form {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
}

body .mh-contact-page .mh-enquiry-form-section .mh-enquiry-form-card,
body .mh-contact-page .mh-enquiry-form-section .mh-contact-form-card {
	background: #d51077 !important;
	background-color: #d51077 !important;
	background-image: none !important;
}

.mh-cf7-shell .wpcf7-form p {
	margin: 0 0 18px;
}

.mh-cf7-shell .wpcf7-form p:last-of-type {
	margin-bottom: 0;
}

.mh-cf7-shell .wpcf7-form-control-wrap {
	display: block;
}

.mh-cf7-shell .wpcf7-form br {
	display: none;
}

.mh-cf7-shell .wpcf7-submit,
.wpcf7 .wpcf7-submit,
.search-form input[type="submit"],
.wp-block-search__button,
.widget_search .search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 16px 30px;
	border: 0;
	border-radius: 18px;
	background: #d51077;
	background-image: none;
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.02em;
	box-shadow: 0 20px 36px rgba(213, 16, 119, 0.24);
	cursor: pointer;
}

.mh-registration-landing-page .wpcf7-submit,
.mh-registration-landing-page .wpcf7 .wpcf7-submit,
.mh-registration-landing-page input[type="submit"] {
	border-radius: 0;
	background: var(--mh-registeration-landing-button-bg, #5f6d7c) !important;
	background-color: var(--mh-registeration-landing-button-bg, #5f6d7c) !important;
	background-image: none !important;
	color: var(--mh-registeration-landing-button-text, #ffffff) !important;
	box-shadow: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.mh-registration-landing-page .wpcf7-submit:hover,
.mh-registration-landing-page .wpcf7-submit:focus,
.mh-registration-landing-page .wpcf7 .wpcf7-submit:hover,
.mh-registration-landing-page .wpcf7 .wpcf7-submit:focus,
.mh-registration-landing-page input[type="submit"]:hover,
.mh-registration-landing-page input[type="submit"]:focus {
	background: var(--mh-registeration-landing-button-hover-bg, #d51077) !important;
	background-color: var(--mh-registeration-landing-button-hover-bg, #d51077) !important;
	color: var(--mh-registeration-landing-button-hover-text, #ffffff) !important;
}

.mh-sidebar .search-form input[type="search"],
.mh-sidebar .wp-block-search__input,
.mh-sidebar .widget_search input[type="search"] {
	min-width: 0;
	width: 100%;
}

.mh-sidebar .search-form input[type="submit"],
.mh-sidebar .wp-block-search__button,
.mh-sidebar .widget_search .search-submit {
	min-width: 104px;
	max-width: 100%;
	padding-inline: 16px;
	white-space: nowrap;
}

.wp-block-search__button:hover,
.wp-block-search__button:focus,
.widget_search .search-submit:hover,
.widget_search .search-submit:focus,
.search-form input[type="submit"]:hover,
.search-form input[type="submit"]:focus {
	background: #d51077;
	background-image: none;
	color: #ffffff;
	transform: translateY(-1px);
}

.mh-cf7-shell .wpcf7 form .wpcf7-response-output {
	margin-top: 18px;
}

.mh-cf7-shell .wpcf7-select,
.mh-cf7-shell .wpcf7-text,
.mh-cf7-shell .wpcf7-email,
.mh-cf7-shell .wpcf7-tel,
.mh-cf7-shell .wpcf7-textarea {
	margin: 0;
}

.mh-cf7-shell .wpcf7-spinner {
	display: inline-block;
	margin-left: 14px;
}

.mh-cf7-shell .wpcf7-not-valid-tip {
	margin-top: 8px;
	color: #b42318;
	font-size: 0.9rem;
}

.mh-cf7-shell .wpcf7-response-output {
	margin: 12px 0 0;
	padding: 14px 16px;
	border-radius: 16px;
}

.mh-registration-builder,
.mh-cf7-shell {
	position: relative;
}

@media (max-width: 1024px) {
	.mh-hero-card,
	.mh-post-grid,
	.mh-footer-grid,
	.mh-card-grid,
	.mh-trust-strip,
	.mh-process-grid,
	.mh-home-problem-grid,
	.mh-founder-feature,
	.mh-privacy-layout,
	.mh-home-editorial-grid,
	.mh-home-solution-card,
	.mh-home-confidentiality-card,
	.mh-founder-layout,
	.mh-contact-layout,
	.mh-contact-showcase,
	.mh-contact-details-grid {
		grid-template-columns: 1fr;
	}

	.mh-post-grid > .mh-sidebar {
		position: static;
		display: grid;
		max-height: none;
		overflow: visible;
		padding-right: 0;
	}

	.mh-sidebar-widgets {
		overflow: visible;
		padding-right: 0;
	}

	.mh-contact-detail-email a {
		white-space: normal;
	}

	.mh-post-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.site-header-inner {
		grid-template-columns: 1fr auto;
	}

	.site-navigation {
		display: none;
		grid-column: 1 / -1;
		justify-content: flex-start;
		padding-top: 6px;
	}

	/* The off-canvas drawer also uses .site-navigation, so keep it visible inside the opened drawer on mobile. */
	.mh-menu-drawer .site-navigation,
	.mh-menu-drawer .mh-drawer-navigation {
		display: block !important;
		padding-top: 0;
	}

	.site-navigation.is-open {
		display: block;
	}

	.site-navigation ul {
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.mh-header-actions .mh-button {
		display: none;
	}

	.mh-mobile-menu-toggle {
		display: inline-flex;
	}

	.mh-shell-header-inner {
		grid-template-columns: auto 1fr auto;
		padding: 16px 0;
	}

	.mh-shell-header-left {
		gap: 10px;
	}

	.mh-shell-header-logo img {
		max-width: min(var(--mh-header-logo-width, 132px), 94px);
		max-height: min(var(--mh-header-logo-height, 54px), 42px);
	}

	.mh-shell-branding {
		justify-content: center;
	}

	.mh-header-locale {
		display: none;
	}

	.mh-inner-register-button {
		min-height: 36px;
		padding: 9px 13px;
		font-size: 0.68rem;
		letter-spacing: 0.07em;
		box-shadow: 0 10px 22px rgba(213, 16, 119, 0.14);
	}

	.mh-footer-bottom,
	.mh-topbar-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.mh-topbar-contact {
		width: 100%;
	}

	.mh-logo-desktop {
		display: none;
	}

	.mh-logo-mobile {
		display: block;
		max-height: 64px;
	}
}

@media (max-width: 640px) {
	.mh-home-hero {
		min-height: 88vh;
	}

	.mh-home-hero-content {
		padding: 120px 0 70px;
	}

	.mh-home-hero-logo img {
		max-height: 72px;
	}

	.mh-home-hero-content h1 {
		font-size: 1.8rem;
		line-height: 1.3;
	}

	.mh-home-hero-copy {
		font-size: 0.84rem;
	}

	.mh-home-hero-actions {
		flex-direction: column;
	}

	.mh-menu-drawer {
		width: 100%;
		padding: 22px;
		overflow-y: auto;
	}

	.mh-menu-drawer-inner {
		min-height: 100%;
		height: auto;
	}

	.mh-menu-drawer .mh-drawer-navigation .menu,
	.mh-menu-drawer .mh-drawer-navigation ul {
		display: flex !important;
		flex-direction: column;
		gap: 18px;
		margin: 64px 0 0;
		padding: 0;
		list-style: none;
	}

	.mh-menu-drawer a {
		display: inline-flex;
		font-size: 1.35rem;
		line-height: 1.25;
		color: var(--mh-color-primary-strong);
	}

	.mh-menu-drawer .mh-drawer-register-button {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 100%;
		margin-top: 26px;
		padding: 15px 20px;
		border-radius: 999px;
		background: #d51077;
		color: #ffffff !important;
		font-size: 0.92rem;
		font-weight: 800;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		box-shadow: 0 16px 36px rgba(213, 16, 119, 0.18);
	}

	.mh-menu-drawer .mh-drawer-socials {
		display: flex !important;
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
		margin: 28px 0 0;
		padding: 14px 0 max(14px, env(safe-area-inset-bottom));
		background: rgba(255, 255, 255, 0.96);
		border-radius: 999px;
	}

	.mh-menu-drawer .mh-drawer-socials a {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		font-size: 1rem;
		color: var(--mh-color-primary);
	}

	.mh-menu-drawer .mh-drawer-socials svg {
		width: 24px;
		height: 24px;
	}

	.mh-header-link {
		font-size: 0.74rem;
	}

	.mh-landing-hero {
		padding: 14px 0 8px;
	}

	.mh-landing-enquiry-card {
		max-width: 100%;
		padding: 14px 12px 12px;
		border-radius: 20px;
	}

	.mh-landing-enquiry-logo img {
		max-height: 36px;
	}

	.mh-landing-enquiry-title {
		font-size: 1.5rem;
	}

	.mh-landing-enquiry-copy {
		font-size: 0.8rem;
	}

	.mh-landing-enquiry-copy {
		font-size: 0.96rem;
	}

	.mh-topbar {
		display: none;
	}

	body.home .site-header,
	.mh-front-page .site-header {
		position: relative;
	}

	body.home .site-header.mh-shell-header {
		position: absolute;
	}

	body.home .site-header-inner,
	.mh-front-page .site-header-inner {
		padding: 16px 0;
	}

	body.home .site-branding img,
	.mh-front-page .site-branding img {
		max-height: 72px;
	}

	.mh-section {
		padding: 52px 0;
	}

	.mh-section + .mh-section {
		padding-top: 16px;
	}

	.mh-hero-card,
	.mh-page-banner,
	.mh-registration-title-block,
	.mh-generic-title-block,
	.mh-registration-form-card,
	.mh-generic-page-card,
	.mh-entry-card,
	.mh-post-card,
	.mh-card,
	.mh-sidebar-widget,
	.widget {
		padding: 22px;
	}

	.mh-card-grid,
	.mh-faq-stack,
	.mh-post-list,
	.mh-sidebar {
		gap: 18px;
	}

	.mh-page-shell,
	.mh-registration-shell,
	.mh-themed-page-shell {
		padding-top: 18px;
		padding-bottom: 40px;
	}

	.mh-registration-title-block,
	.mh-registration-inline-header,
	.mh-generic-title-block,
	.mh-generic-inline-header,
	.mh-page-banner {
		margin-bottom: 18px;
	}

	.mh-registration-title-block .page-title,
	.mh-registration-inline-header .page-title,
	.mh-generic-title-block .page-title,
	.mh-generic-inline-header .page-title,
	.mh-page-banner .page-title {
		font-size: 2.6rem;
		line-height: 0.98;
		margin-bottom: 10px;
	}

	.mh-registration-title-block p,
	.mh-registration-inline-header p,
	.mh-generic-title-block p,
	.mh-generic-inline-header p,
	.mh-page-banner p {
		font-size: 0.96rem;
	}

	.mh-hero-copy h1 {
		max-width: none;
		font-size: 2.95rem;
		line-height: 0.96;
	}

	.mh-hero-card {
		gap: 26px;
		padding: 28px 22px;
		border-radius: 28px;
	}

	.mh-hero-copy p {
		font-size: 1rem;
	}

	.mh-hero-trust-line {
		max-width: none;
		padding-left: 14px;
		font-size: 1rem;
	}

	.mh-hero-media-frame {
		width: min(100%, 290px);
		border-width: 6px;
	}

	.mh-trust-strip {
		gap: 10px;
	}

	.mh-trust-pill {
		padding: 14px 16px;
		font-size: 0.92rem;
	}

	.mh-home-editorial-card,
	.mh-home-problem-card,
	.mh-home-solution-card,
	.mh-home-selectivity-card,
	.mh-home-confidentiality-card,
	.mh-founder-feature-copy,
	.mh-founder-feature-card,
	.mh-final-cta,
	.mh-faq-item {
		padding: 24px 20px;
		border-radius: 24px;
	}

	.mh-home-editorial-point,
	.mh-home-problem-point,
	.mh-home-solution-points,
	.mh-home-confidentiality-points {
		padding: 18px;
		border-radius: 18px;
	}

	.mh-home-kicker {
		margin-bottom: 12px;
		font-size: 0.82rem;
		letter-spacing: 0.1em;
	}

	.mh-home-editorial-point h3,
	.mh-home-problem-point h3,
	.mh-home-solution-points h3,
	.mh-card h3,
	.mh-founder-feature-card h3,
	.widget-title,
	.mh-faq-item summary {
		font-size: 1.65rem;
	}

	.mh-card h3 a {
		overflow-wrap: anywhere;
	}

	.mh-home-problem-intro,
	.mh-home-editorial-head p,
	.mh-home-selectivity-copy p,
	.mh-home-confidentiality-copy p,
	.mh-home-solution-copy p,
	.mh-final-cta p {
		font-size: 0.98rem;
	}

	.mh-process-card {
		padding: 22px 20px;
		border-radius: 22px;
	}

	.mh-services-benefits-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.mh-services-intro-section {
		padding-top: 16px;
		padding-bottom: 28px;
	}

	.mh-services-intro {
		gap: 0;
	}

	.mh-services-page-title {
		font-size: clamp(2rem, 11vw, 3rem);
	}

	.mh-services-feature-image {
		border-radius: min(var(--mh-services-image-radius, 32px), 26px);
	}

	.mh-services-feature-image img {
		height: min(var(--mh-services-image-height, 560px), 70vh);
	}

	.mh-services-image-title {
		bottom: 22px;
		font-size: clamp(2rem, 11vw, 3rem);
	}

	.mh-services-overview-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.mh-services-overview-card {
		min-height: auto;
		padding: 26px 24px;
	}

	.mh-services-overview-card h2 {
		margin-bottom: 14px;
	}

	.mh-services-benefit-card {
		min-height: auto;
		padding: 26px 24px;
	}

	.mh-services-benefit-card h2 {
		margin-bottom: 14px;
	}

	.mh-process-step {
		width: 48px;
		height: 48px;
		font-size: 1.35rem;
	}

	.mh-contact-hero {
		padding: 44px 0 54px;
		border-bottom-left-radius: 28px;
		border-bottom-right-radius: 28px;
		overflow: hidden;
	}

	.mh-enquiry-page {
		padding: 48px 0 72px;
	}

	.mh-enquiry-intro {
		margin-bottom: 32px;
	}

	.mh-enquiry-copy {
		font-size: 1rem;
	}

	.mh-enquiry-contact-lines {
		font-size: 0.98rem;
	}

	.mh-enquiry-form-card {
		padding: 22px;
	}

	.mh-contact-hero-inner,
	.mh-contact-copy-card,
	.mh-contact-form-card {
		padding: 24px;
	}

	.mh-contact-hero-inner {
		padding: 22px 20px;
		border-radius: 24px;
	}

	.mh-contact-hero-badge {
		margin-bottom: 14px;
		font-size: 0.78rem;
	}

	.mh-contact-showcase {
		margin-top: -22px;
		gap: 18px;
	}

	.mh-contact-copy-head,
	.mh-contact-form-head {
		margin-bottom: 18px;
	}

	.mh-contact-copy-head h2,
	.mh-contact-form-head h2 {
		font-size: 2.1rem;
	}

	.mh-contact-details-grid {
		gap: 14px;
	}

	.mh-contact-detail-item {
		padding: 18px;
		border-radius: 18px;
	}

	.mh-contact-detail-item h3 {
		font-size: 0.88rem;
	}

	.mh-cf7-shell,
	.mh-registration-builder {
		width: 100%;
	}

	.mh-cf7-shell .wpcf7-form {
		gap: 14px;
	}

	.mh-cf7-shell .wpcf7-form p {
		margin-bottom: 14px;
	}

	.mh-registration-builder h2 {
		font-size: 2.25rem;
		margin-bottom: 14px;
	}

	.mh-registration-form {
		gap: 18px;
	}

	.mh-registration-field {
		gap: 8px;
	}

	.mh-registration-field label {
		font-size: 0.92rem;
	}

	.mh-registration-field input,
	.mh-registration-field select,
	.mh-registration-field textarea,
	.wpcf7-form input[type="text"],
	.wpcf7-form input[type="email"],
	.wpcf7-form input[type="tel"],
	.wpcf7-form select,
	.wpcf7-form textarea {
		padding: 14px 16px;
		border-radius: 16px;
		font-size: 0.98rem;
	}

	.mh-choice-group {
		gap: 10px 12px;
		min-height: auto;
	}

	.mh-choice {
		padding: 9px 12px;
		font-size: 0.92rem;
	}

	.mh-registration-gate-notice,
	.mh-registration-gate-copy,
	.mh-form-success {
		padding: 12px 14px;
		border-radius: 14px;
		font-size: 0.92rem;
	}

	.mh-hero-actions {
		flex-direction: column;
	}

	.mh-button,
	.mh-button-outline {
		width: 100%;
		min-height: 54px;
	}

	.mh-registration-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.mh-registration-submit,
	.search-form {
		width: 100%;
	}

	.mh-registration-submit,
	.mh-cf7-shell .wpcf7-submit,
	.search-form input[type="submit"],
	.mh-card .mh-button-outline,
	.mh-card .mh-button {
		min-width: 0;
		width: 100%;
		min-height: 52px;
		padding: 14px 22px;
		border-radius: 16px;
		font-size: 0.98rem;
	}

	.mh-final-cta {
		padding: 28px 20px 22px;
	}

	.mh-final-cta .mh-section-title {
		font-size: 2.45rem;
		line-height: 1;
		margin-bottom: 14px;
	}

	.mh-final-cta .mh-hero-actions {
		margin-top: 22px;
		gap: 12px;
	}

	.mh-payment-layout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.mh-payment-copy-card,
	.mh-payment-checkout-card {
		padding: 24px 20px;
		border-radius: 24px;
	}

	.mh-payment-checkout-card {
		position: static;
	}

	.mh-payment-kicker {
		font-size: clamp(2.35rem, 13vw, 3.4rem);
	}

	.mh-payment-copy-card h1 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.mh-payment-lead,
	.mh-payment-includes ul,
	.mh-payment-terms p {
		font-size: clamp(1.08rem, 5.5vw, 1.55rem);
		line-height: 1.55;
	}

	.mh-payment-includes h2,
	.mh-payment-terms h2 {
		font-size: clamp(1.7rem, 8vw, 2.35rem);
	}

	.mh-founder-layout {
		gap: 20px;
	}

	.mh-founder-photo img,
	.mh-founder-photo .mh-empty-state {
		border-radius: 22px;
	}

	.mh-founder-intro {
		padding-top: 0;
	}

	.mh-founder-role {
		margin-bottom: 10px;
	}

	.mh-founder-intro-text {
		margin-bottom: 12px;
		font-size: 0.98rem;
	}

	.mh-founder-story {
		gap: 14px;
	}

	.mh-founder-story p {
		font-size: 0.98rem;
		line-height: 1.8;
	}

	.mh-founder-story-card {
		padding: 0;
		border-radius: 0;
	}

	.mh-founder-story-hero {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 24px;
	}

	.mh-founder-story-header {
		padding: 30px 22px;
		border-radius: 26px;
		margin-bottom: 0;
	}

	.mh-founder-story-header h1 {
		font-size: clamp(2.35rem, 12vw, 3.25rem);
	}

	.mh-founder-story-rule {
		width: 92px;
		height: 3px;
		margin-top: 28px;
	}

	.mh-founder-story-image {
		border-radius: min(var(--mh-founder-story-image-radius, 34px), 26px);
	}

	.mh-founder-story-image img {
		height: min(var(--mh-founder-story-image-height, 620px), 72vh);
	}

	.mh-founder-story-copy {
		gap: 26px;
		padding: 30px 22px;
		border-radius: 0 0 26px 26px;
	}

	.mh-founder-story-copy p {
		font-size: clamp(1.18rem, 5.5vw, 1.7rem);
		line-height: 1.55;
	}

	.search-form {
		flex-direction: column;
	}

	.mh-cf7-shell .wpcf7-submit {
		width: 100%;
	}
}

/*
 * Customizer typography routing.
 * These rules connect the page-specific font controls to the matching templates
 * without forcing future developers to duplicate font declarations in PHP.
 */
.mh-landing-home {
	font-family: var(--mh-font-home-body, var(--mh-font-body));
}

.mh-landing-home .mh-home-hero-content h1,
.mh-landing-home .mh-landing-enquiry-title,
.mh-landing-home .mh-section-title,
.mh-homepage-shell .mh-section-title {
	font-family: var(--mh-font-home-heading, var(--mh-font-heading));
}

.mh-landing-home .mh-home-hero-content h1,
.mh-landing-home .mh-landing-enquiry-title {
	font-size: clamp(1.8rem, calc(var(--mh-type-home-title-size, 62px) * 0.86), 5.8rem);
	color: var(--mh-color-home-title, var(--mh-color-text));
}

.mh-about-page {
	font-family: var(--mh-font-about-body, var(--mh-font-body));
}

.mh-about-page .page-title,
.mh-about-page .mh-section-title,
.mh-about-page .mh-founder-feature-card h3 {
	font-family: var(--mh-font-about-heading, var(--mh-font-heading));
}

.mh-about-page .page-title {
	font-size: clamp(1.8rem, calc(var(--mh-type-about-title-size, 58px) * 0.86), 5.8rem);
	color: var(--mh-color-about-title, var(--mh-color-text));
}

.mh-founder-page {
	font-family: var(--mh-font-founder-body, var(--mh-font-body));
}

.mh-founder-page .page-title,
.mh-founder-page .mh-section-title,
.mh-founder-page .mh-founder-story-header h1 {
	font-family: var(--mh-font-founder-heading, var(--mh-font-heading));
}

.mh-founder-page .page-title,
.mh-founder-page .mh-founder-story-header h1 {
	font-size: clamp(1.8rem, calc(var(--mh-type-founder-title-size, 58px) * 0.86), 5.8rem);
	color: var(--mh-color-founder-title, var(--mh-color-text));
}

.mh-services-page {
	font-family: var(--mh-font-services-body, var(--mh-font-body));
}

.mh-services-page .mh-services-page-title,
.mh-services-page .mh-services-image-title,
.mh-services-page .mh-section-title,
.mh-services-page .mh-services-overview-card h2,
.mh-services-page .mh-services-benefit-card h2,
.mh-services-page .mh-process-card h3,
.mh-services-page .mh-card h3 {
	font-family: var(--mh-font-services-heading, var(--mh-font-heading));
}

.mh-services-page .mh-services-page-title,
.mh-services-page .mh-services-image-title,
.mh-services-page > .mh-container > .mh-section:first-child .mh-section-title {
	font-size: clamp(1.8rem, calc(var(--mh-type-services-title-size, 60px) * 0.86), 5.8rem);
	color: var(--mh-color-services-title, var(--mh-color-primary));
}

.mh-services-page .mh-services-title-solution {
	font-size: clamp(1.7rem, calc(var(--mh-services-solution-title-size, 58px) * 0.86), 82px);
}

.mh-services-page .mh-services-title-process {
	font-size: clamp(1.7rem, calc(var(--mh-services-process-title-size, 52px) * 0.86), 78px);
}

.mh-services-page .mh-services-title-selectivity {
	font-size: clamp(1.7rem, calc(var(--mh-services-selectivity-title-size, 58px) * 0.86), 82px);
}

.mh-services-page .mh-services-title-who {
	font-size: clamp(1.7rem, calc(var(--mh-services-who-title-size, 52px) * 0.86), 78px);
}

.mh-services-page .mh-services-title-confidentiality {
	font-size: clamp(1.7rem, calc(var(--mh-services-confidentiality-title-size, 58px) * 0.86), 82px);
}

.mh-services-page .mh-services-overview-card h2,
.mh-services-page .mh-card h3 {
	font-size: clamp(1.35rem, calc(var(--mh-services-card-title-size, 42px) * 0.9), 68px);
}

.mh-contact-page,
.mh-enquiry-page {
	font-family: var(--mh-font-contact-body, var(--mh-font-body));
}

.mh-contact-page .page-title,
.mh-contact-page .mh-enquiry-intro h1,
.mh-contact-page .mh-contact-copy-head h2,
.mh-contact-page .mh-contact-form-head h2,
.mh-contact-page .mh-section-title {
	font-family: var(--mh-font-contact-heading, var(--mh-font-heading));
}

.mh-contact-page .page-title,
.mh-contact-page .mh-enquiry-intro h1 {
	font-size: clamp(1.8rem, calc(var(--mh-type-contact-title-size, 56px) * 0.86), 5.8rem);
	color: var(--mh-color-contact-title, var(--mh-color-primary));
}

.mh-payment-page {
	font-family: var(--mh-font-payment-body, var(--mh-font-body));
}

.mh-payment-page .mh-payment-kicker,
.mh-payment-page .mh-payment-copy-card h1,
.mh-payment-page .mh-payment-copy-card h2,
.mh-payment-page .mh-payment-checkout-card h2,
.mh-payment-page .mh-section-title {
	font-family: var(--mh-font-payment-heading, var(--mh-font-heading));
}

.mh-payment-page .mh-payment-copy-card h1 {
	font-size: clamp(1.8rem, calc(var(--mh-type-payment-title-size, 50px) * 0.86), 5.8rem);
}

.mh-payment-page .mh-payment-kicker,
.mh-payment-page .mh-payment-copy-card h1 {
	color: var(--mh-color-payment-title, var(--mh-color-primary));
}

.mh-registration-shell,
.mh-registration-landing-page {
	font-family: var(--mh-font-registration-body, var(--mh-font-body));
}

.mh-registration-shell .page-title,
.mh-registration-landing-page .page-title,
.mh-registration-builder h2,
.mh-registration-shell .mh-section-title,
.mh-registration-landing-page .mh-section-title {
	font-family: var(--mh-font-registration-heading, var(--mh-font-heading));
}

.mh-registration-shell .page-title,
.mh-registration-landing-page .page-title,
.mh-registration-builder h2 {
	font-size: clamp(1.8rem, calc(var(--mh-type-registration-title-size, 56px) * 0.86), 5.8rem);
	color: var(--mh-color-registration-title, var(--mh-color-text));
}

.blog,
.archive,
.single-post {
	font-family: var(--mh-font-blog-body, var(--mh-font-body));
}

.blog .page-title,
.archive .page-title,
.single-post .entry-title,
.mh-post-card h2,
.mh-post-card h3,
.mh-sidebar-widget h2,
.mh-sidebar-widget h3 {
	font-family: var(--mh-font-blog-heading, var(--mh-font-heading));
}

.blog .page-title,
.archive .page-title,
.single-post .entry-title,
body.single .entry-title {
	font-size: clamp(1.8rem, calc(var(--mh-type-blog-title-size, 44px) * 0.86), 5rem);
	color: #d51077 !important;
}

.blog .page-title,
.archive .page-title,
.mh-post-card h2 a {
	text-transform: uppercase;
}

/* Keep blog headings readable instead of forcing all caps. */
.blog .mh-blog-banner .page-title,
.archive .mh-blog-banner .page-title {
	font-family: var(--mh-font-blog-heading, var(--mh-font-heading)) !important;
	text-transform: uppercase !important;
}

.blog .mh-page-banner .page-title,
.archive .mh-page-banner .page-title,
.single-post .mh-page-banner .page-title {
	color: #d51077 !important;
}

body.blog .mh-page-banner h1.page-title,
body.blog .mh-page-banner .page-title,
body.home.blog .mh-page-banner h1.page-title,
body.home.blog .mh-page-banner .page-title {
	color: #d51077 !important;
	-webkit-text-fill-color: #d51077 !important;
}

/* Dedicated blog/archive banner override so saved generic page title colors cannot tint it brown. */
.mh-blog-banner h1.page-title,
.mh-blog-banner .page-title {
	color: #d51077 !important;
	-webkit-text-fill-color: #d51077 !important;
	background: none !important;
	background-image: none !important;
	text-transform: uppercase !important;
}

.blog .mh-post-card h2 a,
.archive .mh-post-card h2 a,
.single-post .entry-title,
body.single .entry-title,
body.single-post article.post h1.entry-title {
	/* Blog post titles should respect the exact capitalization typed in WordPress. */
	text-transform: none !important;
}

.blog .mh-post-card h2 a,
.blog .mh-post-card h3 a,
.archive .mh-post-card h2 a,
.archive .mh-post-card h3 a,
.search .mh-post-card h2 a,
.search .mh-post-card h3 a,
.mh-post-list .mh-post-card h2 a,
.mh-post-list .mh-post-card h3 a,
body.single .entry-title,
body.single-post .entry-title {
	color: #d51077 !important;
}

.blog .mh-post-card h2 a:hover,
.blog .mh-post-card h2 a:focus,
.archive .mh-post-card h2 a:hover,
.archive .mh-post-card h2 a:focus,
.mh-post-list .mh-post-card h2 a:hover,
.mh-post-list .mh-post-card h2 a:focus {
	color: #d51077 !important;
}

.blog .mh-sidebar a,
.archive .mh-sidebar a,
.single-post .mh-sidebar a {
	color: #d51077;
}

.blog .mh-sidebar a:hover,
.blog .mh-sidebar a:focus,
.archive .mh-sidebar a:hover,
.archive .mh-sidebar a:focus,
.single-post .mh-sidebar a:hover,
.single-post .mh-sidebar a:focus {
	color: #d51077;
}

.mh-author-bio {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(213, 16, 119, 0.18);
	border-radius: 28px;
	box-shadow: 0 22px 55px rgba(31, 24, 37, 0.08);
	display: flex;
	gap: 24px;
	margin-top: 42px;
	padding: 28px;
}

.mh-author-bio__avatar {
	flex: 0 0 auto;
}

.mh-author-bio__avatar img {
	border: 3px solid rgba(213, 16, 119, 0.18);
	border-radius: 50%;
	display: block;
	height: 96px;
	object-fit: cover;
	width: 96px;
}

.mh-author-bio__label {
	color: #d51077;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.mh-author-bio__name {
	color: var(--mh-text, #2c2030);
	font-family: var(--mh-font-heading);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1;
	margin: 0 0 10px;
	text-transform: none;
}

.mh-author-bio__content p:last-child {
	color: var(--mh-muted, #7c6878);
	line-height: 1.8;
	margin-bottom: 0;
}

@media (max-width: 640px) {
	.mh-author-bio {
		align-items: flex-start;
		border-radius: 22px;
		flex-direction: column;
		margin-top: 30px;
		padding: 22px;
	}

	.mh-author-bio__avatar img {
		height: 78px;
		width: 78px;
	}
}

/* Final contact-page override: keep the enquiry form panel in the brand pink. */
body .mh-enquiry-page .mh-enquiry-form-section > .mh-enquiry-form-card {
	background: #d51077 !important;
	background-color: #d51077 !important;
	background-image: none !important;
}

body .mh-enquiry-page .mh-enquiry-form-card .mh-cf7-shell,
body .mh-enquiry-page .mh-enquiry-form-card .wpcf7-form {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
}

body .mh-enquiry-page .mh-enquiry-form-card .wpcf7-not-valid-tip,
body .mh-enquiry-page .mh-enquiry-form-card .wpcf7-response-output,
body .mh-enquiry-page .mh-enquiry-form-card .wpcf7 form.invalid .wpcf7-response-output,
body .mh-enquiry-page .mh-enquiry-form-card .wpcf7 form.unaccepted .wpcf7-response-output {
	color: #ffffff !important;
}

body .mh-enquiry-page .mh-enquiry-form-card .wpcf7-response-output {
	border-color: rgba(255, 255, 255, 0.82) !important;
	background: rgba(255, 255, 255, 0.08);
}

body .mh-enquiry-page .mh-enquiry-form-card .wpcf7-not-valid {
	border: 2px solid #ffffff !important;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

/* Mobile safety net for long page titles.
 * Keeps new and existing page headings inside their cards on narrow screens.
 */
@media (max-width: 640px) {
	.entry-title,
	.page-title,
	body:not(.home) .mh-page-shell h1,
	.mh-section-title,
	.mh-services-page-title,
	.mh-services-image-title,
	.mh-payment-page .mh-payment-copy-card h1,
	.mh-founder-page .mh-generic-title-block h1,
	.mh-about-page .mh-generic-title-block h1,
	.mh-privacy-policy-page .mh-page-banner h1,
	.mh-blog-banner h1,
	.mh-contact-page .mh-enquiry-intro h1,
	.mh-enquiry-page .mh-enquiry-intro h1,
	.mh-registration-shell .page-title,
	.mh-registration-landing-page .page-title,
	.mh-registration-builder h2,
	.mh-registration-shell .mh-section-title,
	.mh-registration-landing-page .mh-section-title {
		max-width: 100%;
		/* The Customizer slider should directly control mobile title size; clamp keeps it in a safe phone range. */
		font-size: clamp(28px, var(--mh-mobile-page-title-size, 46px), 64px) !important;
		line-height: 1.02 !important;
		letter-spacing: -0.045em;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.mh-registration-title-block,
	.mh-registration-inline-header,
	.mh-generic-title-block,
	.mh-generic-inline-header,
	.mh-page-banner,
	.mh-registration-landing-intro {
		max-width: 100%;
		overflow: hidden;
	}
}
