/*
 * Alliance Internationale - design system.
 * Reproduction fidèle du design « Alliance Internationale.dc.html ».
 */

/* ==========================================================================
   Tokens
   ========================================================================== */

:root {
	--green: #008c54;
	--green-d: #016b41;
	--green-dd: #0a3d29;
	--green-l: #6fc79a;
	--sage: #e6f2ea;
	--sage-2: #d2e7d9;
	--gold: #e07a3c;
	--ink: #182420;
	--muted: #5b6a62;
	--bg: #faf9f5;
	--card: #ffffff;
	--line: #e8e6de;

	--font-body: 'Mulish', system-ui, sans-serif;
	--font-head: 'Libre Franklin', sans-serif;
	--font-script: 'Alex Brush', cursive;

	--container: 1240px;
	--pad-x: 32px;
	--radius: 18px;
}

/* ==========================================================================
   Base
   ========================================================================== */

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

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

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

a {
	color: inherit;
	text-decoration: none;
}

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

::selection {
	background: #bfe6cd;
}

@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* Accessibilité */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 20px;
	background: var(--green);
	color: #fff;
	border-radius: 8px;
}

/* Reveal (le JS anime, valeurs par défaut visibles sans JS) */
[data-reveal] {
	will-change: opacity, transform;
}

/* ==========================================================================
   Composants génériques
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	padding: 11px 20px;
	border-radius: 11px;
	border: 0;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
	font-family: var(--font-body);
}

.btn--primary {
	color: #fff;
	background: var(--green);
}

.btn--primary:hover,
.btn--primary:focus {
	background: var(--green-d);
	color: #fff;
}

.btn--outline {
	color: var(--ink);
	background: transparent;
	border: 1.5px solid var(--line);
}

.btn--outline:hover,
.btn--outline:focus {
	border-color: var(--green);
	color: var(--green);
}

.btn--white {
	color: var(--green-dd);
	background: #fff;
}

.btn--white:hover,
.btn--white:focus {
	opacity: 0.9;
	color: var(--green-dd);
}

.btn--outline-white {
	color: #fff;
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover,
.btn--outline-white:focus {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.btn--lg {
	padding: 15px 26px;
}

.btn--block {
	width: 100%;
	padding: 15px;
	font-size: 15.5px;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--green);
	background: var(--sage);
	padding: 8px 15px;
	border-radius: 100px;
}

.eyebrow {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--green);
}

.eyebrow--gold { color: var(--gold); }
.eyebrow--muted { color: var(--muted); }
.eyebrow--light { color: var(--green-l); }

.section-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 40px;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 14px 0 0;
}

.section-title--max { max-width: 620px; }
.section-title--sm { font-size: 32px; margin-top: 12px; }

.section-text {
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--muted);
	margin: 20px 0 0;
}

.section-head--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

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

.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 26px;
	font-weight: 700;
	color: var(--green);
	white-space: nowrap;
	transition: opacity 0.25s ease;
}

.arrow-link:hover,
.arrow-link:focus {
	opacity: 0.75;
	color: var(--green);
}

.section-head--split .arrow-link { margin-top: 0; }

.pill {
	font-size: 14px;
	font-weight: 600;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 100px;
	padding: 9px 16px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(250, 249, 245, 0.88);
	-webkit-backdrop-filter: saturate(1.4) blur(14px);
	backdrop-filter: saturate(1.4) blur(14px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 16px var(--pad-x);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 11px;
	flex-shrink: 0;
}

.brand__icon {
	width: 50px;
	height: 50px;
	object-fit: contain;
	display: block;
	flex-shrink: 0;
}

.brand__name {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.brand__script {
	font-family: var(--font-script);
	font-size: 37px;
	line-height: 0.7;
	color: var(--green);
}

.site-footer .brand__script { color: #fff; }

.brand__word {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.005em;
	color: var(--green);
}

.brand__word--footer { color: var(--green-l); }

.site-nav {
	display: flex;
	align-items: center;
	gap: 34px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 34px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink);
	transition: color 0.2s ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
	color: var(--green);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: none;
	border: 1px solid var(--line);
	border-radius: 10px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s 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); }

/* ==========================================================================
   Hero (accueil)
   ========================================================================== */

