/* Bauge Tiers-Lieux — main.css
 * Compléments visuels : ce que theme.json ne peut pas exprimer.
 * Animations CSS modernes (animation-timeline) avec fallback gracieux.
 */

/* ========================================================================
   1. ANIMATIONS DE SCROLL (CSS-only, fallback gracieux Firefox/Safari)
   ======================================================================== */

@media (prefers-reduced-motion: no-preference) {
	@supports (animation-timeline: view()) {
		.bauge-fade-up {
			animation: bauge-fade-up linear both;
			animation-timeline: view();
			animation-range: entry 0% cover 30%;
		}
	}
	@supports not (animation-timeline: view()) {
		/* Pour Firefox/Safari : fade in au DOMContentLoaded simple */
		.bauge-fade-up {
			animation: bauge-fade-up-static 0.8s ease both;
		}
	}
	@keyframes bauge-fade-up {
		from { opacity: 0; transform: translateY(40px); }
		to   { opacity: 1; transform: translateY(0); }
	}
	@keyframes bauge-fade-up-static {
		from { opacity: 0; transform: translateY(20px); }
		to   { opacity: 1; transform: translateY(0); }
	}
}

/* ========================================================================
   2. HERO — split asymétrique, photo + glass cards
   ======================================================================== */

.bauge-hero {
	margin: 0 !important;
	padding: 0 !important;
}
.bauge-hero-shell {
	position: relative;
	min-height: clamp(560px, 90vh, 820px);
	overflow: hidden;
	display: flex;
	align-items: center;
	color: var(--wp--preset--color--white);
	isolation: isolate;
}

/* Background image plein écran avec Ken Burns */
.bauge-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.bauge-hero-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
}
@media (prefers-reduced-motion: no-preference) {
	.bauge-hero-bg-img {
		animation: bauge-hero-kenburns 22s ease-out infinite alternate;
	}
	@keyframes bauge-hero-kenburns {
		0%   { transform: scale(1.0)  translate(0, 0); }
		100% { transform: scale(1.08) translate(-1.2%, -0.8%); }
	}
}

/* Overlay dégradé : foncé en bas-gauche, transparent en haut-droite */
.bauge-hero-bg-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg,
			hsla(189, 30%, 8%, 0.85) 0%,
			hsla(189, 25%, 12%, 0.7) 45%,
			hsla(189, 25%, 12%, 0.45) 75%,
			hsla(189, 25%, 12%, 0.55) 100%
		);
}

/* Contenu — grid 60/40 desktop, stack mobile */
.bauge-hero-content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 4vw, 4rem);
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}
@media (max-width: 920px) {
	.bauge-hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

/* === Texte gauche === */
.bauge-hero-text {
	max-width: 720px;
}

.bauge-hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	font-family: var(--wp--preset--font-family--roboto);
	color: var(--wp--preset--color--accent-lighter);
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 0.78rem;
	font-weight: 700;
	margin: 0 0 1.4rem;
	opacity: 0;
	transform: translateY(20px);
	animation: bauge-hero-fade-up 0.8s 0.1s ease-out both;
}
.bauge-hero-eyebrow-bar {
	display: inline-block;
	width: 56px;
	height: 2px;
	background: var(--wp--preset--color--accent);
	flex-shrink: 0;
}

.bauge-hero-title {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: clamp(3rem, 7vw + 0.5rem, 6.5rem);
	line-height: 0.98;
	font-weight: 700;
	letter-spacing: -0.025em;
	margin: 0;
	color: var(--wp--preset--color--white);
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.bauge-hero-title-line {
	display: block;
	opacity: 0;
	transform: translateY(40px);
	animation: bauge-hero-fade-up 0.9s ease-out both;
}
.bauge-hero-title-line:nth-child(1) { animation-delay: 0.20s; }
.bauge-hero-title-line:nth-child(2) {
	animation-delay: 0.35s;
	padding-left: clamp(1rem, 4vw, 3rem);
}
.bauge-hero-title-line:nth-child(3) { animation-delay: 0.50s; }
.bauge-hero-title-accent {
	font-style: italic;
	color: var(--wp--preset--color--accent);
	font-weight: 600;
	position: relative;
	display: inline-block !important;
}
.bauge-hero-title-accent::after {
	content: '';
	position: absolute;
	left: clamp(1rem, 4vw, 3rem);
	right: 0;
	bottom: 0.05em;
	height: 0.12em;
	background: var(--wp--preset--color--accent);
	opacity: 0.35;
	transform: scaleX(0);
	transform-origin: left;
	animation: bauge-hero-line-grow 1.4s 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes bauge-hero-line-grow {
	to { transform: scaleX(1); }
}

.bauge-hero-subtitle {
	font-size: clamp(1rem, 0.9vw + 0.85rem, 1.25rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
	max-width: 560px;
	margin: clamp(1.4rem, 2vw, 2rem) 0 clamp(2rem, 3vw, 2.5rem);
	opacity: 0;
	transform: translateY(20px);
	animation: bauge-hero-fade-up 0.8s 0.7s ease-out both;
}

/* CTAs */
.bauge-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	opacity: 0;
	transform: translateY(20px);
	animation: bauge-hero-fade-up 0.8s 0.85s ease-out both;
}
.bauge-hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 1rem 1.6rem;
	border-radius: 999px;
	font-family: var(--wp--preset--font-family--roboto);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
	white-space: nowrap;
}
.bauge-hero-btn-primary {
	background: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--white);
	box-shadow: 0 8px 32px rgba(184, 149, 82, 0.45);
}
.bauge-hero-btn-primary svg {
	transition: transform 0.3s ease;
}
.bauge-hero-btn-primary:hover,
.bauge-hero-btn-primary:focus-visible {
	transform: translateY(-2px);
	background: var(--wp--preset--color--accent-darker);
	box-shadow: 0 12px 40px rgba(184, 149, 82, 0.6);
	color: var(--wp--preset--color--white);
}
.bauge-hero-btn-primary:hover svg,
.bauge-hero-btn-primary:focus-visible svg {
	transform: translateX(4px);
}
.bauge-hero-btn-ghost {
	background: transparent;
	color: var(--wp--preset--color--white);
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.bauge-hero-btn-ghost:hover,
.bauge-hero-btn-ghost:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--white);
	transform: translateY(-2px);
}

