/* Sanctuaire Theme Styles (wireframe-first, accessible, maintainable) */

:root {
	--bg: #ffffff;
	--bg-muted: #ffffff;
	--ink: #171717;
	--ink-muted: #4b4b4b;
	--line: #e6e6e6;
	--border: #e6e6e6;
	--gold: #A58B57;
	--gold-tint: rgba(165, 139, 87, 0.07);
	--blue: #88B6F2;
	--radius: 14px;
	--shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	--container: 1320px;
}

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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
	line-height: 1.65;
	color: var(--ink);
	background: var(--bg);
}

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

a {
	color: inherit;
}

/* Focus — WCAG AA : contraste ≥ 3:1, indicateur visible */
:focus-visible {
	outline: 3px solid #1F4F7A;
	outline-offset: 3px;
	border-radius: 3px;
}

/* ─── Animations modernes ─────────────────────────── */

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

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

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideOutRight {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(100%);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-16px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

.skip-link {
	position: absolute;
	left: -999px;
	top: 0.75rem;
	background: #fff;
	border: 2px solid #1F4F7A;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	z-index: 9999;
	font-weight: 600;
	color: #1F4F7A;
	text-decoration: none;
}
.skip-link:focus,
.skip-link:focus-visible {
	left: 0.75rem;
	outline: 3px solid #1F4F7A;
	outline-offset: 3px;
}

/* Respect prefers-reduced-motion — WCAG 2.3.3 */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.section {
	padding-block: clamp(3.5rem, 7vw, 5.5rem);
	animation: slideUpIn 0.8s ease-out backwards;
}
.section--dense    { padding-block: clamp(2rem, 3.5vw, 3rem); }
.section--spacious { padding-block: clamp(5.5rem, 11vw, 9rem); }

/* Offset pour le header fixe */
.site-main {
	padding-top: 90px;
}

.kicker {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	color: var(--ink-muted);
	margin: 0 0 0.25rem;
}

h1,
h2,
h3 {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(1.85rem, 4vw, 3rem);
	margin: 0.25rem 0 0.75rem;
	animation: slideUpIn 0.8s ease-out 0.2s backwards;
}

h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0.25rem 0 0.75rem;
	animation: slideUpIn 0.8s ease-out 0.2s backwards;
}

h3 {
	font-size: 1.125rem;
	margin: 0.25rem 0 0.5rem;
}

.section-lead {
	margin: 0.25rem auto 0;
	max-width: 52ch;
	color: var(--ink-muted);
}

.text-link {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.text-link:hover {
	color: var(--gold);
}

/* Buttons */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1;
	padding: 0.9rem 1.1rem;
	border-radius: 999px;
	border: 1px solid transparent;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	animation: slideUpIn 0.6s ease-out backwards;
}

.button:nth-child(2) {
	animation-delay: 0.1s;
}

.button--primary {
	background: var(--blue);
	color: #fff;
}

.button--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(31, 79, 122, 0.3);
}

.button--secondary {
	background: #fff;
	border-color: var(--line);
	color: var(--ink);
}

.button--secondary:hover {
	transform: translateY(-2px);
	border-color: var(--gold);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.button--on-dark {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.65);
}

.button--on-dark:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

/* Flèche automatique sur tous les liens qui ouvrent un nouvel onglet */
a[target="_blank"].button::after {
	content: "";
	display: inline-block;
	width: 0.75em;
	height: 0.75em;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23171717' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 10L10 2M4 2h6v6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
	margin-left: 0.2em;
}
/* Flèche blanche sur boutons dark */
a[target="_blank"].button--on-dark::after,
a[target="_blank"].button--primary::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 10L10 2M4 2h6v6'/%3E%3C/svg%3E");
}

/* Boutons de formulaires (WPForms, etc.) — aligner sur l'identité visuelle */
.wpforms-form .wpforms-submit,
.wpforms-form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	border: 1px solid transparent;
	background: var(--blue) !important;
	color: #fff !important;
	cursor: pointer;
	transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	white-space: nowrap;
}
.wpforms-form .wpforms-submit:hover,
.wpforms-form button[type="submit"]:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(31, 79, 122, 0.3);
}

/* ─── Header — flottant ─────────────────────────── */

.site-header {
	position: fixed;
	top: 20px;
	left: 40px;
	right: 40px;
	z-index: 200;
}

/* Logo circle — centré, chevauche le hero */
.site-logo-circle {
	position: absolute;
	top: 46px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 76px;
	height: 76px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 2;
}
.site-logo-circle a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.site-logo-img {
	display: block;
	width: 50px;
	height: 50px;
	object-fit: contain;
	transform: translateY(-4px);
}

/* Barre flottante — le fond vient de .header-glass-surface via JS (surface-ready) */
.header-bar {
	background: transparent;
	border-radius: 4px;
	box-shadow: none;
}
.header-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
}

/* Barre langue (sous la barre principale) */
.header-lang-bar {
	display: flex;
	justify-content: flex-end;
	padding: 6px 20px 0;
}
.header-lang-bar__inner {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 999px;
	padding: 3px 10px 3px 8px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}
/* Styles GTranslate dans la barre langue */
.header-lang-bar .gtranslate_wrapper {
	display: inline-flex;
	align-items: center;
}
.header-lang-bar select,
.header-lang-bar .gt_selector {
	appearance: none;
	-webkit-appearance: none;
	background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23333'/%3E%3C/svg%3E") no-repeat right 0.4rem center / 10px 10px;
	border: none;
	outline: none; /* remplacé par :focus-visible ci-dessous */
	font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--ink);
	cursor: pointer;
	padding: 2px 20px 2px 2px;
	line-height: 1;
}
.header-lang-bar select:hover,
.header-lang-bar .gt_selector:hover {
	color: var(--gold, #b8962e);
}
.header-lang-bar select:focus-visible,
.header-lang-bar .gt_selector:focus-visible {
	outline: 3px solid #1F4F7A;
	outline-offset: 2px;
	border-radius: 2px;
}

/* Titre dans la barre */
.site-title-bar {
	margin: 0;
	font-family: 'Newsreader', ui-serif, Georgia, serif;
	font-size: clamp(0.82rem, 1.4vw, 1rem);
	font-weight: 400;
	line-height: 1.2;
}
.site-title-bar a {
	text-decoration: none;
	color: var(--ink);
}
.site-title-bar em {
	font-style: italic;
	font-weight: 300;
}

/* Burger */
.header-bar__actions {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-shrink: 0;
}
.header-account {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	color: var(--ink);
	border: 1px solid transparent;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.header-account:hover,
.header-account:focus-visible {
	background: var(--gold-tint);
	border-color: rgba(165, 139, 87, 0.4);
	color: var(--gold);
}
.nav-toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	flex-shrink: 0;
}
.burger-line {
	display: block;
	height: 3px;
	background: var(--ink);
	border-radius: 2px;
}
.burger-line:nth-child(1),
.burger-line:nth-child(3) {
	width: 26px;
}
.burger-line--short {
	width: 18px;
}

/* Boutique link (in panel) */
.header-boutique {
	display: block;
	font-family: ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	padding: 12px 0;
	color: var(--ink);
	border-bottom: 1px solid var(--line);
}

/* Panneau — glisse depuis la droite */
.nav-panel {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(320px, 90vw);
	background: #fff;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
	overflow-y: auto;
	z-index: 300;
	padding: 80px 32px 40px;
	animation: slideInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-panel[hidden] {
	display: none;
}
.nav-panel .menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	font-family: ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 1rem;
}
.nav-panel .menu a {
	display: block;
	padding: 12px 0;
	text-decoration: none;
	color: var(--ink);
	border-bottom: 1px solid var(--line);
	transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
	position: relative;
}

.nav-panel .menu a::before {
	content: "";
	position: absolute;
	left: -8px;
	top: 50%;
	transform: translateY(-50%) scaleX(0);
	width: 4px;
	height: 20px;
	background: var(--gold);
	border-radius: 2px;
	transition: transform 0.3s ease;
}

.nav-panel .menu a:hover {
	color: var(--gold);
	left: 4px;
}

.nav-panel .menu a:hover::before {
	transform: translateY(-50%) scaleX(1);
}
.nav-panel__actions {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-top: 0;
	margin-bottom: 1.5rem;
}
.nav-panel__actions .button {
	justify-content: center;
}

/* Hero */
.home-hero {
	position: sticky;
	top: 0;
	min-height: 100vh;
	color: #fff;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	margin-top: -90px;
	padding-top: 80px;
	padding-bottom: 10px;
	padding-left: 40px;
	overflow: hidden;
	z-index: 0;
}
.home-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 1.4rem;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(2px);
	animation: home-hero-bounce 1.8s ease-in-out infinite;
	transition: background 0.2s, border-color 0.2s;
}
.home-hero__scroll:hover,
.home-hero__scroll:focus-visible {
	background: rgba(255, 255, 255, 0.2);
	border-color: #fff;
}
@keyframes home-hero-bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50%      { transform: translateX(-50%) translateY(7px); }
}
@media (prefers-reduced-motion: reduce) {
	.home-hero__scroll { animation: none; }
}
.home-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.home-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.home-hero__overlay {
	position: absolute;
	inset: 0;
	background: none;
	z-index: 1;
}
.home-hero .container {
	position: relative;
	z-index: 2;
	width: 100%;
}
/* Titre centré — parallax géré par JS */
.home-hero__title-area {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	padding: 0 2rem;
	z-index: 2;
	will-change: transform;
	mix-blend-mode: hard-light;
}
/* Effet 4 — blend mode sur la vidéo */
.home-hero__title-area h1 {
	font-size: clamp(6.5rem, 8vw, 9.25rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 0.88;
	margin: 0;
	color: #FFFFFF;
	text-transform: uppercase;
}
.home-hero__title-area .hero-title__main {
	display: block;
}
.home-hero__title-area .hero-title__sub {
	font-family: 'Newsreader', ui-serif, Georgia, serif;
	display: block;
	font-size: 0.5em;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.01em;
	margin-top: 0.15em;
	line-height: 0.6;
}
.home-hero__lead {
	margin: 0.5rem 0 0;
	max-width: 58ch;
	color: rgba(255, 255, 255, 0.88);
	animation: slideUpIn 0.8s ease-out 0.4s backwards;
}
/* Boutons sous le titre */
.home-hero__ctas {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 1.5rem;
}

/* Contenu qui glisse par-dessus le hero */
body.home {
	background-image: var(--hero-body-bg, none);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.home-content {
	position: relative;
	z-index: 2;
	background: #fff;
	border-radius: 1.5rem 1.5rem 0 0;
	box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
}

/* Section heads */
.section-head {
	margin-bottom: 2rem;
}
.section-head--center {
	text-align: center;
}

/* Trait doré sous le titre de section */
.section-head h2 {
	position: relative;
	padding-bottom: 1rem;
}
.section-head h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 36px;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
}
.section-head--center h2::after {
	left: 50%;
	transform: translateX(-50%);
}

.section-footer {
	margin-top: 2rem;
}
.section-footer--center {
	text-align: center;
}

/* Home info */
/* ─── Info cards (section accueil "Infos pratiques") ─── */
.info-cards {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr;
	gap: 1.25rem;
}
.info-card {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	padding: 1.5rem;
	border: none;
	border-top: 3px solid var(--line);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	text-decoration: none;
	color: var(--ink);
	transition: border-color 0.25s ease, transform 0.25s ease;
	animation: scaleIn 0.5s ease-out backwards;
	position: relative;
}
.info-cards .info-card:nth-child(1) { animation-delay: 0.05s; }
.info-cards .info-card:nth-child(2) { animation-delay: 0.12s; }
.info-cards .info-card:nth-child(3) { animation-delay: 0.19s; }

.info-card--featured {
	border-top-color: var(--gold);
}
.info-card:hover {
	transform: translateY(-3px);
	border-top-color: var(--gold);
}
.info-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--gold-tint);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.3s ease, color 0.3s ease;
}
.info-card:hover .info-card__icon {
	background: var(--gold);
	color: #fff;
}
.info-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.info-card__label {
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--ink);
}
.info-card__value {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}
.info-card__sub {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.85rem;
}
.info-card__schedule {
	margin: 0;
	display: grid;
	gap: 0.3rem;
}
.info-card__schedule > div {
	display: flex;
	gap: 0.5rem;
	align-items: baseline;
	font-size: 0.9rem;
}
.info-card__schedule dt {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	white-space: nowrap;
	color: var(--ink);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.info-card__schedule dd {
	margin: 0;
	color: var(--ink-muted);
}
.info-card__arrow {
	margin-top: auto;
	padding-top: 0.25rem;
	color: var(--gold);
	opacity: 0.7;
	transition: opacity 0.2s ease, transform 0.2s ease;
	align-self: flex-start;
}
.info-card:hover .info-card__arrow {
	opacity: 1;
	transform: translateX(3px);
}
.info-card__arrow--external {
	opacity: 0.5;
}
/* Events */
/* ─── Séparateur ornemental entre sections ───────────── */
.section-ornament-wrap {
	background: transparent;
	padding: 1rem 0;
	position: relative;
	z-index: 2;
}
.section-ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	color: var(--gold);
	opacity: 0.55;
}
.section-ornament::before,
.section-ornament::after {
	content: '';
	flex: 1;
	max-width: 90px;
	height: 1px;
	background: currentColor;
}
/* rétrocompat avec l'ancien __gem */
.section-ornament__gem {
	width: 6px;
	height: 6px;
	background: currentColor;
	transform: rotate(45deg);
	border-radius: 1px;
}

