﻿/*
Theme Name: MHF
Theme URI: https://example.com/mhf
Author: MHF
Author URI: https://example.com
Description: Mystic Healing Flow — Seima Manchali theme with Bootstrap, jQuery, Sen, Owl Carousel, Bootstrap Icons & Lottie.
Version: 2.6.10
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mhf
Tags: bootstrap, custom-menu, one-column, translation-ready
*/

/* ==========================================================================
   Base
   ========================================================================== */

   :root {
	--mhf-font: "Sen", system-ui, sans-serif;
	/* Brand palette from Mystic Healing Flow logo */
	--mhf-primary: #c4a1ff;
	--mhf-primary-soft: rgba(155, 109, 255, 0.18);
	--mhf-accent: #f0c674;
	--mhf-accent-soft: rgba(240, 198, 116, 0.16);
	--mhf-cosmic: #12081f;
	--mhf-text: #f6f1ff;
	--mhf-muted: rgba(246, 241, 255, 0.78);
	--mhf-line: rgba(196, 161, 255, 0.28);
	--mhf-white: #ffffff;
	--mhf-soft: rgba(255, 255, 255, 0.08);
	--mhf-card: rgba(255, 255, 255, 0.1);
	--mhf-card-text: #ffffff;
	--mhf-card-muted: rgba(255, 255, 255, 0.82);
	--mhf-radius: 1.25rem;
	--mhf-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
	--mhf-transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	/* Sticky full-bleed cosmic banner — sharp, no blur */
	--mhf-body-bg-image: url("assets/images/banner-bg.png");
	--mhf-body-bg-image-mobile: url("assets/images/banner-bg-mobile.jpg");
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	max-width: 100%;
}

body {
	position: relative;
	font-family: var(--mhf-font);
	color: var(--mhf-text);
	background: #070413;
	min-height: 100vh;
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
}

/* Sticky full-width banner background — no blur */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	width: auto;
	height: auto;
	max-width: none;
	max-height: none;
	transform: none;
	background-color: #070413;
	background-image: var(--mhf-body-bg-image);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	opacity: 1;
	filter: none;
	-webkit-filter: none;
	overflow: hidden;
	border-radius: 0;
}

/* Soft readability wash over busy stars (not a blur of the image) */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(7, 4, 19, 0.42) 0%,
		rgba(7, 4, 19, 0.28) 35%,
		rgba(7, 4, 19, 0.45) 100%
	);
}

.site-header,
.site-main,
.site-footer {
	max-width: 100%;
	overflow-x: clip;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
}

body > * {
	position: relative;
	z-index: 1;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand {
	font-family: var(--mhf-font);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--mhf-text);
}

a {
	color: var(--mhf-primary);
	transition: color 0.2s ease;
}

a:hover {
	color: #e2d0ff;
}

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

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	background: rgba(10, 5, 24, 0.78);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--mhf-line) !important;
}

.site-header .navbar {
	padding-top: 0.7rem;
	padding-bottom: 0.7rem;
}

.site-header .navbar > .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.site-header .navbar-brand {
	color: var(--mhf-primary) !important;
	font-weight: 700;
	margin-right: 1rem;
	padding: 0;
}

.mhf-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
}

.mhf-brand-text {
	font-weight: 700;
	font-size: 1.125rem; /* ~18px */
	line-height: 1.15;
	color: #f6f1ff;
}

.mhf-logo {
	display: block;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 6px 18px rgba(107, 63, 160, 0.22);
}

.mhf-logo-nav {
	width: 48px;
	height: 48px;
	border: 2px solid rgba(155, 109, 255, 0.35);
}

.mhf-logo-footer {
	width: 72px;
	height: 72px;
	border: 3px solid rgba(155, 109, 255, 0.35);
	flex-shrink: 0;
}

.site-header .navbar-brand img,
.custom-logo-link img {
	max-height: 48px;
	width: auto;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-header .nav-link {
	font-weight: 600;
	color: rgba(246, 241, 255, 0.82) !important;
	padding: 0.45rem 0.7rem !important;
	font-size: 1rem; /* 16px — +1–2px from previous */
	white-space: nowrap;
	transition: color 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
	color: #fff !important;
}

.mhf-main-nav .mhf-nav-cta {
	background: linear-gradient(135deg, #9b6dff, #6b3fa0);
	color: #fff !important;
	border-radius: 999px;
	padding: 0.5rem 1rem !important;
	margin-left: 0.35rem;
	font-size: 1rem;
}

.mhf-main-nav .mhf-nav-cta:hover,
.mhf-main-nav .mhf-nav-cta.active {
	background: linear-gradient(135deg, #b08aff, #7a4db8);
	color: #fff !important;
}

/* Custom hamburger */
.mhf-nav-toggler {
	border: 1px solid var(--mhf-line);
	border-radius: 0.65rem;
	padding: 0.55rem 0.65rem;
	width: 46px;
	height: 42px;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	background: #fff;
	box-shadow: none;
}

.mhf-nav-toggler:focus {
	box-shadow: 0 0 0 0.2rem rgba(107, 63, 160, 0.15);
}

.mhf-nav-toggler .mhf-toggler-bar {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: var(--mhf-primary);
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.mhf-nav-toggler[aria-expanded="true"] .mhf-toggler-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.mhf-nav-toggler[aria-expanded="true"] .mhf-toggler-bar:nth-child(2) {
	opacity: 0;
}

.mhf-nav-toggler[aria-expanded="true"] .mhf-toggler-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

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

/* Mobile / tablet menu panel */
@media (max-width: 991.98px) {
	.mhf-brand-text {
		font-size: 1rem;
		max-width: 10rem;
	}

	.mhf-logo-nav {
		width: 44px;
		height: 44px;
	}

	.mhf-nav-collapse {
		width: 100%;
		margin-top: 0.85rem;
		padding: 0.85rem 1rem 1.1rem;
		background: rgba(14, 8, 32, 0.96);
		border: 1px solid var(--mhf-line);
		border-radius: var(--mhf-radius);
		box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
	}

	.mhf-main-nav {
		width: 100%;
		gap: 0.15rem;
	}

	.mhf-main-nav .nav-item {
		width: 100%;
		border-bottom: 1px solid rgba(107, 63, 160, 0.08);
	}

	.mhf-main-nav .nav-item:last-child {
		border-bottom: none;
		padding-top: 0.5rem;
	}

	.mhf-main-nav .nav-link {
		padding: 0.8rem 0.35rem !important;
		white-space: normal;
		font-size: 1.0625rem; /* 17px */
		width: 100%;
	}

	.mhf-main-nav .mhf-nav-cta {
		display: block;
		width: 100%;
		text-align: center;
		margin: 0.25rem 0 0;
		padding: 0.75rem 1rem !important;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.site-header .nav-link {
		padding: 0.4rem 0.45rem !important;
		font-size: 0.95rem;
	}

	.mhf-brand-text {
		font-size: 1.05rem;
	}
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.mhf-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #9b6dff, #6b3fa0);
	color: #fff !important;
	border: none;
	border-radius: 999px;
	padding: 0.85rem 1.5rem;
	font-weight: 600;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
	transition: transform var(--mhf-transition), box-shadow var(--mhf-transition), background 0.2s ease;
}

.mhf-btn-primary:hover {
	background: linear-gradient(135deg, #b08aff, #7a4db8);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

.mhf-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.08);
	color: #fff !important;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	padding: 0.85rem 1.5rem;
	font-weight: 600;
	transition: border-color 0.2s ease, background 0.2s ease, transform var(--mhf-transition);
}

.mhf-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff !important;
	transform: translateY(-2px);
}

.mhf-btn-wide {
	min-width: 200px;
	justify-content: center;
}

.btn-primary {
	--bs-btn-bg: var(--mhf-primary);
	--bs-btn-border-color: var(--mhf-primary);
	--bs-btn-hover-bg: #55308a;
	--bs-btn-hover-border-color: #55308a;
	--bs-btn-active-bg: #55308a;
	--bs-btn-active-border-color: #55308a;
}

.btn-outline-primary {
	--bs-btn-color: var(--mhf-primary);
	--bs-btn-border-color: var(--mhf-primary);
	--bs-btn-hover-bg: var(--mhf-primary);
	--bs-btn-hover-border-color: var(--mhf-primary);
	--bs-btn-hover-color: #fff;
}

.text-primary {
	color: var(--mhf-primary) !important;
}

/* ==========================================================================
   Home shared
   ========================================================================== */

.mhf-home {
	background: transparent;
}

.mhf-section {
	padding: 5.5rem 0;
	position: relative;
}

.mhf-section-soft {
	background: rgba(8, 4, 22, 0.55);
}

.mhf-eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mhf-accent);
	margin-bottom: 0.75rem;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.mhf-section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

h1.mhf-section-title,
h2.mhf-section-title,
h3.mhf-section-title {
	font-size: 2rem !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
}

@media (max-width: 767.98px) {
	.mhf-section-title,
	h1.mhf-section-title,
	h2.mhf-section-title,
	h3.mhf-section-title {
		font-size: 1.75rem !important;
	}
}

.mhf-section-sub,
.mhf-text {
	color: var(--mhf-muted);
	font-size: 1.05rem;
	line-height: 1.75;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.mhf-section-head {
	max-width: 40rem;
	margin: 0 auto 3rem;
}

.mhf-mission {
	margin-top: 1.5rem;
	padding: 1.25rem 1.5rem;
	border-left: 3px solid var(--mhf-accent);
	background: rgba(20, 10, 40, 0.72);
	border-radius: 0 1rem 1rem 0;
	color: var(--mhf-text);
	font-weight: 500;
	line-height: 1.7;
	border: 1px solid var(--mhf-line);
	border-left-width: 3px;
}

/* Scroll reveal */
.mhf-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mhf-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.mhf-reveal-delay {
	transition-delay: 0.12s;
}

.mhf-reveal-delay-2 {
	transition-delay: 0.24s;
}

/* Lottie / visuals */
.mhf-lottie {
	width: 100%;
	max-width: 420px;
	height: auto;
	margin: 0 auto;
	display: block;
}

.mhf-lottie-hero {
	max-width: 480px;
}

.mhf-lottie-inline {
	max-width: 160px;
	flex-shrink: 0;
}

.mhf-visual-panel {
	background: var(--mhf-white);
	border: 1px solid var(--mhf-line);
	border-radius: calc(var(--mhf-radius) + 0.5rem);
	padding: 1.5rem;
	box-shadow: var(--mhf-shadow);
	position: relative;
	overflow: hidden;
}

.mhf-visual-panel::before {
	content: "";
	position: absolute;
	inset: -40% auto auto -20%;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--mhf-primary-soft), transparent 70%);
	animation: mhfPulse 6s ease-in-out infinite;
	pointer-events: none;
}

.mhf-visual-panel-sm {
	margin-top: 1.5rem;
	padding: 0.75rem;
}

.mhf-visual-panel-sm .mhf-lottie {
	max-width: 220px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.mhf-hero {
	position: relative;
	padding: 4.5rem 0 5rem;
	overflow: hidden;
	background: transparent;
	min-height: min(88vh, 760px);
	display: flex;
	align-items: center;
}

.mhf-hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.mhf-spark {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mhf-accent);
	opacity: 0.55;
	animation: mhfSpark 5.5s ease-in-out infinite;
}

.mhf-spark-1 { top: 18%; left: 8%; animation-delay: 0s; }
.mhf-spark-2 { top: 30%; right: 12%; width: 6px; height: 6px; background: var(--mhf-primary); animation-delay: 0.8s; }
.mhf-spark-3 { bottom: 24%; left: 18%; width: 10px; height: 10px; animation-delay: 1.4s; }
.mhf-spark-4 { top: 58%; right: 28%; width: 5px; height: 5px; background: var(--mhf-primary); animation-delay: 2s; }
.mhf-spark-5 { bottom: 16%; right: 10%; animation-delay: 2.6s; }

.mhf-hero-title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.12;
	margin-bottom: 0.85rem;
	background: linear-gradient(120deg, #ffffff 0%, #e8d7ff 45%, #f0c674 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.55));
	animation: mhfTitleIn 0.9s ease both;
}

.mhf-hero-byline {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--mhf-accent);
	margin-bottom: 0.35rem;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.mhf-hero-roles {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--mhf-muted);
	letter-spacing: 0.01em;
	margin-bottom: 1rem;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.mhf-hero-lead {
	font-size: clamp(1.05rem, 2vw, 1.15rem);
	color: var(--mhf-muted);
	line-height: 1.7;
	max-width: 36rem;
	margin-bottom: 1.75rem;
}

.mhf-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 1.75rem;
}

.mhf-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	color: var(--mhf-muted);
	font-size: 0.95rem;
	font-weight: 500;
}

