

1000 years of Art & History
Rendez-vous at the castel
Find upcoming highlights here. Save the date and let us guide you.
/* -- The root styles must go in the element of the structure with the name "Slider". --*/
.lc-attributs__slider{
.splide__track{
overflow: visible;
}
.card-lc-attributs__slide{
&.is-prev{
.card-lc-attributs__overlay{
opacity: 1;
}
.card-lc-attributs__container-info{
opacity: 1;
transform: translateY(0);
visibility: visible;
}
}
}
}document.addEventListener('DOMContentLoaded', () => {
setTimeout(() => {
const sliders = document.querySelectorAll('.lc-attributs__slider');
if (!sliders.length) return;
sliders.forEach((sliderEl) => {
// 1) Get idSlider (data-script-id) and the Splide instance from Bricks
const idSlider = sliderEl.getAttribute('data-script-id');
const splide = window.bricksData?.splideInstances?.[idSlider];
if (!splide) return;
// 2) Scope custom arrows to the current lc-attributs block
const layout = sliderEl.closest('.lc-attributs') || document;
const prevBtn = layout.querySelector('.lc-attributs__arrow-left');
const nextBtn = layout.querySelector('.lc-attributs__arrow-right');
// 3) Custom arrows using Splide go() patterns ('<' and '>')
prevBtn?.addEventListener('click', () => splide.go('<'));
nextBtn?.addEventListener('click', () => splide.go('>'));
// 4) Card click behavior: 'left' (place in first visible column) or 'active' (respect focus)
// Set data-card-click-mode="active" on .lc-attributs__slider to switch mode.
const MODE = sliderEl.getAttribute('data-card-click-mode') || 'left';
// Use Splide's official 'click' event to get the SlideComponent + MouseEvent
splide.on('click', (Slide, e) => {
const card = e.target.closest('.card-lc-attributs');
if (!card) return;
// Prevent default if the inner link <a href="#"> was clicked
//if (e.target.closest('.card-lc-attributs__link')) {
// e.preventDefault();
// e.stopPropagation();
//}
// Real index of the clicked slide (ignores clones)
const targetIndex = Slide.index;
if (MODE === 'active') {
// Make the clicked card the active slide (uses current focus option)
splide.go(targetIndex);
return;
}
// MODE 'left': place the clicked card in the first visible column.
// If focus is numeric or 'center', compensate so that the clicked card becomes the first visible.
const perPage = Number(splide.options.perPage) || 1;
const focusOpt = splide.options.focus;
const focus =
focusOpt === 'center'
? Math.floor(perPage / 2)
: Number(focusOpt) || 0;
splide.go(targetIndex + focus);
});
});
}, 250);
});Be enchanted by Montrésor Castle
A private residence, fully furnished and open to visitors, this romantic château was once owned by Count Branicki. It invites you to immerse yourself in a refined world of paintings, furniture and objets d'art evoking Poland. A true escape from the modern world, dedicated to lovers of art and history.
Discover the castle
A lively place, steeped in history and family ties.
This castle is a family affair. A place passed down from generation to generation, lived in, furnished and loved. Today, it continues to thrive – and we are delighted to be able to share it with you. Listed as a Historic Monument, it remains open to all: casual visitors, history buffs, schoolchildren on field trips, or visitors in search of authenticity. You are welcome here for the duration of your visit.



Practical information

