/*
Theme Name: o3w-clean
Theme URI: https://example.com/o3w-clean
Author: O3W
Author URI: https://example.com
Description: A clean, minimal WordPress theme built without a page builder.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: o3w-clean
*/

:root {
	--color-background: #fffaf0;
	--color-surface: #faeacd;
	--color-card: #ffffff;
	--color-text: #43387c;
	--color-muted: #4e594e;
	--color-violet: #43387c;
	--color-orange: #f9b234;
	--color-green: #9bb19c;
	--color-beige: #efe1cd;
	--color-coral: #c97d62;
	--color-white: #ffffff;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	--shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.14);
	--radius: 24px;
	--radius-small: 14px;
	--font-sans: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--container: 1300px;
	--shell-gutter: clamp(24px, 3vw, 48px);
	--shell-max: 1240px;
	--hero-gallery-height: clamp(200px, 19vw, 280px);
	--hero-gallery-height-mobile: clamp(128px, 38vw, 168px);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 100%;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: -0.005em;
}

a {
	color: inherit;
	text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: var(--color-violet);
	font-weight: 650;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

p {
	margin: 0 0 1rem;
	line-height: 1.5;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	width: auto;
	height: auto;
	padding: 12px 18px;
	overflow: visible;
	clip: auto;
	background: var(--color-violet);
	color: var(--color-white);
	font-weight: 700;
	text-decoration: none;
	white-space: normal;
}

.error-404__panel {
	max-width: 720px;
	margin: clamp(48px, 8vw, 96px) auto;
	padding: clamp(28px, 4vw, 40px);
	border: 1px solid rgba(67, 56, 124, 0.1);
	border-radius: 24px;
	background: var(--color-white);
	box-shadow: 0 18px 40px rgba(67, 56, 124, 0.08);
	text-align: center;
}

.error-404__panel h1 {
	margin: 0 0 12px;
}

.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 24px;
}

.site-container {
	width: min(calc(100% - 2 * var(--shell-gutter)), var(--container));
	margin-inline: auto;
}

.site-header-sentinel {
	height: 1px;
	margin: 0;
	pointer-events: none;
	visibility: hidden;
}

.site-header {
	position: sticky;
	top: var(--site-header-sticky-top, 0);
	z-index: 50;
	background: var(--color-background);
	border-bottom: 0;
	box-shadow: none;
	transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-header.is-stuck {
	border-bottom: 0;
	box-shadow: 0 10px 32px rgba(67, 56, 124, 0.12);
}

.site-header.is-stuck .site-header__main {
	border-bottom: 1px solid rgba(67, 56, 124, 0.1);
}

.site-header__utility {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	width: 100%;
	min-height: 38px;
	padding-inline: clamp(18px, 2.2vw, 50px);
	background: var(--color-violet);
}

.site-header__utility .site-navigation--utility {
	flex: 0 0 auto;
	margin-left: auto;
}

.site-header__main {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-inline: 0;
	background: transparent;
}

.site-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(10px, 1.5vw, 18px);
	width: 100%;
	padding-inline: clamp(18px, 2.2vw, 40px);
	background: var(--color-background);
}

.site-header__lead {
	display: flex;
	flex: 0 1 auto;
	align-items: flex-start;
	gap: clamp(14px, 1.8vw, 24px);
	min-width: 0;
}

.site-branding {
	flex: 0 0 auto;
	position: relative;
}

.site-branding__link {
	display: block;
	position: relative;
}

.site-branding img {
	width: 248px;
	max-width: 58vw;
	border-radius: 0;
	mix-blend-mode: multiply;
	padding-block: 12px 16px;
	opacity: 1;
	background: transparent;
}

.site-header__tagline {
	flex: 0 1 auto;
	min-width: 0;
	max-width: none;
	padding: 2.05rem clamp(18px, 2.2vw, 40px) 16px;
}

.site-header__title {
	margin: 0;
	color: var(--color-violet);
	font-size: 1.12rem;
	font-weight: 720;
	line-height: 1.05;
	letter-spacing: -0.03em;
	white-space: nowrap;
}

.site-header__subtitle {
	margin: 0.22rem 0 0;
	color: var(--color-violet);
	font-size: 0.875rem;
	font-weight: 450;
	line-height: 1.25;
	letter-spacing: -0.01em;
	opacity: 0.94;
}

.site-navigation--primary {
	flex: 0 0 auto;
	align-self: center;
}

.site-header__menu-panel {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	align-self: center;
}

.site-navigation--utility-drawer {
	display: none;
}

@media (min-width: 761px) {
	.site-header__main {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		grid-template-areas: "branding tagline actions";
		align-items: start;
		gap: clamp(14px, 1.8vw, 24px) clamp(10px, 1.5vw, 18px);
		padding-inline: var(--shell-gutter);
		background: var(--color-background);
	}

	.site-header__bar {
		display: contents;
	}

	.site-header__lead {
		grid-area: branding;
		align-self: start;
	}

	.site-header__tagline {
		grid-area: tagline;
		padding: 2.05rem 0 16px;
	}

	.site-header__menu-panel {
		grid-area: actions;
		justify-self: end;
		align-self: center;
	}

	.site-menu-toggle {
		grid-area: actions;
		justify-self: end;
		align-self: center;
	}
}

.menu--primary {
	flex-wrap: nowrap;
	gap: 0.52rem 0.78rem;
}

.menu--primary a {
	font-size: 0.9rem;
	font-weight: 680;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.menu--primary .menu-item > a::before {
	width: 9px;
	height: 9px;
	margin-right: 0.36rem;
}

.site-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.2em 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-breadcrumb--utility {
	flex: 1 1 auto;
	min-width: 0;
}

.site-breadcrumb--utility .site-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.72rem;
	font-weight: 550;
	line-height: 1.3;
	letter-spacing: 0.02em;
}

.site-breadcrumb--utility .site-breadcrumb__item:not(:last-child)::after {
	content: "·";
	margin-inline: 0.4em;
	color: var(--color-orange);
	font-weight: 700;
}

.site-breadcrumb--utility .site-breadcrumb__item a {
	color: var(--color-white);
	text-decoration: none;
}

.site-breadcrumb--utility .site-breadcrumb__item a:hover,
.site-breadcrumb--utility .site-breadcrumb__item a:focus-visible {
	color: var(--color-orange);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.site-breadcrumb--utility .site-breadcrumb__item [aria-current="page"] {
	color: var(--color-white);
	font-weight: 600;
}

.menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.7rem 1.05rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu a {
	display: inline-flex;
	align-items: center;
	color: var(--color-violet);
	font-size: 0.92rem;
	font-weight: 650;
	letter-spacing: 0.015em;
	text-transform: uppercase;
	line-height: 1;
}

.menu--utility a {
	color: var(--color-orange);
	font-size: 0.72rem;
	font-weight: 600;
}

.site-menu-toggle {
	display: none;
	width: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-violet);
	cursor: pointer;
}

.site-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 40px;
	height: 3px;
	margin: 7px 0;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-violet > a::before,
.menu-bleu > a::before,
.menu-orange > a::before,
.menu-green > a::before,
.menu-rouge > a::before,
.menu-beige > a::before,
.menu-vert > a::before {
	content: "";
	width: 10px;
	height: 10px;
	margin-right: 0.45rem;
	border-radius: 999px;
	background: currentColor;
}

.menu-violet > a::before,
.menu-bleu > a::before {
	color: var(--color-violet);
}

.menu-orange > a::before {
	color: var(--color-orange);
}

.menu-green > a::before,
.menu-rouge > a::before {
	color: var(--color-green);
}

.menu-beige > a::before,
.menu-vert > a::before {
	color: var(--color-beige);
}

.menu-agenda > a::before {
	content: none;
	display: none;
}

.menu a i {
	flex: 0 0 auto;
	font-size: 0.92em;
	line-height: 1;
}

.menu--primary .menu-agenda > a i {
	margin-right: 0.34rem;
	color: currentColor;
	font-size: 1.02em;
}

.site-main {
	overflow: hidden;
}

:is(.cafe-page, .carrelot-page, .hebergement-page, .location-page, .contact-page).site-main {
	overflow: visible;
}

.hero-gallery {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 12px;
}

.hero-lede {
	padding: clamp(22px, 3.2vw, 40px) 0 clamp(32px, 4vw, 52px);
}

.hero-lede__band {
	width: 100%;
	max-width: min(100%, 72rem);
	margin-inline: auto;
	padding-inline: 0;
}

.hero-lede__quote {
	margin: 0;
	padding: 0;
	border: 0;
}

/* Phrases adressées + soleil charte (PNG, droite, dégradé bas) */
.addressed-phrase-band {
	position: relative;
	overflow: visible;
}

.addressed-phrase-band__sun {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	background-image: var(--charter-sun-image);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
	mix-blend-mode: multiply;
	-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 78%);
	mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 78%);
}

.addressed-phrase-band--home .addressed-phrase-band__sun {
	top: clamp(-32px, -2vw, 12px);
	right: auto;
	left: max(clamp(16px, 2vw, 24px), calc(50% - 36rem - clamp(96px, 12vw, 168px)));
	background-position: center top;
	width: clamp(260px, 40vw, 500px);
	height: clamp(360px, 50vw, 620px);
	opacity: 0.1;
}

.addressed-phrase-band--home .hero-lede,
.addressed-phrase-band--home .activity-cards {
	position: relative;
	z-index: 1;
}

.addressed-phrase-band--section .hebergement-room-question-wrap,
.addressed-phrase-band--section > section {
	position: relative;
	z-index: 1;
}

.addressed-phrase {
	margin: 0;
	text-align: center;
}

.addressed-phrase__text {
	display: block;
	max-width: min(100%, 72rem);
	margin-inline: auto;
	color: var(--color-violet);
	font-family: var(--font-sans);
	font-size: clamp(1.32rem, 2.5vw, 1.88rem);
	font-weight: 650;
	line-height: 1.34;
	letter-spacing: -0.02em;
	text-align: center;
	text-wrap: balance;
}

.addressed-phrase--hero .addressed-phrase__text br {
	display: block;
	margin-top: 0.16em;
}

/* Pages intérieures : soleil calé sur le début du texte court centré */
.addressed-phrase-stage {
	position: relative;
	z-index: 0;
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
	padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px);
	overflow: visible;
}

.addressed-phrase-stage .addressed-phrase-band__sun {
	top: 170px;
	left: 30px;
	width: clamp(260px, 40vw, 500px);
	height: clamp(360px, 50vw, 620px);
	opacity: 0.1;
	transform: translate(-50%, -50%);
}

.addressed-phrase-stage .addressed-phrase {
	position: relative;
	z-index: 1;
}

.addressed-phrase-stage .addressed-phrase__text {
	max-width: none;
	font-size: clamp(30px, 3.6vw, 46px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

/* Titres H2 de section avec soleil en fond (pages intérieures) */
.section-title-stage {
	position: relative;
	z-index: 0;
	width: fit-content;
	max-width: 100%;
	padding: clamp(10px, 1.4vw, 18px) 0 clamp(6px, 0.9vw, 12px);
	overflow: visible;
}

.section-title-stage--center {
	margin-inline: auto;
	text-align: center;
}

.section-title-stage--center .hebergement-section__title--sun {
	text-align: center;
}

.section-title-stage--center .hebergement-section__title--sun::after {
	left: 50%;
	transform: translateX(-50%);
}

.section-title-stage .addressed-phrase-band__sun--section-title {
	top: calc(50% + 50px);
	left: clamp(10px, 1.6vw, 18px);
	width: clamp(170px, 26vw, 300px);
	height: clamp(230px, 36vw, 400px);
	opacity: 0.1;
	transform: translate(-40%, -50%);
}

.section-title-stage--center .addressed-phrase-band__sun--section-title {
	left: 50%;
	transform: translate(-50%, -50%);
}

.section-title-stage .hebergement-section__title--sun {
	position: relative;
	z-index: 1;
	margin: 0;
	max-width: none;
	font-size: clamp(1.75rem, 2.2vw, 2.375rem);
	text-wrap: balance;
}

.hero-gallery__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.92fr);
	max-width: 1440px;
	margin-inline: auto;
	width: 100%;
	gap: clamp(18px, 2.4vw, 30px);
}

.hero-gallery__item {
	position: relative;
	overflow: hidden;
	height: var(--hero-gallery-height);
	border-radius: 10px;
	background-position: center;
	background-size: cover;
}

.hero-gallery__item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	object-fit: cover;
}

.hero-slider__image {
	opacity: 0;
	transform: scale(1.025);
	transition: opacity 1200ms ease, transform 5200ms ease;
	will-change: opacity, transform;
}

.hero-slider__image.is-loaded.is-active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

.hero-gallery__label {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 250, 240, 0.9);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
	color: var(--color-violet);
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.activity-cards {
	position: relative;
	z-index: 2;
	padding-bottom: clamp(12px, 1.6vw, 22px);
}

.activity-cards::before {
	content: "";
	position: absolute;
	top: 42%;
	bottom: -18px;
	left: calc(50% - 50vw);
	z-index: -1;
	width: 100vw;
	background: linear-gradient(180deg, rgba(250, 234, 205, 0), rgba(250, 234, 205, 0.62) 34%, rgba(250, 234, 205, 0.82));
	pointer-events: none;
}

.activity-cards__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 28px);
	width: 100%;
	max-width: min(100%, 1340px);
	margin-inline: auto;
	padding-inline: 0;
}

.activity-card {
	position: relative;
	z-index: 1;
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100%;
	padding: 24px 18px 26px;
	border: 1px solid rgba(67, 56, 124, 0.08);
	border-radius: 30px;
	background-color: var(--color-white);
	box-shadow: 0 14px 34px rgba(67, 56, 124, 0.07);
	text-align: center;
	isolation: isolate;
	transition: transform 0.25s ease, box-shadow 0.25s ease, z-index 0s;
}

.activity-card:hover,
.activity-card:focus-visible {
	z-index: 8;
	transform: translateY(-4px);
	box-shadow: 0 20px 44px rgba(67, 56, 124, 0.12);
}

.activity-card__figure {
	position: relative;
	z-index: 2;
	overflow: visible;
	width: min(100%, 168px);
	margin-inline: auto;
	margin-bottom: 12px;
	background-color: var(--color-white);
}

.activity-card__media {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	background-color: var(--color-white);
	border-radius: 50%;
	overflow: hidden;
	isolation: isolate;
}

.activity-card img {
	width: 100%;
	height: 100%;
	max-width: none;
	border-radius: 50%;
	object-fit: contain;
	background-color: transparent;
	mix-blend-mode: normal;
	transition: transform 0.25s ease;
}

.activity-card:hover img,
.activity-card:focus-visible img {
	transform: scale(1.035) rotate(-1deg);
}

.activity-card h3 {
	position: relative;
	z-index: 2;
	margin-top: 0;
	margin-bottom: 0.4rem;
	font-size: clamp(19px, 1.45vw, 24px);
	font-weight: 650;
	line-height: 1.12;
	letter-spacing: -0.022em;
	text-align: center;
	text-wrap: balance;
}

.activity-card--violet {
	--card-accent: var(--color-violet);
	--card-accent-text: var(--color-white);
	--card-accent-border: rgba(48, 38, 92, 0.34);
}

.activity-card--orange {
	--card-accent: var(--color-orange);
	--card-accent-text: var(--color-white);
	--card-accent-border: rgba(168, 108, 12, 0.34);
}

.activity-card--green {
	--card-accent: var(--color-green);
	--card-accent-text: var(--color-white);
	--card-accent-border: rgba(58, 88, 60, 0.32);
}

.activity-card--beige {
	--card-accent: var(--color-beige);
	--card-accent-text: var(--color-violet);
	--card-accent-border: rgba(67, 56, 124, 0.18);
}

.activity-card__message {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-top: 0;
	text-align: center;
}

.activity-card__text {
	margin: 0;
	color: var(--color-violet);
	font-size: 0.94rem;
	line-height: 1.42;
	text-align: center;
	text-wrap: balance;
}

.activity-card__hover {
	--activity-hover-y: -8px;
	--activity-hover-x: -50%;
	position: absolute;
	top: 0;
	right: auto;
	left: 50%;
	z-index: 9;
	display: block;
	width: max-content;
	max-width: min(420px, 94vw);
	margin: 0;
	padding: 14px 26px 16px;
	border: none;
	border-radius: 999px;
	background: var(--card-accent);
	box-shadow: 0 14px 28px rgba(67, 56, 124, 0.18);
	color: var(--card-accent-text);
	font-family: var(--font-sans);
	font-size: clamp(0.92rem, 1.15vw, 1.06rem);
	font-weight: 650;
	letter-spacing: 0.01em;
	line-height: 1.15;
	text-align: center;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transform: translate(var(--activity-hover-x), calc(-100% + var(--activity-hover-y))) scale(0.92);
	transform-origin: bottom center;
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.activity-card--beige .activity-card__hover {
	text-shadow: none;
}

.activity-card__hover::after {
	content: "";
	position: absolute;
	top: auto;
	bottom: -7px;
	left: 50%;
	right: auto;
	width: 16px;
	height: 16px;
	border: none;
	background: var(--card-accent);
	transform: translateX(-50%) rotate(45deg);
	transform-origin: center;
	border-radius: 0 0 3px 0;
}

.activity-card:hover .activity-card__hover,
.activity-card:focus-visible .activity-card__hover {
	opacity: 1;
	transform: translate(var(--activity-hover-x), calc(-100% + var(--activity-hover-y))) scale(1);
}

.activity-card__hover--pinned {
	position: relative;
	top: auto;
	left: auto;
	z-index: 1;
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
	.activity-card__hover {
		transition: none;
	}

	.activity-card:hover .activity-card__hover,
	.activity-card:focus-visible .activity-card__hover {
		transform: translate(var(--activity-hover-x), calc(-100% + var(--activity-hover-y)));
	}

	.hebergement-booking-bar__cta i {
		animation: none;
	}
}

@media (max-width: 640px) {
	.activity-card__hover {
		--activity-hover-y: -8px;
		max-width: min(360px, 96vw);
		padding: 13px 20px 15px;
		font-size: clamp(0.88rem, 3.2vw, 1rem);
	}
}

.room-card::after,
.event-card::after {
	content: "";
	position: absolute;
	right: -26px;
	bottom: -26px;
	width: 118px;
	height: 118px;
	border-radius: 999px;
	background:
		repeating-conic-gradient(from 2deg, currentColor 0deg 5deg, transparent 5deg 11deg);
	mask: radial-gradient(circle, transparent 0 3px, #000 3.5px 100%);
	color: var(--color-orange);
	opacity: 0;
	pointer-events: none;
	transform: rotate(8deg) scale(0.9);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.event-card::after {
	color: var(--event-accent, var(--color-orange));
}

.room-card:hover::after,
.room-card:focus-within::after,
.event-card:has(a:hover)::after,
.event-card:has(a:focus-visible)::after {
	opacity: 0.16;
	transform: rotate(34deg) scale(1);
}

.events-section {
	position: relative;
	isolation: isolate;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: clamp(40px, 4.8vw, 56px) 0 clamp(20px, 3vw, 32px);
	background: transparent;
}

.events-section::before {
	content: none;
}

.events-section > .site-container {
	width: min(calc(100% - 2 * var(--shell-gutter)), var(--shell-max));
	max-width: none;
	margin-inline: auto;
}

.section-heading {
	margin-bottom: 34px;
	text-align: center;
}

.section-heading h2,
.pro-callout h2 {
	font-size: clamp(32px, 3.2vw, 42px);
	font-weight: 640;
}

.section-heading p {
	max-width: 680px;
	margin: 12px auto 0;
	color: var(--color-violet);
	font-size: 0.98rem;
	line-height: 1.55;
}

.event-grid,
.agenda-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
	gap: clamp(22px, 2.5vw, 32px);
	align-items: stretch;
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	padding-right: 0;
	padding-left: 0;
}

.event-card {
	--event-accent: var(--color-orange);
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--event-accent) 42%, rgba(67, 56, 124, 0.1));
	border-radius: 22px;
	background: var(--color-surface);
	color: var(--color-violet);
	box-shadow: 0 12px 30px rgba(67, 56, 124, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.event-card:hover,
.event-card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(67, 56, 124, 0.14);
}

.event-card.is-archived {
	opacity: 1;
	filter: none;
}

.event-card--hebergement {
	--event-accent: var(--color-violet);
}

.event-card--cafe-librairie {
	--event-accent: var(--color-orange);
}

.event-card--le-carrelot {
	--event-accent: var(--color-green);
}

.event-card--location-espace {
	--event-accent: var(--color-orange);
}

.event-card--non-classe {
	--event-accent: var(--color-violet);
}

.event-card--non-classe.event-accent--orange,
.event-single--non-classe.event-accent--orange {
	--event-accent: var(--color-orange);
}

.event-card--non-classe.event-accent--green,
.event-single--non-classe.event-accent--green {
	--event-accent: var(--color-green);
}

.event-card--non-classe.event-accent--coral,
.event-single--non-classe.event-accent--coral {
	--event-accent: var(--color-coral);
}

.event-card--production-deleguee {
	--event-accent: var(--color-coral);
}

.event-card__date {
	flex: 0 0 auto;
}

.event-card__image {
	position: relative;
	display: block;
	flex: 0 0 auto;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.event-card__image img {
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	transition: filter 0.2s ease, transform 0.4s ease;
}

.event-card__image-placeholder,
.event-single__cover-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: color-mix(in srgb, var(--event-accent, var(--color-violet)) 18%, var(--color-surface));
}

.event-card:hover .event-card__image img {
	filter: brightness(1.08);
	transform: scale(1.035);
}

.event-badge {
	position: static;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0.1rem;
	width: 100%;
	max-width: none;
	height: 4.5rem;
	min-height: 4.5rem;
	margin: 0;
	padding: 12px clamp(16px, 2vw, 20px);
	border-radius: 0;
	background: var(--event-accent, var(--color-violet));
	color: var(--color-white);
	box-shadow: none;
	box-sizing: border-box;
}

.event-badge__line {
	display: block;
	width: 100%;
	overflow: hidden;
	font-size: clamp(0.98rem, 1.15vw, 1.14rem);
	font-weight: 650;
	line-height: 1.18;
	letter-spacing: -0.02em;
	text-overflow: ellipsis;
	text-wrap: pretty;
	white-space: nowrap;
}

.event-past-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	display: inline-block;
	margin: 0;
	padding: 6px 11px;
	border-radius: 999px;
	background: rgba(255, 250, 240, 0.96);
	box-shadow: 0 10px 22px rgba(67, 56, 124, 0.14);
	color: var(--color-violet);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.2;
	text-transform: uppercase;
	pointer-events: none;
}