.mhf-hero-meta i {
	color: var(--mhf-primary);
	margin-right: 0.35rem;
}

.mhf-hero-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 360px;
	isolation: isolate;
	max-width: 100%;
	overflow: hidden;
}

.mhf-hero-stage {
	position: relative;
	z-index: 2;
	width: min(100%, 320px);
	aspect-ratio: 1;
	display: grid;
	place-items: center;
}

.mhf-hero-mark {
	position: relative;
	z-index: 2;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 3.5rem;
	color: var(--mhf-primary);
	background: linear-gradient(160deg, #fff 0%, var(--mhf-primary-soft) 100%);
	border: 1px solid var(--mhf-line);
	box-shadow: var(--mhf-shadow);
	animation: mhfFloat 7s ease-in-out infinite;
}

.mhf-hero-banner-img {
	display: none;
}

.mhf-logo-glow {
	position: absolute;
	width: 78%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(155, 109, 255, 0.35) 0%, rgba(107, 63, 160, 0.1) 45%, transparent 70%);
	filter: blur(8px);
	z-index: 1;
	animation: mhfPulse 4s ease-in-out infinite;
}

.mhf-hero-logo-badge {
	display: none;
}

.mhf-hero-ring {
	position: absolute;
	border-radius: 50%;
	border: 1.5px solid rgba(107, 63, 160, 0.14);
	pointer-events: none;
	z-index: 0;
}

.mhf-hero-ring-outer {
	width: min(92%, 480px);
	aspect-ratio: 1;
	border-color: rgba(155, 109, 255, 0.28);
	border-style: dashed;
	animation: mhfSpin 28s linear infinite;
}

.mhf-hero-ring-inner {
	width: min(72%, 360px);
	aspect-ratio: 1;
	animation: mhfSpin 18s linear infinite reverse;
}

.mhf-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	z-index: 0;
	pointer-events: none;
}

.mhf-orb-a {
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(107, 63, 160, 0.18), transparent 70%);
	animation: mhfPulse 8s ease-in-out infinite;
}

.mhf-orb-b {
	width: 180px;
	height: 180px;
	right: 8%;
	bottom: 10%;
	background: radial-gradient(circle, rgba(155, 109, 255, 0.22), transparent 70%);
	animation: mhfFloat 10s ease-in-out infinite reverse;
}

.mhf-orbit {
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
}

.mhf-orbit-item {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--mhf-line);
	box-shadow: 0 10px 24px rgba(107, 63, 160, 0.1);
	color: var(--mhf-primary);
	font-size: 0.78rem;
	font-weight: 700;
	white-space: nowrap;
	backdrop-filter: blur(6px);
}

.mhf-orbit-item i {
	color: var(--mhf-accent);
}

.mhf-orbit-1 {
	top: 8%;
	left: 4%;
	animation: mhfFloat 6s ease-in-out infinite;
}

.mhf-orbit-2 {
	top: 14%;
	right: 0;
	animation: mhfFloat 7s ease-in-out infinite reverse;
}

.mhf-orbit-3 {
	bottom: 16%;
	left: 0;
	animation: mhfFloat 6.5s ease-in-out infinite 0.4s;
}

.mhf-orbit-4 {
	bottom: 8%;
	right: 6%;
	animation: mhfFloat 7.5s ease-in-out infinite 0.8s reverse;
}

/* ==========================================================================
   Expertise carousel
   ========================================================================== */

.mhf-modality {
	background: var(--mhf-white);
	border: 1px solid var(--mhf-line);
	border-radius: var(--mhf-radius);
	padding: 1.75rem 1.25rem;
	text-align: center;
	height: 100%;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	transition: transform var(--mhf-transition), box-shadow var(--mhf-transition), border-color 0.2s ease;
}

.mhf-modality:hover {
	transform: translateY(-6px);
	box-shadow: var(--mhf-shadow);
	border-color: rgba(107, 63, 160, 0.28);
}

.mhf-modality-icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--mhf-primary-soft);
	color: var(--mhf-primary);
	font-size: 1.45rem;
	animation: mhfIconBob 3.5s ease-in-out infinite;
}

.mhf-modality-title {
	font-size: 1.05rem;
	margin: 0;
	line-height: 1.35;
}

.mhf-expertise-carousel .owl-nav button.owl-prev,
.mhf-expertise-carousel .owl-nav button.owl-next {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--mhf-white) !important;
	border: 1px solid var(--mhf-line) !important;
	color: var(--mhf-primary) !important;
	box-shadow: 0 8px 18px rgba(107, 63, 160, 0.08);
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	margin: 0 !important;
}