.hero {
	position: relative;
	overflow: hidden;
}

.hero__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 76px var(--pad-x) 80px;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.hero__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 58px;
	line-height: 1.03;
	letter-spacing: -0.025em;
	margin: 22px 0 0;
}

.hero__title .accent { color: var(--green); }

.hero__text {
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
	max-width: 520px;
	margin: 22px 0 0;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hero__media { position: relative; }

.hero__img-wrap {
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 30px 70px -30px rgba(15, 44, 30, 0.4);
}

.hero__img-wrap img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	display: block;
}

.hero__card {
	position: absolute;
	left: -22px;
	bottom: 34px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 18px 22px;
	box-shadow: 0 20px 40px -22px rgba(15, 44, 30, 0.35);
}

.hero__card-number {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 30px;
	color: var(--green);
	line-height: 1;
}

.hero__card-number span { font-size: 20px; }

.hero__card-label {
	font-size: 12.5px;
	color: var(--muted);
	margin-top: 6px;
	max-width: 150px;
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
	background: var(--green-dd);
	color: #fff;
}

.stats__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 44px var(--pad-x);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.stats__item { text-align: center; }

.stats__number {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 44px;
	line-height: 1;
	letter-spacing: -0.02em;
}

.stats__label {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.66);
	margin-top: 10px;
}

/* ==========================================================================
   Qui sommes-nous (accueil)
   ========================================================================== */

.about-teaser {
	max-width: var(--container);
	margin: 0 auto;
	padding: 96px var(--pad-x);
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 64px;
	align-items: center;
}

.about-teaser__media {
	border-radius: 22px;
	overflow: hidden;
}

.about-teaser__media img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	display: block;
}

/* ==========================================================================
   Services (accueil)
   ========================================================================== */

.services-preview { background: var(--sage); }

.services-preview__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 96px var(--pad-x);
}

.services-preview__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	margin-top: 44px;
}

.service-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px -30px rgba(15, 44, 30, 0.4);
}

.service-card__number {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 15px;
	color: #fff;
	background: var(--green);
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: grid;
	place-items: center;
}

.service-card__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 21px;
	margin: 20px 0 0;
	letter-spacing: -0.01em;
}

.service-card__text {
	font-size: 15px;
	line-height: 1.65;
	color: var(--muted);
	margin: 12px 0 0;
}

/* ==========================================================================
   Pourquoi nous choisir
   ========================================================================== */

.whyus {
	max-width: var(--container);
	margin: 0 auto;
	padding: 96px var(--pad-x);
}

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

.whyus__item {
	border-top: 3px solid var(--green);
	padding: 26px 4px 0;
}

.whyus__number {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 34px;
	color: var(--sage-2);
	line-height: 1;
}

.whyus__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 20px;
	margin: 14px 0 0;
	letter-spacing: -0.01em;
}

.whyus__text {
	font-size: 15px;
	line-height: 1.65;
	color: var(--muted);
	margin: 12px 0 0;
}

/* ==========================================================================
   Témoignages
   ========================================================================== */

.testimonials {
	background: var(--green-dd);
	color: #fff;
}

.testimonials__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 96px var(--pad-x);
}

.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 48px;
}

.testimonial {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	padding: 30px;
}

.testimonial__mark {
	font-family: var(--font-head);
	font-size: 44px;
	color: var(--green-l);
	line-height: 0.6;
	height: 22px;
}

.testimonial__quote {
	font-size: 16px;
	line-height: 1.65;
	margin: 12px 0 0;
}

