/**
 * Facadiers Occitans — V2 Bold shared design system.
 *
 * Utilisé par :
 *  - page-accueil-occitanie-bold.php (homepage — contient surcharges inline pour hero)
 *  - template-dynamic-departement.php
 *  - template-dynamic-ville.php
 */
:root {
	--bg: #F7F4F0;
	--bg-2: #EDEAE5;
	--fg: #2A2A28;
	--fg-dim: #766E64;
	--accent: #8B6555;
	--accent-2: #4A6670;
	--hairline: rgba(42, 42, 40, 0.12);
}

/* V1 UI reset */
.fo-site-header, .fo-mobile-menu, .fo-footer, .fo-sticky-cta { display: none !important; }

body.bold-v2 {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 17px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.bold-v2 * { box-sizing: border-box; }
body.bold-v2 a { color: inherit; }
body.bold-v2 h1, body.bold-v2 h2, body.bold-v2 h3 {
	font-family: 'Lora', Georgia, serif;
	font-weight: 400;
	letter-spacing: -0.01em;
}

.bv2-mono {
	font-family: 'Inter', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fg-dim);
	font-weight: 500;
}
.bv2-container { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

/* Accessibility helpers */
.bv2-skiplink {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--accent);
	color: var(--bg);
	padding: 12px 20px;
	z-index: 1000;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
}
.bv2-skiplink:focus { left: 16px; top: 16px; }
.bv2-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
body.bold-v2 a:focus-visible, body.bold-v2 button:focus-visible, body.bold-v2 summary:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 2px;
}

/* Header */
.bv2-head {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 40;
	padding: 20px 0;
	backdrop-filter: blur(12px) saturate(110%);
	background: rgba(247, 244, 240, 0.92);
	border-bottom: 1px solid var(--hairline);
}
.bv2-head-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.bv2-logo { font-family: 'Lora', Georgia, serif; font-size: 20px; letter-spacing: -0.01em; color: var(--fg); text-decoration: none; }
.bv2-logo em { color: var(--accent); font-style: italic; }
.bv2-nav { display: none; gap: 32px; font-size: 13px; }
.bv2-nav a { text-decoration: none; position: relative; padding: 4px 0; }
.bv2-nav a::after {
	content: "";
	position: absolute;
	left: 0; right: 100%;
	bottom: -2px;
	height: 1px;
	background: var(--accent);
	transition: right 0.3s ease;
}
.bv2-nav a:hover::after { right: 0; }
.bv2-head-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border: 1px solid var(--fg);
	border-radius: 999px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: background 0.25s ease, color 0.25s ease;
}
.bv2-head-cta:hover { background: var(--fg); color: var(--bg); }
.bv2-head-cta::after { content: "→"; }
@media (min-width: 900px) { .bv2-nav { display: flex; } }

/* Breadcrumb */
.bv2-breadcrumb {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--fg-dim);
	margin-bottom: 32px;
}
.bv2-breadcrumb a {
	text-decoration: none;
	border-bottom: 1px dotted var(--hairline);
	transition: color 0.2s ease, border-color 0.2s ease;
}
.bv2-breadcrumb a:hover { color: var(--accent); border-color: var(--accent); }
.bv2-breadcrumb .bv2-bc-sep { margin: 0 10px; color: var(--accent); }
.bv2-breadcrumb .bv2-bc-current { color: var(--fg); }