.mhf-expertise-carousel .owl-nav button.owl-prev { left: 4px; }
.mhf-expertise-carousel .owl-nav button.owl-next { right: 4px; }

.mhf-expertise-carousel .owl-dots {
	margin-top: 1.5rem !important;
}

.mhf-expertise-carousel .owl-dot span {
	background: rgba(107, 63, 160, 0.2) !important;
}

.mhf-expertise-carousel .owl-dot.active span {
	background: var(--mhf-primary) !important;
}

/* ==========================================================================
   Timeline
   ========================================================================== */

.mhf-timeline {
	position: relative;
	padding-left: 1.5rem;
}

.mhf-timeline::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 0.35rem;
	bottom: 0.35rem;
	width: 2px;
	background: linear-gradient(180deg, var(--mhf-primary), var(--mhf-accent));
}

.mhf-timeline-item {
	position: relative;
	padding: 0 0 1.75rem 1.5rem;
}

.mhf-timeline-item:last-child {
	padding-bottom: 0;
}

.mhf-timeline-dot {
	position: absolute;
	left: -1.5rem;
	top: 0.35rem;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--mhf-white);
	border: 3px solid var(--mhf-primary);
	box-shadow: 0 0 0 4px var(--mhf-primary-soft);
	animation: mhfPulse 3s ease-in-out infinite;
}

.mhf-timeline-year {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mhf-accent);
	margin-bottom: 0.35rem;
}

.mhf-timeline-item h3 {
	font-size: 1.15rem;
	margin-bottom: 0.35rem;
}

.mhf-timeline-item p {
	margin: 0;
	color: var(--mhf-muted);
	line-height: 1.65;
}

/* ==========================================================================
   Ventures
   ========================================================================== */

.mhf-venture {
	background: var(--mhf-white);
	border: 1px solid var(--mhf-line);
	border-radius: var(--mhf-radius);
	padding: 2rem 1.5rem;
	height: 100%;
	text-align: center;
	transition: transform var(--mhf-transition), box-shadow var(--mhf-transition);
}

.mhf-venture:hover {
	transform: translateY(-6px);
	box-shadow: var(--mhf-shadow);
}

.mhf-venture-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1rem;
	border-radius: 1rem;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, var(--mhf-primary-soft), var(--mhf-accent-soft));
	color: var(--mhf-primary);
	font-size: 1.6rem;
}

.mhf-venture h3 {
	font-size: 1.15rem;
	margin-bottom: 0.65rem;
}

.mhf-venture p {
	margin: 0;
	color: var(--mhf-muted);
	line-height: 1.65;
}

.mhf-vision {
	margin-top: 2.5rem;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	background: var(--mhf-white);
	border: 1px solid var(--mhf-line);
	border-radius: var(--mhf-radius);
	padding: 1.25rem 1.5rem;
}

.mhf-vision p {
	margin: 0;
	color: var(--mhf-muted);
	line-height: 1.7;
	font-weight: 500;
}

/* ==========================================================================
   Topics
   ========================================================================== */

.mhf-benefit {
	margin-top: 1.75rem;
	padding: 1.5rem;
	background: var(--mhf-primary-soft);
	border-radius: var(--mhf-radius);
}

.mhf-benefit h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: var(--mhf-primary);
}

.mhf-benefit p {
	margin: 0;
	color: var(--mhf-muted);
	line-height: 1.7;
}

.mhf-topics {
	display: grid;
	gap: 0.65rem;
	max-height: 520px;
	overflow-y: auto;
	padding-right: 0.35rem;
}

.mhf-topic-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 0.9rem 1rem;
	background: var(--mhf-soft);
	border: 1px solid transparent;
	border-radius: 0.85rem;
	color: var(--mhf-text);
	font-weight: 500;
	line-height: 1.45;
	opacity: 0;
	transform: translateX(16px);
	animation: mhfSlideIn 0.55s ease forwards;
	animation-delay: calc(var(--i) * 0.04s);
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.mhf-topic-item:hover {
	border-color: var(--mhf-line);
	background: var(--mhf-white);
	transform: translateX(4px);
}

.mhf-topic-num {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--mhf-white);
	color: var(--mhf-primary);
	font-size: 0.75rem;
	font-weight: 700;
	border: 1px solid var(--mhf-line);
}

/* ==========================================================================
   About stats / Services / Courses / Testimonials / Blog / Shop
   ========================================================================== */

.mhf-stat {
	background: var(--mhf-soft);
	border: 1px solid var(--mhf-line);
	border-radius: var(--mhf-radius);
	padding: 1.25rem 1.35rem;
	height: 100%;
}

.mhf-stat-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mhf-accent);
	margin-bottom: 0.35rem;
}

.mhf-stat strong {
	font-size: 1.05rem;
	color: var(--mhf-text);
}

.mhf-service,
.mhf-course,
.mhf-shop-card,
.mhf-blog-card {
	background: var(--mhf-white);
	border: 1px solid var(--mhf-line);
	border-radius: var(--mhf-radius);
	height: 100%;
	transition: transform var(--mhf-transition), box-shadow var(--mhf-transition);
}

.mhf-service,
.mhf-course,
.mhf-shop-card {
	padding: 1.75rem 1.5rem;
}

.mhf-service:hover,
.mhf-course:hover,
.mhf-shop-card:hover,
.mhf-blog-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--mhf-shadow);
}

.mhf-service-icon,
.mhf-shop-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--mhf-primary-soft);
	color: var(--mhf-primary);
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.mhf-service h3,
.mhf-course h3,
.mhf-shop-card h3 {
	font-size: 1.15rem;
	margin-bottom: 0.65rem;
}

.mhf-service p,
.mhf-course p,
.mhf-shop-card p {
	color: var(--mhf-muted);
	line-height: 1.65;
	margin-bottom: 1rem;
}

/* Animated service cards with Lottie */
.mhf-lottie-banner {
	background: var(--mhf-white);
	border: 1px solid var(--mhf-line);
	border-radius: calc(var(--mhf-radius) + 0.35rem);
	padding: 0.5rem 1rem;
	box-shadow: var(--mhf-shadow);
	display: grid;
	place-items: center;
}

.mhf-lottie-banner-player {
	max-width: 260px;
	min-height: 180px;
}

.mhf-services-grid > .col {
	display: flex;
}

.mhf-services-grid .mhf-service {
	width: 100%;
}

.mhf-service-animated {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 28px rgba(107, 63, 160, 0.06);
	border: 1px solid transparent;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(145deg, rgba(155, 109, 255, 0.28), rgba(255, 255, 255, 0.5), rgba(107, 63, 160, 0.2)) border-box;
	background-origin: border-box;
	background-clip: padding-box, border-box;
}

.mhf-service-link-wrap {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.mhf-service-link-wrap:hover {
	color: inherit;
}

.mhf-service-visual {
	position: relative;
	background:
		radial-gradient(circle at 20% 20%, rgba(155, 109, 255, 0.18), transparent 45%),
		radial-gradient(circle at 80% 80%, rgba(107, 63, 160, 0.12), transparent 42%),
		linear-gradient(165deg, #f7f2ff 0%, #ffffff 52%, #f3eefb 100%);
	padding: 1.15rem 1rem;
	min-height: 108px;
	height: 108px;
	display: grid;
	place-items: center;
	overflow: hidden;
	flex-shrink: 0;
}

.mhf-service-icon-mark {
	position: relative;
	z-index: 1;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 1.65rem;
	color: var(--mhf-primary);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--mhf-line);
	box-shadow: 0 10px 24px rgba(107, 63, 160, 0.12);
	animation: mhfFloat 7s ease-in-out infinite;
}

.mhf-service-animated:hover .mhf-service-icon-mark {
	transform: scale(1.06);
	animation-duration: 3.5s;
}

.mhf-service-index {
	position: absolute;
	top: 0.85rem;
	left: 1rem;
	z-index: 2;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: rgba(107, 63, 160, 0.45);
}

.mhf-service-glow {
	position: absolute;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(107, 63, 160, 0.2), transparent 70%);
	animation: mhfPulse 5s ease-in-out infinite;
	pointer-events: none;
}

.mhf-lottie-service,
.mhf-img-service {
	position: relative;
	z-index: 1;
	max-width: 108px;
	width: 108px;
	height: 108px;
	min-height: 0;
	object-fit: contain;
	animation: mhfFloat 7s ease-in-out infinite;
}

.mhf-service-body {
	padding: 1.35rem 1.5rem 1.6rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.mhf-service-body h3 {
	font-size: 1.2rem;
	line-height: 1.35;
	margin-bottom: 0.55rem;
	color: var(--mhf-text);
}

.mhf-service-body p {
	flex-grow: 1;
	font-size: 0.95rem;
}

.mhf-service-body .mhf-link {
	margin-top: auto;
	font-weight: 700;
}

.mhf-service-tag {
	display: inline-block;
	align-self: flex-start;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--mhf-primary);
	background: var(--mhf-primary-soft);
	border-radius: 999px;
	padding: 0.3rem 0.7rem;
	margin-bottom: 0.75rem;
}

