/* =========================================================================
   SCAAP — feuille de style principale
   Palette : marine institutionnel + or (valeur, patrimoine) + vert sobre.
   Typographie : Source Serif 4 (titres, gravité institutionnelle) / Inter (texte).
   ========================================================================= */

:root {
	--navy: #0d2b45;
	--navy-deep: #071c2e;
	--navy-soft: #1b4468;
	--gold: #c8992e;
	--gold-light: #e3bd63;
	--green: #146356;
	--paper: #f7f5f1;
	--paper-warm: #efeae0;
	--ink: #16202a;
	--muted: #5c6b78;
	--line: #dcd7cc;
	--white: #fff;

	--serif: "Source Serif 4", Georgia, "Times New Roman", serif;
	--sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--wrap: 1180px;
	--radius: 6px;
	--shadow: 0 2px 4px rgba(13, 43, 69, .06), 0 12px 28px rgba(13, 43, 69, .07);
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy-soft); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; color: var(--navy); margin: 0 0 .5em; }

.wrap { width: min(var(--wrap), calc(100% - 3rem)); margin-inline: auto; }

.section { padding: 4.5rem 0; }
.section--center { text-align: center; }

.section-title { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 1.6rem; }
.section-title--light { color: var(--white); }

.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.section-head__link { font-size: .93rem; font-weight: 600; white-space: nowrap; }

/* Masquage sans décalage négatif : un left:-9999px élargit le document et
   provoque un faux débordement horizontal sur mobile. */
.skip-link {
	position: absolute; top: 0; left: 0; z-index: 999;
	background: var(--navy); color: #fff; padding: .75rem 1.25rem;
	clip-path: inset(50%); white-space: nowrap;
}
.skip-link:focus { clip-path: none; }

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

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ------------------------------------------------------- Bandeau maquette */
.demo-banner {
	background: repeating-linear-gradient(135deg, #7a2e2e, #7a2e2e 14px, #6d2828 14px, #6d2828 28px);
	color: #fff;
}
.demo-banner__inner {
	width: min(var(--wrap), calc(100% - 3rem)); margin-inline: auto;
	display: flex; align-items: center; gap: 1rem;
	padding: .6rem 0; font-size: .87rem;
}
.demo-banner__tag {
	background: #fff; color: #7a2e2e; font-weight: 700; letter-spacing: .06em;
	text-transform: uppercase; font-size: .72rem; padding: .2rem .6rem; border-radius: 3px;
	flex-shrink: 0;
}
.demo-banner p { margin: 0; }

/* --------------------------------------------------------------- En-tête */
.topbar { background: var(--navy-deep); color: rgba(255,255,255,.75); font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem 0; flex-wrap: wrap; }
.topbar__tutelle { margin: 0; }
.topbar__right { display: flex; align-items: center; gap: 1.25rem; }
.topbar__link, .topbar a { color: rgba(255,255,255,.8); text-decoration: none; }
.topbar__link:hover { color: var(--gold-light); }

.lang { display: flex; gap: .35rem; }
.lang__item {
	color: rgba(255,255,255,.65); text-decoration: none; font-weight: 600;
	padding: .1rem .45rem; border-radius: 3px; font-size: .78rem;
}
.lang__item.is-current { background: rgba(255,255,255,.15); color: #fff; }

.masthead { background: var(--navy); border-bottom: 3px solid var(--gold); }
.masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: .9rem 0; }

.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; }
.brand__mark { flex-shrink: 0; }
.brand__text strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: #fff; letter-spacing: .04em; line-height: 1.1; }
.brand__text small { display: block; color: rgba(255,255,255,.7); font-size: .74rem; max-width: 22rem; line-height: 1.3; }