/* ─── Décorations watermark sur sections navy ──────── */
.prayer-section,
.marie-cta-banner,
.novena-section,
.luminaire-banner {
	position: relative;
	overflow: hidden;
}
.prayer-section::after,
.luminaire-banner::after {
	content: '';
	position: absolute;
	width: 260px;
	height: 260px;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A58B57'%3E%3Cpath d='M11 2h2v8h8v2h-8v10h-2V12H3v-2h8z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.06;
	pointer-events: none;
}
.marie-cta-banner::after {
	content: '';
	position: absolute;
	width: 240px;
	height: 240px;
	right: 60px;
	top: 50%;
	transform: translateY(-50%);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23A58B57' stroke-width='7'%3E%3Ccircle cx='50' cy='36' r='24'/%3E%3Ccircle cx='34' cy='64' r='24'/%3E%3Ccircle cx='66' cy='64' r='24'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.08;
	pointer-events: none;
}
.novena-section::after {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A58B57'%3E%3Cpolygon points='12%2C2 13.7%2C7.8 19.1%2C4.9 16.2%2C10.3 22%2C12 16.2%2C13.7 19.1%2C19.1 13.7%2C16.2 12%2C22 10.3%2C16.2 4.9%2C19.1 7.8%2C13.7 2%2C12 7.8%2C10.3 4.9%2C4.9 10.3%2C7.8'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.07;
	pointer-events: none;
}
/* Petite étoile décorative en haut-gauche des sections container */
.section::before {
	content: '';
	position: absolute;
	width: 180px;
	height: 180px;
	left: -60px;
	top: 3rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A58B57'%3E%3Cpolygon points='12%2C2 13.7%2C7.8 19.1%2C4.9 16.2%2C10.3 22%2C12 16.2%2C13.7 19.1%2C19.1 13.7%2C16.2 12%2C22 10.3%2C16.2 4.9%2C19.1 7.8%2C13.7 2%2C12 7.8%2C10.3 4.9%2C4.9 10.3%2C7.8'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.025;
	pointer-events: none;
	z-index: 0;
}
.section > * { position: relative; z-index: 1; }

/* ─── Events section — slideshow de fond ────────────── */
.events-section-wrap {
	position: relative;
	z-index: 0;
	isolation: isolate;
	overflow: hidden;
	background: #1f5a96;
	margin-top: -80px;
}

.events-slideshow {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.events-slideshow__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 2s ease;
	will-change: opacity;
}

.events-slideshow__slide.is-active {
	opacity: 1;
}

.events-slideshow__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(130deg,
		rgba(9, 22, 36, 0.75) 0%,
		rgba(20, 55, 106, 0.68) 50%,
		rgba(31, 90, 150, 0.60) 100%
	);
}


/* Cards events au-dessus de la lumière */
.events-section-wrap > section {
	position: relative;
	z-index: 3;
}

/* Couture seamless + blur à la jonction basse — fond sombre se dissout vers marie-cta-banner */
.events-section-wrap::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 90px;
	z-index: 4;
	pointer-events: none;
	background: linear-gradient(130deg, #091624 0%, #14376a 50%, #1f5a96 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	mask-image: linear-gradient(to top, black 0%, transparent 100%);
	-webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
}

/* Textes de la section sur fond sombre */
.events-section-wrap .kicker {
	color: rgba(255, 255, 255, 0.65);
}
.events-section-wrap h2 {
	color: #fff;
}
.events-section-wrap .section-lead {
	color: rgba(255, 255, 255, 0.80);
}
.events-section-wrap .button--secondary {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
}
.events-section-wrap .button--secondary:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: #fff;
	box-shadow: none;
}
/* Boutons dans les cartes (fond blanc) : on garde le style lisible, pas le blanc-sur-sombre de la section */
.events-section-wrap .event-card .button--secondary {
	background: #fff;
	border-color: var(--line);
	color: var(--ink);
}
.events-section-wrap .event-card .button--secondary:hover {
	background: #fff;
	border-color: var(--gold);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.events-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 1.5rem;
}
.event-card {
	border: 1px solid var(--line);
	border-top: 3px solid var(--gold);
	border-radius: var(--radius);
	background: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: scaleIn 0.6s ease-out backwards;
}

.events-grid .event-card:nth-child(1) {
	animation-delay: 0.1s;
}

.events-grid .event-card:nth-child(2) {
	animation-delay: 0.2s;
}

.events-grid .event-card:nth-child(3) {
	animation-delay: 0.3s;
}

.event-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.event-card__header {
	padding: 1.1rem 1.25rem 0.8rem;
	background: transparent;
	border-bottom: 1px solid var(--line);
}
.event-card__day {
	margin: 0;
	font-family: Newsreader, Georgia, 'Times New Roman', serif;
	font-size: clamp(2.2rem, 3.5vw, 2.8rem);
	font-weight: 300;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--gold);
}
.event-card__month-year {
	margin: 0.3rem 0 0;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-muted);
}
.event-card__body {
	padding: 1rem 1.25rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}
.badge {
	margin: 0;
	display: inline-flex;
	align-self: start;
	font-family: ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 999px;
	background: rgba(165, 139, 87, 0.12);
	color: var(--gold);
}
.event-card__title {
	margin: 0.25rem 0 0;
}
.event-card__title a {
	text-decoration: none;
}
.event-card__meta {
	margin: 0;
	color: var(--ink-muted);
	font-family: ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	gap: 0.35em;
}
.event-card__summary {
	margin: 0.35rem 0 0;
	color: var(--ink-muted);
}
.event-card__cta {
	margin-top: auto;
	padding-top: 0.75rem;
}

/* Image thumbnail dans la card */
.event-card__img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}
.event-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.event-card:hover .event-card__img img {
	transform: scale(1.06);
}
.event-card__cat {
	position: absolute;
	top: 10px; left: 10px;
	background: var(--gold);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	font-family: ui-sans-serif, system-ui, sans-serif;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 99px;
}
.event-card--past {
	opacity: 0.6;
}
.event-card--past .event-card__day {
	color: var(--ink-muted);
}
.event-card--past {
	border-top-color: var(--line);
}

/* Filtres catégorie agenda */
.agenda-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding-bottom: 0.5rem;
}
.agenda-filter-btn {
	display: inline-block;
	padding: 0.45rem 1rem;
	border-radius: 99px;
	border: 1px solid var(--line);
	background: #fff;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.85rem;
	text-decoration: none;
	color: var(--ink);
	transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.agenda-filter-btn:hover {
	border-color: var(--gold);
	color: var(--gold);
}
.agenda-filter-btn--active {
	background: var(--gold);
	border-color: var(--gold);
	color: #fff;
}
.agenda-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}
.agenda-filter-btn__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.35em;
	height: 1.35em;
	padding: 0 0.35em;
	border-radius: 99px;
	font-size: 0.72rem;
	font-weight: 700;
	background: rgba(0,0,0,0.1);
	color: inherit;
	line-height: 1;
}
.agenda-filter-btn--active .agenda-filter-btn__count {
	background: rgba(255,255,255,0.3);
	color: #fff;
}

.empty-state {
	grid-column: 1 / -1;
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	padding: 1.25rem;
	background: var(--bg-muted);
}

/* Magazine */
.magazine-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 1.5rem;
	align-items: center;
}
.magazine-current-issue {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	margin: 0.25rem 0 0.75rem;
	font-size: 0.875rem;
	color: var(--ink-muted);
}
.magazine-current-issue strong {
	color: var(--gold);
	font-weight: 700;
}

/* Pile de revues */
.magazine-stack-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

.magazine-stack {
	padding: 50px 90px 30px;
	cursor: pointer;
}

.magazine-stack__inner {
	position: relative;
	width: 190px;
	height: 255px;
}

.magazine-stack__card {
	position: absolute;
	inset: 0;
	border-radius: 5px;
	overflow: hidden;
	transform-origin: bottom center;
	transition:
		transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 0.5s ease;
}

.magazine-stack__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
	user-select: none;
}

/* Pile désordonnée par défaut */
.magazine-stack__card:nth-child(1) {
	z-index: 1;
	transform: rotate(-9deg) translate(-5px, 4px);
	box-shadow: -3px 6px 22px rgba(0, 0, 0, 0.28);
}
.magazine-stack__card:nth-child(2) {
	z-index: 2;
	transform: rotate(-3deg) translate(-2px, 6px);
	box-shadow: -2px 5px 18px rgba(0, 0, 0, 0.22);
}
.magazine-stack__card:nth-child(3) {
	z-index: 3;
	transform: rotate(4deg) translate(3px, 3px);
	box-shadow: 2px 5px 18px rgba(0, 0, 0, 0.22);
}
.magazine-stack__card:nth-child(4) {
	z-index: 4;
	transform: rotate(9deg) translate(6px, -2px);
	box-shadow: 4px 8px 26px rgba(0, 0, 0, 0.30);
}

/* Éventail au survol */
.magazine-stack:hover .magazine-stack__card:nth-child(1) {
	transform: rotate(-38deg) translateX(-100px) translateY(18px);
	box-shadow: -10px 14px 34px rgba(0, 0, 0, 0.32);
}
.magazine-stack:hover .magazine-stack__card:nth-child(2) {
	transform: rotate(-13deg) translateX(-33px) translateY(6px);
	box-shadow: -4px 10px 26px rgba(0, 0, 0, 0.26);
}
.magazine-stack:hover .magazine-stack__card:nth-child(3) {
	transform: rotate(13deg) translateX(33px) translateY(6px);
	box-shadow: 4px 10px 26px rgba(0, 0, 0, 0.26);
}
.magazine-stack:hover .magazine-stack__card:nth-child(4) {
	transform: rotate(38deg) translateX(100px) translateY(18px);
	box-shadow: 10px 14px 34px rgba(0, 0, 0, 0.32);
}

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

/* Support */
.support-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.25rem;
}
.support-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1.1rem;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	animation: scaleIn 0.6s ease-out backwards;
}

.support-grid .support-card:nth-child(1) {
	animation-delay: 0.1s;
}

.support-grid .support-card:nth-child(2) {
	animation-delay: 0.2s;
}

.support-grid .support-card:nth-child(3) {
	animation-delay: 0.3s;
}

.support-card:hover {
	box-shadow: 0 8px 24px rgba(165, 139, 87, 0.18);
	border-color: var(--gold);
}
.support-card--image {
	padding: 0;
	overflow: hidden;
	display: flex;
	align-items: stretch;
}
.support-card--image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =========================================================
   Posts archive & single
   ========================================================= */

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.post-card {
	border: 1px solid var(--line);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
	animation: slideUpIn 0.6s ease-out backwards;
}

.post-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
	border-color: var(--gold);
}

.post-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-card:hover .post-card__media img {
	transform: scale(1.08) rotate(1deg);
}

.post-card__body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.post-card__title {
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
}

.post-card__title a {
	text-decoration: none;
	color: var(--ink);
}

.post-card__title a:hover {
	color: var(--gold);
}

.post-card__excerpt {
	color: var(--ink-muted);
	font-size: 0.9rem;
	flex: 1;
}

.posts-pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.posts-pagination .page-numbers {
	padding: 0.4rem 0.8rem;
	border: 1px solid var(--line);
	border-radius: 3px;
	text-decoration: none;
	color: var(--ink);
	font-size: 0.9rem;
}