.mhf-service-animated:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 44px rgba(107, 63, 160, 0.14);
}

.mhf-service-animated:hover .mhf-lottie-service,
.mhf-service-animated:hover .mhf-img-service {
	animation-duration: 3.5s;
	transform: scale(1.04);
}

.mhf-service-visual .mhf-img-service {
	filter: drop-shadow(0 12px 24px rgba(107, 63, 160, 0.14));
}

.mhf-img {
	display: block;
	max-width: 100%;
	height: auto;
	background: transparent;
}

.mhf-img-float {
	margin: 0 auto;
	animation: mhfFloat 7s ease-in-out infinite;
}

.mhf-img-stat {
	max-width: 130px;
	margin: 0 auto 0.5rem;
}

.mhf-img-mini {
	max-width: 110px;
	margin: 0 auto;
}

.mhf-img-course {
	max-width: 160px;
}

.mhf-img-shop {
	max-width: 180px;
	margin: 0 auto;
	animation: mhfFloat 6.5s ease-in-out infinite;
}

.mhf-modality-animated {
	min-height: 200px;
	padding: 1.25rem 1rem 1.5rem;
}

.mhf-modality-lottie {
	width: 110px;
	height: 110px;
	margin: 0 auto 0.75rem;
	display: grid;
	place-items: center;
}

.mhf-lottie-mini {
	max-width: 110px;
	min-height: 100px;
}

.mhf-stat-animated {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mhf-lottie-stat {
	max-width: 120px;
	min-height: 100px;
	margin-bottom: 0.35rem;
}

.mhf-course-animated {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.mhf-stat-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: 0 auto 0.85rem;
	font-size: 1.45rem;
	color: var(--mhf-primary);
	background: var(--mhf-primary-soft);
	border: 1px solid var(--mhf-line);
}

.mhf-testimonial-stars {
	display: flex;
	gap: 0.2rem;
	margin-bottom: 0.85rem;
	color: #e0b44f;
	font-size: 0.95rem;
}

.mhf-course-visual {
	flex: 0 0 88px;
	background: linear-gradient(180deg, var(--mhf-primary-soft), var(--mhf-accent-soft));
	display: grid;
	place-items: center;
	padding: 1rem 0.5rem;
}

.mhf-course-icon,
.mhf-shop-icon-mark {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 1.45rem;
	color: var(--mhf-primary);
	background: #fff;
	border: 1px solid var(--mhf-line);
	box-shadow: 0 8px 18px rgba(107, 63, 160, 0.1);
}

.mhf-shop-visual {
	height: 96px;
	display: grid;
	place-items: center;
	margin-bottom: 0.75rem;
	background: linear-gradient(160deg, var(--mhf-soft), var(--mhf-primary-soft));
	border-radius: 1rem;
}

.mhf-philosophy-text {
	grid-template-columns: 1fr;
	max-width: 48rem;
	margin-inline: auto;
}

.mhf-philosophy-icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin-bottom: 1rem;
	font-size: 1.35rem;
	color: var(--mhf-primary);
	background: var(--mhf-primary-soft);
}

.mhf-svc-hero-icon {
	position: relative;
	z-index: 2;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 3.25rem;
	color: var(--mhf-primary);
	background: linear-gradient(160deg, #fff, var(--mhf-primary-soft));
	border: 1px solid var(--mhf-line);
	box-shadow: var(--mhf-shadow);
	animation: mhfFloat 6.5s ease-in-out infinite;
}

.mhf-svc-hero-img {
	display: none;
}

.mhf-lottie-course {
	max-width: 150px;
	min-height: 140px;
}

.mhf-course-body {
	padding: 1.5rem 1.35rem;
	flex: 1;
}

.mhf-shop-animated {
	padding: 1.25rem 1.35rem 1.6rem;
}

.mhf-shop-visual {
	height: 170px;
	display: grid;
	place-items: center;
	margin-bottom: 0.75rem;
	background: linear-gradient(160deg, var(--mhf-soft), var(--mhf-primary-soft));
	border-radius: 1rem;
}

.mhf-lottie-shop {
	max-width: 150px;
	min-height: 140px;
}

@media (max-width: 575.98px) {
	.mhf-course-animated {
		flex-direction: column;
	}

	.mhf-course-visual {
		flex-basis: auto;
		min-height: 88px;
	}
}

.mhf-link {
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.mhf-link:hover {
	gap: 0.55rem;
}

.mhf-course-badge {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mhf-primary);
	background: var(--mhf-primary-soft);
	border-radius: 999px;
	padding: 0.3rem 0.7rem;
	margin-bottom: 0.85rem;
}

.mhf-testimonial {
	background: var(--mhf-white);
	border: 1px solid var(--mhf-line);
	border-radius: var(--mhf-radius);
	padding: 1.75rem 1.5rem;
	margin: 0;
	height: 100%;
	/* min-height: 260px; */
	display: flex;
	flex-direction: column;
}

.mhf-testimonial-stars {
	color: var(--mhf-accent);
	margin-bottom: 0.85rem;
	letter-spacing: 0.15rem;
	flex-shrink: 0;
}

.mhf-testimonial p {
	color: var(--mhf-muted);
	line-height: 1.7;
	flex-grow: 1;
	margin-bottom: 0;
}

.mhf-testimonial footer {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.mhf-testimonial footer strong {
	color: var(--mhf-text);
}

.mhf-testimonial footer span {
	color: var(--mhf-muted);
	font-size: 0.9rem;
}

.mhf-testimonial-carousel .owl-stage {
	display: flex;
	align-items: stretch;
}

.mhf-testimonial-carousel .owl-item {
	display: flex;
	height: auto;
}

.mhf-testimonial-carousel .owl-item .item {
	display: flex;
	width: 100%;
	height: 100%;
}

.mhf-testimonial-carousel .mhf-testimonial {
	width: 100%;
	min-height: 280px;
}

.mhf-page-testimonials .mhf-testimonial {
	/* min-height: 280px; */
}

.mhf-testimonial-carousel .owl-dots {
	margin-top: 1.5rem !important;
}

.mhf-testimonial-carousel .owl-dot span {
	background: rgba(107, 63, 160, 0.2) !important;
}

.mhf-testimonial-carousel .owl-dot.active span {
	background: var(--mhf-primary) !important;
}

.mhf-blog-card {
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.mhf-blog-thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--mhf-primary-soft);
}

.mhf-blog-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.mhf-blog-card:hover .mhf-blog-thumb img {
	transform: scale(1.05);
}

.mhf-blog-thumb-empty {
	display: grid;
	place-items: center;
	color: var(--mhf-primary);
	font-size: 2rem;
	text-decoration: none;
}

.mhf-blog-body {
	padding: 1.35rem 1.35rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.mhf-blog-date {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--mhf-accent);
	margin-bottom: 0.45rem;
}

.mhf-blog-body h3 {
	font-size: 1.15rem;
	margin-bottom: 0.55rem;
}

.mhf-blog-body h3 a {
	text-decoration: none;
	color: var(--mhf-text);
}

.mhf-blog-body h3 a:hover {
	color: var(--mhf-primary);
}

.mhf-blog-body p {
	color: var(--mhf-muted);
	line-height: 1.65;
	margin-bottom: 1rem;
	flex-grow: 1;
}

.mhf-shop-card {
	text-align: center;
}

.mhf-shop-icon {
	margin-inline: auto;
	border-radius: 1rem;
	background: linear-gradient(145deg, var(--mhf-primary-soft), var(--mhf-accent-soft));
}

/* ==========================================================================
   Contact form
   ========================================================================== */

.mhf-contact-points {
	display: grid;
	gap: 0.85rem;
	margin: 1.5rem 0 0;
}

.mhf-contact-points li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: var(--mhf-muted);
	font-weight: 500;
}

.mhf-contact-point-icon {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--mhf-primary-soft);
	color: var(--mhf-primary);
	font-size: 1.05rem;
	border: 1px solid var(--mhf-line);
}

.mhf-contact-points i {
	color: var(--mhf-primary);
	margin-top: 0;
}

.mhf-contact-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.mhf-contact-social a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--mhf-primary-soft);
	color: var(--mhf-primary);
	text-decoration: none;
	border: 1px solid var(--mhf-line);
	transition: var(--mhf-transition);
}

.mhf-contact-social a:hover {
	background: var(--mhf-primary);
	color: #fff;
	text-decoration: none;
}

