/*
Theme Name: Le Phare Immobilier — Blog
Theme URI: https://www.agencelephare.com/
Author: Agence Le Phare
Description: Thème de blog aux couleurs, à la typographie et à la navigation du site Le Phare Immobilier. Conçu pour que le visiteur ne perçoive aucune rupture entre le site principal et le blog. L'URL du site principal se règle dans inc/site-config.php.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: le-phare-blog
Tags: blog, one-column, right-sidebar, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, accessibility-ready
*/

/* =====================================================================
   1. Variables — couleurs prélevées sur www.agencelephare.com
   ================================================================== */
:root {
	--lpb-accent: #c33e36;          /* rouge de la marque (boutons, liens actifs) */
	--lpb-accent-dark: #a9332c;
	--lpb-accent-soft: rgba(195, 62, 54, 0.35);

	--lpb-ink: #212529;             /* texte courant */
	--lpb-ink-strong: #14181d;      /* liens de navigation */
	--lpb-muted: #6b7280;

	--lpb-bg: #ffffff;              /* fond du site */
	--lpb-bg-soft: #f4f4f4;         /* fond du pied de page */
	--lpb-border: #e5e7eb;

	--lpb-header-strip: #c33e36;    /* bande derrière la barre translucide */
	--lpb-header-bar: rgba(255, 255, 255, 0.9);

	--lpb-font-title: "Bitter", Georgia, "Times New Roman", serif;
	--lpb-font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--lpb-radius: 3px;
	--lpb-shadow: 0 2px 14px rgba(15, 18, 22, 0.07);
	--lpb-max: 1200px;
}

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

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

body {
	margin: 0;
	background: var(--lpb-bg);
	color: var(--lpb-ink);
	font-family: var(--lpb-font-body);
	font-size: 16px;
	line-height: 1.6;
	overflow-wrap: break-word;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--lpb-accent);
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--lpb-font-title);
	font-weight: 500;
	color: var(--lpb-ink);
	line-height: 1.25;
	margin: 0 0 0.6em;
	overflow-wrap: break-word;
}

h1 { font-size: clamp(1.65rem, 1.2rem + 1.8vw, 2.25rem); }
h2 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.7rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p, ul, ol, dl, blockquote, pre, table, figure {
	margin: 0 0 1.2em;
}

blockquote {
	margin-left: 0;
	padding: 0.2em 0 0.2em 1.2em;
	border-left: 3px solid var(--lpb-accent);
	color: var(--lpb-ink);
	font-style: italic;
}

code, kbd, pre, samp {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.9em;
}

pre {
	background: var(--lpb-bg-soft);
	padding: 1rem;
	overflow-x: auto;
	border-radius: var(--lpb-radius);
}

table {
	width: 100%;
	border-collapse: collapse;
}

th, td {
	padding: 0.6em 0.8em;
	border: 1px solid var(--lpb-border);
	text-align: left;
}

hr {
	border: 0;
	border-top: 1px solid var(--lpb-border);
	margin: 2.5rem 0;
}

:focus-visible {
	outline: 2px solid var(--lpb-accent);
	outline-offset: 2px;
}

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: #fff;
	color: var(--lpb-accent);
	padding: 0.7em 1.2em;
	border-radius: var(--lpb-radius);
	box-shadow: var(--lpb-shadow);
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

/* =====================================================================
   3. Grille
   ================================================================== */
.container {
	width: 100%;
	max-width: var(--lpb-max);
	margin-inline: auto;
	padding-inline: 20px;
}

.site-main {
	padding: 48px 0 64px;
}

.layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 48px;
}

@media (min-width: 1000px) {
	.layout.has-sidebar {
		grid-template-columns: minmax(0, 1fr) 300px;
	}
}

/* =====================================================================
   4. En-tête
   ================================================================== */
.site-header {
	background: var(--lpb-header-strip);
	position: sticky;
	top: 0;
	z-index: 200;
}

