/* =====================================================
   Bishop Tazere Sahoua — Feuille de style principale
   Palette : bleu nuit #0b1531 · or #c9a24b · ivoire #f8f5ee
   ===================================================== */

:root {
	--navy: #0b1531;
	--navy-2: #122046;
	--navy-3: #1a2c5e;
	--gold: #c9a24b;
	--gold-light: #e3c878;
	--gold-dark: #a8843a;
	--ivory: #f8f5ee;
	--white: #ffffff;
	--text: #2b3040;
	--text-soft: #565d70;
	--line: #e8e2d4;
	--shadow: 0 18px 45px rgba(11, 21, 49, 0.16);
	--radius: 14px;
	--font-title: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-body: "Lato", "Segoe UI", Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.75;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--gold-dark);
	text-decoration: none;
	transition: color 0.25s ease;
}

a:hover {
	color: var(--navy);
}

h1,
h2,
h3 {
	font-family: var(--font-title);
	color: var(--navy);
	line-height: 1.2;
	margin: 0 0 0.6em;
}

.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.wrap-narrow {
	max-width: 860px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	left: 8px;
	top: 8px;
	width: auto;
	z-index: 100000;
	background: var(--gold);
	color: var(--navy);
	padding: 10px 18px;
	border-radius: 8px;
}

/* ---------- Boutons ---------- */

.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 15px 32px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-sm {
	padding: 11px 24px;
	font-size: 13px;
}

.btn-gold {
	background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
	color: var(--navy);
	box-shadow: 0 10px 26px rgba(201, 162, 75, 0.45);
}

.btn-gold:hover {
	transform: translateY(-2px);
	color: var(--navy);
	box-shadow: 0 14px 32px rgba(201, 162, 75, 0.55);
}

.btn-outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.7);
	color: var(--white);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	border-color: var(--white);
}

/* Sur fond clair (blog, pages) */
.section-page .btn-outline,
.post-card .btn-outline {
	border-color: var(--navy);
	color: var(--navy);
}

.section-page .btn-outline:hover,
.post-card .btn-outline:hover {
	background: var(--navy);
	color: var(--white);
}

/* ---------- En-tête ---------- */

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	padding: 18px 0;
	transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
	background: rgba(11, 21, 49, 0.97);
	backdrop-filter: blur(8px);
	box-shadow: 0 6px 24px rgba(11, 21, 49, 0.35);
	padding: 10px 0;
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-branding {
	margin-right: auto;
}

.brand-link {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand-monogram {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: 0.04em;
	color: var(--navy);
	background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
	box-shadow: 0 6px 16px rgba(201, 162, 75, 0.4);
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.brand-name {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 20px;
	color: var(--white);
}

.brand-tagline {
	font-size: 11.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-light);
}

.nav-list {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list a {
	display: block;
	padding: 9px 14px;
	font-size: 14.5px;
	font-weight: 400;
	letter-spacing: 0.03em;
	color: rgba(255, 255, 255, 0.88);
	border-radius: 8px;
}

.nav-list a:hover {
	color: var(--gold-light);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Héro ---------- */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 130px 0 90px;
	color: var(--white);
	background:
		linear-gradient(rgba(11, 21, 49, 0.82), rgba(9, 16, 38, 0.92)),
		var(--hero-photo) center 30% / cover no-repeat,
		linear-gradient(140deg, var(--navy), var(--navy-3));
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 5px;
	background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 60px;
	align-items: center;
}

.hero-eyebrow {
	display: inline-block;
	margin: 0 0 18px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold-light);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
	content: "—";
	margin: 0 10px;
	color: rgba(227, 200, 120, 0.6);
}

.hero-title {
	font-size: clamp(42px, 6vw, 72px);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 20px;
}

.hero-title em {
	display: block;
	font-style: italic;
	font-weight: 600;
	color: var(--gold-light);
}

.hero-subtitle {
	max-width: 540px;
	font-size: 19px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 36px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 48px;
}

.hero-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 38px;
	list-style: none;
	margin: 0;
	padding: 26px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts li {
	display: flex;
	flex-direction: column;
}

.fact-value {
	font-family: var(--font-title);
	font-size: 24px;
	font-weight: 700;
	color: var(--gold-light);
}

.fact-label {
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.hero-photo {
	position: relative;
}

.photo-frame {
	position: relative;
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.photo-frame::before {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(227, 200, 120, 0.65);
	border-radius: 8px;
	z-index: 2;
	pointer-events: none;
}

.photo-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

.hero-photo .photo-frame {
	border: 6px solid rgba(201, 162, 75, 0.35);
}

.hero-badge {
	position: absolute;
	left: -26px;
	bottom: 34px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	border-radius: 999px;
	background: var(--white);
	color: var(--navy);
	font-weight: 700;
	font-size: 13.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: var(--shadow);
}

.hero-badge svg {
	color: var(--gold);
}

.hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: var(--white);
	animation: bounce 2.4s infinite;
}

.hero-scroll:hover {
	border-color: var(--gold-light);
	color: var(--gold-light);
}

@keyframes bounce {
	0%,
	100% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, 8px);
	}
}