#contact.mhf-section {
	background: rgba(250, 248, 253, 0.72);
	padding-bottom: 4.5rem;
	margin-bottom: 0;
}

/* Featured In */
.mhf-featured {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	padding: 2rem 1.5rem;
	background: #fff;
	border: 1px solid var(--mhf-line);
	border-radius: calc(var(--mhf-radius) + 0.35rem);
	box-shadow: var(--mhf-shadow);
}

.mhf-featured-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mhf-primary);
	background: var(--mhf-primary-soft);
	border-radius: 999px;
	padding: 0.4rem 0.9rem;
	margin-bottom: 1rem;
}

.mhf-featured-note {
	margin: 1rem 0 1.35rem;
	color: var(--mhf-muted);
	font-size: 0.95rem;
	line-height: 1.65;
}

.mhf-featured-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
}

.mhf-featured-chips span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: var(--mhf-soft);
	border: 1px solid var(--mhf-line);
	color: var(--mhf-primary);
	font-size: 0.9rem;
	font-weight: 600;
}

/* Why Choose */
.mhf-why-card {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	height: 100%;
	padding: 1.15rem 1.2rem;
	background: #fff;
	border: 1px solid var(--mhf-line);
	border-radius: var(--mhf-radius);
	transition: transform var(--mhf-transition), box-shadow var(--mhf-transition);
}

.mhf-why-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--mhf-shadow);
}

.mhf-why-icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--mhf-primary-soft);
	color: var(--mhf-primary);
	font-size: 1.15rem;
}

.mhf-why-card p {
	margin: 0;
	font-weight: 600;
	color: var(--mhf-text);
	line-height: 1.45;
}

/* Philosophy */
.mhf-philosophy {
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.mhf-philosophy-band {
	position: relative;
	overflow: hidden;
	border-radius: calc(var(--mhf-radius) + 0.4rem);
	border: 1px solid var(--mhf-line);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 238, 251, 0.95) 55%, rgba(239, 230, 255, 0.9) 100%);
	box-shadow: var(--mhf-shadow);
}

.mhf-philosophy-band::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: linear-gradient(180deg, var(--mhf-accent), var(--mhf-primary));
}

.mhf-philosophy-band-inner {
	padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.75rem);
}

.mhf-philosophy-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr;
	gap: clamp(1.25rem, 3vw, 2.25rem);
	align-items: start;
	margin-top: 0.35rem;
}

.mhf-philosophy-copy {
	max-width: 40rem;
}

.mhf-philosophy-mission {
	padding: 1.35rem 1.4rem;
	border-radius: var(--mhf-radius);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--mhf-line);
}

.mhf-philosophy-mission-label {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mhf-primary);
	margin-bottom: 0.55rem;
}

.mhf-philosophy-mission p:last-child {
	margin: 0;
	font-weight: 600;
	color: var(--mhf-text);
	line-height: 1.65;
}

.mhf-philosophy-visual {
	display: none;
}

@media (max-width: 767.98px) {
	.mhf-philosophy-grid {
		grid-template-columns: 1fr;
	}
}

/* Quote */
.mhf-quote-section {
	padding: 4rem 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(250, 248, 253, 0.75) 100%);
}

.mhf-quote {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
	padding: 2.25rem 1.5rem;
}

.mhf-quote blockquote {
	margin: 0;
}

.mhf-quote p {
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 700;
	line-height: 1.45;
	color: var(--mhf-cosmic);
	margin: 0 0 1rem;
}

.mhf-quote figcaption {
	font-weight: 700;
	color: var(--mhf-primary);
	letter-spacing: 0.02em;
}

/* FAQ */
.mhf-faq-accordion .accordion-item {
	border: 1px solid var(--mhf-line);
	border-radius: 0.9rem !important;
	overflow: hidden;
	margin-bottom: 0.75rem;
	background: #fff;
}

.mhf-faq-accordion .accordion-button {
	font-weight: 700;
	font-size: 1.02rem;
	color: var(--mhf-text);
	background: #fff;
	box-shadow: none;
}

.mhf-faq-accordion .accordion-button:not(.collapsed) {
	color: var(--mhf-primary);
	background: var(--mhf-primary-soft);
}

.mhf-faq-accordion .accordion-button:focus {
	box-shadow: 0 0 0 0.2rem rgba(107, 63, 160, 0.12);
}

.mhf-faq-accordion .accordion-body {
	color: var(--mhf-muted);
	line-height: 1.7;
}

@media (max-width: 991.98px) {
	.mhf-philosophy-grid {
		grid-template-columns: 1fr;
	}

	.mhf-philosophy-visual {
		display: none;
	}
}

.mhf-contact-form {
	background: var(--mhf-white);
	border: 1px solid var(--mhf-line);
	border-radius: calc(var(--mhf-radius) + 0.25rem);
	padding: 1.75rem;
	box-shadow: var(--mhf-shadow);
}

.mhf-contact-form .form-label {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--mhf-text);
}

.mhf-contact-form .form-control,
.mhf-contact-form .form-select {
	border-radius: 0.75rem;
	border-color: var(--mhf-line);
	padding: 0.75rem 0.95rem;
	box-shadow: none;
}

.mhf-contact-form .form-control:focus,
.mhf-contact-form .form-select:focus {
	border-color: var(--mhf-primary);
	box-shadow: 0 0 0 0.2rem rgba(107, 63, 160, 0.12);
}

.mhf-alert {
	border-radius: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}


/* ==========================================================================
   Footer — cosmic glass
   ========================================================================== */

.site-footer.mhf-footer {
	position: relative;
	overflow: hidden;
	margin-top: 0 !important;
	padding: 3.5rem 0 1.75rem;
	color: #fff !important;
	background: rgba(6, 3, 16, 0.55) !important;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mhf-footer-wave,
.mhf-footer-glow,
.mhf-footer-spark {
	display: none !important;
}

.mhf-footer-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.35rem;
	margin: 0 0 2.25rem;
	padding: 1.75rem 1.85rem;
	border-radius: calc(var(--mhf-radius) + 0.35rem);
	background: rgba(255, 255, 255, 0.1) !important;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.mhf-footer-cta-title {
	font-size: clamp(1.4rem, 2.5vw, 1.9rem);
	margin-bottom: 0.4rem;
	color: #fff !important;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.mhf-footer-cta-text {
	margin: 0;
	max-width: 36rem;
	color: rgba(255, 255, 255, 0.82) !important;
	line-height: 1.65;
}

.mhf-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr);
	gap: 1.75rem 2rem;
	padding-bottom: 2rem;
}

.mhf-footer-brand-col {
	padding: 1.5rem 1.55rem;
	border-radius: var(--mhf-radius);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.mhf-footer-links-col {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.mhf-footer-panel {
	padding: 1.35rem 1.25rem;
	border-radius: var(--mhf-radius);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	height: 100%;
}

.mhf-footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1rem;
}

.mhf-footer-brand-text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.mhf-footer-brand-text strong {
	color: #fff !important;
	font-size: 1.15rem;
	font-weight: 800;
}

.mhf-footer-brand-text small {
	color: rgba(255, 255, 255, 0.72) !important;
	font-size: 0.85rem;
}

.mhf-footer-about {
	color: rgba(255, 255, 255, 0.8) !important;
	line-height: 1.7;
	margin-bottom: 1.25rem;
	max-width: 22rem;
}

.mhf-footer-heading {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f0c674 !important;
	margin-bottom: 1rem;
}

.site-footer .footer-menu {
	display: grid;
	gap: 0.55rem;
}

.site-footer .footer-menu a {
	color: rgba(255, 255, 255, 0.82) !important;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease, transform 0.2s ease;
	display: inline-block;
}

.site-footer .footer-menu a:hover {
	color: #f0c674 !important;
	transform: translateX(4px);
}

.mhf-footer-info {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.mhf-footer-info li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	color: rgba(255, 255, 255, 0.82) !important;
	line-height: 1.45;
	font-weight: 500;
}

.mhf-footer-info i {
	color: #f0c674 !important;
	margin-top: 0.15rem;
}

.mhf-footer-link {
	font-size: 0.95rem;
	color: #f0c674 !important;
}

.mhf-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.mhf-footer-social a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.1) !important;
	border: 1px solid rgba(240, 198, 116, 0.35) !important;
	color: #f0c674 !important;
	font-size: 1.1rem;
	text-decoration: none;
	box-shadow: none;
	transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.mhf-footer-social a:hover {
	transform: translateY(-4px) scale(1.04);
	background: rgba(240, 198, 116, 0.22) !important;
	color: #fff !important;
	border-color: #f0c674 !important;
}

.mhf-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7) !important;
}

.mhf-footer-bottom a {
	color: #f0c674 !important;
	text-decoration: none;
	font-weight: 600;
}

