/* =========================================================================
   PAROLES DIVINES — Design system
   Palette strictement issue du logo (croix brune, flamme or/orange, livre bleu).
   ========================================================================= */

:root{
	--brun: #3B2A1E;
	--brun-70: #5b4636;
	--brun-40: #8a7666;
	--or: #E8A628;
	--orange: #F4C542;
	--bleu: #2E6DA4;
	--bleu-clair: #EAF3FB;
	--blanc: #FFFFFF;

	--gradient-flame: linear-gradient(135deg, var(--brun) 0%, var(--or) 60%, var(--orange) 100%);
	--gradient-flame-soft: linear-gradient(135deg, var(--or) 0%, var(--orange) 100%);

	--text: var(--brun);
	--text-soft: var(--brun-70);
	--bg: #F7FAFD;
	--bg-alt: var(--bleu-clair);
	--bg-warm: #FDFBF7;

	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--radius: 18px;
	--radius-sm: 10px;
	--shadow-sm: 0 2px 10px rgba(59,42,30,.08);
	--shadow-md: 0 10px 30px rgba(59,42,30,.12);
	--shadow-lg: 0 24px 60px rgba(59,42,30,.18);

	--header-h: 118px;
	--announce-h: 40px;
	--ease: cubic-bezier(.22,1,.36,1);
}