.posts-pagination .page-numbers.current {
	background: var(--ink);
	color: var(--bg);
	border-color: var(--ink);
}

/* Single post nav */

.posts-nav {
	display: flex;
	gap: 1.5rem;
	border-top: 1px solid var(--line);
	padding-top: 2rem;
}

.posts-nav__prev,
.posts-nav__next {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-decoration: none;
	color: var(--ink);
	font-weight: 600;
	font-size: 0.95rem;
}

.posts-nav__next {
	text-align: right;
}

.posts-nav .kicker {
	font-weight: 400;
	color: var(--ink-muted);
}

/* Schedule subtitle (Pods titre_du_jour) */

.schedule-day__subtitle {
	font-size: 0.8rem;
	color: var(--ink-muted);
	font-style: italic;
	margin: 0 0 0.5rem;
}

/* =========================================================
   Footer */
.site-footer {
	border-top: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
}
.footer-container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 2.5rem 1.25rem 2rem;
}

/* Ligne haute : logo + réseaux */
.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--line);
	margin-bottom: 2rem;
}
.footer-logo-link {
	display: flex;
	align-items: center;
}
.footer-logo-link img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}
.footer-social {
	display: flex;
	gap: 0.5rem;
}
.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 2px solid var(--line);
	border-radius: 50%;
	text-decoration: none;
	font-family: ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
	font-weight: 800;
	font-size: 0.75rem;
	color: var(--ink-muted);
	transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	animation: scaleIn 0.6s ease-out backwards;
}

.footer-social .social-link:nth-child(1) {
	animation-delay: 0.1s;
}

.footer-social .social-link:nth-child(2) {
	animation-delay: 0.2s;
}

.footer-social .social-link:nth-child(3) {
	animation-delay: 0.3s;
}

.social-link:hover {
	border-color: var(--gold);
	color: #fff;
	background: var(--gold);
	transform: scale(1.1);
}

/* Grille colonnes */
.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--line);
	margin-bottom: 1.5rem;
}
.footer-col__title {
	font-family: ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--ink);
	margin: 0 0 0.9rem;
}
.footer-col__links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}
.footer-col__links li,
.footer-col__links a {
	font-family: ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
	font-size: 0.9rem;
	color: var(--ink-muted);
	text-decoration: none;
	transition: color 0.3s ease, opacity 0.3s ease;
	position: relative;
}

.footer-col__links a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: width 0.3s ease;
}

.footer-col__links a:hover {
	color: var(--gold);
	padding-left: 4px;
}

.footer-col__links a:hover::after {
	width: 100%;
}
.footer-address {
	font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-family: ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
	font-size: 0.9rem;
	color: var(--ink-muted);
}
.footer-address p {
	margin: 0;
}
.footer-address a {
	color: inherit;
	text-decoration: none;
}
.footer-address a:hover {
	color: var(--ink);
}

/* Bas de page */
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	font-family: ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
	font-size: 0.83rem;
	color: var(--ink-muted);
	border-top: 1px solid var(--line);
	padding-top: 1.25rem;
}
.footer-copyright {
	margin: 0;
}
.footer-legal {
	margin: 0;
}
.footer-legal a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Generic content */
.prose {
	max-width: 70ch;
}

/* ─── Prose rich content ─────────────────────────── */
.prose p {
	margin: 0 0 1.2em;
	line-height: 1.75;
}
.prose h2 {
	font-size: clamp(1.35rem, 2.2vw, 1.65rem);
	line-height: 1.2;
	margin: 2em 0 0.6em;
	color: var(--ink);
}
.prose h3 {
	font-size: clamp(1.1rem, 1.8vw, 1.3rem);
	line-height: 1.25;
	margin: 1.6em 0 0.5em;
	color: var(--ink);
}
.prose h4 {
	font-size: 1rem;
	font-weight: 700;
	margin: 1.4em 0 0.4em;
	letter-spacing: 0.02em;
}
.prose ul,
.prose ol {
	padding-left: 1.5em;
	margin: 0 0 1.2em;
}
.prose li {
	margin-bottom: 0.4em;
	line-height: 1.65;
}
.prose ul li::marker {
	color: var(--gold);
}
.prose ol li::marker {
	color: var(--gold);
	font-weight: 700;
}
.prose blockquote {
	margin: 1.8em 0;
	padding: 1rem 1.4rem;
	border-left: 3px solid var(--gold);
	background: var(--bg-muted);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
	color: var(--ink-muted);
}
.prose blockquote p {
	margin: 0;
}
.prose img {
	border-radius: var(--radius);
	margin: 1.5em 0;
}
.prose figure {
	margin: 1.8em 0;
}
.prose figcaption {
	font-size: 0.85rem;
	color: var(--ink-muted);
	text-align: center;
	margin-top: 0.5em;
}
.prose a {
	color: var(--gold);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.prose a:hover {
	color: var(--ink);
}
.prose hr {
	border: none;
	border-top: 1px solid var(--line);
	margin: 2.5em 0;
}
.prose strong {
	font-weight: 700;
}
.prose em {
	font-style: italic;
}

/* ─── Gutenberg blocks dans le contenu ─────────────────────────── */
.prose .wp-block-image,
.single-content .wp-block-image {
	margin: 1.5em 0;
}
.prose .wp-block-image img,
.single-content .wp-block-image img {
	border-radius: var(--radius);
}
.prose .wp-block-quote,
.single-content .wp-block-quote {
	margin: 1.8em 0;
	padding: 1rem 1.4rem;
	border-left: 3px solid var(--gold);
	background: var(--bg-muted);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
	color: var(--ink-muted);
}
.prose .wp-block-quote p,
.single-content .wp-block-quote p {
	margin: 0;
}
.prose .wp-block-separator,
.single-content .wp-block-separator {
	border: none;
	border-top: 1px solid var(--line);
	margin: 2.5em 0;
}
/* Boutons Gutenberg — alignés sur la charte */
.prose .wp-block-button .wp-block-button__link,
.single-content .wp-block-button .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	padding: 0.65em 1.4em;
	border-radius: 40px;
	font-family: inherit;
	font-size: 0.95rem;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	background: var(--ink);
	color: #fff;
	border: 2px solid var(--ink);
}
.prose .wp-block-button .wp-block-button__link:hover,
.single-content .wp-block-button .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.prose .wp-block-button.is-style-outline .wp-block-button__link,
.single-content .wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	color: var(--ink);
}

/* ─── Sections structurées événement ─────────────────────────── */
.event-body {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	margin-top: 2rem;
}
.event-section {
	background: var(--bg-muted);
	border-radius: var(--radius);
	padding: 1.5rem 1.75rem;
}
.event-section__kicker {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 0.6rem;
}
.event-section h2 {
	font-size: 1.1rem;
	margin: 0 0 1rem;
	color: var(--ink);
}
.event-programme__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.event-programme__item {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--line);
	line-height: 1.5;
}
.event-programme__item:last-child {
	border-bottom: none;
}
.event-programme__item::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
	margin-top: 0.45em;
}
.event-infos__text {
	margin: 0;
	line-height: 1.75;
	white-space: pre-line;
}
.event-inscription {
	text-align: center;
	padding: 2rem;
	background: linear-gradient(135deg, #fdfaf5 0%, #f6f4ef 100%);
	border-radius: var(--radius);
	border: 1px solid rgba(165, 139, 87, 0.2);
}
.event-inscription p {
	margin: 0 0 1rem;
	color: var(--ink-muted);
	font-size: 0.95rem;
}

.entry-title {
	margin-top: 0;
}

/* Page hero — bannière pleine largeur */
.page-hero {
	position: relative;
	background-color: #1a1a1a;
	background-image: var(--page-hero-bg);
	background-size: cover;
	background-position: center 35%;
	color: #fff;
	min-height: 420px;
	display: flex;
	align-items: flex-end;
	margin-top: -90px;
	padding-top: 90px;
	overflow: hidden;
}
.page-hero {
	--hero-bar-width: 0px;
}
.page-hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: var(--hero-bar-width);
	max-width: 100%;
	height: 3px;
	background: var(--gold);
	z-index: 2;
	will-change: width;
}
/* Slideshow hero */
.page-hero--slideshow {
	background-image: none;
}
.page-hero__slideshow {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.page-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 42%;
	opacity: 0;
	transition: opacity 1.4s ease;
}
.page-hero__slide.is-active {
	opacity: 1;
}
.page-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.72) 0%,
		rgba(0, 0, 0, 0.45) 55%,
		rgba(0, 0, 0, 0.18) 100%
	);
	z-index: 0;
}
.page-hero__inner {
	position: relative;
	z-index: 1;
	padding-top: 3rem;
	padding-bottom: 3.5rem;
	max-width: 680px;
}
.page-hero__kicker {
	color: rgba(255, 255, 255, 0.9) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
	background: none !important;
	animation: none !important;
}
.page-hero__title {
	margin: 0.2rem 0 0.5rem;
	font-size: clamp(1.9rem, 4vw, 3.2rem);
	line-height: 1.1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.page-hero__lead {
	margin: 0.5rem 0 0;
	max-width: 58ch;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.05rem;
	line-height: 1.6;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

/* Archive / single event */
.archive-hero {
	background: var(--bg-muted);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
}
.archive-tabs {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}
.newsletter-cta {
	text-align: center;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1.75rem 1.25rem;
}
.newsletter-cta__actions {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1rem;
}
.event-meta {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	color: var(--ink-muted);
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.event-meta li {
	display: flex;
	align-items: center;
	gap: 0.4em;
}
.event-meta svg {
	flex-shrink: 0;
	color: var(--gold);
}
.entry-media {
	margin: 1.25rem 0;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
}

/* Layout helpers */
.two-col {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 2rem;
	align-items: start;
}
.two-col--wide-right {
	grid-template-columns: 2fr 3fr;
}
.two-col--equal {
	grid-template-columns: 1fr 1fr;
}
.media-placeholder {
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: var(--bg-muted);
	padding: 1rem;
}

/* ─── Page Prière des Trois Ave ───────────────────────── */
.prayer-section {
	background: linear-gradient(135deg, #1a2e47 0%, #2a4a6b 100%);
	color: #fff;
	padding: clamp(3.5rem, 7vw, 5.5rem) 0;
	border-top: 3px solid var(--gold);
}
.prayer-section .section-head--center .kicker {
	color: rgba(255, 255, 255, 0.7);
}
.prayer-section .section-head--center h2 {
	color: #fff;
}
.prayer-section .section-head--center h2::after {
	background: var(--gold);
	opacity: 0.6;
}
.prayer-section .section-lead {
	color: rgba(255, 255, 255, 0.8);
}
.prayer-card {
	max-width: 600px;
	margin: 2.5rem auto 0;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(165, 139, 87, 0.4);
	border-top: 3px solid var(--gold);
	border-radius: var(--radius);
	padding: clamp(1.75rem, 4vw, 2.75rem);
	text-align: center;
	animation: scaleIn 0.5s ease-out backwards;
}
.prayer-card__verse {
	font-size: 1.0625rem;
	line-height: 1.9;
	font-style: italic;
	color: rgba(255, 255, 255, 0.92);
}
.prayer-card__count {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(165, 139, 87, 0.3);
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--gold);
	letter-spacing: 0.25em;
	font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
}
.prayer-card__actions {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1.75rem;
}

/* Neuvaine */
.novena-section {
	background: var(--gold-tint);
	padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.novena-days {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
	margin: 2rem 0 2.5rem;
}
.novena-day {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1.5px solid var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--gold);
	background: #fff;
	font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
	transition: background 0.2s, color 0.2s, transform 0.2s;
	cursor: default;
	flex-shrink: 0;
}
.novena-day:hover {
	background: var(--gold);
	color: #fff;
	transform: translateY(-3px);
}

/* Contact icon list */
.icon-list {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.icon-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}
.icon-list .icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--gold-tint);
	border: 1px solid rgba(165, 139, 87, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	margin-top: 0.1rem;
}
.icon-list li > div {
	padding-top: 0.45rem;
	font-size: 0.9375rem;
	color: var(--ink-muted);
}
.icon-list .text-link {
	color: var(--ink);
}
.icon-list .text-link:hover {
	color: var(--gold);
}

/* Forms */
.form-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1.25rem;
}
.form-card label {
	display: grid;
	gap: 0.35rem;
	margin-bottom: 0.85rem;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
}
.form-card input,
.form-card textarea,
.form-card select {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 0.65rem 0.75rem;
	font: inherit;
	background: #fff;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
}
.checkbox {
	display: flex !important;
	align-items: flex-start;
	gap: 0.55rem;
	font-weight: 600;
}
.checkbox input {
	width: auto;
	margin-top: 0.2rem;
}
.form-note {
	margin-top: 0.75rem;
	color: var(--ink-muted);
}

/* Notices */
.notice {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1.25rem;
}
.notice--success {
	border-color: rgba(31, 79, 122, 0.35);
}

/* Testimonials (scroll-snap, no carousel) */
.testimonials {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(260px, 1fr);
	gap: 1rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scroll-snap-type: x mandatory;
}
.testimonial {
	scroll-snap-align: start;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1.1rem;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
	animation: scaleIn 0.5s ease-out backwards;
}
.testimonial:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
	border-color: var(--gold);
}
.testimonial__text {
	margin: 0 0 0.75rem;
	color: var(--ink);
}
.testimonial__meta {
	margin: 0 0 0.5rem;
	color: var(--ink-muted);
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Timeline */
/* Timeline alternante (quinconce) */
.timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 0.5rem 0;
}