.mhf-footer-tagline {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.65) !important;
	letter-spacing: 0.04em;
}

@media (max-width: 991.98px) {
	.mhf-footer-grid {
		grid-template-columns: 1fr;
	}

	.mhf-footer-links-col {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 575.98px) {
	.mhf-footer-cta {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.mhf-footer-cta .btn {
		width: 100%;
		justify-content: center;
	}

	.mhf-footer-links-col {
		grid-template-columns: 1fr;
	}

	.mhf-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
}

/* Widgets / content pages */
.widget {
	background: var(--mhf-white);
	border: 1px solid var(--mhf-line);
	border-radius: var(--mhf-radius);
	padding: 1.25rem;
}

.widget ul {
	padding-left: 1.1rem;
	margin-bottom: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.pagination-nav .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.pagination-nav .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.65rem;
	border: 1px solid var(--mhf-line);
	border-radius: 0.375rem;
	text-decoration: none;
	color: var(--mhf-primary);
	background: #fff;
}

.pagination-nav .page-numbers.current,
.pagination-nav .page-numbers:hover {
	background: var(--mhf-primary);
	border-color: var(--mhf-primary);
	color: #fff;
}

/* Legacy carousel (non-home) */
.mhf-hero-carousel .mhf-slide {
	min-height: min(72vh, 620px);
	background-size: cover;
	background-position: center;
}

/* ==========================================================================
   Keyframes
   ========================================================================== */

@keyframes mhfFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}

@keyframes mhfPulse {
	0%, 100% { transform: scale(1); opacity: 0.85; }
	50% { transform: scale(1.08); opacity: 1; }
}

@keyframes mhfIconBob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

@keyframes mhfTitleIn {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes mhfSlideIn {
	to { opacity: 1; transform: translateX(0); }
}

@keyframes mhfSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes mhfSpark {
	0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
	50% { transform: translateY(-14px) scale(1.35); opacity: 0.9; }
}

@keyframes mhfLogoPulse {
	0%, 100% { box-shadow: 0 0 0 1px rgba(155, 109, 255, 0.25), 0 24px 50px rgba(107, 63, 160, 0.22); }
	50% { box-shadow: 0 0 0 8px rgba(155, 109, 255, 0.12), 0 28px 60px rgba(107, 63, 160, 0.3); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
	.mhf-hero {
		padding-top: 1.75rem;
		min-height: auto;
		align-items: flex-start;
	}

	.mhf-section {
		padding: 2.75rem 0;
	}

	.mhf-vision {
		flex-direction: column;
		text-align: center;
	}

	.mhf-hero-visual {
		min-height: 360px;
	}

	.mhf-hero-logo-badge {
		width: 72px;
		height: 72px;
	}
}

@media (max-width: 767.98px) {
	.mhf-expertise-carousel .owl-nav {
		display: none;
	}

	.mhf-contact-form {
		padding: 1.25rem;
	}

	.mhf-topics {
		max-height: none;
	}

	.mhf-orbit {
		display: none; /* prevent horizontal overflow on small screens */
	}

	.mhf-hero-visual {
		min-height: 260px;
	}

	.mhf-hero-mark {
		width: 110px;
		height: 110px;
		font-size: 2.75rem;
	}

	.mhf-orb,
	.mhf-hero-ring {
		max-width: 70%;
	}

	.owl-carousel,
	.mhf-owl-carousel {
		max-width: 100%;
		overflow: hidden;
	}

	.mhf-service-visual {
		height: 96px;
		min-height: 96px;
	}

	.mhf-service-icon-mark {
		width: 52px;
		height: 52px;
		font-size: 1.35rem;
	}

	.mhf-svc-hero-title {
		font-size: clamp(1.65rem, 7vw, 2.1rem);
	}

	.mhf-svc-hero-actions .btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	.mhf-reveal,
	.mhf-topic-item,
	.mhf-hero-title,
	.mhf-float,
	.mhf-orb,
	.mhf-modality-icon,
	.mhf-timeline-dot,
	.mhf-hero-banner-img,
	.mhf-hero-logo-badge,
	.mhf-hero-ring,
	.mhf-orbit-item,
	.mhf-spark,
	.mhf-logo-glow {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* ==========================================================================
   Services list + single service page
   ========================================================================== */

.mhf-svc-list-hero {
	padding: 4.5rem 0 2rem;
	background:
		radial-gradient(circle at 15% 20%, rgba(155, 109, 255, 0.12), transparent 40%),
		radial-gradient(circle at 85% 10%, rgba(107, 63, 160, 0.08), transparent 38%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(250, 248, 253, 0.7) 100%);
}

.mhf-svc-list-hero .mhf-section-sub {
	max-width: 640px;
}

.mhf-svc-count {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 1.25rem 0 0;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--mhf-line);
	color: var(--mhf-primary);
	font-size: 0.88rem;
	font-weight: 600;
}

.mhf-svc-list-cta {
	margin-top: 3.5rem;
}

.mhf-svc-list-cta-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 1.75rem 1.75rem;
	border-radius: calc(var(--mhf-radius) + 0.35rem);
	background:
		radial-gradient(circle at 10% 40%, rgba(155, 109, 255, 0.16), transparent 45%),
		linear-gradient(120deg, #f3eefb 0%, #fff 55%, #efe6ff 100%);
	border: 1px solid var(--mhf-line);
}

.mhf-svc-hero {
	position: relative;
	padding: 3.25rem 0 3.75rem;
	overflow: hidden;
}

.mhf-svc-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 30%, rgba(155, 109, 255, 0.16), transparent 42%),
		radial-gradient(circle at 88% 15%, rgba(107, 63, 160, 0.1), transparent 40%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 242, 255, 0.75) 100%);
	pointer-events: none;
}

.mhf-svc-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 1.5rem;
	font-size: 0.88rem;
	color: var(--mhf-muted);
}

.mhf-svc-breadcrumb a {
	color: var(--mhf-primary);
	text-decoration: none;
}

.mhf-svc-breadcrumb a:hover {
	text-decoration: underline;
}

.mhf-svc-hero-tag {
	margin-bottom: 0.85rem;
}

.mhf-svc-hero-title {
	font-size: clamp(2rem, 4vw, 2.85rem);
	line-height: 1.15;
	margin: 0 0 1rem;
	background: linear-gradient(120deg, var(--mhf-text) 0%, var(--mhf-primary) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.mhf-svc-hero-lead {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--mhf-muted);
	max-width: 34rem;
	margin-bottom: 1.5rem;
}

.mhf-svc-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.mhf-svc-hero-visual {
	position: relative;
	min-height: 320px;
	display: grid;
	place-items: center;
}

.mhf-svc-hero-ring {
	position: absolute;
	width: min(340px, 80%);
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1px dashed rgba(107, 63, 160, 0.28);
	animation: mhfSpin 28s linear infinite;
}

.mhf-svc-hero-orb {
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(155, 109, 255, 0.28), transparent 70%);
	filter: blur(4px);
}

.mhf-svc-hero-img {
	position: relative;
	z-index: 1;
	max-width: 280px;
	width: 100%;
	height: auto;
	animation: mhfFloat 7s ease-in-out infinite;
	filter: drop-shadow(0 18px 36px rgba(107, 63, 160, 0.18));
}

.mhf-svc-journey-head {
	margin-bottom: 1.75rem;
}

.mhf-svc-journey {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mhf-svc-step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.15rem;
	padding: 1.35rem 1.35rem;
	border-radius: calc(var(--mhf-radius) + 0.15rem);
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--mhf-line);
	box-shadow: 0 10px 28px rgba(107, 63, 160, 0.05);
	transition: transform var(--mhf-transition), box-shadow var(--mhf-transition);
}

.mhf-svc-step:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 36px rgba(107, 63, 160, 0.1);
}

.mhf-service-text .mhf-service-body {
	padding: 1.5rem 1.55rem 1.65rem;
}

.mhf-service-index-inline {
	display: block;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: rgba(107, 63, 160, 0.45);
	margin-bottom: 0.55rem;
}

.mhf-course-text {
	flex-direction: column;
}

.mhf-course-text .mhf-course-body {
	padding: 1.5rem 1.45rem;
}

.mhf-shop-text {
	padding: 1.5rem 1.45rem;
}

.mhf-blog-card-text .mhf-blog-body {
	padding-top: 1.35rem;
}

.mhf-brand-text-only .mhf-brand-text {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--mhf-primary);
}

.mhf-contact-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.mhf-contact-social a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--mhf-primary-soft);
	color: var(--mhf-primary);
	text-decoration: none;
	border: 1px solid var(--mhf-line);
	font-weight: 600;
	transition: var(--mhf-transition);
}