/* ---------- Bandeau verset ---------- */

.verse-band {
	background:
		radial-gradient(circle at 12% 20%, rgba(201, 162, 75, 0.16), transparent 42%),
		var(--navy-2);
	color: var(--ivory);
	padding: 64px 0;
	border-bottom: 1px solid rgba(201, 162, 75, 0.25);
}

.verse-inner {
	display: flex;
	align-items: flex-start;
	gap: 26px;
	max-width: 880px;
}

.verse-icon {
	flex: none;
	color: var(--gold);
	margin-top: 6px;
}

.verse-band blockquote {
	margin: 0;
}

.verse-band p {
	margin: 0;
	font-family: var(--font-title);
	font-size: clamp(21px, 2.6vw, 28px);
	font-style: italic;
	font-weight: 600;
	line-height: 1.5;
	color: var(--ivory);
}

.verse-band cite {
	display: block;
	margin-top: 14px;
	font-family: var(--font-body);
	font-style: normal;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-light);
}

/* ---------- Sections génériques ---------- */

.section {
	padding: 104px 0;
}

.section-head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}

.section-eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold-dark);
}

.section-title {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 700;
}

.section-rule {
	display: block;
	width: 88px;
	height: 3px;
	margin: 18px auto 0;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.section-head-light .section-eyebrow {
	color: var(--gold-light);
}

.section-head-light .section-title {
	color: var(--white);
}

.section-intro {
	margin: 22px auto 0;
	max-width: 620px;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 300;
}

/* ---------- Biographie ---------- */

.section-bio {
	background: var(--ivory);
}

.bio-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 64px;
	align-items: start;
}

.bio-media {
	position: relative;
}

.photo-frame-plain img {
	border-radius: var(--radius);
}

.bio-card {
	position: relative;
	z-index: 2;
	margin: -34px 26px 0;
	padding: 24px 26px;
	background: var(--white);
	border-radius: var(--radius);
	border-top: 3px solid var(--gold);
	box-shadow: var(--shadow);
}

.bio-card-title {
	margin: 0 0 12px;
	font-family: var(--font-title);
	font-size: 19px;
	font-weight: 700;
	color: var(--navy);
}

.bio-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bio-card li {
	padding: 8px 0 8px 24px;
	font-size: 15px;
	line-height: 1.55;
	border-bottom: 1px dashed var(--line);
	position: relative;
}

.bio-card li:last-child {
	border-bottom: 0;
}

.bio-card li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 16px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
}

.bio-content p {
	margin: 0 0 18px;
	color: var(--text-soft);
}

.bio-content .dropcap::first-letter {
	float: left;
	font-family: var(--font-title);
	font-size: 64px;
	font-weight: 700;
	line-height: 0.85;
	padding: 8px 12px 0 0;
	color: var(--gold-dark);
}

.bio-quote {
	margin: 30px 0 0;
	padding: 22px 28px;
	background: var(--white);
	border-left: 4px solid var(--gold);
	border-radius: 0 var(--radius) var(--radius) 0;
	box-shadow: 0 10px 26px rgba(11, 21, 49, 0.08);
}

.bio-quote p {
	margin: 0;
	font-family: var(--font-title);
	font-size: 20px;
	font-style: italic;
	font-weight: 600;
	color: var(--navy);
}

/* ---------- Parcours ---------- */

.section-parcours {
	background:
		radial-gradient(circle at 88% 10%, rgba(201, 162, 75, 0.08), transparent 45%),
		var(--white);
}

.timeline {
	list-style: none;
	position: relative;
	max-width: 880px;
	margin: 0 auto;
	padding: 10px 0;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	transform: translateX(-50%);
	background: linear-gradient(var(--gold-light), var(--gold), var(--gold-light));
	opacity: 0.6;
}

.timeline-item {
	position: relative;
	width: 50%;
	padding: 14px 44px 14px 0;
}

.timeline-item:nth-child(even) {
	margin-left: 50%;
	padding: 14px 0 14px 44px;
}

.timeline-marker {
	position: absolute;
	top: 30px;
	right: -21px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: var(--gold-dark);
	background: var(--white);
	border: 2px solid var(--gold);
	box-shadow: 0 8px 18px rgba(201, 162, 75, 0.35);
}