.testimonial__author {
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial__name {
	font-weight: 700;
	font-size: 15px;
}

.testimonial__role {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 3px;
}

/* ==========================================================================
   Partenaires (marquee)
   ========================================================================== */

.partners {
	max-width: var(--container);
	margin: 0 auto;
	padding: 88px var(--pad-x);
}

.partners__marquee {
	margin-top: 44px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.partners__track {
	display: flex;
	width: max-content;
	animation: marquee 42s linear infinite;
}

.partners__marquee:hover .partners__track {
	animation-play-state: paused;
}

.partners__item {
	flex: 0 0 auto;
	width: 186px;
	margin-right: 18px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 14px;
	height: 104px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px;
}

.partners__item img {
	max-width: 100%;
	max-height: 56px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.72;
	transition: 0.3s;
}

.partners__item:hover img {
	filter: none;
	opacity: 1;
}

/* ==========================================================================
   Zone de couverture
   ========================================================================== */

.coverage { background: var(--sage); }

.coverage__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 96px var(--pad-x);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.coverage__countries {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.coverage__map {
	aspect-ratio: 4 / 3;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: #eef4ef;
}

.coverage__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ==========================================================================
   Actualités (cartes)
   ========================================================================== */

.posts-preview {
	max-width: var(--container);
	margin: 0 auto;
	padding: 96px var(--pad-x);
}

.posts-preview__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 44px;
}

.post-card {
	display: block;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	color: inherit;
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px -30px rgba(15, 44, 30, 0.4);
	color: inherit;
}

.post-card__img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	display: block;
}

.post-card__img--placeholder {
	display: block;
	height: 210px;
	background: var(--sage-2);
}

.post-card__body {
	display: block;
	padding: 24px;
}

.post-card__date {
	display: block;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 0.04em;
}

.post-card__title {
	display: block;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 18.5px;
	line-height: 1.25;
	margin: 12px 0 0;
	letter-spacing: -0.01em;
}

.post-card__excerpt {
	display: block;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--muted);
	margin: 12px 0 0;
}

.post-card__more {
	display: inline-flex;
	margin-top: 16px;
	font-weight: 700;
	font-size: 14px;
	color: var(--green);
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
	background: var(--green);
	color: #fff;
}

.cta__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 80px var(--pad-x);
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 40px;
	align-items: center;
}

.cta__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 38px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0;
}

.cta__text {
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin: 16px 0 0;
	max-width: 560px;
}

.cta__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* ==========================================================================
   Page hero (pages internes)
   ========================================================================== */

.page-hero { background: var(--sage); }

.page-hero__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 72px var(--pad-x) 64px;
}

.page-hero__inner--split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
}

.page-hero__intro { max-width: 760px; }

.page-hero__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 52px;
	line-height: 1.04;
	letter-spacing: -0.025em;
	margin: 16px 0 0;
}

.page-hero__title--article { font-size: 42px; }

.page-hero__text {
	font-size: 17px;
	line-height: 1.7;
	color: var(--muted);
	margin: 18px 0 0;
}

.page-hero__gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 44px;
}

.page-hero__photo {
	border-radius: var(--radius);
	overflow: hidden;
}

.page-hero__photo img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
}

.page-hero__media {
	border-radius: 20px;
	overflow: hidden;
}

.page-hero__media img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}

/* ==========================================================================
   À propos
   ========================================================================== */

.history {
	max-width: var(--container);
	margin: 0 auto;
	padding: 96px var(--pad-x);
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 64px;
}

.history__lead {
	font-size: 17px;
	line-height: 1.75;
	color: var(--ink);
	margin: 0;
}

.history__body {
	font-size: 16px;
	line-height: 1.75;
	color: var(--muted);
	margin: 20px 0 0;
}

.mission {
	background: var(--green-dd);
	color: #fff;
}

.mission__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 92px var(--pad-x);
}

.mission__inner .section-head { max-width: 640px; }

.mission__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	margin-top: 46px;
}

.mission__card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	padding: 30px;
}

