/*
 * Immo Agence — styles principaux
 * Palette : taupe + orange automne sur fond blanc.
 * Toutes les couleurs sont pilotées via variables CSS (--ia-*) injectées par le Customizer.
 */

/* ============================================================
 * Reset / base
 * ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ia-texte, #3D342C);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ia-accent, #D97A3D); text-decoration: none; transition: color .15s; }
a:hover { color: var(--ia-accent-dk, #B85E25); }
h1, h2, h3, h4 {
	font-family: 'Georgia', 'Palatino Linotype', 'Book Antiqua', serif;
	color: var(--ia-texte, #3D342C);
	line-height: 1.25;
	margin: 0 0 .6em;
	font-weight: 600;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.visually-hidden, .screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
 * Boutons
 * ============================================================ */
.ia-btn {
	display: inline-block;
	padding: .75rem 1.5rem;
	border-radius: 4px;
	border: 2px solid transparent;
	font-weight: 600;
	font-size: .95rem;
	cursor: pointer;
	transition: all .2s;
	text-decoration: none;
	line-height: 1.2;
}
.ia-btn-primary { background: var(--ia-accent); color: #fff; border-color: var(--ia-accent); }
.ia-btn-primary:hover { background: var(--ia-accent-dk); border-color: var(--ia-accent-dk); color: #fff; }
.ia-btn-ghost { background: transparent; color: var(--ia-texte); border-color: var(--ia-border); }
.ia-btn-ghost:hover { background: var(--ia-bg-alt); color: var(--ia-accent-dk); }

/* ============================================================
 * Header : topbar
 * ============================================================ */
.site-header { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.04); position: sticky; top: 0; z-index: 1000; }
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}
.topbar-inner {
	display: flex; align-items: center; gap: 1.5rem;
	padding: .75rem 1.25rem; flex-wrap: wrap;
}
.topbar-logo { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .75rem; }
.topbar-logo img, .custom-logo { max-height: 60px; width: auto; display: block; }
.topbar-logo img.topbar-logo-img { max-height: none; width: auto; display: block; }
.topbar-logo-text { font-family: Georgia, serif; font-size: 1.4rem; color: var(--ia-texte); font-weight: 600; }
.topbar-photo { flex: 0 0 auto; max-width: 180px; }
.topbar-photo img { max-height: 60px; border-radius: 4px; }

.topbar-nav { margin-left: auto; }
.primary-nav { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.5rem; }
.primary-nav a {
	color: var(--ia-texte); font-weight: 500; padding: .5rem 0;
	position: relative; white-space: nowrap;
}
.primary-nav a::after {
	content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
	background: var(--ia-accent); transition: width .2s;
}
.primary-nav a:hover { color: var(--ia-accent); }
.primary-nav a:hover::after { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle .burger { display: block; width: 24px; height: 2px; background: var(--ia-texte); position: relative; }
.nav-toggle .burger::before, .nav-toggle .burger::after {
	content: ''; position: absolute; left: 0; width: 24px; height: 2px; background: var(--ia-texte);
}
.nav-toggle .burger::before { top: -7px; }
.nav-toggle .burger::after  { top: 7px; }

/* Subbar */
.subbar { background: var(--ia-bg-alt); border-top: 1px solid var(--ia-border); }
.subbar-inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: .6rem 1.25rem; gap: 1rem; flex-wrap: wrap;
}
.subbar-ville { font-weight: 600; color: var(--ia-texte-soft); font-size: .95rem; }
.subbar-gerant { display: flex; align-items: center; gap: .75rem; }
.subbar-gerant-info .gerant-nom { font-weight: 600; font-size: .9rem; color: var(--ia-texte); }
.subbar-gerant-info .gerant-tel { font-size: .95rem; color: var(--ia-accent); font-weight: 600; }

/* Avatar rond */
.avatar-round {
	width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
	border: 2px solid var(--ia-accent); flex: 0 0 auto;
}
.avatar-round img { width: 100%; height: 100%; object-fit: cover; }
.avatar-round-lg { width: 100px; height: 100px; }

/* ============================================================
 * Sections : titres
 * ============================================================ */