.event-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	padding: clamp(18px, 2vw, 22px) clamp(18px, 2.2vw, 24px) clamp(20px, 2.4vw, 24px);
	background: var(--color-surface);
	color: var(--color-violet);
}

.event-card__head {
	flex: 0 0 auto;
}

.event-card__type {
	margin: 0 0 6px;
	color: var(--event-accent);
	font-size: 0.68rem;
	font-weight: 780;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-transform: uppercase;
}

.event-card__title {
	margin: 0 0 8px;
	color: var(--color-violet);
	font-size: clamp(1.12rem, 1.2vw, 1.34rem);
	font-weight: 650;
	line-height: 1.14;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.event-card__title a {
	color: inherit;
	text-decoration: none;
}

.event-card__title a:hover,
.event-card__title a:focus-visible {
	color: var(--event-accent);
}

.event-card__subtitle {
	margin: 0 0 8px;
	color: var(--color-violet);
	font-size: 0.9rem;
	font-weight: 560;
	line-height: 1.35;
	opacity: 0.9;
}

.event-card__price {
	margin: 0;
	color: var(--color-violet);
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1.3;
}

.event-card__excerpt {
	display: -webkit-box;
	flex: 1 1 auto;
	margin: clamp(14px, 1.8vw, 18px) 0 0;
	overflow: hidden;
	color: var(--color-violet);
	font-size: 0.9rem;
	line-height: 1.5;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.event-card__footer {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 10px 14px;
	align-items: center;
	margin-top: clamp(18px, 2.2vw, 22px);
	padding-top: clamp(14px, 1.8vw, 18px);
	border-top: 1px solid rgba(67, 56, 124, 0.1);
}

.event-card__cta {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	padding: 0.58rem 1rem;
	border: 1px solid var(--event-accent);
	border-radius: 999px;
	background: transparent;
	color: var(--event-accent);
	font-size: 0.72rem;
	font-weight: 760;
	letter-spacing: 0.08em;
	line-height: 1;
	white-space: nowrap;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.event-card__cta::after {
	content: "\2192";
	flex: 0 0 auto;
}

.event-card__cta-label {
	display: inline-block;
}

.event-card__cta:hover,
.event-card__cta:focus-visible {
	background: var(--event-accent);
	color: var(--color-white);
	transform: translateY(-1px);
}

/* Fiche événement (single) */
.event-single {
	--event-accent: var(--color-orange);
}

.event-single--hebergement {
	--event-accent: var(--color-violet);
}

.event-single--cafe-librairie {
	--event-accent: var(--color-orange);
}

.event-single--le-carrelot {
	--event-accent: var(--color-green);
}

.event-single--location-espace {
	--event-accent: var(--color-orange);
}

.event-single--non-classe {
	--event-accent: var(--color-violet);
}

.event-single--production-deleguee {
	--event-accent: var(--color-coral);
}

.event-single--production-deleguee .event-single__title {
	max-width: 12ch;
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	line-height: 0.98;
	text-wrap: balance;
}

.event-single--production-deleguee .event-single__subtitle {
	max-width: 34rem;
	margin-top: clamp(12px, 2vw, 18px);
	font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.event-single--production-deleguee .event-single__lead {
	max-width: 38rem;
	margin: clamp(14px, 2vw, 20px) 0 0;
	color: color-mix(in srgb, var(--color-violet) 82%, #000);
	font-size: 0.98rem;
	line-height: 1.62;
}

.event-single--production-deleguee .event-single__info-creation {
	margin: 0;
	padding: 12px clamp(14px, 1.8vw, 18px);
	border-radius: 14px;
	background: color-mix(in srgb, var(--event-accent) 12%, white);
	color: var(--color-violet);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.45;
}

.event-single--production-deleguee .event-single__cover img {
	aspect-ratio: 16 / 10;
}

.event-single--production-deleguee .event-block__gallery {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-single--production-deleguee .event-single__informations {
	margin-top: clamp(28px, 4vw, 44px);
	padding-top: clamp(20px, 3vw, 28px);
	border-top: 1px solid rgba(67, 56, 124, 0.08);
}

.event-single--production-deleguee .event-single__informations-title {
	margin-bottom: clamp(16px, 2.4vw, 24px);
	color: var(--event-accent);
}

.event-single--production-deleguee .event-credits {
	margin-bottom: 0;
}

.event-single__hero {
	padding: 0;
}

.event-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: clamp(40px, 6vw, 96px);
	align-items: start;
	padding: clamp(28px, 4vw, 48px) 0 clamp(56px, 7vw, 88px);
}

.event-single__layout--no-aside {
	grid-template-columns: minmax(0, 1fr);
}

.event-single__main {
	min-width: 0;
}

.event-single__aside {
	position: relative;
	min-width: 0;
}

.event-single__aside-track {
	position: sticky;
	top: clamp(96px, 12vw, 132px);
}

.event-single__info-card {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: clamp(18px, 2.2vw, 24px);
	border: 1px solid color-mix(in srgb, var(--event-accent) 18%, rgba(67, 56, 124, 0.12));
	border-radius: 22px;
	background: var(--color-white);
	box-shadow:
		0 22px 48px rgba(67, 56, 124, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.event-single__info-heading {
	margin: 0 0 clamp(14px, 1.8vw, 18px);
	padding-bottom: clamp(12px, 1.6vw, 16px);
	border-bottom: 1px solid rgba(67, 56, 124, 0.08);
	color: var(--color-violet);
	font-size: clamp(1.02rem, 1.2vw, 1.18rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.event-single__info-type {
	margin: 0 0 12px;
	color: var(--event-accent, var(--color-orange));
	font-size: 0.72rem;
	font-weight: 780;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-transform: uppercase;
}

.event-single__info-date {
	margin: 0 0 clamp(16px, 2vw, 20px);
}

.event-single__info-date .event-badge {
	width: 100%;
	max-width: none;
	min-height: 3.4rem;
	margin: 0;
	padding: 12px clamp(14px, 1.8vw, 18px);
	border-radius: 14px;
	background: var(--event-accent, var(--color-orange));
}

.event-single__info-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: clamp(14px, 1.8vw, 18px) 0 0;
	border-top: 1px solid rgba(67, 56, 124, 0.08);
}

.event-single__info-stack {
	display: grid;
	gap: 0;
	margin: 0;
	padding-top: 0;
}

.event-single__info-item {
	position: relative;
	padding: 0;
}

.event-single__info-item--edit {
	padding-right: 30px;
}

.event-single__info-item-delete {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 2;
	transform: translateY(-50%);
}

.event-single__info-item + .event-single__info-item {
	border-top: 1px solid rgba(67, 56, 124, 0.08);
	padding-top: 8px;
}

.event-single__info-item + .event-single__info-item .event-single__info-row,
.event-single__info-item + .event-single__info-item .event-single__info-type,
.event-single__info-item + .event-single__info-item .event-single__info-date,
.event-single__info-item + .event-single__info-item .event-single__hero-cta {
	margin-top: 0;
}

.event-single__info-item .event-single__info-type {
	margin-bottom: 12px;
}

.event-single__info-item .event-single__info-date {
	margin-bottom: clamp(16px, 2vw, 20px);
}

.event-single__info-item .event-single__hero-cta {
	margin-top: clamp(14px, 1.8vw, 18px);
	padding-top: clamp(14px, 1.8vw, 18px);
	border-top: 1px solid rgba(67, 56, 124, 0.08);
}

.event-single__info-sortable .event-single__info-item {
	padding-left: 22px;
}

.event-single__info-sortable .event-single__info-item[draggable="true"] {
	cursor: grab;
}

.event-single__info-sortable .event-single__info-item.is-dragging {
	opacity: 0.45;
	cursor: grabbing;
}

.event-single__info-drag {
	position: absolute;
	top: 50%;
	left: 0;
	width: 14px;
	height: 18px;
	transform: translateY(-50%);
	background:
		radial-gradient(circle, rgba(67, 56, 124, 0.42) 1.5px, transparent 2px) 0 0 / 7px 6px repeat;
	opacity: 0.72;
}

.event-single__info-sortable-hint {
	margin: 10px 0 0;
	color: rgba(67, 56, 124, 0.62);
	font-size: 0.78rem;
	line-height: 1.4;
}

.event-single__info-row {
	display: grid;
	grid-template-columns: minmax(72px, 88px) minmax(0, 1fr);
	gap: 10px clamp(12px, 1.6vw, 18px);
	align-items: baseline;
	padding: 11px 0;
	border-bottom: 1px solid rgba(67, 56, 124, 0.06);
}

.event-single__info-row:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.event-single__info-row dt {
	margin: 0;
	color: var(--color-violet);
	font-size: 0.72rem;
	font-weight: 780;
	letter-spacing: 0.08em;
	line-height: 1.3;
	text-transform: uppercase;
	opacity: 0.72;
}

.event-single__info-row dd {
	margin: 0;
	color: var(--color-violet);
	font-size: 0.96rem;
	font-weight: 620;
	line-height: 1.42;
	text-wrap: pretty;
}

.event-single__info-add {
	margin-top: clamp(16px, 2vw, 20px);
	padding-top: clamp(14px, 1.8vw, 18px);
	border-top: 1px solid rgba(67, 56, 124, 0.08);
}

.event-single__info-card > .event-single__info-add:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.event-single__info-add--body {
	margin-bottom: clamp(20px, 3vw, 32px);
}

.event-single__body-add {
	margin: 2.5rem 0 1.5rem;
}

.event-single__body-add-btn {
	border-radius: 999px;
	border-top: 1px solid #e87524;
	text-transform: none;
	font-size: 0.84rem;
	padding: 0.72rem 1.2rem;
	box-shadow: 0 4px 14px rgba(232, 117, 36, 0.18);
}

.event-single__info-add-label {
	margin: 0 0 10px;
	color: var(--event-accent, var(--color-orange));
	font-size: 0.68rem;
	font-weight: 780;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-transform: uppercase;
}

.event-single__info-add-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.event-single__info-add-btn {
	padding: 0.45rem 0.75rem;
	border: 1px solid color-mix(in srgb, var(--event-accent, var(--color-orange)) 35%, rgba(67, 56, 124, 0.16));
	border-radius: 999px;
	background: transparent;
	color: var(--event-accent, var(--color-orange));
	font: inherit;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.event-single__info-add-btn:hover,
.event-single__info-add-btn:focus-visible {
	background: var(--event-accent, var(--color-orange));
	color: var(--color-white);
}

.event-single__draft-notice {
	margin: clamp(16px, 2vw, 24px) 0 0;
	padding: 14px 16px;
	border: 1px solid color-mix(in srgb, var(--color-orange) 35%, transparent);
	border-radius: 14px;
	background: color-mix(in srgb, var(--color-orange) 10%, #fff);
	color: var(--color-violet);
}

.event-single__draft-notice p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.5;
}

.event-single__settings {
	margin: 0 0 clamp(20px, 3vw, 28px);
	padding: clamp(16px, 2vw, 20px);
	border: 1px solid rgba(67, 56, 124, 0.1);
	border-radius: 18px;
	background: var(--color-white);
}

.event-single__settings-label {
	margin: 0 0 10px;
	color: var(--color-violet);
	font-size: 0.68rem;
	font-weight: 780;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-transform: uppercase;
}

.event-single__settings-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.event-single__settings-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.72rem 1.15rem;
	border: 1px solid color-mix(in srgb, var(--color-violet) 42%, rgba(67, 56, 124, 0.22));
	border-radius: 999px;
	background: #fff;
	color: var(--color-violet);
	font: inherit;
	font-size: 0.84rem;
	font-weight: 760;
	letter-spacing: 0.02em;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(67, 56, 124, 0.08);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.event-single__settings-btn .o3w-overlay-bar__icon {
	font-size: 0.92rem;
	opacity: 0.92;
}

.event-single__settings-btn:hover,
.event-single__settings-btn:focus-visible {
	background: var(--color-violet);
	border-color: var(--color-violet);
	color: var(--color-white);
	transform: translateY(-1px);
}

.event-single__settings-card-panel {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(67, 56, 124, 0.1);
}

.event-single__settings-card-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 18px;
	align-items: start;
}

.event-single__settings-card-controls .event-single__settings-hint {
	margin-bottom: 12px;
}

.event-single__settings-card-infos {
	display: grid;
	gap: 8px;
}

.event-single__settings-card-toggle.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.event-single__settings-card-empty {
	margin: 0;
	color: rgba(67, 56, 124, 0.72);
	font-size: 0.84rem;
	line-height: 1.45;
}

.event-single__settings-preview-label {
	margin: 0 0 10px;
	color: rgba(67, 56, 124, 0.62);
	font-size: 0.68rem;
	font-weight: 780;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.event-single__settings-card-preview-wrap {
	min-width: 0;
}

.event-card--preview {
	pointer-events: auto;
	transform: none !important;
	box-shadow: 0 10px 28px rgba(67, 56, 124, 0.1);
}

.event-card--preview .event-card__title span {
	display: block;
}

.event-card--preview [data-o3w-field] {
	position: relative;
	z-index: 2;
	cursor: pointer;
	outline: 1px dashed rgba(67, 56, 124, 0.28);
	outline-offset: 3px;
	border-radius: 4px;
}

.event-card--preview [data-o3w-field]:hover,
.event-card--preview [data-o3w-field]:focus {
	outline-color: rgba(107, 63, 160, 0.55);
	background: rgba(107, 63, 160, 0.04);
}

.event-card--preview .event-card__image--editable {
	display: block;
	cursor: pointer;
}

.event-single__settings-card-cta {
	cursor: text;
	outline: none;
}

.event-single__settings-card-cta:focus {
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--event-accent) 35%, transparent);
}

.event-single__settings-card {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(67, 56, 124, 0.1);
}

.event-single__settings-card-infos {
	display: grid;
	gap: 8px;
	margin-bottom: 16px;
}

.event-single__settings-card-toggle {
	font-size: 0.8rem;
}

@media (max-width: 700px) {
	.event-single__settings-card-layout {
		grid-template-columns: 1fr;
	}
}

.event-single__settings-hint,
.event-single__info-admin-hint {
	margin: 0 0 14px;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(67, 56, 124, 0.05);
	color: rgba(67, 56, 124, 0.78);
	font-size: 0.82rem;
	line-height: 1.45;
}

.event-single__info-admin-hint {
	margin: 0 0 clamp(14px, 2vw, 18px);
}

.event-single__info-card-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	color: rgba(67, 56, 124, 0.82);
	font-size: 0.74rem;
	font-weight: 650;
	line-height: 1.3;
	cursor: pointer;
}

.event-single__info-card-toggle input {
	width: 15px;
	height: 15px;
	margin: 0;
	accent-color: var(--color-violet);
	cursor: pointer;
}

.event-single__info-item .event-single__info-card-toggle {
	padding-left: 26px;
}

.event-card__info-lines {
	display: grid;
	gap: 4px;
	margin-top: 2px;
}

.event-card__info-line {
	margin: 0;
}

.event-single__title {
	margin: 0;
	color: var(--color-violet);
	font-size: clamp(34px, 4.5vw, 58px);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

.event-single__subtitle {
	margin: 14px 0 clamp(22px, 3vw, 30px);
	color: var(--color-violet);
	font-size: clamp(19px, 2vw, 25px);
	font-weight: 560;
	line-height: 1.24;
	letter-spacing: -0.025em;
}

.event-single__hero-cta {
	margin: clamp(18px, 2.2vw, 22px) 0 0;
	padding-top: clamp(14px, 1.8vw, 18px);
	border-top: 1px solid rgba(67, 56, 124, 0.08);
}

.event-single__booking-btn {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	padding: 1.05rem 1.5rem;
	border: 0;
	border-radius: 999px;
	background: var(--event-accent, var(--color-orange));
	box-shadow: 0 14px 28px color-mix(in srgb, var(--event-accent, var(--color-orange)) 38%, transparent);
	color: var(--color-white);
	font-family: inherit;
	font-size: clamp(0.92rem, 1vw, 1.02rem);
	font-weight: 780;
	letter-spacing: 0.1em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.event-single__booking-btn::after {
	content: "\2192";
	font-size: 1.1em;
}

.event-single__booking-btn:hover,
.event-single__booking-btn:focus-visible {
	filter: brightness(1.05);
	box-shadow: 0 18px 34px color-mix(in srgb, var(--event-accent, var(--color-orange)) 44%, transparent);
	color: var(--color-white);
	transform: translateY(-2px);
}

.event-single__cover {
	margin: clamp(22px, 3vw, 32px) 0 0;
	overflow: hidden;
	border-radius: 18px;
}

.event-single__cover img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.event-single__body {
	padding: clamp(28px, 4vw, 40px) 0 0;
}

.event-block + .event-block {
	margin-top: clamp(28px, 4vw, 40px);
}

.event-blocks--sortable .event-block--editable {
	position: relative;
	padding-left: 22px;
}

.event-blocks__sortable-hint {
	margin: 0 0 clamp(14px, 2vw, 18px);
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(67, 56, 124, 0.05);
	color: rgba(67, 56, 124, 0.78);
	font-size: 0.82rem;
	line-height: 1.45;
}

.event-block--editable[draggable="true"] {
	cursor: grab;
}

.event-block--editable.is-dragging {
	opacity: 0.45;
	cursor: grabbing;
}

.event-block__admin {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 10px;
}

.event-block__drag {
	position: absolute;
	top: 4px;
	left: 0;
	width: 14px;
	height: 18px;
	background:
		radial-gradient(circle, rgba(67, 56, 124, 0.42) 1.5px, transparent 2px) 0 0 / 7px 6px repeat;
	opacity: 0.72;
}

.event-block__delete {
	padding: 4px 10px;
	border: 1px solid rgba(201, 42, 42, 0.28);
	border-radius: 999px;
	background: #fff;
	color: #c92a2a;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
}

.event-block__delete:hover,
.event-block__delete:focus-visible {
	border-color: #c92a2a;
	background: #c92a2a;
	color: #fff;
}

.event-credits__row-delete {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	padding: 0;
	margin: 0;
	border: 1px solid rgba(201, 42, 42, 0.42);
	border-radius: 50%;
	background: #fff;
	color: #c92a2a;
	font-size: 0.62rem;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
}

.event-credits__row-delete:hover,
.event-credits__row-delete:focus-visible {
	border-color: #c92a2a;
	background: #c92a2a;
	color: #fff;
}

.event-block__credit-actions {
	margin-top: 12px;
}

.event-block__credit-add,
.event-credits__credit-add {
	padding: 0.45rem 0.85rem;
	border: 1px solid color-mix(in srgb, var(--event-accent, var(--color-violet)) 30%, rgba(67, 56, 124, 0.16));
	border-radius: 999px;
	background: #fff;
	color: var(--event-accent, var(--color-violet));
	font: inherit;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	cursor: pointer;
}

.event-block__credit-add:hover,
.event-block__credit-add:focus-visible,
.event-credits__credit-add:hover,
.event-credits__credit-add:focus-visible {
	border-color: var(--event-accent, var(--color-violet));
	background: color-mix(in srgb, var(--event-accent, var(--color-violet)) 8%, #fff);
}

.event-credits--block {
	margin-bottom: 0;
}

.event-block--credits .event-credits__row [data-o3w-field],
.event-credits--legacy .event-credits__row [data-o3w-field] {
	cursor: pointer;
}

.event-block__heading--h3 {
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
	font-weight: 700;
}

.event-block__section {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
	gap: clamp(20px, 3vw, 32px);
	align-items: center;
}

.event-block__section--media-left .event-block__figure {
	order: -1;
}

.event-block__content--full {
	max-width: none;
}

.event-block__figure {
	margin: 0;
	overflow: hidden;
	border-radius: 14px;
}

.event-block__figure--full {
	border-radius: 12px;
}

.event-block__figure img {
	display: block;
	width: 100%;
	height: auto;
}

.event-block__gallery {
	margin: 0;
}

.o3w-masonry {
	columns: 2;
	column-gap: clamp(14px, 2vw, 20px);
}

.o3w-masonry--single {
	columns: 1;
}

.o3w-masonry__item {
	break-inside: avoid;
	margin: 0 0 clamp(14px, 2vw, 20px);
	overflow: hidden;
	border-radius: 12px;
}

.o3w-masonry__item img {
	display: block;
	width: 100%;
	height: auto;
}

.event-block__quote {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--color-violet);
}

.event-block__quote p {
	margin: 0;
	font-size: 1.02rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1.62;
	text-wrap: pretty;
}

.event-block__quote footer {
	margin-top: 10px;
	color: var(--color-violet);
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 650;
	opacity: 0.82;
}

.event-block__title--quote {
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
	margin-bottom: 0.65rem;
}

.event-single__back {
	margin: clamp(28px, 4vw, 40px) 0 0;
}

.event-single__back a {
	color: var(--color-violet);
	font-size: 0.94rem;
	font-weight: 650;
	text-decoration: none;
}

.event-single__back a:hover,
.event-single__back a:focus-visible {
	color: var(--color-green);
	text-decoration: underline;
}

.event-credits {
	display: grid;
	gap: 10px;
	margin: 0 0 clamp(28px, 4vw, 40px);
}

.event-credits__row {
	display: grid;
	grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
	gap: 10px clamp(16px, 2vw, 28px);
	align-items: baseline;
}

.event-credits__row--edit {
	grid-template-columns: minmax(0, 180px) minmax(0, 1fr) 22px;
	align-items: center;
	gap: 10px clamp(16px, 2vw, 28px) 10px;
}

.event-credits__row--edit .event-credits__row-delete {
	justify-self: end;
}

.event-credits dt {
	margin: 0;
	color: var(--color-violet);
	font-size: 0.94rem;
	font-weight: 650;
	line-height: 1.35;
}

.event-credits dd {
	margin: 0;
	color: var(--color-violet);
	font-size: 0.94rem;
	font-weight: 500;
	line-height: 1.45;
}

.event-teaser {
	margin: 0 0 clamp(28px, 4vw, 40px);
}

.event-teaser__embed {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	aspect-ratio: 16 / 9;
	background: rgba(67, 56, 124, 0.06);
}

.event-teaser__embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.event-single__photo-credits {
	margin: clamp(20px, 3vw, 28px) 0 0;
	color: var(--color-violet);
	font-size: 0.86rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1.45;
	opacity: 0.78;
}

.section-cta {
	margin-top: 28px;
	margin-bottom: clamp(36px, 4.5vw, 56px);
	text-align: center;
}

.button--events-cta {
	gap: 0.65rem;
	min-height: 3.35rem;
	padding: 1.1rem 2.1rem;
	font-size: clamp(1.02rem, 1.35vw, 1.18rem);
	font-weight: 700;
	letter-spacing: 0.01em;
}

.button--events-cta i {
	font-size: 1.2em;
}

/* Agenda */
.agenda-page {
	padding-top: clamp(28px, 4vw, 48px);
}

.agenda-page .site-container {
	width: min(calc(100% - 2 * var(--shell-gutter)), var(--shell-max));
}

.agenda-hero {
	padding-bottom: clamp(10px, 1.4vw, 16px);
}

.agenda-hero__inner {
	max-width: 940px;
	text-align: center;
}

.agenda-hero__title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.8vw, 32px);
	margin-bottom: 4px;
}

.agenda-hero__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-violet);
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	line-height: 1;
}

.agenda-hero__icon i {
	font-size: 1em;
}

.agenda-hero__heading {
	min-width: 0;
	text-align: left;
}

.agenda-hero__title-row h1 {
	margin: 0;
	text-align: left;
}

.agenda-hero__eyebrow {
	margin-bottom: 12px;
	color: var(--color-orange);
	font-size: 0.78rem;
	font-weight: 780;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.agenda-hero h1,
.agenda-hero__title-row h1 {
	color: var(--color-violet);
	font-size: clamp(48px, 7vw, 86px);
	font-weight: 720;
	line-height: 0.92;
	letter-spacing: -0.06em;
}

.agenda-hero__subtitle {
	margin: 12px auto 14px;
	color: var(--color-violet);
	font-size: clamp(19px, 2vw, 25px);
	font-weight: 560;
	line-height: 1.24;
	letter-spacing: -0.025em;
	text-align: center;
}

.agenda-hero__intro {
	max-width: 720px;
	margin-inline: auto;
	color: var(--color-violet);
	font-size: 1rem;
	line-height: 1.58;
	text-align: center;
	text-justify: auto;
	hyphens: manual;
}

.agenda-hero__intro p {
	text-align: center;
	text-justify: auto;
	hyphens: manual;
}

.agenda-hero__intro > :last-child {
	margin-bottom: 0;
}

.agenda-section {
	position: relative;
	isolation: isolate;
	padding-block: 0;
}

.agenda-section--upcoming {
	padding-bottom: clamp(16px, 2vw, 24px);
}

.agenda-section--archives {
	padding-top: clamp(16px, 2vw, 24px);
	padding-bottom: clamp(28px, 3.5vw, 40px);
	background: transparent;
}

.agenda-section--upcoming::before {
	content: none;
}

.agenda-page .agenda-section__meet {
	display: flex;
	justify-content: center;
	margin: 0 0 clamp(18px, 2.2vw, 28px);
}

.agenda-section__heading {
	margin-bottom: 28px;
	text-align: center;
}

.agenda-section__heading h2 {
	color: var(--color-violet);
	font-size: clamp(32px, 3.6vw, 46px);
	font-weight: 660;
	line-height: 1;
	letter-spacing: -0.045em;
}

.agenda-section__heading p {
	margin-top: 8px;
	color: var(--color-violet);
	font-size: 0.95rem;
	opacity: 0.78;
}

.agenda-section .site-container {
	width: min(calc(100% - 2 * var(--shell-gutter)), var(--shell-max));
}

.agenda-grid {
	max-width: 1240px;
}

.agenda-section .event-carousel {
	width: 100%;
}

.agenda-empty {
	max-width: 520px;
	margin: 0 auto;
	padding: 24px;
	border: 1px solid rgba(67, 56, 124, 0.08);
	border-radius: 24px;
	background: var(--color-white);
	color: var(--color-violet);
	text-align: center;
}

/* Équipe */
.equipe-page {
	padding-top: clamp(28px, 4vw, 48px);
	padding-bottom: clamp(56px, 7vw, 88px);
}

.equipe-page :is(
	.hebergement-intro__lead,
	.equipe-intro__legal,
	.equipe-section__intro,
	.equipe-section__text,
	.equipe-roster dt,
	.equipe-roster dd,
	.equipe-board__item,
	.equipe-network__item
) {
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	text-wrap: wrap;
}

.equipe-intro {
	margin-bottom: clamp(36px, 4.5vw, 56px);
}

.equipe-intro__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
}

.equipe-intro__photo {
	margin: 0;
}

.equipe-intro__photo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.equipe-intro__head {
	width: 100%;
	max-width: none;
}

.equipe-page .hebergement-intro__title-row {
	display: block;
	width: 100%;
}

.equipe-page .hebergement-intro__title-row h1 {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	font-size: clamp(2rem, 2.65rem, 3.25rem);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.045em;
	text-wrap: wrap;
}

.equipe-intro__legal {
	max-width: none;
	margin: clamp(10px, 1.2vw, 14px) 0 0;
}

.equipe-section {
	padding-top: 0;
	padding-bottom: 0;
}

.equipe-page .hebergement-section {
	padding-bottom: 0;
}

.equipe-section + .equipe-section {
	padding-top: clamp(36px, 5vw, 56px);
}

.equipe-section--network {
	padding-bottom: 0;
}

.equipe-section__intro,
.equipe-section__text {
	max-width: none;
	margin: 0 0 clamp(16px, 2vw, 22px);
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	line-height: 1.62;
}

.equipe-roster {
	display: grid;
	gap: clamp(10px, 1.2vw, 14px);
	max-width: none;
	margin: 0;
}

.equipe-roster__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	align-items: start;
	margin: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.equipe-roster dt {
	margin: 0;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	font-weight: 650;
	line-height: 1.35;
}

.equipe-page .hebergement-section__title {
	margin-bottom: clamp(14px, 2vw, 18px);
	padding-bottom: 14px;
	max-width: none;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.equipe-roster dd {
	margin: 0;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	font-weight: 500;
	line-height: 1.62;
}

/* Le projet */
.projet-page {
	padding-top: clamp(28px, 4vw, 48px);
	padding-bottom: clamp(56px, 7vw, 88px);
}

.projet-page :is(
	.hebergement-intro__lead,
	.projet-intro__lead,
	.projet-richtext,
	.projet-richtext p,
	.hebergement-richtext,
	.hebergement-richtext p,
	.projet-pullquote,
	.projet-pullquote p,
	.projet-paired-flow__cell p,
	.projet-paired-flow__span p,
	.projet-list,
	.projet-list li,
	.projet-activity__link,
	.projet-activity .projet-richtext,
	.projet-activity .projet-richtext p
) {
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	text-wrap: wrap;
}

.projet-intro {
	margin-top: 0;
	margin-bottom: clamp(36px, 4.5vw, 56px);
}

.projet-intro__layout {
	display: block;
}

.projet-intro__head {
	width: 100%;
	max-width: none;
}

.projet-page .hebergement-intro__title-row {
	display: block;
	width: 100%;
}

.projet-page .hebergement-intro__title-row h1 {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	font-size: clamp(2rem, 2.65rem, 3.25rem);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.045em;
	text-wrap: wrap;
}

.projet-page :is(.hebergement-intro__lead, .projet-intro__lead) {
	max-width: none;
	margin: clamp(10px, 1.2vw, 14px) 0 0;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	font-weight: 400;
	line-height: 1.62;
	letter-spacing: normal;
	opacity: 1;
}

.projet-intro__presentation {
	margin-top: clamp(28px, 3.5vw, 40px);
	width: 100%;
	max-width: none;
}

.projet-page .hebergement-section__title {
	margin-bottom: clamp(14px, 2vw, 18px);
	padding-bottom: 14px;
	max-width: none;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.projet-intro__section-title {
	font-size: inherit;
}

.projet-intro__presentation .projet-richtext {
	max-width: none;
}

.projet-section {
	padding-top: 0;
	padding-bottom: 0;
}

.projet-page .hebergement-section {
	padding-bottom: 0;
}

.projet-section + .projet-section {
	padding-top: clamp(36px, 5vw, 56px);
}

.projet-section--conclusion {
	padding-bottom: 0;
}

.projet-page :is(.projet-richtext p, .hebergement-richtext p) {
	margin: 0;
}

.projet-richtext {
	max-width: none;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	line-height: 1.62;
}

.projet-richtext p + p,
.projet-page .hebergement-richtext p + p {
	margin-top: 0.5em;
}

.projet-page .projet-pullquote {
	max-width: none;
	margin: 0.75em 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.62;
	text-wrap: wrap;
}

.projet-page .projet-pullquote p {
	margin: 0;
	font-weight: inherit;
}

.projet-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(14px, 2vw, 20px);
	margin-bottom: clamp(14px, 2vw, 18px);
}

.projet-columns__col .projet-richtext {
	max-width: none;
}

.projet-funding {
	margin-bottom: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.projet-funding--inline {
	margin: 0.35em 0 0;
	padding: 0 0 0 1.15rem;
}

.projet-paired-flow {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5em 0;
	align-items: start;
}

.projet-paired-flow__cell p,
.projet-paired-flow__span p {
	margin: 0;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	line-height: 1.62;
}

.projet-paired-flow__span {
	grid-column: auto;
}

.projet-paired-flow__span .projet-pullquote {
	margin: 0;
}

.projet-list {
	max-width: none;
	margin: 0;
	padding: 0 0 0 1.15rem;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	line-height: 1.62;
	list-style: disc;
}

.projet-list li + li {
	margin-top: 0.35em;
}

.projet-list--axes {
	margin-bottom: clamp(16px, 2vw, 22px);
}

.projet-activities {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-bottom: clamp(16px, 2vw, 22px);
}

.projet-activity {
	padding: clamp(16px, 2vw, 20px) 0 0;
	border-bottom: 0;
}

.projet-activity:first-child {
	padding-top: 0;
}

.projet-activity__title {
	margin: 0 0 0.5em;
	color: var(--color-violet);
	font-size: clamp(1.02rem, 1.35vw, 1.12rem);
	font-weight: 650;
	letter-spacing: -0.01em;
	line-height: 1.35;
}

.projet-activity .projet-richtext {
	font-size: inherit;
	line-height: 1.62;
}

.projet-activity__link {
	margin: 0.5em 0 0;
}

.projet-activity__link a,
.projet-page .projet-inline-link {
	color: var(--color-violet);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.14em;
}

.projet-activity__link a:hover,
.projet-activity__link a:focus-visible,
.projet-page .projet-inline-link:hover,
.projet-page .projet-inline-link:focus-visible {
	text-decoration: none;
}

.projet-conclusion__title {
	max-width: none;
}

.projet-pullquote {
	max-width: none;
	margin: clamp(22px, 3vw, 32px) 0;
	padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.8vw, 30px);
	border: 1px solid rgba(67, 56, 124, 0.1);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(250, 234, 205, 0.55), rgba(250, 234, 205, 0.2));
	color: var(--color-violet);
	font-size: clamp(1rem, 1.15vw, 1.08rem);
	font-weight: 600;
	line-height: 1.55;
	text-wrap: pretty;
}

.projet-pullquote p {
	margin: 0;
}

/* Accompagnement pro */
.pro-page {
	padding-top: clamp(28px, 4vw, 48px);
	padding-bottom: clamp(56px, 7vw, 88px);
}

.pro-intro {
	margin-top: clamp(24px, 3.5vw, 44px);
	margin-bottom: clamp(32px, 4vw, 52px);
}

.pro-hero__title {
	display: flex;
	flex-direction: column;
	gap: 0.2em;
	margin: 0;
}

.pro-hero__title-line {
	display: block;
}

.pro-hero__title-line--lead {
	font-size: clamp(1.55rem, 2.8vw, 2.15rem);
	font-weight: 700;
	line-height: 1.12;
}

.pro-hero__title-line--accent {
	font-size: clamp(1.28rem, 2.2vw, 1.72rem);
	font-weight: 640;
	line-height: 1.18;
	color: color-mix(in srgb, var(--color-violet) 82%, var(--color-coral));
}

.pro-intro__lead {
	max-width: 52ch;
}

.pro-section {
	padding-top: clamp(28px, 3.5vw, 44px);
	padding-bottom: clamp(28px, 3.5vw, 44px);
}

.pro-section + .pro-section {
	border-top: 1px solid rgba(67, 56, 124, 0.08);
}

.pro-section--production {
	background: color-mix(in srgb, var(--color-coral) 5%, var(--color-background));
}

.pro-section--prestations + .pro-section--narrow,
.pro-section--narrow + .pro-section--narrow {
	border-top: 0;
}

.pro-page .pro-section--narrow .hebergement-section__title {
	margin-bottom: clamp(14px, 2vw, 18px);
	padding-bottom: 14px;
	max-width: none;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	text-align: left;
	text-wrap: wrap;
}

.pro-page .pro-section--narrow :is(
	.projet-richtext,
	.projet-richtext p,
	.projet-list,
	.projet-list li,
	.pro-roster,
	.pro-roster__item,
	.pro-section__subtitle,
	.pro-section__subtitle--list
) {
	text-align: left;
}

.pro-section--narrow .projet-pullquote,
.pro-section--narrow .projet-richtext,
.pro-section--narrow .projet-list {
	max-width: none;
}

.pro-section--narrow + .pro-section--narrow {
	padding-top: clamp(36px, 5vw, 56px);
}

.pro-section__subtitle {
	margin: clamp(22px, 3vw, 30px) 0 clamp(16px, 2.2vw, 22px);
	color: var(--color-coral);
	font-size: clamp(1rem, 1.6vw, 1.12rem);
	font-weight: 750;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.pro-section__subtitle--list {
	margin-top: clamp(24px, 3vw, 32px);
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--color-violet);
}

.pro-productions__grid {
	margin-top: 0;
}

.pro-prestations {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 3.5vw, 36px) clamp(28px, 4vw, 48px);
}

.pro-prestation {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: clamp(16px, 2.2vw, 22px);
	align-items: start;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.pro-prestation__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	padding-top: 0.1em;
	background: none;
	border-radius: 0;
}

.pro-prestation__icon i {
	color: var(--color-coral);
	font-size: clamp(1.75rem, 2.8vw, 2.25rem);
	line-height: 1;
}

.pro-prestation__title {
	margin: 0 0 8px;
	color: var(--color-violet);
	font-size: clamp(1rem, 1.5vw, 1.08rem);
	font-weight: 750;
	line-height: 1.25;
}

.pro-prestation__text {
	margin: 0;
	color: var(--color-violet);
	font-size: 0.94rem;
	line-height: 1.58;
	text-wrap: wrap;
}

.pro-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 48px);
	margin-top: clamp(20px, 2.8vw, 28px);
}

.pro-columns__heading {
	margin: 0 0 14px;
	color: var(--color-violet);
	font-size: clamp(1rem, 1.5vw, 1.08rem);
	font-weight: 750;
	line-height: 1.3;
}

.pro-roster {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pro-roster__item {
	color: var(--color-violet);
	font-size: 0.96rem;
	line-height: 1.45;
}

.pro-roster__name {
	font-weight: 650;
}

.pro-roster__detail::before {
	content: " — ";
	font-weight: 500;
	opacity: 0.72;
}

.pro-roster--inline {
	display: block;
	line-height: 1.55;
}

.pro-roster--inline .pro-roster__item {
	display: inline;
}

.pro-roster--inline .pro-roster__item:not(:last-child)::after {
	content: " · ";
	font-weight: 500;
	opacity: 0.45;
}

.pro-section--diagnostics .projet-list {
	margin-top: 12px;
}

/* Partenaires */
.partners-page {
	padding-top: clamp(28px, 4vw, 48px);
	padding-bottom: clamp(56px, 7vw, 88px);
}

.partners-page :is(
	.partners-intro__content,
	.partners-intro__content p,
	.projet-richtext,
	.projet-richtext p,
	.partners-split__text p,
	.partners-companies__list,
	.partners-section--closing .projet-pullquote,
	.partners-section--closing .projet-pullquote p
) {
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	text-wrap: wrap;
}

.partners-intro {
	margin-top: 0;
	margin-bottom: clamp(36px, 4.5vw, 56px);
}

.partners-intro__head {
	width: 100%;
	max-width: none;
}

.partners-page .hebergement-intro__title-row {
	display: block;
	width: 100%;
}

.partners-page .hebergement-intro__title-row h1 {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	font-size: clamp(2rem, 2.65rem, 3.25rem);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.045em;
	text-wrap: wrap;
}

.partners-page :is(.partners-intro__content p, .projet-richtext p) {
	margin: 0;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	font-weight: 400;
	line-height: 1.62;
}

.partners-page :is(.partners-intro__content p + p, .projet-richtext p + p) {
	margin-top: 0.5em;
}

.partners-intro__content {
	margin-top: clamp(10px, 1.2vw, 14px);
	max-width: none;
}

.partners-flow {
	padding: 0 0 clamp(28px, 4vw, 44px);
}

.partners-flow__inner {
	display: grid;
	gap: 0;
}

.partners-block--split,
.partners-block--funding,
.partners-funding-duo {
	padding-block: clamp(16px, 2vw, 20px);
	border-bottom: 0;
}

.partners-funding-duo {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 40px);
}

.partners-funding-duo__col {
	min-width: 0;
}

.partners-block__title {
	position: relative;
	margin: 0 0 clamp(14px, 2vw, 18px);
	padding-bottom: 14px;
	color: var(--color-violet);
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 640;
	line-height: 1.35;
	letter-spacing: -0.03em;
	text-align: left;
	text-wrap: wrap;
}

.partners-block__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 48px;
	height: 3px;
	border-radius: 999px;
	background: var(--color-orange);
}