.mission__number {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 15px;
	color: var(--green-dd);
	background: var(--green-l);
	width: 42px;
	height: 42px;
	border-radius: 11px;
	display: grid;
	place-items: center;
}

.mission__text {
	font-size: 16.5px;
	line-height: 1.6;
	margin: 18px 0 0;
}

.team {
	max-width: var(--container);
	margin: 0 auto;
	padding: 96px var(--pad-x);
}

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

.team__member { text-align: center; }

.team__photo {
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--sage-2);
}

.team__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team__name {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 20px;
	margin: 20px 0 0;
}

.team__role {
	font-size: 14px;
	color: var(--green);
	font-weight: 600;
	margin-top: 5px;
}

/* ==========================================================================
   Certifications
   ========================================================================== */

.certs { background: var(--sage); }

.certs__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 76px var(--pad-x);
}

.certs--tight .certs__inner { padding: 64px var(--pad-x); }

.certs__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
	margin-top: 36px;
}

.certs__item {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 14px;
	height: 100px;
	display: grid;
	place-items: center;
	padding: 16px;
}

.certs__item img {
	max-width: 100%;
	max-height: 68px;
	width: auto;
	object-fit: contain;
}

/* ==========================================================================
   Nos services (page)
   ========================================================================== */

.services-list {
	max-width: var(--container);
	margin: 0 auto;
	padding: 88px var(--pad-x);
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.services-list__item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 36px;
	align-items: start;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 38px 40px;
}

.services-list__number {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 64px;
	color: var(--sage-2);
	line-height: 0.8;
	letter-spacing: -0.03em;
}

.services-list__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 26px;
	letter-spacing: -0.02em;
	margin: 0;
}

.services-list__text {
	font-size: 16px;
	line-height: 1.75;
	color: var(--muted);
	margin-top: 6px;
	max-width: 820px;
}

.services-list__text p { margin: 8px 0 0; }

/* ==========================================================================
   Processus
   ========================================================================== */

.process {
	background: var(--green-dd);
	color: #fff;
}

.process__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 92px var(--pad-x);
}

.process__inner .section-head { max-width: 640px; }

.process__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 48px;
}

.process__step {
	border-top: 2px solid rgba(255, 255, 255, 0.25);
	padding-top: 22px;
}

.process__number {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 15px;
	color: var(--green-l);
}

.process__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 19px;
	margin: 14px 0 0;
}

.process__text {
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.62);
	margin: 10px 0 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
	max-width: 900px;
	margin: 0 auto;
	padding: 96px var(--pad-x);
}

.faq__list {
	margin-top: 44px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq__item {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
}

.faq__question {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 22px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	cursor: pointer;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 16.5px;
	color: var(--ink);
}

.faq__sign {
	font-family: var(--font-head);
	font-size: 24px;
	color: var(--green);
	flex-shrink: 0;
}

.faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	visibility: hidden;
	transition: grid-template-rows 0.35s ease, visibility 0.35s;
	font-size: 15.5px;
	line-height: 1.7;
	color: var(--muted);
}

.faq__item.is-open .faq__answer {
	grid-template-rows: 1fr;
	visibility: visible;
}

.faq__answer-inner {
	overflow: hidden;
}

.faq__answer-inner p {
	margin: 0;
	padding: 0 24px 20px;
}

/* ==========================================================================
   Actualités (page)
   ========================================================================== */

.blog-list {
	max-width: var(--container);
	margin: 0 auto;
	padding: 80px var(--pad-x);
}

.featured-post {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 44px;
	align-items: center;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 22px;
	overflow: hidden;
	margin-bottom: 44px;
	color: inherit;
}

.featured-post:hover { color: inherit; }

.featured-post__img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.featured-post__body {
	display: block;
	padding: 20px 44px 20px 0;
}