/* === Side cards (glassmorphism) === */
.bauge-hero-side {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	justify-content: center;
}
@media (max-width: 920px) {
	.bauge-hero-side {
		flex-direction: row;
		gap: 1rem;
	}
}
@media (max-width: 540px) {
	.bauge-hero-side { display: none; }
}

.bauge-hero-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	padding: 1.8rem 1.6rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	color: var(--wp--preset--color--white);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	opacity: 0;
	transform: translateY(30px) scale(0.96);
	animation: bauge-hero-card-in 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
	flex: 1;
	min-width: 0;
}
.bauge-hero-card:nth-of-type(1) { animation-delay: 0.65s; }
.bauge-hero-card:nth-of-type(2) { animation-delay: 0.8s; }
@keyframes bauge-hero-card-in {
	to { opacity: 1; transform: translateY(0) scale(1); }
}
.bauge-hero-card-num {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: clamp(2.6rem, 4vw, 3.6rem);
	font-weight: 700;
	line-height: 1;
	color: var(--wp--preset--color--accent-lighter);
	letter-spacing: -0.03em;
}
.bauge-hero-card-eyebrow {
	font-family: var(--wp--preset--font-family--roboto);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--wp--preset--color--accent-lighter);
	opacity: 0.85;
}
.bauge-hero-card-divider {
	display: block;
	width: 32px;
	height: 2px;
	background: var(--wp--preset--color--accent);
	margin: 0.4rem 0;
	opacity: 0.7;
}
.bauge-hero-card-label {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 0.92rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.92);
}
.bauge-hero-card-secondary {
	background: rgba(184, 149, 82, 0.18);
	border-color: rgba(184, 149, 82, 0.3);
}

/* Card "Réservation simple & rapide" */
.bauge-hero-card-tagline-wrap {
	gap: 0.6rem;
}
.bauge-hero-card-icon {
	color: var(--wp--preset--color--accent);
	margin-bottom: 0.4rem;
}
.bauge-hero-card-tagline {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: clamp(1.85rem, 2.2vw + 0.6rem, 2.6rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--white);
	margin-top: -0.1rem;
}
.bauge-hero-card-tagline em {
	font-style: italic;
	font-weight: 600;
	color: var(--wp--preset--color--accent-lighter);
}

/* Indicateur de scroll repensé */
.bauge-hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 1.8rem;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.6);
	opacity: 0;
	animation: bauge-hero-fade-up 0.8s 1.2s ease-out both;
}
@media (max-width: 920px) { .bauge-hero-scroll { display: none; } }
.bauge-hero-scroll-label {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-weight: 600;
}
.bauge-hero-scroll-line {
	display: block;
	width: 1px;
	height: 32px;
	overflow: hidden;
	position: relative;
}
.bauge-hero-scroll-line::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: var(--wp--preset--color--accent);
	animation: bauge-scroll-pulse 2.2s ease-in-out infinite;
	transform-origin: top;
}
@keyframes bauge-scroll-pulse {
	0%   { transform: scaleY(0); transform-origin: top;    }
	50%  { transform: scaleY(1); transform-origin: top;    }
	51%  { transform: scaleY(1); transform-origin: bottom; }
	100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes bauge-hero-fade-up {
	to { opacity: 1; transform: translateY(0); }
}

/* ========================================================================
   2bis. INTRO ÉDITORIALE — concept tiers-lieux
   ======================================================================== */

.bauge-intro-concept {
	background: var(--wp--preset--color--white);
	position: relative;
}
.bauge-intro-concept::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 64px;
	height: 4px;
	background: var(--wp--preset--color--accent);
	border-radius: 0 0 4px 4px;
	opacity: 0.8;
}
.bauge-intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: start;
	max-width: 1100px;
	margin: 0 auto;
}
@media (max-width: 860px) {
	.bauge-intro-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}
