﻿@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   CHARTE GRAPHIQUE — Portail Architecture d'Intérieur
   Blanc #FFFFFF · Noir #111111 · Lin Naturel #D4B896
   Fraunces (titres) + Plus Jakarta Sans (corps)
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── VARIABLES ── */
:root {
  --blanc  : #FCFBF9;
  --noir   : #17181B;
  --beton  : #C8AF92;   /* Lin Naturel */

  --noir-04  : rgba(23,24,27,0.04);
  --noir-08  : rgba(23,24,27,0.08);
  --noir-15  : rgba(23,24,27,0.15);
  --noir-25  : rgba(23,24,27,0.25);
  --noir-50  : rgba(23,24,27,0.50);
  --beton-15 : rgba(200,175,146,0.15);
  --beton-30 : rgba(200,175,146,0.30);

  --f-titre : 'Fraunces', Georgia, serif;
  --f-corps : 'Plus Jakarta Sans', system-ui, sans-serif;

  --r-sm   : 4px;
  --r-md   : 8px;
  --r-lg   : 14px;
  --r-xl   : 20px;
  --r-pill : 100px;

  --nav-h  : 72px;
  --max-w  : 1200px;
  --pad-x  : 80px;
  --pad-s  : 100px;
}

/* ── BASE ── */
body {
  font-family: var(--f-corps);
  background: linear-gradient(180deg, #fefdfb 0%, var(--blanc) 28%, #f9f7f3 100%);
  color: var(--noir);
  line-height: 1.65;
  letter-spacing: 0.003em;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHIE ── */
h1 { font-family: var(--f-titre); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-family: var(--f-titre); font-weight: 500; line-height: 1.15; }
h3 { font-family: var(--f-titre); font-weight: 400; line-height: 1.25; }
h4 { font-family: var(--f-corps); font-weight: 600; line-height: 1.35; }
* { font-style: normal !important; }

.eyebrow {
  font-family: var(--f-corps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beton);
}

/* ── NAVIGATION — SPLIT STYLE ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--blanc);
  z-index: 100;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Zone blanche — logo + liens */
.nav-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 32px 0 40px;
  gap: 0;
  min-width: 0;
  border-bottom: 1px solid var(--noir-08);
}

.nav-logo {
  font-family: var(--f-titre);
  font-size: 20px;
  font-weight: 500;
  color: var(--noir);
  margin-right: 40px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--beton); }
.nav-logo em   { color: var(--noir); }

.nav-links {
  display: flex;
  flex: 1;
  gap: 0;
  list-style: none;
}
.nav-links a {
  font-family: var(--f-corps);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--noir-50);
  padding: 0 14px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom-color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover       { color: var(--noir); }
.nav-links a.active      { color: var(--noir); border-bottom-color: var(--beton); }

/* Zone sombre — CTA */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  background: var(--noir);
  padding: 0 36px;
  align-self: stretch;
  border-bottom: 1px solid var(--noir);
}
.nav-actions .btn {
  background: transparent !important;
  border-color: transparent !important;
  color: rgba(252,251,249,0.55) !important;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 0;
  transition: color 0.18s;
}
.nav-actions .btn:hover { color: var(--blanc) !important; opacity: 1; }
.nav-actions .btn:not(:last-child) {
  border-right: 1px solid rgba(252,251,249,0.10) !important;
  border-radius: 0;
}
/* Dernier bouton — accent beton */
.nav-actions .btn:last-child {
  color: var(--beton) !important;
  font-weight: 600;
}
.nav-actions .btn:last-child:hover { color: #e8c99a !important; }

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-corps);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  transition: opacity 0.14s, transform 0.1s, background 0.14s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover  { opacity: 0.82; }
.btn:active { transform: scale(0.98); }

.btn-md  { font-size: 12.5px; padding: 9px 18px; }
.btn-lg  { font-size: 15px; padding: 15px 32px; }
.btn-sm  { font-size: 11px; padding: 7px 14px; }
.btn-pill { border-radius: var(--r-pill); }

.btn-noir   { background: var(--noir);  color: var(--blanc); border-color: var(--noir);  }
.btn-beton  { background: var(--beton); color: var(--blanc); border-color: var(--beton); }
.btn-blanc  { background: var(--blanc); color: var(--noir);  border-color: var(--noir-25); }
.btn-ol-n   { background: transparent;  color: var(--noir);  border-color: var(--noir);  }
.btn-ol-b   { background: transparent;  color: var(--beton); border-color: var(--beton); }
.btn-ol-w   { background: transparent;  color: var(--blanc); border-color: rgba(255,255,255,0.40); }