.partners-split {
	display: grid;
	grid-template-columns: minmax(132px, 168px) minmax(0, 1fr);
	grid-template-areas: "logos text";
	gap: clamp(20px, 3.5vw, 40px);
	align-items: center;
}

.partners-split__logos {
	grid-area: logos;
	min-width: 0;
}

.partners-split__text {
	grid-area: text;
	min-width: 0;
}

.partners-split__text p {
	margin: 0;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	line-height: 1.62;
	text-wrap: wrap;
}

.partners-split__text p + p {
	margin-top: 0.5em;
}

.partners-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.partners-split .partners-logos {
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
}

.partners-logos--split .partners-logos__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1;
	margin: 0;
	padding: clamp(12px, 2vw, 16px);
	background: #fff;
	border-radius: 14px;
}

.partners-logos--split .partners-logos__item img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 100%;
	height: auto;
	object-fit: contain;
}

.partners-logos--funding {
	justify-content: stretch;
}

.partners-logos--funding .partners-logos__item {
	width: 100%;
	margin: 0;
	padding: clamp(12px, 2vw, 16px);
	background: #fff;
	border-radius: 14px;
}

.partners-logos--funding .partners-logos__item img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.partners-section {
	padding-top: 0;
	padding-bottom: 0;
}

.partners-page .hebergement-section {
	padding-bottom: 0;
}

.partners-section + .partners-section {
	padding-top: clamp(36px, 5vw, 56px);
}

.partners-section--companies {
	padding-top: clamp(36px, 5vw, 56px);
	padding-bottom: 0;
	border-top: 0;
}

.partners-block__title--companies {
	margin-bottom: clamp(10px, 1.4vw, 14px);
}

.partners-companies__list {
	margin: 0;
	padding: 0;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	font-weight: 400;
	line-height: 1.62;
	text-wrap: wrap;
}

.partners-section--closing {
	padding-top: clamp(36px, 5vw, 56px);
	padding-bottom: 0;
}

.partners-section--closing .projet-pullquote {
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.62;
}

.partners-section--closing .projet-pullquote p {
	margin: 0;
	font-weight: inherit;
}

.equipe-board {
	display: grid;
	gap: clamp(10px, 1.2vw, 12px);
	max-width: none;
	margin: 0;
	padding: 0;
	list-style: none;
}

.equipe-board__item {
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	line-height: 1.68;
}

.equipe-board__name {
	font-weight: 650;
}

.equipe-board__role::before {
	content: ", ";
	font-weight: 500;
}

.equipe-network {
	display: grid;
	gap: 0;
	max-width: none;
	margin: 0;
	padding: 0;
	list-style: none;
}

.equipe-network__item {
	padding: clamp(8px, 1vw, 10px) 0;
	border-bottom: 0;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	line-height: 1.68;
}

.equipe-network__item:last-child {
	border-bottom: 0;
}

.equipe-network__name {
	font-weight: 650;
}

.equipe-network__detail::before {
	content: ", ";
	font-weight: 500;
}

.button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	border-radius: 999px;
	background: var(--color-orange);
	color: var(--color-white);
	padding: 0.72rem 1.18rem;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.01em;
	text-decoration: none;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	opacity: 0.94;
}

.button--light {
	background: var(--color-orange);
	color: var(--color-white);
}

.button--outline {
	border: 0;
	background: var(--color-orange);
	color: var(--color-white);
}

.pro-callout {
	margin-top: 70px;
	margin-bottom: 50px;
}

.pro-callout__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(100%, 1300px);
	padding: clamp(44px, 5vw, 58px) 50px 42px;
	border-radius: var(--radius-small);
	background: var(--color-violet);
	color: var(--color-white);
	text-align: center;
}

.pro-callout__inner h2,
.pro-callout__inner p {
	color: var(--color-white);
}

.pro-callout__inner p {
	max-width: 760px;
	margin: 0.9rem 0 0;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.48;
}

.pro-callout__actions {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	width: auto;
	margin-top: 1.1rem;
}

.pro-callout__actions .button {
	flex: 0 0 auto;
	white-space: nowrap;
}

.site-footer {
	padding-bottom: 28px;
}

.site-footer__panel {
	overflow: hidden;
	margin-bottom: 0;
	border-radius: 10px;
	background: var(--color-beige);
}

.site-footer__bottom {
	display: flex;
	justify-content: flex-end;
	padding: 10px 0 0;
}

.footer-newsletter {
	width: 100%;
	padding: 14px clamp(20px, 3vw, 48px);
	border-radius: 10px 10px 0 0;
	background: var(--color-orange);
}

.footer-newsletter__signup {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 12px;
	width: 100%;
	max-width: 1120px;
	margin-inline: auto;
}

.footer-newsletter__media img {
	display: block;
	width: 78px;
	height: auto;
	border-radius: 0;
}

.footer-newsletter__intro {
	min-width: 0;
	max-width: none;
	margin: 0;
	color: var(--color-white);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.24;
	letter-spacing: -0.01em;
	white-space: nowrap;
}

.footer-newsletter__intro-accent {
	color: var(--color-violet);
}

.footer-newsletter__form {
	flex: 0 1 auto;
	width: min(100%, 460px);
	max-width: 460px;
}