/* Hero générique zone (dept/ville) */
.bv2-zhero {
	position: relative;
	padding: 180px 0 80px;
	min-height: 82vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-bottom: 1px solid var(--hairline);
}
.bv2-zhero-meta { display: flex; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.bv2-zhero-kicker { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.bv2-zhero-kicker::before { content: "◆ "; }
.bv2-zhero-title {
	font-size: clamp(2.25rem, 6vw, 4.5rem);
	line-height: 1.05;
	margin: 0 0 40px;
	font-weight: 600;
}
.bv2-zhero-title em {
	color: var(--accent);
	font-style: italic;
}
.bv2-zhero-lead {
	font-size: clamp(1.1rem, 1.5vw, 1.35rem);
	line-height: 1.5;
	max-width: 48ch;
	color: var(--fg);
	margin: 0 0 40px;
}
.bv2-zhero-lead em { font-family: 'Lora', Georgia, serif; font-style: italic; color: var(--accent-2); }
.bv2-zhero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 28px; margin-top: 24px; }
.bv2-zhero-stat-num {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--fg);
	line-height: 1;
	margin-bottom: 8px;
}
.bv2-zhero-stat-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-dim); line-height: 1.4; }
.bv2-zhero-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 40px;
	padding: 16px 32px;
	background: var(--accent);
	color: #F7F4F0;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	letter-spacing: 0.05em;
	font-weight: 600;
	align-self: flex-start;
	border-radius: 4px;
	transition: background 0.2s ease, transform 0.2s ease;
}
.bv2-zhero-cta:hover { background: #7a5748; transform: translateY(-2px); }
.bv2-zhero-cta::after { content: "→"; }

/* Chapters / sections */
.bv2-chapter { padding: 100px 0; border-bottom: 1px solid var(--hairline); position: relative; }
.bv2-chapter-head { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; align-items: baseline; }
@media (min-width: 900px) { .bv2-chapter-head { grid-template-columns: 120px 1fr 1fr; gap: 60px; } }
.bv2-chapter-num {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(3rem, 6vw, 5rem);
	color: var(--accent);
	line-height: 0.9;
	font-weight: 400;
}
.bv2-chapter-title {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	line-height: 1.15;
	margin: 0;
	max-width: 22ch;
}
.bv2-chapter-title em { color: var(--accent); font-style: italic; }
.bv2-chapter-lead { font-size: 1.0625rem; line-height: 1.55; color: var(--fg-dim); max-width: 46ch; margin-top: 12px; }

/* Form embed (cream card) */
.bv2-form-wrap {
	background: #ffffff;
	color: #2A2A28;
	padding: clamp(18px, 5vw, 48px);
	border-radius: 8px;
	border: 1px solid var(--hairline);
	box-shadow: 0 4px 24px rgba(42, 42, 40, 0.1);
	max-width: 760px;
	margin: 0 auto;
}
.bv2-form-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--accent);
	color: #F7F4F0;
	padding: 5px 12px;
	border-radius: 999px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 14px;
}
@media (min-width: 720px) { .bv2-form-pill { margin-bottom: 24px; } }
.bv2-form-title {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.25rem, 3vw, 1.875rem);
	line-height: 1.2;
	margin: 0 0 10px;
	color: #2A2A28;
	font-weight: 600;
}
.bv2-form-lead { font-size: 0.9375rem; color: #4B4038; margin: 0 0 18px; max-width: 52ch; line-height: 1.5; }
@media (min-width: 720px) { .bv2-form-lead { font-size: 1.0625rem; margin: 0 0 24px; } }
.bv2-form-wrap .fo-form-embed { color: #1A1410; }

/* Mobile: compress VUD widget inside .bv2-form-wrap (shared across dynamic dept/ville templates) */
@media (max-width: 719px) {
	.bv2-form-wrap #devistap_progression { margin-bottom: 24px !important; margin-top: 6px !important; }
	.bv2-form-wrap .devistap_progression_point { width: 22px !important; height: 22px !important; font-size: 10px !important; transform: translate(-50%, -10px) !important; }
	.bv2-form-wrap .devistap_step h2:not(.fo-hero-title) { font-size: 1.25rem !important; margin-bottom: 16px !important; line-height: 1.2 !important; }
	.bv2-form-wrap .devistap_choix { padding: 14px 16px !important; margin-bottom: 8px !important; }
	.bv2-form-wrap .devistap_choix:hover { transform: none !important; }
	.bv2-form-wrap .devistap_choix_texte { font-size: 14px !important; }
	.bv2-form-wrap .vud_devis_bouton_bleu { padding: 13px 22px !important; font-size: 12px !important; margin-top: 14px !important; }
	.bv2-form-wrap .devistap_bouton { padding: 8px 12px !important; font-size: 10.5px !important; margin-top: 14px !important; }
	.bv2-form-wrap .vud_useradd_input, .bv2-form-wrap .devistap_input_ville, .bv2-form-wrap .devistap_textarea, .bv2-form-wrap input[type="text"], .bv2-form-wrap input[type="email"], .bv2-form-wrap input[type="tel"], .bv2-form-wrap textarea { padding: 10px 0 !important; font-size: 16px !important; }
}

/* Cards (cities hub, artisans) */
.bv2-grid-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1px;
	background: var(--hairline);
	border-top: 1px solid var(--hairline);
	border-bottom: 1px solid var(--hairline);
}
.bv2-city-card {
	background: var(--bg);
	padding: 36px 28px;
	text-decoration: none;
	color: var(--fg);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 180px;
	position: relative;
	transition: background 0.25s ease;
}
.bv2-city-card:hover { background: var(--bg-2); }
.bv2-city-card:hover .bv2-city-name { color: var(--accent); }
.bv2-city-card:hover .bv2-city-arrow { transform: translate(4px, -4px); color: var(--accent); }
.bv2-city-kicker {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fg-dim);
	margin-bottom: 8px;
}
.bv2-city-name {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.55rem;
	line-height: 1.1;
	margin: 0 0 12px;
	font-weight: 500;
	transition: color 0.25s ease;
}
.bv2-city-meta { font-size: 13px; color: var(--fg-dim); line-height: 1.5; }
.bv2-city-meta strong { color: var(--fg); font-weight: 500; }
.bv2-city-arrow {
	position: absolute;
	top: 28px;
	right: 28px;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	color: var(--fg-dim);
	transition: transform 0.25s ease, color 0.25s ease;
}