/* ── BOUTON VENTE ── */
.btn-sale {
  background: var(--beton);
  color: var(--noir);
  border-color: var(--beton);
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
}
.btn-sale::before {
  content: '★';
  font-size: 10px;
  margin-right: 5px;
  opacity: 0.8;
}
.btn-sale:hover { opacity: 1; background: #c5a87e; border-color: #c5a87e; }

/* ── FLOATING SALE CTA ── */
.floating-sale {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.floating-sale-bubble {
  background: var(--noir);
  color: var(--blanc);
  font-size: 11px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0.75;
  pointer-events: none;
}
.floating-sale-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--beton);
  color: var(--noir);
  font-family: var(--f-corps);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212,184,150,0.45);
  transition: transform 0.15s, box-shadow 0.15s;
}
.floating-sale-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,184,150,0.55);
}
.floating-sale-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── BANDE CTA VENTE ── */
.sale-cta-band {
  background: var(--noir);
  padding: 64px 0;
  text-align: center;
  border-top: 3px solid var(--beton);
}
.sale-cta-band-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beton);
  margin-bottom: 18px;
}
.sale-cta-band-title {
  font-family: var(--f-titre);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--blanc);
  margin-bottom: 14px;
  line-height: 1.2;
}
.sale-cta-band-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.50);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.sale-cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sale-cta-band-note {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ── BADGES ── */
.badge {
  display: inline-block;
  font-family: var(--f-corps);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.badge-noir  { background: var(--noir);    color: var(--blanc);  }
.badge-beton { background: var(--beton-15); color: var(--noir);   border: 1px solid var(--beton-30); }
.badge-ol    { background: transparent;    color: var(--beton);  border: 1px solid var(--noir-15); }

/* ── FORMULAIRES ── */
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--noir);
}
.form-input {
  width: 100%;
  font-family: var(--f-corps);
  font-size: 14px;
  font-weight: 400;
  color: var(--noir);
  background: var(--blanc);
  border: 1.5px solid var(--noir-25);
  border-radius: var(--r-md);
  padding: 12px 16px;
  outline: none;
  appearance: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus { border-color: var(--noir); box-shadow: 0 0 0 3px var(--noir-08); }
.form-input::placeholder { color: var(--beton); }

/* ── CARDS ARCHITECTE ── */
.archi-card {
  background: var(--blanc);
  border: 1px solid var(--noir-08);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.archi-card:hover {
  box-shadow: 0 12px 40px rgba(17,17,17,0.10);
  transform: translateY(-3px);
}
.archi-card-img {
  height: 220px;
  background: var(--noir-04);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.archi-card-body { padding: 22px 24px 26px; }
.archi-card-name {
  font-family: var(--f-titre);
  font-size: 20px;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 4px;
}
.archi-card-loc {
  font-size: 13px;
  color: var(--beton);
  margin-bottom: 12px;
}
.archi-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.archi-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--noir-08);
}
.archi-card-stat {
  font-size: 12px;
  color: var(--beton);
}
.archi-card-stat strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--noir);
  display: block;
}

/* ── ARTICLE CARDS ── */
.article-card {
  background: var(--blanc);
  border: 1px solid var(--noir-08);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-card:hover {
  box-shadow: 0 12px 40px rgba(17,17,17,0.10);
  transform: translateY(-3px);
}
.article-card-img {
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  position: relative;
}
.article-card-body { padding: 20px 22px 24px; }
.article-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beton);
  margin-bottom: 8px;
}
.article-card-title {
  font-family: var(--f-titre);
  font-size: 19px;
  font-weight: 500;
  color: var(--noir);
  line-height: 1.28;
  margin-bottom: 10px;
}
.article-card-meta {
  font-size: 12px;
  color: var(--beton);
}

/* ── SECTIONS GÉNÉRIQUES ── */
.section { padding: var(--pad-s) 0; }
.section-alt { background: var(--noir-04); }
.section-dark { background: var(--noir); color: var(--blanc); }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }

.section-title {
  font-family: var(--f-titre);
  font-size: 42px;
  font-weight: 500;
  color: inherit;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--beton); }
.section-dark .section-title em { color: var(--beton); }

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--noir-50);
  max-width: 520px;
  line-height: 1.7;
}
.section-dark .section-sub { color: rgba(255,255,255,0.50); }
.section-header.centered .section-sub { margin: 0 auto; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

/* ── FOOTER ── */
.footer {
  background: var(--noir);
  border-top: 2px solid var(--beton);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.50);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--f-titre);
  font-size: 26px;
  font-weight: 500;
  color: var(--blanc);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--beton); }
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.40);
  font-size: 13px;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--blanc); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  max-width: 680px;
  line-height: 1.7;
}
.footer-copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}

/* ── PAGE TOP SPACING ── */
.page-top { padding-top: var(--nav-h); }