.newsletter-form,
.footer-newsletter__form form,
.footer-newsletter__form .sib-form,
.footer-newsletter__form .sib-form-inline,
.footer-newsletter__form > div {
	display: flex !important;
	flex-wrap: nowrap;
	gap: 10px;
	align-items: stretch;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.newsletter-form input,
.footer-newsletter__form input[type="email"],
.footer-newsletter__form .sib-input-email,
.footer-newsletter__form input.sib-email-area,
.footer-newsletter__form input[type="text"] {
	flex: 1 1 auto;
	min-width: 0;
	width: auto !important;
	min-height: 42px;
	padding: 0 16px;
	border: 0 !important;
	border-radius: 10px !important;
	background: var(--color-white) !important;
	box-shadow: none !important;
	color: var(--color-violet);
	font: inherit;
	font-size: 15px;
	font-weight: 400;
}

.newsletter-form input::placeholder,
.footer-newsletter__form input::placeholder {
	color: rgba(67, 56, 124, 0.48);
}

.footer-newsletter .newsletter-form button,
.footer-newsletter__form button[type="submit"],
.footer-newsletter__form .sib-submit-btn,
.footer-newsletter__form input[type="submit"] {
	flex: 0 0 auto;
	min-width: 56px;
	width: auto !important;
	min-height: 42px;
	margin: 0 !important;
	padding: 0 16px !important;
	border: 0 !important;
	outline: 0 !important;
	border-radius: 10px !important;
	background: var(--color-violet) !important;
	box-shadow: none !important;
	color: var(--color-white) !important;
	font-family: inherit !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em;
	line-height: 42px !important;
	text-indent: 0 !important;
	text-shadow: none !important;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.footer-newsletter .newsletter-form button:hover,
.footer-newsletter .newsletter-form button:focus-visible,
.footer-newsletter__form button[type="submit"]:hover,
.footer-newsletter__form button[type="submit"]:focus-visible,
.footer-newsletter__form .sib-submit-btn:hover,
.footer-newsletter__form .sib-submit-btn:focus-visible,
.footer-newsletter__form input[type="submit"]:hover,
.footer-newsletter__form input[type="submit"]:focus-visible {
	background: #362d6c !important;
	color: var(--color-white) !important;
}

.footer-newsletter__form .sib-submit-btn::before,
.footer-newsletter__form .sib-submit-btn::after {
	content: none !important;
	display: none !important;
}

.footer-newsletter__form p:empty,
.footer-newsletter__form br {
	display: none;
}

.site-footer__inner {
	width: 100%;
	min-height: 238px;
	padding: 34px clamp(20px, 3vw, 40px) 30px;
	border-radius: 0;
	background: var(--color-surface);
}

.site-footer__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.footer-logo img {
	width: 78px;
	margin-bottom: 10px;
	border-radius: 0;
	mix-blend-mode: multiply;
}

.footer-contact {
	max-width: 760px;
	text-align: center;
	color: var(--color-violet);
	font-size: 14.5px;
	font-weight: 400;
	line-height: 1.42;
}

.footer-contact p {
	margin-bottom: 2px;
}

.footer-contact p:first-child {
	margin-bottom: 4px;
	font-weight: 400;
}

.footer-contact__main {
	display: flex;
	flex-wrap: wrap;
	gap: 0 6px;
	justify-content: center;
}

.footer-contact__main a,
.footer-contact__phone,
.footer-contact__hebergement a {
	white-space: nowrap;
}

.footer-contact__hebergement {
	display: flex;
	flex-wrap: wrap;
	gap: 0 6px;
	justify-content: center;
	margin-bottom: 4px;
}

.footer-contact__sep {
	opacity: 0.72;
}

.footer-contact strong {
	font-weight: 800;
}

.footer-legal {
	margin: 0;
}

.menu--footer-legal {
	justify-content: flex-end;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu--footer-legal a {
	color: var(--color-violet);
	font-size: 13px;
	font-weight: 500;
	text-transform: none;
	opacity: 0.88;
}

.menu--footer-legal a:hover,
.menu--footer-legal a:focus-visible {
	opacity: 1;
}

.footer-socials {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
}

.footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: var(--color-violet);
	color: var(--color-surface);
	line-height: 1;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
	transform: translateY(-2px);
	opacity: 0.9;
}

.footer-socials i {
	font-size: 14px;
	line-height: 1;
}

.footer-socials a[aria-label="Instagram"] i {
	font-size: 15px;
}

/* Bandeau photos défilant (hébergement, café-librairie, location) */
.hebergement-page,
.cafe-page,
.carrelot-page,
.location-page {
	padding-top: 0;
}

.hebergement-page .site-container,
.cafe-page .site-container,
.carrelot-page .site-container,
.location-page .site-container,
.equipe-page .site-container,
.projet-page .site-container,
.partners-page .site-container,
.pro-page .site-container,
.contact-page .site-container,
.cafe-events > .site-container,
.carrelot-events > .site-container {
	width: min(calc(100% - 2 * var(--shell-gutter)), var(--shell-max));
}

.hebergement-gallery-strip,
.hebergement-gallery-strip__viewport,
.hebergement-gallery-strip__track {
	background: transparent;
}

.hebergement-gallery-strip {
	margin: 0 0 clamp(28px, 4vw, 44px);
}

.hebergement-gallery-strip__viewport {
	position: relative;
	overflow: hidden;
	padding-inline: max(var(--shell-gutter), calc((100% - min(calc(100% - 2 * var(--shell-gutter)), var(--shell-max))) / 2));
	cursor: default;
	touch-action: manipulation;
}

.hebergement-gallery-strip__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(98, 68, 136, 0.35);
	border-radius: 999px;
	background: rgba(255, 250, 240, 0.94);
	color: var(--color-violet);
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.hebergement-gallery-strip__nav::before {
	content: '';
	display: block;
	width: 9px;
	height: 9px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.hebergement-gallery-strip__nav--prev {
	left: clamp(8px, 1.2vw, 20px);
}

.hebergement-gallery-strip__nav--prev::before {
	margin-left: 3px;
	transform: rotate(-135deg);
}

.hebergement-gallery-strip__nav--next {
	right: clamp(8px, 1.2vw, 20px);
}

.hebergement-gallery-strip__nav--next::before {
	margin-right: 3px;
	transform: rotate(45deg);
}

.hebergement-gallery-strip__nav:hover:not(:disabled),
.hebergement-gallery-strip__nav:focus-visible:not(:disabled) {
	background: #fff;
	border-color: var(--color-violet);
}

.hebergement-gallery-strip__nav:focus-visible {
	outline: 3px solid rgba(249, 178, 52, 0.55);
	outline-offset: 2px;
}

.hebergement-gallery-strip__nav:disabled {
	opacity: 0.28;
	cursor: default;
}

.hebergement-gallery-strip__viewport:not(.is-scrollable) .hebergement-gallery-strip__nav {
	display: none;
}

.hebergement-gallery-strip__viewport.is-scrollable {
	touch-action: none;
	cursor: grab;
}

.hebergement-gallery-strip__viewport.is-dragging,
.hebergement-gallery-strip__viewport.is-coasting {
	cursor: grabbing;
	user-select: none;
}

.hebergement-gallery-strip__viewport:focus-visible {
	outline: 3px solid rgba(249, 178, 52, 0.55);
	outline-offset: 4px;
}

.hebergement-gallery-strip__track {
	display: flex;
	gap: clamp(12px, 1.6vw, 18px);
	width: max-content;
	padding: 0;
	will-change: transform;
}

.hebergement-gallery-strip__item {
	position: relative;
	flex: 0 0 auto;
	width: auto;
	max-width: min(420px, 72vw);
	margin: 0;
	height: var(--hero-gallery-height);
	border-radius: 10px;
	overflow: hidden;
	background: rgba(255, 250, 240, 0.85);
	box-shadow: none;
}

.hebergement-gallery-strip__item img {
	display: block;
	width: auto;
	height: 100%;
	max-width: none;
	border-radius: inherit;
	object-fit: cover;
	object-position: center;
	background: rgba(255, 250, 240, 0.85);
	opacity: 0;
	transition: opacity 0.18s ease;
}

.hebergement-gallery-strip__item img.is-ready {
	opacity: 1;
}

[data-page-gallery] .hebergement-gallery-strip__item {
	cursor: zoom-in;
}

[data-page-gallery] .hebergement-gallery-strip__viewport.is-dragging .hebergement-gallery-strip__item {
	cursor: grabbing;
}

[data-page-gallery] img,
.hero-gallery img {
	cursor: zoom-in;
	-webkit-user-drag: none;
	user-select: none;
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 12000;
	display: grid;
	place-items: center;
	padding: clamp(16px, 3vw, 40px);
	background: rgba(13, 13, 13, 0.92);
}

.gallery-lightbox[hidden] {
	display: none !important;
}

body.gallery-lightbox-open {
	overflow: hidden;
}

.gallery-lightbox__stage {
	position: relative;
	display: grid;
	place-items: center;
	width: min(100%, 1280px);
	max-height: calc(100vh - 120px);
	touch-action: pan-y;
	cursor: grab;
}

.gallery-lightbox__stage.is-dragging {
	cursor: grabbing;
}

.gallery-lightbox__image {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 120px);
	width: auto;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
	transition: transform 0.2s ease, opacity 0.18s ease;
	user-select: none;
	-webkit-user-drag: none;
}

.gallery-lightbox__image.is-loading {
	opacity: 0.92;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 250, 240, 0.94);
	color: var(--color-violet);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.gallery-lightbox__close {
	top: clamp(12px, 2vw, 24px);
	right: clamp(12px, 2vw, 24px);
	width: 44px;
	height: 44px;
	font-size: 28px;
	line-height: 1;
}

.gallery-lightbox__nav {
	top: 50%;
	width: 48px;
	height: 48px;
	transform: translateY(-50%);
}

.gallery-lightbox__nav::before {
	content: '';
	display: block;
	width: 11px;
	height: 11px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.gallery-lightbox__nav--prev {
	left: clamp(8px, 2vw, 24px);
}

.gallery-lightbox__nav--prev::before {
	margin-left: 4px;
	transform: rotate(-135deg);
}

.gallery-lightbox__nav--next {
	right: clamp(8px, 2vw, 24px);
}

.gallery-lightbox__nav--next::before {
	margin-right: 4px;
	transform: rotate(45deg);
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
	background: #fff;
	border-color: var(--color-violet);
}

.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
	outline: 3px solid rgba(249, 178, 52, 0.55);
	outline-offset: 2px;
}

.gallery-lightbox__nav[hidden] {
	display: none;
}

.gallery-lightbox__counter {
	position: absolute;
	bottom: clamp(12px, 2vw, 24px);
	left: 50%;
	margin: 0;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 250, 240, 0.9);
	color: var(--color-violet);
	font-size: 0.82rem;
	font-weight: 650;
	letter-spacing: 0.04em;
	transform: translateX(-50%);
}

@media (max-width: 640px) {
	.gallery-lightbox__nav {
		width: 40px;
		height: 40px;
	}
}

.site-main img {
	opacity: 0;
	transition: opacity 0.18s ease;
	background: rgba(255, 250, 240, 0.85);
}

#contact-map-canvas img {
	opacity: 1;
	background: transparent;
}

.site-main img.is-ready,
.site-main .hero-slider__image.is-loaded.is-active,
.site-main .hebergement-gallery-strip__item img.is-ready {
	opacity: 1;
}

.site-main .activity-card img {
	opacity: 1;
	background-color: transparent;
}

.hebergement-intro {
	margin-bottom: clamp(20px, 2.5vw, 36px);
}

.hebergement-intro__layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: clamp(40px, 6vw, 88px);
	align-items: start;
}

.hebergement-intro__main {
	display: flex;
	flex-direction: column;
	gap: clamp(10px, 1.5vw, 14px);
	min-width: 0;
}

.hebergement-intro__features {
	min-width: 0;
	padding-top: clamp(4px, 0.8vw, 10px);
}

.hebergement-page .hebergement-intro__layout {
	gap: clamp(52px, 7.5vw, 108px);
}

.hebergement-page .hebergement-intro__sidebar .hebergement-feature i {
	background: transparent;
	color: var(--color-orange);
}

/* Intro 2/3–1/3 : colonne droite au-dessus + séparation par ombre */
.intro-page-shell,
.hebergement-page .hebergement-intro__layout,
.cafe-page .hebergement-intro__layout,
.carrelot-page .hebergement-intro__layout,
.location-page .hebergement-intro__layout,
.contact-page .hebergement-intro__layout {
	--intro-layout-gap: clamp(52px, 7.5vw, 108px);
	--intro-sidebar-sticky-top: clamp(108px, 14vw, 152px);
	--intro-sidebar-sticky-bottom: clamp(128px, 18vw, 200px);
	position: relative;
	align-items: stretch;
}

.intro-page-shell {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: var(--intro-layout-gap);
	align-items: stretch;
	overflow: visible;
	margin-bottom: clamp(24px, 3.5vw, 44px);
}

.intro-page-shell__main {
	position: relative;
	z-index: 1;
	min-width: 0;
	overflow: visible;
}

.intro-page-shell__aside {
	position: relative;
	z-index: 10;
	align-self: stretch;
	min-width: 0;
}

.intro-page-shell__aside::before {
	display: none;
}

.intro-page-shell__aside-track {
	position: sticky;
	top: var(--intro-sidebar-sticky-top);
	bottom: var(--intro-sidebar-sticky-bottom);
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: safe center;
	width: calc(100% + var(--intro-layout-gap));
	margin-left: calc(var(--intro-layout-gap) * -1);
	padding: clamp(4px, 0.8vw, 10px) 0 clamp(20px, 2.5vw, 32px) calc(var(--intro-layout-gap) + clamp(28px, 3.2vw, 44px));
	background: var(--color-background);
	box-shadow: -18px 0 48px -14px rgba(67, 56, 124, 0.22);
	max-height: calc(100vh - var(--intro-sidebar-sticky-top) - var(--intro-sidebar-sticky-bottom));
	overflow: auto;
	overscroll-behavior: contain;
}

.cafe-page .intro-page-shell__aside-track,
.carrelot-page .intro-page-shell__aside-track {
	padding-top: clamp(28px, 4vw, 48px);
}

.intro-page-shell__sidebar {
	position: relative;
	top: auto;
	bottom: auto;
	z-index: 3;
	width: 100%;
	max-height: none;
	padding-left: 0;
	border-left: 0;
	background: transparent;
	overflow: visible;
}

.intro-page-shell .cafe-intro__sidebar,
.intro-page-shell .carrelot-intro__sidebar,
.intro-page-shell .hebergement-intro__sidebar {
	position: relative;
	top: auto;
	bottom: auto;
	max-height: none;
	padding-left: 0;
	border-left: 0;
	background: transparent;
	overflow: visible;
}

.intro-page-shell .cafe-intro__sidebar::before,
.intro-page-shell .carrelot-intro__sidebar::before,
.intro-page-shell .hebergement-intro__sidebar::before {
	display: none;
}

.intro-page-shell::before {
	display: none;
}

.hebergement-page .hebergement-intro__main,
.cafe-page .hebergement-intro__main,
.carrelot-page .hebergement-intro__main,
.location-page .hebergement-intro__main,
.contact-page .hebergement-intro__main {
	position: relative;
	min-width: 0;
}

:is(
	.hebergement-page .hebergement-intro__sidebar
) {
	position: sticky;
	top: var(--intro-sidebar-sticky-top);
	bottom: var(--intro-sidebar-sticky-bottom);
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: safe center;
	z-index: 3;
	width: 100%;
	margin-top: 50px;
	max-height: calc(100vh - var(--intro-sidebar-sticky-top) - var(--intro-sidebar-sticky-bottom));
	padding-left: clamp(28px, 3.2vw, 44px);
	border-left: 0;
	background: var(--color-background);
	overflow: auto;
	overscroll-behavior: contain;
}

.cafe-page .cafe-intro__sidebar,
.carrelot-page .carrelot-intro__sidebar,
.contact-page .contact-intro__sidebar,
.hebergement-page .hebergement-intro__sidebar.hebergement-intro__features {
	position: relative;
	top: auto;
	bottom: auto;
	align-self: start;
	justify-content: flex-start;
	z-index: 3;
	width: 100%;
	margin-top: 50px;
	max-height: none;
	padding-top: clamp(18px, 2.4vw, 28px);
	padding-left: clamp(28px, 3.2vw, 44px);
	border-left: 0;
	background: var(--color-background);
	overflow: visible;
}

.cafe-page .cafe-intro__sidebar::before,
.carrelot-page .carrelot-intro__sidebar::before,
.contact-page .contact-intro__sidebar::before,
.hebergement-page .hebergement-intro__sidebar.hebergement-intro__features::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 100%;
	width: var(--intro-layout-gap);
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(67, 56, 124, 0) 0%,
		rgba(67, 56, 124, 0.05) 55%,
		rgba(67, 56, 124, 0.11) 100%
	);
	-webkit-mask-image: linear-gradient(
		180deg,
		transparent 0%,
		#000 8%,
		#000 92%,
		transparent 100%
	);
	mask-image: linear-gradient(
		180deg,
		transparent 0%,
		#000 8%,
		#000 92%,
		transparent 100%
	);
}

:is(
	.hebergement-page .hebergement-intro__sidebar
)::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 100%;
	width: calc(var(--intro-layout-gap) + clamp(44px, 6vw, 72px));
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(67, 56, 124, 0) 0%,
		rgba(67, 56, 124, 0.04) 38%,
		rgba(67, 56, 124, 0.11) 100%
	);
	-webkit-mask-image: linear-gradient(
		180deg,
		transparent 0%,
		#000 8%,
		#000 92%,
		transparent 100%
	);
	mask-image: linear-gradient(
		180deg,
		transparent 0%,
		#000 8%,
		#000 92%,
		transparent 100%
	);
}

/* intro-page-shell : priorité sur le sticky legacy des sidebars */
.cafe-page .intro-page-shell .intro-page-shell__sidebar,
.cafe-page .intro-page-shell .cafe-intro__sidebar,
.carrelot-page .intro-page-shell .intro-page-shell__sidebar,
.carrelot-page .intro-page-shell .carrelot-intro__sidebar,
.location-page .intro-page-shell .intro-page-shell__sidebar,
.location-page .intro-page-shell .location-intro__sidebar {
	position: relative;
	top: auto;
	bottom: auto;
	align-self: auto;
	max-height: none;
	padding-left: 0;
	border-left: 0;
	background: transparent;
	overflow: visible;
	overscroll-behavior: auto;
}

.cafe-page .intro-page-shell .cafe-intro__sidebar::before,
.carrelot-page .intro-page-shell .carrelot-intro__sidebar::before {
	display: none;
}

.hebergement-intro__head {
	display: flex;
	flex-direction: column;
	gap: clamp(10px, 1.5vw, 14px);
}

.hebergement-intro__title-row {
	display: flex;
	gap: clamp(16px, 2.5vw, 28px);
	align-items: center;
}

.hebergement-intro__bird,
.cafe-intro__bird,
.carrelot-intro__bird,
.location-intro__bird {
	flex: 0 0 auto;
	margin: 0;
	border-radius: 0;
	mix-blend-mode: normal;
	background: transparent;
}

.hebergement-intro__title-row--branch {
	--intro-branch-bird-size: clamp(80px, 8vw, 112px);
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	grid-template-rows: auto;
	column-gap: clamp(16px, 2.5vw, 28px);
	row-gap: 0;
	align-items: start;
	margin-bottom: 0;
	overflow: visible;
}

.hebergement-intro__main--branch {
	--intro-branch-bird-size: clamp(80px, 8vw, 112px);
	position: relative;
	overflow: visible;
	gap: 0;
}

.cafe-page .hebergement-intro__main--branch,
.hebergement-page .hebergement-intro__main--branch,
.carrelot-page .hebergement-intro__main--branch,
.location-page .hebergement-intro__main--branch {
	--intro-branch-bird-size: clamp(100px, 9vw, 128px);
}

.hebergement-page-intro__title-row.hebergement-intro__title-row--branch {
	--intro-branch-bird-size: clamp(100px, 9vw, 128px);
}

.hebergement-intro__title-row--branch > .hebergement-intro__heading-block {
	padding-top: 0;
}

.hebergement-intro__bird-wrap,
.hebergement-intro__bird-branch-wrap {
	flex: 0 0 auto;
	line-height: 0;
	overflow: visible;
}

.hebergement-intro__bird-wrap .hebergement-intro__bird,
.hebergement-intro__bird-branch-wrap .hebergement-intro__bird {
	position: relative;
	z-index: 1;
	display: block;
	mix-blend-mode: normal;
	background: transparent;
}

.hebergement-intro__title-row--branch .hebergement-intro__heading-block {
	display: contents;
}

.hebergement-intro__title-row--branch .hebergement-intro__bird-wrap {
	grid-column: 1;
	grid-row: 1;
	position: relative;
	z-index: 2;
	align-self: center;
	width: var(--intro-branch-bird-size);
	margin-top: -10px;
}

.hebergement-intro__title-row--branch .hebergement-intro__bird-wrap .hebergement-intro__bird,
.hebergement-intro__title-row--branch .hebergement-intro__bird-wrap img {
	display: block;
	width: 100%;
	height: auto;
}

.hebergement-intro__title-row--branch .hebergement-intro__heading {
	grid-column: 2;
	grid-row: 1;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: center;
	width: 100%;
	min-width: 0;
	overflow: visible;
}

.hebergement-intro__title-wrap {
	display: inline-block;
	width: fit-content;
	max-width: 100%;
	overflow: visible;
}

.hebergement-intro__title-wrap > h1 {
	position: relative;
	margin: 0;
	overflow: visible;
}

.hebergement-intro__branch {
	position: relative;
	display: inline-block;
	width: 0;
	height: 0;
	vertical-align: baseline;
	pointer-events: none;
}

.hebergement-intro__branch img {
	position: absolute;
	left: -114px;
	top: calc(-0.52em + 3px);
	width: 269px;
	max-width: none;
	height: auto;
	opacity: 1;
	mix-blend-mode: normal;
	background: transparent;
}

.hebergement-intro__main--branch > .hebergement-intro__content {
	position: relative;
	z-index: 2;
	margin-top: clamp(8px, 1vw, 12px);
}

.hebergement-intro__heading {
	flex: 1 1 auto;
	min-width: 0;
}

.hebergement-intro__subtitle {
	margin-top: clamp(8px, 1vw, 12px);
	margin-bottom: 0;
	padding-bottom: 30px;
	overflow: visible;
}

.hebergement-intro__heading .hebergement-intro__subtitle {
	display: block;
	width: 100%;
	max-width: 100%;
	margin-top: 0;
	text-align: left;
	text-justify: auto;
	hyphens: manual;
}

.hebergement-intro__heading .hebergement-intro__lead {
	margin-bottom: 0;
}

.hebergement-page .hebergement-page-intro {
	margin-top: clamp(28px, 4vw, 48px);
	margin-bottom: clamp(10px, 1.4vw, 18px);
}

.hebergement-page-intro__title-row.hebergement-intro__title-row--branch {
	align-items: flex-start;
}