section { padding: 4rem 0; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { position: relative; display: inline-block; padding-bottom: .6rem; }
.section-head h2::after {
	content: ''; position: absolute; left: 50%; bottom: 0; width: 60px; height: 3px;
	background: var(--ia-accent); transform: translateX(-50%);
}
.section-intro { max-width: 700px; margin: 0 auto; color: var(--ia-texte-soft); }

/* ============================================================
 * Hero
 * ============================================================ */
.hero {
	position: relative; min-height: 70vh; display: flex; align-items: center;
	background-size: cover; background-position: center; color: #fff;
	padding: 5rem 0;
}
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(61,52,44,.65), rgba(217,122,61,.45));
}
.hero-inner { position: relative; text-align: center; }
.hero-titre { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,.3); }
.hero-sous-titre { font-size: clamp(1rem, 2vw, 1.3rem); max-width: 600px; margin: 0 auto 2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-cta .ia-btn-ghost { color: #fff; border-color: #fff; }
.hero-cta .ia-btn-ghost:hover { background: #fff; color: var(--ia-accent-dk); }

/* ============================================================
 * Section biens (scroll horizontal)
 * ============================================================ */
.section-biens { background: #fff; }
.biens-scroller { position: relative; }
.biens-track {
	display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
	padding: 1rem 1.25rem 1.5rem; scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}
.biens-track::-webkit-scrollbar { height: 8px; }
.biens-track::-webkit-scrollbar-thumb { background: var(--ia-border); border-radius: 4px; }

.bien-card {
	flex: 0 0 320px; scroll-snap-align: start;
	background: #fff; border: 1px solid var(--ia-border); border-radius: 8px;
	overflow: hidden; transition: all .25s; color: var(--ia-texte);
	box-shadow: 0 2px 6px rgba(61,52,44,.05);
}
.bien-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(61,52,44,.12); border-color: var(--ia-accent); }
.bien-card-img { aspect-ratio: 3/2; overflow: hidden; background: var(--ia-bg-alt); }
.bien-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bien-card:hover .bien-card-img img { transform: scale(1.05); }
.bien-card-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--ia-bg-alt), var(--ia-border)); }
.bien-card-body { padding: 1.25rem; }
.bien-card-nom { font-size: 1.1rem; margin-bottom: .3rem; }
.bien-card-ville { color: var(--ia-texte-soft); font-size: .9rem; margin: 0 0 .5rem; }
.bien-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: .95rem; margin: 0; }
.bien-card-prix { color: var(--ia-accent); font-weight: 700; font-size: 1.1rem; }

.biens-nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 44px; height: 44px; border-radius: 50%;
	background: #fff; border: 1px solid var(--ia-border); color: var(--ia-texte);
	font-size: 1.5rem; cursor: pointer; z-index: 2;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,.1); transition: all .2s;
}
.biens-nav:hover { background: var(--ia-accent); color: #fff; border-color: var(--ia-accent); }
.biens-prev { left: .5rem; }
.biens-next { right: .5rem; }

/* ============================================================
 * Zone d'intervention (carte)
 * ============================================================ */
.section-zone { background: var(--ia-bg-alt); position: relative; z-index: 1; }
.zone-map {
	height: 500px; border-radius: 8px; overflow: hidden;
	border: 1px solid var(--ia-border); background: #fff;
	position: relative; z-index: 1;
}
/* Forcer les panneaux et contrôles Leaflet à rester sous le header sticky */
.leaflet-pane,
.leaflet-top,
.leaflet-bottom {
	z-index: 1 !important;
}
.leaflet-popup-pane,
.leaflet-tooltip-pane {
	z-index: 10 !important;
}
.leaflet-control {
	z-index: 10 !important;
}
.map-credit { font-size: .8rem; color: var(--ia-texte-soft); text-align: right; margin-top: .5rem; }

/* ============================================================
 * Agence
 * ============================================================ */
.agence-grid {
	display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center;
}
.agence-photo img { border-radius: 8px; box-shadow: 0 8px 24px rgba(61,52,44,.15); width: 100%; }
.agence-cv { margin-bottom: 1.5rem; font-size: 1.05rem; }
.agence-coords { display: grid; gap: .8rem; margin: 0; }
.agence-coords > div { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--ia-border); }
.agence-coords dt { font-weight: 600; color: var(--ia-texte-soft); margin: 0; }
.agence-coords dd { margin: 0; }