.site-header__bar {
	background: var(--lpb-header-bar);
	-webkit-backdrop-filter: saturate(180%) blur(6px);
	backdrop-filter: saturate(180%) blur(6px);
	box-shadow: var(--lpb-shadow);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 24px;
	padding-block: 14px;
	min-height: 76px;
}

/* --- Marque : ne casse jamais, avec ou sans logo, titre long ou non --- */
.brand {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
	max-width: min(260px, 55%);
	text-decoration: none;
	color: var(--lpb-ink-strong);
}

.brand:hover,
.brand:focus {
	text-decoration: none;
}

.brand__logo {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 52px;
}

.brand__title {
	font-family: var(--lpb-font-title);
	font-size: clamp(1rem, 0.85rem + 0.6vw, 1.25rem);
	font-weight: 600;
	line-height: 1.15;
	color: var(--lpb-ink-strong);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.brand--footer {
	max-width: 240px;
	margin-bottom: 18px;
}

.brand--footer .brand__logo {
	max-height: 56px;
}

/* --- Navigation --- */
.nav {
	flex: 1 1 auto;
	min-width: 0;
}

.nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2px 6px;
}

.nav__item {
	position: relative;
}

.nav__link,
.nav__list > li > a {
	display: inline-block;
	padding: 10px 14px;
	font-family: var(--lpb-font-body);
	font-size: 16.8px;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: var(--lpb-ink-strong);
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: color 0.18s ease, border-color 0.18s ease;
}

.nav__link:hover,
.nav__link:focus,
.nav__list > li > a:hover,
.nav__list > li > a:focus {
	color: var(--lpb-accent);
	text-decoration: none;
}

/* Onglet actif : rouge de la marque + soulignement (même motif que les
   titres du pied de page du site principal). */
.nav__item.is-current > .nav__link,
.nav__list > .current-menu-item > a,
.nav__list > .current-menu-ancestor > a,
.nav__list > .current_page_item > a {
	color: var(--lpb-accent);
	border-bottom-color: var(--lpb-accent);
}

.nav__caret {
	position: absolute;
	right: 2px;
	top: 50%;
	width: 7px;
	height: 7px;
	margin-top: -5px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: rotate(45deg);
	color: var(--lpb-ink-strong);
	pointer-events: none;
	opacity: 0.75;
}

.nav__item--has-children > .nav__link {
	padding-right: 22px;
}

/* --- Sous-menu --- */
.subnav,
.nav__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 8px 0;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--lpb-border);
	border-radius: var(--lpb-radius);
	box-shadow: 0 10px 28px rgba(15, 18, 22, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
	z-index: 20;
}

.nav__item:hover > .subnav,
.nav__item:focus-within > .subnav,
.nav__list li:hover > .sub-menu,
.nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.subnav__link,
.sub-menu a {
	display: block;
	padding: 9px 18px;
	font-size: 15px;
	font-weight: 500;
	color: var(--lpb-ink-strong);
	text-decoration: none;
	white-space: nowrap;
}

.subnav__link:hover,
.subnav__link:focus,
.sub-menu a:hover,
.sub-menu a:focus {
	background: rgba(195, 62, 54, 0.07);
	color: var(--lpb-accent);
	text-decoration: none;
}

.subnav__item.is-current > .subnav__link {
	color: var(--lpb-accent);
	font-weight: 700;
}

/* --- Bouton d'appel à l'action --- */
.btn-cta {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 24px;
	background: var(--lpb-accent);
	color: #fff;
	font-size: 14.72px;
	font-weight: 500;
	line-height: 1.3;
	border-radius: var(--lpb-radius);
	box-shadow: 0 6px 16px var(--lpb-accent-soft);
	text-decoration: none;
	max-width: 100%;
	transition: background 0.18s ease;
}