.featured-post__kicker {
	display: block;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.featured-post__title {
	display: block;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 30px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 14px 0 0;
}

.featured-post__excerpt {
	display: block;
	font-size: 16px;
	line-height: 1.7;
	color: var(--muted);
	margin: 16px 0 0;
}

.featured-post .arrow-link { margin-top: 22px; }

.blog-list__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Pagination */
.pagination { margin: 44px 0 0; }

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

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 10px;
	font-weight: 600;
	font-size: 14.5px;
}

.pagination .page-numbers.current {
	background: var(--green);
	border-color: var(--green);
	color: #fff;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
	max-width: var(--container);
	margin: 0 auto;
	padding: 88px var(--pad-x);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.contact__form-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 40px;
}

.contact__label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px;
}

.contact__input {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid var(--line);
	border-radius: 11px;
	font-family: var(--font-body);
	font-size: 15px;
	margin-bottom: 20px;
	background: var(--bg);
	color: var(--ink);
}

.contact__input:focus {
	outline: 2px solid var(--green);
	outline-offset: 1px;
	border-color: var(--green);
}

.contact__input--area {
	resize: vertical;
	margin-bottom: 24px;
}

.contact__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact__error {
	background: #fdecea;
	border: 1px solid #f5c6c0;
	color: #b3261e;
	border-radius: 11px;
	padding: 13px 16px;
	font-size: 14.5px;
	margin: 0 0 20px;
}

.contact__success {
	padding: 40px 12px;
	text-align: center;
}

.contact__success-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--sage);
	color: var(--green);
	display: grid;
	place-items: center;
	margin: 0 auto;
	font-size: 26px;
	font-family: var(--font-head);
}

.contact__success-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 22px;
	margin: 18px 0 0;
}

.contact__success-text {
	font-size: 15px;
	color: var(--muted);
	margin: 10px 0 0;
}

.contact__aside-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 30px;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 0;
}

.contact__infos {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 32px;
}

.contact__info {
	display: flex;
	gap: 18px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
}

.contact__info-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green);
	width: 110px;
	flex-shrink: 0;
	padding-top: 2px;
}

.contact__info-value {
	font-size: 16px;
	font-weight: 600;
	color: var(--ink);
}

.contact__map {
	margin-top: 26px;
	aspect-ratio: 16 / 8;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--line);
}

.contact__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ==========================================================================
   Article
   ========================================================================== */

.article {
	max-width: 800px;
	margin: 0 auto;
	padding: 56px var(--pad-x) 40px;
}

.article__thumbnail {
	border-radius: 22px;
	overflow: hidden;
	margin-bottom: 40px;
}

.article__thumbnail img {
	width: 100%;
	display: block;
}

.article__content {
	font-size: 17px;
	line-height: 1.8;
}

.article__content h2,
.article__content h3 {
	font-family: var(--font-head);
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.article__content img { border-radius: 14px; }

.article__footer {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	font-size: 14px;
	color: var(--muted);
}

.article__nav { margin-top: 32px; }

.post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	font-weight: 600;
}

.entry-meta {
	font-size: 14px;
	color: var(--muted);
	margin: 14px 0 0;
}

/* Contenu générique Gutenberg */
.article__content > *:first-child { margin-top: 0; }

.wp-block-quote {
	border-left: 3px solid var(--green);
	margin: 24px 0;
	padding: 4px 0 4px 22px;
	color: var(--muted);
}

/* ==========================================================================
   Commentaires (minimal, cohérent)
   ========================================================================== */

.comments-area {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--line);
}

.comment-list {
	list-style: none;
	padding: 0;
}

.comment-list .comment {
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background: var(--green-dd);
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 72px var(--pad-x) 40px;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
}

.site-footer__desc {
	font-size: 14.5px;
	line-height: 1.7;
	margin: 20px 0 0;
	max-width: 320px;
}

.site-footer__heading {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 18px;
}

.site-footer__links {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 14.5px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__links a:hover { color: #fff; }

.site-footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.12); }