.bauge-intro-head .bauge-section-eyebrow {
	margin-bottom: 1.5rem;
	justify-content: flex-start;
}
.bauge-intro-title {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: clamp(2rem, 3.2vw + 0.5rem, 3.4rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: var(--wp--preset--color--primary-darker);
	margin: 0;
}
.bauge-intro-title em {
	font-style: italic;
	font-weight: 600;
	color: var(--wp--preset--color--accent-darker);
	background: linear-gradient(transparent 75%, rgba(184, 149, 82, 0.18) 75%);
	padding: 0 0.05em;
}
.bauge-intro-body {
	padding-top: clamp(0.5rem, 2vw, 1.5rem);
}
.bauge-intro-lead {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: clamp(1.15rem, 1vw + 0.85rem, 1.5rem);
	line-height: 1.5;
	color: var(--wp--preset--color--primary-darker);
	margin: 0 0 1.6rem;
	font-weight: 400;
}
.bauge-intro-lead strong {
	color: var(--wp--preset--color--primary-darker);
	font-weight: 700;
}
.bauge-intro-text {
	font-size: clamp(1rem, 0.4vw + 0.9rem, 1.15rem);
	line-height: 1.65;
	color: var(--wp--preset--color--primary);
	margin: 0;
}
.bauge-intro-text em {
	font-style: italic;
	color: var(--wp--preset--color--accent-darker);
	font-weight: 500;
}

/* ========================================================================
   3. SECTIONS — eyebrow standardisé
   ======================================================================== */

.bauge-section-eyebrow {
	font-family: var(--wp--preset--font-family--roboto) !important;
	color: var(--wp--preset--color--accent-darker) !important;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-weight: 700;
}
.bauge-section-eyebrow::before,
.bauge-section-eyebrow::after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 1px;
	background: var(--wp--preset--color--accent);
	vertical-align: middle;
	margin: 0 0.6rem;
	opacity: 0.7;
}

/* ========================================================================
   4. CARDS DES ESPACES
   ======================================================================== */

.bauge-cards-espaces-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--wp--preset--spacing--40);
}
.bauge-card-espace .bauge-card-espace-link {
	display: block;
	background: var(--wp--preset--color--white);
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.bauge-card-espace .bauge-card-espace-link:hover,
.bauge-card-espace .bauge-card-espace-link:focus-visible {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
	outline: none;
}
.bauge-card-espace-image {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--wp--preset--color--tertiary);
}
.bauge-card-espace-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.bauge-card-espace-link:hover .bauge-card-espace-image img,
.bauge-card-espace-link:focus-visible .bauge-card-espace-image img {
	transform: scale(1.06);
}
.bauge-card-espace-body {
	padding: var(--wp--preset--spacing--40);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.bauge-card-espace-tag {
	font-family: var(--wp--preset--font-family--roboto);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--wp--preset--color--accent-darker);
}
.bauge-card-espace-title {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: var(--wp--preset--font-size--lg);
	color: var(--wp--preset--color--primary-darker);
	margin: 0.1rem 0 0.4rem;
	line-height: 1.2;
	font-weight: 700;
}
.bauge-card-espace-excerpt {
	color: var(--wp--preset--color--primary);
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.55;
	margin: 0;
}
.bauge-card-espace-cta {
	display: inline-block;
	margin-top: 0.6rem;
	color: var(--wp--preset--color--accent-darker);
	font-family: var(--wp--preset--font-family--roboto);
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: transform 0.25s ease;
}
.bauge-card-espace-link:hover .bauge-card-espace-cta {
	transform: translateX(4px);
}

/* ========================================================================
   5. TÉMOIGNAGE
   ======================================================================== */

.bauge-temoignage {
	margin: 0;
	text-align: center;
	padding: var(--wp--preset--spacing--50);
	background: linear-gradient(180deg, var(--wp--preset--color--tertiary) 0%, transparent 100%);
	border-radius: 16px;
	position: relative;
}
.bauge-temoignage-mark {
	width: 56px;
	height: 40px;
	color: var(--wp--preset--color--accent);
	margin-bottom: 1.2rem;
	opacity: 0.7;
}
.bauge-temoignage-quote {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: clamp(1.25rem, 1.5vw + 0.8rem, 1.75rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.45;
	color: var(--wp--preset--color--primary-darker);
	margin: 0 0 1.6rem;
	border: none;
	padding: 0;
}
.bauge-temoignage-caption {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--secondary);
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.bauge-temoignage-caption strong {
	color: var(--wp--preset--color--primary-darker);
	font-size: var(--wp--preset--font-size--smd);
	font-style: normal;
}

/* ========================================================================
   6. CTA BAND (réservation)
   ======================================================================== */

.bauge-cta-band {
	overflow: hidden;
}
.bauge-cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
	            radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1)  0%, transparent 50%);
	pointer-events: none;
}
.bauge-cta-band .wp-element-button {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.bauge-cta-band .wp-element-button:hover,
.bauge-cta-band .wp-element-button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

/* ========================================================================
   7. INTERACTIVITÉ GLOBALE — boutons + liens
   ======================================================================== */

.wp-block-button .wp-element-button {
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.wp-block-button .wp-element-button:hover,
.wp-block-button .wp-element-button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ========================================================================
   8. HEADER + NAVIGATION CUSTOM
   ======================================================================== */

.bauge-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}
.bauge-header-brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
	color: var(--wp--preset--color--primary-darker);
}
.bauge-header-logo {
	height: clamp(40px, 4.5vw, 60px);
	width: auto;
	max-width: 100%;
	display: block;
	flex-shrink: 0;
}
.bauge-header-title {
	font-family: var(--wp--preset--font-family--notoserif);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--smd);
	line-height: 1.2;
}

.bauge-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 1.75rem;
	font-family: var(--wp--preset--font-family--roboto);
	font-size: var(--wp--preset--font-size--sm);
}
.bauge-nav-list a {
	color: var(--wp--preset--color--primary-darker);
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 0.4rem 0;
	position: relative;
	transition: color 0.2s ease;
}
.bauge-nav-list a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: var(--wp--preset--color--accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}
.bauge-nav-list a:hover,
.bauge-nav-list a:focus-visible {
	color: var(--wp--preset--color--accent-darker);
}
.bauge-nav-list a:hover::after,
.bauge-nav-list a:focus-visible::after,
.bauge-nav-list a[aria-current="page"]::after {
	transform: scaleX(1);
}
.bauge-nav-list .bauge-nav-cta {
	background: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--white) !important;
	padding: 0.55rem 1.1rem;
	border-radius: 8px;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.bauge-nav-list .bauge-nav-cta::after { display: none; }