/* ── HERO HOMEPAGE ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: var(--blanc);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid var(--noir-08);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -40px; right: 40px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid var(--noir-04);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beton);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--beton);
}
.hero-title {
  font-family: var(--f-titre);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  line-height: 1.04;
  color: var(--noir);
  margin-bottom: 28px;
  max-width: 780px;
}
.hero-title em { font-style: normal; color: var(--beton); }
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--noir-50);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Search bar hero */
.hero-search {
  background: var(--blanc);
  border: 1.5px solid var(--noir-25);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  max-width: 620px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
  margin-bottom: 24px;
}
.hero-search:focus-within {
  border-color: var(--noir);
  box-shadow: 0 0 0 4px var(--noir-08);
}
.hero-search-icon {
  width: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beton);
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--f-corps);
  font-size: 15px;
  font-weight: 400;
  color: var(--noir);
  padding: 16px 0;
  background: transparent;
}
.hero-search input::placeholder { color: var(--beton); }
.hero-search-select {
  border: none;
  border-left: 1px solid var(--noir-08);
  outline: none;
  font-family: var(--f-corps);
  font-size: 13px;
  color: var(--beton);
  padding: 16px 16px;
  background: transparent;
  cursor: pointer;
  appearance: none;
}
.hero-search-btn {
  background: var(--noir);
  color: var(--blanc);
  border: none;
  font-family: var(--f-corps);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0 28px;
  height: 100%;
  min-height: 54px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.hero-search-btn:hover { background: #333; }

.hero-hints {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-hint-label {
  font-size: 12px;
  color: var(--beton);
  font-weight: 500;
}
.hero-hint {
  font-size: 12px;
  color: var(--noir);
  border: 1px solid var(--noir-15);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  transition: background 0.14s;
  cursor: pointer;
}
.hero-hint:hover { background: var(--noir-04); }

/* Stats bar */
.stats-bar {
  border-top: 1px solid var(--noir-08);
  border-bottom: 1px solid var(--noir-08);
  padding: 32px 0;
  background: var(--blanc);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--f-titre);
  font-size: 42px;
  font-weight: 500;
  color: var(--noir);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--beton);
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--noir-08);
}

/* Feature blocks */
.feature-block {
  padding: 32px;
  border: 1px solid var(--noir-08);
  border-radius: var(--r-xl);
  background: var(--blanc);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-block:hover {
  box-shadow: 0 8px 32px rgba(17,17,17,0.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--noir-04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.feature-title {
  font-family: var(--f-titre);
  font-size: 20px;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 10px;
}
.feature-text {
  font-size: 14px;
  color: var(--noir-50);
  line-height: 1.7;
}

/* CTA band */
.cta-band {
  background: var(--noir);
  padding: 80px 0;
}
.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-band-text h2 {
  font-family: var(--f-titre);
  font-size: 42px;
  font-weight: 500;
  color: var(--blanc);
  margin-bottom: 12px;
  line-height: 1.15;
}
.cta-band-text h2 em { font-style: normal; color: var(--beton); }
.cta-band-text p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  max-width: 420px;
}
.cta-band-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* Page hero (internal pages) */
.page-hero {
  background: var(--noir);
  padding: 72px 0 64px;
  border-bottom: 2px solid var(--beton);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beton);
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--f-titre);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  color: var(--blanc);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-title em { font-style: normal; color: var(--beton); }
.page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.50);
  max-width: 560px;
  line-height: 1.7;
}

/* Verified badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blanc);
  background: var(--beton);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.verified-badge::before { content: '✓'; font-size: 10px; }

/* Filters bar */
.filters-bar {
  background: var(--blanc);
  border-bottom: 1px solid var(--noir-08);
  padding: 20px 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
}
.filters-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-select {
  font-family: var(--f-corps);
  font-size: 13px;
  font-weight: 500;
  color: var(--noir);
  background: var(--blanc);
  border: 1.5px solid var(--noir-15);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.15s;
}
.filter-select:focus { border-color: var(--noir); }

/* Testimonials */
.testimonial {
  background: var(--blanc);
  border: 1px solid var(--noir-08);
  border-radius: var(--r-xl);
  padding: 36px;
}
.testimonial-quote {
  font-family: var(--f-titre);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: var(--noir);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--beton);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--blanc);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--noir); }
.testimonial-info { font-size: 12px; color: var(--beton); }