We speak English
A visitor's guide published in English, Polish, German, Dutch, Russian, Spanish, Italian, Japanese, Chinese and French is available at reception.
Montrésor Castle is open to the public for self-guided tours every day from February 7 to November 11, 2026.
February to June:
10 a.m. – 6 p.m.
July and August:
10 a.m. – 7 p.m.
September to 11 Novembre:
10 a.m. – 6 p.m.
Christmas school holidays:
10 a.m. – 5 p.m.
(closed on 25/12 and 01/01)
Last admission 45 minutes before closing.
Full price:
Adult: €11
Reduced rate:
Children aged 8-12: €7
Students / 13-17 year olds / PRM*: €9
Partner rate: Visitez futé €10
Free admission:
Free for children under 8, members of ICOMOS and ICOM, affiliates of the Maison Des Artistes, members of the Vallée des Rois, and tour guides.
*Park and ground floor, depending on the venue.
Reduced rates and free admission upon presentation of proof of eligibility.
Find out more about the Visitez Futé pass!
Adult groups:
11 people or more
€9.50 per person
School groups:
Elementary schools: €6 per person
Middle schools and high schools: €8.5 per person
Guided tours:
Guided tours of the castle are available in French, English, and Polish for groups of 11 or more (advance booking required).
From 4 July to 30 August 2026 at 3.00 pm
In addition to the admission fee:
Adult: 2€
Child / Student: 1€
/* The purpose of the script is to have the aria-expanded and aria-controls attributes for web accessibility.
You can remove this script and the accordion will still work. */
const btnFaq = document.querySelectorAll('.lc-practical-infos__question');
const contentFaq = document.querySelectorAll('.lc-practical-infos__answer');
btnFaq.forEach((button) => {
button.addEventListener('click', () => {
// Gets the current state of the button
const isExpanded = button.getAttribute('aria-expanded') === 'true';
// Reset all buttons to "false".
btnFaq.forEach((currentBtn) => {
currentBtn.setAttribute('aria-expanded', 'false');
});
// Changes the status of the current button
button.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
});
});
// Load function after HTML content is loaded
document.addEventListener('DOMContentLoaded', function () {
// Make a tour on each button there is
btnFaq.forEach((button, i) => {
// Verify if the content exists before assigning aria-controls
const contentElement = contentFaq[i];
if (contentElement) {
const contentId = contentElement.getAttribute('id') || `faq-content-${i}`;
contentElement.setAttribute('id', contentId);
button.setAttribute('aria-controls', contentId);
} else {
// Set aria-controls to "false" if no content is available
button.setAttribute('aria-controls', 'false');
}
});
});Testimonials
King words from our visitors
<script>
document.addEventListener('DOMContentLoaded', (event) => {
setTimeout(() => {
// Get full slider class ID (change if you have changed it manually)
const idComplete = document.querySelector(".lc-testimonials__slider");
// Obtaining the required object ID for the const mySlider
const idSlider = idComplete.getAttribute('data-script-id');
const mySlider = window.bricksData?.splideInstances[idSlider] || false
// Please replace the button classes to suit your scenario
const myPrevBtn = document.querySelector('.lc-testimonials__arrow-left')
const myNextBtn = document.querySelector('.lc-testimonials__arrow-right')
if (mySlider && myPrevBtn && myNextBtn) {
// Add click event handlers for your custom buttons
myPrevBtn.addEventListener('click', function () {
mySlider.go('-1') // go() function by SplideJS
})
myNextBtn.addEventListener('click', function () {
mySlider.go('+1') // go() function by SplideJS
})
}
}, 250)
})
</script>Montrésor and its surroundings
For an unforgettable stay in Touraine



A family weekend
Beauval ZooParc nearby
Located just 15 minutes from Beauval ZooParc, you will enjoy the tranquillity of a stroll around Montrésor Castle and its romantic grounds: the ideal setting to recharge your batteries after a memorable weekend!
Visit the village

Montrésor, one of the ‘favourite villages of the French’
The Château de Montrésor is located in one of the Most Beautiful Villages in France, which was awarded second place in a television programme presented by Stéphane Bern.