.bauge-nav-list .bauge-nav-cta:hover,
.bauge-nav-list .bauge-nav-cta:focus-visible {
	background: var(--wp--preset--color--accent-darker);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(144, 116, 60, 0.25);
}

/* Burger (mobile) */
.bauge-nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.bauge-nav-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--wp--preset--color--primary-darker);
	transition: transform 0.3s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
	.bauge-header-title { display: none; }
	.bauge-nav-toggle { display: flex; }
	.bauge-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--wp--preset--color--white);
		border-bottom: 1px solid var(--wp--preset--color--tertiary);
		padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}
	.bauge-nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.5rem;
	}
	.bauge-nav-list a {
		padding: 0.75rem 0;
		display: block;
		border-bottom: 1px solid var(--wp--preset--color--tertiary);
	}
	.bauge-nav-list a::after { display: none; }
	.bauge-nav-list .bauge-nav-cta {
		text-align: center;
		margin-top: 0.5rem;
	}
	.bauge-header[data-nav-open="true"] .bauge-nav { max-height: 70vh; }
	.bauge-header[data-nav-open="true"] .bauge-nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.bauge-header[data-nav-open="true"] .bauge-nav-toggle-bar:nth-child(2) { opacity: 0; }
	.bauge-header[data-nav-open="true"] .bauge-nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.bauge-header { position: relative; }
}

/* ========================================================================
   7bis. PAGE CONTACT — actions mailto/tel
   ======================================================================== */

.bauge-contact-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.bauge-contact-action {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 1.35rem 1.4rem;
	background: var(--wp--preset--color--white);
	border: 1.5px solid var(--wp--preset--color--tertiary-darker);
	border-radius: 14px;
	text-decoration: none;
	color: var(--wp--preset--color--primary-darker);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.bauge-contact-action:hover,
.bauge-contact-action:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 14px 36px rgba(62, 78, 81, 0.12);
	border-color: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--primary-darker);
}
.bauge-contact-action-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--wp--preset--color--tertiary);
	color: var(--wp--preset--color--accent-darker);
	transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease;
}
.bauge-contact-action:hover .bauge-contact-action-icon,
.bauge-contact-action:focus-visible .bauge-contact-action-icon {
	background: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--white);
	transform: scale(1.05) rotate(-4deg);
}
.bauge-contact-action-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 0.15rem;
	min-width: 0;
}
.bauge-contact-action-label {
	font-family: var(--wp--preset--font-family--roboto);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--wp--preset--color--secondary);
}
.bauge-contact-action-value {
	font-family: var(--wp--preset--font-family--notoserif);
	/* Une seule ligne, jamais coupé ni tronqué : la taille se réduit avec la
	   largeur disponible pour que l'email entier tienne sur une ligne. */
	font-size: clamp(0.8rem, 2vw, 1.2rem);
	font-weight: 700;
	color: var(--wp--preset--color--primary-darker);
	white-space: nowrap;
}
.bauge-contact-action-arrow {
	flex-shrink: 0;
	color: var(--wp--preset--color--accent);
	transition: transform 0.25s ease;
}
.bauge-contact-action:hover .bauge-contact-action-arrow,
.bauge-contact-action:focus-visible .bauge-contact-action-arrow {
	transform: translateX(6px);
}
.bauge-contact-action-primary {
	background: var(--wp--preset--color--primary-darker);
	color: var(--wp--preset--color--white);
	border-color: var(--wp--preset--color--primary-darker);
}
.bauge-contact-action-primary .bauge-contact-action-icon {
	background: rgba(255, 255, 255, 0.12);
	color: var(--wp--preset--color--accent-lighter);
}
.bauge-contact-action-primary .bauge-contact-action-label {
	color: var(--wp--preset--color--accent-lighter);
}
.bauge-contact-action-primary .bauge-contact-action-value {
	color: var(--wp--preset--color--white);
}
.bauge-contact-action-primary .bauge-contact-action-arrow {
	color: var(--wp--preset--color--accent-lighter);
}
.bauge-contact-action-primary:hover,
.bauge-contact-action-primary:focus-visible {
	background: var(--wp--preset--color--primary);
	border-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}

/* Carte coordonnées : variante "on light" (fond beige) pour les social icons */
.bauge-contact-card .bauge-contact-address,
.bauge-contact-card .bauge-contact-lines {
	color: var(--wp--preset--color--primary-darker);
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.6;
	margin: 0 0 0.5rem;
}
.bauge-contact-card .bauge-contact-lines a {
	color: var(--wp--preset--color--accent-darker);
}
/* Email/tél sur une seule ligne, taille auto-réduite pour ne jamais être coupé. */
.bauge-contact-card .bauge-contact-lines a,
.bauge-footer .bauge-contact-lines a {
	display: inline-block;
	white-space: nowrap;
	font-size: clamp(0.78rem, 1.7vw, 0.95rem);
}

/* ========================================================================
   8bis. RÉSEAUX SOCIAUX (shortcode [bauge_social])
   ======================================================================== */