.nav__list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
	display: block; color: rgba(255,255,255,.88); text-decoration: none;
	font-size: .92rem; font-weight: 500; padding: .55rem .8rem; border-radius: var(--radius);
}
.nav__list a:hover, .nav__list .current-menu-item > a, .nav__list .current-menu-ancestor > a {
	background: rgba(255,255,255,.1); color: #fff;
}
.nav__list li { position: relative; }
.nav__list .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 15rem; z-index: 50;
	list-style: none; margin: 0; padding: .4rem; background: #fff;
	border-radius: var(--radius); box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(4px); transition: .16s;
}
.nav__list li:hover > .sub-menu, .nav__list li:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: none;
}
.nav__list .sub-menu a { color: var(--ink); font-size: .88rem; }
.nav__list .sub-menu a:hover { background: var(--paper); color: var(--navy); }

.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
	display: block; width: 24px; height: 2px; background: #fff; transition: .2s;
}
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: relative; }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 5px; }

/* ----------------------------------------------------------------- Boutons */
.btn {
	display: inline-block; padding: .8rem 1.6rem; border-radius: var(--radius);
	font-weight: 600; font-size: .95rem; text-decoration: none; border: 2px solid transparent;
	transition: .18s; cursor: pointer;
}
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-light); color: var(--navy-deep); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-soft); color: #fff; }
.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn--ghost-dark { border-color: var(--navy); color: var(--navy); }
.btn--ghost-dark:hover { background: var(--navy); color: #fff; }

/* -------------------------------------------------------------------- Hero */
.hero {
	background:
		radial-gradient(1100px 460px at 80% -10%, rgba(200,153,46,.22), transparent 60%),
		linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
	color: #fff; padding: 5rem 0 4.5rem;
}
.hero__inner {
	display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: 3.5rem; align-items: center;
}
.hero__visuel { justify-self: end; width: 100%; max-width: 560px; }
.hero__visuel img { display: block; width: 100%; height: auto; }
.hero__eyebrow {
	margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .16em;
	font-size: .76rem; font-weight: 600; color: var(--gold-light);
}
.hero__title { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.85rem); margin-bottom: 1.25rem; }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__lead { max-width: 62ch; font-size: 1.08rem; color: rgba(255,255,255,.85); margin: 0 0 2.25rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --------------------------------------------------------------- Parcours */
.parcours { background: var(--paper); padding: 4rem 0; }
.parcours__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.75rem; }
.parcours__card {
	background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--navy);
	border-radius: var(--radius); padding: 2.25rem; box-shadow: var(--shadow);
	display: flex; flex-direction: column;
}
.parcours__card--user { border-top-color: var(--gold); }
.parcours__tag {
	margin: 0 0 .75rem; text-transform: uppercase; letter-spacing: .13em;
	font-size: .72rem; font-weight: 700; color: var(--muted);
}
.parcours__card h2 { font-size: 1.3rem; }
.parcours__card > p { color: var(--muted); }
.parcours__list { list-style: none; margin: 1.25rem 0 1.75rem; padding: 0; }
.parcours__list li { border-top: 1px solid var(--line); }
.parcours__list a {
	display: block; padding: .7rem 0 .7rem 1.35rem; position: relative;
	text-decoration: none; font-weight: 500; font-size: .95rem;
}
.parcours__list a::before {
	content: "›"; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}
.parcours__cta { margin-top: auto; font-weight: 700; text-decoration: none; }
.parcours__cta::after { content: " →"; }