/* Artisans list */
.bv2-artisans-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--hairline);
	border-top: 1px solid var(--hairline);
	border-bottom: 1px solid var(--hairline);
}
.bv2-artisan-row {
	background: var(--bg);
	padding: 32px 28px;
	display: grid;
	grid-template-columns: 48px 1fr auto;
	gap: 20px;
	align-items: center;
	text-decoration: none;
	color: var(--fg);
	transition: background 0.25s ease;
}
.bv2-artisan-row:hover { background: var(--bg-2); }
.bv2-artisan-rank {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.4rem;
	color: var(--accent);
}
.bv2-artisan-name {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.2rem;
	line-height: 1.2;
	margin: 0 0 4px;
	font-weight: 500;
}
.bv2-artisan-meta {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--fg-dim);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
.bv2-artisan-meta .bv2-artisan-city { color: var(--fg-dim); }

/* Badge RGE — vert sourd, lisible, semi-officiel sans agressivité */
.bv2-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: 'Inter', sans-serif;
	font-size: 10.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 3px 9px;
	border-radius: 999px;
	line-height: 1.2;
}
.bv2-badge-rge {
	background: rgba(74, 102, 112, 0.12);
	color: var(--accent-2);
	border: 1px solid rgba(74, 102, 112, 0.25);
}
.bv2-badge-rge::before { content: "✓"; font-weight: 700; margin-right: 1px; }
.bv2-artisan-cta {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--fg-dim);
	transition: color 0.25s ease;
}
.bv2-artisan-row:hover .bv2-artisan-cta { color: var(--accent); }
.bv2-artisan-cta::after { content: " →"; }

/* Services editorial grid */
.bv2-services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--hairline);
	border-top: 1px solid var(--hairline);
	border-bottom: 1px solid var(--hairline);
}
@media (min-width: 720px) { .bv2-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .bv2-services-grid { grid-template-columns: repeat(3, 1fr); } }
.bv2-service {
	background: var(--bg);
	padding: 40px 28px;
	position: relative;
}
.bv2-service-num {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--accent);
	margin-bottom: 20px;
	font-weight: 600;
}
.bv2-service-title {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.35rem;
	line-height: 1.25;
	margin: 0 0 14px;
	font-weight: 500;
}
.bv2-service-desc { font-size: 15px; line-height: 1.55; color: var(--fg-dim); margin: 0 0 20px; }
.bv2-service-price {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	letter-spacing: 0.03em;
	color: var(--fg);
	padding-top: 18px;
	border-top: 1px solid var(--hairline);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}
.bv2-service-price strong { color: var(--accent); font-weight: 500; }

/* FAQ */
.bv2-faq { max-width: 880px; margin: 0 auto; }
.bv2-faq details {
	border-bottom: 1px solid var(--hairline);
	padding: 24px 0;
	cursor: pointer;
}
.bv2-faq details:first-child { border-top: 1px solid var(--hairline); }
.bv2-faq summary {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.4;
	font-weight: 500;
	color: var(--fg);
}
.bv2-faq summary::-webkit-details-marker { display: none; }
.bv2-faq summary::after { content: "+"; font-family: 'Inter', sans-serif; color: var(--accent); font-size: 1.2rem; margin-left: 20px; transition: transform 0.3s ease; }
.bv2-faq details[open] summary::after { content: "−"; }
.bv2-faq-body { margin-top: 16px; color: var(--fg-dim); font-size: 1rem; line-height: 1.7; max-width: 64ch; }
.bv2-faq-body em { color: var(--accent); font-style: italic; }