.bauge-social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}
.bauge-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--wp--preset--color--white);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
	text-decoration: none;
}
.bauge-social-link:hover,
.bauge-social-link:focus-visible {
	background: var(--wp--preset--color--accent);
	border-color: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--white);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(184, 149, 82, 0.35);
}
.bauge-social-link svg {
	width: 20px;
	height: 20px;
}
.bauge-social-size-sm .bauge-social-link { width: 36px; height: 36px; }
.bauge-social-size-sm .bauge-social-link svg { width: 16px; height: 16px; }
.bauge-social-size-lg .bauge-social-link { width: 52px; height: 52px; }
.bauge-social-size-lg .bauge-social-link svg { width: 24px; height: 24px; }
.bauge-social-style-bare .bauge-social-link {
	background: transparent;
	border: 0;
	width: auto;
	height: auto;
	padding: 0.4rem;
}

/* Variante sur fond clair (page Contact par ex.) */
.bauge-on-light .bauge-social-link {
	background: var(--wp--preset--color--tertiary);
	border-color: var(--wp--preset--color--tertiary-darker);
	color: var(--wp--preset--color--primary-darker);
}
.bauge-on-light .bauge-social-link:hover,
.bauge-on-light .bauge-social-link:focus-visible {
	background: var(--wp--preset--color--accent);
	border-color: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--white);
}

/* ========================================================================
   9. FOOTER CUSTOM
   ======================================================================== */

.bauge-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
	gap: var(--wp--preset--spacing--40);
	margin-bottom: var(--wp--preset--spacing--40);
}
@media (max-width: 1080px) {
	.bauge-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 720px) {
	.bauge-footer-grid {
		grid-template-columns: 1fr;
	}
}
.bauge-footer-social-hint {
	font-size: var(--wp--preset--font-size--xs) !important;
	color: rgba(255, 255, 255, 0.6) !important;
	margin-top: 0.6rem !important;
}
.bauge-footer-logo {
	height: 48px;
	width: auto;
	max-width: 280px;
	margin-bottom: 1rem;
	filter: brightness(0) invert(1);
	opacity: 0.95;
	display: block;
}
.bauge-footer p,
.bauge-footer address,
.bauge-footer .bauge-contact-address,
.bauge-footer .bauge-contact-lines {
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.6;
	font-style: normal;
	margin: 0 0 0.5rem;
	color: rgba(255, 255, 255, 0.85);
}
.bauge-footer h4 {
	font-family: var(--wp--preset--font-family--roboto);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: var(--wp--preset--font-size--xs);
	font-weight: 700;
	color: var(--wp--preset--color--accent-lighter);
	margin: 0 0 1rem;
}
.bauge-footer-links,
.bauge-footer-contact-lines {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bauge-footer-links li {
	margin-bottom: 0.5rem;
}
.bauge-footer a {
	color: var(--wp--preset--color--white);
	text-decoration: none;
	transition: color 0.2s ease;
}
.bauge-footer a:hover,
.bauge-footer a:focus-visible {
	color: var(--wp--preset--color--accent-lighter);
	text-decoration: underline;
}
.bauge-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: var(--wp--preset--spacing--30);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	font-size: var(--wp--preset--font-size--xs);
	color: rgba(255, 255, 255, 0.7);
}
.bauge-footer-bottom p { margin: 0; }



/* --- Skip-link RGAA AA --- */
.skip-link.screen-reader-text {
	background: var(--wp--preset--color--primary-darker);
	color: var(--wp--preset--color--white);
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
.skip-link.screen-reader-text:focus {
	background: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--white);
	clip: auto;
	clip-path: none;
	display: block;
	font-weight: 700;
	height: auto;
	left: 1rem;
	line-height: normal;
	padding: 0.75rem 1rem;
	text-decoration: none;
	top: 1rem;
	width: auto;
	z-index: 100000;
	border-radius: 6px;
}

/* --- Focus visible cohérent (RGAA AA) --- */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 3px solid var(--wp--preset--color--accent);
	outline-offset: 2px;
	border-radius: 4px;
}

/* --- Wrapper iframe Aslot --- */
.bauge-aslot-wrap {
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(62, 78, 81, 0.12);
	background: transparent;
}
.bauge-aslot-wrap iframe {
	width: 100%;
	border: 0;
	display: block;
}
.bauge-aslot-fallback {
	padding: var(--wp--preset--spacing--40);
	text-align: center;
	color: var(--wp--preset--color--primary-darker);
	background: var(--wp--preset--color--tertiary);
}