:is(
	.hebergement-page,
	.cafe-page,
	.carrelot-page,
	.location-page
) .hebergement-intro__title-row--branch .hebergement-intro__bird,
:is(
	.hebergement-page,
	.cafe-page,
	.carrelot-page,
	.location-page
) .hebergement-intro__title-row--branch .hebergement-intro__bird-wrap img {
	width: clamp(100px, 9vw, 128px);
}

.hebergement-intro__title-row--branch + .hebergement-intro__content > .hebergement-intro__lead:first-child {
	margin-top: 0;
	margin-bottom: clamp(16px, 2.2vw, 28px);
}

.hebergement-intro__title-row--branch + .hebergement-intro__content > :first-child:not(.hebergement-intro__lead) {
	margin-top: 0;
}

.hebergement-intro__bird {
	width: clamp(80px, 8vw, 112px);
}

.hebergement-intro__title-row h1 {
	margin: 0;
	font-size: clamp(2rem, 2.65rem, 3.25rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

.hebergement-intro__lead,
.hebergement-intro__detail {
	margin: 0;
	color: var(--color-violet);
	font-size: 1.125rem;
	font-weight: 560;
	line-height: 1.32;
	letter-spacing: -0.02em;
	text-wrap: pretty;
}

.hebergement-intro__content .hebergement-richtext {
	hyphens: auto;
}

.hebergement-intro__lead {
	max-width: none;
	margin-bottom: clamp(22px, 2.8vw, 36px);
}

.hebergement-intro__detail {
	margin-top: 6px;
	margin-bottom: clamp(16px, 2vw, 22px);
	font-weight: 500;
	opacity: 0.9;
}

.hebergement-intro .hebergement-richtext {
	margin-bottom: clamp(14px, 2vw, 18px);
}

.hebergement-richtext {
	color: var(--color-violet);
	font-size: 0.98rem;
	line-height: 1.65;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
}

.hebergement-richtext p {
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	text-wrap: wrap;
}

.hebergement-richtext strong {
	font-weight: 760;
}

/* Liens dans le texte riche éditable */
.hebergement-richtext a,
.cafe-section__richtext a,
.projet-richtext a,
.event-block__content a,
.event-block__intro a {
	color: var(--color-violet);
	text-decoration: underline;
	text-underline-offset: 0.15em;
	text-decoration-thickness: 1px;
	transition: color 0.18s ease;
}

.hebergement-richtext a:hover,
.hebergement-richtext a:focus-visible,
.cafe-section__richtext a:hover,
.cafe-section__richtext a:focus-visible,
.projet-richtext a:hover,
.projet-richtext a:focus-visible,
.event-block__content a:hover,
.event-block__content a:focus-visible,
.event-block__intro a:hover,
.event-block__intro a:focus-visible {
	color: var(--color-green, #7eb27a);
}

/* Lien de téléchargement PDF inséré via l'éditeur */
.richtext-file {
	display: inline-flex;
	align-items: baseline;
	gap: 0.4em;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.richtext-file::before {
	content: "\f1c1";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 0.85em;
	text-decoration: none;
}

/* Listes à puces dans le texte riche éditable — puces orange */
.hebergement-richtext ul,
.cafe-section__richtext ul,
.projet-richtext ul,
.event-block__content ul,
.event-block__intro ul {
	margin: 0.6em 0;
	padding: 0;
	list-style: none;
}

.hebergement-richtext ul li,
.cafe-section__richtext ul li,
.projet-richtext ul li,
.event-block__content ul li,
.event-block__intro ul li {
	position: relative;
	padding-left: 17px;
}

.hebergement-richtext ul li::before,
.cafe-section__richtext ul li::before,
.projet-richtext ul li::before,
.event-block__content ul li::before,
.event-block__intro ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--color-orange);
}

/* Paragraphes éditoriaux — justification globale */
.site-main :is(
	.hebergement-intro__lead,
	.hebergement-intro__detail,
	.hebergement-shared-note,
	.hebergement-aside-note,
	.hebergement-section__tax-note,
	.hebergement-common__outro,
	.hebergement-bottom__text,
	.equipe-section__intro,
	.equipe-section__text,
	.location-section__note,
	.location-bottom__contact,
	.contact-visit__intro,
	.carrelot-intro__practical-contact,
	.cafe-intro-events__intro,
	.cafe-hours__note,
	.event-single__lead,
	.event-block__intro,
	.event-block__content,
	.legal-intro__lead,
	.legal-section__body,
	.legal-section__body p,
	.projet-intro__lead,
	.projet-pullquote p,
	.projet-richtext__highlight,
	.event-block__quote p
) {
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	text-wrap: wrap;
}

.projet-richtext,
.projet-richtext p {
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	text-wrap: wrap;
}

.hebergement-aside-note {
	margin: 0;
	padding: clamp(16px, 2vw, 20px) 0 0;
	border-top: 1px solid rgba(67, 56, 124, 0.12);
	color: var(--color-violet);
	font-size: 0.95rem;
	font-weight: 540;
	line-height: 1.58;
}

.hebergement-shared-note {
	max-width: none;
	margin: 0 0 28px;
	color: var(--color-violet);
	font-size: 0.98rem;
	font-weight: 540;
	line-height: 1.62;
	text-wrap: pretty;
}

.hebergement-section__tax-note {
	margin: clamp(16px, 2vw, 24px) 0 0;
	padding-top: 0;
	border-top: 0;
	color: var(--color-violet);
	font-size: 0.95rem;
	font-style: italic;
	font-weight: 540;
	line-height: 1.58;
	text-wrap: pretty;
}

.hebergement-features-band {
	padding: clamp(28px, 3.5vw, 44px) 0 clamp(12px, 1.5vw, 16px);
	background: linear-gradient(180deg, rgba(250, 234, 205, 0.35), rgba(250, 234, 205, 0.14));
}

.hebergement-features__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hebergement-features__grid--sidebar {
	grid-template-columns: minmax(0, 1fr);
	gap: 10px 0;
}

.hebergement-intro__features .hebergement-feature {
	font-size: 0.88rem;
	line-height: 1.38;
}

.hebergement-feature {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	min-height: 0;
	padding: 2px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--color-violet);
	font-size: 0.92rem;
	font-weight: 560;
	line-height: 1.4;
}

.hebergement-feature--inline {
	align-items: center;
}

.hebergement-feature--stacked {
	align-items: flex-start;
}

.hebergement-feature__text {
	display: flex;
	flex-direction: column;
	gap: 0.15em;
}

.hebergement-feature__line {
	display: block;
}

.hebergement-feature i {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	margin: 0;
	border-radius: 0;
	background: transparent;
	color: var(--color-orange);
	font-size: 1rem;
	line-height: 1;
}

.hebergement-room-question-wrap {
	padding: clamp(12px, 1.5vw, 20px) 0 clamp(16px, 2vw, 28px);
}

.addressed-phrase-band--section {
	padding-bottom: clamp(12px, 2vw, 24px);
}

.addressed-phrase-band--section .hebergement-room-question-wrap {
	padding-block: clamp(20px, 2.5vw, 32px) clamp(28px, 3.5vw, 48px);
}

.hebergement-page .addressed-phrase-band--section .hebergement-room-question-wrap {
	padding-block: clamp(18px, 2.2vw, 30px) clamp(22px, 2.8vw, 36px);
	margin-top: clamp(-8px, -1vw, 0px);
}

.hebergement-page .addressed-phrase-band--section {
	padding-bottom: clamp(12px, 1.5vw, 20px);
}

.hebergement-page .addressed-phrase-stage {
	padding: clamp(20px, 2.8vw, 36px) clamp(20px, 3vw, 40px);
	font-size: clamp(30px, 3.6vw, 46px);
	line-height: 1.05;
}

.hebergement-page .addressed-phrase-stage .addressed-phrase-band__sun {
	top: calc(clamp(20px, 2.8vw, 36px) + 0.52em + 100px);
	left: calc(clamp(20px, 3vw, 40px) + 0.42ch);
	opacity: 0.12;
	transform: translate(-50%, -50%);
}

.hebergement-room-question-wrap .addressed-phrase {
	margin: 0;
}

.hebergement-section {
	padding-bottom: clamp(48px, 6vw, 80px);
}

.hebergement-section--rooms {
	margin-top: -50px;
	padding-top: clamp(20px, 2.5vw, 32px);
}

.hebergement-room-question-wrap--above-private {
	position: relative;
	z-index: 2;
	width: fit-content;
	max-width: 100%;
	padding: 0;
	margin: clamp(-64px, -7vw, -44px) 0 clamp(28px, 3.5vw, 48px);
}

.hebergement-room-question-wrap--above-private .section-title-stage {
	padding-top: clamp(6px, 0.9vw, 12px);
}

.hebergement-page .hebergement-room-question-wrap--above-private .addressed-phrase-band__sun--section-title {
	top: calc(50% + 100px);
	left: clamp(10px, 1.6vw, 18px);
	opacity: 0.12;
}

.hebergement-section__title {
	position: relative;
	margin: 0 0 clamp(24px, 3vw, 32px);
	padding-bottom: 14px;
	font-size: clamp(1.75rem, 2rem, 2.375rem);
	font-weight: 640;
	letter-spacing: -0.03em;
	text-align: left;
	text-wrap: balance;
}

.hebergement-section__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 48px;
	height: 3px;
	border-radius: 999px;
	background: var(--color-orange);
}

.room-grid {
	display: grid;
	gap: 28px;
}

.room-grid--private {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.room-card--layout-wide {
	grid-column: span 3;
}

.room-card--layout-narrow {
	grid-column: span 2;
}

.room-grid--shared {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: none;
	margin-inline: 0;
}

.hebergement-page .room-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(67, 56, 124, 0.1);
	border-radius: 20px;
	background: var(--color-white);
	box-shadow: 0 10px 26px rgba(67, 56, 124, 0.06);
}

.hebergement-page .room-card:hover {
	transform: none;
	box-shadow: 0 10px 26px rgba(67, 56, 124, 0.06);
}

.room-card__body {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.room-card__link {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.room-card__link:focus-visible {
	outline: 3px solid rgba(249, 178, 52, 0.55);
	outline-offset: 4px;
}

.hebergement-page .room-card__image {
	position: relative;
	aspect-ratio: 5 / 4;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
	background: rgba(67, 56, 124, 0.06);
}

.hebergement-page .room-card__image--empty {
	background: rgba(67, 56, 124, 0.06);
}

.hebergement-page .room-card__image img {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
}

/* Plus de cartouche « Chambre privée » / « Dortoir » sur les photos */
.room-card__badge {
	display: none !important;
}

.room-card__image::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	height: 42%;
	background: linear-gradient(180deg, transparent, rgba(30, 22, 67, 0.28));
	pointer-events: none;
}

.room-card__image img {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.room-slider__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	opacity: 0;
	transition: opacity 0.7s ease, transform 0.6s ease;
}

.room-slider__image.is-active {
	z-index: 1;
	opacity: 1;
}

.room-slider__dots {
	position: absolute;
	right: 0;
	bottom: 12px;
	left: 0;
	z-index: 4;
	display: flex;
	gap: 8px;
	justify-content: center;
	pointer-events: none;
}

.room-slider__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: 0 0 0 1px rgba(67, 56, 124, 0.18);
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.room-slider__dot.is-active {
	background: var(--color-orange);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
	transform: scale(1.15);
}

.room-card h3 {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.room-card__pmr {
	display: inline-flex;
	align-items: center;
	color: var(--color-orange);
	font-size: clamp(1.35rem, 2.4vw, 1.55rem);
	line-height: 1;
}

.room-card__pmr i {
	font-size: 1em;
}

.room-card:hover .room-card__image img {
	transform: scale(1.035);
}

.hebergement-page .room-card:hover .room-card__image img {
	transform: none;
}

.hebergement-page .room-card:hover::after,
.hebergement-page .room-card:focus-within::after {
	opacity: 0;
}

.room-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px 24px 24px;
}

.room-card h3 {
	margin-bottom: 14px;
	font-size: clamp(23px, 2.2vw, 29px);
	font-weight: 650;
	letter-spacing: -0.03em;
}

.room-card ul {
	display: grid;
	gap: 8px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	color: var(--color-violet);
	font-size: 0.95rem;
	line-height: 1.3;
}

.room-card li::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 10px;
	border-radius: 999px;
	background: var(--color-orange);
}

.room-card__price {
	margin: 0;
	color: var(--color-violet);
	font-size: 1.1rem;
	font-weight: 760;
}

.room-card__footer {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: flex-start;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(67, 56, 124, 0.1);
}

.room-card__action {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	color: var(--color-orange);
	font-size: 0.78rem;
	font-weight: 780;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.room-card__action::after {
	content: "\00a0\2192";
	transition: margin-left 0.2s ease;
}

.room-card:hover .room-card__action::after,
.room-card:focus-within .room-card__action::after {
	margin-left: 4px;
}

.hebergement-booking-bar {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 125;
	display: flex;
	justify-content: center;
	padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
	background: transparent;
	pointer-events: none;
	visibility: visible;
	opacity: 1;
}

@keyframes hebergement-booking-bell {
	0%,
	78%,
	100% {
		transform: rotate(0deg);
	}

	82% {
		transform: rotate(13deg);
	}

	86% {
		transform: rotate(-11deg);
	}

	90% {
		transform: rotate(7deg);
	}

	94% {
		transform: rotate(-4deg);
	}
}

.hebergement-booking-bar__cta {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	gap: 0.7rem;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
	min-width: min(100%, 480px);
	min-height: 3.75rem;
	padding: 1.28rem 2.6rem;
	border: 0;
	background: var(--color-violet);
	color: var(--color-white);
	font-size: clamp(1.08rem, 2vw, 1.28rem);
	font-weight: 780;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	box-shadow: 0 16px 40px rgba(67, 56, 124, 0.32);
}

.hebergement-booking-bar__cta i {
	flex: 0 0 auto;
	font-size: 1.05em;
	line-height: 1;
	transform-origin: 50% 0.08em;
	animation: hebergement-booking-bell 5s ease-in-out infinite;
}

.hebergement-booking-bar__cta::after {
	content: "";
	position: absolute;
	right: -22px;
	bottom: -22px;
	width: 124px;
	height: 124px;
	border-radius: 999px;
	background:
		repeating-conic-gradient(from 2deg, currentColor 0deg 5deg, transparent 5deg 11deg);
	mask: radial-gradient(circle, transparent 0 3px, #000 3.5px 100%);
	color: var(--color-orange);
	opacity: 0;
	pointer-events: none;
	transform: rotate(8deg) scale(0.9);
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.hebergement-booking-bar__cta:hover,
.hebergement-booking-bar__cta:focus-visible {
	transform: translateY(-2px);
	background: var(--color-violet);
	color: var(--color-white);
	opacity: 1;
	box-shadow: 0 18px 44px rgba(67, 56, 124, 0.38);
}

.hebergement-booking-bar__cta:hover::after,
.hebergement-booking-bar__cta:focus-visible::after {
	opacity: 0.48;
	transform: rotate(34deg) scale(1.06);
}

.hebergement-page {
	padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
}

.hebergement-section--shared {
	padding-top: 4px;
}

.hebergement-common {
	padding-block: clamp(48px, 6vw, 80px);
	border-top: 0;
}

.hebergement-duo {
	padding-block: clamp(48px, 6vw, 80px);
}

.hebergement-duo__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(40px, 6vw, 72px);
	align-items: start;
}

.hebergement-duo__inner--group {
	margin-top: clamp(40px, 5vw, 56px);
}

.hebergement-duo .hebergement-gallery-strip {
	margin-block: clamp(32px, 4.5vw, 52px);
}

.hebergement-duo__col {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.hebergement-duo__col--common-icons,
.hebergement-duo__col--group-icons {
	justify-content: center;
	align-self: stretch;
}

.hebergement-duo__col--common-icons .hebergement-common__grid {
	margin: 0;
	width: 100%;
}

.hebergement-duo__col .hebergement-section__title {
	margin-bottom: clamp(18px, 2.2vw, 24px);
}

.hebergement-duo__col .button {
	align-self: flex-start;
	margin-top: clamp(22px, 2.8vw, 32px);
}

.hebergement-duo__col--group .hebergement-bottom__text {
	margin: 0;
}

.hebergement-duo__col--group .hebergement-bottom__contact {
	margin: clamp(14px, 1.8vw, 20px) 0 0;
}

.hebergement-common__head .hebergement-section__title {
	margin-bottom: clamp(18px, 2.2vw, 24px);
}

.hebergement-group-block {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin-top: clamp(48px, 6vw, 72px);
}

.hebergement-group-block .hebergement-section__title {
	margin-bottom: clamp(18px, 2.2vw, 24px);
}

.hebergement-group-block .button {
	align-self: flex-start;
	margin-top: clamp(22px, 2.8vw, 32px);
}

.hebergement-group-block .hebergement-bottom__text {
	margin: 0;
}

.hebergement-group-block .hebergement-bottom__contact {
	margin: clamp(14px, 1.8vw, 20px) 0 0;
}

.hebergement-common__layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
	margin-top: clamp(20px, 2.5vw, 28px);
}

.hebergement-common__layout-main {
	min-width: 0;
}

.hebergement-common__layout-main .hebergement-common__pair {
	margin-top: 0;
}

.hebergement-common__layout-aside {
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 100%;
}

.hebergement-common__layout-aside .hebergement-common__grid {
	margin: 0;
	width: 100%;
}

.hebergement-common__content {
	min-width: 0;
}

.hebergement-common__media {
	position: sticky;
	top: clamp(88px, 10vw, 120px);
	min-width: 0;
}

.hebergement-common__intro,
.hebergement-common__intro.hebergement-richtext,
.hebergement-common__intro p,
.hebergement-common__outro {
	text-wrap: wrap;
}

.hebergement-common__intro {
	max-width: none;
	margin-bottom: clamp(18px, 2.2vw, 24px);
}

.hebergement-common__intro p:first-child {
	margin-top: 0;
}

.hebergement-common__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 22px;
	margin: 0 0 clamp(28px, 3.5vw, 36px);
	padding: 0;
	list-style: none;
}

.hebergement-common__grid--footer {
	margin: auto 0 0;
	padding-top: clamp(20px, 2.5vw, 28px);
	justify-items: start;
	text-align: left;
}

.hebergement-common__pair {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(12px, 1.6vw, 18px);
	align-items: start;
	margin: clamp(20px, 2.5vw, 28px) 0 0;
}

.hebergement-common__pair-item {
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
	background: rgba(67, 56, 124, 0.04);
	box-shadow: 0 10px 26px rgba(67, 56, 124, 0.08);
}

.hebergement-common__pair-item--2 {
	margin-top: clamp(16px, 4vw, 28px);
}

.hebergement-common__pair--has-third {
	grid-template-rows: auto auto;
}

.hebergement-common__pair-item--3 {
	grid-column: 1 / -1;
}

.hebergement-common__pair-item img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

.hebergement-common__item {
	display: flex;
	gap: 10px;
	align-items: center;
	color: var(--color-violet);
	font-size: 0.94rem;
	font-weight: 560;
	line-height: 1.35;
}

.hebergement-common__item i {
	flex: 0 0 auto;
	color: var(--color-orange);
	font-size: 1.05rem;
}

.hebergement-common__layout-main .o3w-masonry,
.hebergement-group-block .o3w-masonry {
	margin-top: clamp(18px, 2.4vw, 28px);
}

.hebergement-common__masonry,
.o3w-masonry {
	columns: 2;
	column-gap: clamp(14px, 2vw, 20px);
}

.hebergement-common__masonry--single,
.o3w-masonry--single {
	columns: 1;
}

.hebergement-common__masonry-item,
.o3w-masonry__item {
	break-inside: avoid;
	margin: 0 0 clamp(14px, 2vw, 20px);
	overflow: hidden;
	border-radius: 10px;
	background: rgba(67, 56, 124, 0.04);
	box-shadow: 0 10px 26px rgba(67, 56, 124, 0.08);
}

.hebergement-common__masonry-item img,
.o3w-masonry__item img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

.hebergement-common__outro {
	max-width: none;
	margin: 0 0 clamp(4px, 0.6vw, 8px);
	color: var(--color-violet);
	font-size: 0.98rem;
	line-height: 1.65;
}

.hebergement-bottom {
	padding-block: clamp(54px, 7vw, 88px);
}

.hebergement-bottom__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}

.hebergement-bottom__card {
	max-width: none;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.hebergement-bottom__text {
	max-width: none;
	color: var(--color-violet);
	font-size: 0.98rem;
	line-height: 1.58;
}

.hebergement-bottom__card p {
	max-width: none;
	color: var(--color-violet);
	font-size: 0.98rem;
	line-height: 1.58;
}

.hebergement-bottom__contact {
	margin-bottom: 0;
	text-align: left;
}

.hebergement-bottom__contact a {
	font-weight: 650;
}

.hebergement-bottom__card .button {
	margin-top: clamp(22px, 2.8vw, 32px);
}

.hebergement-partners {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 24px;
	justify-content: flex-end;
	align-items: flex-start;
	align-content: flex-start;
	margin: 0;
	padding-top: clamp(8px, 1vw, 12px);
}

.hebergement-partners--footer {
	margin-top: auto;
	padding-top: clamp(20px, 2.5vw, 28px);
}

.hebergement-partners--sidebar {
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: clamp(18px, 2.4vw, 28px);
	margin: 0;
	padding: 0;
	min-height: 100%;
}

.hebergement-partners__item {
	margin: 0;
}

.hebergement-partners__item img {
	display: block;
	width: auto;
	max-width: min(220px, 42vw);
	max-height: 96px;
	height: auto;
	object-fit: contain;
	mix-blend-mode: multiply;
}

/* Le Carrelot (page dédiée — location conserve le hero legacy ci-dessous) */
.carrelot-intro {
	margin-top: clamp(28px, 4vw, 48px);
	margin-bottom: clamp(10px, 1.4vw, 18px);
}

.carrelot-intro__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
	gap: clamp(28px, 4.5vw, 64px);
	align-items: start;
}

.carrelot-page .hebergement-intro__layout {
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: var(--intro-layout-gap);
	align-items: start;
}

.carrelot-page .hebergement-intro__main,
.carrelot-page .hebergement-intro__content {
	overflow: visible;
	min-width: 0;
}

.carrelot-page .hebergement-intro__main {
	gap: 0;
}

.carrelot-page .hebergement-intro__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 0;
}

.carrelot-page .carrelot-intro__meet {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	margin: -20px 0 clamp(8px, 1vw, 12px);
	padding: 0;
}

.carrelot-page .hebergement-intro__content > .carrelot-intro-events,
.carrelot-page .hebergement-intro__content > .carrelot-intro-events.cafe-intro-events {
	margin-top: 0;
}