/* CTA final */
.bv2-cta-final {
	padding: 140px 0;
	background: var(--bg-2);
	text-align: center;
	border-bottom: 1px solid var(--hairline);
}
.bv2-cta-title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.1;
	margin: 0 auto 40px;
	max-width: 24ch;
	font-weight: 600;
}
.bv2-cta-title em { color: var(--accent); font-style: italic; }
.bv2-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--accent);
	color: #F7F4F0;
	padding: 18px 36px;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	letter-spacing: 0.04em;
	font-weight: 600;
	border-radius: 6px;
	border: 2px solid var(--accent);
	transition: background 0.2s ease, transform 0.2s ease;
}
.bv2-cta-button:hover { background: #7a5748; border-color: #7a5748; transform: translateY(-2px); }
.bv2-cta-button::after { content: "→"; transition: transform 0.2s ease; }
.bv2-cta-button:hover::after { transform: translateX(5px); }
.bv2-cta-micro {
	margin-top: 28px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fg-dim);
	display: flex;
	gap: 28px;
	justify-content: center;
	flex-wrap: wrap;
}
.bv2-cta-micro span::before { content: "◆ "; color: var(--accent); }

/* Footer */
.bv2-foot { padding: 100px 0 40px; background: var(--bg); }
.bv2-foot-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 56px; }
@media (min-width: 720px) { .bv2-foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.bv2-foot-title { font-family: 'Lora', Georgia, serif; font-size: 1.4rem; margin-bottom: 20px; color: var(--fg); font-weight: 400; }
.bv2-foot-title em { color: var(--accent); font-style: italic; }
.bv2-foot h4 { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); margin: 0 0 20px; font-weight: 600; }
.bv2-foot ul { list-style: none; padding: 0; margin: 0; }
.bv2-foot ul li { margin-bottom: 10px; font-size: 14px; }
.bv2-foot ul li a { text-decoration: none; color: var(--fg); border-bottom: 1px solid transparent; transition: color 0.2s ease, border-color 0.2s ease; }
.bv2-foot ul li a:hover { color: var(--accent); border-color: var(--accent); }
.bv2-foot-bottom {
	padding-top: 32px;
	border-top: 1px solid var(--hairline);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fg-dim);
}

/* NAP block */
.bv2-nap {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--hairline);
	font-style: normal;
	color: var(--fg-dim);
	font-size: 13px;
	line-height: 1.7;
}
.bv2-nap strong { color: var(--fg); font-weight: 600; display: block; margin-bottom: 6px; font-family: 'Lora', Georgia, serif; font-size: 15px; letter-spacing: -0.01em; }
.bv2-nap a { color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--hairline); transition: border-color 0.2s ease; }
.bv2-nap a:hover { border-color: var(--accent); }
.bv2-nap-meta { margin-top: 10px; font-family: 'Inter', sans-serif; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); }

/* Related links strip */
.bv2-related {
	padding: 80px 0;
	border-bottom: 1px solid var(--hairline);
}
.bv2-related-title {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	line-height: 1.1;
	margin: 0 0 40px;
	font-weight: 400;
	max-width: 20ch;
}
.bv2-related-title em { color: var(--accent); font-style: italic; }
.bv2-related-grid { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.bv2-related-link {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid var(--hairline);
	border-radius: 999px;
	text-decoration: none;
	color: var(--fg);
	font-size: 14px;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.bv2-related-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(139, 101, 85, 0.08); }
.bv2-related-link .bv2-rl-num { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 0.12em; color: var(--fg-dim); }
.bv2-related-link:hover .bv2-rl-num { color: var(--accent); }

/* Manifesto / painpoints blocks réutilisables */
.bv2-manifest {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}
@media (min-width: 900px) { .bv2-manifest { grid-template-columns: 1fr 1fr; gap: 80px; } }
.bv2-manifest-lead {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	line-height: 1.3;
	margin: 0;
	font-weight: 400;
}
.bv2-manifest-lead em { color: var(--accent); font-style: italic; }
.bv2-manifest-facts { display: grid; gap: 32px; }
.bv2-manifest-fact { padding-top: 20px; border-top: 1px solid var(--hairline); }
.bv2-manifest-fact-num {
	font-family: 'Lora', Georgia, serif;
	font-size: 2.25rem;
	line-height: 1;
	color: var(--fg);
	margin-bottom: 10px;
}
.bv2-manifest-fact-label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fg-dim);
}