/* Ligne centrale verticale */
.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: repeating-linear-gradient(
		to bottom,
		var(--gold) 0px,
		var(--gold) 6px,
		transparent 6px,
		transparent 14px
	);
	opacity: 0.35;
	transform: translateX(-50%);
}

.timeline-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	position: relative;
	align-items: center;
}

/* Point doré sur la ligne centrale */
.timeline-item::before {
	content: '';
	position: absolute;
	left: calc(50% - 5px);
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background: var(--gold);
	border-radius: 50%;
	z-index: 1;
	opacity: 0.7;
}

/* Carte texte */
.timeline-content {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1.5rem;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
}
.timeline-content:hover {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
	border-color: var(--gold);
}
.timeline-content p:last-child { margin-bottom: 0; }

/* Visuel (image ou bloc année) */
.timeline-visual {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
}
.timeline-visual img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	border-radius: var(--radius);
}

/* Année en badge sur l'image */
.timeline-visual__year {
	position: absolute;
	bottom: 0.75rem;
	left: 0.75rem;
	background: rgba(0,0,0,0.55);
	backdrop-filter: blur(4px);
	color: var(--gold);
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-weight: 900;
	font-size: 1.1rem;
	padding: 0.25rem 0.65rem;
	border-radius: 6px;
	line-height: 1;
}

/* Bloc année quand pas d'image */
.timeline-visual__year-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 160px;
	border-radius: var(--radius);
	background: var(--gold-tint);
	border: 1px solid rgba(165,139,87,0.2);
}
.timeline-visual__year-block span {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-weight: 900;
	font-size: clamp(3rem, 5vw, 4rem);
	color: var(--gold);
	letter-spacing: -0.05em;
	line-height: 1;
}
.timeline-visual__year-block--gold span {
	color: var(--gold);
}

/* Impair : contenu col 1, visuel col 2 */
.timeline-item:nth-child(odd) .timeline-content  { grid-column: 1; grid-row: 1; }
.timeline-item:nth-child(odd) .timeline-visual   { grid-column: 2; grid-row: 1; }

/* Pair : visuel col 1, contenu col 2 */
.timeline-item:nth-child(even) .timeline-visual  { grid-column: 1; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 2; grid-row: 1; }


/* Cards / stats */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}
.stat-card {
	border: none;
	border-left: 3px solid var(--gold);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding: 0.2rem 0 0.5rem 1.25rem;
}
.stat-number {
	margin: 0;
	font-family: Newsreader, Georgia, 'Times New Roman', serif;
	font-size: 2.6rem;
	font-weight: 300;
	letter-spacing: -0.02em;
	color: var(--gold);
	line-height: 1;
}
.stat-label {
	margin: 0.3rem 0 0;
	color: var(--ink-muted);
	font-size: 0.9rem;
}
.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}
.cards-grid--2col {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.simple-card {
	border: none;
	border-left: 3px solid var(--gold);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding: 0.15rem 0 0.5rem 1.25rem;
}
.simple-card .kicker { margin-bottom: 0.2rem; }
.simple-card h3 { margin-top: 0.1rem; margin-bottom: 0.4rem; }
.simple-card p { margin: 0; color: var(--ink-muted); font-size: 0.95rem; line-height: 1.65; }

/* Conserver l'apparence carte pour les témoignages */
.simple-card.revue-temoignage {
	border: 1px solid var(--line);
	border-left: 3px solid var(--gold);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1.5rem;
}

/* Mosaic (Basilique) */
/* ─── Accordion galerie (lieux de prière) ─────────────── */
.mosaic {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 240px 180px 180px;
	gap: 0.5rem;
	border-radius: var(--radius);
	overflow: hidden;
	transition: grid-template-columns 0.45s ease, grid-template-rows 0.45s ease;
}
/* Placement explicite des 6 cartes */
.mosaic-card:nth-child(1) { grid-column: 1;     grid-row: 1 / 4; }
.mosaic-card:nth-child(2) { grid-column: 2 / 4; grid-row: 1;     }
.mosaic-card:nth-child(3) { grid-column: 2;     grid-row: 2;     }
.mosaic-card:nth-child(4) { grid-column: 3;     grid-row: 2;     }
.mosaic-card:nth-child(5) { grid-column: 2;     grid-row: 3;     }
.mosaic-card:nth-child(6) { grid-column: 3;     grid-row: 3;     }

.mosaic-card {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-color: var(--navy);
}
.mosaic-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
	z-index: 0;
	transition: opacity 0.35s ease;
	opacity: 0.65;
}
.mosaic-card:hover::before {
	opacity: 1;
}
.mosaic-card__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	padding: 1rem 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.mosaic-card .kicker {
	margin: 0;
	color: var(--gold);
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	white-space: nowrap;
}
.mosaic-card h3 {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.3;
	color: #fff;
}
.mosaic-card:nth-child(1) h3 { font-size: 1.2rem; }
.mosaic-card__text {
	margin: 0;
	max-height: 0;
	overflow: hidden;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.82);
	line-height: 1.5;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.3s 0.1s ease, transform 0.3s 0.1s ease, max-height 0.35s ease;
}
.mosaic-card:hover .mosaic-card__text {
	max-height: 6rem;
	opacity: 1;
	transform: translateY(0);
}

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}
.gallery-img {
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.5s ease, box-shadow 0.4s ease;
}
.gallery-img:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

/* Schedule — header avec période */
.schedule-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-bottom: 0.25rem;
}
.schedule-header__badge-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.5rem;
	flex-shrink: 0;
}
.schedule-period-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #fffdf0, #fff8e1);
	border: 1px solid var(--gold);
	border-radius: 999px;
	padding: 0.45rem 1rem;
	font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	color: #7a5c1e;
}
.schedule-freshness {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-size: 0.8rem;
	color: #3a7a3a;
	margin: 0;
}

/* Schedule grid */
.schedule {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.25rem;
}
.schedule-day {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1rem;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
	animation: scaleIn 0.5s ease-out backwards;
}
.schedule .schedule-day:nth-child(1) { animation-delay: 0.05s; }
.schedule .schedule-day:nth-child(2) { animation-delay: 0.10s; }
.schedule .schedule-day:nth-child(3) { animation-delay: 0.15s; }
.schedule .schedule-day:nth-child(4) { animation-delay: 0.20s; }
.schedule .schedule-day:nth-child(5) { animation-delay: 0.25s; }
.schedule .schedule-day:nth-child(6) { animation-delay: 0.30s; }
.schedule .schedule-day:nth-child(7) { animation-delay: 0.35s; }
.schedule .schedule-day:nth-child(8) { animation-delay: 0.40s; }
.schedule-day:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	border-color: var(--gold);
}
.schedule-day--today {
	border-color: var(--gold);
	box-shadow: 0 0 0 2px rgba(165, 139, 87, 0.18), var(--shadow);
	background: linear-gradient(160deg, #fffdf7 0%, #fff 100%);
}
.schedule-today-badge {
	display: inline-block;
	background: var(--gold);
	color: #fff;
	font-size: 0.65rem;
	font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 2px 7px;
	border-radius: 999px;
	vertical-align: middle;
	margin-left: 0.4rem;
}
.schedule-day__title {
	margin: 0 0 0.65rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.schedule-day__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.45rem;
}
.schedule-item {
	display: grid;
	grid-template-columns: 6.5rem 1fr;
	gap: 0.75rem;
	align-items: baseline;
	color: var(--ink-muted);
}
.schedule-item__time {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	color: var(--ink);
}
.schedule-item__label {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.contact-cta {
	text-align: center;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(160deg, #fffdf7 0%, var(--bg-muted) 100%);
	padding: 2.5rem 1.75rem;
	border-top: 3px solid var(--gold);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ─── Carousel Basilique ─────────────────────────── */
.basilique-carousel {
	margin-top: 1.25rem;
}
.basilique-carousel__main {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background: #000;
	aspect-ratio: 16/9;
}
.basilique-carousel__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.3s;
}
.basilique-carousel__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	color: #fff;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.875rem;
	padding: 1.5rem 1rem 0.75rem;
	margin: 0;
	text-align: center;
}
.basilique-carousel__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.9);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	transition: background 0.2s, transform 0.2s;
	z-index: 2;
}
.basilique-carousel__nav:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.08);
}
.basilique-carousel__nav--prev { left: 0.75rem; }
.basilique-carousel__nav--next { right: 0.75rem; }

.basilique-carousel__thumbs {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.5rem;
	margin-top: 0.75rem;
}
.basilique-carousel__thumb {
	padding: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	background: none;
	aspect-ratio: 4/3;
	transition: border-color 0.2s, transform 0.2s;
}
.basilique-carousel__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.basilique-carousel__thumb.is-active {
	border-color: var(--gold);
}
.basilique-carousel__thumb:hover {
	transform: scale(1.04);
}

/* ─── Page Revue ─────────────────────────── */

/* Hero */
.revue-hero {
	position: relative;
	height: 100vh;
	min-height: 560px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	overflow: hidden;
	margin-top: -90px; /* remonte sous le header fixe */
}
.revue-hero__bg {
	position: absolute;
	top: -30%;
	left: 0;
	right: 0;
	height: 160%;
	background-size: cover;
	background-position: center;
	will-change: transform;
}
.revue-hero__slideshow {
	background-image: none !important;
}
.revue-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 42%;
	opacity: 0;
	transition: opacity 1.4s ease;
}
.revue-hero__slide.is-active {
	opacity: 1;
}
.revue-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15,10,5,0.92) 0%, rgba(30,20,10,0.6) 45%, transparent 100%);
}
.revue-hero__sidebar {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	transform-origin: center;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.7rem;
	color: rgba(255,255,255,0.55);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0;
	z-index: 2;
	white-space: nowrap;
}
.revue-hero__center {
	position: relative;
	z-index: 3;
	text-align: center;
	padding-bottom: 5rem;
}
.revue-hero__title {
	font-family: ui-serif, Georgia, "Times New Roman", serif;
	font-size: clamp(3.5rem, 11vw, 8rem);
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.06em;
	line-height: 1;
	text-shadow: 0 4px 24px rgba(0,0,0,0.5);
	margin: 0;
	animation: slideUpIn 1s ease-out backwards;
}
.revue-hero__subtitle {
	font-family: ui-serif, Georgia, serif;
	font-size: clamp(1rem, 2.5vw, 1.6rem);
	font-style: italic;
	color: var(--gold);
	margin: 0.5rem 0 0;
	text-shadow: 0 2px 10px rgba(0,0,0,0.7);
	animation: slideUpIn 1s ease-out 0.1s backwards;
}
.revue-hero__rubriques {
	position: relative;
	z-index: 3;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0.75rem 5%;
	border-top: 1px solid rgba(255,255,255,0.18);
	margin-bottom: 0;
}
.revue-hero__rubrique-name {
	display: block;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.62rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
}
.revue-hero__rubrique-title {
	display: block;
	font-family: ui-serif, Georgia, serif;
	font-size: 0.85rem;
	font-style: italic;
	color: var(--gold);
}
.revue-hero__rubriques > div:last-child {
	text-align: right;
}
.revue-hero__rubriques > div:nth-child(2) {
	text-align: center;
}
.revue-hero__ctas {
	position: relative;
	z-index: 3;
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
	padding: 1.25rem 1.25rem 2.5rem;
}