.carrelot-page .carrelot-intro__sidebar .hebergement-feature i {
	background: transparent;
	color: var(--color-green);
}

.carrelot-features__grid--sidebar {
	margin-bottom: clamp(18px, 2.4vw, 24px);
}

.carrelot-intro__practical-text {
	margin: 0 0 clamp(14px, 1.8vw, 18px);
	color: var(--color-violet);
	font-size: 0.94rem;
	line-height: 1.58;
}

.carrelot-intro__practical-contact {
	margin: 0;
	color: var(--color-violet);
	font-size: 0.94rem;
	font-weight: 650;
	line-height: 1.45;
}

.carrelot-intro-events {
	margin-top: 0;
	margin-bottom: clamp(4px, 0.6vw, 8px);
	position: relative;
}

.carrelot-intro-events__title {
	margin-bottom: clamp(18px, 2.2vw, 24px);
}

.carrelot-intro-events__carousel {
	margin-top: 0;
}

.carrelot-intro__subtitle {
	margin-bottom: clamp(14px, 1.8vw, 20px);
}

.carrelot-intro__content {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	gap: clamp(28px, 4.5vw, 56px);
	align-items: center;
	width: 100%;
	margin-top: clamp(32px, 4vw, 48px);
	min-width: 0;
}

.carrelot-intro__copy {
	min-width: 0;
}

.carrelot-intro__media {
	position: static;
	min-width: 0;
	margin: 0;
}

.carrelot-intro__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 14px;
}

.carrelot-intro__media .hebergement-common__masonry {
	margin-top: 0;
}

.carrelot-page .hebergement-aside-note,
.carrelot-page .carrelot-intro__note {
	border-top: 0;
	padding-top: clamp(14px, 1.8vw, 18px);
}

.carrelot-intro__content .hebergement-intro__lead {
	margin-bottom: clamp(22px, 2.8vw, 36px);
}

.carrelot-features__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.carrelot-features-band {
	display: none;
}

.carrelot-residence-section {
	padding-bottom: clamp(40px, 5vw, 64px);
}

.carrelot-duo {
	padding-block: clamp(48px, 6vw, 80px);
}

.carrelot-duo__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(40px, 6vw, 72px);
	align-items: start;
}

.carrelot-duo__col {
	min-width: 0;
}

.carrelot-duo__col .hebergement-section__title {
	margin-bottom: clamp(18px, 2.2vw, 24px);
}

.carrelot-duo__media {
	margin: 0 0 clamp(18px, 2.4vw, 24px);
}

.carrelot-duo__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 14px;
}

.carrelot-events {
	display: none;
}

.carrelot-bottom {
	padding-block: clamp(48px, 6vw, 80px);
	border-top: 0;
}

.carrelot-bottom__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 4vw, 48px);
	align-items: start;
}

.carrelot-bottom__contact {
	margin: 16px 0 0;
	color: var(--color-violet);
	font-size: 0.96rem;
	font-weight: 650;
	line-height: 1.45;
}

.carrelot-bottom__cta {
	margin: 20px 0 0;
}

/* Legacy hero Carrelot (autres pages si besoin) */
.carrelot-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
	gap: clamp(34px, 5vw, 70px);
	align-items: center;
}

.carrelot-hero__bird {
	width: clamp(126px, 11vw, 168px);
	margin-bottom: 14px;
	border-radius: 0;
}

.carrelot-hero h1 {
	max-width: 860px;
	font-size: clamp(40px, 4.6vw, 62px);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.048em;
}

.carrelot-hero__subtitle {
	max-width: 780px;
	margin: 14px 0 24px;
	color: var(--color-violet);
	font-size: clamp(18px, 1.7vw, 22px);
	font-weight: 560;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.carrelot-hero blockquote {
	position: relative;
	margin: 24px 0 0;
	padding: 22px 26px 22px 64px;
	border: 1px solid rgba(67, 56, 124, 0.08);
	border-radius: 22px;
	background: var(--color-surface);
	color: var(--color-violet);
	box-shadow: 0 12px 30px rgba(67, 56, 124, 0.06);
	font-size: 0.98rem;
	font-weight: 540;
	line-height: 1.62;
	text-wrap: pretty;
}

.carrelot-hero blockquote::before {
	content: "\201C";
	position: absolute;
	top: 18px;
	left: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--color-green);
	color: var(--color-white);
	box-shadow: 0 0 0 7px rgba(135, 166, 133, 0.16);
	font-family: Georgia, serif;
	font-size: 28px;
	line-height: 1;
}

.carrelot-hero__gallery {
	column-count: 2;
	column-gap: clamp(16px, 2.4vw, 26px);
}

.carrelot-hero__image {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: clamp(16px, 2.4vw, 26px);
	border-radius: var(--radius-small);
	box-shadow: var(--shadow);
	break-inside: avoid;
}

.carrelot-hero__image--1 {
	grid-row: auto;
}

.carrelot-hero__image--3 {
	transform: none;
}

.carrelot-hero__image--4 {
	display: block;
}

/* Location d’espaces */
.location-page .intro-page-shell__main {
	z-index: auto;
}

.location-intro {
	margin-bottom: 0;
}

.location-page .location-intro .hebergement-richtext {
	margin-bottom: 0;
}

.location-page .location-intro .hebergement-richtext > :last-child {
	margin-bottom: 0;
}

.location-page-shell.intro-page-shell {
	align-items: start;
	margin-bottom: clamp(24px, 3.5vw, 44px);
}

.location-page .location-visit-wrap {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	padding: 0 0 clamp(20px, 2.5vw, 32px);
}

.location-page .location-sections {
	padding-bottom: clamp(24px, 3vw, 40px);
}

.location-page-shell .location-sections__intro {
	max-width: none;
	margin-bottom: clamp(24px, 3vw, 36px);
}

.location-page-shell .location-sections__inner {
	gap: clamp(28px, 4vw, 48px);
}

.location-page .intro-page-shell__aside {
	position: relative;
	align-self: start;
	display: flex;
	flex-direction: column;
	gap: clamp(28px, 3.5vw, 40px);
	margin-top: 50px;
	padding-left: clamp(28px, 3.2vw, 44px);
	background: var(--color-background);
}

/* Ombre verticale à gauche seulement — pas de halo haut/bas */
.location-page .intro-page-shell__aside::before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 100%;
	width: var(--intro-layout-gap);
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(67, 56, 124, 0) 0%,
		rgba(67, 56, 124, 0.04) 42%,
		rgba(67, 56, 124, 0.1) 100%
	);
	-webkit-mask-image: linear-gradient(
		180deg,
		transparent 0%,
		#000 7%,
		#000 93%,
		transparent 100%
	);
	mask-image: linear-gradient(
		180deg,
		transparent 0%,
		#000 7%,
		#000 93%,
		transparent 100%
	);
}

.location-page .location-sidebar-event {
	margin-top: 0;
	padding: clamp(24px, 3vw, 32px) 0 0;
	border-top: 1px solid rgba(67, 56, 124, 0.12);
}

.location-page .location-sidebar-event .hebergement-section__title {
	margin-bottom: clamp(14px, 1.8vw, 18px);
	font-size: clamp(1.35rem, 1.65vw, 1.75rem);
	line-height: 1.08;
}

.location-page .location-sidebar-event .hebergement-richtext {
	font-size: 0.94rem;
	line-height: 1.58;
}

.location-page .location-sidebar-event .location-bottom__contact {
	margin-top: clamp(14px, 1.8vw, 18px);
	font-size: 0.92rem;
}

.location-page .location-sidebar-event .location-bottom__cta {
	margin-top: clamp(16px, 2vw, 20px);
}

.location-page .location-sidebar-event .button {
	width: 100%;
	justify-content: center;
	text-align: center;
}

.location-page .intro-page-shell__sidebar.location-intro__sidebar {
	margin-top: 0;
	padding-left: 0;
	background: transparent;
}

.location-page .intro-page-shell__sidebar.location-intro__sidebar::before {
	display: none;
}

.location-page .hebergement-intro__main,
.location-page .hebergement-intro__content {
	overflow: visible;
	min-width: 0;
}

.location-page .location-intro__sidebar .hebergement-feature i {
	background: transparent;
	color: var(--color-orange);
}

.location-features__grid--sidebar {
	margin-bottom: clamp(18px, 2.4vw, 24px);
}

.location-intro__practical-text {
	margin: 0 0 clamp(14px, 1.8vw, 18px);
	color: var(--color-violet);
	font-size: 0.94rem;
	line-height: 1.58;
}

.location-intro__addresses {
	margin: 0;
	color: var(--color-violet);
	font-size: 0.94rem;
	line-height: 1.45;
}

.location-intro__addresses .site-addresses__line + .site-addresses__line,
.location-intro__addresses .site-addresses__phone {
	margin-top: 8px;
}

.location-page .hebergement-aside-note,
.location-page .location-intro__note {
	border-top: 0;
	padding-top: clamp(14px, 1.8vw, 18px);
}

.location-features__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-features-band {
	display: none;
}

.location-sections {
	padding-bottom: clamp(40px, 5vw, 64px);
}

.location-sections__intro {
	max-width: 52rem;
	margin-bottom: clamp(32px, 4vw, 48px);
}

.location-sections__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(40px, 6vw, 72px);
	align-items: start;
}

.location-section__media {
	position: relative;
	margin: 0 0 clamp(18px, 2.4vw, 24px);
	overflow: hidden;
	border-radius: 14px;
	background: rgba(67, 56, 124, 0.04);
}

.location-section__media img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

.location-section__media-placeholder {
	display: grid;
	place-items: center;
	min-height: 100%;
	color: rgba(67, 56, 124, 0.45);
	font-size: 0.92rem;
}

.location-section__kicker {
	margin: 0 0 8px;
	color: var(--color-orange);
	font-size: 0.76rem;
	font-weight: 780;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.location-section__kicker--green {
	color: var(--color-green);
}

.location-section__note {
	margin: 16px 0 0;
	color: var(--color-violet);
	font-size: 0.98rem;
	line-height: 1.5;
}

.location-section__cta {
	margin: 20px 0 0;
}

.location-space-card__action {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	color: var(--color-orange);
	font-size: 0.78rem;
	font-weight: 780;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.location-space-card__action--green {
	color: var(--color-green);
}

.location-space-card__action::after {
	content: "\00a0\2192";
	transition: margin-left 0.2s ease;
}

.location-space-card__action:hover::after,
.location-space-card__action:focus-visible::after {
	margin-left: 4px;
}

.location-equipment {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.location-equipment li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--color-violet);
	font-size: 0.94rem;
	line-height: 1.4;
}

.location-section--carrelot .location-equipment i {
	color: var(--color-green);
}

.location-equipment i {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.15em;
	margin-top: 0.12em;
	color: var(--color-orange);
	font-size: 0.92rem;
	line-height: 1;
}

.location-bottom {
	padding-block: clamp(48px, 6vw, 80px);
	border-top: 0;
}

.location-bottom__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 4vw, 48px);
	align-items: start;
}

.location-bottom__contact,
.location-bottom__addresses {
	margin: 16px 0 0;
	color: var(--color-violet);
	font-size: 0.96rem;
	line-height: 1.45;
}

.location-bottom__addresses .site-addresses__line + .site-addresses__line,
.location-bottom__addresses .site-addresses__phone {
	margin-top: 8px;
}

.location-bottom__cta {
	margin: 20px 0 0;
}

/* Contact */
.contact-page {
	padding-bottom: clamp(40px, 5vw, 64px);
}

.contact-section--map {
	padding-top: clamp(24px, 3.5vw, 40px);
	padding-bottom: clamp(28px, 4vw, 40px);
}

.contact-intro {
	margin-bottom: 0;
}

.contact-page .hebergement-section.contact-section--main {
	padding-top: clamp(24px, 3.5vw, 40px);
	padding-bottom: clamp(32px, 4.5vw, 48px);
}

.contact-page .hebergement-intro__layout {
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: clamp(52px, 7.5vw, 108px);
	align-items: start;
}

.contact-page .contact-intro__sidebar {
	position: relative;
	top: auto;
	bottom: auto;
	align-self: start;
	justify-content: flex-start;
	max-height: none;
	overflow: visible;
	overscroll-behavior: auto;
}

.contact-page .hebergement-intro__main,
.contact-page .contact-visit__content {
	min-width: 0;
	overflow: visible;
}

.contact-page .contact-intro__sidebar .hebergement-feature i {
	background: transparent;
	color: var(--color-orange);
}

.contact-info__grid--sidebar {
	margin-bottom: 0;
}

.contact-info__grid--sidebar .hebergement-feature a {
	color: var(--color-violet);
	font-weight: 650;
	text-decoration: underline;
	text-decoration-color: rgba(67, 56, 124, 0.28);
	text-underline-offset: 0.12em;
}

.contact-info__grid--sidebar .hebergement-feature a:hover,
.contact-info__grid--sidebar .hebergement-feature a:focus-visible {
	color: var(--color-green);
}

.contact-page__visit {
	min-width: 0;
}

.contact-page .contact-visit__meet-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: clamp(18px, 2.2vw, 24px);
}

.contact-page__form {
	min-width: 0;
	max-width: none;
	margin-top: clamp(32px, 4vw, 48px);
}

.contact-page__form .contact-form-panel {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.contact-visit__intro {
	margin: 0 0 clamp(18px, 2.5vw, 24px);
	color: var(--color-violet);
	font-size: clamp(1.02rem, 1.15vw, 1.14rem);
	font-weight: 560;
	line-height: 1.55;
	text-wrap: pretty;
}

.contact-visit__addresses {
	margin-bottom: clamp(20px, 2.8vw, 28px);
}

.contact-visit__places {
	display: grid;
	gap: 14px;
	margin: 0 0 clamp(22px, 3vw, 30px);
	padding: 0;
	list-style: none;
}

.contact-visit__place {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 14px 16px;
	border: 1px solid rgba(67, 56, 124, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.72);
}

.contact-visit__place--cafe {
	border-top: 3px solid var(--color-orange);
}

.contact-visit__place--carrelot {
	border-top: 3px solid var(--color-green);
}

.contact-visit__place-icon {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.contact-visit__place-copy {
	min-width: 0;
}

.contact-visit__place-title {
	margin: 0 0 4px;
	color: var(--color-violet);
	font-size: 0.82rem;
	font-weight: 780;
	letter-spacing: 0.06em;
	line-height: 1.25;
	text-transform: uppercase;
}

.contact-visit__place--cafe .contact-visit__place-title {
	color: #c88408;
}

.contact-visit__place--carrelot .contact-visit__place-title {
	color: #5f7f62;
}

.contact-visit__place-address {
	margin: 0;
	color: var(--color-violet);
	font-size: 0.98rem;
	line-height: 1.5;
}

.contact-visit__place-address a {
	color: inherit;
	font-weight: 650;
	text-decoration: none;
}

.contact-visit__place-address a:hover,
.contact-visit__place-address a:focus-visible {
	color: var(--color-green);
	text-decoration: underline;
}

.site-addresses--contact-page .site-addresses__line {
	margin: 0;
	color: var(--color-violet);
	font-size: 0.98rem;
	line-height: 1.5;
}

.site-addresses--contact-page .site-addresses__line + .site-addresses__line {
	margin-top: 10px;
}

.site-addresses--contact-page strong {
	font-weight: 700;
}

.contact-visit__channels {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-visit__channel {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	color: var(--color-violet);
	font-size: 0.98rem;
	line-height: 1.45;
}

.contact-visit__channel-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	flex-shrink: 0;
	margin-top: 0.12rem;
}

.contact-visit__channel-icon i {
	color: var(--color-orange);
	font-size: 1rem;
}

.contact-visit__channel-body {
	min-width: 0;
}

.contact-visit__channel a {
	color: var(--color-violet);
	font-weight: 650;
	text-decoration: none;
}

.contact-visit__channel a:hover,
.contact-visit__channel a:focus-visible {
	color: var(--color-green);
	text-decoration: underline;
}

.contact-visit__channel-note {
	display: inline;
	margin-left: 0.35em;
	color: var(--color-violet);
	font-size: 0.92rem;
	font-weight: 500;
	opacity: 0.82;
}

.contact-visit__discovery {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(120px, 200px);
	gap: clamp(20px, 3vw, 32px);
	align-items: start;
	margin-top: clamp(24px, 3vw, 36px);
}

.contact-visit__discovery-list {
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--color-violet);
	font-size: clamp(0.98rem, 1.05vw, 1.08rem);
	font-weight: 520;
	line-height: 1.55;
	text-wrap: pretty;
}

.contact-visit__discovery-list li {
	position: relative;
	padding-left: 17px;
}

.contact-visit__discovery-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--color-orange);
}

.contact-visit__discovery-list li + li {
	margin-top: 0.65em;
}

.contact-visit__poster {
	margin: 0;
}

.contact-visit__poster img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 10px 28px rgba(67, 56, 124, 0.1);
}

.contact-visit__socials.footer-socials {
	justify-content: flex-start;
	margin-top: clamp(20px, 2.8vw, 28px);
}

.contact-form__notice {
	margin: 0 0 18px;
	padding: 14px 16px;
	border-radius: 12px;
	font-size: 0.94rem;
	line-height: 1.45;
}

.contact-form__notice--success {
	background: rgba(120, 168, 74, 0.12);
	border: 1px solid rgba(120, 168, 74, 0.28);
	color: var(--color-violet);
}

.contact-form__notice--error {
	background: rgba(224, 82, 82, 0.08);
	border: 1px solid rgba(224, 82, 82, 0.24);
	color: var(--color-violet);
}

.contact-form__notice-title {
	margin: 0 0 4px;
	font-weight: 700;
}

.contact-form__trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 20px;
}

.contact-form__field {
	margin: 0;
}

.contact-form__field--full {
	grid-column: 1 / -1;
}

.contact-form__phone-wrap {
	display: block;
}

.contact-form__phone-wrap .iti {
	display: block;
	width: 100%;
}

.contact-form__phone-wrap .iti__country-container {
	left: 0;
}

.contact-form__phone-wrap .contact-form__input--phone {
	width: 100%;
	padding: 0.58rem 0.75rem;
	padding-left: calc(var(--iti-spacer, 44px) + 6px);
	font-size: 0.9rem;
	line-height: 1.3;
}

.contact-form__phone-wrap .iti__selected-country {
	border-radius: 10px 0 0 10px;
}

.contact-form__phone-wrap .iti__selected-country-primary {
	padding-inline: 6px 4px;
}

.contact-form__phone-wrap .iti__selected-dial-code {
	margin-right: 4px;
	color: var(--color-violet);
	font-size: 0.84rem;
	font-weight: 650;
}

.contact-form__label {
	display: block;
	margin-bottom: 6px;
	color: var(--color-violet);
	font-size: 0.88rem;
	font-weight: 650;
	letter-spacing: -0.01em;
}

.contact-form__req {
	color: var(--color-orange);
}

.contact-form__optional {
	font-weight: 500;
	opacity: 0.72;
}

.contact-form__input {
	display: block;
	width: 100%;
	border: 1px solid rgba(67, 56, 124, 0.18);
	border-radius: 12px;
	background: var(--color-white);
	color: var(--color-violet);
	padding: 0.72rem 0.9rem;
	font: inherit;
	font-size: 0.94rem;
	line-height: 1.35;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input:focus {
	border-color: rgba(67, 56, 124, 0.42);
	outline: none;
	box-shadow: 0 0 0 3px rgba(67, 56, 124, 0.1);
}

.contact-form__select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--color-violet) 50%), linear-gradient(135deg, var(--color-violet) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 2rem;
}

.contact-form__textarea {
	min-height: 148px;
	resize: vertical;
}

.contact-form__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	margin-top: 18px;
}

.contact-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	max-width: 52ch;
	margin: 0;
	color: var(--color-violet);
	font-size: 0.88rem;
	line-height: 1.45;
	cursor: pointer;
}

.contact-form__consent input {
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.contact-form__consent-text a {
	color: var(--color-violet);
	font-weight: 650;
	text-decoration: underline;
	text-decoration-color: rgba(67, 56, 124, 0.28);
	text-underline-offset: 0.12em;
}

.contact-form__consent-text a:hover,
.contact-form__consent-text a:focus-visible {
	color: var(--color-green);
}

.contact-form__submit {
	margin: 0;
	border: 0;
	cursor: pointer;
}

/* Pages légales & bandeau cookies */
.legal-intro__lead {
	max-width: 52ch;
}

.legal-page__sections .legal-section {
	padding-top: clamp(28px, 3.5vw, 44px);
	padding-bottom: clamp(28px, 3.5vw, 44px);
}

.legal-page__sections .legal-section + .legal-section {
	border-top: 1px solid rgba(67, 56, 124, 0.08);
}

.legal-section__body {
	max-width: 68ch;
	color: var(--color-violet);
	font-size: 0.96rem;
	line-height: 1.6;
}

.legal-section__body p + p,
.legal-section__body ul {
	margin-top: 0.85em;
}

.legal-section__body a {
	color: var(--color-violet);
	font-weight: 650;
	text-decoration: underline;
	text-decoration-color: rgba(67, 56, 124, 0.28);
	text-underline-offset: 0.12em;
}

.legal-section__body a:hover,
.legal-section__body a:focus-visible {
	color: var(--color-green);
}

.cookie-preferences__fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	min-width: 0;
}

.cookie-preferences__options {
	display: grid;
	gap: 12px;
	margin: 16px 0 28px;
}