/* Step process */
.step { display: flex; gap: 24px; margin-bottom: 40px; }
.step-num {
  font-family: var(--f-titre);
  font-size: 48px;
  font-weight: 500;
  color: var(--noir-08);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.step-content {}
.step-title { font-family: var(--f-titre); font-size: 22px; font-weight: 500; color: var(--noir); margin-bottom: 8px; }
.step-text  { font-size: 14px; color: var(--noir-50); line-height: 1.7; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--noir-08);
  padding: 24px 0;
}
.faq-question {
  font-family: var(--f-titre);
  font-size: 18px;
  font-weight: 500;
  color: var(--noir);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after { content: '+'; font-family: var(--f-corps); font-size: 20px; font-weight: 300; color: var(--beton); flex-shrink: 0; }
.faq-answer {
  font-size: 14px;
  color: var(--noir-50);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 680px;
}

/* Contact form */
.contact-form { max-width: 600px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-textarea {
  width: 100%;
  font-family: var(--f-corps);
  font-size: 14px;
  color: var(--noir);
  background: var(--blanc);
  border: 1.5px solid var(--noir-25);
  border-radius: var(--r-md);
  padding: 12px 16px;
  outline: none;
  resize: vertical;
  min-height: 140px;
  transition: border-color 0.15s;
}
.form-textarea:focus { border-color: var(--noir); box-shadow: 0 0 0 3px var(--noir-08); }
.form-textarea::placeholder { color: var(--beton); }

/* ================================================================
   EFFETS VISUELS & ANIMATIONS — main.js companion
   ================================================================ */

/* curseur natif restauré */

/* ── BANDEAU DÉFILANT ── */
.ticker-wrap {
  background: var(--noir);
  overflow: hidden;
  border-top: 1px solid rgba(212,184,150,0.12);
  border-bottom: 1px solid rgba(212,184,150,0.12);
  padding: 13px 0;
  user-select: none;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-move 50s linear infinite;
  will-change: transform;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-family: var(--f-corps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,184,150,0.55);
  transition: color .2s;
}
.ticker-item:hover { color: var(--beton); }
.ticker-sep {
  width: 3px; height: 3px;
  background: rgba(212,184,150,0.35);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAV — OMBRE AU SCROLL ── */
.nav { transition: box-shadow .3s; }
.nav.scrolled {
  box-shadow: 0 4px 32px rgba(17,17,17,0.10);
}
.nav.scrolled .nav-inner {
  background: rgba(252,251,249,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BOUTON — SHIMMER + POSITION ── */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0 -60% 0 -60%;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.20) 50%, transparent 70%);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(200%) skewX(-15deg); }

/* ── CARDS — LIFT AU SURVOL ── */
.archi-card,
.article-card,
.archi-profile-card {
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s cubic-bezier(.16,1,.3,1);
}
.archi-card:hover,
.article-card:hover,
.archi-profile-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 56px rgba(17,17,17,0.10);
}
.archi-list-card {
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s cubic-bezier(.16,1,.3,1), border-color .2s;
}
.archi-list-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 32px rgba(17,17,17,0.07);
  border-color: var(--beton);
}

/* ── IMAGE — ZOOM AU SURVOL ── */
.archi-card-img,
.article-card-img,
.archi-profile-img { overflow: hidden; }

.archi-card:hover .archi-card-img { filter: brightness(1.04); }
.article-card:hover .article-card-img { filter: brightness(1.04); }

/* ── NAV LINKS — UNDERLINE ANIMÉ ── */
.nav-links a {
  transition: color .18s, border-bottom-color .22s;
}
.nav-links a:hover { color: var(--noir); border-bottom-color: var(--beton); }

/* ── FAQ ACCORDION ── */
.faq-item { cursor: pointer; }
.faq-question { transition: color .2s; }
.faq-item.open .faq-question { color: var(--beton); }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), opacity .35s, margin-top .3s;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 14px;
}

/* ── HERO — GRADIENT ANIMÉ ── */
.hero { position: relative; overflow: hidden; }
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(212,184,150,0.10) 0%, transparent 65%);
  animation: glow-pulse 7s ease-in-out infinite;
  pointer-events: none;
  border-radius: 50%;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(212,184,150,0.06) 0%, transparent 70%);
  animation: glow-pulse 9s ease-in-out infinite reverse;
  pointer-events: none;
  border-radius: 50%;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1);    opacity: .7; }
  50%       { transform: scale(1.15); opacity: 1;  }
}

/* ── HERO CONTENT — ENTRÉE ANIMÉE ── */
.hero-inner > * {
  animation: fade-rise .9s cubic-bezier(.16,1,.3,1) both;
}
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .18s; }
.hero-inner > *:nth-child(3) { animation-delay: .30s; }
.hero-inner > *:nth-child(4) { animation-delay: .42s; }
.hero-inner > *:nth-child(5) { animation-delay: .54s; }
@keyframes fade-rise {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── GRADIENT TEXT ── */
.text-gradient {
  background: linear-gradient(120deg, var(--noir) 0%, var(--beton) 45%, var(--noir) 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shimmer 5s linear infinite;
}
@keyframes text-shimmer {
  to { background-position: 200% center; }
}

/* ── STATS — ACCENT VISUEL ── */
.stat-number {
  background: linear-gradient(135deg, var(--noir) 40%, var(--beton) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION TITLE — BARRE ANIMÉE ── */
.section-title-bar {
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--beton), transparent);
  margin: 0 auto 18px;
  position: relative;
  overflow: hidden;
}
.section-title-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blanc);
  animation: bar-sweep 3s ease-in-out infinite;
}
@keyframes bar-sweep {
  0%  { transform: translateX(-100%); }
  45% { transform: translateX(100%); }
  100%{ transform: translateX(100%); }
}

/* ── FLOATING BTN — ANIMATION ENTRÉE ── */
.floating-sale {
  animation: float-in .6s cubic-bezier(.16,1,.3,1) 1.5s both;
}
@keyframes float-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.floating-sale-bubble {
  animation: bubble-blink 4s ease-in-out infinite;
}
@keyframes bubble-blink {
  0%, 100% { opacity: .7; }
  50%       { opacity: 1; }
}