.site-footer__bar-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 22px var(--pad-x);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.hero__inner,
	.about-teaser,
	.coverage__inner,
	.page-hero__inner--split,
	.history {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero__title { font-size: 46px; }
	.page-hero__title { font-size: 42px; }

	.hero__img-wrap img { height: 400px; }

	.stats__inner { grid-template-columns: repeat(2, 1fr); }

	.testimonials__grid,
	.posts-preview__grid,
	.blog-list__grid,
	.team__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.whyus__grid { grid-template-columns: 1fr; gap: 34px; }
	.process__grid { grid-template-columns: repeat(2, 1fr); }
	.certs__grid { grid-template-columns: repeat(3, 1fr); }

	.featured-post {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.featured-post__body { padding: 28px; }
	.featured-post__img { height: 280px; }

	.cta__inner { grid-template-columns: 1fr; }
	.cta__actions { flex-direction: row; flex-wrap: wrap; }

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

	.site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	:root { --pad-x: 20px; }

	/* Menu mobile */
	.nav-toggle { display: flex; }

	.site-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--bg);
		border-bottom: 1px solid var(--line);
		padding: 12px var(--pad-x) 20px;
		box-shadow: 0 24px 40px -28px rgba(15, 44, 30, 0.35);
	}

	.site-nav.is-open { display: flex; }

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.site-nav__list a {
		display: block;
		padding: 13px 4px;
		font-size: 16px;
		border-bottom: 1px solid var(--line);
	}

	.site-nav__cta {
		margin-top: 14px;
		width: 100%;
	}

	.hero__inner { padding: 48px var(--pad-x) 56px; }
	.hero__title { font-size: 36px; }
	.hero__img-wrap img { height: 300px; }
	.hero__card { left: 10px; bottom: 18px; }

	.section-title { font-size: 30px; }
	.page-hero__title { font-size: 33px; }
	.cta__title { font-size: 29px; }

	.about-teaser,
	.whyus,
	.posts-preview,
	.team,
	.partners { padding: 64px var(--pad-x); }

	.services-preview__inner,
	.testimonials__inner,
	.coverage__inner,
	.mission__inner,
	.process__inner,
	.faq,
	.history { padding: 64px var(--pad-x); }

	.about-teaser__media img { height: 320px; }

	.services-preview__grid,
	.mission__grid,
	.stats__inner,
	.testimonials__grid,
	.posts-preview__grid,
	.blog-list__grid,
	.process__grid { grid-template-columns: 1fr; }

	.team__grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }

	.page-hero__gallery { grid-template-columns: 1fr; }
	.page-hero__photo img { height: 220px; }

	.services-list__item {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 28px 24px;
	}

	.services-list__number { font-size: 44px; }

	.certs__grid { grid-template-columns: repeat(2, 1fr); }

	.contact__form-card { padding: 28px 22px; }

	.site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Hero banner (image plein cadre + overlay vert + typo geante)
   Style repris de l'ancien site, applique a toutes les pages.
   ========================================================================== */

.hero-banner {
	position: relative;
	margin: 14px;
	border-radius: 24px;
	overflow: hidden;
	min-height: clamp(380px, 54vh, 580px);
	display: flex;
	background: var(--green-dd);
}

.hero-banner--tall {
	min-height: clamp(560px, 84vh, 880px);
}

.hero-banner__media {
	position: absolute;
	inset: 0;
}

.hero-banner__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Scrim : garantit le contraste du texte (WCAG) sur toute l'image.
   Le backdrop-filter ajoute un flou d'ambiance volontaire : les photos
   sources (~1000px) seraient pixellisées étirées en pleine largeur ;
   floutées, elles deviennent un fond uniforme et lisible. */
.hero-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 61, 41, 0.78) 0%,
		rgba(2, 96, 58, 0.74) 52%,
		rgba(10, 61, 41, 0.86) 100%
	);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.hero-banner__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 44px var(--pad-x) 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
}

.hero-banner__kicker {
	font-size: 15.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.88);
	margin: 6px 0 0;
}