/* Cover image */
.revue-cover-stack {
	position: relative;
}
.revue-cover-img {
	width: 100%;
	max-width: 280px;
	border-radius: var(--radius);
	box-shadow: -8px 8px 32px rgba(0,0,0,0.18), 8px -4px 20px rgba(165,139,87,0.12);
}
.revue-stat-chips {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 0.5rem;
}
.revue-chip {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--bg-muted);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0.6rem 1rem;
	min-width: 72px;
}
.revue-chip strong {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--gold);
	line-height: 1;
}
.revue-chip span {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.7rem;
	color: var(--ink-muted);
	margin-top: 0.2rem;
	text-align: center;
}

/* Quote */
.revue-quote {
	border-left: 3px solid var(--gold);
	margin: 1.5rem 0;
	padding-left: 1.25rem;
}
.revue-quote p {
	font-style: italic;
	font-size: 1.1rem;
	color: var(--ink);
	margin: 0 0 0.4rem;
}
.revue-quote footer {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.8rem;
	color: var(--gold);
}

/* Contenu section */
.revue-content-section {
	background: var(--bg-muted);
	padding: clamp(2.5rem, 6vw, 4.25rem) 0;
}

/* Accordion rubriques */
.revue-rubriques {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	margin-top: 2rem;
	background: #fff;
	box-shadow: var(--shadow);
}
.revue-rubrique {
	border-bottom: 1px solid var(--line);
}
.revue-rubrique:last-child {
	border-bottom: none;
}
.revue-rubrique__btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: background 0.2s;
}
.revue-rubrique__btn:hover {
	background: var(--bg-muted);
}
.revue-rubrique__btn[aria-expanded="true"] {
	background: #fffdf7;
}
.revue-rubrique__icon {
	color: var(--gold);
	flex-shrink: 0;
}
.revue-rubrique__titre {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--ink);
	flex: 1;
}
.revue-rubrique__chevron {
	flex-shrink: 0;
	color: var(--gold);
	transition: transform 0.25s;
	margin-left: auto;
}
.revue-rubrique__btn[aria-expanded="true"] .revue-rubrique__chevron {
	transform: rotate(180deg);
}
.revue-rubrique__panel {
	padding: 0 1.25rem 1rem 3.5rem;
	color: var(--ink-muted);
	font-size: 0.95rem;
	line-height: 1.7;
}
.revue-rubrique__panel p {
	margin: 0;
}

/* Témoignages */
.revue-temoignage__text {
	font-style: italic;
	font-size: 1rem;
	color: var(--ink);
	line-height: 1.7;
}
.revue-temoignage__author {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	margin: 0.75rem 0 0;
}
.revue-temoignage__location {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.8rem;
	color: var(--ink-muted);
	margin: 0.1rem 0 0;
}

/* Offres abonnement */
.revue-abonnement-section {
	background: linear-gradient(160deg, #fffdf5 0%, #fff 100%);
	padding: clamp(2.5rem, 6vw, 4.25rem) 0;
	border-top: 1px solid var(--line);
}
.revue-offers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.25rem;
	margin-top: 2rem;
	align-items: start;
}
.revue-offer-card {
	position: relative;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1.75rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transition: transform 0.25s, box-shadow 0.25s;
}
.revue-offer-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.revue-offer-card--featured {
	border-color: var(--gold);
	background: linear-gradient(160deg, #fffdf5 0%, #fff 100%);
	box-shadow: 0 8px 24px rgba(165,139,87,0.18);
}
.revue-offer-badge {
	position: absolute;
	top: -0.65rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: #fff;
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 3px 12px;
	border-radius: 999px;
	white-space: nowrap;
}
.revue-offer-price {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 2.75rem;
	font-weight: 900;
	color: var(--gold);
	line-height: 1;
	margin: 0.25rem 0;
}
.revue-offer-price span {
	font-size: 1rem;
	font-weight: 400;
	color: var(--ink-muted);
}
.revue-offer-benefits {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.4rem;
}
.revue-offer-benefits li {
	display: flex;
	align-items: flex-start;
	gap: 0.4rem;
	font-size: 0.9rem;
	color: var(--ink-muted);
}
.revue-offer-benefits li::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A58B57' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
	margin-top: 2px;
}
.revue-offer-impact {
	font-size: 0.8rem;
	font-style: italic;
	color: var(--gold);
	margin: 0;
	border-top: 1px solid var(--line);
	padding-top: 0.6rem;
}
.revue-offer-card .button {
	width: 100%;
	justify-content: center;
	margin-top: auto;
}

/* Revue legacy */
.feature-list {
	display: grid;
	gap: 1rem;
}
.feature-item {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 1rem;
	align-items: start;
	border-top: 1px solid var(--line);
	padding-top: 1rem;
	transition: color 0.2s ease;
}
.feature-item:hover .feature-number {
	color: var(--gold);
}
.feature-number {
	margin: 0;
	font-family: Newsreader, Georgia, 'Times New Roman', serif;
	font-weight: 300;
	font-size: 2.4rem;
	letter-spacing: -0.02em;
	color: var(--gold);
}
.feature-body p {
	color: var(--ink-muted);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}
.pricing-card {
	border: none;
	border-top: 3px solid var(--line);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding: 1.25rem 0.25rem 1.25rem;
	transition: border-color 0.25s ease, transform 0.25s ease;
	animation: scaleIn 0.5s ease-out backwards;
}
.pricing-card:hover {
	transform: translateY(-3px);
	border-top-color: var(--gold);
}
.pricing-price {
	margin: 0 0 0.5rem;
	font-family: Newsreader, Georgia, 'Times New Roman', serif;
	font-weight: 300;
	font-size: 2.2rem;
	letter-spacing: -0.02em;
	color: var(--gold);
}
.pricing-card ul {
	margin: 0.75rem 0 1rem;
	color: var(--ink-muted);
}

/* Contact */
.contact-head h1 {
	font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
	font-size: clamp(2.2rem, 5vw, 3.2rem);
	letter-spacing: -0.03em;
	margin: 0;
}
.contact-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1.25rem;
}
.contact-social-title {
	margin-top: 1.25rem;
}
.contact-form-wrap {
	background: var(--bg-muted);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.contact-form {
	max-width: 720px;
	margin: 0 auto;
}

/* Policy page */
.policy-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 1.5rem;
	align-items: start;
}
.policy-toc {
	position: sticky;
	top: 6rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1rem;
}
.policy-toc__title {
	margin-top: 0;
}
.policy-toc__list {
	margin: 0.75rem 0 0;
	padding-left: 1.25rem;
	color: var(--ink-muted);
}
.policy-toc a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.policy-section {
	border-top: 1px solid var(--line);
	padding-top: 1.25rem;
	margin-top: 1.25rem;
}
.policy-section:first-child {
	border-top: 0;
	padding-top: 0;
	margin-top: 0;
}

/* ─── Utilitaires (remplacent inline styles) ─────────── */
.icon-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--gold-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	flex-shrink: 0;
	color: var(--gold);
}
.cta-flex {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 1.25rem;
}
.cta-flex--center {
	justify-content: center;
}
.small-note {
	margin-top: 1rem;
	font-size: 0.875rem;
	color: var(--ink-muted);
}
.text-muted {
	color: var(--ink-muted);
}

/* ─── Page Soutenir ─────────────────────────────────── */
.soutenir-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}
.soutenir-stat {
	padding: 1.25rem 1.25rem 1.5rem;
	border-left: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.soutenir-stat:first-child {
	border-left: none;
}
.soutenir-stat .stat-number {
	font-size: clamp(3rem, 7vw, 5rem);
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--gold);
	opacity: 0.2;
	line-height: 1;
	margin: 0;
	user-select: none;
	white-space: nowrap;
}
.soutenir-stat .stat-label {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ink);
	margin: 0;
	line-height: 1.4;
}

.don-highlight {
	border: 2px solid var(--gold);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 2rem;
}

.soutenir-fiscalite-wrap {
	background: var(--bg-muted);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.fiscalite-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr 1fr;
	gap: 1.25rem;
	margin-top: 1.5rem;
	align-items: start;
}
.fiscalite-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
	padding: 1.5rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.fiscalite-card:hover {
	border-color: var(--gold);
	box-shadow: 0 12px 28px rgba(165, 139, 87, 0.15);
}
.fiscalite-card--featured {
	border-color: var(--gold);
	background: linear-gradient(160deg, #fffdf7 0%, #fff 60%);
	padding: 2rem 1.75rem;
	border-top: 3px solid var(--gold);
}
.fiscalite-card__taux {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 3.5rem;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--gold);
	margin: 0.25rem 0 0.5rem;
	line-height: 1;
}
.fiscalite-exemple {
	margin-top: 1rem;
	padding: 0.75rem;
	background: var(--bg-muted);
	border-radius: 8px;
}
.fiscalite-exemple .kicker {
	margin-bottom: 0.25rem;
}
.fiscalite-exemple p {
	margin: 0;
	font-size: 0.88rem;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ─── Calculatrice fiscale ─────────────────────────────────────── */
.fiscalite-calculatrice {
	margin-top: 2.5rem;
	border-radius: var(--radius);
	background: #fff;
	border: 1px solid var(--gold);
	box-shadow: 0 4px 24px rgba(165, 139, 87, 0.1);
	overflow: hidden;
}
.fiscalite-calc__header {
	padding: 1.5rem 2rem 0;
}
.fiscalite-calc__header h3 {
	margin-top: 0.2rem;
}
.fiscalite-calc__body {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0;
	align-items: stretch;
}
.fiscalite-calc__field {
	padding: 1.25rem 2rem 1.5rem;
	border-right: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.fiscalite-calc__label {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ink-muted);
}
.fiscalite-calc__input-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
}
.fiscalite-calc__input {
	width: 9rem;
	padding: 0.65rem 2.25rem 0.65rem 0.9rem;
	font-size: 1.55rem;
	font-weight: 700;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--ink);
	background: var(--bg-muted);
	border: 2px solid var(--line);
	border-radius: 10px;
	outline: none;
	appearance: textfield;
	-moz-appearance: textfield;
	transition: border-color 0.2s, box-shadow 0.2s;
	line-height: 1.1;
}
.fiscalite-calc__input::-webkit-inner-spin-button,
.fiscalite-calc__input::-webkit-outer-spin-button {
	-webkit-appearance: none;
}
.fiscalite-calc__input:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(165, 139, 87, 0.18);
	background: #fff;
}
.fiscalite-calc__unit {
	position: absolute;
	right: 0.75rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--gold);
	pointer-events: none;
	user-select: none;
}
.fiscalite-calc__presets {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.fiscalite-calc__preset {
	all: unset;
	cursor: pointer;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--ink-muted);
	border: 1px solid var(--line);
	border-radius: 99px;
	padding: 0.2rem 0.65rem;
	transition: color 0.15s, border-color 0.15s, background 0.15s;
	line-height: 1.5;
}
.fiscalite-calc__preset:hover {
	color: var(--gold);
	border-color: var(--gold);
}
.fiscalite-calc__preset--active {
	background: var(--gold);
	border-color: var(--gold);
	color: #fff;
}
.fiscalite-calc__preset:focus-visible {
	outline: 2px solid #1F4F7A;
	outline-offset: 2px;
}
.fiscalite-calc__results {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.fiscalite-calc__col {
	padding: 1.25rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.fiscalite-calc__col + .fiscalite-calc__col {
	border-left: 1px solid var(--line);
}
.fiscalite-calc__col--ifi {
	background: linear-gradient(160deg, #fffdf7 0%, #fff 100%);
}
.fiscalite-calc__col-title {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--ink-muted);
	margin: 0 0 0.25rem;
}
.fiscalite-calc__result-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.5rem;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 0.85rem;
	color: var(--ink-muted);
}
.fiscalite-calc__result-row strong {
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
	white-space: nowrap;
}
.fiscalite-calc__result-row--net {
	background: var(--bg-muted);
	border-radius: 8px;
	padding: 0.5rem 0.75rem;
	color: var(--ink);
}
.fiscalite-calc__result-row--net strong {
	font-size: 1.3rem;
	color: var(--gold);
}
.fiscalite-calc__note {
	padding: 0.85rem 2rem;
	font-size: 0.78rem;
	color: var(--ink-muted);
	border-top: 1px solid var(--line);
	background: var(--bg-muted);
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-style: italic;
}
@media (max-width: 760px) {
	.fiscalite-calc__body {
		grid-template-columns: 1fr;
	}
	.fiscalite-calc__field {
		border-right: none;
		border-bottom: 1px solid var(--line);
	}
	.fiscalite-calc__header,
	.fiscalite-calc__field {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
	.fiscalite-calc__col {
		padding: 1rem;
	}
	.fiscalite-calc__note {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}
@media (max-width: 420px) {
	.fiscalite-calc__results {
		grid-template-columns: 1fr;
	}
	.fiscalite-calc__col + .fiscalite-calc__col {
		border-left: none;
		border-top: 1px solid var(--line);
	}
	.fiscalite-calc__input {
		width: 100%;
	}
	.fiscalite-calc__input-wrap {
		width: 100%;
	}
}

.don-methodes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}
.don-methode-card {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	border: none;
	border-top: 1px solid var(--line);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding: 1.25rem 0;
	transition: border-top-color 0.25s ease;
	animation: scaleIn 0.5s ease-out backwards;
}
.don-methode-card:hover {
	border-top-color: var(--gold);
}
.don-methode-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(165, 139, 87, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--gold);
}
.iban-dl {
	margin: 0.85rem 0 0;
	display: grid;
	gap: 0.5rem;
}
.iban-dl div {
	display: flex;
	gap: 0.75rem;
	align-items: baseline;
	flex-wrap: wrap;
}
.iban-dl dt {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ink-muted);
	white-space: nowrap;
}
.iban-dl dd {
	margin: 0;
}
.iban-dl code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 0.9rem;
	background: var(--bg-muted);
	padding: 0.1rem 0.4rem;
	border-radius: 4px;
	letter-spacing: 0.04em;
}
.iban-dl__row dd {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.iban-copy-btn {
	all: unset;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	cursor: pointer;
	font-size: 0.78rem;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	color: var(--ink-muted);
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 0.15rem 0.5rem;
	line-height: 1.4;
	transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.iban-copy-btn:hover {
	color: var(--gold);
	border-color: var(--gold);
}
.iban-copy-btn--copied {
	color: #22863a;
	border-color: #22863a;
	background: #f0fff4;
}
.iban-copy-btn:focus-visible {
	outline: 2px solid #1F4F7A;
	outline-offset: 2px;
	border-radius: 4px;
}

.don-cta {
	text-align: center;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg-muted);
	padding: 2.5rem 1.5rem;
}

/* Liens bas de panneau (soutenir & boutique) */
.nav-panel__links-section,
.nav-panel__social {
	margin-top: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}

/* Langue dans le panneau burger — visible uniquement sur mobile */
.nav-panel__lang {
	display: none;
	margin-top: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}
.nav-panel__links-title {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: var(--ink-muted);
	margin: 0 0 0.65rem;
}
.nav-panel__links-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.nav-panel__links-list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.6rem 0;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--ink-muted);
	text-decoration: none;
	border-bottom: 1px solid var(--line);
	transition: color 0.2s ease;
}
.nav-panel__links-list li:last-child a {
	border-bottom: none;
}
.nav-panel__links-list li a span[aria-hidden] {
	font-size: 0.75rem;
	opacity: 0.55;
}
.nav-panel__links-list li a:hover {
	color: var(--gold);
}
/* Variante avec descriptions */
.nav-panel__links-list--described li a {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1rem;
	padding: 0.65rem 0.5rem;
	border-bottom: none;
	border-radius: 8px;
	transition: background 0.15s, color 0.15s;
}
.nav-panel__links-list--described li a:hover {
	background: var(--bg-muted);
	color: var(--ink);
}
.nav-panel__link-label {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--ink);
	line-height: 1.3;
}
.nav-panel__link-desc {
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--ink-muted);
	line-height: 1.3;
}