.cookie-preferences__option {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.cookie-preferences__submit {
	margin: 0;
	border: 0;
	outline: 0;
	box-shadow: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.cookie-preferences__status {
	margin-top: 12px;
	font-size: 0.9rem;
	font-weight: 650;
}

.cookie-banner {
	position: fixed;
	right: clamp(12px, 2vw, 24px);
	bottom: calc(clamp(12px, 2vw, 24px) + env(safe-area-inset-bottom, 0px));
	left: auto;
	z-index: 120;
	width: min(340px, calc(100vw - 24px));
	padding: 0;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(67, 56, 124, 0.12);
	border-radius: 16px;
	box-shadow: 0 14px 40px rgba(67, 56, 124, 0.14);
	overflow: hidden;
}

.cookie-banner__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
	padding: 18px 18px 16px;
}

.cookie-banner__sun {
	position: absolute;
	top: -28px;
	right: -36px;
	z-index: 0;
	width: 190px;
	height: 190px;
	pointer-events: none;
	background-image: var(--charter-sun-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	mix-blend-mode: multiply;
	opacity: 0.14;
	-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 38%, transparent 72%);
	mask-image: linear-gradient(180deg, #000 0%, #000 38%, transparent 72%);
}

.cookie-banner__copy {
	position: relative;
	z-index: 1;
}

.cookie-banner__title {
	margin: 0 0 6px;
	color: var(--color-violet);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.cookie-banner__text {
	margin: 0;
	max-width: 28ch;
	color: var(--color-violet);
	font-size: 0.84rem;
	line-height: 1.42;
}

.cookie-banner__text a {
	color: var(--color-violet);
	font-weight: 650;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.cookie-banner__actions {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.cookie-banner__btn {
	margin: 0;
	padding: 0.5rem 0.9rem;
	font-size: 0.82rem;
	white-space: nowrap;
}

.contact-info-band {
	display: none;
}

.contact-info__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px 28px;
}

.contact-info-band .hebergement-feature {
	font-size: 0.88rem;
	line-height: 1.38;
}

.contact-info-band .hebergement-feature a {
	color: var(--color-violet);
	font-weight: 650;
	text-decoration: underline;
	text-decoration-color: rgba(67, 56, 124, 0.28);
	text-underline-offset: 0.12em;
}

.contact-info-band .hebergement-feature a:hover,
.contact-info-band .hebergement-feature a:focus-visible {
	color: var(--color-green);
}

.contact-map {
	position: relative;
}

.contact-map__canvas {
	width: 100%;
	min-height: clamp(320px, 52vw, 460px);
	overflow: hidden;
	border: 1px solid rgba(67, 56, 124, 0.1);
	border-radius: 22px;
	background: rgba(67, 56, 124, 0.04);
	box-shadow: 0 18px 40px rgba(67, 56, 124, 0.08);
}

.contact-map__canvas.is-fallback {
	display: grid;
	place-items: center;
	padding: clamp(24px, 4vw, 36px);
}

.contact-map__fallback {
	max-width: 42ch;
	margin: 0;
	color: var(--color-violet);
	font-size: 0.96rem;
	line-height: 1.5;
	text-align: center;
	text-wrap: pretty;
}

.contact-map-marker-layer {
	position: absolute;
	transform: translate(-50%, -100%);
	pointer-events: none;
}

.contact-map-marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: min(58vw, 196px);
}

.contact-map-marker__bubble {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	width: 100%;
	padding: 13px 14px 14px;
	border: 1px solid rgba(67, 56, 124, 0.1);
	border-radius: 16px;
	background: rgba(255, 250, 240, 0.98);
	box-shadow: 0 12px 24px rgba(67, 56, 124, 0.12);
	color: var(--color-violet);
	text-align: center;
}

.contact-map-marker--cafe .contact-map-marker__bubble {
	background: color-mix(in srgb, var(--color-orange) 7%, rgba(255, 250, 240, 0.98));
}

.contact-map-marker--carrelot .contact-map-marker__bubble {
	background: color-mix(in srgb, var(--color-green) 7%, rgba(255, 250, 240, 0.98));
}

.contact-map-marker__icon {
	display: block;
	flex: 0 0 auto;
	width: 54px;
	height: 54px;
	margin: 0;
	border-radius: 0;
	object-fit: contain;
}

.contact-map-marker__copy {
	width: 100%;
	min-width: 0;
}

.contact-map-marker__tail {
	display: block;
	width: 0;
	height: 0;
	margin-top: -1px;
	border-top: 9px solid rgba(255, 250, 240, 0.98);
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	filter: drop-shadow(0 3px 2px rgba(67, 56, 124, 0.08));
}

.contact-map-marker--cafe .contact-map-marker__tail {
	border-top-color: color-mix(in srgb, var(--color-orange) 7%, rgba(255, 250, 240, 0.98));
}

.contact-map-marker--carrelot .contact-map-marker__tail {
	border-top-color: color-mix(in srgb, var(--color-green) 7%, rgba(255, 250, 240, 0.98));
}

.contact-map-marker__label {
	display: block;
	margin: 0 0 4px;
	color: var(--color-violet);
	font-size: 0.82rem;
	font-weight: 780;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.contact-map-marker--cafe .contact-map-marker__label {
	color: var(--color-orange);
}

.contact-map-marker--carrelot .contact-map-marker__label {
	color: var(--color-green);
}

.contact-map-marker__address {
	margin: 0;
	font-size: 0.84rem;
	font-weight: 620;
	line-height: 1.32;
	text-wrap: pretty;
}

.contact-map-marker__address a {
	color: inherit;
	text-decoration: none;
}

.contact-map-marker__address a:hover,
.contact-map-marker__address a:focus-visible {
	color: var(--color-green);
	text-decoration: underline;
}

.contact-map__noscript {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: clamp(18px, 3vw, 24px);
	list-style: none;
}

.contact-map__noscript-item {
	margin: 0;
}

.contact-map-marker--static {
	align-items: flex-start;
	max-width: none;
}

.contact-map-marker--static .contact-map-marker__tail {
	display: none;
}

.contact-map-marker--static .contact-map-marker__tail {
	display: none;
}

/* Café-librairie */
.cafe-intro {
	margin-top: clamp(28px, 4vw, 48px);
}

.cafe-page .hebergement-intro__layout {
	gap: var(--intro-layout-gap);
	align-items: start;
}

.cafe-page .hebergement-intro__main,
.hebergement-page .hebergement-intro__main,
.carrelot-page .hebergement-intro__main,
.location-page .hebergement-intro__main,
.cafe-page .hebergement-intro__content {
	overflow: visible;
}

.cafe-page .hebergement-intro {
	margin-bottom: clamp(10px, 1.4vw, 18px);
}

.cafe-page .hebergement-note::before {
	background: var(--color-orange);
	box-shadow: 0 0 0 7px rgba(249, 178, 52, 0.14);
}

.cafe-intro__sidebar .hebergement-feature i {
	background: transparent;
	color: var(--color-orange);
}

.cafe-intro__meet {
	position: relative;
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin: -30px 0 clamp(18px, 2.4vw, 24px);
}

.cafe-intro__practical-title {
	margin: 0 0 16px;
	color: var(--color-orange);
	font-size: 0.92rem;
	font-weight: 780;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.cafe-features__grid--sidebar {
	margin-bottom: clamp(18px, 2.4vw, 24px);
}

.cafe-hours--sidebar {
	margin-top: 2px;
}

.cafe-intro__plan {
	margin: clamp(18px, 2.2vw, 24px) 0 0;
}

.cafe-intro__plan-link.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.62rem 1.1rem;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.cafe-intro-events {
	margin-top: clamp(28px, 3.5vw, 40px);
	position: relative;
	overflow: visible;
}

.cafe-intro-events .event-carousel {
	width: 100%;
}

.cafe-intro-events__title {
	margin-bottom: clamp(14px, 1.8vw, 18px);
}

.cafe-intro-events__intro {
	margin: 0 0 clamp(18px, 2.2vw, 24px);
	color: var(--color-violet);
	font-size: 0.98rem;
	line-height: 1.58;
}

.event-carousel {
	--event-carousel-gap: clamp(14px, 1.6vw, 20px);
	--event-carousel-card-width: calc((100% - 2 * var(--event-carousel-gap)) / 3);
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
}

.event-carousel__stage {
	position: relative;
	overflow: visible;
}

.event-carousel__viewport {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.event-carousel.is-scrollable .event-carousel__viewport {
	cursor: grab;
	touch-action: none;
}

.event-carousel.is-scrollable .event-carousel__slide,
.event-carousel.is-scrollable .event-card {
	cursor: grab;
	touch-action: none;
	user-select: none;
}

.event-carousel.is-scrollable .event-card * {
	touch-action: none;
}

.event-carousel.is-scrollable .event-card__image img {
	-webkit-user-drag: none;
}

.event-carousel__viewport.is-dragging,
.event-carousel__viewport.is-coasting {
	cursor: grabbing;
	user-select: none;
}

.event-carousel__viewport.is-dragging .event-carousel__slide,
.event-carousel__viewport.is-dragging .event-card,
.event-carousel__viewport.is-coasting .event-carousel__slide,
.event-carousel__viewport.is-coasting .event-card {
	cursor: grabbing;
}

.event-carousel__viewport.is-dragging a {
	pointer-events: none;
}

.event-carousel__track {
	display: flex;
	gap: var(--event-carousel-gap);
	transition: none;
	will-change: transform;
}

.event-carousel__slide {
	flex: 0 0 var(--event-carousel-card-width);
	width: var(--event-carousel-card-width);
	min-width: 0;
}

.event-carousel__slide .event-card {
	height: 100%;
	box-shadow: 0 12px 26px -14px rgba(67, 56, 124, 0.1);
}

.event-carousel__slide .event-card:hover,
.event-carousel__slide .event-card:focus-within {
	box-shadow: 0 14px 28px -14px rgba(67, 56, 124, 0.12);
}

.event-carousel__slide .event-card__image {
	aspect-ratio: 4 / 3;
}

.event-carousel__slide .event-card__content {
	padding: 16px 18px 18px;
}

.event-carousel__slide .event-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.event-carousel__controls {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	margin-top: clamp(14px, 1.8vw, 18px);
}

.event-carousel:not(.is-scrollable) .event-carousel__controls {
	display: none;
}

.event-carousel__nav {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(98, 68, 136, 0.35);
	border-radius: 999px;
	background: rgba(255, 250, 240, 0.94);
	color: var(--color-violet);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.event-carousel__nav::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.event-carousel__nav--prev::before {
	margin-left: 2px;
	transform: rotate(-135deg);
}

.event-carousel__nav--next::before {
	margin-right: 2px;
	transform: rotate(45deg);
}

.event-carousel__nav:hover:not(:disabled),
.event-carousel__nav:focus-visible:not(:disabled) {
	background: #fff;
	border-color: var(--color-violet);
}

.event-carousel__nav:focus-visible {
	outline: 3px solid rgba(249, 178, 52, 0.55);
	outline-offset: 2px;
}

.event-carousel__nav:disabled {
	opacity: 0.28;
	cursor: default;
}

@media (min-width: 761px) {
	.event-carousel--grid-desktop .event-carousel__viewport {
		overflow: visible;
	}

	.event-carousel--grid-desktop .event-carousel__track {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
		gap: clamp(22px, 2.5vw, 32px);
		width: 100%;
		max-width: 1240px;
		margin-inline: auto;
		transform: none !important;
		transition: none;
	}

	.event-carousel--grid-desktop .event-carousel__slide {
		flex: none;
		width: auto;
	}

	.event-carousel--grid-desktop .event-carousel__controls {
		display: none;
	}
}

.cafe-sections {
	padding-top: clamp(36px, 5vw, 56px);
	padding-bottom: clamp(40px, 5vw, 64px);
}

.cafe-sections__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(40px, 6vw, 72px);
	align-items: start;
}

.cafe-section__media {
	margin: 0 0 clamp(18px, 2.4vw, 24px);
}

.cafe-section__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 14px;
}

.cafe-events {
	padding-top: clamp(40px, 5vw, 64px);
}

.cafe-events > .site-container {
	max-width: var(--shell-max);
	margin-inline: auto;
}

.cafe-events .section-heading {
	margin-bottom: clamp(24px, 3vw, 32px);
	text-align: left;
}

.cafe-events .section-heading .hebergement-section__title {
	margin-bottom: clamp(18px, 2.4vw, 24px);
	text-align: left;
}

.cafe-events .section-heading p,
.cafe-events__intro {
	max-width: none;
	margin: 0;
	color: var(--color-violet);
	line-height: 1.6;
}

.cafe-events__grid {
	grid-template-columns: repeat(auto-fit, minmax(250px, 320px));
	justify-content: center;
	max-width: 1480px;
}

.cafe-hours {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 8px;
	max-width: none;
	margin: 0;
	padding: 0;
}

.cafe-hours--sidebar {
	margin-top: 2px;
}

.cafe-hours__row {
	display: grid;
	grid-template-columns: minmax(5.5rem, 6.75rem) minmax(0, 1fr);
	gap: 8px 12px;
	align-items: baseline;
	margin: 0;
	color: var(--color-violet);
	font-size: 0.88rem;
	line-height: 1.38;
}

.cafe-hours__row dt {
	margin: 0;
	font-weight: 700;
}

.cafe-hours__row dd {
	margin: 0;
	font-weight: 560;
	text-align: left;
}

.cafe-hours__note {
	margin: 12px 0 0;
	color: rgba(67, 56, 124, 0.74);
	font-size: 0.82rem;
	font-style: italic;
	line-height: 1.45;
}

@media (max-width: 1080px) {
	.activity-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.activity-card,
	.activity-card__message,
	.activity-card h3,
	.activity-card__text {
		text-align: center;
	}

	.activity-card__text {
		text-wrap: pretty;
		hyphens: manual;
	}

	.event-grid,
	.agenda-grid {
		grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
	}

	.pro-callout__inner,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.carrelot-hero__grid,
		.cafe-features__grid,
	.carrelot-features__grid,
	.cafe-sections__inner,
	.carrelot-bottom__grid,
	.location-features__grid,
	.location-sections__inner,
	.location-bottom__grid {
		grid-template-columns: 1fr;
	}

	.contact-page__layout {
		grid-template-columns: 1fr;
		gap: clamp(28px, 4vw, 40px);
	}

	.contact-page .contact-intro__sidebar {
		padding-left: 0;
		border-left: 0;
	}

	.contact-form__grid {
		grid-template-columns: 1fr;
	}

	.contact-info__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px 20px;
	}

	.hebergement-common__layout,
	.hebergement-duo__inner,
	.carrelot-duo__inner,
	.intro-page-shell,
	.hebergement-intro__layout,
	.hebergement-bottom__layout,
	.carrelot-intro__layout,
	.projet-intro__layout {
		grid-template-columns: 1fr;
		gap: clamp(28px, 4vw, 40px);
	}

	.cafe-page .hebergement-intro__layout,
	.carrelot-page .hebergement-intro__layout,
	.location-page .hebergement-intro__layout,
	.hebergement-page .hebergement-intro__layout,
	.contact-page .hebergement-intro__layout {
		grid-template-columns: 1fr;
	}

	.hebergement-group-block .hebergement-partners {
		justify-content: center;
	}

	.hebergement-partners {
		justify-content: center;
	}

	.intro-page-shell__aside {
		margin-left: 0;
		padding-left: 0;
	}

	.location-page .intro-page-shell__aside {
		margin-top: 0;
		padding-left: 0;
		background: transparent;
	}

	.hebergement-intro__features,
	.intro-page-shell__sidebar,
	.hebergement-page .hebergement-intro__sidebar,
	.cafe-page .cafe-intro__sidebar,
	.carrelot-page .carrelot-intro__sidebar,
	.location-page .location-intro__sidebar,
	.contact-page .contact-intro__sidebar {
		position: static;
		top: auto;
		bottom: auto;
		align-self: auto;
		justify-content: flex-start;
		transform: none;
		margin-top: 0;
		max-height: none;
		overflow: visible;
		padding-top: 0;
		padding-left: 0;
		border-left: 0;
	}

	.contact-visit__discovery {
		grid-template-columns: 1fr;
	}

	.contact-visit__poster {
		max-width: 220px;
		margin-inline: auto;
	}

	:is(
		.hebergement-page .hebergement-intro__sidebar,
		.cafe-page .cafe-intro__sidebar,
		.carrelot-page .carrelot-intro__sidebar,
		.location-page .location-intro__sidebar,
		.contact-page .contact-intro__sidebar
	)::before {
		display: none;
	}

	.intro-page-shell::before,
	.hebergement-page .hebergement-intro__layout::before,
	.cafe-page .hebergement-intro__layout::before,
	.carrelot-page .hebergement-intro__layout::before,
	.location-page .hebergement-intro__layout::before,
	.contact-page .hebergement-intro__layout::before {
		display: none;
	}

	.intro-page-shell__aside-track {
		position: static;
		top: auto;
		bottom: auto;
		justify-content: flex-start;
		width: 100%;
		max-height: none;
		margin-left: 0;
		padding-left: 0;
		box-shadow: none;
		overflow: visible;
	}

	.location-page .location-sidebar-event {
		padding-left: 0;
	}

	.location-page .intro-page-shell__aside::before {
		display: none;
	}

	.projet-columns,
	.projet-activities,
	.pro-columns,
	.pro-prestations {
		grid-template-columns: 1fr;
		gap: clamp(22px, 4vw, 28px);
	}

	.partners-funding-duo {
		grid-template-columns: 1fr;
		gap: clamp(28px, 5vw, 36px);
	}

	.partners-split {
		grid-template-columns: 1fr;
		grid-template-areas:
			"logos"
			"text";
		gap: clamp(16px, 3vw, 20px);
	}

	.partners-split .partners-logos {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.partners-logos--split .partners-logos__item {
		width: clamp(112px, 28vw, 140px);
	}

	.projet-paired-flow {
		grid-template-columns: 1fr;
	}

	.hebergement-common__media,
	.carrelot-intro__media {
		position: static;
		max-width: min(100%, 520px);
		margin-inline: auto;
	}

	.carrelot-intro__content {
		grid-template-columns: 1fr;
	}

	.carrelot-intro__media {
		max-width: none;
		margin-inline: 0;
	}

	.hebergement-common__masonry,
	.carrelot-intro__media .hebergement-common__masonry,
	.o3w-masonry {
		columns: 2;
		max-width: min(100%, 560px);
		margin-top: 0;
	}

	.hebergement-features__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.room-grid--private {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.room-card--layout-wide,
	.room-card--layout-narrow {
		grid-column: span 1;
	}

	.carrelot-hero__gallery {
		max-width: 760px;
		margin-inline: auto;
	}

}

@media (max-width: 1540px) {
	.site-header {
		overflow: visible;
	}

	.site-branding img {
		width: 220px;
	}

	.site-header__tagline {
		padding-top: 1.75rem;
	}

	.site-menu-toggle {
		display: block;
		flex: 0 0 auto;
		align-self: center;
		position: relative;
		z-index: 120;
	}

	.site-menu-toggle[aria-expanded="true"] span:first-child {
		transform: translateY(10px) rotate(45deg);
	}

	.site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-10px) rotate(-45deg);
	}

	.site-navigation--primary {
		position: static;
	}

	.site-header__menu-panel {
		position: absolute;
		top: 100%;
		right: 0;
		left: auto;
		bottom: auto;
		z-index: 110;
		display: block;
		width: min(88vw, 320px);
		max-height: min(70vh, 520px);
		margin-top: 4px;
		padding: 12px 18px 18px;
		overflow-x: hidden;
		overflow-y: auto;
		border: 1px solid rgba(67, 56, 124, 0.1);
		border-radius: 14px;
		background: var(--color-background);
		box-shadow: 0 18px 48px rgba(67, 56, 124, 0.16);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
	}

	.has-open-menu .site-header {
		z-index: 100;
	}

	.has-open-menu .site-header__menu-panel {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-navigation--primary .menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
	}

	.site-navigation--primary .menu a {
		padding-block: 15px;
		font-size: 1.05rem;
		font-weight: 650;
		line-height: 1;
	}

	body.has-open-menu {
		overflow: hidden;
	}
}

@media (max-width: 760px) {
	.site-header__tagline {
		position: static;
	}

	.site-header.is-stuck {
		box-shadow: 0 10px 32px rgba(67, 56, 124, 0.12);
	}

	.site-header.is-stuck .site-header__main {
		border-bottom: 1px solid rgba(67, 56, 124, 0.1);
		box-shadow: none;
	}

	.site-header__utility {
		display: none;
	}

	.site-header__main {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding: 0;
		position: static;
	}

	.site-header__bar {
		position: static;
		z-index: auto;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas: "branding toggle";
		align-items: center;
		gap: 0;
		padding-right: var(--shell-gutter);
		padding-left: var(--shell-gutter);
		background: var(--color-background);
	}

	.site-header__lead {
		display: block;
		grid-area: branding;
		min-width: 0;
	}

	.site-branding {
		grid-area: branding;
	}

	.site-menu-toggle {
		grid-area: toggle;
	}

	.site-header__menu-panel {
		grid-area: menu;
	}

	.site-header__tagline {
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 11px clamp(14px, 4vw, 22px) 12px;
		text-align: center;
		background: var(--color-violet);
	}

	.site-header__title,
	.site-header__subtitle {
		color: var(--color-white);
	}

	.site-header__title {
		font-size: 1rem;
		line-height: 1.15;
		white-space: normal;
		text-wrap: balance;
	}

	.site-header__subtitle {
		margin-top: 0.18rem;
		color: rgba(255, 255, 255, 0.9);
		font-size: 0.82rem;
		opacity: 1;
	}

	.site-navigation--utility-drawer {
		display: block;
		margin-top: 10px;
		padding-top: 14px;
		border-top: 1px solid rgba(67, 56, 124, 0.12);
	}

	.site-navigation--utility-drawer .menu--utility-drawer {
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
	}

	.site-navigation--utility-drawer .menu--utility-drawer a {
		padding-block: 11px;
		color: var(--color-violet);
		font-size: 0.82rem;
		font-weight: 600;
		letter-spacing: 0.04em;
		line-height: 1.2;
		text-transform: uppercase;
	}

	.site-navigation--utility-drawer .menu--utility-drawer a::before {
		display: none;
	}

	.site-branding img {
		width: min(250px, 72vw);
		padding-block: 12px 10px;
	}

	.home-page .hero-gallery__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.92fr);
		gap: clamp(10px, 2.2vw, 18px);
	}

	.home-page .hero-gallery__item {
		height: var(--hero-gallery-height-mobile);
	}

	.home-page .hero-gallery__item--right {
		grid-column: auto;
	}

	.home-page .hero-gallery__label {
		right: 10px;
		bottom: 10px;
		min-height: 28px;
		padding-inline: 10px;
		font-size: 11px;
	}

	.activity-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 100%;
		gap: clamp(12px, 3vw, 18px);
		padding-inline: 0;
	}

	.activity-card {
		padding: 18px 12px 20px;
		border-radius: 22px;
	}

	.activity-card__figure {
		width: min(100%, 132px);
		margin-bottom: 8px;
	}

	.activity-card img {
		max-width: none;
	}

	.activity-card h3 {
		font-size: clamp(16px, 4.2vw, 19px);
	}

	.activity-card__text {
		font-size: 0.84rem;
		line-height: 1.38;
		text-align: center;
		text-wrap: pretty;
		hyphens: manual;
	}

	.event-carousel {
		--event-carousel-gap: clamp(10px, 2.8vw, 14px);
		--event-carousel-card-width: calc((100% - var(--event-carousel-gap)) / 2);
	}

	.event-carousel__slide .event-card__content {
		padding: 12px 10px 14px;
	}

	.event-carousel__slide .event-card__title {
		font-size: 0.9rem;
	}

	.event-carousel__slide .event-card__subtitle,
	.event-carousel__slide .event-card__price {
		font-size: 0.78rem;
	}

	.event-carousel__slide .event-card__excerpt {
		display: none;
	}

	.event-carousel__slide .event-badge {
		height: 3.35rem;
		min-height: 3.35rem;
		padding: 8px 10px;
	}

	.event-carousel__slide .event-badge__line {
		font-size: 0.76rem;
	}

	.event-carousel__slide .event-card__cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		max-width: 100%;
		padding: 0.5rem 0.55rem;
		white-space: normal;
		line-height: 1.25;
		text-align: center;
	}

	.event-carousel__slide .event-card__cta::after {
		content: none;
	}

	.event-carousel__slide .event-card__cta-label {
		display: inline;
		text-wrap: balance;
	}

	.event-carousel__slide .event-card__cta-label::after {
		content: "\2192";
		margin-left: 0.22em;
		white-space: nowrap;
	}

	.button--events-cta {
		display: inline-flex;
		flex-wrap: wrap;
		justify-content: center;
		max-width: 100%;
		padding: 0.95rem 1.35rem;
		white-space: normal;
		line-height: 1.28;
		text-align: center;
		text-wrap: balance;
	}

	.button--events-cta span {
		flex: 1 1 100%;
	}

	.footer-newsletter__signup {
		flex-direction: column;
		align-items: stretch;
	}

	.footer-newsletter__media {
		align-self: center;
	}

	.footer-newsletter__intro {
		text-align: center;
		white-space: normal;
		text-wrap: balance;
	}

	.footer-newsletter {
		padding-block: 16px;
		padding-inline: clamp(14px, 4vw, 22px);
	}

	.footer-newsletter__form {
		flex: 0 0 auto;
		width: 100%;
		max-width: none;
	}

	.site-footer__inner {
		min-height: 0;
		padding-inline: clamp(16px, 4vw, 28px);
		padding-block: 28px 24px;
	}

	.site-footer__bottom {
		justify-content: center;
		padding-top: 14px;
	}

	.menu--footer-legal {
		justify-content: center;
	}

	.footer-contact__main {
		align-items: center;
		flex-direction: column;
		gap: 2px;
	}

	.footer-contact__main .footer-contact__sep,
	.footer-contact__hebergement .footer-contact__sep {
		display: none;
	}

	.footer-contact__hebergement {
		flex-direction: column;
		align-items: center;
		gap: 2px;
	}

	.newsletter-form,
	.footer-newsletter__form form,
	.footer-newsletter__form .sib-form-inline {
		flex-direction: column;
	}

	.footer-newsletter .newsletter-form button,
	.footer-newsletter__form .sib-submit-btn,
	.footer-newsletter__form input[type="submit"] {
		width: 100% !important;
	}

	.hebergement-page,
	.cafe-page,
	.carrelot-page,
	.location-page,
	.equipe-page,
	.partners-page {
		padding-top: 0;
	}

	.projet-intro__layout {
		grid-template-columns: 1fr;
	}

	.equipe-page .hebergement-intro__title-row {
		display: block;
		width: 100%;
	}

	.equipe-intro__layout {
		grid-template-columns: 1fr;
	}

	.equipe-page .hebergement-intro__title-row h1 {
		width: 100%;
		max-width: none;
	}

	.equipe-roster__row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.event-single__layout {
		grid-template-columns: 1fr;
		gap: clamp(24px, 5vw, 32px);
	}

	.event-single__aside-track {
		position: static;
	}

	.event-block__section {
		grid-template-columns: 1fr;
	}

	.event-block__section--media-left .event-block__figure {
		order: 0;
	}

	.o3w-masonry,
	.hebergement-common__masonry,
	.carrelot-intro__media .hebergement-common__masonry {
		columns: 1;
	}

	.event-credits__row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.event-credits__row--edit {
		grid-template-columns: minmax(0, 1fr) 22px;
		grid-template-rows: auto auto;
		align-items: center;
		gap: 4px 10px;
	}

	.event-credits__row--edit dt {
		grid-column: 1;
		grid-row: 1;
	}

	.event-credits__row--edit dd {
		grid-column: 1;
		grid-row: 2;
	}

	.event-credits__row--edit .event-credits__row-delete {
		grid-column: 2;
		grid-row: 1 / -1;
		align-self: center;
		justify-self: end;
		margin-top: 0;
	}

	.contact-form__footer {
		flex-direction: column;
		align-items: stretch;
	}

	.contact-info__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.contact-map-marker {
		max-width: min(70vw, 184px);
	}

	.hebergement-intro__title-row {
		gap: 12px;
		align-items: center;
	}

	.projet-page .hebergement-intro__title-row {
		display: block;
		width: 100%;
	}

	.projet-page .hebergement-intro__title-row h1 {
		width: 100%;
		max-width: none;
	}

	.partners-page .hebergement-intro__title-row {
		display: block;
		width: 100%;
	}

	.partners-page .hebergement-intro__title-row h1 {
		width: 100%;
		max-width: none;
	}

	.hebergement-intro__bird {
		width: clamp(72px, 18vw, 96px);
	}

	.hebergement-intro__branch {
		display: none;
	}

	.hebergement-intro__subtitle {
		padding-bottom: 0;
	}

	.hebergement-intro__title-wrap {
		padding-bottom: 0;
	}

	/* Pages pilier — mobile : icône, titre, sous-titre, branche, tout centré */
	:is(
		.hebergement-page,
		.cafe-page,
		.carrelot-page,
		.location-page
	) .hebergement-intro__title-row--branch {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: clamp(12px, 3.5vw, 20px);
		text-align: center;
	}

	:is(
		.hebergement-page,
		.cafe-page,
		.carrelot-page,
		.location-page
	) .hebergement-intro__title-row--branch .hebergement-intro__bird-wrap {
		grid-column: auto;
		grid-row: auto;
		align-self: center;
		width: clamp(91px, 22.8vw, 121px);
		margin-top: 0;
	}

	:is(
		.hebergement-page,
		.cafe-page,
		.carrelot-page,
		.location-page
	) .hebergement-intro__title-row--branch .hebergement-intro__bird-wrap img {
		width: 100%;
	}

	:is(
		.hebergement-page,
		.cafe-page,
		.carrelot-page,
		.location-page
	) .hebergement-intro__title-row--branch .hebergement-intro__heading {
		grid-column: auto;
		grid-row: auto;
		align-items: center;
		align-self: stretch;
		width: 100%;
	}

	:is(
		.hebergement-page,
		.cafe-page,
		.carrelot-page,
		.location-page
	) .hebergement-intro__title-row--branch .hebergement-intro__title-wrap {
		width: 100%;
		max-width: 100%;
	}

	:is(
		.hebergement-page,
		.cafe-page,
		.carrelot-page,
		.location-page
	) .hebergement-intro__title-row--branch .hebergement-intro__title-wrap > h1 {
		width: 100%;
		text-align: center;
	}

	:is(
		.hebergement-page,
		.cafe-page,
		.carrelot-page,
		.location-page
	) .hebergement-intro__title-row--branch .hebergement-intro__subtitle {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		text-align: center;
		gap: clamp(12px, 3.5vw, 18px);
	}

	:is(
		.hebergement-page,
		.cafe-page,
		.carrelot-page,
		.location-page
	) .hebergement-intro__branch {
		display: block;
		width: auto;
		height: auto;
		margin: 0 auto;
	}

	:is(
		.hebergement-page,
		.cafe-page,
		.carrelot-page,
		.location-page
	) .hebergement-intro__branch img {
		position: static;
		left: auto;
		top: auto;
		width: min(199px, 56vw);
		max-width: 100%;
		height: auto;
		display: block;
		margin: 0 auto;
	}

	.hebergement-intro__title-row--branch {
		grid-template-rows: auto;
	}

	.hebergement-intro__title-row--branch .hebergement-intro__bird-wrap {
		margin-top: -10px;
	}

	.hebergement-intro__main--branch > .hebergement-intro__content {
		margin-top: clamp(10px, 2.5vw, 16px);
	}

	.hebergement-page .hebergement-intro__layout {
		gap: clamp(14px, 3.5vw, 22px);
	}

	.hebergement-page .hebergement-page-intro {
		margin-bottom: clamp(4px, 1vw, 10px);
	}

	.hebergement-page .hebergement-intro__sidebar.hebergement-intro__features {
		margin-top: 0;
		margin-bottom: clamp(28px, 6vw, 40px);
		padding-top: clamp(8px, 2vw, 14px);
	}

	.hebergement-page .hebergement-room-question-wrap--above-private {
		max-width: 100%;
		margin-top: clamp(10px, 2.5vw, 18px);
		margin-bottom: clamp(28px, 5vw, 40px);
	}

	.hebergement-page .hebergement-section--rooms {
		margin-top: 0;
		padding-top: clamp(24px, 5vw, 36px);
	}

	.hebergement-page .hebergement-room-question-wrap {
		padding-block: clamp(16px, 3.5vw, 28px);
		margin-top: 0;
	}

	.carrelot-page .hebergement-intro__layout {
		grid-template-columns: 1fr;
	}

	.carrelot-page .hebergement-intro__main {
		order: 1;
	}

	.carrelot-page .carrelot-intro__sidebar {
		order: 2;
		margin-top: clamp(18px, 4vw, 28px);
		padding-top: 0;
	}

	.hebergement-booking-bar {
		z-index: 125;
		padding-inline: var(--shell-gutter);
	}

	.hebergement-booking-bar__cta {
		width: 100%;
		max-width: min(100%, 480px);
	}

	.hebergement-intro__content .hebergement-richtext,
	.hebergement-intro__content .hebergement-richtext p,
	.hebergement-intro__lead,
	.hebergement-aside-note,
	.hebergement-common__intro,
	.hebergement-common__intro p,
	.hebergement-common__outro,
	.hebergement-bottom__text,
	.hebergement-duo__col .hebergement-richtext,
	.hebergement-duo__col .hebergement-richtext p,
	.carrelot-duo__col .hebergement-richtext,
	.carrelot-duo__col .hebergement-richtext p,
	.carrelot-duo__col .hebergement-aside-note,
	.cafe-page .cafe-section__richtext,
	.cafe-page .cafe-section__richtext p,
	.projet-richtext,
	.projet-richtext p,
	.equipe-section__intro,
	.equipe-section__text,
	.location-sections .hebergement-richtext,
	.location-sections .hebergement-richtext p,
	.location-sidebar-event .hebergement-richtext,
	.location-sidebar-event .hebergement-richtext p,
	.location-bottom .hebergement-richtext,
	.location-bottom .hebergement-richtext p,
	.contact-visit__intro,
	.contact-visit__discovery-list,
	.legal-section__body,
	.legal-section__body p,
	.event-single__lead,
	.event-block__content,
	.event-block__intro,
	.event-block__quote p,
	.legal-intro__lead,
	.projet-intro__lead,
	.event-block__quote p,
	.legal-intro__lead,
	.projet-intro__lead {
		text-align: justify;
		hyphens: auto;
		text-wrap: wrap;
	}

	.cafe-page .cafe-intro__sidebar,
	.carrelot-page .carrelot-intro__sidebar,
	.location-page .location-intro__sidebar,
	.contact-page .contact-intro__sidebar {
		padding-left: 0;
		border-left: 0;
	}

	.carrelot-intro-events__title {
		font-size: clamp(1.75rem, 8vw, 2.35rem);
	}

	.hebergement-gallery-strip__viewport {
		padding-inline: var(--shell-gutter);
	}

	.hebergement-page .addressed-phrase-stage,
	.addressed-phrase-stage {
		padding-inline: 0;
	}

	.pro-callout__inner {
		width: 100%;
		padding-inline: clamp(20px, 5vw, 32px);
	}

	.hebergement-gallery-strip__item {
		height: var(--hero-gallery-height-mobile);
	}

	.hebergement-features__grid,
	.room-grid--private,
	.room-grid--shared,
	.hebergement-common__grid {
		grid-template-columns: 1fr;
	}

	.hebergement-common__masonry,
	.hebergement-common__pair,
	.carrelot-intro__media .hebergement-common__masonry,
	.o3w-masonry {
		columns: 1;
		max-width: min(100%, 420px);
		margin-inline: auto;
	}

	.hebergement-common__grid--footer {
		margin-inline: 0;
		justify-items: stretch;
		text-align: left;
	}

	.hebergement-partners--footer,
	.hebergement-partners--sidebar {
		justify-content: center;
	}

	.hebergement-partners--sidebar {
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
	}

	.room-card--layout-wide,
	.room-card--layout-narrow {
		grid-column: auto;
	}

	.carrelot-hero__gallery,
		.carrelot-gallery-stack,
		.cafe-hours,
	.hebergement-feature {
		min-height: 0;
	}

	.room-card__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.room-card__content {
		padding: 22px;
	}

	.carrelot-hero h1 {
		font-size: clamp(38px, 11vw, 52px);
	}

	.carrelot-hero__image,
	.carrelot-hero__image--1,
	.carrelot-gallery-stack img,
	.carrelot-gallery-stack img:nth-child(3) {
		grid-column: auto;
		height: auto;
	}

	.cafe-features__grid,
	.location-features__grid {
		grid-template-columns: 1fr;
	}

	.carrelot-events__grid {
		grid-template-columns: 1fr;
		max-width: 420px;
	}
}