/* ============================================================
 * Avis
 * ============================================================ */
.section-avis { background: #fff; }
.avis-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}
.avis-card {
	background: var(--ia-bg-alt); border: 1px solid var(--ia-border); border-radius: 8px;
	padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
	transition: transform .2s;
}
.avis-card:hover { transform: translateY(-3px); }
.avis-card-head { display: flex; align-items: center; gap: 1rem; }
.avis-logo { width: 40px; height: 40px; flex: 0 0 auto; }
.avis-logo svg { width: 100%; height: 100%; }
.avis-reseau-nom { font-weight: 700; color: var(--ia-texte); }
.avis-note-moy { font-size: .85rem; color: var(--ia-texte-soft); }

.avis-body { margin: 0; padding: 0; border-left: 3px solid var(--ia-accent); padding-left: 1rem; }
.avis-meta { display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: .3rem; flex-wrap: wrap; gap: .3rem; }
.avis-auteur { color: var(--ia-texte); }
.avis-date   { color: var(--ia-texte-soft); }
.avis-texte  { font-style: italic; color: var(--ia-texte-soft); margin: .5rem 0 0; font-size: .95rem; }

.stars { display: inline-flex; gap: 1px; color: #FFC107; font-size: 1rem; line-height: 1; }
.stars .empty { color: var(--ia-border); }

.avis-link { margin-top: auto; font-size: .9rem; font-weight: 600; }

/* ============================================================
 * FNAIM
 * ============================================================ */
.section-fnaim { background: var(--ia-bg-alt); }
.fnaim-grid {
	display: grid; grid-template-columns: 200px 1fr; gap: 2rem; align-items: center;
	max-width: 900px; margin: 0 auto;
}
.fnaim-logo img { max-width: 180px; }
.fnaim-intro { font-size: 1.1rem; margin: 0 0 1rem; }

/* ============================================================
 * Accordéons
 * ============================================================ */
.bien-accordion {
	border: 1px solid var(--ia-border); border-radius: 6px;
	margin-bottom: 1rem; background: #fff;
}
.bien-accordion summary {
	padding: 1rem 1.25rem; cursor: pointer; font-weight: 600;
	list-style: none; position: relative; padding-right: 2.5rem;
	font-family: Georgia, serif; font-size: 1.1rem; color: var(--ia-texte);
}
.bien-accordion summary::-webkit-details-marker { display: none; }
.bien-accordion summary::after {
	content: '+'; position: absolute; right: 1.25rem; top: 50%;
	transform: translateY(-50%); font-size: 1.4rem; color: var(--ia-accent);
	transition: transform .2s;
}
.bien-accordion[open] summary::after { content: '−'; }
.bien-accordion summary:hover { color: var(--ia-accent); }
.bien-accordion summary .accordion-sub {
	display: inline-block;
	margin-left: .5em;
	font-size: .85rem;
	font-weight: 400;
	font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
	color: var(--ia-texte-soft);
	font-style: italic;
}
.accordion-body { padding: 0 1.25rem 1.25rem; }

/* ============================================================
 * Contact (home)
 * ============================================================ */
.section-contact { background: #fff; }
.contact-grid {
	display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start;
	max-width: 1000px; margin: 0 auto;
}
.contact-gerant { text-align: center; padding: 2rem; background: var(--ia-bg-alt); border-radius: 8px; }
.contact-gerant .avatar-round { margin: 0 auto 1rem; }
.contact-tel { margin: 0; }
.contact-tel span { display: block; color: var(--ia-texte-soft); font-size: .9rem; }
.contact-tel a { font-size: 1.4rem; font-weight: 700; }

/* ============================================================
 * Formulaire
 * ============================================================ */
.ia-form {
	background: var(--ia-bg-alt); border: 1px solid var(--ia-border); border-radius: 8px;
	padding: 2rem; display: grid; gap: 1.25rem;
}
.ia-form-title { margin: 0 0 .5rem; }
.ia-form-row { display: grid; gap: .4rem; }
.ia-form-two { grid-template-columns: 1fr 1fr; gap: 1rem; }
.ia-form-two > div { display: grid; gap: .4rem; }
.ia-form-row label { font-weight: 600; font-size: .9rem; color: var(--ia-texte); }
.ia-form-row .req { color: var(--ia-accent); }
.ia-form-row input[type="text"],
.ia-form-row input[type="email"],
.ia-form-row input[type="tel"],
.ia-form-row select,
.ia-form-row textarea {
	width: 100%; padding: .7rem .9rem; border: 1px solid var(--ia-border);
	border-radius: 4px; font: inherit; background: #fff;
	transition: border-color .15s, box-shadow .15s;
}
.ia-form-row input:focus, .ia-form-row select:focus, .ia-form-row textarea:focus {
	outline: none; border-color: var(--ia-accent);
	box-shadow: 0 0 0 3px rgba(217,122,61,.15);
}
.ia-form-row input.error, .ia-form-row select.error, .ia-form-row textarea.error {
	border-color: #c62828;
}
.ia-form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ia-form-consent label { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .9rem; }
.ia-form-consent input[type="checkbox"] { margin-top: .2rem; }
.ia-form-consent .ia-charte-open { text-decoration: underline; margin-left: .3rem; }
.ia-form-submit { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ia-form-feedback { margin: 0; font-size: .9rem; }
.ia-form-feedback.success { color: #2e7d32; }
.ia-form-feedback.error   { color: #c62828; }

/* ============================================================
 * Single bien
 * ============================================================ */
.single-bien { padding: 2rem 0 4rem; }
.bien-header { text-align: center; margin-bottom: 2rem; padding-top: 1rem; }
.bien-title  { margin-bottom: .5rem; }
.bien-caption { color: var(--ia-texte-soft); font-size: 1.1rem; }

/* Galerie horizontale */
.bien-gallery {
	position: relative; margin-bottom: 3rem; background: var(--ia-bg-alt); padding: 1.5rem 0;
}
.gallery-track {
	display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
	padding: 0 1.5rem; scroll-behavior: smooth;
}
.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--ia-border); border-radius: 3px; }
.gallery-slide {
	flex: 0 0 min(80vw, 900px); scroll-snap-align: center; margin: 0;
	border-radius: 8px; overflow: hidden; background: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.gallery-slide img { width: 100%; height: clamp(300px, 50vh, 600px); object-fit: cover; display: block; }
.gallery-caption {
	padding: .75rem 1.25rem; background: rgba(61,52,44,.85); color: #fff;
	font-size: .95rem; margin: 0;
}
.gallery-nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 50px; height: 50px; border-radius: 50%;
	background: #fff; border: 1px solid var(--ia-border); color: var(--ia-texte);
	font-size: 1.8rem; cursor: pointer; z-index: 2;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.gallery-nav:hover { background: var(--ia-accent); color: #fff; border-color: var(--ia-accent); }
.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

/* Specs */
.bien-specs {
	background: var(--ia-bg-alt); border-radius: 8px; padding: 1.5rem;
	margin-bottom: 2rem; border: 1px solid var(--ia-border);
}
.specs-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1rem; margin: 0;
}
.specs-grid > div { text-align: center; padding: .5rem; }
.specs-grid dt { font-size: .8rem; color: var(--ia-texte-soft); text-transform: uppercase; letter-spacing: .05em; }
.specs-grid dd { margin: .3rem 0 0; font-size: 1.2rem; font-weight: 600; color: var(--ia-texte); }
.specs-grid .specs-prix dd { color: var(--ia-accent); font-size: 1.5rem; }

.bien-pub { background: var(--ia-bg-alt); padding: 2rem; border-radius: 8px; margin-bottom: 2rem; font-size: 1.1rem; border-left: 4px solid var(--ia-accent); }
.bien-pub p:first-child { margin-top: 0; }
.bien-pub p:last-child { margin-bottom: 0; }

.bien-details { margin-bottom: 3rem; }
.dpe-images { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.dpe-images img { max-width: 100%; border-radius: 4px; }
.bien-map { height: 400px; border-radius: 6px; border: 1px solid var(--ia-border); }

/* Contact bien */
.bien-contact {
	display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start;
	padding-top: 2rem; border-top: 1px solid var(--ia-border);
}
.bien-contact-gerant { text-align: center; padding: 2rem; background: var(--ia-bg-alt); border-radius: 8px; }
.bien-contact-gerant .avatar-round { margin: 0 auto 1rem; }
.bien-contact-tel span { display: block; color: var(--ia-texte-soft); font-size: .9rem; }
.bien-contact-tel a { font-size: 1.4rem; font-weight: 700; }

/* ============================================================
 * Single page (Charte, Grille tarifaire)
 * ============================================================ */
.single-page { padding: 3rem 1.25rem; max-width: 900px; }
.page-header h1 { text-align: center; margin-bottom: 2rem; }
.page-content { font-size: 1.05rem; }
.page-content h2 { margin-top: 2em; }

/* ============================================================
 * Footer
 * ============================================================ */
.site-footer {
	background: var(--ia-texte); color: #ddd; padding: 3rem 0 1.5rem;
	margin-top: 4rem; font-size: .9rem;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--ia-accent); }
.footer-mentions {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem; margin-bottom: 2rem;
}
.footer-col-wide { grid-column: 1 / -1; }
.footer-col h3 {
	color: var(--ia-accent); font-size: 1rem; margin-bottom: 1rem;
	padding-bottom: .4rem; border-bottom: 1px solid rgba(255,255,255,.1);
	font-family: inherit;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .5rem; line-height: 1.4; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { margin: 0; }

/* ============================================================
 * Modale charte
 * ============================================================ */
.ia-modal {
	border: 0; padding: 0; max-width: 800px; width: 92%; max-height: 85vh;
	border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.3);
	background: #fff;
}
.ia-modal::backdrop { background: rgba(0,0,0,.6); }
.ia-modal-inner { display: flex; flex-direction: column; max-height: 85vh; }
.ia-modal-head {
	display: flex; justify-content: space-between; align-items: center;
	padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--ia-border);
	background: var(--ia-bg-alt);
}
.ia-modal-head h2 { margin: 0; font-size: 1.3rem; }
.ia-modal-close {
	background: none; border: 0; font-size: 1.5rem; cursor: pointer;
	color: var(--ia-texte-soft); padding: .25rem .5rem;
}
.ia-modal-close:hover { color: var(--ia-accent-dk); }
.ia-modal-body { padding: 1.5rem; overflow-y: auto; }

/* ============================================================
 * Émojis et smileys WordPress — rendu inline sans saut de ligne
 * WP remplace les émojis Unicode par des <img class="emoji"> et les
 * smileys textuels par des <img class="wp-smiley">. Sans ces règles,
 * ces images héritent d'un rendu bloc qui génère des sauts de ligne
 * parasites autour du pictogramme.
 * ============================================================ */
img.emoji,
img.wp-smiley {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 .07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}

/* ============================================================
 * Responsive
 * ============================================================ */
@media (max-width: 900px) {
	.agence-grid { grid-template-columns: 1fr; }
	.fnaim-grid  { grid-template-columns: 1fr; text-align: center; }
	.fnaim-logo  { display: flex; justify-content: center; }
	.contact-grid, .bien-contact { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
	.nav-toggle { display: flex; margin-left: auto; }
	.topbar-nav { position: relative; }
	.primary-nav {
		display: none; position: absolute; top: 100%; right: 0;
		background: #fff; flex-direction: column; padding: 1rem;
		border: 1px solid var(--ia-border); border-radius: 4px; min-width: 220px;
		box-shadow: 0 4px 12px rgba(0,0,0,.08);
	}
	.primary-nav.open { display: flex; }
	.topbar-photo { display: none; }
	.ia-form-two { grid-template-columns: 1fr; }
	.specs-grid { grid-template-columns: repeat(2, 1fr); }
	.bien-card { flex: 0 0 270px; }
	.footer-bottom { flex-direction: column; text-align: center; }
}