@media (max-width: 782px){
	:root{ --header-h: 86px; }
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--announce-h) + 16px); max-width: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce){
	html{ scroll-behavior: auto; }
	*, *::before, *::after{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

body{
	margin: 0;
	font-family: var(--font-body);
	color: var(--text);
	background: var(--bg);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: var(--bleu); text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }

h1,h2,h3,h4{ font-family: var(--font-display); color: var(--brun); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; }
h1{ font-size: clamp(2.1rem, 4.6vw, 3.6rem); letter-spacing: .01em; }
h2{ font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3{ font-size: clamp(1.15rem, 2vw, 1.4rem); }
p{ margin: 0 0 1em; }

.pd-skip-link{ position: absolute; left: -999px; top: 0; background: var(--brun); color: #fff; padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0; }
.pd-skip-link:focus{ left: 0; }

.pd-wrap{ max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 900px){ .pd-wrap{ padding: 0 32px; } }

/* Contenu WordPress natif (pages simples) ------------------------------- */
.pd-content{ max-width: 780px; margin: 0 auto; padding: 64px 20px 100px; }
.pd-content h2{ margin-top: 1.4em; }
.pd-content ul{ list-style: disc; padding-left: 1.3em; margin-bottom: 1em; }
.pd-content li{ margin-bottom: .4em; }
.pd-content a{ text-decoration: underline; text-underline-offset: 3px; }
.pd-content blockquote{ border-left: 4px solid var(--or); margin: 1.6em 0; padding: .2em 0 .2em 1.4em; font-style: italic; color: var(--text-soft); }
.pd-content figure{ margin: 2em 0; }
.pd-content figure img{ border-radius: var(--radius); }
.pd-content figcaption{ text-align: center; font-size: .85rem; color: var(--text-soft); margin-top: .6em; }

/* =========================================================================
   Bandeau d'urgence + header
   ========================================================================= */
.pd-announce{
	background: var(--gradient-flame);
	background-size: 220% 220%;
	animation: pd-gradient-shift 9s ease-in-out infinite;
	color: #fff;
	font-size: .82rem;
	font-weight: 600;
	height: var(--announce-h);
	display: flex;
	align-items: center;
	overflow: hidden;
	position: relative;
	z-index: 60;
}
/* Bandeau défilant en continu, lentement — contenu dupliqué une fois pour boucler
   sans coupure (translateX(-50%) ramène exactement au point de départ visuel). */
.pd-announce__track{
	display: flex; align-items: center; gap: 64px;
	width: max-content;
	animation: pd-announce-scroll 32s linear infinite;
	padding-left: 32px;
}
.pd-announce__track:hover{ animation-play-state: paused; }
@keyframes pd-announce-scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.pd-announce__group{ display: flex; align-items: center; gap: 14px; white-space: nowrap; flex-shrink: 0; }
.pd-announce__badge{
	display: inline-flex; align-items: center; gap: 5px;
	background: #fff; color: var(--brun); font-weight: 800; font-size: .86rem;
	padding: 6px 15px; border-radius: 20px; letter-spacing: .01em;
	box-shadow: 0 2px 6px rgba(0,0,0,.15);
	animation: pd-badge-pulse 2.6s ease-in-out infinite;
}
@keyframes pd-badge-pulse{
	0%, 100%{ box-shadow: 0 2px 6px rgba(0,0,0,.15), 0 0 0 0 rgba(255,255,255,.55); }
	50%{ box-shadow: 0 2px 6px rgba(0,0,0,.15), 0 0 0 7px rgba(255,255,255,0); }
}
.pd-announce__link{ color: #fff; text-decoration: underline; text-underline-offset: 2px; font-weight: 700; }
@media (prefers-reduced-motion: reduce){ .pd-announce__track{ animation: none; } }

.pd-header{
	position: sticky; top: 0; z-index: 58;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(59,42,30,.08);
	transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.pd-header.is-scrolled{ box-shadow: var(--shadow-sm); }
.pd-header__inner{ display: flex; align-items: center; gap: 14px; min-height: var(--header-h); padding-block: 10px; }

.pd-logo{ display: flex; align-items: center; gap: 10px; flex-shrink: 1; min-width: 0; }
.pd-logo img{ width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.pd-logo__text{ display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.pd-logo__eyebrow{ font-size: .6rem; text-transform: uppercase; letter-spacing: .07em; color: var(--bleu); font-weight: 700; white-space: nowrap; }
.pd-logo__name{
	font-family: var(--font-display); font-weight: 800; font-size: 1.08rem; color: var(--brun);
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* Mobile uniquement : le nom se déplie toujours en 2 lignes fixes — "Ministère" puis
   "Paroles Divines" (pas un retour à la ligne naturel imprévisible), logo légèrement
   plus grand, et le header gagne une marge latérale propre (logo et bouton menu ne
   collent plus aux bords de l'écran). */
@media (max-width: 600px){
	.pd-logo__name{ white-space: normal; line-height: 1.15; overflow: visible; text-overflow: clip; }
	.pd-logo__w2{ display: block; white-space: nowrap; overflow: visible; }
	.pd-header__inner{ padding-inline: 26px; }
}
@media (max-width: 1420px){ .pd-logo__eyebrow{ display:none; } }
@media (max-width: 480px){ .pd-logo__name{ font-size: .95rem; } .pd-logo img{ width:46px; height:46px; } .pd-header__inner{ padding-inline: 20px; } }
@media (max-width: 360px){ .pd-logo__name{ font-size: .88rem; } }
@media (max-width: 340px){
	.pd-logo img{ width: 42px; height: 42px; }
	.pd-header__inner{ padding-inline: 16px; }
}

/* Les actions (bouton Don + burger) ne rétrécissent et ne disparaissent jamais :
   ce sont les seuls contrôles pour naviguer sur mobile, le logo cède la place.
   Le bouton Don garde son texte complet "Faire un Don" (sans icône) à toute
   taille, juste réduit progressivement pour rester compact. */
.pd-header__actions{ display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.pd-header__actions .pd-btn--sm{ padding: 9px 12px; font-size: .8rem; white-space: nowrap; }
@media (max-width: 430px){ .pd-header__actions .pd-btn--sm{ padding: 8px 10px; font-size: .74rem; } }
@media (max-width: 360px){ .pd-header__actions .pd-btn--sm{ padding: 7px 8px; font-size: .68rem; } }
@media (max-width: 340px){
	.pd-header__inner{ gap: 8px; }
	.pd-header__actions{ gap: 6px; }
	.pd-header__actions .pd-btn--sm{ padding: 6px 7px; font-size: .62rem; }
	.pd-logo{ gap: 7px; }
}

/* Nav desktop ------------------------------------------------------------ */
.pd-nav{ margin-left: auto; }
.pd-nav__menu{ display: flex; align-items: center; gap: 1px; }
.pd-nav__menu > .menu-item > .menu-link{
	display: flex; align-items: center; gap: 3px;
	padding: 9px 8px; border-radius: var(--radius-sm);
	font-weight: 600; font-size: .85rem; color: var(--brun);
	transition: background .2s, color .2s;
	white-space: nowrap;
}
@media (min-width: 1420px){
	.pd-nav__menu{ gap: 4px; }
	.pd-nav__menu > .menu-item > .menu-link{ padding: 10px 12px; font-size: .93rem; gap: 4px; }
	.pd-header__inner{ gap: 20px; }
	.pd-header__actions{ gap: 14px; }
	.pd-header__actions .pd-btn--sm{ padding: 11px 18px; font-size: .86rem; }
	.pd-logo{ gap: 12px; }
	.pd-logo img{ width: 52px; height: 52px; }
	.pd-logo__name{ font-size: 1.15rem; }
}
.pd-nav__menu > .menu-item > .menu-link:hover,
.pd-nav__menu > .menu-item.current-menu-item > .menu-link{ background: var(--bg-alt); color: var(--bleu); }
.pd-nav__menu .submenu-toggle{ display: none; }

.pd-nav__menu .menu-item.has-children{ position: relative; }
.pd-nav__menu .menu-item.has-children > .menu-link::after{
	content: ''; width: 7px; height: 7px; margin-left: 2px;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: rotate(45deg); transition: transform .2s;
}
.pd-nav__menu .menu-item.has-children:hover > .menu-link::after{ transform: rotate(225deg); }

.pd-nav__menu .sub-menu{
	position: absolute; top: 100%; left: 0; min-width: 260px;
	background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
	padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
	border: 1px solid rgba(59,42,30,.06);
}
.pd-nav__menu .menu-item.has-children:hover > .sub-menu,
.pd-nav__menu .menu-item.has-children:focus-within > .sub-menu{ opacity: 1; visibility: visible; transform: translateY(0); }
.pd-nav__menu .sub-menu .menu-link{ display: block; padding: 10px 12px; border-radius: 8px; font-weight: 500; font-size: .92rem; color: var(--text-soft); }
.pd-nav__menu .sub-menu .menu-link:hover{ background: var(--bg-alt); color: var(--bleu); }

/* Burger + mobile nav ------------------------------------------------------ */
.pd-burger{ display: none; width: 42px; height: 42px; border: none; background: var(--bg-alt); border-radius: 10px; position: relative; cursor: pointer; }
.pd-burger span{ position: absolute; left: 10px; right: 10px; height: 2px; background: var(--brun); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.pd-burger span:nth-child(1){ top: 14px; }
.pd-burger span:nth-child(2){ top: 20px; }
.pd-burger span:nth-child(3){ top: 26px; }
.pd-burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.pd-burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.pd-burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.pd-nav-overlay{ position: fixed; inset: 0; background: rgba(20,14,9,.5); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 55; }
.pd-nav-overlay.is-visible{ opacity: 1; visibility: visible; }

@media (max-width: 1180px){
	.pd-burger{ display: block; }
	.pd-nav{
		position: fixed; top: 0; right: 0; height: 100dvh; width: min(360px, 86vw);
		background: #fff; z-index: 60; padding: 24px 22px 24px;
		transform: translateX(100%); transition: transform .35s var(--ease);
		overflow-y: auto; box-shadow: var(--shadow-lg);
	}
	.pd-nav.is-open{ transform: translateX(0); }
	.pd-nav__menu{ flex-direction: column; align-items: stretch; gap: 2px; }
	.pd-nav__menu > .menu-item > .menu-link{ padding: 14px 10px; font-size: 1.02rem; justify-content: space-between; }
	.pd-nav__menu .menu-item.has-children{ display: grid; grid-template-columns: 1fr 42px; align-items: center; }
	.pd-nav__menu .menu-item.has-children > .menu-link{
		min-width: 0; overflow: hidden; text-overflow: ellipsis;
	}
	.pd-nav__menu .menu-item.has-children > .menu-link span{ overflow: hidden; text-overflow: ellipsis; }
	.pd-nav__menu .menu-item.has-children > .menu-link::after{ display: none; }
	.pd-nav__menu .submenu-toggle{ display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: none; border: none; color: var(--brun); cursor: pointer; }
	.pd-nav__menu .submenu-toggle svg{ transition: transform .25s var(--ease); }
	.pd-nav__menu .menu-item.has-children.is-open .submenu-toggle svg{ transform: rotate(180deg); }
	.pd-nav__menu .sub-menu{
		position: static; box-shadow: none; border: none; width: 100%; padding: 0 0 0 12px;
		max-height: 0; overflow: hidden; opacity: 1; visibility: visible; transform: none;
		transition: max-height .3s var(--ease);
	}
	.pd-nav__menu .menu-item.has-children.is-open > .sub-menu{ max-height: 600px; }
	.pd-nav__menu .sub-menu .menu-link{ padding: 10px; border-left: 2px solid var(--bg-alt); border-radius: 0; }
}

/* =========================================================================
   Boutons
   ========================================================================= */
.pd-btn{
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: .98rem;
	border: 2px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
	white-space: nowrap;
}
.pd-btn--primary{ background: var(--or); color: var(--brun); box-shadow: 0 8px 22px rgba(232,166,40,.35); }
.pd-btn--primary:hover{ background: var(--orange); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232,166,40,.45); }
.pd-btn--outline{ background: transparent; border-color: var(--bleu); color: var(--bleu); }
.pd-btn--outline:hover{ background: var(--bleu); color: #fff; transform: translateY(-2px); }
.pd-btn--outline-white{ background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.pd-btn--outline-white:hover{ background: #fff; color: var(--brun); }
.pd-btn--white{ background: #fff; color: var(--brun); }
.pd-btn--white:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pd-btn--whatsapp{ background: #25D366; color: #fff; }
.pd-btn--whatsapp:hover{ background: #1ebe5b; transform: translateY(-2px); }
.pd-btn--sm{ padding: 11px 18px; font-size: .86rem; }
.pd-btn--wide{ width: 100%; }
.pd-btn:active{ transform: translateY(0); }

.pd-eyebrow{
	display: inline-block; font-family: var(--font-body); font-weight: 800; font-size: .78rem;
	letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
	background: var(--bg-alt); color: var(--bleu); margin-bottom: 16px;
}
.pd-eyebrow--gradient{ background: var(--gradient-flame); color: #fff; }
.pd-eyebrow--onlight{ background: rgba(255,255,255,.18); color: #fff; }

.pd-link{ font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: 4px; }

/* =========================================================================
   Sections
   ========================================================================= */
.pd-section{ padding: 88px 0; position: relative; }
.pd-section--sm{ padding: 56px 0; }
.pd-section--alt{ background: var(--bg-alt); }
.pd-section--dark{ background: linear-gradient(180deg, var(--brun) 0%, #2a1d13 100%); color: #fff; }
.pd-section--dark h2, .pd-section--dark h3{ color: #fff; }
.pd-section--dark p{ color: rgba(255,255,255,.82); }
.pd-section-head{ text-align: center; max-width: 720px; margin: 0 auto 52px; }
.pd-section-head p{ color: var(--text-soft); font-size: 1.05rem; }
.pd-section--dark .pd-section-head p{ color: rgba(255,255,255,.75); }

@media (max-width: 600px){ .pd-section{ padding: 60px 0; } }

/* Hero --------------------------------------------------------------------*/
.pd-hero{
	position: relative; overflow: hidden;
	background: linear-gradient(150deg, var(--brun) 0%, #513a26 100%);
	color: #fff; padding: 90px 0 110px;
	isolation: isolate;
}
.pd-hero::before, .pd-hero::after{
	content: ''; position: absolute; border-radius: 50%; filter: blur(90px); z-index: -1; opacity: .3;
	animation: pd-float 14s ease-in-out infinite;
}
.pd-hero::before{ width: 520px; height: 520px; background: var(--or); top: -220px; right: -160px; }
.pd-hero::after{ width: 420px; height: 420px; background: var(--bleu); bottom: -200px; left: -140px; animation-delay: -6s; }
.pd-hero__accent{ position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--gradient-flame); z-index: 2; }
@keyframes pd-float{ 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-20px, 30px) scale(1.06);} }

.pd-hero__inner{ display: grid; gap: 40px; align-items: center; position: relative; z-index: 1; }
.pd-hero__eyebrow{ color: var(--orange); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; display: inline-block; margin-bottom: 18px; }
.pd-hero h1{ color: #fff; }
.pd-hero__subtitle{ font-size: 1.12rem; color: rgba(255,255,255,.85); max-width: 640px; margin-bottom: 30px; }
.pd-hero__cta{ display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.pd-hero__verse{
	font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
	border-left: 3px solid var(--or); padding-left: 18px; color: rgba(255,255,255,.75); max-width: 560px;
}

/* Stats ---------------------------------------------------------------- */
.pd-stats{ display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media (min-width: 760px){ .pd-stats{ grid-template-columns: repeat(4,1fr); } }
.pd-stat{ text-align: center; padding: 20px 10px; }
.pd-stat__num{ display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem,4vw,2.8rem); background: var(--gradient-flame); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pd-stat__label{ font-size: .85rem; color: var(--text-soft); font-weight: 600; }
.pd-section--dark .pd-stat__label{ color: rgba(255,255,255,.7); }

/* Grids / cards ---------------------------------------------------------- */
.pd-grid{ display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 640px){ .pd-grid--3{ grid-template-columns: repeat(2,1fr); } .pd-grid--4{ grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px){ .pd-grid--3{ grid-template-columns: repeat(3,1fr); } .pd-grid--4{ grid-template-columns: repeat(4,1fr); } }

.pd-card{
	background: #fff; border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm);
	border: 1px solid rgba(59,42,30,.06); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
	position: relative;
}
.pd-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pd-card__icon{ width: 52px; height: 52px; color: var(--or); margin-bottom: 16px; }
.pd-card__icon svg{ width: 100%; height: 100%; }
.pd-card__emoji{ font-size: 2.1rem; margin-bottom: 14px; }

/* Cartes avec photo (départements) ---------------------------------------- */
.pd-card--photo{ padding: 0; overflow: hidden; }
.pd-card__photo{ position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pd-card__photo img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pd-card--photo:hover .pd-card__photo img{ transform: scale(1.06); }
.pd-card__photo::after{ content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(59,42,30,.5) 0%, transparent 45%); }
.pd-card__photo-emoji{
	position: absolute; bottom: 12px; left: 14px; font-size: 1.5rem; z-index: 1;
	width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,.92); border-radius: 50%; box-shadow: var(--shadow-sm);
}
.pd-card--photo .pd-card__body{ padding: 24px 24px 28px; }
.pd-card__icon-badge{
	width: 56px; height: 56px; border-radius: 16px; background: var(--bg-alt); color: var(--bleu);
	display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 16px;
	transition: transform .3s var(--ease), background .3s var(--ease);
}
.pd-card--dept:not(.pd-card--photo):hover .pd-card__icon-badge{ transform: rotate(-6deg) scale(1.08); background: var(--gradient-flame-soft); }
.pd-card__day{ position: absolute; top: 22px; right: 24px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--bleu); background: var(--bg-alt); padding: 4px 10px; border-radius: 999px; }
.pd-card__title{ margin-bottom: 6px; font-size: 1.2rem; }
.pd-card__meta{ color: var(--or); font-weight: 700; font-size: .88rem; margin-bottom: 10px; }
.pd-card__text{ color: var(--text-soft); font-size: .94rem; margin-bottom: 0; }
.pd-card__actions{ display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.pd-tag{ display: inline-block; background: var(--bg-alt); color: var(--bleu); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; }

.pd-card--dept .pd-link, .pd-card--programme .pd-card__actions{ margin-top: 16px; }

/* Événement banner ---------------------------------------------------------*/
.pd-event-banner{
	background: var(--gradient-flame); border-radius: 28px; padding: 52px 40px; color: #fff;
	text-align: center; position: relative; overflow: hidden;
}
.pd-event-banner h3{ color: #fff; font-size: clamp(1.5rem,3vw,2.1rem); }
.pd-event-banner p{ max-width: 560px; margin: 0 auto 24px; color: rgba(255,255,255,.92); }
.pd-event-banner .pd-btn--primary{ background: #fff; color: var(--brun); }
.pd-event-banner .pd-btn--primary:hover{ background: var(--brun); color: #fff; }

/* Personnes / portraits --------------------------------------------------- */
.pd-people{ display: grid; gap: 40px; align-items: center; }
@media (min-width: 860px){ .pd-people{ grid-template-columns: 1fr 1fr; } .pd-people--reverse{ direction: rtl; } .pd-people--reverse > *{ direction: ltr; } }
.pd-people__photo{ border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.pd-people__photo img{ width: 100%; height: auto; }
.pd-people__quote{ font-family: var(--font-display); font-style: italic; font-size: 1.15rem; line-height: 1.5; }
.pd-people__sig{ font-weight: 700; color: var(--or); margin-top: 16px; }

/* Testimonials --------------------------------------------------------- */
.pd-testimonials{ position: relative; max-width: 780px; margin: 0 auto; overflow: hidden; }
.pd-testimonials__track{ display: flex; transition: transform .5s var(--ease); }
.pd-testimonial{ flex: 0 0 100%; text-align: center; padding: 10px 20px 0; margin: 0; }
.pd-testimonial__quote{ color: var(--or); margin: 0 auto 18px; }
.pd-testimonial blockquote{ margin: 0; font-family: var(--font-display); font-size: clamp(1.15rem,2.2vw,1.5rem); font-style: italic; line-height: 1.5; }
.pd-testimonial figcaption{ margin-top: 20px; display: flex; flex-direction: column; gap: 2px; }
.pd-testimonial figcaption span{ color: var(--text-soft); font-size: .85rem; }
.pd-section--dark .pd-testimonial figcaption span{ color: rgba(255,255,255,.65); }
.pd-testimonials__dots{ display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.pd-testimonials__dots button{ width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(59,42,30,.2); cursor: pointer; padding: 0; }
.pd-section--dark .pd-testimonials__dots button{ background: rgba(255,255,255,.25); }
.pd-testimonials__dots button.is-active{ background: var(--or); width: 22px; border-radius: 6px; }

/* Countdown -------------------------------------------------------------- */
.pd-countdown__units{ display: flex; gap: clamp(8px,2.6vw,14px); justify-content: center; flex-wrap: nowrap; }
.pd-countdown__unit{ background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 16px; padding: clamp(10px,3vw,16px) 4px; width: clamp(62px,20vw,84px); text-align: center; backdrop-filter: blur(6px); }
.pd-countdown__num{ display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(1.35rem,5.5vw,2rem); color: var(--orange); font-variant-numeric: tabular-nums; }
.pd-countdown__label{ font-size: clamp(.58rem,1.8vw,.7rem); text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.7); }
.pd-countdown__caption{ text-align: center; margin-top: 16px; color: rgba(255,255,255,.75); font-size: .92rem; }
.pd-countdown--light .pd-countdown__unit{ background: #fff; border-color: rgba(59,42,30,.1); box-shadow: var(--shadow-sm); }
.pd-countdown--light .pd-countdown__num{ color: var(--brun); }
.pd-countdown--light .pd-countdown__label,
.pd-countdown--light .pd-countdown__caption{ color: var(--text-soft); }

/* Programme timeline (convention) ---------------------------------------- */
.pd-timeline{ max-width: 820px; margin: 0 auto; position: relative; }
.pd-timeline::before{ content:''; position:absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--or), var(--bleu)); opacity:.35; }
@media (max-width: 640px){ .pd-timeline::before{ left: 19px; } }
.pd-timeline__item{ position: relative; padding-left: 68px; margin-bottom: 34px; }
@media (max-width: 640px){ .pd-timeline__item{ padding-left: 50px; } }
.pd-timeline__dot{ position: absolute; left: 0; top: 2px; width: 56px; height: 56px; border-radius: 50%; background: var(--gradient-flame); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .78rem; text-align: center; box-shadow: var(--shadow-sm); }
@media (max-width: 640px){ .pd-timeline__dot{ width: 40px; height: 40px; font-size: .62rem; } }
.pd-timeline__card{ background: #fff; border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-sm); border: 1px solid rgba(59,42,30,.06); }
.pd-timeline__day{ font-weight: 800; color: var(--bleu); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.pd-timeline__title{ font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-bottom: 6px; }
.pd-timeline__meta{ color: var(--or); font-weight: 700; font-size: .85rem; margin-bottom: 8px; }
.pd-timeline__text{ color: var(--text-soft); margin: 0; font-size: .94rem; }

/* Orateurs ---------------------------------------------------------------*/
.pd-speaker{ text-align: center; }
.pd-speaker__photo{ width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin-bottom: 16px; box-shadow: var(--shadow-sm); border: 4px solid var(--bg-alt); }
.pd-speaker__photo img{ width: 100%; height: 100%; object-fit: cover; }
.pd-speaker__name{ font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; margin-bottom: 2px; }
.pd-speaker__role{ color: var(--text-soft); font-size: .84rem; }

/* FAQ ---------------------------------------------------------------------*/
.pd-faq{ max-width: 760px; margin: 0 auto; }
.pd-faq__item{ border-bottom: 1px solid rgba(59,42,30,.1); }
.pd-faq__q{ width: 100%; text-align: left; background: none; border: none; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-weight: 700; font-size: 1.02rem; color: var(--brun); }
.pd-faq__q svg{ flex-shrink: 0; transition: transform .3s var(--ease); }
.pd-faq__item.is-open .pd-faq__q svg{ transform: rotate(45deg); }
.pd-faq__a{ max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.pd-faq__a p{ padding-bottom: 20px; color: var(--text-soft); margin: 0; }

/* Infos pratiques ----------------------------------------------------------*/
.pd-infos{ display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px){ .pd-infos{ grid-template-columns: repeat(2,1fr); } }
.pd-info{ display: flex; gap: 14px; align-items: flex-start; background: #fff; border-radius: var(--radius-sm); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.pd-info__icon{ font-size: 1.4rem; flex-shrink: 0; }
.pd-info strong{ display: block; margin-bottom: 3px; }
.pd-info span{ color: var(--text-soft); font-size: .92rem; }

/* Forms ---------------------------------------------------------------- */
.pd-form{ max-width: 560px; margin: 0 auto; background: #fff; border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow-md); }
.pd-section--dark .pd-form{ background: #fff; }
.pd-form label{ display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: .88rem; color: var(--brun); margin-bottom: 16px; }
.pd-form input[type="text"], .pd-form input[type="tel"], .pd-form input[type="email"], .pd-form select, .pd-form textarea{
	font-family: inherit; font-size: .96rem; padding: 12px 14px; border-radius: 10px; border: 1.5px solid rgba(59,42,30,.15);
	background: var(--bg-alt); color: var(--brun); transition: border-color .2s, background .2s;
}
.pd-form input:focus, .pd-form select:focus, .pd-form textarea:focus{ outline: none; border-color: var(--or); background: #fff; }
.pd-form textarea{ resize: vertical; min-height: 100px; }
.pd-form__row{ display: grid; gap: 16px; }
@media (min-width: 520px){ .pd-form__row{ grid-template-columns: 1fr 1fr; } }
.pd-form__fieldset{ border: none; padding: 0; margin: 0 0 16px; }
.pd-form__fieldset legend{ font-weight: 700; font-size: .88rem; margin-bottom: 10px; padding: 0; }
.pd-check{ flex-direction: row !important; align-items: center; gap: 8px !important; font-weight: 500 !important; }
.pd-check input{ width: 17px; height: 17px; accent-color: var(--or); }
.pd-form__note{ font-size: .8rem; color: var(--text-soft); text-align: center; margin-top: 14px; }
.pd-hp-wrap{ position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.pd-form-success{ max-width: 560px; margin: 0 auto 24px; background: var(--bg-alt); border-radius: var(--radius); padding: 24px; text-align: center; color: var(--bleu); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.pd-form-success svg{ color: #2f9e5c; }

/* Footer ------------------------------------------------------------------*/
.pd-footer{ background: var(--brun); color: rgba(255,255,255,.85); padding: 72px 0 0; }
.pd-footer__grid{ display: grid; gap: 40px; grid-template-columns: 1fr; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (min-width: 720px){ .pd-footer__grid{ grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.pd-footer h3{ color: #fff; font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 16px; }
.pd-footer__title{ font-family: var(--font-display); font-size: 1.05rem; color: #fff; margin: 16px 0 10px; }
.pd-footer__verse{ font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.pd-footer p{ margin-bottom: 8px; font-size: .92rem; }
.pd-footer a{ color: rgba(255,255,255,.85); }
.pd-footer a:hover{ color: var(--orange); }
.pd-social-link{ display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; }
.pd-footer__links li{ margin-bottom: 8px; font-size: .92rem; }
.pd-footer__hours{ font-size: .82rem; color: rgba(255,255,255,.6); }
.pd-footer__bottom{ display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; padding: 22px 0; font-size: .8rem; color: rgba(255,255,255,.5); }

/* Floating whatsapp + back to top ------------------------------------------*/
.pd-float-whatsapp{
	position: fixed; bottom: 22px; right: 22px; width: 58px; height: 58px; border-radius: 50%;
	background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 10px 26px rgba(37,211,102,.45); z-index: 70; animation: pd-pulse 2.6s infinite;
}
.pd-float-whatsapp:hover{ transform: scale(1.08); }
@keyframes pd-pulse{ 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 10px 26px rgba(37,211,102,.45);} 70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,.45);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,.45);} }

.pd-back-to-top{
	position: fixed; bottom: 22px; right: 90px; width: 44px; height: 44px; border-radius: 50%;
	background: #fff; color: var(--brun); border: 1px solid rgba(59,42,30,.12); box-shadow: var(--shadow-sm);
	display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 70;
	opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s var(--ease);
}
.pd-back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 600px){ .pd-back-to-top{ right: 82px; width: 40px; height: 40px; bottom: 18px; } .pd-float-whatsapp{ width: 52px; height: 52px; bottom: 18px; right: 18px; } }

/* Sticky mobile CTA (page convention) ------------------------------------ */
.pd-sticky-cta{
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; background: #fff;
	box-shadow: 0 -8px 24px rgba(59,42,30,.15); padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom,0px));
	display: flex; gap: 10px; align-items: center; justify-content: center;
	transform: translateY(120%); transition: transform .35s var(--ease);
}
.pd-sticky-cta.is-visible{ transform: translateY(0); }
.pd-sticky-cta .pd-btn{ flex: 1; padding: 13px 10px; font-size: .88rem; }
@media (min-width: 960px){ .pd-sticky-cta{ display: none; } }

/* Reveal on scroll ---------------------------------------------------------*/
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--delay, 0s); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* Titres animés (mot par mot) ------------------------------------------- */
.split-word{
	display: inline-block; opacity: 0; transform: translateY(.5em) rotate(1.5deg);
	transition: opacity .65s var(--ease), transform .65s var(--ease);
	transition-delay: calc(var(--i, 0) * 55ms);
}
.split-word.is-visible{ opacity: 1; transform: translateY(0) rotate(0); }

/* Eyebrow dégradé animé --------------------------------------------------- */
.pd-eyebrow--gradient{
	background-size: 220% 220%;
	animation: pd-gradient-shift 6s ease-in-out infinite;
}
@keyframes pd-gradient-shift{ 0%,100%{ background-position: 0% 50%; } 50%{ background-position: 100% 50%; } }

/* =========================================================================
   Zone titre de page — bandeau valorisé (même esprit que le site jumeau)
   ========================================================================= */
.pd-page-hero{
	position: relative; overflow: hidden;
	background: var(--brun);
	color: #fff; padding: 72px 0 52px; text-align: center;
}
.pd-page-hero.has-image{ background-size: cover; background-position: center; }
.pd-page-hero.has-image .pd-page-hero__overlay{
	position: absolute; inset: 0; z-index: 0;
	background: linear-gradient(180deg, rgba(59,42,30,.5) 0%, rgba(59,42,30,.88) 100%);
}
.pd-page-hero__accent{ position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--gradient-flame); z-index: 2; }
.pd-page-hero__inner{ position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.pd-page-hero__crumb{ font-size: .78rem; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.pd-page-hero__crumb a{ color: rgba(255,255,255,.8); }
.pd-page-hero h1{ color: #fff; margin-bottom: 12px; font-size: clamp(1.9rem, 4vw, 3rem); }
.pd-page-hero__lede{ color: rgba(255,255,255,.85); font-size: 1.05rem; margin: 0 auto; max-width: 60ch; }
.pd-page-hero__divider{ width: 64px; height: 3px; background: var(--gradient-flame-soft); margin: 20px auto 0; border-radius: 3px; }
@media (max-width: 600px){ .pd-page-hero{ padding: 52px 0 40px; } }

/* Utility -------------------------------------------------------------- */
.pd-center{ text-align: center; }
.pd-mt-lg{ margin-top: 48px; }
.pd-max-w{ max-width: 720px; margin-left: auto; margin-right: auto; }
.pd-two-col{ display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 780px){ .pd-two-col{ grid-template-columns: repeat(2,1fr); } }