/* ── BADGE — PULSE SUR VÉRIFIÉ ── */
.verified-badge {
  animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,184,150,0); }
  50%       { box-shadow: 0 0 0 5px rgba(212,184,150,0.18); }
}

/* ═══════════════════════════════════════════════════════════════
   HAMBURGER BUTTON
   ═══════════════════════════════════════════════════════════════ */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--r-md);
  transition: background .15s;
  flex-shrink: 0;
  cursor: pointer;
  margin-left: auto;
}
.nav-burger:hover { background: var(--noir-04); }
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--noir);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .2s, width .25s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU OVERLAY */
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--blanc);
  z-index: 89;
  flex-direction: column;
  padding: 28px var(--pad-x) 100px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.nav-mobile-menu.open { transform: translateX(0); }
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nav-mobile-links a {
  font-family: var(--f-titre);
  font-size: 24px;
  font-weight: 600;
  color: var(--noir);
  padding: 18px 0;
  border-bottom: 1px solid var(--noir-08);
  display: flex;
  align-items: center;
  min-height: 60px;
  letter-spacing: 0.02em;
  transition: color .15s, padding-left .2s;
}
.nav-mobile-links a:hover,
.nav-mobile-links a.active { color: var(--beton); padding-left: 8px; }
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.nav-mobile-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   NAV DROPDOWN — menu déroulant géographique
   ═══════════════════════════════════════════════════════════════ */
.nav-item { position: relative; list-style: none; }
.nav-item.has-dropdown > a::after {
  content: ' ▾';
  font-size: 9px;
  opacity: 0.45;
  vertical-align: middle;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--blanc);
  border: 1px solid var(--noir-08);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 48px rgba(17,17,17,0.13);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
  pointer-events: none;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown-label {
  font-family: var(--f-corps);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beton);
  padding: 8px 10px 4px;
  display: block;
}
.nav-dropdown a {
  display: block;
  font-family: var(--f-corps);
  font-size: 13px;
  font-weight: 500;
  color: var(--noir);
  padding: 8px 10px;
  border-radius: var(--r-md);
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown a:hover { background: var(--noir-04); color: var(--beton); }
.nav-dropdown-sep {
  height: 1px;
  background: var(--noir-08);
  margin: 6px 0;
}
/* Flèche de liaison dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: none;
  border-bottom-color: var(--noir-08);
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top: none;
  border-bottom-color: var(--blanc);
}

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-corps);
  font-size: 12px;
  color: var(--noir-50);
  padding: 14px 0 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--beton); transition: color 0.14s; }
.breadcrumb a:hover { color: var(--noir); }
.breadcrumb-sep { color: var(--noir-15); font-size: 10px; }
.breadcrumb-current { color: var(--noir); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   PAGES GÉOGRAPHIQUES (city / profile)
   ═══════════════════════════════════════════════════════════════ */
.geo-hero {
  background: var(--noir);
  padding: calc(var(--nav-h) + 48px) 0 48px;
  position: relative;
  overflow: hidden;
}
.geo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212,184,150,0.08) 0%, transparent 70%);
}
.geo-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.geo-hero-eyebrow {
  font-family: var(--f-corps);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beton);
  margin-bottom: 16px;
}
.geo-hero-title {
  font-family: var(--f-titre);
  font-size: 52px;
  font-weight: 600;
  color: var(--blanc);
  line-height: 1.1;
  margin-bottom: 20px;
}
.geo-hero-title em { font-style: normal; color: var(--beton); font-weight: 300; }
.geo-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
}
.geo-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.geo-stat-val {
  font-family: var(--f-titre);
  font-size: 28px;
  font-weight: 600;
  color: var(--blanc);
  display: block;
}
.geo-stat-lbl {
  font-family: var(--f-corps);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}
.geo-cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.geo-city-card {
  display: block;
  border: 1px solid var(--noir-08);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  background: var(--blanc);
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
  text-decoration: none;
}
.geo-city-card:hover {
  box-shadow: 0 8px 28px rgba(17,17,17,0.10);
  transform: translateY(-2px);
  border-color: var(--beton);
}
.geo-city-name {
  font-family: var(--f-titre);
  font-size: 20px;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 4px;
}
.geo-city-count {
  font-size: 12px;
  color: var(--beton);
  font-weight: 600;
}
.geo-city-region {
  font-size: 11px;
  color: var(--noir-50);
  margin-top: 2px;
}