/* ─── Bouton retour en haut ─────────────────────────── */
.back-to-top {
	position: fixed;
	bottom: 1.75rem;
	right: 1.75rem;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--gold);
	color: #fff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 150;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.back-to-top:hover {
	box-shadow: 0 8px 20px rgba(165, 139, 87, 0.35);
}

/* ─── Section soutien (fond discret pleine largeur) ─── */
#newsletter {
	background: transparent;
}

/* ─── Support split screen ───────────────────────────── */
.support-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 150px;
}

/* Moitié gauche — visuel */
.support-split__visual {
	position: relative;
	overflow: hidden;
}

.support-split__photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 8s ease;
}

.support-split__visual:hover .support-split__photo {
	transform: scale(1.04);
}

.support-split__photo-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(10, 22, 45, 0.55) 0%,
		rgba(165, 139, 87, 0.45) 100%
	);
}

.support-split__quote {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	padding: 2.5rem clamp(1.5rem, 4vw, 2.5rem);
	background: linear-gradient(to top, rgba(10, 22, 45, 0.85) 0%, transparent 100%);
}

.support-split__quote p {
	font-family: ui-serif, Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.6;
	margin: 0;
}

/* Moitié droite — contenu */
.support-split__content {
	background: #faf8f4;
	padding: clamp(1rem, 2vw, 1.4rem) clamp(1.2rem, 2vw, 1.8rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.support-split__content .kicker {
	color: var(--gold);
	margin-bottom: 0.15rem;
}

.support-split__content h2 {
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	margin-bottom: 0.4rem;
	margin-top: 0.2rem;
}

.support-split__lead {
	color: var(--ink-muted);
	margin-bottom: 0.8rem;
	max-width: 44ch;
}

.support-split__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6rem;
}

.support-split__card {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	background: #fff;
	border: 1px solid var(--line);
	border-top: 3px solid var(--gold);
	border-left: none;
	border-radius: var(--radius);
	padding: 0.8rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-split__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(165, 139, 87, 0.12);
}

.support-split__card-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--gold-tint);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
}

.support-split__card h3 {
	font-size: 0.95rem;
	margin: 0 0 0.2rem;
}

.support-split__card p {
	font-size: 0.85rem;
	color: var(--ink-muted);
	margin: 0 0 0.4rem;
}

/* Responsive */
@media (max-width: 860px) {
	.support-split {
		grid-template-columns: 1fr;
	}
	.support-split__visual {
		min-height: 300px;
	}
	.support-split__cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 500px) {
	.support-split__visual {
		min-height: 240px;
	}
}

/* ─── Bannière Écrire à Marie ────────────────────────── */
.marie-cta-banner {
	background: linear-gradient(130deg, #091624 0%, #14376a 50%, #1f5a96 100%);
	color: #fff;
	padding: clamp(2.5rem, 6vw, 4.5rem) 0;
	border-top: 3px solid var(--gold);
	margin-bottom: 0;
	-webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
	mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
	position: relative;
	z-index: 2;
}
.marie-cta-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}
.marie-cta-banner__text .kicker {
	color: rgba(255, 255, 255, 0.7);
}
.marie-cta-banner__text h2 {
	color: #fff;
	margin-bottom: 0.5rem;
}
.marie-cta-banner__text p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 52ch;
	margin: 0;
}
.marie-cta-banner__action {
	flex-shrink: 0;
}

/* ─── Bannière Luminaire ────────────────────────────── */
.luminaire-banner {
	background: linear-gradient(135deg, #1a2e47 0%, #2a4a6b 100%);
	color: #fff;
	padding: clamp(2.5rem, 6vw, 4.5rem) 0;
	border-top: 3px solid var(--gold);
}
.luminaire-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}
.luminaire-banner__text .kicker {
	color: rgba(255, 255, 255, 0.7);
}
.luminaire-banner__text h2 {
	color: #fff;
	margin-bottom: 0.5rem;
}
.luminaire-banner__text p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 52ch;
	margin: 0;
}
.luminaire-banner__action {
	flex-shrink: 0;
}

/* ─── Carte Google Maps ─────────────────────────────── */
.map-wrapper {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	margin-bottom: 1.5rem;
	line-height: 0;
}
.map-wrapper iframe {
	width: 100%;
	height: 400px;
	display: block;
}

/* Responsive */
@media (max-width: 980px) {
	.site-header {
		top: 12px;
		left: 16px;
		right: 16px;
	}
	.header-bar__inner {
		flex-wrap: wrap;
		gap: 0.5rem;
	}
	.site-title-bar {
		flex: 0 0 auto;
		font-size: 0.75rem;
		min-width: 0;
	}
	.site-title-bar a {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.marie-cta-banner__inner,
	.luminaire-banner__inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.info-cards {
		grid-template-columns: 1fr;
	}
	.magazine-grid {
		grid-template-columns: 1fr;
	}
	.magazine-stack {
		padding: 40px 70px 20px;
	}
	.magazine-stack__inner {
		width: 160px;
		height: 215px;
	}
	.magazine-stack:hover .magazine-stack__card:nth-child(1) {
		transform: rotate(-38deg) translateX(-80px) translateY(18px);
	}
	.magazine-stack:hover .magazine-stack__card:nth-child(2) {
		transform: rotate(-13deg) translateX(-27px) translateY(6px);
	}
	.magazine-stack:hover .magazine-stack__card:nth-child(3) {
		transform: rotate(13deg) translateX(27px) translateY(6px);
	}
	.magazine-stack:hover .magazine-stack__card:nth-child(4) {
		transform: rotate(38deg) translateX(80px) translateY(18px);
	}
	.page-hero {
		min-height: 320px;
		align-items: flex-end;
	}
	.page-hero__inner {
		padding-bottom: 2.5rem;
		max-width: 100%;
	}
	.events-grid {
		grid-template-columns: 1fr;
	}
	.support-grid {
		grid-template-columns: 1fr;
	}
	/* Timeline mobile : colonne unique */
	.timeline::before { display: none; }
	.timeline-item {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}
	.timeline-item::before { display: none; }
	.timeline-item:nth-child(odd) .timeline-content,
	.timeline-item:nth-child(even) .timeline-content,
	.timeline-item:nth-child(odd) .timeline-visual,
	.timeline-item:nth-child(even) .timeline-visual {
		grid-column: 1;
		grid-row: auto;
	}
	/* Sur mobile : visuel toujours en premier */
	.timeline-item:nth-child(odd) .timeline-visual  { order: -1; }
	.timeline-item:nth-child(even) .timeline-visual { order: -1; }
	.timeline-visual img { height: 180px; }
	.timeline-visual__year-block { height: 100px; }
	.timeline-visual__year-block span { font-size: 2rem; }
	.stats-grid {
		grid-template-columns: 1fr;
	}
	.cards-grid,
	.cards-grid--2col {
		grid-template-columns: 1fr;
	}
	.mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 220px 160px 160px;
	}
	.mosaic-card:nth-child(1) {
		grid-row: 1 / 2;
		grid-column: 1 / 3;
	}
	.mosaic-card:nth-child(2) {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
	}
	.gallery-grid {
		grid-template-columns: 1fr 1fr;
	}
	.schedule {
		grid-template-columns: 1fr;
	}
	.schedule-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.schedule-header__badge-wrap {
		align-items: flex-start;
	}
	.feature-item {
		grid-template-columns: 1fr;
	}
	.pricing-grid {
		grid-template-columns: 1fr;
	}
	/* Revue */
	.revue-offers-grid {
		grid-template-columns: 1fr;
	}
	.revue-hero__rubriques {
		display: none;
	}
	/* Carousel */
	.basilique-carousel__thumbs {
		grid-template-columns: repeat(3, 1fr);
	}
	.policy-layout {
		grid-template-columns: 1fr;
	}
	.policy-toc {
		position: static;
		top: auto;
	}
	.two-col {
		grid-template-columns: 1fr;
	}
	.form-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.footer-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	.soutenir-stats {
		grid-template-columns: 1fr;
	}
	.fiscalite-grid {
		grid-template-columns: 1fr;
	}
	.fiscalite-card--featured {
		padding: 1.5rem;
	}
	.don-methodes {
		grid-template-columns: 1fr;
	}
	.don-methode-card {
		flex-direction: column;
	}
	.map-wrapper iframe {
		height: 280px;
	}
	.back-to-top {
		bottom: 1rem;
		right: 1rem;
		width: 40px;
		height: 40px;
	}
}

