SPB Git

spb/lou-ka Public

Lou·Ka — tous les logements à louer du Québec, un seul endroit.

HTML 99.7%
48.3 KB · 968 lines css
Raw Blame History
1/* -----------------------------------------------------------------------------2  Lou-Ka — Agrégateur de logements à louer (province de Québec)3  Auteur : Simon-Pierre Boucher — contact@spboucher.ai4  styles.css : système de design « éditorial sharp » — thème clair5    · Typo display Space Grotesk / texte Inter / micro-étiquettes JetBrains Mono6    · Signature : bordures encre + ombres décalées (néo-brutalisme raffiné)7    · Accent électrique lime #d9f26b sur encre verte profonde8    · 100 % adaptatif mobile (PWA installable, safe-areas iOS)9----------------------------------------------------------------------------- */10:root {11  --paper: #f5f3ee;12  --surface: #ffffff;13  --surface-2: #faf9f5;14  --ink: #141814;15  --ink-2: #4d5551;16  --ink-3: #8b928c;17  --line: rgba(20, 24, 20, 0.14);18  --line-strong: rgba(20, 24, 20, 0.85);19  --green: #1c5c41;20  --green-deep: #123f2e;21  --lime: #d9f26b;22  --lime-soft: #f0f9d2;23  --amber: #e8a33d;24  --amber-soft: #fdf3e2;25  --danger: #b3423a;26  --r-card: 10px;27  --r-ctl: 6px;28  --shadow-flat: 0 1px 2px rgba(20, 24, 20, 0.05);29  --shadow-off: 6px 6px 0 var(--ink);30  --shadow-off-soft: 8px 8px 0 rgba(20, 24, 20, 0.08);31  --font-display: "Space Grotesk", system-ui, sans-serif;32  --font-body: "Inter", system-ui, sans-serif;33  --font-mono: "JetBrains Mono", ui-monospace, monospace;34}3536* { box-sizing: border-box; }37html { scroll-behavior: smooth; }38body {39  margin: 0;40  background: var(--paper);41  color: var(--ink);42  font-family: var(--font-body);43  font-size: 15px;44  line-height: 1.55;45  -webkit-font-smoothing: antialiased;46  padding-bottom: env(safe-area-inset-bottom);47}48/* grain subtil — texture signature */49body::before {50  content: "";51  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.35;52  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");53}54#root { position: relative; z-index: 1; }5556h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.03em; margin: 0; }57a { color: inherit; text-decoration: none; }58button { font-family: inherit; }59img { display: block; }60::selection { background: var(--lime); color: var(--ink); }6162.mono { font-family: var(--font-mono); }63.kicker {64  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;65  text-transform: uppercase; letter-spacing: 0.14em; color: var(--green);66  display: inline-flex; align-items: center; gap: 8px;67}68.kicker::before { content: ""; width: 22px; height: 2px; background: var(--green); }6970.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }71@media (max-width: 640px) { .container { padding: 0 16px; } }7273/* ================= Header ================= */74.header {75  position: sticky; top: 0; z-index: 50;76  background: rgba(245, 243, 238, 0.88);77  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);78  border-bottom: 2px solid var(--ink);79}80.header-inner { display: flex; align-items: center; gap: 20px; height: 64px; }81.brand {82  font-family: var(--font-display); font-weight: 700; font-size: 26px;83  letter-spacing: -0.04em; display: flex; align-items: center; line-height: 1;84}85.brand .ka {86  background: var(--ink); color: var(--lime); padding: 2px 7px 4px;87  border-radius: 6px; margin-left: 3px; transform: rotate(-2deg);88  transition: transform 0.2s ease;89}90.brand:hover .ka { transform: rotate(0deg); }91.brand-tag {92  font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-3);93  letter-spacing: 0.08em; text-transform: uppercase; margin-left: 12px;94}95@media (max-width: 760px) { .brand-tag { display: none; } }96.nav { margin-left: auto; display: flex; gap: 4px; }97.nav a {98  padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 14px;99  color: var(--ink-2); border: 1.5px solid transparent;100  transition: all 0.15s ease; min-height: 40px; display: inline-flex; align-items: center;101}102.nav a:hover { border-color: var(--ink); color: var(--ink); }103.nav a.active { background: var(--ink); color: var(--lime); }104105/* ================= Ticker ================= */106.ticker {107  background: var(--ink); color: var(--lime); overflow: hidden;108  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em;109  text-transform: uppercase; padding: 7px 0; white-space: nowrap;110  border-bottom: 1px solid rgba(217, 242, 107, 0.25);111}112.ticker-track { display: inline-flex; gap: 0; animation: ticker 40s linear infinite; will-change: transform; }113.ticker span { padding: 0 26px; position: relative; }114.ticker span::after { content: "◆"; position: absolute; right: -6px; opacity: 0.5; font-size: 8px; top: 3px; }115@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }116@media (prefers-reduced-motion: reduce) {117  .ticker-track { animation: none; }118  * { transition-duration: 0.01ms !important; }119}120121/* ================= Hero ================= */122.hero { padding: 58px 0 22px; }123@media (max-width: 640px) { .hero { padding: 34px 0 14px; } }124.hero h1 {125  font-size: clamp(38px, 6.4vw, 78px); font-weight: 700; line-height: 0.98;126  text-transform: uppercase; letter-spacing: -0.035em; max-width: 900px; margin-top: 14px;127}128.hero h1 .outline {129  color: transparent; -webkit-text-stroke: 2px var(--ink);130}131.hero h1 .hl {132  background: var(--lime); padding: 0 10px; border-radius: 8px; display: inline-block;133  transform: rotate(-1deg);134}135.hero p.lede { color: var(--ink-2); font-size: 16.5px; max-width: 640px; margin: 20px 0 0; }136.stat-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }137.stat-chip {138  background: var(--surface); border: 1.5px solid var(--ink); border-radius: 999px;139  padding: 8px 16px; font-family: var(--font-mono); font-size: 12px;140  color: var(--ink-2); display: flex; gap: 8px; align-items: center;141  box-shadow: 3px 3px 0 rgba(20, 24, 20, 0.12);142}143.stat-chip b { color: var(--ink); font-weight: 700; }144.stat-chip .pulse {145  width: 8px; height: 8px; border-radius: 50%; background: var(--green);146  box-shadow: 0 0 0 4px var(--lime-soft); animation: pulse 2.4s ease infinite;147}148@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(217, 242, 107, 0.4); } }149150/* ================= Filter bar ================= */151.filterbar {152  background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card);153  box-shadow: var(--shadow-off-soft); padding: 16px; margin: 30px 0 6px;154  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr auto; gap: 12px;155}156@media (max-width: 980px) { .filterbar { grid-template-columns: 1fr 1fr 1fr; } }157@media (max-width: 640px) { .filterbar { grid-template-columns: 1fr 1fr; padding: 14px; } }158.field { display: flex; flex-direction: column; gap: 5px; }159.field label {160  font-family: var(--font-mono); font-size: 10px; font-weight: 700;161  text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); padding-left: 2px;162}163.field input, .field select {164  border: 1.5px solid var(--line); background: var(--surface-2); border-radius: var(--r-ctl);165  padding: 11px 12px; font-size: 15px; color: var(--ink); outline: none; font-family: inherit;166  transition: border-color 0.15s ease, box-shadow 0.15s ease; min-height: 44px;167  appearance: none; -webkit-appearance: none;168}169.field select {170  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23141814'/%3E%3C/svg%3E");171  background-repeat: no-repeat; background-position: right 12px center; padding-right: 30px;172}173.field input:focus, .field select:focus { border-color: var(--ink); box-shadow: 3px 3px 0 var(--lime); }174.btn {175  border: 1.5px solid var(--ink); border-radius: var(--r-ctl); padding: 11px 20px;176  font-weight: 700; font-size: 14px; cursor: pointer; min-height: 44px;177  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;178  font-family: var(--font-display); letter-spacing: 0.01em;179}180.btn:active { transform: translate(2px, 2px); box-shadow: none !important; }181.btn-primary { background: var(--ink); color: var(--lime); box-shadow: 4px 4px 0 rgba(20,24,20,0.25); }182.btn-primary:hover { background: var(--green-deep); }183.btn-ghost { background: transparent; color: var(--ink); }184.btn-ghost:hover { background: var(--lime); box-shadow: 4px 4px 0 rgba(20,24,20,0.2); }185186/* ================= Chips ================= */187.chips { display: flex; gap: 8px; margin: 16px 0 4px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }188.chips::-webkit-scrollbar { display: none; }189.chip {190  border: 1.5px solid var(--ink); background: var(--surface); color: var(--ink);191  border-radius: 999px; padding: 8px 18px; font-size: 13.5px; font-weight: 600; cursor: pointer;192  font-family: var(--font-display); white-space: nowrap; min-height: 40px;193  transition: all 0.13s ease;194}195.chip:hover { background: var(--lime-soft); transform: translateY(-1px); }196.chip.on { background: var(--ink); color: var(--lime); box-shadow: 3px 3px 0 rgba(20,24,20,0.2); }197198/* ================= Results ================= */199.results-head { display: flex; align-items: baseline; gap: 14px; margin: 28px 0 18px; }200.results-head h2 { font-size: 22px; text-transform: uppercase; letter-spacing: -0.02em; }201.results-head span { font-family: var(--font-mono); color: var(--ink-3); font-size: 12px; letter-spacing: 0.06em; }202.grid {203  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));204  gap: 22px; padding-bottom: 70px;205}206@media (max-width: 640px) { .grid { grid-template-columns: 1fr; gap: 16px; padding-bottom: 48px; } }207208.card {209  background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--r-card);210  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-flat);211  transition: transform 0.16s ease, box-shadow 0.16s ease;212}213.card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-off); }214.card:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }215.card-img { position: relative; aspect-ratio: 16/10.5; background: repeating-linear-gradient(45deg, #eceae3 0 12px, #f3f1ea 12px 24px); overflow: hidden; }216.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }217.card:hover .card-img img { transform: scale(1.05); }218.card-img .noimg { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--ink-3); font-size: 34px; }219.badge {220  position: absolute; top: 12px; left: 12px; border-radius: 6px; padding: 4px 10px;221  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;222  background: rgba(255, 255, 255, 0.95); color: var(--ink); border: 1px solid var(--ink);223}224.badge.type { background: var(--ink); color: var(--lime); border-color: var(--ink); }225.badge.right { left: auto; right: 12px; background: rgba(255,255,255,0.92); border-color: transparent; }226.card-body { padding: 16px 18px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }227.card-price { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }228.card-price small { font-family: var(--font-mono); font-weight: 500; color: var(--ink-3); font-size: 11px; letter-spacing: 0.05em; }229.card-title { font-weight: 600; font-size: 14.5px; color: var(--ink); }230.card-meta { color: var(--ink-3); font-size: 12.5px; display: flex; gap: 7px; flex-wrap: wrap; align-items: center; font-family: var(--font-mono); }231.card-meta .sep { width: 4px; height: 4px; background: var(--lime); border: 1px solid var(--ink); border-radius: 1px; transform: rotate(45deg); }232.card-foot { margin-top: auto; padding-top: 11px; border-top: 1.5px dashed var(--line); display: flex; justify-content: space-between; align-items: center; gap: 8px; }233.source-tag {234  font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase;235  letter-spacing: 0.08em; color: var(--green-deep); background: var(--lime-soft);236  border: 1px solid var(--green); border-radius: 4px; padding: 3px 8px;237  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60%;238}239.avail { font-size: 11.5px; color: var(--ink-2); font-weight: 500; text-align: right; }240241/* ================= Skeletons ================= */242@keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }243.skel { border-radius: var(--r-card); border: 1.5px solid var(--line); overflow: hidden; background: var(--surface); }244.skel .sk-img, .skel .sk-line {245  background: linear-gradient(90deg, #eeece5 25%, #f7f5ef 50%, #eeece5 75%);246  background-size: 800px 100%; animation: shimmer 1.4s infinite linear;247}248.skel .sk-img { aspect-ratio: 16/10.5; }249.skel .sk-line { height: 14px; border-radius: 4px; margin: 12px 16px; }250.skel .sk-line.short { width: 45%; }251252/* ================= Empty / error ================= */253.notice { text-align: center; padding: 72px 24px; color: var(--ink-2); }254.notice .big { font-size: 44px; margin-bottom: 10px; }255.notice h2 { text-transform: uppercase; }256257/* ================= Detail page ================= */258.detail { padding: 30px 0 90px; }259.crumbs {260  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;261  color: var(--ink-3); margin-bottom: 20px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap;262}263.crumbs a { border-bottom: 1.5px solid transparent; }264.crumbs a:hover { color: var(--green); border-color: var(--green); }265.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; }266@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }267/* les enfants de grille ont min-width:auto par défaut : un contenu large268   (grille du quartier) déborderait de l'écran mobile sans ceci */269.detail-grid > * { min-width: 0; }270271.gallery { display: flex; flex-direction: column; gap: 10px; }272.gallery-main {273  border-radius: var(--r-card); overflow: hidden; border: 1.5px solid var(--ink);274  aspect-ratio: 16/10; background: #eceae3; cursor: zoom-in; box-shadow: var(--shadow-off-soft);275}276.gallery-main img { width: 100%; height: 100%; object-fit: cover; }277.thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }278.thumbs button {279  border: 2px solid var(--line); border-radius: 8px; overflow: hidden; padding: 0; cursor: pointer;280  aspect-ratio: 4/3; background: #eceae3; transition: border-color 0.12s ease, transform 0.12s ease;281}282.thumbs button:hover { transform: translateY(-2px); }283.thumbs button.on { border-color: var(--ink); box-shadow: 3px 3px 0 var(--lime); }284.thumbs img { width: 100%; height: 100%; object-fit: cover; }285286.panel {287  background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card);288  box-shadow: var(--shadow-off-soft); padding: 26px; position: sticky; top: 120px;289}290@media (max-width: 900px) { .panel { position: static; } }291.panel .price { font-family: var(--font-display); font-size: 34px; font-weight: 700; letter-spacing: -0.03em; }292.panel .price small { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); font-weight: 500; letter-spacing: 0.05em; }293.panel h1 { font-size: 22px; margin: 8px 0 2px; }294.panel .loc { color: var(--ink-2); font-size: 14px; }295.kv { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }296@media (max-width: 380px) { .kv { grid-template-columns: 1fr; } }297.kv .cell { background: var(--surface-2); border: 1.5px solid var(--line); border-radius: var(--r-ctl); padding: 10px 13px; }298.kv .cell .k { font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); font-weight: 700; }299.kv .cell .v { font-weight: 700; font-size: 14.5px; margin-top: 2px; font-family: var(--font-display); }300.klabel { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); font-weight: 700; margin-bottom: 8px; }301.amenity-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 20px; }302.amenity {303  background: var(--lime-soft); color: var(--green-deep); font-size: 12px; font-weight: 600;304  border: 1px solid var(--green); border-radius: 999px; padding: 5px 12px;305}306.cta {307  display: block; text-align: center; background: var(--ink); color: var(--lime);308  font-weight: 700; font-family: var(--font-display); border-radius: var(--r-ctl);309  padding: 15px; border: 1.5px solid var(--ink); min-height: 48px;310  box-shadow: 4px 4px 0 rgba(20,24,20,0.25); transition: all 0.14s ease;311}312.cta:hover { background: var(--lime); color: var(--ink); }313.cta:active { transform: translate(2px, 2px); box-shadow: none; }314.panel .fine { font-size: 11.5px; color: var(--ink-3); margin-top: 14px; text-align: center; font-family: var(--font-mono); letter-spacing: 0.02em; }315316/* ================= Lightbox ================= */317.lightbox {318  position: fixed; inset: 0; background: rgba(16, 18, 16, 0.94); z-index: 100;319  display: flex; align-items: center; justify-content: center; cursor: zoom-out;320  padding: max(16px, env(safe-area-inset-top)) 16px;321}322.lightbox img { max-width: 94vw; max-height: 90vh; border-radius: 6px; border: 2px solid var(--lime); }323324/* ================= Sources page ================= */325.sources { padding: 44px 0 90px; }326.sources h1 { font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; margin: 10px 0 6px; }327.sources .sub { color: var(--ink-2); margin-bottom: 30px; max-width: 700px; }328.src-wrap { overflow-x: auto; border: 1.5px solid var(--ink); border-radius: var(--r-card); box-shadow: var(--shadow-off-soft); background: var(--surface); }329.src-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 720px; }330.src-table th {331  text-align: left; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;332  letter-spacing: 0.12em; color: var(--ink-3); padding: 14px 18px;333  border-bottom: 1.5px solid var(--ink); background: var(--surface-2);334}335.src-table td { padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }336.src-table tr:last-child td { border-bottom: none; }337.src-table tr:hover td { background: var(--surface-2); }338.src-table a { color: var(--green-deep); font-weight: 600; border-bottom: 1.5px solid var(--lime); }339.pill { display: inline-block; border-radius: 4px; padding: 3px 10px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }340.pill.ok { background: var(--lime); color: var(--ink); border: 1px solid var(--ink); }341.pill.todo { background: var(--amber-soft); color: #8a5a12; border: 1px solid var(--amber); }342.count-pill { font-weight: 700; font-family: var(--font-display); font-size: 16px; }343344/* ================= Page Statistiques ================= */345.stats-page { padding: 44px 0 90px; }346.stats-title { font-size: clamp(30px, 4.6vw, 46px); text-transform: uppercase; margin: 10px 0 6px; }347.stats-page .sub { color: var(--ink-2); max-width: 640px; margin-bottom: 30px; }348349.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 30px; }350.tile {351  background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card);352  padding: 18px 20px; box-shadow: 3px 3px 0 rgba(20, 24, 20, 0.1);353}354.tile-v { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.03em; line-height: 1.05; }355.tile-k { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin-top: 6px; }356.hero-tile { background: var(--ink); color: var(--lime); border-color: var(--ink); }357.hero-tile .tile-k { color: rgba(217, 242, 107, 0.7); }358359.viz-card {360  background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card);361  box-shadow: var(--shadow-off-soft); padding: 26px 28px 20px; margin-bottom: 22px;362}363.viz-card h2 { font-size: 19px; text-transform: uppercase; letter-spacing: -0.01em; }364.viz-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin: 4px 0 20px; }365.viz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }366@media (max-width: 900px) { .viz-grid { grid-template-columns: 1fr; } }367368/* Histogramme (mono-série, encre verte) */369.histo { display: flex; align-items: stretch; gap: 2px; height: 240px; }370.histo-col { flex: 1; display: flex; flex-direction: column; min-width: 0; cursor: default; }371.histo-bar-zone { flex: 1; display: flex; align-items: flex-end; border-bottom: 1.5px solid var(--ink); }372.histo-bar {373  width: 100%; background: var(--green); border-radius: 4px 4px 0 0;374  min-height: 2px; transition: background 0.12s ease;375}376.histo-col:hover .histo-bar { background: var(--ink); box-shadow: inset 0 0 0 2px var(--lime); }377.histo-x { font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-3); text-align: left; height: 18px; padding-top: 5px; overflow: visible; white-space: nowrap; }378379/* Barres horizontales (mono-série) */380.hbars { display: flex; flex-direction: column; gap: 7px; }381.hbar-row {382  display: grid; grid-template-columns: minmax(96px, 170px) 1fr auto;383  gap: 12px; align-items: center; min-height: 26px; cursor: default;384}385.hbar-label { font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }386.hbar-label a { border-bottom: 1.5px solid var(--lime); }387.hbar-label a:hover { color: var(--green-deep); }388.hbar-track { background: var(--surface-2); border-radius: 0 4px 4px 0; height: 18px; overflow: hidden; }389.hbar-fill {390  display: block; height: 100%; background: var(--green); border-radius: 0 4px 4px 0;391  min-width: 2px; transition: background 0.12s ease;392}393.hbar-row:hover .hbar-fill { background: var(--ink); box-shadow: inset 0 0 0 2px var(--lime); }394.hbar-value { font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; white-space: nowrap; }395.hbar-value em { font-style: normal; font-weight: 500; color: var(--ink-3); }396@media (max-width: 640px) {397  .hbar-row { grid-template-columns: minmax(80px, 110px) 1fr auto; gap: 8px; }398  .hbar-value em { display: none; }399  .viz-card { padding: 20px 16px 14px; }400  .histo { height: 170px; }401}402403/* Infobulle */404.viz-tip {405  position: fixed; z-index: 120; pointer-events: none; max-width: 180px;406  background: var(--ink); color: var(--paper); border-radius: 8px;407  border: 1px solid var(--lime); padding: 9px 12px; font-size: 12px; line-height: 1.5;408  box-shadow: 0 8px 24px rgba(16, 18, 16, 0.35);409}410.viz-tip-title { font-family: var(--font-display); font-weight: 700; color: var(--lime); margin-bottom: 2px; }411412/* Vue tableau repliable (accessibilité / relief) */413.viz-table { margin-top: 16px; border-top: 1.5px dashed var(--line); padding-top: 10px; }414.viz-table summary {415  cursor: pointer; font-family: var(--font-mono); font-size: 11px; font-weight: 700;416  text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-deep);417}418.viz-table table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 13px; }419.viz-table th { text-align: left; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); padding: 6px 10px; border-bottom: 1.5px solid var(--ink); }420.viz-table td { padding: 6px 10px; border-bottom: 1px solid var(--line); }421422.stats-foot { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; margin-top: 6px; }423424/* ================= Mobile : feuille de filtres + FAB ================= */425.sheet-head { display: none; }426.sheet-apply { display: none; }427.sheet-backdrop { display: none; }428.fab { display: none; }429430@media (max-width: 640px) {431  /* En-tête compact */432  .header-inner { height: 56px; }433  .brand { font-size: 21px; }434  .nav a { padding: 8px 13px; font-size: 13.5px; }435  .ticker { font-size: 10.5px; padding: 6px 0; }436437  /* Héro resserré + stats en rangée défilante */438  .hero h1 { font-size: clamp(30px, 9.4vw, 44px); }439  .hero p.lede { font-size: 15px; }440  .stat-row { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 6px; margin-right: -16px; padding-right: 16px; }441  .stat-row::-webkit-scrollbar { display: none; }442  .stat-chip { flex: 0 0 auto; white-space: nowrap; }443444  /* La barre de filtres devient une feuille coulissante (bottom sheet) */445  .filterbar { display: none; }446  .filterbar.open {447    display: grid; grid-template-columns: 1fr; gap: 12px;448    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;449    margin: 0; border-radius: 20px 20px 0 0; border-width: 2px 0 0 0;450    max-height: 82dvh; overflow-y: auto; -webkit-overflow-scrolling: touch;451    padding: 16px 18px calc(18px + env(safe-area-inset-bottom));452    box-shadow: 0 -16px 48px rgba(16, 18, 16, 0.35);453    animation: sheet-up 0.22s ease;454  }455  @keyframes sheet-up { from { transform: translateY(30%); opacity: 0.4; } to { transform: none; opacity: 1; } }456  .filterbar.open .sheet-head {457    display: flex; justify-content: space-between; align-items: center;458    font-family: var(--font-display); font-weight: 700; font-size: 17px;459    text-transform: uppercase; letter-spacing: -0.01em;460    position: sticky; top: -16px; background: var(--surface); padding: 6px 0 8px;461    border-bottom: 1.5px solid var(--line); margin-bottom: 2px; z-index: 1;462  }463  .sheet-close {464    border: 1.5px solid var(--ink); background: var(--surface); border-radius: 50%;465    width: 36px; height: 36px; font-size: 15px; cursor: pointer; line-height: 1;466  }467  .filterbar.open .sheet-apply { display: block; width: 100%; }468  .sheet-backdrop {469    display: block; position: fixed; inset: 0; z-index: 90;470    background: rgba(16, 18, 16, 0.45); backdrop-filter: blur(2px);471  }472473  /* Bouton flottant */474  .fab {475    display: flex; align-items: center; gap: 6px;476    position: fixed; left: 50%; transform: translateX(-50%);477    bottom: calc(18px + env(safe-area-inset-bottom)); z-index: 80;478    background: var(--ink); color: var(--lime); border: 1.5px solid var(--ink);479    border-radius: 999px; padding: 13px 24px; font-family: var(--font-display);480    font-weight: 700; font-size: 15px; cursor: pointer;481    box-shadow: 0 8px 24px rgba(16, 18, 16, 0.35), 4px 4px 0 rgba(20, 24, 20, 0.25);482  }483  .fab:active { transform: translateX(-50%) scale(0.97); }484485  /* Fiche logement : vignettes en bande défilante + panneau non collant */486  .thumbs { display: flex; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }487  .thumbs::-webkit-scrollbar { display: none; }488  .thumbs button { flex: 0 0 96px; }489  .detail { padding-top: 20px; }490  .panel { padding: 20px; }491  .panel .price { font-size: 28px; }492  .results-head { margin-top: 20px; }493  .chips { margin-right: -16px; padding-right: 16px; }494  .notice { padding: 48px 16px; }495}496497/* Anti-zoom iOS : les champs doivent faire >= 16px */498@media (max-width: 900px) {499  .field input, .field select { font-size: 16px; }500}501502/* ================= Footer ================= */503.footer { background: var(--ink); color: rgba(245, 243, 238, 0.75); margin-top: 20px; padding: 44px 0 max(40px, env(safe-area-inset-bottom)); font-size: 13px; }504.footer .fbrand { font-family: var(--font-display); font-weight: 700; font-size: 34px; color: var(--paper); letter-spacing: -0.04em; margin-bottom: 12px; }505.footer .fbrand .ka { color: var(--lime); }506.footer b { color: var(--paper); }507.footer .frow { display: flex; flex-direction: column; gap: 5px; max-width: 720px; }508.footer .fmono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,243,238,0.45); margin-top: 18px; }509510/* --- Carte interactive (mission 4) --------------------------------------- */511.results-tools { display: flex; align-items: center; gap: 14px; }512.view-toggle {513  display: inline-flex; border: 1.5px solid var(--line-strong);514  border-radius: var(--r-ctl); overflow: hidden; background: var(--surface);515  box-shadow: var(--shadow-flat);516}517.view-toggle button {518  border: 0; background: transparent; padding: 7px 14px; cursor: pointer;519  font-family: var(--font-mono); font-size: 12px; color: var(--ink-2);520}521.view-toggle button + button { border-left: 1.5px solid var(--line-strong); }522.view-toggle button.on { background: var(--ink); color: var(--lime); }523524.map-split {525  display: grid; grid-template-columns: minmax(300px, 400px) 1fr; gap: 18px;526  height: calc(100dvh - 170px); min-height: 420px;527}528.map-list {529  overflow-y: auto; display: flex; flex-direction: column; gap: 14px;530  padding-right: 4px; scrollbar-width: thin;531}532.map-list .card { margin: 0; flex: 0 0 auto; }533.mapview {534  width: 100%; height: 100%; border: 1.5px solid var(--line-strong);535  border-radius: var(--r-card); box-shadow: var(--shadow-off-soft);536  overflow: hidden; background: var(--surface-2);537}538.map-loading {539  display: flex; align-items: center; justify-content: center;540  color: var(--ink-3); font-family: var(--font-mono); font-size: 13px;541}542543/* mobile d'abord : carte plein écran, liste masquée (bascule via l'onglet) */544@media (max-width: 780px) {545  .map-split { grid-template-columns: 1fr; height: calc(100dvh - 210px); }546  .map-list { display: none; }547  .results-tools { width: 100%; justify-content: space-between; }548}549550/* popup MapLibre au style Lou-Ka */551.maplibregl-popup-content {552  padding: 0; border-radius: var(--r-card); overflow: hidden;553  border: 1.5px solid var(--line-strong); box-shadow: var(--shadow-off);554  font-family: var(--font-body);555}556.maplibregl-popup-close-button {557  font-size: 18px; padding: 2px 8px; color: var(--paper); z-index: 2;558  text-shadow: 0 0 4px rgba(20, 24, 20, 0.8);559}560.mv-pop img, .mv-noimg { width: 100%; height: 130px; object-fit: cover; }561.mv-noimg { display: flex; align-items: center; justify-content: center;562  font-size: 34px; background: var(--surface-2); }563.mv-pop-body { padding: 10px 12px 12px; }564.mv-pop-price { font-family: var(--font-display); font-weight: 700; font-size: 18px; }565.mv-pop-price small { font-weight: 400; color: var(--ink-3); font-size: 12px; }566.mv-pop-title { font-size: 13px; color: var(--ink-2); margin-top: 2px;567  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }568.mv-pop-meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-2); margin-top: 6px; }569.mv-pop-src { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3);570  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }571.mv-pop-cta {572  display: block; margin-top: 10px; padding: 8px 10px; text-align: center;573  background: var(--ink); color: var(--lime); border-radius: var(--r-ctl);574  font-weight: 600; font-size: 13px;575}576.mv-pop-cta:hover { background: var(--green-deep); }577578/* --- Commodités de proximité (fiche) -------------------------------------- */579.poi-list {580  list-style: none; margin: 0; padding: 0;581  display: flex; flex-direction: column; gap: 2px;582}583.poi-list li {584  display: flex; align-items: center; gap: 9px;585  padding: 5px 2px; border-bottom: 1px dashed var(--line);586  font-size: 13px;587}588.poi-list li:last-child { border-bottom: 0; }589.poi-ico { width: 20px; text-align: center; flex: 0 0 auto; }590.poi-name { flex: 1; color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }591.poi-dist { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink); font-weight: 600; flex: 0 0 auto; }592593/* --- Menu déroulant mobile ------------------------------------------------- */594.menu-btn {595  display: none; position: relative; z-index: 60;596  width: 44px; height: 44px; margin-left: auto;597  border: 1.5px solid var(--ink); border-radius: var(--r-ctl);598  background: var(--surface); cursor: pointer; padding: 0;599  flex-direction: column; align-items: center; justify-content: center; gap: 5px;600  box-shadow: 3px 3px 0 rgba(20, 24, 20, 0.15);601  transition: box-shadow 0.15s ease, transform 0.15s ease;602}603.menu-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(20,24,20,0.15); }604.menu-btn span {605  display: block; width: 18px; height: 2px; background: var(--ink);606  border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease;607}608.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }609.menu-btn.open span:nth-child(2) { opacity: 0; }610.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }611612.mobile-menu {613  display: none; position: absolute; left: 0; right: 0; top: 100%;614  background: var(--paper); border-bottom: 2px solid var(--ink);615  box-shadow: 0 18px 30px rgba(20, 24, 20, 0.18);616  padding: 8px 16px calc(16px + env(safe-area-inset-bottom));617  max-height: 0; overflow: hidden; opacity: 0;618  transition: max-height 0.3s ease, opacity 0.22s ease;619}620.mobile-menu.open { max-height: 480px; opacity: 1; }621.mm-link {622  display: flex; align-items: center; gap: 12px;623  padding: 15px 10px; min-height: 52px;624  font-family: var(--font-display); font-weight: 700; font-size: 19px;625  letter-spacing: -0.02em; border-bottom: 1.5px dashed var(--line);626  opacity: 0; transform: translateY(-8px);627  transition: opacity 0.25s ease, transform 0.25s ease;628}629.mobile-menu.open .mm-link { opacity: 1; transform: translateY(0); }630.mm-link.active { color: var(--green); }631.mm-link.active .mm-arrow { opacity: 1; }632.mm-ico { width: 26px; text-align: center; font-size: 17px; }633.mm-arrow { margin-left: auto; opacity: 0.25; transition: opacity 0.15s ease; }634.mm-link:active { background: var(--lime-soft); border-radius: var(--r-ctl); }635.mm-foot {636  padding: 12px 10px 4px; font-family: var(--font-mono);637  font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.04em;638}639.mm-backdrop {640  position: fixed; inset: 0; z-index: 40;641  background: rgba(20, 24, 20, 0.35); backdrop-filter: blur(2px);642}643@media (max-width: 760px) {644  .menu-btn { display: flex; }645  .nav { display: none; }646  .mobile-menu { display: block; }647}648649/* --- Bandeau de consentement (témoins) ------------------------------------- */650.cookie-banner {651  position: fixed; left: 12px; right: 12px;652  bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 80;653  animation: cookie-in 0.35s ease;654}655@keyframes cookie-in { from { transform: translateY(24px); opacity: 0; } }656.cookie-inner {657  max-width: 720px; margin: 0 auto; background: var(--surface);658  border: 2px solid var(--ink); border-radius: var(--r-card);659  box-shadow: var(--shadow-off); padding: 16px 18px;660}661.cookie-text { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }662.cookie-text b { color: var(--ink); }663.cookie-text a { text-decoration: underline; text-underline-offset: 2px; }664.cookie-options { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }665.cookie-opt {666  display: flex; align-items: flex-start; gap: 10px; font-size: 13px;667  color: var(--ink-2); cursor: pointer;668}669.cookie-opt input { margin-top: 2px; accent-color: var(--green); width: 16px; height: 16px; }670.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; justify-content: flex-end; }671@media (max-width: 640px) {672  .cookie-actions { justify-content: stretch; }673  .cookie-actions .btn { flex: 1; text-align: center; justify-content: center; }674}675676/* --- Page confidentialité + lien pied de page ------------------------------- */677.legal { padding: 48px 0 70px; max-width: 760px; }678.legal h1 { font-size: clamp(30px, 5vw, 46px); margin: 12px 0 8px; letter-spacing: -0.03em; }679.legal section { margin-top: 26px; }680.legal h3 { font-size: 18px; margin-bottom: 8px; }681.legal p, .legal li { color: var(--ink-2); font-size: 14.5px; }682.legal ul { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }683.flink {684  border: 0; background: none; padding: 0; cursor: pointer;685  color: inherit; font: inherit; text-decoration: underline; text-underline-offset: 2px;686}687688/* --- Section « Le quartier » (fiche) --------------------------------------- */689.quartier { margin-top: 34px; }690.quartier h2 { font-size: 24px; letter-spacing: -0.02em; }691.q-sub { color: var(--ink-3); font-size: 13px; margin: 4px 0 16px; }692.q-grid {693  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;694}695@media (max-width: 640px) { .q-grid { grid-template-columns: repeat(2, 1fr); } }696.q-cell {697  background: var(--surface); border: 1.5px solid var(--line-strong);698  border-radius: var(--r-card); padding: 12px 14px; box-shadow: var(--shadow-flat);699}700.q-val { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }701.q-label { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-3);702  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }703.q-prox { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }704.q-bar { display: flex; align-items: center; gap: 10px; font-size: 13px; }705.q-bar-label { flex: 0 0 150px; color: var(--ink-2); }706@media (max-width: 640px) { .q-bar-label { flex-basis: 120px; font-size: 12px; } }707.q-bar-track {708  flex: 1; height: 10px; background: var(--surface-2);709  border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden;710}711.q-bar-fill { display: block; height: 100%; background: var(--green); border-radius: 999px; }712.q-bar-num { flex: 0 0 30px; text-align: right; font-family: var(--font-mono);713  font-size: 11.5px; font-weight: 700; }714.q-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }715.q-badge {716  display: inline-flex; align-items: center; gap: 6px;717  border: 1.5px solid var(--line-strong); border-radius: 999px;718  padding: 7px 13px; font-size: 12.5px; background: var(--surface);719}720.q-badge.cool { background: var(--lime-soft); border-color: var(--green); color: var(--green-deep); }721.q-badge.hot { background: var(--amber-soft); border-color: var(--amber); color: #8a5a12; }722.quartier .fine { margin-top: 10px; }723724/* --- Fiche v2 (mobile-first) ------------------------------------------------ */725/* mobile : flux unique ordonné ; desktop : 2 colonnes (logement | synthèse)   */726.fiche { display: flex; flex-direction: column; gap: 22px; }727.f-col { display: contents; }728.f-galerie { order: 1; } .f-hero { order: 2; } .f-desc { order: 3; }729.f-incl { order: 4; } .f-pratique { order: 5; } .f-quartier { order: 6; }730.f-poi { order: 7; }731@media (min-width: 900px) {732  .fiche { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; }733  .f-col { display: flex; flex-direction: column; gap: 26px; min-width: 0; }734}735.f-bloc { min-width: 0; }736.f-bloc h2 { font-size: 21px; letter-spacing: -0.02em; margin-bottom: 10px; }737.f-bloc:empty { display: none; }738739/* galerie à balayage natif */740.carousel { position: relative; border-radius: var(--r-card); overflow: hidden;741  border: 1.5px solid var(--line-strong); background: var(--surface-2); }742.carousel-track {743  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;744  -webkit-overflow-scrolling: touch; scrollbar-width: none; aspect-ratio: 16/11;745}746.carousel-track::-webkit-scrollbar { display: none; }747.carousel-track img {748  flex: 0 0 100%; width: 100%; object-fit: cover; scroll-snap-align: center;749  cursor: zoom-in;750}751.carousel-empty { display: flex; align-items: center; justify-content: center;752  aspect-ratio: 16/11; font-size: 48px; }753.carousel-count {754  position: absolute; right: 12px; bottom: 12px; z-index: 2;755  background: rgba(20, 24, 20, 0.82); color: var(--lime);756  font-family: var(--font-mono); font-size: 12px; font-weight: 700;757  padding: 4px 10px; border-radius: 999px;758}759.carousel-nav {760  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;761  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--ink);762  background: rgba(255, 255, 255, 0.92); font-size: 22px; cursor: pointer;763  display: flex; align-items: center; justify-content: center; line-height: 1;764}765.carousel-nav.prev { left: 10px; } .carousel-nav.next { right: 10px; }766@media (max-width: 640px) { .carousel-nav { display: none; } }  /* balayage natif */767768/* bandeau prix + badge marché */769.f-hero .price { font-size: clamp(34px, 8vw, 44px); }770.deal-badge {771  display: inline-flex; align-items: center; gap: 6px; margin: 8px 0 4px;772  border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 600;773  border: 1.5px solid var(--line-strong);774}775.deal-good { background: var(--lime-soft); border-color: var(--green); color: var(--green-deep); }776.deal-ok { background: var(--surface); color: var(--ink-2); }777.deal-high { background: var(--amber-soft); border-color: var(--amber); color: #8a5a12; }778.f-hero h1 { font-size: clamp(20px, 4.5vw, 26px); margin-top: 8px; }779780/* chips clés à défilement horizontal */781.chips-scroll {782  display: flex; gap: 8px; overflow-x: auto; padding: 12px 0 6px;783  scrollbar-width: none; -webkit-overflow-scrolling: touch;784}785.chips-scroll::-webkit-scrollbar { display: none; }786.chip-key {787  flex: 0 0 auto; background: var(--ink); color: var(--lime);788  border-radius: 999px; padding: 8px 14px; font-family: var(--font-mono);789  font-size: 12px; font-weight: 700; white-space: nowrap; min-height: 34px;790  display: inline-flex; align-items: center;791}792793/* ancres de navigation rapide */794.ancres {795  display: flex; gap: 4px; overflow-x: auto; padding: 6px 0 2px;796  scrollbar-width: none; border-bottom: 1.5px dashed var(--line); margin-bottom: 8px;797}798.ancres::-webkit-scrollbar { display: none; }799.ancres a {800  flex: 0 0 auto; padding: 9px 12px; font-size: 13.5px; font-weight: 600;801  color: var(--ink-2); border-radius: var(--r-ctl); min-height: 44px;802  display: inline-flex; align-items: center;803}804.ancres a:hover { background: var(--lime-soft); color: var(--ink); }805html { scroll-padding-top: 76px; }   /* header sticky au-dessus des ancres */806807/* description restructurée */808.enbref {809  background: var(--lime-soft); border: 1.5px solid var(--green);810  border-radius: var(--r-card); padding: 12px 15px; color: var(--green-deep);811  font-size: 15px; margin: 0 0 14px;812}813.desc-section { margin-bottom: 12px; }814.desc-section h4 { font-size: 15px; margin-bottom: 3px; }815.desc-section p { color: var(--ink-2); font-size: 14.5px; margin: 0; white-space: pre-line; }816.texte-original { margin-top: 12px; }817.texte-original summary {818  cursor: pointer; font-family: var(--font-mono); font-size: 12px;819  color: var(--ink-3); min-height: 44px; display: flex; align-items: center;820}821.texte-original p { color: var(--ink-3); font-size: 13px; white-space: pre-line; }822823/* inclusions : confirmées vs mentionnées */824.amenity.confirmed { background: var(--lime-soft); border-color: var(--green); color: var(--green-deep); font-weight: 600; }825.amenity.unconfirmed { background: transparent; border-style: dashed; color: var(--ink-3); }826827/* détails pratiques : historique de prix */828.prix-histo {829  margin-top: 12px; padding: 10px 14px; border-radius: var(--r-card);830  border: 1.5px solid var(--line-strong); font-size: 13.5px; background: var(--surface);831}832.prix-histo.down { background: var(--lime-soft); border-color: var(--green); color: var(--green-deep); }833834/* quartier compacté sur mobile */835@media (max-width: 640px) {836  .q-cell { padding: 9px 11px; }837  .q-val { font-size: 16px; }838  .q-bar { gap: 8px; font-size: 12px; }839  .q-bar-track { height: 8px; }840}841.q-badge-sub { display: block; font-size: 10.5px; color: var(--ink-3); font-weight: 400; margin-left: 4px; }842843/* POI groupés repliables */844.poi-groupe { border: 1.5px solid var(--line); border-radius: var(--r-card);845  margin-bottom: 8px; background: var(--surface); overflow: hidden; }846.poi-groupe summary {847  display: flex; justify-content: space-between; align-items: center; gap: 10px;848  padding: 12px 14px; cursor: pointer; font-weight: 600; font-size: 14px;849  min-height: 48px; list-style: none;850}851.poi-groupe summary::-webkit-details-marker { display: none; }852.poi-groupe summary::after { content: "▾"; color: var(--ink-3); transition: transform 0.15s ease; }853.poi-groupe[open] summary::after { transform: rotate(180deg); }854.poi-resume { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); font-weight: 400; }855.poi-groupe .poi-list { padding: 0 14px 10px; }856857/* CTA sticky mobile */858.cta-sticky {859  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;860  display: flex; align-items: center; gap: 12px;861  background: rgba(245, 243, 238, 0.94); backdrop-filter: blur(12px);862  border-top: 2px solid var(--ink);863  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));864}865.cta-sticky .cta { flex: 1; margin: 0; text-align: center; }866.cta-sticky-prix { font-family: var(--font-display); font-weight: 700; font-size: 19px; white-space: nowrap; }867.cta-sticky-prix small { font-family: var(--font-mono); font-weight: 500; font-size: 10px; color: var(--ink-3); }868@media (min-width: 900px) { .cta-sticky { display: none; } }869@media (max-width: 899px) {870  .cta-desktop { display: none; }871  .detail { padding-bottom: 84px; }   /* place pour le CTA sticky */872}873.f-foot { margin-top: 26px; }874875/* --- Passerelle vers l'annonce originale ------------------------------------ */876.passerelle {877  min-height: calc(100dvh - 120px); display: flex; align-items: center;878  justify-content: center; padding: 24px 16px;879}880.pass-card {881  width: 100%; max-width: 520px; background: var(--surface);882  border: 2px solid var(--ink); border-radius: var(--r-card);883  box-shadow: var(--shadow-off); padding: 30px 28px; text-align: center;884}885.pass-brands {886  display: flex; align-items: center; justify-content: center; gap: 14px;887  margin-bottom: 22px; flex-wrap: wrap;888}889.pass-brand {890  font-family: var(--font-display); font-weight: 700; font-size: 24px;891  letter-spacing: -0.04em; display: inline-flex; align-items: center;892}893.pass-brand .ka {894  background: var(--ink); color: var(--lime); padding: 2px 7px 4px;895  border-radius: 6px; margin-left: 3px; transform: rotate(-2deg);896}897.pass-trajet { display: inline-flex; align-items: center; gap: 5px; }898.pass-dot {899  width: 6px; height: 6px; border-radius: 50%; background: var(--green);900  opacity: 0.25; animation: pass-dot 1.2s ease infinite;901}902.pass-dot:nth-child(2) { animation-delay: 0.2s; }903.pass-dot:nth-child(3) { animation-delay: 0.4s; }904@keyframes pass-dot { 40% { opacity: 1; transform: translateX(2px); } }905.pass-fleche { color: var(--green); font-size: 18px; }906.pass-gestionnaire {907  font-family: var(--font-display); font-weight: 700; font-size: 19px;908  display: inline-flex; align-items: center; gap: 8px;909  background: var(--lime-soft); border: 1.5px solid var(--green);910  border-radius: 999px; padding: 6px 16px; color: var(--green-deep);911}912.pass-card h1 { font-size: 20px; letter-spacing: -0.02em; }913.pass-texte { color: var(--ink-2); font-size: 14.5px; margin: 10px 0 20px; }914.pass-progress {915  height: 10px; border: 1.5px solid var(--ink); border-radius: 999px;916  overflow: hidden; background: var(--surface-2); margin-bottom: 20px;917}918.pass-progress-fill {919  display: block; height: 100%; width: 0; background: var(--lime);920  border-right: 2px solid var(--ink);921}922.pass-progress-fill.go { animation: pass-fill 2.2s linear forwards; }923@keyframes pass-fill { to { width: 100%; } }924@media (prefers-reduced-motion: reduce) {925  .pass-progress-fill.go { animation: none; width: 100%; }926  .pass-dot { animation: none; opacity: 0.7; }927}928.pass-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }929930/* --- boutons PDF -------------------------------------------------------- */931.btn-pdf { display: block; text-align: center; margin-top: 10px; width: 100%; }932933/* --- Onglets de la page Stats -------------------------------------------- */934.onglets {935  display: flex; gap: 6px; overflow-x: auto; margin: 26px 0 22px;936  padding-bottom: 4px; scrollbar-width: none;937  border-bottom: 2px solid var(--ink);938}939.onglets::-webkit-scrollbar { display: none; }940.onglet {941  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px;942  border: 1.5px solid var(--ink); border-bottom: 0;943  border-radius: var(--r-ctl) var(--r-ctl) 0 0;944  background: var(--surface); color: var(--ink-2); cursor: pointer;945  padding: 10px 16px; font-weight: 600; font-size: 13.5px; min-height: 44px;946  transition: background 0.12s ease, color 0.12s ease;947}948.onglet:hover { background: var(--lime-soft); color: var(--ink); }949.onglet.on { background: var(--ink); color: var(--lime); }950951/* baisses de prix */952.baisses { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }953.baisses li {954  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;955  padding: 9px 4px; border-bottom: 1px dashed var(--line); font-size: 13.5px;956}957.baisses li a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }958.baisse-ville { color: var(--ink-3); font-family: var(--font-mono); font-size: 11px; }959.baisse-prix { margin-left: auto; }960.baisse-prix s { color: var(--ink-3); }961.baisse-pct {962  font-style: normal; font-family: var(--font-mono); font-weight: 700;963  background: var(--lime-soft); border: 1px solid var(--green);964  color: var(--green-deep); border-radius: 999px; padding: 2px 8px;965  font-size: 11px; margin-left: 8px;966}967.alertes { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--ink-2); }968