/* Section "Réserver" sur single-espace : full-bleed avec fond tertiary */
.bauge-aslot-section {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.bauge-aslot-section-header {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	width: 100%;
}
.bauge-aslot-section-iframe {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

/* Cards de l'archive Espaces : padding 0 sur l'enveloppe (la photo doit toucher
   les bords arrondis), padding interne uniquement sur la zone de texte. */
.bauge-card-archive {
	padding: 0 !important;
	overflow: hidden;
}

/* --- Blocs ACF du CPT espace --- */

/* Hero d'une page espace : photo featured en background + overlay + titre + CTA */
.bauge-espace-hero {
	position: relative;
	min-height: clamp(380px, 55vh, 540px);
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	color: var(--wp--preset--color--white);
	isolation: isolate;
}
.bauge-espace-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.bauge-espace-hero-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 45%;
}
@media (prefers-reduced-motion: no-preference) {
	.bauge-espace-hero-bg-img {
		animation: bauge-hero-kenburns 22s ease-out infinite alternate;
	}
}
.bauge-espace-hero-bg-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg,
			hsla(189, 25%, 12%, 0.15) 0%,
			hsla(189, 25%, 12%, 0.5)  55%,
			hsla(189, 30%, 8%, 0.85)  100%
		);
}
.bauge-espace-hero-content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(2.5rem, 6vh, 4rem) clamp(1.5rem, 4vw, 4rem);
}
.bauge-espace-hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	font-family: var(--wp--preset--font-family--roboto);
	color: var(--wp--preset--color--accent-lighter);
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 0.78rem;
	font-weight: 700;
	margin: 0 0 1rem;
	opacity: 0;
	transform: translateY(20px);
	animation: bauge-hero-fade-up 0.7s 0.1s ease-out both;
}
.bauge-espace-hero-eyebrow-bar {
	display: inline-block;
	width: 56px;
	height: 2px;
	background: var(--wp--preset--color--accent);
}
.bauge-espace-hero-title {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: clamp(2.4rem, 5vw + 0.5rem, 4.2rem) !important;
	line-height: 1.05;
	letter-spacing: -0.02em;
	font-weight: 700;
	margin: 0 0 0.8rem;
	color: var(--wp--preset--color--white) !important;
	max-width: 880px;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transform: translateY(30px);
	animation: bauge-hero-fade-up 0.8s 0.25s ease-out both;
}
.bauge-espace-hero-excerpt {
	font-size: clamp(1.05rem, 0.5vw + 0.85rem, 1.25rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	max-width: 640px;
	margin: 0 0 1.6rem;
	opacity: 0;
	transform: translateY(20px);
	animation: bauge-hero-fade-up 0.7s 0.45s ease-out both;
}
.bauge-espace-hero-actions {
	opacity: 0;
	transform: translateY(20px);
	animation: bauge-hero-fade-up 0.7s 0.6s ease-out both;
}
.bauge-espace-hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.95rem 1.5rem;
	border-radius: 999px;
	background: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--white);
	font-family: var(--wp--preset--font-family--roboto);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 8px 28px rgba(184, 149, 82, 0.4);
}
.bauge-espace-hero-btn:hover,
.bauge-espace-hero-btn:focus-visible {
	background: var(--wp--preset--color--accent-darker);
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(184, 149, 82, 0.55);
	color: var(--wp--preset--color--white);
}
.bauge-espace-hero-btn svg { transition: transform 0.3s ease; }
.bauge-espace-hero-btn:hover svg { transform: translateX(4px); }

/* Galerie bento : 1 grande à gauche + grille variée à droite */
.bauge-espace-galerie {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: clamp(120px, 14vw, 200px);
	gap: 10px;
}
.bauge-espace-galerie-item {
	position: relative;
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	background: var(--wp--preset--color--tertiary);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.4s ease;
}
/* Première photo : 2x2 (grande) */
.bauge-espace-galerie-item-0 {
	grid-column: span 2;
	grid-row: span 2;
}
/* Pour 6 photos exactement : 4ᵉ photo span 2 colonnes (paysage moyen) */
.bauge-espace-galerie[data-count="6"] .bauge-espace-galerie-item-3 {
	grid-column: span 2;
}
/* Pour 5 photos : 5ᵉ remplit la fin */
.bauge-espace-galerie[data-count="5"] .bauge-espace-galerie-item-4 {
	grid-column: span 2;
}
/* Pour 4 photos : 2ᵉ et 3ᵉ chacune span 2 cols pour équilibrer */
.bauge-espace-galerie[data-count="4"] .bauge-espace-galerie-item-1,
.bauge-espace-galerie[data-count="4"] .bauge-espace-galerie-item-2 {
	grid-column: span 2;
}
/* Pour 1 ou 2 photos : tout en pleine largeur */
.bauge-espace-galerie[data-count="1"] .bauge-espace-galerie-item-0,
.bauge-espace-galerie[data-count="2"] .bauge-espace-galerie-item-0,
.bauge-espace-galerie[data-count="2"] .bauge-espace-galerie-item-1 {
	grid-column: span 4;
	grid-row: span 2;
}

.bauge-espace-galerie-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.bauge-espace-galerie-link img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Overlay au hover : dégradé teal + icône zoom */
.bauge-espace-galerie-link::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, hsla(189, 30%, 12%, 0.55) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
	z-index: 1;
}
.bauge-espace-galerie-zoom {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--white);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
	z-index: 2;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.bauge-espace-galerie-link:hover img,
.bauge-espace-galerie-link:focus-visible img {
	transform: scale(1.06);
}
.bauge-espace-galerie-link:hover::before,
.bauge-espace-galerie-link:focus-visible::before {
	opacity: 1;
}
.bauge-espace-galerie-link:hover .bauge-espace-galerie-zoom,
.bauge-espace-galerie-link:focus-visible .bauge-espace-galerie-zoom {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
.bauge-espace-galerie-item:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	z-index: 1;
}

/* Mobile : grille 2 colonnes simple */
@media (max-width: 720px) {
	.bauge-espace-galerie {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 140px;
	}
	.bauge-espace-galerie-item-0,
	.bauge-espace-galerie[data-count="6"] .bauge-espace-galerie-item-3,
	.bauge-espace-galerie[data-count="5"] .bauge-espace-galerie-item-4,
	.bauge-espace-galerie[data-count="4"] .bauge-espace-galerie-item-1,
	.bauge-espace-galerie[data-count="4"] .bauge-espace-galerie-item-2 {
		grid-column: span 2;
		grid-row: span 2;
	}
}

