:root {
	--mlp-primary: #213b36;
	--mlp-accent: #e6a85c;
	--mlp-bg: #f6f4ee;
	--mlp-text: #17211f;
	--mlp-white: #fff;
	--mlp-muted: #66706d;
	--mlp-border: rgba(23, 33, 31, .13);
	--mlp-shadow: 0 24px 70px rgba(23, 33, 31, .12);
	--mlp-radius: 28px;
	--mlp-shell: 1180px;
}

html { scroll-behavior: smooth; }
body.mlp-client-page {
	margin: 0;
	background: var(--mlp-bg);
	color: var(--mlp-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
body.mlp-client-page *, body.mlp-client-page *::before, body.mlp-client-page *::after { box-sizing: border-box; }
body.mlp-client-page img { max-width: 100%; height: auto; display: block; }
body.mlp-client-page a { color: inherit; }
body.mlp-client-page h1,
body.mlp-client-page h2,
body.mlp-client-page h3,
body.mlp-client-page p { margin-top: 0; }
body.mlp-client-page h1,
body.mlp-client-page h2,
body.mlp-client-page h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -.035em;
}
body.mlp-client-page h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); max-width: 900px; margin-bottom: 30px; }
body.mlp-client-page h2 { font-size: clamp(2.45rem, 5vw, 4.6rem); margin-bottom: 28px; }
body.mlp-client-page h3 { font-size: clamp(1.45rem, 2vw, 2rem); }
body.admin-bar .mlp-header { top: 32px; }

.mlp-shell { width: min(calc(100% - 40px), var(--mlp-shell)); margin-inline: auto; }
.mlp-section { padding: clamp(90px, 11vw, 150px) 0; }
.mlp-eyebrow {
	margin-bottom: 18px;
	color: var(--mlp-primary);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .17em;
	text-transform: uppercase;
}
.mlp-skip-link {
	position: fixed;
	left: 20px;
	top: -100px;
	z-index: 99999;
	padding: 12px 18px;
	background: #fff;
	color: #000;
	border-radius: 8px;
}
.mlp-skip-link:focus { top: 20px; }

.mlp-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	border-bottom: 1px solid transparent;
	transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.mlp-header.is-scrolled {
	background: rgba(246, 244, 238, .94);
	border-color: var(--mlp-border);
	box-shadow: 0 12px 34px rgba(23,33,31,.06);
	backdrop-filter: blur(18px);
}
.mlp-header__inner { min-height: 84px; display: flex; align-items: center; gap: 36px; }
.mlp-brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; min-width: 180px; }
.mlp-brand img { width: auto; max-width: 180px; max-height: 52px; object-fit: contain; }
.mlp-brand__mark {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: var(--mlp-primary);
	color: #fff;
	font-size: .84rem;
	font-weight: 800;
	letter-spacing: .08em;
}
.mlp-brand__name { font-weight: 800; line-height: 1.1; }
.mlp-nav { display: flex; align-items: center; justify-content: center; gap: 29px; margin-left: auto; }
.mlp-nav a { text-decoration: none; font-size: .91rem; font-weight: 700; }
.mlp-nav a:hover { color: var(--mlp-primary); }
.mlp-header__cta { flex: 0 0 auto; }
.mlp-menu-toggle { display: none; }

.mlp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 54px;
	padding: 14px 25px;
	border: 1px solid var(--mlp-primary);
	border-radius: 999px;
	background: var(--mlp-primary);
	color: #fff !important;
	font-size: .9rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.mlp-button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(33,59,54,.2); }