/* -- The root styles must go in the element of the structure with the name "Card featured". --*/
.card-lc-surroundings-featured__img{
&:first-child{
transform: rotate(-10deg);
left: 3%;
}
&:nth-child(2){
position: static;
transform: translateY(-5px);
}
&:last-child{
transform: rotate(10deg);
right: 3%;
}
}Frequently asked questions
If you have any questions, please feel free to contact us. The castle team will be happy to assist you.
Guided tours can be arranged on request, in French, English or Polish. Throughout the year, the castle also offers a varied programme of events, including temporary exhibitions, themed tours, concerts and other cultural activities.
Yes. For groups of 11 or more, the price is €9.50 per person. We encourage you to get in touch with us.
We welcome you in French, English or Polish. The printed welcome guide is available in French, English, Polish, Italian, Spanish, Dutch, German, Japanese and Chinese.
Dogs on leads are permitted in the park, but they are not allowed inside the castle.
Yes, part of the route is suitable for visitors with reduced mobility. We advise you to contact us in advance so that we can best prepare for your visit.
Allow 1 to 1½ hours for a self-guided tour, depending on your pace.
/* The purpose of the script is to have the aria-expanded and aria-controls attributes for web accessibility.
You can remove this script and the accordion will still work. */
const btnFaqHome = document.querySelectorAll('.lc-faq__question');
const contentFaqHome = document.querySelectorAll('.lc-faq__answer');
btnFaqHome.forEach((button) => {
button.addEventListener('click', () => {
// Gets the current state of the button
const isExpanded = button.getAttribute('aria-expanded') === 'true';
// Reset all buttons to "false".
btnFaqHome.forEach((currentBtn) => {
currentBtn.setAttribute('aria-expanded', 'false');
});
// Changes the status of the current button
button.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
});
});
// Load function after HTML content is loaded
document.addEventListener('DOMContentLoaded', function () {
// Make a tour on each button there is
btnFaqHome.forEach((button, i) => {
const contentId = contentFaqHome[i].getAttribute('id');
button.setAttribute('aria-controls', contentId);
});
});const questionAccordion = document.querySelectorAll('.lc-faq__accordion-item').length;
const valueCountQuestion = Math.round(questionAccordion / 2);
const dynamicStyle = document.createElement('style');
dynamicStyle.textContent = `
.lc-faq .lc-faq__accordion .lc-faq__accordion-item:nth-child(${valueCountQuestion}) {
-webkit-column-break-after: always;
break-after: always;
margin-bottom:0;
@media(max-width: 767px){
-webkit-column-break-after: auto;
break-after: auto;
margin-bottom: var(--space-s);
}
}
`;
// Add the style to the head of the document or to a specific element
document.head.appendChild(dynamicStyle);/* -- The root styles must go in the element of the structure with the name "Accordion". --*/
.lc-faq__accordion{
column-count: 2;
column-gap: var(--grid-gap);
padding-inline-start: 0px;
& .lc-faq__accordion-item{
break-after: avoid;
-webkit-break-inside: avoid-column; /* Safari */
break-inside: avoid-column; /* Standar */
-moz-break-inside: avoid-column; /* Firefox */
&:last-child{
margin-bottom: 0;
}
}
@media (max-width: 767px){
column-count: 1;
}
}Buy your ticket
You can purchase your ticket for Montrésor Castle online. The online ticket office also handles tickets for cultural season events.
Buy your ticket
Montrésor Castle, a jewel of French heritage
The Château de Montrésor has joined the prestigious circle of ‘Maisons des Illustres’ (Homes of the Illustrious), becoming the ninth site in Touraine to receive this distinction awarded by the Ministry of Culture. This label highlights the figure of Xavier Branicki, who undertook the restoration of the château in 1849 and lived there until his death in 1879.
Born on 26 October 1816 in Warsaw, Poland, then under Russian rule, Xavier Branicki chose exile rather than continuing to serve the Tsar in uniform. Born into a prominent Polish aristocratic family, he was a writer, financier, philanthropist and patron of the arts who left a deep and lasting mark on Montrésor. A lover of freedom, he never ceased to promote the cause of Polish independence, while remaining deeply involved in the political, economic and cultural life of his new French homeland. A prominent figure during the Second Empire, he owed the success of his many major projects to his numerous and eclectic talents.
Montrésor, the château and the village where he was mayor, was at the heart of his ambitious and philanthropic projects. Before he died in 1879 in Assiout, Egypt, he expressed his wish that the Château de Montrésor remain in his family. His descendants honoured this wish, preserving the residence he had richly furnished and decorated with splendid paintings. Located in one of the most beautiful villages in France, the Château de Montrésor continues to charm with its aesthetics and the unparalleled spirit that Xavier Branicki instilled in it.
Maison des Illustres
Montrésor Castle awarded the “Maison des Illustres” label by the French Ministry of Culture
La Demeure Historique
French Association of Private Historic Monuments and Gardens
Châteaux de la Loire
French association of the Châteaux of the Loire Valley, Valley of Kings, brings together more than 80 monuments in the Loire Valley.