/* Lightbox modale (HTML <dialog> natif, ouverte par JS minimal) */
.bauge-lightbox {
	border: 0;
	padding: 0;
	background: hsla(189, 30%, 8%, 0.92);
	max-width: 100vw;
	max-height: 100vh;
	width: 100vw;
	height: 100vh;
	margin: 0;
	overflow: hidden;
	color: var(--wp--preset--color--white);
}
.bauge-lightbox::backdrop { background: hsla(189, 30%, 8%, 0.92); }
.bauge-lightbox-inner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5vmin;
}
.bauge-lightbox-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}
.bauge-lightbox-close,
.bauge-lightbox-prev,
.bauge-lightbox-next {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	color: var(--wp--preset--color--white);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(8px);
	transition: background 0.2s ease, transform 0.2s ease;
}
.bauge-lightbox-close { top: 24px; right: 24px; }
.bauge-lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.bauge-lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.bauge-lightbox-close:hover,
.bauge-lightbox-prev:hover,
.bauge-lightbox-next:hover {
	background: var(--wp--preset--color--accent);
	border-color: var(--wp--preset--color--accent);
}
.bauge-lightbox-counter {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.7);
}

.bauge-espace-caracteristiques {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: var(--wp--preset--spacing--20);
}
.bauge-espace-caracteristiques li {
	background: var(--wp--preset--color--tertiary);
	border-radius: 8px;
	padding: var(--wp--preset--spacing--30);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.bauge-espace-caracteristiques .bauge-icone {
	color: var(--wp--preset--color--accent);
	font-size: 1.5rem;
	margin-bottom: 0.4rem;
}
.bauge-espace-caracteristiques .bauge-label {
	font-family: var(--wp--preset--font-family--roboto);
	font-weight: 700;
	color: var(--wp--preset--color--primary-darker);
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
}
.bauge-espace-caracteristiques .bauge-valeur {
	color: var(--wp--preset--color--primary);
	font-size: 1.15rem;
}

.bauge-espace-tarifs-section {
	display: block;
}
.bauge-espace-tarifs-title {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: var(--wp--preset--font-size--lg);
	color: var(--wp--preset--color--primary);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 1.2rem;
}
.bauge-espace-tarifs {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--wp--preset--font-size--sm);
}
.bauge-espace-tarifs th,
.bauge-espace-tarifs td {
	padding: 0.85rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--wp--preset--color--tertiary-darker);
}
.bauge-espace-tarifs thead th {
	font-family: var(--wp--preset--font-family--roboto);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--primary-darker);
	background: var(--wp--preset--color--tertiary);
}
.bauge-espace-tarifs tbody tr:nth-child(even) {
	background: var(--wp--preset--color--tertiary-lighter);
}

.bauge-espace-horaires {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 0.4rem 1.5rem;
	margin: 0;
	padding: var(--wp--preset--spacing--30);
	background: var(--wp--preset--color--tertiary);
	border-radius: 8px;
}
.bauge-espace-horaires dt {
	font-family: var(--wp--preset--font-family--roboto);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--primary-darker);
}
.bauge-espace-horaires dd {
	margin: 0;
}

.bauge-espace-referent {
	display: flex;
	gap: var(--wp--preset--spacing--30);
	align-items: center;
	padding: var(--wp--preset--spacing--30);
	border: 1px solid var(--wp--preset--color--tertiary-darker);
	border-radius: 12px;
	background: var(--wp--preset--color--white);
}
.bauge-espace-referent .bauge-referent-photo {
	border-radius: 50%;
	width: 96px;
	height: 96px;
	object-fit: cover;
	flex-shrink: 0;
}
.bauge-espace-referent p {
	margin: 0.25rem 0;
	font-size: var(--wp--preset--font-size--sm);
}
.bauge-espace-referent .bauge-referent-nom {
	font-size: var(--wp--preset--font-size--smd);
}
.bauge-espace-referent .bauge-referent-role {
	color: var(--wp--preset--color--secondary);
}

.bauge-espace-acces-texte {
	margin-bottom: var(--wp--preset--spacing--30);
}
.bauge-espace-map {
	margin-top: var(--wp--preset--spacing--30);
}

/* --- Bandeau d'urgence (override pour mobile) --- */
.bauge-banner-urgence a {
	color: inherit;
	text-decoration: underline;
}

/* ========================================================================
   13. PAGE ACTUALITÉS — header éditorial + grille de cards
   ======================================================================== */

/* --- Header de section --- */
.bauge-actu-header {
	text-align: center;
}
.bauge-actu-title {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: var(--wp--preset--font-size--xxl);
	font-weight: 700;
	line-height: 1.05;
	color: var(--wp--preset--color--primary-darker);
	text-align: center;
	margin: var(--wp--preset--spacing--20) 0 0;
	letter-spacing: -0.01em;
}
.bauge-actu-title-accent {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: var(--wp--preset--font-size--xxl);
	color: var(--wp--preset--color--accent-darker);
	font-style: italic;
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.01em;
	text-align: center;
}

/* --- Grille de posts --- */
.bauge-actu-query .wp-block-post-template {
	list-style: none;
	padding: 0;
	margin: 0;
	gap: var(--wp--preset--spacing--40);
}
.bauge-actu-query .wp-block-post-template > li {
	margin: 0;
	padding: 0;
	background: transparent;
}