.mlp-button--small { min-height: 46px; padding: 11px 20px; }
.mlp-button--ghost { background: transparent; color: var(--mlp-primary) !important; }
.mlp-button--light { background: #fff; border-color: #fff; color: var(--mlp-primary) !important; }
.mlp-button--outline-light { background: transparent; border-color: rgba(255,255,255,.65); color: #fff !important; }
.mlp-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.mlp-hero { position: relative; overflow: hidden; padding: 145px 0 80px; min-height: 760px; display: flex; align-items: center; }
.mlp-hero::before {
	content: "";
	position: absolute;
	inset: 0 0 auto auto;
	width: 48vw;
	height: 48vw;
	max-width: 760px;
	max-height: 760px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--mlp-accent) 18%, transparent);
	filter: blur(1px);
	transform: translate(18%, -28%);
}
.mlp-hero__grid { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(50px, 7vw, 110px); align-items: center; }
.mlp-hero__content { position: relative; z-index: 2; }
.mlp-hero__intro { max-width: 650px; margin-bottom: 34px; color: var(--mlp-muted); font-size: clamp(1.08rem, 1.6vw, 1.28rem); }
.mlp-hero__micro { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 30px; font-size: .88rem; font-weight: 700; }
.mlp-hero__micro a { text-decoration: none; border-bottom: 1px solid currentColor; }
.mlp-hero__visual { position: relative; min-height: 560px; }
.mlp-hero__visual > img,
.mlp-hero__placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 220px 220px 32px 32px;
	box-shadow: var(--mlp-shadow);
}
.mlp-hero__placeholder { display: grid; place-items: center; background: linear-gradient(145deg, var(--mlp-primary), color-mix(in srgb, var(--mlp-primary) 70%, #000)); color: #fff; }
.mlp-hero__placeholder span { font-family: Georgia, serif; font-size: 7rem; }
.mlp-hero__shape { position: absolute; right: -35px; bottom: -30px; width: 65%; height: 54%; border: 2px solid var(--mlp-accent); border-radius: 50%; transform: rotate(-12deg); }
.mlp-hero__badge {
	position: absolute;
	left: -56px;
	bottom: 40px;
	max-width: 250px;
	padding: 17px 20px;
	border-radius: 17px;
	background: #fff;
	box-shadow: 0 20px 55px rgba(23,33,31,.16);
	font-size: .82rem;
	font-weight: 800;
	line-height: 1.35;
}
.mlp-hero__badge-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: #35a463; box-shadow: 0 0 0 5px rgba(53,164,99,.12); }

.mlp-highlights { padding: 0 0 75px; }
.mlp-highlights__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--mlp-border); border-bottom: 1px solid var(--mlp-border); }
.mlp-highlight { padding: 30px 26px; border-right: 1px solid var(--mlp-border); }
.mlp-highlight:last-child { border-right: 0; }
.mlp-highlight strong { display: block; color: var(--mlp-primary); font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 500; line-height: 1; }
.mlp-highlight span { display: block; margin-top: 9px; color: var(--mlp-muted); font-size: .86rem; font-weight: 700; }

.mlp-about { background: #fff; }
.mlp-about__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 9vw, 145px); }
.mlp-section-heading { max-width: 620px; }
.mlp-section-heading--row { max-width: none; display: flex; justify-content: space-between; gap: 60px; align-items: end; margin-bottom: 55px; }
.mlp-section-heading--row > p { max-width: 440px; margin-bottom: 12px; color: var(--mlp-muted); }
.mlp-section-heading--center { margin-inline: auto; text-align: center; }
.mlp-about__content { font-size: 1.12rem; }
.mlp-richtext > *:last-child { margin-bottom: 0; }
.mlp-about__image { margin: 45px 0 0; }
.mlp-about__image img { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--mlp-radius); }