.hero-banner__title {
	font-family: var(--font-head);
	font-weight: 800;
	text-transform: uppercase;
	font-size: clamp(42px, 7.5vw, 104px);
	line-height: 0.98;
	letter-spacing: 0.01em;
	margin: auto 0;
	color: #edf6f0;
}

.hero-banner--tall .hero-banner__title {
	font-size: clamp(50px, 9.5vw, 148px);
}

.hero-banner__faded {
	display: block;
	opacity: 0.32;
}

.hero-banner__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.hero-banner__subtitle {
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
	max-width: 680px;
	margin: 0;
}

.hero-banner__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

/* Lien secondaire discret sous le CTA principal */
.hero-banner__link {
	margin-top: -4px;
	font-size: 14.5px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.82);
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	padding-bottom: 2px;
	transition: color 0.25s ease, border-color 0.25s ease;
}

.hero-banner__link:hover,
.hero-banner__link:focus {
	color: #fff;
	border-color: #fff;
}

@media (max-width: 768px) {
	.hero-banner {
		margin: 10px;
		border-radius: 16px;
		min-height: 340px;
	}

	.hero-banner--tall {
		min-height: 70vh;
	}

	.hero-banner__content {
		padding: 36px 20px 40px;
	}
}

/* Galerie sous le hero (A propos) */
.gallery-strip {
	max-width: var(--container);
	margin: 0 auto;
	padding: 44px var(--pad-x) 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.gallery-strip__photo {
	border-radius: var(--radius);
	overflow: hidden;
}

.gallery-strip__photo img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
}

/* Intro de la page Nos services (texte + image) */
.services-intro {
	max-width: var(--container);
	margin: 0 auto;
	padding: 72px var(--pad-x) 0;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
}

.services-intro__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 32px;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 0;
}

.services-intro__text {
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--muted);
	margin: 16px 0 0;
}

.services-intro__media {
	border-radius: 20px;
	overflow: hidden;
}

.services-intro__media img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	display: block;
}

@media (max-width: 1024px) {
	.services-intro {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 768px) {
	.gallery-strip {
		grid-template-columns: 1fr;
	}

	.gallery-strip__photo img {
		height: 220px;
	}
}

/* ==========================================================================
   Passe UX : accessibilite, micro-interactions, confort
   ========================================================================== */

/* Scroll fluide vers les ancres, sans passer sous le header sticky */
html {
	scroll-padding-top: 96px;
}

/* Le scroll fluide n'est activé qu'après le premier rendu (classe posée
   par le JS) : l'arrivée sur une ancre (#service-3...) reste instantanée. */
@media (prefers-reduced-motion: no-preference) {
	html.smooth-scroll {
		scroll-behavior: smooth;
	}
}

/* Focus clavier visible partout */
:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Sur les fonds verts, l'anneau de focus passe en blanc */
.hero-banner :focus-visible,
.cta :focus-visible,
.stats :focus-visible,
.testimonials :focus-visible,
.mission :focus-visible,
.process :focus-visible,
.site-footer :focus-visible {
	outline-color: #fff;
}

/* Header sticky : ombre discrete une fois la page scrollee */
.site-header {
	transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 10px 28px -20px rgba(15, 44, 30, 0.4);
}

/* Cartes services cliquables (accueil) */
a.service-card {
	display: block;
	color: inherit;
}

a.service-card:hover,
a.service-card:focus {
	color: inherit;
}

.service-card__more {
	display: inline-flex;
	margin-top: 14px;
	font-weight: 700;
	font-size: 14px;
	color: var(--green);
}

/* Respect de prefers-reduced-motion : le marquee s'arrete */
@media (prefers-reduced-motion: reduce) {
	.partners__track {
		animation: none;
		flex-wrap: wrap;
		width: auto;
	}

	.faq__answer {
		transition: none;
	}

	.site-header {
		transition: none;
	}
}