.page-404 {
	padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
}

.page-404__inner {
	max-width: 40rem;
	margin-inline: auto;
	text-align: center;
}

.page-404 h1 {
	margin-bottom: 12px;
	font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.page-404__lead {
	margin: 0 auto 24px;
	max-width: 32rem;
	color: var(--color-muted);
	font-size: 1.05rem;
	line-height: 1.55;
}

.page-404__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 18px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.page-404__links a {
	color: var(--color-violet);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.page-404 .search-form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 28rem;
	margin-inline: auto;
}

.page-404 .search-form label {
	flex: 1 1 100%;
}

.page-404 .search-form input[type="search"] {
	flex: 1 1 auto;
	min-width: min(100%, 220px);
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid rgba(67, 56, 124, 0.2);
	border-radius: 10px;
	font: inherit;
}

.page-404 .search-form input[type="submit"] {
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--color-violet);
	border-radius: 999px;
	background: transparent;
	color: var(--color-violet);
	font: inherit;
	font-weight: 650;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}

/* Page réservation — widget Manava */
.hebergement-page {
	scroll-padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

.reservation-scroll-hint-wrap {
	padding-bottom: clamp(20px, 3vw, 32px);
}

.reservation-booking-wrap {
	padding-bottom: clamp(48px, 8vw, 120px);
}

.reservation-widget-frame {
	overflow: visible;
	border: 2px solid rgba(126, 178, 122, 0.45);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 32px rgba(67, 56, 124, 0.1);
}

.reservation-widget-frame .reservation-scroll-hint {
	max-width: none;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: linear-gradient(180deg, rgba(126, 178, 122, 0.12), rgba(126, 178, 122, 0.05));
}

.reservation-widget-frame__head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 1rem;
	border-top: 1px solid rgba(67, 56, 124, 0.1);
	border-bottom: 1px solid rgba(67, 56, 124, 0.1);
	background: rgba(67, 56, 124, 0.04);
}

.reservation-widget-frame__head::before {
	content: "";
	display: block;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 999px;
	background: rgba(126, 178, 122, 0.75);
	box-shadow: 1.1rem 0 0 rgba(67, 56, 124, 0.18), 2.2rem 0 0 rgba(67, 56, 124, 0.12);
}

.reservation-widget-frame__label {
	margin-left: 2.85rem;
	font-size: 0.78rem;
	font-weight: 650;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--color-violet);
}

.reservation-widget-frame__body {
	overflow: visible;
	background: #fff;
	border-radius: 0 0 14px 14px;
}

.reservation-widget-frame__body .manava-resa,
.reservation-widget-frame__body .manava-resa__frame {
	display: block;
	width: 100%;
}

.reservation-widget-frame__body .manava-resa__frame {
	border: 0;
	/* Hauteur explicite obligatoire : sans elle, certains navigateurs ~150px → chambres invisibles. */
	height: 1800px;
	min-height: 1400px;
}

.reservation-scroll-hint {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: clamp(18px, 3vw, 28px);
	align-items: center;
	max-width: 46rem;
	margin: 0 auto;
	padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 26px);
	border: 1px solid rgba(126, 178, 122, 0.35);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(126, 178, 122, 0.1), rgba(126, 178, 122, 0.04));
}

.reservation-scroll-hint__visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	flex-shrink: 0;
}

.reservation-scroll-hint__window {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 0.42rem;
	gap: 0.28rem;
	width: 6.75rem;
	padding: 0.35rem;
	border: 2px solid rgba(67, 56, 124, 0.2);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(67, 56, 124, 0.1);
}

.reservation-scroll-hint__window-chrome {
	grid-column: 1 / -1;
	height: 0.42rem;
	border-radius: 4px;
	background: linear-gradient(90deg, rgba(126, 178, 122, 0.45), rgba(67, 56, 124, 0.18));
}

.reservation-scroll-hint__viewport {
	position: relative;
	display: flex;
	flex-direction: column;
	grid-column: 1;
	height: 5.4rem;
	overflow: hidden;
	border-radius: 6px;
	background: rgba(67, 56, 124, 0.04);
}

.reservation-scroll-hint__mock-fixed {
	display: flex;
	align-items: center;
	gap: 0.28rem;
	flex-shrink: 0;
	padding: 0.28rem 0.32rem;
	border-bottom: 1px solid rgba(67, 56, 124, 0.08);
	background: rgba(255, 255, 255, 0.92);
}

.reservation-scroll-hint__mock-fixed-label {
	font-size: 0.58rem;
	font-weight: 700;
	color: var(--color-violet);
	opacity: 0.75;
}

.reservation-scroll-hint__mock-scroll {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}

.reservation-scroll-hint__rooms {
	display: flex;
	flex-direction: column;
	gap: 0.32rem;
	padding: 0.28rem 0.28rem 0.5rem;
	animation: reservation-rooms-scroll 4.5s ease-in-out infinite;
}

@keyframes reservation-rooms-scroll {
	0%,
	22% {
		transform: translateY(0);
	}

	45%,
	67% {
		transform: translateY(-1.48rem);
	}

	88%,
	100% {
		transform: translateY(-2.96rem);
	}
}

.reservation-scroll-hint__step {
	display: flex;
	align-items: center;
	gap: 0.32rem;
	padding: 0.28rem 0.32rem;
	border-radius: 6px;
	background: #fff;
	border: 1px solid rgba(67, 56, 124, 0.1);
	box-shadow: 0 1px 4px rgba(67, 56, 124, 0.06);
}

.reservation-scroll-hint__step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.15rem;
	height: 1.15rem;
	border-radius: 4px;
	background: rgba(126, 178, 122, 0.16);
	color: var(--color-violet);
	font-size: 0.62rem;
	flex-shrink: 0;
}

.reservation-scroll-hint__step-label {
	font-size: 0.62rem;
	font-weight: 650;
	line-height: 1.2;
	color: var(--color-violet);
}

.reservation-scroll-hint__viewport-fade {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1.35rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96));
	pointer-events: none;
}

.reservation-scroll-hint__scroll-arrow {
	position: absolute;
	right: 0;
	bottom: 0.12rem;
	left: 0;
	display: flex;
	justify-content: center;
	font-size: 0.72rem;
	color: var(--color-green, #7eb27a);
	animation: reservation-scroll-bounce 1.6s ease-in-out infinite;
}

.reservation-scroll-hint__scrollbar {
	grid-column: 2;
	grid-row: 2;
	position: relative;
	border-radius: 999px;
	background: rgba(67, 56, 124, 0.08);
}

.reservation-scroll-hint__scrollbar-thumb {
	position: absolute;
	top: 0.2rem;
	left: 0;
	right: 0;
	height: 1.35rem;
	border-radius: 999px;
	background: rgba(126, 178, 122, 0.75);
	animation: reservation-scrollbar-thumb 4.5s ease-in-out infinite;
}

@keyframes reservation-scrollbar-thumb {
	0%,
	18% {
		transform: translateY(0);
	}

	38%,
	58% {
		transform: translateY(1.55rem);
	}

	78%,
	100% {
		transform: translateY(3.1rem);
	}
}

@keyframes reservation-scroll-bounce {
	0%,
	100% {
		transform: translateY(0);
		opacity: 0.55;
	}

	50% {
		transform: translateY(2px);
		opacity: 1;
	}
}

.reservation-scroll-hint__visual-caption {
	margin: 0;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-green, #7eb27a);
}

.reservation-scroll-hint__title {
	margin: 0 0 0.4rem;
	font-weight: 650;
	font-size: clamp(0.98rem, 1vw + 0.82rem, 1.08rem);
	line-height: 1.35;
	color: var(--color-violet);
}

.reservation-scroll-hint__text {
	margin: 0;
	font-size: clamp(0.92rem, 0.9vw + 0.78rem, 1rem);
	line-height: 1.5;
	color: var(--color-text-muted, rgba(67, 56, 124, 0.82));
}

@media (max-width: 520px) {
	.reservation-scroll-hint {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.reservation-scroll-hint__content {
		max-width: 22rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.reservation-scroll-hint__rooms,
	.reservation-scroll-hint__scrollbar-thumb,
	.reservation-scroll-hint__scroll-arrow {
		animation: none;
	}
}

.reservation-widget {
	padding-bottom: clamp(48px, 8vw, 120px);
}

.reservation-widget .manava-resa,
.reservation-widget .manava-resa__frame {
	display: block;
	width: 100%;
}

.reservation-widget .manava-resa__frame {
	height: 1000px;
	border: 0;
}

/* Retour après paiement Manava / Stripe */
.reservation-confirm-page .site-main {
	padding-bottom: clamp(64px, 10vw, 120px);
}

.reservation-confirm__card {
	max-width: 38rem;
	margin: 0 auto;
	padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 40px);
	text-align: center;
}

.reservation-confirm__icon {
	margin: 0 0 0.75rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: var(--color-green, #7eb27a);
	line-height: 1;
}

.reservation-confirm__card h1 {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 2.5vw + 1rem, 2.35rem);
}

.reservation-confirm__lead {
	margin: 0 0 1rem;
	font-size: clamp(1.05rem, 1vw + 0.9rem, 1.2rem);
	line-height: 1.55;
}

.reservation-confirm__help {
	margin: 0 0 1.5rem;
	font-size: 1rem;
	line-height: 1.55;
	color: var(--color-text-muted, rgba(67, 56, 124, 0.82));
}

.reservation-confirm__sep {
	margin: 0 0.35rem;
}

.reservation-confirm__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin: 0;
}

.reservation-confirm__actions .button--ghost {
	background: transparent;
	border: 1px solid rgba(67, 56, 124, 0.25);
	color: var(--color-violet);
}