.mhf-contact-social a:hover {
	background: var(--mhf-primary);
	color: #fff;
	text-decoration: none;
}

.mhf-svc-aside-points li {
	padding-left: 0;
}

.mhf-svc-aside-points li i {
	display: none;
}

.mhf-svc-step-index {
	min-width: 2.5rem;
}

.mhf-hero {
	padding-bottom: 3.5rem;
}

.mhf-svc-step-num {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: rgba(107, 63, 160, 0.45);
}

.mhf-svc-step-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, var(--mhf-primary-soft), var(--mhf-accent-soft));
	color: var(--mhf-primary);
	font-size: 1.15rem;
}

.mhf-svc-step-body h3 {
	font-size: 1.15rem;
	margin-bottom: 0.45rem;
}

.mhf-svc-step-body p {
	margin: 0;
	color: var(--mhf-muted);
	line-height: 1.7;
}

.mhf-svc-faq {
	margin-top: 2.75rem;
	padding: 1.75rem;
	border-radius: calc(var(--mhf-radius) + 0.25rem);
	background: rgba(250, 248, 253, 0.85);
	border: 1px solid var(--mhf-line);
}

.mhf-svc-faq-head {
	margin-bottom: 1.25rem;
}

.mhf-svc-aside {
	position: sticky;
	top: 6.5rem;
}

.mhf-svc-aside-card {
	padding: 1.75rem 1.5rem;
	border-radius: calc(var(--mhf-radius) + 0.25rem);
	background:
		radial-gradient(circle at 80% 0%, rgba(155, 109, 255, 0.18), transparent 45%),
		linear-gradient(165deg, #ffffff 0%, #f7f2ff 100%);
	border: 1px solid var(--mhf-line);
	box-shadow: 0 18px 40px rgba(107, 63, 160, 0.1);
}

.mhf-svc-aside-card p {
	color: var(--mhf-muted);
	line-height: 1.65;
}

.mhf-svc-aside-points {
	margin: 1.15rem 0 1.35rem;
}

.mhf-svc-aside-points li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin-bottom: 0.55rem;
	font-size: 0.95rem;
	color: var(--mhf-text);
}

.mhf-svc-aside-points i {
	color: var(--mhf-primary);
	margin-top: 0.15rem;
}

.mhf-svc-related {
	margin-top: 0;
}

@media (max-width: 991.98px) {
	.mhf-svc-aside {
		position: static;
	}

	.mhf-svc-hero-visual {
		min-height: 260px;
	}
}