/* --- Card article --- */
.bauge-actu-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--wp--preset--color--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.bauge-actu-card:hover,
.bauge-actu-card:focus-within {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

/* --- Image featured --- */
.bauge-actu-card-image {
	margin: 0;
	overflow: hidden;
	background: var(--wp--preset--color--tertiary);
}
.bauge-actu-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.bauge-actu-card:hover .bauge-actu-card-image img,
.bauge-actu-card:focus-within .bauge-actu-card-image img {
	transform: scale(1.06);
}
/* Fallback si pas de featured image : placeholder beige avec icône */
.bauge-actu-card .wp-block-post-featured-image:empty {
	display: block;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(135deg, var(--wp--preset--color--tertiary) 0%, var(--wp--preset--color--tertiary-darker) 100%);
	position: relative;
}
.bauge-actu-card .wp-block-post-featured-image:empty::after {
	content: '';
	position: absolute;
	inset: 50% auto auto 50%;
	width: 56px;
	height: 56px;
	transform: translate(-50%, -50%);
	background: var(--wp--preset--color--accent);
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2'/><path d='M18 14h-8M15 18h-5M10 6h8v4h-8z'/></svg>") no-repeat center / contain;
	        mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2'/><path d='M18 14h-8M15 18h-5M10 6h8v4h-8z'/></svg>") no-repeat center / contain;
	opacity: 0.6;
}

/* --- Corps de card --- */
.bauge-actu-card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.bauge-actu-card-date {
	font-family: var(--wp--preset--font-family--roboto);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--wp--preset--color--accent-darker);
	margin: 0;
}
.bauge-actu-card-title {
	font-family: var(--wp--preset--font-family--notoserif);
	font-size: var(--wp--preset--font-size--smd);
	color: var(--wp--preset--color--primary-darker);
	line-height: 1.25;
	font-weight: 700;
	margin: 0.2rem 0 0.4rem;
}
.bauge-actu-card-title a {
	color: inherit;
	text-decoration: none;
	background-image: linear-gradient(to right, var(--wp--preset--color--accent) 0%, var(--wp--preset--color--accent) 100%);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0% 2px;
	transition: background-size 0.35s ease;
}
.bauge-actu-card:hover .bauge-actu-card-title a,
.bauge-actu-card:focus-within .bauge-actu-card-title a {
	background-size: 100% 2px;
}
.bauge-actu-card-excerpt {
	color: var(--wp--preset--color--primary);
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.55;
	margin: 0 0 0.6rem;
}
.bauge-actu-card-excerpt p { margin: 0; }
.bauge-actu-card-cta {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin-top: auto;
	padding-top: 0.4rem;
	color: var(--wp--preset--color--accent-darker);
	font-family: var(--wp--preset--font-family--roboto);
	font-weight: 700;
	letter-spacing: 0.02em;
	font-size: 0.9rem;
	text-decoration: none;
	transition: transform 0.25s ease, color 0.25s ease;
}
.bauge-actu-card-cta:hover,
.bauge-actu-card-cta:focus-visible {
	color: var(--wp--preset--color--accent);
	outline: none;
}
.bauge-actu-card:hover .bauge-actu-card-cta,
.bauge-actu-card:focus-within .bauge-actu-card-cta {
	transform: translateX(4px);
}

/* --- Pagination --- */
.bauge-actu-pagination {
	gap: var(--wp--preset--spacing--20);
	flex-wrap: wrap;
}
.bauge-actu-pagination .wp-block-query-pagination-numbers,
.bauge-actu-pagination .wp-block-query-pagination-previous,
.bauge-actu-pagination .wp-block-query-pagination-next {
	font-family: var(--wp--preset--font-family--roboto);
	font-weight: 700;
	letter-spacing: 0.02em;
}
.bauge-actu-pagination a,
.bauge-actu-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: 999px;
	color: var(--wp--preset--color--primary-darker);
	text-decoration: none;
	background: var(--wp--preset--color--tertiary);
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.bauge-actu-pagination a:hover,
.bauge-actu-pagination a:focus-visible {
	background: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--white);
	outline: none;
	transform: translateY(-2px);
}
.bauge-actu-pagination .page-numbers.current {
	background: var(--wp--preset--color--primary-darker);
	color: var(--wp--preset--color--white);
}

/* --- État vide --- */
.bauge-actu-empty {
	text-align: center;
}
.bauge-actu-empty h2 {
	font-family: var(--wp--preset--font-family--notoserif);
	color: var(--wp--preset--color--primary-darker);
}

/* --- Responsive : 2 cols puis 1 col --- */
@media (max-width: 900px) {
	.bauge-actu-query .wp-block-post-template.is-layout-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.bauge-actu-title,
	.bauge-actu-title-accent {
		font-size: var(--wp--preset--font-size--xl);
	}
}
@media (max-width: 600px) {
	.bauge-actu-query .wp-block-post-template.is-layout-grid {
		grid-template-columns: 1fr;
	}
}

/* ========================================================================
   14. SINGLE ARTICLE — lecture confortable
   ======================================================================== */

.single-post .wp-block-post-title {
	font-family: var(--wp--preset--font-family--notoserif);
	color: var(--wp--preset--color--primary-darker);
	line-height: 1.15;
	letter-spacing: -0.01em;
}
.single-post .wp-block-post-date {
	font-family: var(--wp--preset--font-family--roboto);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 700;
	color: var(--wp--preset--color--accent-darker) !important;
}
.single-post .wp-block-post-featured-image img {
	width: 100%;
	height: auto;
	display: block;
}
.single-post .wp-block-post-navigation-link {
	font-family: var(--wp--preset--font-family--roboto);
	color: var(--wp--preset--color--accent-darker);
}
.single-post .wp-block-post-navigation-link a {
	color: inherit;
	text-decoration: none;
	font-weight: 700;
}
.single-post .wp-block-post-navigation-link a:hover {
	text-decoration: underline;
}