/* Profil architecte */
.profile-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0 80px;
}
.profile-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.profile-card {
  border: 1px solid var(--noir-08);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--blanc);
}
.profile-card-img {
  height: 280px;
  position: relative;
}
.profile-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.profile-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(17,17,17,0) 40%, rgba(17,17,17,0.55) 100%);
}
.profile-card-img-badges {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.profile-card-body { padding: 28px; }
.profile-card-name {
  font-family: var(--f-titre);
  font-size: 26px;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 4px;
}
.profile-card-agency {
  font-size: 13px;
  color: var(--beton);
  margin-bottom: 16px;
}
.profile-stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--noir-08);
  border: 1px solid var(--noir-08);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.profile-stat {
  background: var(--blanc);
  text-align: center;
  padding: 14px 8px;
}
.profile-stat-val {
  font-family: var(--f-titre);
  font-size: 22px;
  font-weight: 600;
  color: var(--noir);
  display: block;
}
.profile-stat-lbl { font-size: 10px; color: var(--beton); }
.profile-contact-form {
  border-top: 1px solid var(--noir-08);
  padding: 20px;
  margin: 0 -28px -28px;
  background: var(--noir-04);
}
.profile-main h2 {
  font-family: var(--f-titre);
  font-size: 24px;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 14px;
  margin-top: 40px;
}
.profile-main h2:first-child { margin-top: 0; }
.profile-main p {
  font-size: 15px;
  color: var(--noir-50);
  line-height: 1.8;
  margin-bottom: 16px;
}
.profile-portfolio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.profile-portfolio-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.profile-portfolio-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.profile-portfolio-img:hover img { transform: scale(1.04); }
.profile-zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .geo-hero-title { font-size: 40px; }
  .geo-cities-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
}
@media (max-width: 768px) {
  .geo-hero-title { font-size: 30px; }
  .geo-cities-grid { grid-template-columns: 1fr 1fr; }
  .geo-stats { gap: 20px; }
  .profile-portfolio { grid-template-columns: 1fr 1fr; }
  /* dropdown → désactivé sur mobile (géré par hamburger) */
  .nav-dropdown { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Breakpoints : 1024 · 768 · 480 · 360
   ═══════════════════════════════════════════════════════════════ */

/* ── TABLETTE (≤ 1024px) ── */
@media (max-width: 1024px) {
  :root { --pad-x: 40px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links a { padding: 0 13px; font-size: 12px; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn-ol-n { display: none; }
  .btn-sale.btn-md { font-size: 12px; padding: 10px 16px; }
}

/* ── MOBILE (≤ 768px) ── */
@media (max-width: 768px) {
  :root {
    --pad-x : 20px;
    --pad-s : 48px;
    --nav-h : 60px;
  }

  /* — NAV — */
  .nav-links   { display: none; }
  .nav-actions { display: none; }
  .nav-logo    { margin-right: 0; font-size: 21px; }
  .nav-burger  { display: flex; }
  .nav-mobile-menu { display: flex; }

  /* — HERO — */
  .hero-title   { font-size: 34px; line-height: 1.1; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.18em; }
  .hero-sub     { font-size: 14px; }
  .hero-inner   { padding: 48px 0 32px; }

  .hero-search            { flex-direction: column; border-radius: var(--r-lg); gap: 0; }
  .hero-search-icon       { display: none; }
  .hero-search input      { width: 100%; border-radius: var(--r-lg) var(--r-lg) 0 0; border-right: none; border-bottom: 1px solid var(--noir-08); min-height: 52px; font-size: 16px; }
  .hero-search-select     { border-left: none; border-bottom: 1px solid var(--noir-08); border-radius: 0; width: 100%; min-height: 48px; font-size: 16px; padding: 12px 16px; }
  .hero-search-btn        { border-radius: 0 0 var(--r-lg) var(--r-lg); width: 100%; min-height: 52px; font-size: 14px; }

  .hero-hints             { gap: 8px; flex-wrap: wrap; }
  .hero-hint              { min-height: 38px; font-size: 12px; padding: 6px 14px; }
  .hero-hint-label        { font-size: 11px; }

  /* — STATS — */
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 8px;
    padding: 24px var(--pad-x);
  }
  .stat-divider { display: none; }
  .stat-number  { font-size: 30px; }
  .stat-item    { padding: 12px 8px; text-align: center; }

  /* — GRIDS — */
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }

  /* — TYPOGRAPHIE — */
  .section-title  { font-size: 26px; }
  .section-sub    { font-size: 14px; }
  .page-hero-title { font-size: 28px; line-height: 1.15; }
  .page-hero-sub  { font-size: 14px; }

  /* — SECTION HEADER en flex colonne — */
  .section-header { text-align: left; }
  div[style*="space-between"].section-header,
  .section-header[style*="space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  /* — TOUCH TARGETS — */
  .btn-sm { min-height: 44px; padding: 10px 16px; }
  .btn-md { min-height: 48px; padding: 12px 22px; }
  .btn-lg { min-height: 54px; padding: 14px 28px; }
  .faq-question { min-height: 48px; font-size: 15px; }

  /* — FORMULAIRES — */
  .form-row { grid-template-columns: 1fr; }
  .form-input,
  select.form-input { min-height: 52px; font-size: 16px; }
  .form-textarea    { font-size: 16px; }

  /* — HOVER DÉSACTIVÉ (touch) — */
  .archi-card:hover,
  .article-card:hover,
  .archi-profile-card:hover { transform: none !important; box-shadow: none !important; }
  .archi-list-card:hover    { transform: none !important; box-shadow: none !important; border-color: var(--noir-15) !important; }

  /* — CTA BAND — */
  .cta-band-inner        { flex-direction: column; gap: 20px; text-align: center; }
  .sale-cta-band-title   { font-size: 22px; }
  .sale-cta-band-sub     { font-size: 13px; }
  .sale-cta-band-actions { flex-direction: column; gap: 10px; }
  .sale-cta-band-actions .btn { width: 100%; justify-content: center; min-height: 52px; }
  .sale-cta-band-note    { font-size: 10px; }

  /* — FOOTER — */
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom    { flex-direction: column; gap: 12px; text-align: center; }

  /* — FLOATING CTA — BARRE BASSE PLEIN ÉCRAN — */
  .floating-sale {
    bottom: 0; right: 0; left: 0; top: auto;
    width: 100%;
    flex-direction: row;
    background: var(--noir);
    border-top: 2px solid var(--beton);
    border-radius: 0;
    padding: 10px 16px;
    gap: 0;
    box-shadow: none;
    animation: none;
    opacity: 1;
  }
  .floating-sale-bubble { display: none; }
  .floating-sale-btn {
    flex: 1;
    justify-content: center;
    border-radius: var(--r-md);
    min-height: 48px;
    font-size: 14px;
    box-shadow: none;
  }
  .floating-sale-btn:hover { transform: none; box-shadow: none; }
  body { padding-bottom: 72px; }

  /* — TICKER — */
  .ticker-item { font-size: 9px; padding: 0 16px; gap: 10px; letter-spacing: 0.14em; }

  /* — VENTE BANNER (terms) — */
  .sale-banner-inner    { flex-direction: column; gap: 12px; text-align: center; }
  .sale-banner-cta      { width: 100%; justify-content: center; display: flex; min-height: 48px; }

  /* — PAGES INTERNES — */
  .tc-layout         { grid-template-columns: 1fr; }
  .tc-nav            { position: static; }
  .contact-layout    { grid-template-columns: 1fr; }
  .archi-list-layout { grid-template-columns: 1fr !important; }
  .archi-sidebar     { display: none; }

  /* — RADIO OPTIONS — */
  .radio-option { min-height: 56px; }
}

/* ── PETIT SMARTPHONE (≤ 480px) ── */
@media (max-width: 480px) {
  :root { --pad-x: 16px; }

  .hero-title   { font-size: 28px; }
  .section-title { font-size: 22px; }
  .stat-number  { font-size: 26px; }
  .stat-label   { font-size: 11px; }
  .nav-logo     { font-size: 19px; }
  .page-hero-title { font-size: 24px; }

  .hero-hints   { justify-content: flex-start; }
  .hero-hint-label { display: none; }

  .archi-card-img,
  .article-card-img { height: 180px; }

  .badge { font-size: 9px; padding: 3px 8px; }
  .eyebrow { font-size: 9px; letter-spacing: 0.18em; }

  .nav-mobile-links a { font-size: 20px; }
  .stats-inner { gap: 14px 8px; }
}

/* ── TRÈS PETIT ÉCRAN (≤ 360px) ── */
@media (max-width: 360px) {
  :root { --pad-x: 12px; }
  .hero-title   { font-size: 24px; }
  .nav-logo     { font-size: 17px; }
  .floating-sale-btn { font-size: 13px; }
  .stats-inner  { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-number  { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--noir);
  border-top: 1.5px solid rgba(212,184,150,0.25);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 32px rgba(17,17,17,0.18);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-text {
  font-family: var(--f-corps);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  flex: 1;
}
.cookie-banner-text a {
  color: var(--beton);
  text-decoration: underline;
  text-decoration-color: rgba(212,184,150,0.4);
}
.cookie-banner-text a:hover { color: var(--blanc); }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.cookie-btn-accept {
  font-family: var(--f-corps);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  background: var(--beton);
  color: var(--blanc);
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
  min-height: 44px;
}
.cookie-btn-accept:hover { opacity: 0.85; }
.cookie-btn-refuse {
  font-family: var(--f-corps);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  min-height: 44px;
}
.cookie-btn-refuse:hover { color: var(--blanc); border-color: rgba(255,255,255,0.35); }

@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; padding: 18px 20px 80px; gap: 14px; text-align: center; }
  .cookie-banner-actions { width: 100%; flex-direction: column; }
  .cookie-btn-accept, .cookie-btn-refuse { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   BACK-TO-TOP BUTTON
   ═══════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 88px; right: 24px;
  z-index: 500;
  width: 46px; height: 46px;
  background: var(--noir);
  color: var(--blanc);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.15s, border-color 0.15s;
  box-shadow: 0 4px 16px rgba(17,17,17,0.18);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--beton); border-color: var(--beton); }
.back-to-top svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .back-to-top { bottom: 80px; right: 16px; width: 42px; height: 42px; }
}



/* ================================================================
   ANIMATIONS TEXTE AVANCÉES
   word-clip · p-reveal · eyebrow-draw · t-quote · stat-flash
   ================================================================ */

/* 1. Clip par mot — chaque mot monte depuis le bas */
.w-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}
.w-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.72s cubic-bezier(.16,1,.3,1),
              opacity   0.48s cubic-bezier(.16,1,.3,1);
}
.t-reveal.t-visible .w-inner { transform: translateY(0); opacity: 1; }