@media (max-width: 575.98px) {
	.mhf-svc-step {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.mhf-svc-step-index {
		flex-direction: row;
		justify-content: flex-start;
	}

	.mhf-svc-list-cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* ==========================================================================
   Cosmic sticky banner - transparent glass cards
   ========================================================================== */

.mhf-service,
.mhf-course,
.mhf-shop-card,
.mhf-stat,
.mhf-why-card,
.mhf-testimonial,
.mhf-blog-card,
.mhf-featured,
.mhf-contact-form,
.mhf-faq-accordion .accordion-item,
.mhf-svc-aside-card,
.mhf-svc-step,
.mhf-philosophy-mission,
.mhf-philosophy-band,
.mhf-mission,
.mhf-svc-list-cta-inner,
.mhf-footer-cta,
.mhf-service-animated,
.mhf-course-animated,
.mhf-shop-animated,
.mhf-stat-animated {
	background: rgb(2 2 2 / 46%) !important;
	background-image: none !important;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.mhf-service h3,
.mhf-course h3,
.mhf-shop-card h3,
.mhf-blog-card h3,
.mhf-stat strong,
.mhf-testimonial footer strong,
.mhf-svc-step-body h3,
.mhf-philosophy-mission p:last-child,
.mhf-featured .mhf-section-title,
.mhf-svc-aside-card h2,
.mhf-svc-aside-card .h4,
.mhf-footer-cta-title {
	color: #fff !important;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.mhf-service p,
.mhf-course p,
.mhf-shop-card p,
.mhf-blog-card p,
.mhf-why-card p,
.mhf-testimonial p,
.mhf-stat-label,
.mhf-testimonial footer span,
.mhf-svc-step-body p,
.mhf-featured .mhf-text,
.mhf-featured-note,
.mhf-svc-aside-card p,
.mhf-svc-aside-points li,
.mhf-blog-date,
.mhf-footer-cta-text,
.mhf-mission {
	color: rgba(255, 255, 255, 0.84) !important;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.mhf-eyebrow,
.mhf-featured .mhf-eyebrow,
.mhf-philosophy-mission-label,
.mhf-service-tag,
.mhf-course-badge,
.mhf-featured-badge,
.mhf-svc-hero-tag,
.mhf-svc-step-num,
.mhf-service-index-inline,
.mhf-quote figcaption {
	color: #f0c674 !important;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.mhf-service-tag,
.mhf-course-badge,
.mhf-featured-badge,
.mhf-featured-chips span,
.mhf-svc-hero-tag {
	background: rgba(240, 198, 116, 0.16) !important;
	border: 1px solid rgba(240, 198, 116, 0.35);
	color: #f0c674 !important;
}

.mhf-link {
	color: #f0c674 !important;
}

.mhf-link:hover {
	color: #ffe09a !important;
}

.mhf-stat-icon,
.mhf-why-icon,
.mhf-contact-point-icon {
	background: rgba(240, 198, 116, 0.14) !important;
	color: #f0c674 !important;
	border-color: rgba(240, 198, 116, 0.35) !important;
}

.mhf-testimonial-stars {
	background: transparent !important;
	border: 0 !important;
	color: #f0c674 !important;
}

.mhf-contact-points li {
	color: rgba(255, 255, 255, 0.88);
}

.mhf-contact-form .form-label {
	color: #fff !important;
}

.mhf-contact-form .form-control,
.mhf-contact-form .form-select {
	background: rgba(255, 255, 255, 0.1) !important;
	border-color: rgba(255, 255, 255, 0.28) !important;
	color: #fff !important;
}

.mhf-contact-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.mhf-contact-form .form-control:focus,
.mhf-contact-form .form-select:focus {
	background: rgba(255, 255, 255, 0.14) !important;
	border-color: #f0c674 !important;
	box-shadow: 0 0 0 0.2rem rgba(240, 198, 116, 0.18) !important;
	color: #fff !important;
}

.mhf-contact-form .form-select option {
	background: #1a1028;
	color: #fff;
}

.mhf-faq-accordion .accordion-button {
	background: transparent !important;
	color: #fff !important;
	box-shadow: none !important;
}

.mhf-faq-accordion .accordion-button:not(.collapsed) {
	color: #f0c674 !important;
}

.mhf-faq-accordion .accordion-button::after {
	filter: invert(1) brightness(1.4);
}

.mhf-faq-accordion .accordion-body {
	color: rgba(255, 255, 255, 0.84) !important;
}

.mhf-philosophy-band .mhf-section-title,
.mhf-philosophy-copy,
.mhf-philosophy-copy p {
	color: #fff !important;
}

.mhf-quote blockquote p {
	color: #fff;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

#contact.mhf-section {
	background: rgba(8, 4, 22, 0.35);
}

.mhf-svc-list-hero,
.mhf-svc-hero,
.mhf-page-hero,
.mhf-svc-list-cta,
.mhf-quote-section {
	background: transparent !important;
}

.mhf-svc-hero-title {
	background: linear-gradient(120deg, #fff 0%, #e8d7ff 50%, #f0c674 100%) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	color: transparent !important;
}

.mhf-alert {
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: rgba(255, 255, 255, 0.25) !important;
	color: #fff !important;
}

.mhf-contact-social a {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #f0c674 !important;
	border-color: rgba(240, 198, 116, 0.35) !important;
}

.mhf-contact-social a:hover {
	background: rgba(240, 198, 116, 0.22) !important;
	color: #fff !important;
}

.mhf-toggler-bar {
	background: #f6f1ff !important;
}

.mhf-hero-lead,
.mhf-hero-meta {
	color: var(--mhf-muted);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.mhf-btn-ghost:hover {
	transform: translateY(-2px);
}

@media (max-width: 991.98px) {
	body::before {
		background-image: var(--mhf-body-bg-image-mobile);
		background-position: center center;
		background-size: cover;
		background-attachment: scroll;
	}

	.mhf-hero {
		align-items: flex-start;
		padding: 1.75rem 0 1.5rem;
		min-height: auto;
	}

	.mhf-hero .container {
		position: relative;
		z-index: 2;
		padding-bottom: 0;
	}

	.mhf-hero-title {
		font-size: clamp(1.85rem, 7.5vw, 2.35rem);
		max-width: 16ch;
	}

	.mhf-section {
		padding: 2.75rem 0;
	}

	.mhf-home #about.mhf-section,
	.mhf-page-about #about.mhf-section {
		padding-top: 1.75rem;
		padding-bottom: 2.25rem;
	}

	.mhf-section-head {
		margin-bottom: 1.75rem;
	}

	.mhf-about-glass {
		padding: 1.25rem 1rem 1.35rem;
	}

	.mhf-about-stats {
		margin-top: 1.15rem;
	}

	.mhf-hero-actions {
		margin-bottom: 0.75rem;
	}

	.mhf-hero-meta {
		margin-top: 0.75rem;
	}
}

@media (max-width: 575.98px) {
	.mhf-hero {
		padding: 1.25rem 0 1rem;
	}

	.mhf-section {
		padding: 2.25rem 0;
	}

	.mhf-home #about.mhf-section,
	.mhf-page-about #about.mhf-section {
		padding-top: 1.25rem;
		padding-bottom: 1.75rem;
	}
}

/* About Us — centered glass panel (100% mobile, 80% tablet+) */
.mhf-about-glass {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem 1.15rem 1.75rem;
	background: rgb(2 2 2 / 46%);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: calc(var(--mhf-radius) + 0.35rem);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-sizing: border-box;
}

.mhf-about-glass-inner {
	width: 100%;
	max-width: none;
	margin: 0 auto;
}

.mhf-about-glass .mhf-section-title {
	color: #fff;
}

.mhf-about-glass .mhf-about-copy,
.mhf-about-glass .mhf-about-copy p {
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
}

.mhf-about-glass .mhf-mission {
	width: 100%;
	max-width: none;
	margin-top: 1.25rem;
	margin-bottom: 0;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding-left: 0;
	padding-right: 0;
}

.mhf-about-stats {
	margin-top: 1.75rem;
}

.mhf-about-stats .mhf-stat {
	height: 100%;
	text-align: center;
}

@media (min-width: 576px) {
	.mhf-about-glass {
		padding: 1.75rem 1.5rem 2rem;
	}
}

@media (min-width: 768px) {
	.mhf-about-glass {
		width: 80%;
		max-width: 80%;
		padding: 2.25rem 2rem 2.5rem;
	}
}

@media (min-width: 1200px) {
	.mhf-about-glass {
		padding: 2.5rem 2.5rem 2.75rem;
	}
}

/* ==========================================================================
   Inner / single pages — cosmic glass parity
   ========================================================================== */

.mhf-svc-hero-bg {
	background: transparent !important;
}

.mhf-svc-count {
	background: rgba(240, 198, 116, 0.16) !important;
	border-color: rgba(240, 198, 116, 0.35) !important;
	color: #f0c674 !important;
}

.mhf-svc-faq {
	background: transparent !important;
	border: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.mhf-svc-faq-head .h3,
.mhf-svc-list-cta-inner .h3 {
	color: #fff !important;
}

.mhf-svc-breadcrumb {
	color: rgba(255, 255, 255, 0.7) !important;
}

.mhf-svc-breadcrumb a {
	color: #f0c674 !important;
}

.mhf-svc-step-body p {
	color: rgba(255, 255, 255, 0.84) !important;
}

.mhf-svc-aside-card p,
.mhf-svc-aside-points li {
	color: rgba(255, 255, 255, 0.84) !important;
}

.mhf-content-glass {
	width: 100%;
	padding: 1.5rem 1.25rem 1.75rem;
	background: rgb(2 2 2 / 46%);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: calc(var(--mhf-radius) + 0.35rem);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: rgba(255, 255, 255, 0.9);
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.mhf-content-glass {
		padding: 2.25rem 2rem 2.5rem;
	}

	.mhf-page-content .col-12 > .mhf-content-glass,
	.mhf-page-404 .mhf-content-glass {
		width: 80%;
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
}

.mhf-content-glass .entry-title,
.mhf-content-glass h1,
.mhf-content-glass h2,
.mhf-content-glass h3,
.mhf-content-glass h4,
.comments-title,
.comment-reply-title {
	color: #fff !important;
}

.mhf-content-glass .entry-content,
.mhf-content-glass .entry-content p,
.mhf-content-glass .mhf-text {
	color: rgba(255, 255, 255, 0.9) !important;
}

.mhf-content-glass a,
.mhf-archive-link {
	color: #f0c674;
	text-decoration: none;
}

.mhf-content-glass a:hover,
.mhf-archive-link:hover {
	color: #fff;
}

.mhf-entry-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem 1.1rem;
	margin-top: 0.85rem;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.72) !important;
}

.mhf-entry-meta a {
	color: #f0c674 !important;
}

.mhf-entry-footer {
	margin-top: 1.75rem;
	padding-top: 1.15rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mhf-entry-footer .post-tags,
.mhf-entry-footer .post-tags a {
	color: rgba(255, 255, 255, 0.8);
}

.mhf-archive-card .mhf-entry-meta {
	justify-content: flex-start;
}

.site-main .text-muted,
.entry-meta {
	color: rgba(255, 255, 255, 0.72) !important;
}

.widget {
	background: rgb(2 2 2 / 46%) !important;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	color: #fff !important;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.widget + .widget {
	margin-top: 1rem;
}

.widget .widget-title,
.widget h3 {
	color: #fff !important;
}

.widget a {
	color: #f0c674 !important;
}

.widget a:hover {
	color: #fff !important;
}

.widget ul {
	color: rgba(255, 255, 255, 0.84);
}

.pagination-nav .page-numbers {
	background: rgb(2 2 2 / 46%) !important;
	border-color: rgba(255, 255, 255, 0.22) !important;
	color: #fff !important;
}

.pagination-nav .page-numbers.current,
.pagination-nav .page-numbers:hover {
	background: rgba(240, 198, 116, 0.22) !important;
	border-color: #f0c674 !important;
	color: #fff !important;
}

.mhf-nav-toggler {
	background: rgba(255, 255, 255, 0.1) !important;
	border-color: rgba(255, 255, 255, 0.28) !important;
}

.mhf-social-label {
	margin-top: 1.25rem;
	margin-bottom: 0.65rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
}

.mhf-comment-form .form-control,
.mhf-comment-form textarea,
.mhf-comment-form input[type="text"],
.mhf-comment-form input[type="email"],
.mhf-comment-form input[type="url"],
.mhf-search-form .form-control,
.mhf-cf7-wrap .form-control,
.mhf-cf7-wrap input[type="text"],
.mhf-cf7-wrap input[type="email"],
.mhf-cf7-wrap input[type="tel"],
.mhf-cf7-wrap textarea,
.mhf-cf7-wrap select {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.25) !important;
	color: #fff !important;
}

.mhf-comment-form label,
.mhf-cf7-wrap label {
	color: rgba(255, 255, 255, 0.85) !important;
}

.comment-list .comment,
.comment-list .pingback {
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.88);
}

.comment-list .comment-author,
.comment-list .comment-author a {
	color: #fff !important;
}

.comment-list .comment-metadata,
.comment-list .comment-metadata a {
	color: rgba(255, 255, 255, 0.65) !important;
}

.mhf-comments-glass {
	margin-top: 1.25rem;
}

.mhf-page-contact .mhf-contact-points li {
	color: rgba(255, 255, 255, 0.88);
}

.mhf-section-soft.mhf-svc-related {
	background: rgba(8, 4, 22, 0.35) !important;
}

.mhf-section-title,
.mhf-featured .mhf-section-title,
.mhf-philosophy-band .mhf-section-title,
.mhf-about-glass .mhf-section-title {
	font-size: 2rem !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
}

@media (max-width: 767.98px) {
	.mhf-section-title,
	.mhf-featured .mhf-section-title,
	.mhf-philosophy-band .mhf-section-title,
	.mhf-about-glass .mhf-section-title {
		font-size: 1.75rem !important;
	}
}

/* All headers / titles — weight 700 */
h1, h2, h3, h4, h5, h6,
.navbar-brand,
.mhf-brand-text,
.mhf-section-title,
.mhf-hero-title,
.mhf-hero-byline,
.mhf-svc-hero-title,
.mhf-svc-step-body h3,
.mhf-svc-step-num,
.mhf-svc-aside-card h2,
.mhf-svc-aside-card .h4,
.mhf-svc-list-cta-inner .h3,
.mhf-svc-faq-head .h3,
.mhf-footer-cta-title,
.mhf-footer-col-title,
.mhf-featured .mhf-section-title,
.mhf-featured-badge,
.entry-title,
.widget-title,
.comments-title,
.comment-reply-title,
.mhf-stat strong,
.mhf-why-card h3,
.mhf-service h3,
.mhf-course h3,
.mhf-shop-card h3,
.mhf-blog-card h3,
.mhf-philosophy-band .mhf-section-title {
	font-weight: 700 !important;
}