.mlp-services { background: var(--mlp-bg); }
.mlp-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mlp-service-card { min-height: 390px; padding: 32px; border: 1px solid var(--mlp-border); border-radius: 24px; background: rgba(255,255,255,.48); display: flex; flex-direction: column; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.mlp-service-card:hover { transform: translateY(-8px); background: #fff; box-shadow: var(--mlp-shadow); }
.mlp-service-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 66px; }
.mlp-service-card__number { color: var(--mlp-muted); font-size: .75rem; font-weight: 800; letter-spacing: .15em; }
.mlp-service-card__icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in srgb, var(--mlp-accent) 24%, #fff); font-size: 1.4rem; }
.mlp-service-card h3 { margin-bottom: 16px; }
.mlp-service-card p { margin-bottom: 25px; color: var(--mlp-muted); font-size: .94rem; }
.mlp-service-card > a { margin-top: auto; color: var(--mlp-primary); font-size: .86rem; font-weight: 800; text-decoration: none; }

.mlp-gallery { background: #fff; }
.mlp-gallery__grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr; grid-auto-rows: 240px; gap: 15px; margin-top: 48px; }
.mlp-gallery__item { overflow: hidden; border-radius: 20px; }
.mlp-gallery__item:first-child { grid-row: span 2; }
.mlp-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mlp-gallery__item:hover img { transform: scale(1.045); }

.mlp-reviews { background: var(--mlp-primary); color: #fff; }
.mlp-reviews .mlp-eyebrow { color: var(--mlp-accent); }
.mlp-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.mlp-review { margin: 0; padding: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; background: rgba(255,255,255,.06); }
.mlp-review__stars { margin-bottom: 24px; color: var(--mlp-accent); letter-spacing: .14em; }
.mlp-review > p { min-height: 150px; font-family: Georgia, serif; font-size: 1.32rem; line-height: 1.45; }
.mlp-review footer { display: flex; flex-direction: column; gap: 3px; font-size: .84rem; }
.mlp-review footer span { opacity: .65; }

.mlp-faq { background: #fff; }
.mlp-faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 130px); }
.mlp-faq__item { border-top: 1px solid var(--mlp-border); }
.mlp-faq__item:last-child { border-bottom: 1px solid var(--mlp-border); }
.mlp-faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; font-weight: 800; }
.mlp-faq__item summary::-webkit-details-marker { display: none; }
.mlp-faq__item summary span { position: relative; width: 21px; height: 21px; flex: 0 0 21px; }
.mlp-faq__item summary span::before,
.mlp-faq__item summary span::after { content: ""; position: absolute; left: 3px; top: 10px; width: 15px; height: 1px; background: currentColor; }
.mlp-faq__item summary span::after { transform: rotate(90deg); transition: transform .2s ease; }
.mlp-faq__item[open] summary span::after { transform: rotate(0); }
.mlp-faq__item > div { padding: 0 50px 22px 0; color: var(--mlp-muted); }