.btn-cta:hover,
.btn-cta:focus {
	background: var(--lpb-accent-dark);
	color: #fff;
	text-decoration: none;
}

/* --- Bouton hamburger (mobile) --- */
.nav-toggle-cb {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-left: auto;
	border: 1px solid var(--lpb-border);
	border-radius: var(--lpb-radius);
	background: #fff;
	cursor: pointer;
	flex: 0 0 auto;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--lpb-ink-strong);
	border-radius: 2px;
	content: "";
	position: relative;
}

.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }

@media (max-width: 1079px) {
	.nav-toggle {
		display: flex;
		order: 2;
	}

	.brand { order: 1; }
	.btn-cta { order: 4; width: 100%; justify-content: center; }

	.nav {
		order: 3;
		flex-basis: 100%;
		display: none;
	}

	.nav-toggle-cb:checked ~ .nav {
		display: block;
	}

	.nav__list {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		padding: 6px 0 10px;
		border-top: 1px solid var(--lpb-border);
	}

	.nav__link,
	.nav__list > li > a {
		display: block;
		white-space: normal;
		padding: 12px 4px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	}

	.nav__item.is-current > .nav__link {
		border-bottom-color: rgba(0, 0, 0, 0.05);
	}

	.nav__caret { display: none; }
	.nav__item--has-children > .nav__link { padding-right: 4px; }

	.subnav,
	.nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: 0;
		box-shadow: none;
		padding: 0 0 6px 14px;
		min-width: 0;
		background: transparent;
	}

	.subnav__link,
	.sub-menu a {
		white-space: normal;
		padding: 9px 4px;
	}
}

/* Tablette : le bouton reste sur la même ligne que le logo. */
@media (min-width: 620px) and (max-width: 1079px) {
	.btn-cta {
		order: 2;
		width: auto;
		margin-left: auto;
	}

	.nav-toggle {
		order: 3;
		margin-left: 12px;
	}
}

@media (min-width: 1080px) {
	.site-header__inner { flex-wrap: nowrap; }
	.nav-toggle { display: none; }
	.nav { display: block !important; }
}

/* =====================================================================
   5. Bandeau de page
   ================================================================== */
.page-head {
	padding: 44px 0 8px;
	border-bottom: 1px solid var(--lpb-border);
	margin-bottom: 40px;
}

.page-head__title {
	margin-bottom: 0.35em;
}

.page-head__desc,
.page-head__baseline {
	margin: 0 0 1.2em;
	color: var(--lpb-muted);
	font-size: 1rem;
}

/* =====================================================================
   6. Liste d'articles
   ================================================================== */
.post-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	align-items: start;
	gap: 34px 28px;
}

.post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--lpb-border);
	border-radius: var(--lpb-radius);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.post-card:hover {
	box-shadow: 0 10px 26px rgba(15, 18, 22, 0.09);
	transform: translateY(-2px);
}

.post-card__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--lpb-bg-soft);
}

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

.post-card__body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.post-card__title {
	font-size: 1.2rem;
	margin-bottom: 0.4em;
}

.post-card__title a {
	color: var(--lpb-ink);
}

.post-card__title a:hover,
.post-card__title a:focus {
	color: var(--lpb-accent);
	text-decoration: none;
}

.post-card__excerpt {
	color: var(--lpb-muted);
	font-size: 0.95rem;
	margin-bottom: 1.1em;
}

.entry__meta {
	font-size: 0.82rem;
	color: var(--lpb-muted);
	margin: 0 0 0.7em;
	letter-spacing: 0.2px;
}

.entry__meta .sep {
	margin: 0 0.5em;
}

.read-more {
	margin-top: auto;
	align-self: flex-start;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--lpb-accent);
	border-bottom: 1px solid transparent;
}

.read-more:hover,
.read-more:focus {
	border-bottom-color: var(--lpb-accent);
	text-decoration: none;
}

/* =====================================================================
   7. Article seul / page
   ================================================================== */