/* Trait beton sous les em dans les titres */
.t-reveal em { position: relative; }
.t-reveal em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 1px;
  height: 2px;
  background: var(--beton-30);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(.16,1,.3,1) 0.25s;
}
.t-reveal.t-visible em::after { transform: scaleX(1); }

/* 2. Paragraphe fade-up */
.p-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.78s cubic-bezier(.16,1,.3,1),
              transform 0.78s cubic-bezier(.16,1,.3,1);
}
.p-reveal.t-visible { opacity: 1; transform: translateY(0); }

/* 3. Eyebrow — trait qui pousse de gauche à droite */
.eyebrow { position: relative; }
.eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: var(--beton);
  transition: width 0.7s cubic-bezier(.16,1,.3,1) 0.1s;
}
.eyebrow.ew-on::after { width: 100%; }

/* 4. Citation — scale doux à l'entrée */
.t-quote-reveal {
  opacity: 0;
  transform: scale(0.97) translateY(14px);
  transition: opacity 0.85s cubic-bezier(.16,1,.3,1),
              transform 0.85s cubic-bezier(.16,1,.3,1);
}
.t-quote-reveal.t-visible { opacity: 1; transform: scale(1) translateY(0); }

/* 5. Stat flash beton après comptage */
@keyframes stat-flash {
  0%, 100% { color: var(--noir); }
  45%       { color: var(--beton); }
}
.stat-number.stat-pop { animation: stat-flash 0.85s cubic-bezier(.16,1,.3,1); }