/* ===== AIDES FINANCIÈRES (template ville) ===== */
.bv2-aides-block { margin-bottom: 60px; }
.bv2-aides-block:last-of-type { margin-bottom: 32px; }
.bv2-aides-block-title {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	font-weight: 500;
	margin: 0 0 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--hairline);
	color: var(--fg);
}
.bv2-aides-local .bv2-aides-block-title { color: var(--accent); }
.bv2-aides-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 720px) { .bv2-aides-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .bv2-aides-grid { grid-template-columns: repeat(3, 1fr); } }
.bv2-aide-card {
	background: var(--bg-2);
	border: 1px solid var(--hairline);
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: border-color 0.25s ease, transform 0.25s ease;
}
.bv2-aide-card:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
}
.bv2-aide-card .bv2-mono { font-size: 10.5px; letter-spacing: 0.14em; }
.bv2-aide-card h4 {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.125rem;
	margin: 0;
	line-height: 1.25;
	color: var(--fg);
	font-weight: 500;
}
.bv2-aide-card p {
	margin: 0;
	color: var(--fg-dim);
	font-size: 0.9375rem;
	line-height: 1.55;
}
.bv2-aide-montant {
	font-family: 'Inter', sans-serif;
	font-size: 1rem !important;
	font-weight: 600;
	color: var(--accent) !important;
	letter-spacing: -0.01em;
}
.bv2-aide-conditions {
	list-style: none;
	padding: 0;
	margin: 4px 0 0;
	font-size: 13px;
	color: var(--fg-dim);
}
.bv2-aide-conditions li {
	padding-left: 14px;
	position: relative;
	margin-bottom: 4px;
	line-height: 1.4;
}
.bv2-aide-conditions li::before {
	content: "·";
	position: absolute;
	left: 4px;
	color: var(--accent);
	font-weight: 700;
}
.bv2-aide-link {
	display: inline-block;
	margin-top: auto;
	padding-top: 8px;
	color: var(--accent);
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border-top: 1px solid var(--hairline);
	font-weight: 600;
}
.bv2-aide-link:hover { color: var(--fg); }
.bv2-aide-card-compact { background: transparent; padding: 18px 0; border: none; border-top: 1px solid var(--hairline); border-radius: 0; }
.bv2-aide-card-compact:hover { transform: none; border-top-color: var(--accent); }
.bv2-aides-disclaimer {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--hairline);
	font-size: 12.5px;
	color: var(--fg-dim);
	line-height: 1.5;
	max-width: 70ch;
}

/* ===== BÂTI LOCAL (template ville) ===== */
.bv2-bati-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
@media (min-width: 900px) { .bv2-bati-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; } }

.bv2-bati-main { display: flex; flex-direction: column; gap: 14px; }
.bv2-bati-main .bv2-mono { color: var(--accent); }
.bv2-bati-mat {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 400;
	margin: 0;
	line-height: 1.05;
	font-style: italic;
	color: var(--accent);
}
.bv2-bati-desc { color: var(--fg); font-size: 1rem; line-height: 1.6; margin: 0; }
.bv2-bati-couleurs { color: var(--fg-dim); font-size: 13.5px; margin-top: 6px; }
.bv2-bati-couleurs .bv2-mono { color: var(--fg-dim); }

.bv2-bati-block {
	border-top: 1px solid var(--hairline);
	padding-top: 20px;
}
.bv2-bati-block h4 {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fg-dim);
	margin: 0 0 14px;
	font-weight: 600;
}
.bv2-bati-block ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.bv2-bati-block li {
	color: var(--fg);
	font-size: 0.9375rem;
	line-height: 1.45;
	padding-left: 18px;
	position: relative;
}
.bv2-bati-block li::before {
	content: "◆";
	position: absolute;
	left: 0;
	top: 1px;
	color: var(--accent);
	font-size: 9px;
}

/* Hint bâti contextuel (injecté dans la section bâti depuis le type_zone INSEE) */
.bv2-bati-hint {
	max-width: 70ch;
	color: var(--fg);
	font-size: 1rem;
	line-height: 1.65;
	margin: 32px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--hairline);
}