/* --------------------------------------------------------------- Chiffres */
.chiffres { background: var(--navy); color: #fff; padding: 3.5rem 0; }
.chiffres__note { margin: -1rem 0 2rem; font-size: .82rem; color: rgba(255,255,255,.55); font-style: italic; }
.chiffres__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.chiffre { border-left: 3px solid var(--gold); padding-left: 1.1rem; }
.chiffre__val { display: block; font-family: var(--serif); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.chiffre__lab { display: block; margin-top: .45rem; font-size: .88rem; color: rgba(255,255,255,.72); }

/* --------------------------------------------------------------- Missions */
.missions { padding: 4.5rem 0; }
.missions__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; }
.mission__num {
	display: block; font-family: var(--serif); font-size: 1.05rem; font-weight: 700;
	color: var(--gold); margin-bottom: .6rem; letter-spacing: .08em;
}
.mission h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.mission p { margin: 0; color: var(--muted); font-size: .95rem; }

/* -------------------------------------------------------------- Actualités */
.actus { background: var(--paper); padding: 4.5rem 0; }
.actus__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.actu { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.actu__date { display: block; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem; }
.actu__title { font-size: 1.12rem; margin-bottom: .5rem; }
.actu__title a { text-decoration: none; color: var(--navy); }
.actu__title a:hover { color: var(--gold); }
.actu__excerpt { color: var(--muted); font-size: .93rem; margin: 0 0 1rem; }
.actu__more { font-size: .9rem; font-weight: 600; text-decoration: none; }
.actu__more::after { content: " →"; }

/* ------------------------------------------------------------ Transparence */
.transparence-home { padding: 4.5rem 0; }
.transparence-home__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.transparence-home__text p { color: var(--muted); margin-bottom: 1.75rem; }
.transparence-home__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
/* Libellé de catégorie au-dessus du titre : les intitulés longs
   (« Procès-verbal d'assemblée générale ») ne tiennent pas en colonne. */
.transparence-home__list li { padding: .95rem 0; border-bottom: 1px solid var(--line); }
.doc-type {
	display: block; margin-bottom: .15rem;
	font-size: .68rem; text-transform: uppercase; letter-spacing: .1em;
	font-weight: 700; color: var(--gold);
}
.transparence-home__list a {
	text-decoration: none; font-weight: 500; overflow-wrap: anywhere; hyphens: auto;
}

/* ----------------------------------------------------------------- Appel */
.cta { background: linear-gradient(160deg, var(--green), #0d4a40); color: #fff; padding: 3rem 0; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: 1.5rem; margin-bottom: .35rem; }
.cta p { margin: 0; color: rgba(255,255,255,.85); max-width: 60ch; }

/* --------------------------------------------------- Fil d'Ariane / entêtes */
.breadcrumb { background: var(--paper); border-bottom: 1px solid var(--line); font-size: .84rem; }
.breadcrumb .wrap { display: flex; gap: .5rem; align-items: center; padding: .7rem 0; flex-wrap: wrap; }
.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span[aria-hidden] { color: var(--line); }

.page-hero { background: var(--navy); color: #fff; padding: 3.5rem 0; }
.page-hero--compact { padding: 2.5rem 0; }
.page-hero__title { color: #fff; font-size: clamp(1.75rem, 3.6vw, 2.6rem); margin: 0; max-width: 26ch; }
.page-hero__lead { margin: 1rem 0 0; max-width: 65ch; color: rgba(255,255,255,.82); }

/* ------------------------------------------------------------------ Pages */
.page__body { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 3.5rem; padding: 3.5rem 0; align-items: start; }
.page__body:only-child { grid-template-columns: 1fr; }

.prose { max-width: 72ch; }
.prose h2 { font-size: 1.5rem; margin-top: 2.25rem; }
.prose h3 { font-size: 1.18rem; margin-top: 1.75rem; }
.prose p, .prose li { color: #2a3742; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .45rem; }
.prose blockquote {
	margin: 2rem 0; padding: 1.1rem 1.5rem; background: var(--paper);
	border-left: 4px solid var(--gold); font-style: italic;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.prose th, .prose td { border: 1px solid var(--line); padding: .65rem .8rem; text-align: left; }
.prose th { background: var(--paper); }

.page__aside { position: sticky; top: 1.5rem; }
.aside__title { font-size: 1rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); }
.aside__list { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--navy); }
.aside__list li { border-bottom: 1px solid var(--line); }
.aside__list a { display: block; padding: .65rem 0; text-decoration: none; font-size: .92rem; }
.aside__list .is-current > a { color: var(--gold); font-weight: 700; }

/* --------------------------------------------------------------- Tableaux */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 640px; }
.table thead th {
	background: var(--navy); color: #fff; text-align: left; padding: .8rem 1rem;
	font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .07em;
}
.table tbody th, .table td { border-bottom: 1px solid var(--line); padding: .85rem 1rem; vertical-align: top; }
.table tbody th { text-align: left; font-weight: 600; color: var(--navy); }
.table tbody tr:nth-child(even) { background: var(--paper); }
.table__strong { font-weight: 700; color: var(--navy); white-space: nowrap; }
.table__unit { display: block; font-weight: 400; font-size: .82rem; color: var(--muted); }

.bareme-group { margin-bottom: 3rem; }
.bareme-group__title {
	font-size: 1.25rem; padding-bottom: .5rem; margin-bottom: 1.25rem;
	border-bottom: 2px solid var(--gold); display: inline-block;
}

/* -------------------------------------------------------------- Documents */
.doc-list { list-style: none; margin: 0 0 1rem; padding: 0; }
.doc-item {
	display: flex; justify-content: space-between; align-items: center; gap: 2rem;
	padding: 1.15rem 0; border-bottom: 1px solid var(--line); flex-wrap: wrap;
}
.doc-item__title { font-size: 1.08rem; margin: 0 0 .15rem; }
.doc-item__ref { margin: 0; font-size: .85rem; color: var(--gold); font-weight: 600; }
.doc-item__desc { margin: .4rem 0 0; color: var(--muted); font-size: .92rem; max-width: 65ch; }

.doc-link {
	display: inline-flex; align-items: center; gap: .6rem; text-decoration: none;
	font-weight: 600; font-size: .9rem; white-space: nowrap;
}
.doc-link__icon {
	background: var(--navy); color: #fff; font-size: .66rem; font-weight: 700;
	letter-spacing: .06em; padding: .22rem .45rem; border-radius: 3px;
}
.doc-link--absent { color: var(--muted); font-style: italic; font-weight: 400; }

/* --------------------------------------------------------------- Notices */
.notice {
	background: var(--paper); border-left: 4px solid var(--navy-soft);
	padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 0 0 2rem;
	font-size: .93rem;
}
.notice--warning { background: #fdf5e3; border-left-color: var(--gold); }

/* -------------------------------------------------------- Listes actualités */
.liste-actus { display: flex; flex-direction: column; }
.liste-actu {
	display: grid; grid-template-columns: 190px 1fr; gap: 2rem;
	padding: 1.75rem 0; border-bottom: 1px solid var(--line); align-items: start;
}
.liste-actu__meta { display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; }
.liste-actu__meta time { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.pill {
	background: var(--paper-warm); color: var(--navy); font-size: .73rem; font-weight: 700;
	padding: .2rem .6rem; border-radius: 100px; text-transform: uppercase; letter-spacing: .05em;
}
.liste-actu__body h2 { font-size: 1.25rem; margin-bottom: .4rem; }
.liste-actu__body h2 a { text-decoration: none; color: var(--navy); }
.liste-actu__body h2 a:hover { color: var(--gold); }
.liste-actu__body p { color: var(--muted); margin: 0 0 .6rem; }
.liste-actu__more { font-size: .9rem; font-weight: 600; text-decoration: none; }

.single__body { padding: 3rem 0; }
.single__meta { display: flex; gap: .8rem; align-items: center; margin-bottom: .8rem; color: rgba(255,255,255,.75); font-size: .85rem; }
.single__meta .pill { background: rgba(255,255,255,.15); color: #fff; }
.single__sign { margin-top: 2rem; font-style: italic; color: var(--muted); }
.single__doc { margin-top: 1.5rem; }

/* ------------------------------------------------------------------- FAQ */
.faq { background: var(--paper); padding: 4rem 0; }
.faq__list { max-width: 78ch; }
.faq__item { border-bottom: 1px solid var(--line); background: #fff; margin-bottom: .5rem; border-radius: var(--radius); }
.faq__item summary {
	cursor: pointer; padding: 1.05rem 1.35rem; font-weight: 600; color: var(--navy);
	list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.faq__item[open] summary::after { content: "–"; }
.faq__answer { padding: 0 1.35rem 1.25rem; }
.faq__answer p { margin-top: 0; color: var(--muted); }

/* ----------------------------------------------------------- Délégations */
.delegations { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.delegation { border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--radius); padding: 1.6rem; }
.delegation__region { margin: 0 0 .2rem; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 700; }
.delegation__ville { font-size: 1.3rem; margin-bottom: .6rem; }
.delegation__adresse { color: var(--muted); font-size: .92rem; margin: 0 0 1rem; }
.delegation__contact { margin: 0; font-size: .9rem; }
.delegation__contact dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-top: .6rem; }
.delegation__contact dd { margin: 0; }

/* ------------------------------------------------------ Mot d'un dirigeant */
.mot {
	display: grid; grid-template-columns: 300px minmax(0, 1fr);
	gap: 3.5rem; padding: 3.5rem 0; align-items: start;
}
.mot__portrait { position: sticky; top: 1.5rem; }

.portrait { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.portrait__image { display: block; width: 100%; height: auto; }

/* Emplacement en attente de la photographie : volontairement visible, pour que
   le client identifie tout de suite ce qu'il doit fournir. */
.portrait--vide {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: .75rem; text-align: center;
	aspect-ratio: 4 / 5; padding: 1.5rem;
	background: var(--paper); color: var(--muted);
	border: 2px dashed var(--line); box-shadow: none;
}
.portrait--vide svg { width: 56px; height: 56px; color: var(--gold); opacity: .75; }
.portrait__vide-titre { margin: 0; font-weight: 600; font-size: .92rem; color: var(--navy); }
.portrait__vide-aide { margin: 0; font-size: .78rem; line-height: 1.5; max-width: 22ch; }

.portrait__legende { margin-top: 1rem; padding-top: 1rem; border-top: 2px solid var(--gold); }
.portrait__nom { margin: 0; font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.portrait__fonction { margin: .15rem 0 0; font-size: .88rem; color: var(--muted); }

.mot__citation {
	margin: 0 0 2rem; padding: 0 0 0 1.5rem;
	border-left: 4px solid var(--gold);
	font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-style: italic; line-height: 1.45; color: var(--navy);
}
.mot__signature { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.mot__signature-nom {
	display: block; font-family: var(--serif); font-size: 1.1rem;
	font-weight: 700; color: var(--navy);
}
.mot__signature-fonction { display: block; font-size: .88rem; color: var(--muted); }

/* ----------------------------------------------------------- Gouvernance */
.organe { margin-bottom: 3rem; }
.organe__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.membre { text-align: center; padding: 1.6rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); }
.membre__avatar {
	width: 62px; height: 62px; margin: 0 auto .9rem; border-radius: 50%;
	background: var(--navy); color: var(--gold-light); display: grid; place-items: center;
	font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
}
.membre__nom { font-size: 1.05rem; margin-bottom: .2rem; }
.membre__fonction { margin: 0; font-size: .88rem; color: var(--gold); font-weight: 600; }
.membre__college { margin: .35rem 0 0; font-size: .82rem; color: var(--muted); }

/* ------------------------------------------------------------------- 404 */
.error404__code { font-family: var(--serif); font-size: 5rem; color: var(--gold); margin: 3rem 0 0; line-height: 1; }
.error404__text { color: var(--muted); max-width: 55ch; margin-inline: auto; }
.error404__actions { display: flex; gap: 1rem; justify-content: center; margin: 2rem 0 3rem; flex-wrap: wrap; }

/* ----------------------------------------------------------- Formulaires */
.fluentform .ff-el-input--label label { font-weight: 600; color: var(--navy); }
.fluentform .ff-btn-submit {
	background: var(--gold) !important; color: var(--navy-deep) !important;
	border: 0 !important; font-weight: 700 !important; padding: .8rem 1.8rem !important;
	border-radius: var(--radius) !important;
}
.fluentform .ff-btn-submit:hover { background: var(--gold-light) !important; }

/* Bloc d'instructions inséré dans un formulaire (pièces à fournir…). */
.scaap-note {
	background: var(--paper); border-left: 4px solid var(--gold);
	padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0;
	font-size: .92rem; margin: .5rem 0 1rem;
}
.scaap-note strong { display: block; color: var(--navy); margin-bottom: .5rem; }
.scaap-note ul { margin: 0 0 .75rem; padding-left: 1.2rem; }
.scaap-note li { margin-bottom: .25rem; }
.scaap-note p { margin: 0 0 .5rem; }
.scaap-note__tech { font-size: .82rem; color: var(--muted); font-style: italic; }

/* --------------------------------------------------------------- Pagination */
.pagination { margin-top: 2.5rem; }
.pagination .nav-links { display: flex; gap: .4rem; flex-wrap: wrap; }
.pagination .page-numbers {
	display: grid; place-items: center; min-width: 2.4rem; height: 2.4rem; padding: 0 .6rem;
	border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; font-size: .9rem;
}
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ------------------------------------------------------------ Pied de page */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); margin-top: 0; }
.footer__grid {
	display: grid; grid-template-columns: 1.6fr repeat(3, 1fr) 1.2fr;
	gap: 2.5rem; padding: 3.5rem 0 2.5rem;
}
.footer__col h3 {
	color: #fff; font-family: var(--sans); font-size: .82rem; text-transform: uppercase;
	letter-spacing: .11em; margin-bottom: 1rem; padding-bottom: .5rem;
	border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: .5rem; }
.footer__col a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .9rem; }
.footer__col a:hover { color: var(--gold-light); }
.footer__name { font-family: var(--serif); font-size: 1.5rem; color: #fff; margin: .6rem 0 .4rem; letter-spacing: .04em; }
.footer__desc { font-size: .87rem; line-height: 1.6; margin: 0; }
.footer__col--contact p { margin: 0 0 .4rem; font-size: .9rem; }
.footer__hours { color: rgba(255,255,255,.5) !important; font-size: .84rem !important; }

.footer__legal { border-top: 1px solid rgba(255,255,255,.12); }
.footer__legal-inner { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1.1rem 0; flex-wrap: wrap; font-size: .82rem; }
.footer__legal p { margin: 0; }
.footer__demo { color: var(--gold-light); }

/* ------------------------------------------------------------- Responsive */
@media (max-width: 1040px) {
	.footer__grid { grid-template-columns: repeat(2, 1fr); }
	.transparence-home__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 980px) {
	/* Le visuel passe sous le texte et se réduit : au-delà d'une colonne
	   étroite il écrase le titre au lieu de l'accompagner. */
	.hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
	.hero__visuel { justify-self: center; max-width: 420px; }
}

@media (max-width: 900px) {
	.nav-toggle { display: block; }
	.nav {
		display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 60;
		background: var(--navy-deep); padding: .75rem 1.5rem 1.25rem;
	}
	.nav.is-open { display: block; }
	.masthead__inner { position: relative; }
	.nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.nav__list > li { border-bottom: 1px solid rgba(255,255,255,.1); }
	.nav__list a { padding: .75rem .25rem; }
	.nav__list .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		background: transparent; box-shadow: none; padding: 0 0 .5rem .9rem;
	}
	.nav__list .sub-menu a { color: rgba(255,255,255,.7); }
	.nav__list .sub-menu a:hover { background: transparent; color: var(--gold-light); }

	.page__body { grid-template-columns: 1fr; gap: 2.5rem; }
	.page__aside { position: static; }
	.mot { grid-template-columns: 1fr; gap: 2rem; }
	.mot__portrait { position: static; max-width: 300px; }
	.liste-actu { grid-template-columns: 1fr; gap: .75rem; }
	.liste-actu__meta { flex-direction: row; align-items: center; gap: .8rem; }
}

@media (max-width: 620px) {
	body { font-size: 16px; }
	.wrap { width: calc(100% - 2rem); }
	.demo-banner__inner { width: calc(100% - 2rem); align-items: flex-start; flex-direction: column; gap: .4rem; }
	.brand__text small { display: none; }
	.footer__grid { grid-template-columns: 1fr; gap: 2rem; }
	.hero { padding: 3.5rem 0; }
	.section { padding: 3rem 0; }
	.cta__inner { flex-direction: column; align-items: flex-start; }
	.doc-item { flex-direction: column; align-items: flex-start; gap: .8rem; }
}

@media print {
	.demo-banner, .topbar, .nav, .nav-toggle, .cta, .site-footer, .breadcrumb { display: none !important; }
	body { font-size: 12pt; }
}