/* 6. Hero eyebrow — glisse depuis la gauche */
@keyframes ey-slide {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-eyebrow {
  animation: ey-slide 0.6s cubic-bezier(.16,1,.3,1) 0.08s both;
}

/* 7. Chiffres stats — enter avec ressort */
@keyframes stat-pop-in {
  0%   { opacity: 0; transform: scale(0.7); }
  60%  { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
.stat-number { opacity: 0; }
.stat-number.stat-visible {
  animation: stat-pop-in 0.65s cubic-bezier(.16,1,.3,1) both;
}

/* ================================================================
   FICHE ARCHITECTE — HERO
   ================================================================ */
.profile-hero {
  background: var(--noir);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.profile-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 0;
}
.profile-hero-info { padding: 56px 48px 48px 0; }
.profile-hero-breadcrumb {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(252,251,249,0.35);
  margin-bottom: 28px;
}
.profile-hero-breadcrumb a { color: rgba(252,251,249,0.35); transition: color .15s; }
.profile-hero-breadcrumb a:hover { color: var(--beton); }
.profile-hero-breadcrumb span { margin: 0 8px; }
.profile-hero-verified {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200,175,146,0.12);
  border: 1px solid rgba(200,175,146,0.3);
  color: var(--beton);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.profile-hero-name {
  font-family: var(--f-titre);
  font-size: 50px;
  font-weight: 400;
  color: var(--blanc);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.profile-hero-agency {
  font-size: 15px;
  color: rgba(252,251,249,0.45);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.profile-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 36px;
}
.profile-hero-tags .badge { opacity: 0.85; }
.profile-hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(252,251,249,0.08);
}
.profile-hero-stat-val {
  font-family: var(--f-titre);
  font-size: 26px;
  font-weight: 400;
  color: var(--blanc);
  display: block;
  line-height: 1.1;
}
.profile-hero-stat-lbl {
  font-size: 10.5px;
  color: rgba(252,251,249,0.38);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}
.profile-hero-photo {
  height: 460px;
  position: relative;
  align-self: end;
}
.profile-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.profile-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, transparent 55%, var(--noir) 100%);
  z-index: 1;
}
.profile-hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--noir));
  z-index: 1;
}

/* Review cards */
.review-card {
  border: 1px solid var(--noir-08);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  background: var(--blanc);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--noir);
}
.review-meta {
  font-size: 12px;
  color: var(--beton);
  margin-bottom: 3px;
}
.review-stars { color: var(--beton); font-size: 13px; }
.review-text {
  font-size: 14px;
  color: var(--noir-50);
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}
.review-project {
  font-size: 11.5px;
  color: var(--noir-25);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .profile-hero-inner { grid-template-columns: 1fr; }
  .profile-hero-photo { height: 300px; }
  .profile-hero-photo::before { background: linear-gradient(180deg, transparent 40%, var(--noir) 100%); }
  .profile-hero-name { font-size: 36px; }
  .profile-hero-info { padding: 40px 0 32px; }
}