/* Tablette : grilles intermédiaires */
@media (min-width: 601px) and (max-width: 980px) {
	.events-grid {
		grid-template-columns: 1fr 1fr;
	}
	.two-col,
	.two-col--wide-right,
	.two-col--equal {
		grid-template-columns: 1fr 1fr;
	}
	.mosaic {
		grid-template-columns: 2fr 1fr 1fr;
		grid-template-rows: 240px 180px;
	}
	.info-cards {
		grid-template-columns: 1fr 1fr;
	}
	.soutenir-stats {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.fiscalite-grid {
		grid-template-columns: 1fr 1.2fr 1fr;
	}
}

/* Header mobile : logo à gauche, titre à côté, burger à droite */
@media (max-width: 600px) {
	/* Logo : petit, collé à gauche, centré verticalement dans la barre */
	.site-logo-circle {
		width: 44px;
		height: 44px;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
	}
	/* Barre principale : décale le contenu pour laisser la place au logo */
	.header-bar {
		position: relative;
		z-index: 10;
	}
	.header-bar__inner {
		flex-wrap: nowrap;
		align-items: center;
		gap: 0;
		padding-left: 72px; /* 44px logo + 8px gap + 20px marge gauche */
	}
	.site-title-bar {
		flex: 1 1 0;
		min-width: 0;
	}
	.site-title-bar a {
		white-space: normal;
		overflow: hidden;
		text-overflow: clip;
		display: block;
		line-height: 1.3;
	}
	.nav-toggle {
		flex-shrink: 0;
		margin-left: 0.5rem;
	}
	/* GTranslate : masquer la barre sous le header, visible dans le menu burger */
	.header-lang-bar {
		display: none;
	}
	.nav-panel__lang {
		display: block;
	}
	/* Revue hero sur mobile */
	.revue-hero__title {
		font-size: clamp(2.5rem, 12vw, 5rem);
	}
	.revue-hero__ctas {
		flex-direction: column;
		align-items: center;
	}
	/* Carousel thumbs mobile */
	.basilique-carousel__thumbs {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ── Revue — Carrousel numéros récents ─────────────────────────────── */
.revue-carousel {
	position: relative;
}
.revue-carousel__track {
	display: flex;
	gap: 1.25rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding-bottom: 0.75rem;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.revue-carousel__track::-webkit-scrollbar { display: none; }
.revue-carousel__item {
	flex: 0 0 auto;
	width: 172px;
	scroll-snap-align: start;
	text-align: center;
}
.revue-carousel__link {
	text-decoration: none;
	color: inherit;
	display: block;
}
.revue-carousel__link:hover .revue-carousel__cover {
	transform: scale(1.03);
	box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.revue-carousel__cover {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	border-radius: var(--radius);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}
.revue-carousel__cover-placeholder {
	width: 100%;
	aspect-ratio: 3/4;
	background: var(--bg-muted);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	color: var(--ink-muted);
	border: 1px solid var(--border);
}
.revue-carousel__numero {
	margin: 0.5rem 0 0;
	font-size: 0.82rem;
	color: var(--ink-muted);
	font-weight: 500;
}
.revue-carousel__nav {
	display: flex;
	gap: 0.5rem;
	justify-content: flex-end;
	margin-top: 1rem;
}
.revue-carousel__btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.15s;
	color: var(--ink);
}
.revue-carousel__btn:hover { background: var(--bg-muted); }

/* Bouton-modal du carrousel — réinitialise le style bouton natif */
.revue-carousel__btn-modal {
	all: unset;
	cursor: pointer;
	display: block;
	width: 100%;
	text-align: center;
}
.revue-carousel__btn-modal:focus-visible .revue-carousel__cover,
.revue-carousel__btn-modal:focus-visible .revue-carousel__cover-placeholder {
	outline: 3px solid var(--gold);
	outline-offset: 2px;
}
.revue-carousel__btn-modal:hover .revue-carousel__cover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* ─── Modale numéro revue ──────────────────────────────────────── */
.revue-modal {
	position: fixed;
	inset: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
.revue-modal[hidden] { display: none; }

.revue-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(3px);
}

.revue-modal__box {
	position: relative;
	background: #fff;
	border-radius: var(--radius-lg, 12px);
	box-shadow: 0 24px 60px rgba(0,0,0,0.25);
	max-width: 780px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	animation: revueModalIn 0.22s ease;
}
@keyframes revueModalIn {
	from { opacity: 0; transform: translateY(12px) scale(0.97); }
	to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.revue-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--ink);
	z-index: 1;
	transition: background 0.15s;
}
.revue-modal__close:hover { background: var(--bg-muted); }

.revue-modal__inner {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 2rem;
	padding: 2rem;
}

.revue-modal__cover-col {
	display: flex;
	align-items: flex-start;
}
.revue-modal__cover {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.revue-modal__info-col {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-top: 0.25rem;
}
.revue-modal__kicker {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold, #b5922a);
	margin: 0;
}
.revue-modal__titre {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
}
.revue-modal__sujets {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.revue-modal__sujets li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.95rem;
	color: var(--ink);
}
.revue-modal__sujets li::before {
	content: '';
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold, #b5922a);
	margin-top: 0.45em;
}
.revue-modal__actions {
	margin-top: auto;
	padding-top: 1.25rem;
}

body.revue-modal-open { overflow: hidden; }

@media (max-width: 600px) {
	.revue-modal__inner {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		padding: 1.25rem;
	}
	.revue-modal__cover-col {
		max-width: 160px;
		margin: 0 auto;
	}
}

/* ─── Scroll reveal ────────────────────────────────────────────── */
.will-animate {
	opacity: 0;
	transform: translateY(20px);
	animation: none !important;
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.will-animate.is-visible {
	opacity: 1;
	transform: none;
}

/* ─── Accessibilité : animations réduites ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ─── Partage social — popup fallback ─────────────────────────── */
.share-fallback-popup {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
.share-fallback-popup__box {
	background: #fff;
	border-radius: var(--radius);
	padding: 2rem 1.5rem 1.5rem;
	max-width: 380px;
	width: 100%;
	position: relative;
	box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.share-fallback-popup__close {
	all: unset;
	cursor: pointer;
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	font-size: 1.4rem;
	line-height: 1;
	color: var(--ink-muted);
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
}
.share-fallback-popup__close:focus-visible {
	outline: 2px solid #1F4F7A;
}
.share-fallback-popup__title {
	font-weight: 700;
	margin-bottom: 1.25rem;
	font-size: 1rem;
}
.share-fallback-popup__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

/* ─── Événements similaires ────────────────────────────────────── */
.event-similaires {
	border-top: 1px solid var(--line);
	padding-top: 3rem;
}

/* ─── Fil d'Ariane ─────────────────────────────────────────────── */
.breadcrumb {
	padding-top: 1.25rem;
	padding-bottom: 0;
}
.breadcrumb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.5rem;
	align-items: center;
	font-size: 0.82rem;
	color: var(--ink-muted);
}
.breadcrumb__item + .breadcrumb__item::before {
	content: '/';
	margin-right: 0.5rem;
	color: var(--ink-muted);
	opacity: 0.5;
}
.breadcrumb__item a {
	color: var(--ink-muted);
	text-decoration: none;
}
.breadcrumb__item a:hover {
	color: var(--gold);
	text-decoration: underline;
}
.breadcrumb__item[aria-current="page"] {
	color: var(--ink);
	font-weight: 500;
}

/* ─── Très petits mobiles (≤ 375px — iPhone SE, etc.) ─────────── */
@media (max-width: 375px) {
	.container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.page-hero__title {
		font-size: clamp(1.6rem, 9vw, 2.5rem);
	}
	.basilique-carousel__thumbs {
		grid-template-columns: repeat(2, 1fr);
	}
	.cta-flex {
		flex-direction: column;
		align-items: stretch;
	}
	.cta-flex .button {
		text-align: center;
		justify-content: center;
	}
	.event-meta {
		flex-direction: column;
		gap: 0.4rem;
	}
	.fiscalite-grid {
		grid-template-columns: 1fr;
	}
	.iban-dl__row dd {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ─── Grands écrans (≥ 1440px) ────────────────────────────────── */
@media (min-width: 1440px) {
	.container {
		max-width: 1320px;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
	.section {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.events-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.support-grid {
		gap: 2.5rem;
	}
}

/* ─── Page 404 ─────────────────────────────────────────────────── */
.not-found {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 3rem 4rem;
	align-items: start;
}
.not-found__visual {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--gold);
}
.not-found__code {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: clamp(5rem, 14vw, 9rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1;
	color: var(--gold);
	opacity: 0.18;
}
.not-found__ornament {
	color: var(--gold);
	opacity: 0.5;
	flex-shrink: 0;
}
.not-found__content {
	grid-column: 1;
	grid-row: 2;
}
.not-found__content h1 {
	margin-top: 0.25rem;
}
.not-found__links {
	grid-column: 2;
	grid-row: 1 / 3;
	border-left: 1px solid var(--line);
	padding-left: 3rem;
	align-self: start;
	position: sticky;
	top: 6rem;
}
.not-found__links-title {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink-muted);
	margin-bottom: 1rem;
}
.not-found__links-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.not-found__links-list a {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	padding: 0.65rem 0.75rem;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.15s;
}
.not-found__links-list a:hover {
	background: var(--bg-muted);
}
.not-found__links-list a:focus-visible {
	outline: 2px solid #1F4F7A;
	outline-offset: 2px;
	border-radius: 8px;
}
.not-found__link-label {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--ink);
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.not-found__link-desc {
	font-size: 0.78rem;
	color: var(--ink-muted);
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

@media (max-width: 700px) {
	.not-found {
		grid-template-columns: 1fr;
	}
	.not-found__links {
		grid-column: 1;
		grid-row: auto;
		border-left: none;
		border-top: 1px solid var(--line);
		padding-left: 0;
		padding-top: 2rem;
		position: static;
	}
	.not-found__links-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 400px) {
	.not-found__links-list {
		grid-template-columns: 1fr;
	}
}

/* ─── Transition de page ────────────────────────────── */
#page-transition {
	position: fixed;
	inset: 0;
	z-index: 99999;
	pointer-events: none;
}
#page-transition .pt-layer {
	position: absolute;
	inset: 0;
	transform: translateX(-105%);
	transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1);
	will-change: transform;
}
#page-transition .pt-layer:nth-child(1) { background: #f5efe6; transition-delay: 0s;    }
#page-transition .pt-layer:nth-child(2) { background: #d4b483; transition-delay: 0.06s; }
#page-transition .pt-layer:nth-child(3) { background: #A58B57; transition-delay: 0.12s; }
#page-transition .pt-layer:nth-child(4) { background: #0c1e33; transition-delay: 0.18s; }

/* Entrée : tous les panneaux glissent vers la droite (couvrent la page) */
#page-transition.slide-in .pt-layer {
	transform: translateX(0);
}

/* Sortie : panneaux repartent vers la droite en ordre inverse */
#page-transition.slide-out .pt-layer {
	transform: translateX(105%);
}
#page-transition.slide-out .pt-layer:nth-child(1) { transition-delay: 0.18s; }
#page-transition.slide-out .pt-layer:nth-child(2) { transition-delay: 0.12s; }
#page-transition.slide-out .pt-layer:nth-child(3) { transition-delay: 0.06s; }
#page-transition.slide-out .pt-layer:nth-child(4) { transition-delay: 0s;    }

/* ─── Ornements SVG — rotation scroll ──────────────── */
.section-ornament svg {
	transition: none; /* géré par rAF */
	display: block;
	flex-shrink: 0;
}

/* ─── Titres révélés mot par mot ────────────────────── */
.split-title .word {
	display: inline-block;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}
.split-title.is-revealed .word {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	#page-transition .pt-layer {
		transition: none;
	}
	.split-title .word {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ─── Barre de progression de lecture ───────────────── */
#read-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: var(--gold);
	z-index: 99998;
	transition: width 0.1s linear;
	pointer-events: none;
	transform-origin: left;
}

/* ─── Header glassmorphism au scroll ─────────────────── */
/* Une seule surface clip-pathée (cercle + barre) → zéro double-blur */
.header-glass-surface {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	opacity: 0;
	background: transparent;
	/* clip-path est injecté dynamiquement par JS */
	transition:
		opacity 0.35s ease,
		background 0.35s ease,
		box-shadow 0.35s ease;
}
.site-header .header-bar {
	position: relative;
	z-index: 1;
	transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header .site-logo-circle {
	transition: background 0.35s ease;
}
/* Surface visible dès le chargement (fond blanc solide, forme SVG déjà en place) */
.site-header.surface-ready .header-glass-surface {
	opacity: 1;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.site-header.surface-ready .header-bar {
	background: transparent;
	box-shadow: none;
}
.site-header.surface-ready .site-logo-circle {
	background: transparent;
}
/* Au scroll — bascule vers le glassmorphism (override surface-ready, même élément, +1 classe) */
.site-header.is-scrolled .header-glass-surface {
	opacity: 1;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}
.site-header.is-scrolled .header-bar {
	background: transparent;
	box-shadow: none;
}
.site-header.is-scrolled .site-logo-circle {
	background: transparent;
}

/* ─── Images — zoom à l'entrée viewport ─────────────── */
.img-zoom-wrap {
	overflow: hidden;
}
.img-zoom-wrap img {
	transform: scale(1.07);
	transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: block;
	width: 100%;
}
.img-zoom-wrap.is-revealed img {
	transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
	#read-progress { transition: none; }
	.img-zoom-wrap img { transition: none; transform: scale(1); }
	.site-header .header-bar,
	.site-header .site-logo-circle,
	.header-glass-surface { transition: none; }
}

/* ─── Performance mobile — désactive backdrop-filter ── */
@media (max-width: 768px) {
	.site-header.is-scrolled .header-glass-surface {
		background: rgba(255, 255, 255, 0.96);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
	.header-lang-bar__inner {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(255, 255, 255, 0.98);
	}
}

/* ─── Image shapes — brise la grille rectangulaire ────── */
.img-wrap--angled {
	clip-path: polygon(0 0, 100% 0, 100% 88%, 90% 100%, 0 100%);
	overflow: hidden;
}
.img-wrap--angled img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.img-wrap--arch {
	clip-path: ellipse(54% 50% at 50% 50%);
	overflow: hidden;
}
.img-wrap--arch img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ─── Page hero — variante minimale ───────────────────── */
/* Hauteur réduite, titre plus grand, sans lead text */
.page-hero--minimal {
	min-height: 280px;
}
.page-hero--minimal .page-hero__inner {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	max-width: 800px;
}
.page-hero--minimal .page-hero__title {
	font-size: clamp(2.4rem, 5.5vw, 4rem);
	margin-bottom: 0;
}
.page-hero--minimal .page-hero__lead {
	display: none;
}
.page-hero--minimal .page-hero__actions {
	margin-top: 1rem;
}
.page-hero--minimal::after {
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.65) 0%,
		rgba(0, 0, 0, 0.35) 60%,
		rgba(0, 0, 0, 0.1) 100%
	);
}

/* ── Hero — animations d'entrée ──────────────────────────────────── */
@keyframes heroFadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroRevealButtons {
	0%   { opacity: 0;   transform: translateY(-28px); }
	30%  { opacity: 0.7; }
	100% { opacity: 1;   transform: translateY(0); }
}
@keyframes heroGoldLine {
	from { transform: scaleX(0); opacity: 0; }
	to   { transform: scaleX(1); opacity: 1; }
}
@keyframes heroDecorFade {
	from { opacity: 0; }
	to   { opacity: 1; }
}
/* SVG draw — SANCTUAIRE */
.hero-svg-sanctuaire {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}
.hero-svg-text {
	font-family: inherit;
	font-weight: 700;
	font-size: 155px;
	letter-spacing: -2px;
	fill: transparent;
	stroke: #fff;
	stroke-width: 1;
	stroke-linejoin: round;
	paint-order: stroke fill;
	stroke-dasharray: 4000;
	stroke-dashoffset: 4000;
	animation:
		heroDrawStroke 1.2s ease 0.7s forwards,
		heroFillText   0.4s ease 1.5s forwards;
}
@keyframes heroDrawStroke {
	to { stroke-dashoffset: 0; }
}
@keyframes heroFillText {
	to { fill: #fff; }
}

/* Reveal Notre-Dame de la Trinité */
.hero-sub-reveal {
	overflow: hidden;
	line-height: 0.6;
	/* Marge haute et basse pour ne pas rogner l'accent du « é » ni le bas des lettres.
	   Les marges négatives compensent : la position à l'écran ne bouge pas. */
	padding-top: 0.4em;
	padding-bottom: 0.18em;
	margin-top: -0.4em;
	margin-bottom: -0.18em;
}
.hero-title__sub {
	display: block;
	animation: heroSubReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.9s both;
}
@keyframes heroSubReveal {
	from { transform: translateY(120%); opacity: 0; }
	to   { transform: translateY(0);    opacity: 1; }
}
.home-hero__ctas-reveal {
	overflow: hidden;
	padding-top: 2px;
}
.home-hero__ctas {
	animation: heroRevealButtons 0.55s cubic-bezier(0.22, 1, 0.36, 1) 2.5s both;
}

/* ── Home hero — ligne dorée ─────────────────────────────────────── */
.home-hero__gold-line {
	width: 72px;
	height: 1px;
	background: var(--gold);
	margin: 1rem auto 0;
	transform-origin: center;
	animation: heroGoldLine 0.6s cubic-bezier(0.22, 1, 0.36, 1) 2.1s both;
}

/* ── Préparer son pèlerinage — cartes des salles (mobile first) ───── */
.room-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 2.5rem;
}
.room-card {
	display: flex;
	flex-direction: column;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.room-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: var(--gold);
}
.room-card__media {
	margin: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--gold-tint);
}
.room-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.room-card:hover .room-card__media img {
	transform: scale(1.04);
}

/* Galerie de salle — slides empilés + flèches */
.room-gallery {
	position: relative;
	width: 100%;
	height: 100%;
}
.room-gallery__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
}
.room-gallery__slide.is-active {
	opacity: 1;
}
.room-card:hover .room-gallery__slide.is-active {
	transform: scale(1.04);
}
.room-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(9, 22, 36, 0.45);
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.25s ease, background 0.2s ease;
}
.room-card:hover .room-gallery__nav,
.room-gallery__nav:focus-visible {
	opacity: 1;
}
.room-gallery__nav:hover {
	background: rgba(9, 22, 36, 0.7);
}
.room-gallery__nav--prev { left: 0.6rem; }
.room-gallery__nav--next { right: 0.6rem; }
@media (hover: none) {
	.room-gallery__nav { opacity: 1; }
}
.room-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1.5rem;
}
.room-card__title {
	margin: 0;
	font-size: clamp(1.15rem, 1.8vw, 1.35rem);
	line-height: 1.25;
	color: var(--ink);
}
.room-card__capacity {
	display: inline-flex;
	align-self: flex-start;
	margin: 0;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	background: var(--gold-tint);
	color: var(--gold);
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.room-card__text {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

@media (min-width: 720px) {
	.room-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── Accueil — invitation au pèlerinage ──────────────────────────── */
.home-pilgrimage {
	align-items: center;
}
.home-pilgrimage__visual {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.home-pilgrimage__visual img {
	width: 100%;
	height: 100%;
	max-height: 420px;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.home-pilgrimage__visual:hover img {
	transform: scale(1.03);
}
.home-pilgrimage__slideshow {
	position: relative;
	width: 100%;
	max-height: 420px;
	aspect-ratio: 4 / 3;
}
.home-pilgrimage__slideshow .home-pilgrimage__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-height: 420px;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.4s ease, transform 0.6s ease;
	will-change: opacity;
}
.home-pilgrimage__slideshow .home-pilgrimage__slide.is-active {
	opacity: 1;
}
.home-pilgrimage__content .section-lead {
	margin-top: 0.6rem;
	max-width: 56ch;
}

/* ── Bouton compact (réutilisable) ───────────────────── */
.button--small {
	padding: 0.4rem 0.9rem;
	font-size: 0.8125rem;
}

/* ── Espace abonné Calaméo ───────────────────────────── */
.abonne-alert {
	border-radius: 8px;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	margin-bottom: 1.25rem;
}
.abonne-alert--error {
	background: #fdeeee;
	border: 1px solid #e0b4b4;
	color: #9a2a2a;
}

/* Connexion : carte centrée */
.abonne-auth-section {
	display: flex;
	justify-content: center;
}
.abonne-auth {
	width: 100%;
	max-width: 460px;
}
.abonne-auth__card {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 2.5rem 2rem 2rem;
	box-shadow: 0 24px 60px -32px rgba(31, 41, 51, 0.45);
	text-align: center;
	overflow: hidden;
}
.abonne-auth__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.abonne-auth__emblem {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 1.1rem;
	border-radius: 50%;
	color: var(--gold);
	background: var(--gold-tint);
	border: 1px solid rgba(165, 139, 87, 0.28);
}
.abonne-auth__kicker {
	margin: 0 0 0.35rem;
	font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
}
.abonne-auth__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.4rem, 2.4vw, 1.7rem);
}
.abonne-auth__intro {
	margin: 0 auto 1.6rem;
	max-width: 34ch;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--ink-muted);
}
.abonne-auth__form {
	display: flex;
	flex-direction: column;
	gap: 1.05rem;
	text-align: left;
}
.abonne-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.abonne-field label {
	font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--ink);
}
.abonne-field input {
	width: 100%;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: 9px;
	font-size: 0.95rem;
	background: #fcfbf8;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.abonne-field input:focus {
	outline: none;
	background: #fff;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(165, 139, 87, 0.16);
}
.abonne-password {
	position: relative;
	display: flex;
	align-items: center;
}
.abonne-password input {
	padding-right: 3rem;
}
.abonne-password__toggle {
	position: absolute;
	right: 0.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	color: var(--ink-muted);
	cursor: pointer;
	border-radius: 8px;
	transition: color 0.2s ease, background 0.2s ease;
}
.abonne-password__toggle:hover,
.abonne-password__toggle:focus-visible {
	color: var(--gold);
	background: var(--gold-tint);
}
.abonne-auth__submit {
	justify-content: center;
	width: 100%;
	margin-top: 0.25rem;
	padding-top: 0.7rem;
	padding-bottom: 0.7rem;
}
.abonne-auth__help {
	margin: 1.5rem 0 0;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
	font-size: 0.875rem;
	color: var(--ink-muted);
}

/* Espace connecté : en-tête + grille */
.abonne-head {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 1.4rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--line);
}
.abonne-head__intro .kicker {
	margin-bottom: 0.3rem;
}
.abonne-head__title {
	margin: 0;
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}
.abonne-logout {
	margin: 0;
}
.abonne-logout__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.5rem 1rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--ink);
	font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.abonne-logout__btn:hover,