.entry {
	max-width: 780px;
}

.entry--wide { max-width: none; }

.entry__header {
	margin-bottom: 28px;
}

.entry__thumb {
	margin: 0 0 32px;
	border-radius: var(--lpb-radius);
	overflow: hidden;
}

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

.entry__content > *:last-child { margin-bottom: 0; }

.entry__content h2 { margin-top: 1.8em; }
.entry__content h3 { margin-top: 1.6em; }

.entry__content ul,
.entry__content ol { padding-left: 1.3em; }

.entry__content li { margin-bottom: 0.4em; }

.entry__content img { border-radius: var(--lpb-radius); }

.entry__footer {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--lpb-border);
}

.entry__terms {
	font-size: 0.9rem;
	color: var(--lpb-muted);
}

.entry__terms a { font-weight: 600; }

.wp-caption-text,
.wp-element-caption {
	font-size: 0.85rem;
	color: var(--lpb-muted);
	text-align: center;
}

.alignleft  { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-inline: auto; }

.sticky .post-card { border-color: var(--lpb-accent); }

/* Navigation entre articles */
.post-nav {
	display: grid;
	gap: 16px;
	margin-top: 40px;
}

@media (min-width: 700px) {
	.post-nav { grid-template-columns: 1fr 1fr; }
}

.post-nav a {
	display: block;
	padding: 16px 20px;
	border: 1px solid var(--lpb-border);
	border-radius: var(--lpb-radius);
	color: var(--lpb-ink);
	font-weight: 600;
}

.post-nav a:hover,
.post-nav a:focus {
	border-color: var(--lpb-accent);
	color: var(--lpb-accent);
	text-decoration: none;
}

.post-nav small {
	display: block;
	font-weight: 500;
	font-size: 0.78rem;
	color: var(--lpb-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.post-nav .next { text-align: right; }

/* =====================================================================
   8. Pagination
   ================================================================== */
.pagination {
	margin-top: 48px;
}

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

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--lpb-border);
	border-radius: var(--lpb-radius);
	color: var(--lpb-ink);
	font-weight: 600;
	font-size: 0.9rem;
}

.pagination .page-numbers:hover,
.pagination .page-numbers:focus {
	border-color: var(--lpb-accent);
	color: var(--lpb-accent);
	text-decoration: none;
}

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

/* =====================================================================
   9. Colonne latérale & widgets
   ================================================================== */
.sidebar {
	min-width: 0;
}

.widget {
	margin-bottom: 36px;
}

.widget__title {
	font-family: var(--lpb-font-body);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--lpb-ink);
	margin-bottom: 16px;
	padding-bottom: 10px;
	position: relative;
}

.widget__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 46px;
	height: 2px;
	background: var(--lpb-accent);
}

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

.widget li {
	padding: 7px 0;
	border-bottom: 1px solid var(--lpb-border);
	font-size: 0.94rem;
}

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

.widget a { color: var(--lpb-ink); }

.widget a:hover,
.widget a:focus { color: var(--lpb-accent); }

/* =====================================================================
   10. Formulaire de recherche & champs
   ================================================================== */
.search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 520px;
}

.search-form .search-field {
	flex: 1 1 180px;
	min-width: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
	width: 100%;
	padding: 11px 14px;
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--lpb-ink);
	background: #fff;
	border: 1px solid var(--lpb-border);
	border-radius: var(--lpb-radius);
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--lpb-accent);
	outline: none;
	box-shadow: 0 0 0 3px rgba(195, 62, 54, 0.12);
}

textarea { min-height: 160px; resize: vertical; }

.btn,
button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 24px;
	font-family: var(--lpb-font-body);
	font-size: 0.92rem;
	font-weight: 600;
	color: #fff;
	background: var(--lpb-accent);
	border: 0;
	border-radius: var(--lpb-radius);
	cursor: pointer;
	transition: background 0.18s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus {
	background: var(--lpb-accent-dark);
	color: #fff;
	text-decoration: none;
}