.timeline-item:nth-child(even) .timeline-marker {
	right: auto;
	left: -21px;
}

.timeline-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 28px;
	box-shadow: 0 12px 30px rgba(11, 21, 49, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(11, 21, 49, 0.14);
}

.timeline-date {
	margin: 0 0 6px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-dark);
}

.timeline-title {
	margin: 0 0 8px;
	font-size: 21px;
	font-weight: 700;
	color: var(--navy);
}

.timeline-text {
	margin: 0;
	font-size: 15.5px;
	color: var(--text-soft);
}

/* ---------- Valeurs ---------- */

.section-valeurs {
	background: var(--ivory);
}

.valeurs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}

.valeur-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 34px 26px;
	text-align: center;
	box-shadow: 0 12px 30px rgba(11, 21, 49, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.valeur-card:hover {
	transform: translateY(-6px);
	border-color: rgba(201, 162, 75, 0.6);
	box-shadow: 0 20px 44px rgba(11, 21, 49, 0.13);
}

.valeur-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: 18px;
	border-radius: 50%;
	color: var(--gold-dark);
	background: linear-gradient(145deg, rgba(227, 200, 120, 0.28), rgba(201, 162, 75, 0.14));
}

.valeur-title {
	margin: 0 0 10px;
	font-size: 21px;
	font-weight: 700;
}

.valeur-text {
	margin: 0;
	font-size: 15px;
	color: var(--text-soft);
}

/* ---------- Galerie ---------- */

.section-galerie {
	background: var(--white);
}

.galerie-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.galerie-item {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(11, 21, 49, 0.12);
}

.galerie-link {
	position: relative;
	display: block;
}

.galerie-link img {
	aspect-ratio: 4 / 5;
	object-fit: cover;
	width: 100%;
	transition: transform 0.5s ease;
}

.galerie-link::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(11, 21, 49, 0.72), transparent 55%);
	opacity: 0.9;
}

.galerie-link:hover img {
	transform: scale(1.05);
}

.galerie-caption {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 18px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--white);
	font-family: var(--font-title);
	font-size: 19px;
	font-weight: 600;
}

.galerie-caption svg {
	color: var(--gold-light);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.galerie-link:hover .galerie-caption svg {
	opacity: 1;
	transform: translateX(0);
}

/* ---------- Contact ---------- */

.section-contact {
	background:
		radial-gradient(circle at 85% 85%, rgba(201, 162, 75, 0.18), transparent 45%),
		linear-gradient(160deg, var(--navy), var(--navy-2));
	color: var(--white);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	max-width: 980px;
	margin: 0 auto;
}

.contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 38px 26px;
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.09);
	border-color: var(--gold);
	color: var(--white);
}

.contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	margin-bottom: 10px;
	border-radius: 50%;
	color: var(--gold-light);
	background: rgba(201, 162, 75, 0.14);
	border: 1px solid rgba(201, 162, 75, 0.45);
}

.contact-label {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.66);
}

.contact-value {
	font-family: var(--font-title);
	font-size: 26px;
	font-weight: 700;
	color: var(--white);
}

.contact-note {
	margin: 40px 0 0;
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.55);
}

/* ---------- Pied de page ---------- */

.site-footer {
	background: #080e21;
	color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr;
	gap: 48px;
	padding: 64px 24px 48px;
}

.footer-brand .brand-monogram {
	margin-bottom: 14px;
}

.footer-name {
	margin: 0 0 8px;
	font-family: var(--font-title);
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
}

.footer-tagline {
	margin: 0;
	font-style: italic;
	font-weight: 300;
	max-width: 340px;
}

.footer-title {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gold-light);
}

.footer-contact ul,
.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-contact li,
.footer-links li {
	margin: 0 0 10px;
}

.footer-contact a,
.footer-links a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 15.5px;
}

.footer-contact a:hover,
.footer-links a:hover {
	color: var(--gold-light);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 22px 0;
}

.footer-bottom .wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.footer-bottom p {
	margin: 0;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.55);
}

.footer-gloria {
	font-style: italic;
	color: rgba(227, 200, 120, 0.75) !important;
}

/* ---------- Blog / pages ---------- */

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.post-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(11, 21, 49, 0.08);
}

.post-thumb img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.post-body {
	padding: 26px;
}

.post-meta {
	margin: 0 0 8px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-dark);
}

.post-title {
	margin: 0 0 10px;
	font-size: 22px;
}

.post-excerpt {
	color: var(--text-soft);
	font-size: 15px;
	margin-bottom: 16px;
}

.no-posts {
	text-align: center;
	color: var(--text-soft);
}

.page-content {
	background: var(--white);
}

.page-content p {
	color: var(--text-soft);
}