.abonne-logout__btn:focus-visible {
	border-color: var(--gold);
	color: var(--gold);
	background: var(--gold-tint);
}
.abonne-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 2rem 1.6rem;
}
.abonne-card {
	display: flex;
	flex-direction: column;
}
.abonne-card__cover {
	position: relative;
	display: block;
	aspect-ratio: 637 / 835;
	border-radius: 10px;
	background: var(--gold-tint);
	overflow: hidden;
	box-shadow: 0 14px 30px -18px rgba(31, 41, 51, 0.5);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.abonne-card__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.abonne-card__veil {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to top, rgba(20, 28, 38, 0.55), rgba(20, 28, 38, 0.05) 55%, transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.abonne-card__veil-label {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	color: #fff;
	font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	transform: translateY(8px);
	transition: transform 0.3s ease;
}
.abonne-card__cover:hover,
.abonne-card__cover:focus-visible {
	transform: translateY(-5px);
	box-shadow: 0 22px 40px -20px rgba(31, 41, 51, 0.6);
}
.abonne-card__cover:hover .abonne-card__veil,
.abonne-card__cover:focus-visible .abonne-card__veil {
	opacity: 1;
}
.abonne-card__cover:hover .abonne-card__veil-label,
.abonne-card__cover:focus-visible .abonne-card__veil-label {
	transform: translateY(0);
}
.abonne-card__cover:hover img,
.abonne-card__cover:focus-visible img {
	transform: scale(1.05);
}
.abonne-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	padding: 0.9rem 0.1rem 0;
}
.abonne-card__title {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.25;
}
.abonne-card__meta {
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-size: 0.78rem;
	color: var(--ink-muted);
}
.abonne-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.55rem;
	font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gold);
	text-decoration: none;
}
.abonne-card__link svg {
	transition: transform 0.2s ease;
}
.abonne-card__link:hover svg,
.abonne-card__link:focus-visible svg {
	transform: translateX(3px);
}
.abonne-empty {
	text-align: center;
	padding: 3rem 1rem;
	border: 1px dashed var(--line);
	border-radius: 12px;
	color: var(--ink-muted);
}
.abonne-note {
	margin-top: 2rem;
	font-size: 0.82rem;
	color: var(--ink-muted);
}
@media (prefers-reduced-motion: no-preference) {
	.abonne-card {
		opacity: 0;
		transform: translateY(12px);
		animation: abonne-card-in 0.5s ease forwards;
		animation-delay: calc(var(--i, 0) * 60ms);
	}
}
@keyframes abonne-card-in {
	to { opacity: 1; transform: translateY(0); }
}