.search-form .search-submit { flex: 0 0 auto; }

/* =====================================================================
   11. Commentaires
   ================================================================== */
.comments-area {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--lpb-border);
	max-width: 780px;
}

.comments-title,
.comment-reply-title {
	font-size: 1.35rem;
	margin-bottom: 20px;
}

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

.comment-list .children {
	list-style: none;
	margin: 0;
	padding-left: 24px;
	border-left: 2px solid var(--lpb-border);
}

.comment-item { margin-bottom: 24px; }

.comment-body {
	background: var(--lpb-bg-soft);
	border-radius: var(--lpb-radius);
	padding: 18px 20px;
}

.comment-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.comment-avatar { border-radius: 50%; }

.comment-author {
	display: block;
	font-weight: 700;
	color: var(--lpb-ink);
}

.comment-date {
	font-size: 0.8rem;
	color: var(--lpb-muted);
}

.comment-content p:last-child { margin-bottom: 0; }

.comment-actions {
	margin-top: 10px;
	font-size: 0.85rem;
	font-weight: 600;
	display: flex;
	gap: 14px;
}

.comment-awaiting {
	font-size: 0.85rem;
	color: var(--lpb-accent);
	font-style: italic;
}

.comment-form p { margin-bottom: 14px; }

.comment-form label {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.comment-form .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.85rem;
}

.comment-form .comment-form-cookies-consent input { width: auto; }

.comment-form .comment-form-cookies-consent label {
	font-weight: 400;
	margin: 0;
}

/* =====================================================================
   12. Pages 404 / aucun résultat
   ================================================================== */
.no-results,
.error-404 {
	max-width: 640px;
	padding: 24px 0 40px;
}

.error-404__code {
	font-family: var(--lpb-font-title);
	font-size: clamp(3rem, 2rem + 6vw, 5rem);
	line-height: 1;
	color: var(--lpb-accent);
	margin-bottom: 0.15em;
}

.helpful-links {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	font-weight: 600;
}

/* =====================================================================
   13. Pied de page
   ================================================================== */
.site-footer {
	background: var(--lpb-bg-soft);
	color: #1f1f1f;
	padding: 70px 0 40px;
	margin-top: 40px;
	font-size: 0.95rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 40px;
}

@media (min-width: 760px) {
	.footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1000px) {
	.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; }
}

.footer-col__title {
	font-family: var(--lpb-font-body);
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #1f1f1f;
	margin-bottom: 26px;
	padding-bottom: 12px;
	position: relative;
}

.footer-col__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 46px;
	height: 2px;
	background: var(--lpb-accent);
}

.footer-address {
	font-style: normal;
	line-height: 1.7;
	margin-bottom: 22px;
}

.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.footer-contact a,
.footer-links a,
.footer-legal a,
.social__link {
	color: #1f1f1f;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-legal a:hover,
.social__link:hover,
.footer-contact a:focus,
.footer-links a:focus,
.footer-legal a:focus,
.social__link:focus {
	color: var(--lpb-accent);
	text-decoration: none;
}

.footer-contact li,
.social__item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.icon-circle {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--lpb-accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.icon-circle svg { fill: #fff; }

.footer-links,
.social__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.footer-bottom {
	margin-top: 48px;
	padding-top: 26px;
	border-top: 1px solid #dedede;
	text-align: center;
}

.footer-legal {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 28px;
	font-size: 0.85rem;
	color: #4b4b4b;
}

.footer-copy {
	margin: 0;
	font-size: 0.85rem;
	font-style: italic;
	color: #6b6b6b;
}

.footer-copy a { color: inherit; }

/* =====================================================================
   14. Confort de lecture / préférences système
   ================================================================== */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.sidebar,
	.comments-area,
	.pagination { display: none !important; }
}