.mlp-contact { padding: clamp(70px, 9vw, 120px) 0; background: var(--mlp-bg); }
.mlp-contact__panel { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; padding: clamp(45px, 7vw, 85px); border-radius: 34px; background: var(--mlp-primary); color: #fff; }
.mlp-contact__content .mlp-eyebrow { color: var(--mlp-accent); }
.mlp-contact__content > p:not(.mlp-eyebrow) { max-width: 570px; opacity: .78; }
.mlp-contact__details { display: grid; gap: 26px; align-content: center; }
.mlp-contact__details > div { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.17); }
.mlp-contact__details span { display: block; margin-bottom: 7px; color: var(--mlp-accent); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.mlp-contact__details strong { font-size: 1rem; }
.mlp-contact__details a { text-decoration: none; }
.mlp-contact__below { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.mlp-contact__form,
.mlp-contact__map { min-height: 420px; overflow: hidden; padding: 34px; border-radius: 26px; background: #fff; }
.mlp-contact__map { padding: 0; }
.mlp-contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.mlp-contact__form input:not([type="checkbox"]):not([type="radio"]),
.mlp-contact__form textarea,
.mlp-contact__form select { width: 100%; border: 1px solid var(--mlp-border); border-radius: 12px; padding: 13px 14px; background: #fff; font: inherit; }
.mlp-contact__form button,
.mlp-contact__form input[type="submit"] { border: 0; border-radius: 999px; padding: 15px 24px; background: var(--mlp-primary); color: #fff; font-weight: 800; cursor: pointer; }

.mlp-footer { padding: 45px 0; background: #111a18; color: #fff; }
.mlp-footer__grid { display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: center; }
.mlp-footer p { margin: 5px 0 0; opacity: .6; font-size: .82rem; }
.mlp-socials, .mlp-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; font-size: .79rem; font-weight: 700; }
.mlp-socials a, .mlp-footer__legal a { text-decoration: none; opacity: .8; }
.mlp-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: #fff !important; font-size: .76rem; font-weight: 900; text-decoration: none; box-shadow: 0 14px 34px rgba(0,0,0,.2); }

.mlp-lightbox { position: fixed; inset: 0; z-index: 99999; display: grid; place-items: center; padding: 50px; background: rgba(0,0,0,.9); }
.mlp-lightbox[hidden] { display: none; }
.mlp-lightbox img { max-width: min(1200px, 94vw); max-height: 88vh; object-fit: contain; }
.mlp-lightbox__close { position: absolute; top: 20px; right: 25px; border: 0; background: transparent; color: #fff; font-size: 3rem; cursor: pointer; }

.mlp-directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mlp-directory__card { overflow: hidden; border: 1px solid var(--mlp-border); border-radius: 22px; background: #fff; }
.mlp-directory__image { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--mlp-primary); text-decoration: none; }
.mlp-directory__image img { width: 100%; height: 100%; object-fit: cover; }
.mlp-directory__image span { height: 100%; display: grid; place-items: center; color: #fff; font-family: Georgia, serif; font-size: 4rem; }
.mlp-directory__body { padding: 24px; }
.mlp-directory__meta { margin-bottom: 6px; color: var(--mlp-muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.mlp-directory__body h3 { margin-bottom: 12px; }
.mlp-directory__body h3 a { text-decoration: none; }
.mlp-directory__body > p:last-child { color: var(--mlp-muted); font-size: .9rem; }

@media (max-width: 1020px) {
	.mlp-header__cta { display: none; }
	.mlp-nav { gap: 20px; }
	.mlp-hero__grid { grid-template-columns: 1fr 1fr; gap: 50px; }
	.mlp-hero__visual { min-height: 480px; }
	.mlp-services__grid, .mlp-reviews__grid, .mlp-directory { grid-template-columns: repeat(2, 1fr); }
	.mlp-gallery__grid { grid-template-columns: 1fr 1fr; }
	.mlp-gallery__item:first-child { grid-row: span 1; }
}

@media (max-width: 780px) {
	body.admin-bar .mlp-header { top: 46px; }
	.mlp-shell { width: min(calc(100% - 28px), var(--mlp-shell)); }
	.mlp-header__inner { min-height: 72px; }
	.mlp-brand { min-width: 0; margin-right: auto; }
	.mlp-brand img { max-width: 145px; max-height: 44px; }
	.mlp-brand__name { max-width: 170px; font-size: .88rem; }
	.mlp-menu-toggle { width: 46px; height: 46px; padding: 12px; border: 1px solid var(--mlp-border); border-radius: 50%; background: transparent; display: grid; align-content: center; gap: 4px; cursor: pointer; }
	.mlp-menu-toggle span:not(.screen-reader-text) { display: block; width: 100%; height: 2px; background: var(--mlp-text); transition: transform .2s ease, opacity .2s ease; }
	.mlp-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	.mlp-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.mlp-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
	.mlp-nav { position: absolute; top: calc(100% + 1px); left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--mlp-border); border-radius: 18px; background: #fff; box-shadow: var(--mlp-shadow); }
	.mlp-nav.is-open { display: flex; }
	.mlp-nav a { padding: 12px 14px; }
	.mlp-hero { min-height: 0; padding: 120px 0 70px; }
	.mlp-hero__grid { grid-template-columns: 1fr; }
	.mlp-hero__visual { min-height: 480px; }
	.mlp-hero__badge { left: 18px; bottom: 18px; }
	.mlp-highlights__grid { grid-template-columns: repeat(2, 1fr); }
	.mlp-highlight:nth-child(2) { border-right: 0; }
	.mlp-highlight:nth-child(-n+2) { border-bottom: 1px solid var(--mlp-border); }
	.mlp-about__grid, .mlp-faq__grid, .mlp-contact__panel { grid-template-columns: 1fr; }
	.mlp-section-heading--row { display: block; }
	.mlp-services__grid, .mlp-reviews__grid, .mlp-directory { grid-template-columns: 1fr; }
	.mlp-service-card { min-height: 330px; }
	.mlp-service-card__top { margin-bottom: 40px; }
	.mlp-gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
	.mlp-review > p { min-height: auto; }
	.mlp-contact__panel { gap: 45px; }
	.mlp-contact__below { grid-template-columns: 1fr; }
	.mlp-footer__grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 520px) {
	body.mlp-client-page { font-size: 16px; }
	body.mlp-client-page h1 { font-size: clamp(2.8rem, 15vw, 4.4rem); }
	.mlp-hero__visual { min-height: 410px; }
	.mlp-hero__visual > img, .mlp-hero__placeholder { border-radius: 150px 150px 26px 26px; }
	.mlp-actions { flex-direction: column; align-items: stretch; }
	.mlp-button { width: 100%; }
	.mlp-highlights__grid { grid-template-columns: 1fr; }
	.mlp-highlight { border-right: 0; border-bottom: 1px solid var(--mlp-border); }
	.mlp-highlight:last-child { border-bottom: 0; }
	.mlp-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
	.mlp-contact__panel { padding: 38px 24px; border-radius: 24px; }
	.mlp-contact__form { padding: 24px; }
	.mlp-whatsapp { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