.single-thumb {
	margin: 0 0 28px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

/* Navigation articles */
.navigation.pagination {
	margin-top: 48px;
	text-align: center;
}

.nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.page-numbers {
	display: inline-block;
	padding: 9px 16px;
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--navy);
	font-size: 14.5px;
}

.page-numbers.current {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--white);
}

.page-numbers:not(.current):hover {
	border-color: var(--gold);
	color: var(--gold-dark);
}

/* ---------- Témoignages & événements ---------- */

.section-temoignages {
	background: var(--ivory);
}

.section-cta {
	margin-top: 48px;
	text-align: center;
}

.post-badge {
	display: inline-block;
	margin-bottom: 12px;
	padding: 5px 13px;
	border: 1px solid rgba(201, 162, 75, 0.55);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold-dark);
	background: rgba(201, 162, 75, 0.08);
}

.post-badge-evenement {
	border-color: rgba(11, 21, 49, 0.25);
	background: rgba(11, 21, 49, 0.05);
	color: var(--navy);
}

.post-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 44px rgba(11, 21, 49, 0.13);
}

.post-detail {
	margin: -4px 0 16px;
	font-size: 13.5px;
	font-style: italic;
	color: var(--text-soft);
}

.filtres-publications {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 44px;
}

.filtre-pill {
	display: inline-block;
	padding: 9px 20px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-soft);
	background: var(--white);
	transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.filtre-pill:hover {
	border-color: var(--gold);
	color: var(--gold-dark);
}

.filtre-pill.is-active {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--white);
}

.publication-details {
	margin: 16px 0 0;
	font-size: 15px;
	font-style: italic;
	color: var(--text-soft);
}

.retour-temoignages {
	margin: 44px 0 0;
	text-align: center;
}

/* Sauts d'ancre natifs (depuis une autre page) : ne pas passer sous l'en-tête */
section[id] {
	scroll-margin-top: 96px;
}

/* ---------- Animations d'apparition ---------- */

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

.reveal-delay-1 {
	transition-delay: 0.15s;
}

.reveal-delay-2 {
	transition-delay: 0.3s;
}

/* ---------- Lightbox ---------- */

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: rgba(8, 14, 33, 0.94);
}

.lightbox.is-open {
	display: flex;
}

.lightbox img {
	max-width: min(92vw, 900px);
	max-height: 86vh;
	width: auto;
	border-radius: 10px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
	position: absolute;
	bottom: 26px;
	left: 0;
	right: 0;
	text-align: center;
	color: var(--gold-light);
	font-family: var(--font-title);
	font-size: 19px;
}

.lightbox-close {
	position: absolute;
	top: 22px;
	right: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: transparent;
	color: var(--white);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.lightbox-close:hover {
	border-color: var(--gold);
	color: var(--gold-light);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
	.valeurs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero-inner {
		grid-template-columns: 1fr 0.75fr;
		gap: 40px;
	}
}

@media (max-width: 900px) {
	.nav-list {
		position: fixed;
		inset: 0 0 0 auto;
		flex-direction: column;
		gap: 4px;
		width: min(78vw, 340px);
		padding: 96px 30px 40px;
		background: rgba(11, 21, 49, 0.98);
		transform: translateX(100%);
		transition: transform 0.35s ease;
	}

	.nav-list.is-open {
		transform: none;
	}

	.nav-list a {
		font-size: 18px;
		padding: 14px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 0;
	}

	.nav-toggle {
		display: flex;
		z-index: 1100;
	}

	.header-actions .btn {
		display: none;
	}

	.hero {
		padding-top: 110px;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-actions,
	.hero-facts {
		justify-content: center;
	}

	.hero-photo {
		max-width: 420px;
		margin: 0 auto;
	}

	.hero-badge {
		left: 50%;
		transform: translateX(-50%);
	}

	.bio-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.galerie-grid,
	.contact-grid,
	.posts-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}

	.timeline::before {
		left: 21px;
	}

	.timeline-item,
	.timeline-item:nth-child(even) {
		width: 100%;
		margin-left: 0;
		padding: 10px 0 10px 58px;
	}

	.timeline-marker,
	.timeline-item:nth-child(even) .timeline-marker {
		left: 0;
		right: auto;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}

@media (max-width: 560px) {
	body {
		font-size: 16px;
	}

	.section {
		padding: 76px 0;
	}

	.hero-facts {
		gap: 22px;
	}

	.valeurs-grid {
		grid-template-columns: 1fr;
	}

	.brand-name {
		font-size: 17px;
	}

	.brand-tagline {
		font-size: 10px;
		letter-spacing: 0.16em;
	}
}

/* Accessibilité : mouvement réduit */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.hero-scroll {
		animation: none;
	}
}
