Python 49.6%
TypeScript 25.5%
CSS 24.1%
1/* -----------------------------------------------------------------------------2 Home-Ka — US real-estate aggregator (Groupe KA)3 Author: Simon-Pierre Boucher — contact@spboucher.ai4 styles.css : Home-Ka classes on top of the shared Groupe KA design system5 (ka/tokens.css, imported BEFORE this file in main.tsx).6 · The base (paper/ink palette, type, grain, selection, focus, component7 base) comes from ka/tokens.css — do NOT duplicate it here.8 · ONLY the brand palette is overridden: Home-Ka RED / WHITE / BLUE9 (US flag — Old Glory Red #b31942, Old Glory Blue #0a3161).10----------------------------------------------------------------------------- */11:root {12 /* ---- Home-Ka RED/WHITE/BLUE palette (only override of ka/tokens.css) ---- */13 --accent: #1e4fd8; /* interactive blue */14 --accent-soft: #e3eafc;15 --accent-deep: #0a3161; /* Old Glory Blue */16 --accent-red: #b31942; /* Old Glory Red — brand chip, statuses, stripe */17 --accent-red-soft: #f9e3e9;18 --on-accent: #ffffff;19 --paper: #ffffff; /* pure white background */20 /* legacy aliases — the CSS below uses --lime */21 --lime: var(--accent);22 --lime-soft: var(--accent-soft);23}2425/* US tricolor stripe under the sticky header */26.header::after {27 content: ""; display: block; height: 3px;28 background: linear-gradient(90deg,29 var(--accent-red) 0 34%, #ffffff 34% 50%,30 var(--accent-deep) 50% 100%);31}3233/* Ancre sous le header collant (spécifique Immo-Ka) */34html { scroll-padding-top: 76px; }35h1, h2, h3, h4 { margin: 0; }36a { text-decoration: none; }37button { font-family: inherit; }3839.mono { font-family: var(--font-mono); }40.kicker {41 font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;42 text-transform: uppercase; letter-spacing: 0.14em; color: var(--green);43 display: inline-flex; align-items: center; gap: 8px;44}45.kicker::before { content: ""; width: 22px; height: 2px; background: var(--green); }4647.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }48@media (max-width: 640px) { .container { padding: 0 16px; } }4950/* ================= Header ================= */51.header {52 position: sticky; top: 0; z-index: var(--z-header, 500);53 background: var(--paper);54 border-bottom: 2px solid var(--ink);55}56/* Menu mobile ouvert : le panneau vit DANS le header — on monte tout le header57 au niveau modale pour qu il passe au-dessus du voile (--z-overlay). */58.header:has(.mobile-menu.open) { z-index: var(--z-modal, 900); }59.header-inner { display: flex; align-items: center; gap: 20px; height: 64px; }60.brand { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.04em; display: flex; align-items: center; line-height: 1; }61.brand .ka { background: var(--accent-red); color: #ffffff; padding: 2px 7px 4px; border-radius: 6px; margin-left: 3px; transform: rotate(-2deg); transition: transform 0.2s ease; }62.brand:hover .ka { transform: rotate(0deg); }63.brand-tag { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; margin-left: 12px; }64@media (max-width: 860px) { .brand-tag { display: none; } }65.nav { margin-left: auto; display: flex; gap: 4px; }66.nav a { padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--ink-2); border: 1.5px solid transparent; transition: all 0.15s ease; min-height: 40px; display: inline-flex; align-items: center; }67.nav a:hover { border-color: var(--ink); color: var(--ink); }68.nav a.active { background: #ffffff; color: var(--accent); border-color: var(--accent); }6970/* ================= Ticker ================= */71.ticker { background: #ffffff; color: var(--accent); border-color: var(--accent); overflow: hidden; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 0; white-space: nowrap; border-bottom: 1px solid rgba(30, 79, 216, 0.25); }72.ticker-track { display: inline-flex; gap: 0; animation: ticker 48s linear infinite; will-change: transform; }73.ticker span { padding: 0 26px; position: relative; }74.ticker span::after { content: "◆"; position: absolute; right: -6px; opacity: 0.5; font-size: 8px; top: 3px; }75@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }76@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } * { transition-duration: 0.01ms !important; } }7778/* ================= Hero ================= */79.hero { position: relative; padding: 64px 0 26px; }80@media (max-width: 640px) { .hero { padding: 36px 0 14px; } }81/* halo cerise + trame de points en fond — décoratif, sous le texte */82.hero::before {83 content: ""; position: absolute; z-index: -1; top: -60px; right: -120px;84 width: 580px; height: 460px; pointer-events: none;85 background: radial-gradient(closest-side, rgba(30, 79, 216, 0.12), transparent 72%);86}87.hero::after {88 content: ""; position: absolute; z-index: -1; inset: -20px -40px 0 0; pointer-events: none;89 background-image: radial-gradient(rgba(20, 24, 20, 0.18) 1.2px, transparent 1.7px);90 background-size: 22px 22px;91 -webkit-mask-image: linear-gradient(112deg, transparent 58%, rgba(0, 0, 0, 0.9));92 mask-image: linear-gradient(112deg, transparent 58%, rgba(0, 0, 0, 0.9));93}94.hero h1 { font-size: clamp(38px, 6.4vw, 78px); font-weight: 700; line-height: 0.98; text-transform: uppercase; letter-spacing: -0.035em; max-width: 940px; margin-top: 14px; }95.hero h1 .outline { color: transparent; -webkit-text-stroke: 2px var(--ink); }96.hero h1 .hl { background: var(--lime); color: #fff; padding: 0 10px; border-radius: 8px; display: inline-block; transform: rotate(-1deg); }97.hero p.lede { color: var(--ink-2); font-size: 16.5px; max-width: 680px; margin: 20px 0 0; }9899@media (max-width: 640px) {100 .hero::before { width: 320px; height: 260px; top: -30px; right: -90px; }101}102103.stat-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }104.stat-chip { background: var(--surface); border: 1.5px solid var(--ink); border-radius: 999px; padding: 8px 16px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); display: flex; gap: 8px; align-items: center; box-shadow: 3px 3px 0 rgba(26, 18, 20, 0.12); transition: transform 0.13s ease, box-shadow 0.13s ease; }105@media (hover: hover) { .stat-chip:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 rgba(26, 18, 20, 0.2); } }106.stat-chip b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }107.stat-chip .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--lime-soft); animation: pulse 2.4s ease infinite; }108@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(30, 79, 216, 0.4); } }109110/* ================= Filter bar ================= */111.filterbar { background: var(--surface); border: 2px solid var(--ink); border-radius: 14px; box-shadow: var(--shadow-off-soft); padding: 14px; margin: 34px 0 6px; display: flex; flex-direction: column; gap: 0; min-width: 0; }112.f-primary { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; min-width: 0; }113.f-search { flex: 1 1 240px; min-width: 0; display: flex; align-items: center; gap: 9px; border: 1.5px solid var(--ink); border-radius: 9px; background: var(--surface-2); padding: 0 14px; min-height: 52px; color: var(--ink-2); transition: box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease; }114.f-search:focus-within { box-shadow: 3px 3px 0 var(--lime); background: var(--surface); color: var(--accent-deep); }115.f-search input { border: none; background: none; outline: none; flex: 1; min-width: 0; font-size: 15px; color: var(--ink); font-family: inherit; }116.f-search input::placeholder { color: var(--ink-3); }117.f-clear { border: none; background: var(--line); color: var(--ink-2); border-radius: 50%; width: 22px; height: 22px; font-size: 10px; cursor: pointer; flex: none; display: grid; place-items: center; transition: background 0.12s ease, color 0.12s ease; }118.f-clear:hover { background: var(--accent-soft); color: var(--accent-deep); }119.f-ctl { flex: 0 1 auto; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 2px; border: 1.5px solid var(--ink); border-radius: 9px; background: var(--surface); padding: 7px 12px 6px; min-height: 52px; cursor: pointer; transition: box-shadow 0.15s ease, background 0.15s ease; }120@media (hover: hover) { .f-ctl:hover { background: var(--surface-2); } }121.f-ctl:focus-within { box-shadow: 3px 3px 0 var(--lime); background: var(--surface); }122.f-ctl > span { font-family: var(--font-mono); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); }123.f-ctl select { border: none; background: transparent; outline: none; font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); cursor: pointer; appearance: none; -webkit-appearance: none; padding-right: 16px; min-width: 0; max-width: 180px; text-overflow: ellipsis; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5'%3E%3Cpath d='M0 0l4.5 5L9 0z' fill='%23141814'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right center; }124.range-pair { display: flex; align-items: center; gap: 4px; }125.range-pair select { max-width: 92px; }126.range-sep { color: var(--ink-3); font-family: var(--font-mono); font-size: 11px; }127.f-more { flex: none; align-self: stretch; display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--ink); border-radius: 9px; background: var(--surface); color: var(--ink); padding: 0 18px; cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 14px; min-height: 52px; transition: transform 0.13s ease, box-shadow 0.13s ease, background 0.13s ease, color 0.13s ease; }128.f-more:hover { transform: translate(-1px, -1px); box-shadow: var(--shadow-off-mid); background: var(--surface); }129.f-more:active { transform: none; box-shadow: none; }130.f-more.on { background: #ffffff; border-color: var(--accent); color: var(--accent); box-shadow: 3px 3px 0 var(--lime); }131.f-more.on:hover { transform: none; }132.f-more-badge { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: var(--lime); color: var(--on-accent); font-size: 11.5px; font-weight: 700; font-variant-numeric: tabular-nums; }133.f-chev { width: 8px; height: 8px; flex: none; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -4px; transition: transform 0.18s ease, margin 0.18s ease; }134.f-chev.up { transform: rotate(-135deg); margin-top: 4px; }135.f-adv { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px 26px; border-top: 1.5px dashed var(--line); margin-top: 14px; padding-top: 16px; min-width: 0; animation: adv-in 0.22s cubic-bezier(0.2, 0.9, 0.3, 1); }136@keyframes adv-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }137.f-group { display: flex; flex-direction: column; gap: 7px; min-width: 0; }138.f-group > label { font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); }139.f-group-end { justify-content: flex-end; }140.f-group .btn:disabled { opacity: 0.4; cursor: default; }141.f-native { border: 1.5px solid var(--line); background: var(--surface-2); border-radius: var(--r-ctl); padding: 10px 30px 10px 12px; font-size: 14px; color: var(--ink); outline: none; font-family: inherit; min-height: 42px; width: 100%; min-width: 0; appearance: none; -webkit-appearance: none; 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"); background-repeat: no-repeat; background-position: right 12px center; }142.f-native:focus { border-color: var(--ink); box-shadow: 3px 3px 0 var(--lime); }143.seg { display: inline-flex; flex-wrap: wrap; row-gap: 6px; }144.seg button { border: 1.5px solid var(--ink); background: var(--surface); color: var(--ink-2); padding: 8px 13px; font-family: var(--font-display); font-weight: 600; font-size: 13px; cursor: pointer; margin-left: -1.5px; white-space: nowrap; min-height: 40px; transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease; }145.seg button:first-child { border-radius: 8px 0 0 8px; margin-left: 0; }146.seg button:last-child { border-radius: 0 8px 8px 0; }147.seg button:hover { background: var(--lime-soft); color: var(--ink); }148.seg button.on { background: #ffffff; color: var(--accent); border-color: var(--accent); position: relative; z-index: 1; box-shadow: inset 0 -2.5px 0 var(--lime); }149150/* pastilles de filtres actifs — survol = intention de retrait (danger) */151.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 2px; }152.pills .pill { display: inline-flex; align-items: center; gap: 7px; border: 1.5px solid var(--ink); background: var(--surface); color: var(--ink); border-radius: 999px; padding: 6px 13px; font-size: 12.5px; font-weight: 600; font-family: var(--font-mono); text-transform: none; letter-spacing: normal; cursor: pointer; transition: all 0.13s ease; box-shadow: 2px 2px 0 var(--lime-soft); animation: pill-in 0.18s ease; }153@keyframes pill-in { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: none; } }154.pills .pill:hover { background: var(--danger-soft); border-color: var(--danger); color: var(--danger); box-shadow: none; }155.pills .pill:hover .pill-x { opacity: 1; }156.pill-x { font-size: 10px; opacity: 0.6; }157.pills .pill-clear { background: var(--surface); border-color: var(--danger); color: var(--danger); box-shadow: none; }158.pills .pill-clear:hover { background: var(--danger); color: #fff; }159.link-btn { background: none; border: none; padding: 0; color: var(--green); font: inherit; text-decoration: underline; cursor: pointer; }160161.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1.5px solid var(--ink); border-radius: var(--r-ctl); padding: 11px 20px; font-weight: 700; font-size: 14px; cursor: pointer; min-height: 44px; background: var(--surface); color: var(--ink); transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease, color 0.15s ease; font-family: var(--font-display); letter-spacing: 0.01em; text-decoration: none; }162.btn:hover { transform: translate(-1px, -1px); box-shadow: var(--shadow-off-mid); }163.btn:active { transform: translate(2px, 2px); box-shadow: none !important; }164.btn:disabled { opacity: 0.45; pointer-events: none; }165.btn-primary { background: #ffffff; color: var(--accent); border-color: var(--accent); box-shadow: 4px 4px 0 rgba(26, 18, 20,0.25); }166.btn-primary:hover { background: var(--green-deep); box-shadow: 4px 4px 0 rgba(26, 18, 20,0.25); }167.btn-ghost { background: transparent; color: var(--ink); }168.btn-ghost:hover { background: var(--lime); color: #fff; box-shadow: 4px 4px 0 rgba(26, 18, 20,0.2); }169170/* ================= Chips ================= */171.chips { display: flex; gap: 8px; margin: 16px 0 4px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }172.chips::-webkit-scrollbar { display: none; }173.chip { display: inline-flex; align-items: center; gap: 7px; border: 1.5px solid var(--ink); background: var(--surface); color: var(--ink); border-radius: 999px; padding: 9px 18px; font-size: 13.5px; font-weight: 600; cursor: pointer; font-family: var(--font-display); white-space: nowrap; min-height: 42px; transition: transform 0.13s ease, box-shadow 0.13s ease, background 0.13s ease, color 0.13s ease; }174.chip:hover { transform: translate(-1px, -1px); box-shadow: var(--shadow-off-mid); }175.chip:active { transform: none; box-shadow: none; }176.chip.on { background: #ffffff; color: var(--accent); border-color: var(--accent); box-shadow: 3px 3px 0 var(--lime); }177178/* ================= Results ================= */179.results-head { display: flex; align-items: baseline; gap: 14px; margin: 28px 0 18px; flex-wrap: wrap; }180.results-head h2 { font-size: 22px; text-transform: uppercase; letter-spacing: -0.02em; }181.results-head > span { font-family: var(--font-mono); color: var(--ink-3); font-size: 12px; letter-spacing: 0.06em; }182.results-tools { display: flex; align-items: center; gap: 12px; margin-left: auto; }183.sort-ctl select { border: 1.5px solid var(--ink); background: var(--surface); border-radius: var(--r-ctl); padding: 8px 28px 8px 12px; min-height: 36px; font-family: var(--font-mono); font-size: 12px; color: var(--ink); cursor: pointer; appearance: none; -webkit-appearance: none; 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"); background-repeat: no-repeat; background-position: right 10px center; transition: box-shadow 0.13s ease; }184.sort-ctl select:hover { box-shadow: 2px 2px 0 rgba(26, 18, 20, 0.18); }185.sort-ctl select:focus { outline: none; box-shadow: 3px 3px 0 var(--lime); }186.view-toggle { display: inline-flex; border: 1.5px solid var(--ink); border-radius: var(--r-ctl); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-flat); }187.view-toggle button { display: inline-flex; align-items: center; gap: 6px; border: 0; background: transparent; padding: 8px 14px; min-height: 36px; cursor: pointer; font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--ink-2); transition: background 0.12s ease, color 0.12s ease; }188.view-toggle button:hover { background: var(--surface-2); color: var(--ink); }189.view-toggle button + button { border-left: 1.5px solid var(--ink); }190.view-toggle button.on { background: #ffffff; color: var(--accent); border-color: var(--accent); box-shadow: inset 0 -2.5px 0 var(--lime); }191192.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; padding-bottom: 20px; }193@media (max-width: 640px) { .grid { grid-template-columns: 1fr; gap: 16px; } }194.more-wrap { display: flex; justify-content: center; padding: 8px 0 70px; }195196.card { background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--r-card); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-flat); transition: transform 0.16s ease, box-shadow 0.16s ease; }197.card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-off); }198.card:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }199.card-img { position: relative; aspect-ratio: 16/10.5; background: repeating-linear-gradient(45deg, #eceae3 0 12px, #f3f1ea 12px 24px); overflow: hidden; }200.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }201.card:hover .card-img img { transform: scale(1.05); }202.card-img .noimg { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--ink-3); font-size: 34px; }203.badge { position: absolute; top: 12px; left: 12px; border-radius: 6px; padding: 4px 10px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; background: rgba(255, 255, 255, 0.95); color: var(--ink); border: 1px solid var(--ink); }204.badge.type { background: #ffffff; color: var(--accent); border-color: var(--accent); }205.badge.right { left: auto; right: 12px; background: rgba(255,255,255,0.92); border-color: transparent; }206.card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }207.card-price { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }208.card-title { font-weight: 600; font-size: 14.5px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }209.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); }210.card-meta .sep { width: 4px; height: 4px; background: var(--lime); border: 1px solid var(--ink); border-radius: 1px; transform: rotate(45deg); }211.card-specs { display: flex; gap: 12px; font-size: 12.5px; color: var(--ink-2); font-family: var(--font-mono); }212.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; }213.source-tag { font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-deep); background: var(--lime-soft); border: 1px solid var(--green); border-radius: 4px; padding: 3px 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 62%; }214.avail { font-size: 11px; color: var(--ink-3); font-weight: 500; text-align: right; font-family: var(--font-mono); }215216/* ================= Skeletons ================= */217@keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }218.skel { border-radius: var(--r-card); border: 1.5px solid var(--line); overflow: hidden; background: var(--surface); }219.skel .sk-img, .skel .sk-line { background: linear-gradient(90deg, #eeece5 25%, #f7f5ef 50%, #eeece5 75%); background-size: 800px 100%; animation: shimmer 1.4s infinite linear; }220.skel .sk-img { aspect-ratio: 16/10.5; }221.skel .sk-line { height: 14px; border-radius: 4px; margin: 12px 16px; }222.skel .sk-line.short { width: 45%; }223224/* ================= Empty / error ================= */225.notice { text-align: center; padding: 72px 24px; color: var(--ink-2); }226.notice .big { font-size: 44px; margin-bottom: 10px; }227.notice h2 { text-transform: uppercase; }228229/* ================= Detail page ================= */230.detail { padding: 30px 0 90px; }231.crumbs { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }232.crumbs a { border-bottom: 1.5px solid transparent; }233.crumbs a:hover { color: var(--green); border-color: var(--green); }234235/* Ordre DOM = ordre visuel sur TOUS les breakpoints (standard Groupe Ka236 « Ordre des sections — pages détail »). Interdit : `order` / `column-reverse`237 / `display:contents` pour réordonner — un bloc sans `order` retombe à238 order:0 et passe devant la galerie sur mobile (bug corrigé sur Lou-Ka).239 Mobile : colonnes empilées ; desktop : grid 2 colonnes (fiche | annexes). */240.fiche { display: flex; flex-direction: column; gap: 22px; }241.f-col { display: flex; flex-direction: column; gap: 22px; min-width: 0; }242@media (min-width: 900px) {243 .fiche { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; }244 .f-col { gap: 26px; }245 .f-col:last-child { position: sticky; top: 88px; }246}247.f-bloc { min-width: 0; }248.f-bloc h2 { font-size: 21px; letter-spacing: -0.02em; margin-bottom: 12px; border-left: 4px solid var(--lime); padding-left: 10px; }249.f-bloc:empty { display: none; }250251/* galerie */252.carousel { position: relative; border-radius: var(--r-card); overflow: hidden; border: 1.5px solid var(--line-strong); background: var(--surface-2); box-shadow: var(--shadow-off-soft); }253.carousel-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; aspect-ratio: 16/11; }254.carousel-track::-webkit-scrollbar { display: none; }255.carousel-track img { flex: 0 0 100%; width: 100%; object-fit: cover; scroll-snap-align: center; cursor: zoom-in; }256.carousel-empty { display: flex; align-items: center; justify-content: center; aspect-ratio: 16/11; font-size: 48px; }257.carousel-count { position: absolute; right: 12px; bottom: 12px; z-index: 2; background: rgba(26, 18, 20, 0.82); color: var(--lime); font-family: var(--font-mono); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }258.carousel-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--ink); background: rgba(255, 255, 255, 0.92); font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; }259.carousel-nav.prev { left: 10px; } .carousel-nav.next { right: 10px; }260@media (max-width: 640px) { .carousel-nav { display: none; } }261.thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; margin-top: 10px; }262.thumbs button { border: 2px solid var(--line); border-radius: 8px; overflow: hidden; padding: 0; cursor: pointer; aspect-ratio: 4/3; background: #eceae3; transition: border-color 0.12s ease, transform 0.12s ease; }263.thumbs button:hover { transform: translateY(-2px); }264.thumbs button.on { border-color: var(--ink); box-shadow: 3px 3px 0 var(--lime); }265.thumbs img { width: 100%; height: 100%; object-fit: cover; }266@media (max-width: 640px) { .thumbs { display: flex; overflow-x: auto; scrollbar-width: none; } .thumbs::-webkit-scrollbar { display: none; } .thumbs button { flex: 0 0 84px; } }267268/* lightbox */269.lightbox { position: fixed; inset: 0; background: rgba(16, 18, 16, 0.94); z-index: 100; display: flex; align-items: center; justify-content: center; cursor: zoom-out; padding: max(16px, env(safe-area-inset-top)) 16px; }270.lightbox img { max-width: 94vw; max-height: 86vh; border-radius: 6px; border: 2px solid var(--lime); object-fit: contain; }271.lb-close { position: absolute; top: 18px; right: 22px; background: none; border: none; color: #fff; font-size: 30px; cursor: pointer; }272.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--lime); font-size: 52px; cursor: pointer; padding: 0 22px; user-select: none; }273.lb-nav.prev { left: 6px; } .lb-nav.next { right: 6px; }274.lb-count { position: absolute; bottom: 24px; color: #c9ccc2; font-family: var(--font-mono); font-size: 13px; }275276/* hero panneau (colonne droite) */277.f-hero { background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card); box-shadow: var(--shadow-off-soft); padding: 26px; }278.price-kicker { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green); }279.price-kicker::before { content: ""; display: inline-block; width: 16px; height: 2px; background: var(--lime); vertical-align: 3px; margin-right: 7px; }280.price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }281.f-hero .price { font-family: var(--font-display); font-size: clamp(30px, 6vw, 40px); font-weight: 700; letter-spacing: -0.03em; }282.type-chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; background: var(--lime-soft); color: var(--green-deep); border: 1px solid rgba(179, 32, 43, 0.25); border-radius: 999px; font-size: 12px; font-weight: 600; }283.price-sub { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }284.f-hero h1 { font-size: clamp(20px, 4.5vw, 24px); margin-top: 10px; }285.f-hero .loc { color: var(--ink-2); font-size: 13.5px; margin-top: 3px; display: flex; align-items: center; gap: 5px; }286.f-hero .loc .ico { color: var(--lime); }287288/* liste de specs — fiche technique premium */289.spec-list { margin: 18px 0 4px; border-top: 1.5px solid var(--line-strong); }290.spec-row { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 11px; padding: 8.5px 0; border-bottom: 1px dashed var(--line); }291.spec-row:last-child { border-bottom: 1.5px solid var(--line-strong); }292.spec-badge { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 9px; background: var(--lime-soft); color: var(--green-deep); }293.spec-k { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2); }294.spec-v { font-family: var(--font-display); font-size: 15.5px; font-weight: 700; text-align: right; }295.deal-badge { display: inline-flex; align-items: center; gap: 6px; margin: 8px 0 4px; border-radius: 999px; padding: 6px 13px; font-size: 12.5px; font-weight: 600; border: 1.5px solid var(--line-strong); }296.deal-ok { background: var(--lime-soft); border-color: var(--green); color: var(--green-deep); }297298.specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; margin: 18px 0; }299.spec { border: 1.5px solid var(--line-strong); border-radius: var(--r-ctl); padding: 9px 11px; background: var(--surface-2); }300.spec b { display: block; font-family: var(--font-display); font-size: 16px; }301.spec span { font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }302303.broker { margin: 16px 0; padding: 14px; border: 1.5px dashed var(--line-strong); border-radius: var(--r-ctl); background: var(--surface-2); }304.broker-k { font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); }305.broker-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-top: 3px; }306.broker-tel { display: inline-block; margin-top: 6px; color: var(--green-deep); font-weight: 600; border-bottom: 1.5px solid var(--lime); }307308.cta { display: block; text-align: center; background: #ffffff; color: var(--accent); font-weight: 700; font-family: var(--font-display); border-radius: var(--r-ctl); padding: 15px; border: 1.5px solid var(--accent); min-height: 48px; box-shadow: 4px 4px 0 rgba(26, 18, 20,0.25); transition: all 0.14s ease; margin-top: 6px; }309.cta:hover { background: var(--lime); color: #fff; }310.cta:active { transform: translate(2px, 2px); box-shadow: none; }311.f-hero .fine { font-size: 11.5px; color: var(--ink-3); margin-top: 14px; text-align: center; font-family: var(--font-mono); letter-spacing: 0.02em; }312313.desc-text { color: var(--ink-2); font-size: 14.5px; white-space: pre-line; line-height: 1.6; margin: 0; }314315/* tableau caractéristiques */316.dtable { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0 22px; }317.drow { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }318.drow span { color: var(--ink-3); } .drow b { text-align: right; font-family: var(--font-display); }319320/* tableau pièces */321.rooms-wrap { overflow-x: auto; border: 1.5px solid var(--line-strong); border-radius: var(--r-card); }322table.rooms { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 460px; }323table.rooms th { text-align: left; background: var(--ink); color: var(--paper); padding: 9px 12px; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; }324table.rooms td { padding: 8px 12px; border-bottom: 1px solid var(--line); }325table.rooms tr:last-child td { border-bottom: none; }326table.rooms tr:nth-child(even) td { background: var(--surface-2); }327328.amenity-row { display: flex; flex-wrap: wrap; gap: 7px; }329.amenity { background: var(--lime-soft); color: var(--green-deep); font-size: 12px; font-weight: 600; border: 1px solid var(--green); border-radius: 999px; padding: 5px 12px; }330331.prix-histo { margin-top: 14px; padding: 10px 14px; border-radius: var(--r-card); border: 1.5px solid var(--line-strong); font-size: 13.5px; background: var(--surface); }332.prix-histo.down { background: var(--lime-soft); border-color: var(--green); color: var(--green-deep); }333334.mini-map { height: 320px; border: 1.5px solid var(--line-strong); border-radius: var(--r-card); overflow: hidden; }335.mini-map .mapview { border: none; border-radius: 0; box-shadow: none; height: 100%; }336337.cta-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: flex; align-items: center; gap: 12px; background: rgba(247, 241, 239, 0.94); backdrop-filter: blur(12px); border-top: 2px solid var(--ink); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); }338.cta-sticky .cta { flex: 1; margin: 0; }339.cta-sticky-prix { font-family: var(--font-display); font-weight: 700; font-size: 19px; white-space: nowrap; }340@media (min-width: 900px) { .cta-sticky { display: none; } }341@media (max-width: 899px) { .detail { padding-bottom: 84px; } }342.f-foot { margin-top: 26px; }343.fine { font-size: 12px; color: var(--ink-3); }344345/* Box « Aussi publiée sur… » : autres publications de la même propriété */346.dups-note { font-size: 13px; color: var(--ink-3); margin: 4px 0 10px; }347.dups-list { display: flex; flex-direction: column; gap: 8px; }348.dup-item { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 11px 13px; border: 1.5px solid var(--line-strong); border-radius: var(--r-ctl); background: var(--surface-2); transition: all 0.14s ease; min-height: 44px; }349.dup-item:hover { border-color: var(--ink); box-shadow: 3px 3px 0 rgba(26, 18, 20, 0.18); }350.dup-src { font-family: var(--font-display); font-weight: 700; font-size: 14px; }351.dup-broker { font-size: 12.5px; color: var(--ink-3); }352.dup-go { margin-left: auto; font-size: 12.5px; font-weight: 600; color: var(--green-deep); border-bottom: 1.5px solid var(--lime); white-space: nowrap; }353.dup-go .ico { vertical-align: -2px; }354355/* ================= Sources / Agences ================= */356.sources { padding: 44px 0 90px; }357.sources h1 { font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; margin: 10px 0 6px; }358.sources .sub { color: var(--ink-2); margin-bottom: 30px; max-width: 720px; }359.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); }360.src-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 760px; }361.src-table th { text-align: left; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); padding: 14px 18px; border-bottom: 1.5px solid var(--ink); background: var(--surface-2); }362.src-table td { padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }363.src-table tr:last-child td { border-bottom: none; }364.src-table tr:hover td { background: var(--surface-2); }365.src-table a { color: var(--green-deep); font-weight: 600; border-bottom: 1.5px solid var(--lime); }366.pill.ok { background: var(--lime); color: #fff; border: 1px solid var(--ink); border-radius: 4px; padding: 3px 10px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; }367.pill.todo { background: var(--amber-soft); color: #8a5a12; border: 1px solid var(--amber); border-radius: 4px; padding: 3px 10px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; }368.count-pill { font-weight: 700; font-family: var(--font-display); font-size: 16px; border-bottom: 1.5px solid var(--lime); }369370/* ================= Stats ================= */371.stats-page { padding: 44px 0 90px; }372.stats-title { font-size: clamp(30px, 4.6vw, 46px); text-transform: uppercase; margin: 10px 0 6px; }373.stats-page .sub { color: var(--ink-2); max-width: 660px; margin-bottom: 30px; }374.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 30px; }375.tile { background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card); padding: 18px 20px; box-shadow: 3px 3px 0 rgba(26, 18, 20, 0.1); }376.tile-v { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3vw, 32px); letter-spacing: -0.03em; line-height: 1.05; }377.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; }378.hero-tile { background: #ffffff; color: var(--accent); border-color: var(--accent); }379.hero-tile .tile-k { color: rgba(30, 79, 216, 0.7); }380.viz-card { background: var(--surface); border: 1.5px solid var(--ink); border-radius: var(--r-card); box-shadow: var(--shadow-off-soft); padding: 26px 28px 20px; margin-bottom: 22px; min-width: 0; max-width: 100%; overflow-x: auto; }381/* mobile : une table large ne doit JAMAIS déborder la page (grid blowout) —382 chaque bloc de la page Stats défile horizontalement en interne au besoin */383.stats-page section, .stats-page > * { min-width: 0; max-width: 100%; }384@media (max-width: 640px) { .stats-page .viz-card { padding: 18px 14px 14px; } }385.viz-card h2 { font-size: 19px; text-transform: uppercase; letter-spacing: -0.01em; }386.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; }387.viz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }388@media (max-width: 900px) { .viz-grid { grid-template-columns: 1fr; } }389.hbars { display: flex; flex-direction: column; gap: 7px; }390.hbar-row { display: grid; grid-template-columns: minmax(96px, 180px) 1fr auto; gap: 12px; align-items: center; min-height: 26px; }391.hbar-label { font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }392.hbar-label a { border-bottom: 1.5px solid var(--lime); }393.hbar-label a:hover { color: var(--green-deep); }394.hbar-track { background: var(--surface-2); border-radius: 0 4px 4px 0; height: 18px; overflow: hidden; }395.hbar-fill { display: block; height: 100%; background: var(--green); border-radius: 0 4px 4px 0; min-width: 2px; transition: background 0.12s ease; }396.hbar-row:hover .hbar-fill { background: var(--ink); box-shadow: inset 0 0 0 2px var(--lime); }397.hbar-value { font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; white-space: nowrap; }398.hbar-value em { font-style: normal; font-weight: 500; color: var(--ink-3); }399.viz-table { margin-top: 4px; }400.viz-table table { width: 100%; border-collapse: collapse; font-size: 13px; }401.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); }402.viz-table td { padding: 6px 10px; border-bottom: 1px solid var(--line); }403.stats-foot { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; margin-top: 6px; }404405/* ---- Iconographie maison (Icons.tsx) ---- */406.ico { vertical-align: -3px; flex-shrink: 0; }407.card-specs span { display: inline-flex; align-items: center; gap: 5px; }408.card-specs .ico { color: var(--green); }409.badge.right .ico { vertical-align: -2px; }410.noimg .ico, .carousel-empty .ico { color: var(--ink-3); }411.notice .big .ico { color: var(--lime); }412.amenity .ico { color: var(--green); margin-right: 2px; }413.q-badge .ico { vertical-align: -3px; margin-right: 2px; }414.q-bar-label { display: inline-flex; align-items: center; gap: 7px; }415.q-bar-label .ico { color: var(--green); }416.mm-ico .ico { vertical-align: -4px; }417.mv-noimg svg { color: var(--ink-3); }418.broker-tel .ico { vertical-align: -2.5px; }419.cta .ico { vertical-align: -2.5px; margin-left: 3px; }420.prix-histo .ico { vertical-align: -3.5px; }421.spec { position: relative; }422.spec-ico { position: absolute; top: 10px; right: 10px; color: var(--lime); opacity: 0.85; }423424/* ---- Survalorisation vs Vrai-Prix (jauges divergentes) ---- */425.vpg-axis { display: grid; grid-template-columns: 220px 1fr 74px 90px; gap: 10px; margin-bottom: 2px; }426.vpg-axis > div { grid-column: 2; display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); }427.vpg-row { display: grid; grid-template-columns: 220px 1fr 74px 90px; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line); }428.vpg-row:last-of-type { border-bottom: none; }429.vpg-name { font-size: 13.5px; font-weight: 600; }430.vpg-name em { display: block; font-style: normal; font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); }431.vpg-track { position: relative; height: 18px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }432.vpg-zero { position: absolute; left: 50%; top: 0; bottom: 0; width: 1.5px; background: var(--line-strong); opacity: 0.5; }433.vpg-band { position: absolute; top: 3px; bottom: 3px; background: rgba(26, 18, 20, 0.14); border-radius: 999px; }434.vpg-median { position: absolute; top: 1px; bottom: 1px; width: 4px; margin-left: -2px; border-radius: 2px; }435.vpg-median.vp-sur { background: var(--lime); }436.vpg-median.vp-juste { background: #d9a942; }437.vpg-median.vp-sous { background: #4c8b4f; }438.vpg-value { font-family: var(--font-display); font-weight: 700; font-size: 15px; text-align: right; }439.vpg-value.vp-sur { color: var(--green); }440.vpg-value.vp-juste { color: #a97b1e; }441.vpg-value.vp-sous { color: #3c7440; }442.vpg-split { display: flex; height: 10px; border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }443.vps-sous { background: #7fb283; }444.vps-juste { background: #d9cfc7; }445.vps-sur { background: var(--lime); }446.vpg-sep { border-top: 1.5px solid var(--line-strong); margin: 4px 0; }447.vpg-legend { display: flex; gap: 16px; margin-top: 10px; font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-2); flex-wrap: wrap; }448.vpg-legend i { display: inline-block; width: 14px; height: 9px; border-radius: 999px; margin-right: 5px; vertical-align: -1px; }449@media (max-width: 780px) { .vpg-row { grid-template-columns: 1fr 64px; } .vpg-track { grid-column: 1 / -1; } .vpg-split { grid-column: 1 / -1; } .vpg-axis { display: none; } }450451/* ================= Carte (Ka Maps — framework partagé Groupe Ka) =========452 Jetons du design system appliqués au chrome de la carte, mêmes réglages453 que Lou-Ka Maps. */454.mapview .ka-map, .lmap3d .ka-map {455 --ka-accent: var(--accent);456 --ka-on-accent: var(--on-accent);457 --ka-surface: var(--surface);458 --ka-ink: var(--ink);459 --ka-line: var(--line-strong);460 --ka-radius: var(--r-ctl);461 --ka-shadow: 0 8px 24px rgba(26, 18, 20, 0.14);462 --ka-font: var(--font-body);463}464.mapview { position: relative; overflow: hidden; }465.mapview .ka-map { position: absolute; inset: 0; }466467/* mini-carte 3D de la fiche (Emplacement) — bâtiment de l'annonce en cerise */468.lmap3d {469 position: relative; height: 340px; border: 1.5px solid var(--ink);470 border-radius: var(--r-card); box-shadow: var(--shadow-off-soft);471 overflow: hidden; background: var(--surface-2);472}473.lmap3d-skel {474 background: linear-gradient(90deg, #eeece5 25%, #f7f5ef 50%, #eeece5 75%);475 background-size: 800px 100%; animation: shimmer 1.4s infinite linear;476}477.lmap3d-legende {478 position: absolute; left: 10px; bottom: 10px; z-index: 5;479 display: inline-flex; align-items: center; gap: 6px;480 padding: 4px 10px; border: 1.5px solid var(--ink);481 border-radius: 999px; background: var(--surface);482 font-size: 10.5px; font-weight: 500; color: var(--ink-2);483 pointer-events: none;484}485.lmap3d-legende i {486 width: 10px; height: 10px; border-radius: 3px;487 background: var(--accent); border: 1px solid rgba(26, 18, 20, 0.25);488}489@media (max-width: 780px) { .lmap3d { height: 280px; } }490491/* ================= Carte ================= */492.map-split { display: grid; grid-template-columns: minmax(300px, 400px) 1fr; gap: 18px; height: calc(100dvh - 200px); min-height: 420px; }493.map-list { overflow-y: auto; display: flex; flex-direction: column; gap: 14px; padding-right: 4px; scrollbar-width: thin; }494.map-list .card { margin: 0; flex: 0 0 auto; }495/* sync liste ↔ carte : fiche sélectionnée depuis une pastille de la carte */496.map-card { border-radius: var(--r-card); }497.map-card-sel .card { border-color: var(--accent); box-shadow: 4px 4px 0 var(--accent-soft), 0 0 0 2px var(--accent); }498.mapwrap { position: relative; width: 100%; height: 100%; }499.mapview { width: 100%; height: 100%; border: 1.5px solid var(--line-strong); border-radius: var(--r-card); box-shadow: var(--shadow-off-soft); overflow: hidden; background: var(--surface-2); }500.mv-brand { position: absolute; top: 10px; left: 10px; z-index: 3; display: flex; align-items: center; gap: 6px; padding: 5px 11px; background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: 999px; box-shadow: var(--shadow-off-soft); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-2); pointer-events: none; }501.mv-brand b { color: var(--ink); }502.mv-brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px var(--lime-soft); }503.mv-legend { position: absolute; bottom: 26px; left: 10px; z-index: 3; display: flex; flex-direction: column; gap: 4px; padding: 8px 11px; background: rgba(255, 255, 255, 0.92); border: 1px solid var(--line); border-radius: var(--r-ctl); font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-2); pointer-events: none; }504.mv-legend span { display: flex; align-items: center; gap: 7px; }505.mv-lg-pill { display: inline-block; width: 22px; height: 12px; border-radius: 999px; background: #fff; border: 1.5px solid rgba(26, 18, 20, 0.35); }506.mv-lg-deal { background: var(--lime); border-color: var(--green); }507.mv-credit { position: absolute; bottom: 8px; right: 8px; z-index: 3; padding: 4px 10px; background: rgba(255, 255, 255, 0.9); border-radius: 999px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; color: var(--ink-2); pointer-events: none; }508.mv-credit b { color: var(--ink); }509.mini-map .mv-brand, .mini-map .mv-legend { display: none; }510.mini-map .mapwrap { height: 100%; }511512/* ---- carte propriété (fiche) : marqueur pulsant + anneaux piéton ---- */513.pm-wrap { position: relative; width: 100%; height: 100%; }514.pm-marker { display: flex; flex-direction: column; align-items: center; }515.pm-pill { padding: 5px 13px; background: #fff; border: 1.5px solid var(--line-strong); border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); box-shadow: var(--shadow-off-soft); white-space: nowrap; margin-bottom: 4px; }516.pm-pill-deal { background: var(--lime); border-color: var(--green); color: #fff; }517.pm-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--lime); border: 2.5px solid #fff; box-shadow: 0 1px 4px rgba(26, 18, 20, 0.4); }518.pm-pulse { position: absolute; bottom: -8px; width: 30px; height: 30px; border-radius: 50%; background: var(--lime); opacity: 0.35; animation: pm-pulse 2s ease-out infinite; }519@keyframes pm-pulse { 0% { transform: scale(0.5); opacity: 0.45; } 80% { transform: scale(1.9); opacity: 0; } 100% { opacity: 0; } }520.pm-rings-legend { position: absolute; bottom: 8px; left: 8px; z-index: 3; display: flex; gap: 12px; padding: 4px 10px; background: rgba(255, 255, 255, 0.9); border-radius: 999px; font-family: var(--font-mono); font-size: 10px; color: var(--green); pointer-events: none; }521.mini-map .pm-wrap .mv-credit { display: block; }522.map-loading { display: flex; align-items: center; justify-content: center; color: var(--ink-3); font-family: var(--font-mono); font-size: 13px; }523@media (max-width: 780px) { .map-split { grid-template-columns: 1fr; height: calc(100dvh - 230px); } .map-list { display: none; } .results-tools { width: 100%; justify-content: space-between; } }524.maplibregl-popup-content { padding: 0; border-radius: var(--r-card); overflow: hidden; border: 1.5px solid var(--line-strong); box-shadow: var(--shadow-off); font-family: var(--font-body); }525.maplibregl-popup-close-button { font-size: 18px; padding: 2px 8px; color: var(--paper); z-index: 2; text-shadow: 0 0 4px rgba(26, 18, 20, 0.8); }526.mv-pop img, .mv-noimg { width: 100%; height: 130px; object-fit: cover; }527.mv-noimg { display: flex; align-items: center; justify-content: center; font-size: 34px; background: var(--surface-2); }528.mv-pop-body { padding: 10px 12px 12px; }529.mv-pop-price { font-family: var(--font-display); font-weight: 700; font-size: 18px; }530.mv-pop-title { font-size: 13px; color: var(--ink-2); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }531.mv-pop-meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-2); margin-top: 6px; }532.mv-pop-src { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }533.mv-pop-cta { display: block; margin-top: 10px; padding: 8px 10px; text-align: center; background: #ffffff; color: var(--accent); border: 1.5px solid var(--accent); border-radius: var(--r-ctl); font-weight: 600; font-size: 13px; }534.mv-pop-cta:hover { background: var(--green-deep); }535.mv-pop-deal { display: inline-block; margin-left: 6px; padding: 2px 8px; vertical-align: 3px; background: var(--lime); color: #fff; border-radius: 999px; font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.05em; }536.maplibregl-ctrl-attrib { font-size: 10px; }537538/* ================= Menu mobile ================= */539.menu-btn { display: none; position: relative; z-index: 60; width: 44px; height: 44px; margin-left: auto; border: 1.5px solid var(--ink); border-radius: var(--r-ctl); background: var(--surface); cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; box-shadow: 3px 3px 0 rgba(26, 18, 20, 0.15); transition: box-shadow 0.15s ease, transform 0.15s ease; }540.menu-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(26, 18, 20,0.15); }541.menu-btn span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }542.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }543.menu-btn.open span:nth-child(2) { opacity: 0; }544.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }545/* KA Nav v2 (2026-08-25) : panneau PLEIN ECRAN fixed inset:0 - visible peu546 importe le scroll (l'ancien dropdown absolute 480px clippait/se coupait). */547.mobile-menu {548 display: none; position: fixed; inset: 0;549 background: var(--paper);550 padding: 76px 16px calc(24px + env(safe-area-inset-bottom));551 overflow-y: auto; overscroll-behavior: contain;552}553.mobile-menu.open { display: block; animation: mm-in 0.16s ease; }554@keyframes mm-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }555/* burger masque a l'ouverture : la fermeture passe par le X fixe du panneau */556.header:has(.mobile-menu.open) .menu-btn { visibility: hidden; }557/* bouton de fermeture du panneau : fixe en haut a droite du viewport */558.mm-close {559 position: fixed; top: 10px; right: 14px; z-index: 2;560 width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;561 border: 1.5px solid var(--ink); border-radius: 999px;562 background: var(--ink); color: var(--paper);563 font-size: 17px; font-weight: 700; line-height: 1; cursor: pointer; padding: 0;564}565/* verrou du scroll d'arriere-plan quand le menu est ouvert (CSS pur) */566html:has(.mobile-menu.open) { overflow: hidden; }567.mm-link { display: flex; align-items: center; gap: 12px; padding: 15px 10px; min-height: 52px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; border-bottom: 1.5px dashed var(--line); opacity: 0; transform: translateY(-8px); transition: opacity 0.25s ease, transform 0.25s ease; }568.mobile-menu.open .mm-link { opacity: 1; transform: translateY(0); }569.mm-link.active { color: var(--green); }570.mm-ico { width: 26px; text-align: center; font-size: 17px; }571.mm-arrow { margin-left: auto; opacity: 0.25; }572.mm-link:active { background: var(--lime-soft); border-radius: var(--r-ctl); }573.mm-foot { padding: 12px 10px 4px; font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.04em; }574.mm-backdrop { position: fixed; inset: 0; z-index: var(--z-overlay, 800); background: rgba(26, 18, 20, 0.35); backdrop-filter: blur(2px); }575@media (max-width: 760px) { .menu-btn { display: flex; } .nav { display: none; } }576577/* ================= Footer =================578 Remplacé par le footer commun Groupe KA (ka/KaFooter.tsx — styles .ka-footer579 dans ka/tokens.css). */580581/* ================= Mobile : feuille de filtres + FAB ================= */582.sheet-head { display: none; }583.sheet-handle { display: none; }584.sheet-apply { display: none; }585.sheet-backdrop { display: none; }586.fab { display: none; }587.fab-badge { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: var(--lime); color: #fff; font-size: 11.5px; font-weight: 700; font-variant-numeric: tabular-nums; margin-left: 2px; }588@media (max-width: 640px) {589 .header-inner { height: 56px; }590 .brand { font-size: 21px; }591 .hero h1 { font-size: clamp(30px, 9.4vw, 44px); }592 .hero p.lede { font-size: 15px; }593 .stat-row { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 6px; margin-right: -16px; padding-right: 16px; }594 .stat-row::-webkit-scrollbar { display: none; }595 .stat-chip { flex: 0 0 auto; white-space: nowrap; }596 .filterbar { display: none; }597 .filterbar.open .f-primary { flex-direction: column; }598 .filterbar.open .f-ctl select { max-width: none; width: 100%; }599 .filterbar.open .f-more { display: none; }600 .filterbar.open { display: flex; flex-direction: column; gap: 12px; position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-modal, 900); margin: 0; border-radius: 20px 20px 0 0; border-width: 2px 0 0 0; max-height: 82dvh; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 10px 18px calc(18px + env(safe-area-inset-bottom)); box-shadow: 0 -16px 48px rgba(16, 18, 16, 0.35); animation: sheet-up 0.24s cubic-bezier(0.2, 0.9, 0.3, 1); }601 @keyframes sheet-up { from { transform: translateY(30%); opacity: 0.4; } to { transform: none; opacity: 1; } }602 .filterbar.open .sheet-handle { display: block; flex: none; width: 44px; height: 5px; border-radius: 999px; background: var(--line); margin: 0 auto 2px; }603 .filterbar.open .sheet-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; text-transform: uppercase; position: sticky; top: -10px; background: var(--surface); padding: 6px 0 8px; border-bottom: 1.5px solid var(--line); margin-bottom: 2px; z-index: 1; }604 .sheet-close { border: 1.5px solid var(--ink); background: var(--surface); border-radius: 50%; width: 36px; height: 36px; font-size: 15px; cursor: pointer; line-height: 1; }605 .filterbar.open .sheet-apply { display: flex; width: 100%; min-height: 50px; position: sticky; bottom: 0; z-index: 1; box-shadow: 0 -14px 18px -12px rgba(16, 18, 16, 0.4), 5px 5px 0 var(--lime); }606 .sheet-backdrop { display: block; position: fixed; inset: 0; z-index: 90; background: rgba(16, 18, 16, 0.45); backdrop-filter: blur(2px); }607 .fab { display: flex; align-items: center; gap: 8px; position: fixed; left: 50%; transform: translateX(-50%); bottom: calc(18px + env(safe-area-inset-bottom)); z-index: 80; background: #ffffff; color: var(--accent); border: 1.5px solid var(--accent); border-radius: 999px; padding: 13px 24px; font-family: var(--font-display); font-weight: 700; font-size: 15px; cursor: pointer; box-shadow: 0 8px 24px rgba(16, 18, 16, 0.35), 4px 4px 0 rgba(30, 79, 216, 0.55); }608 .fab:active { transform: translateX(-50%) scale(0.97); }609 .results-head { margin-top: 20px; }610 .chips { margin-right: -16px; padding-right: 16px; }611 .notice { padding: 48px 16px; }612}613@media (max-width: 900px) { .f-search input, .f-native, .f-ctl select { font-size: 16px; } }614615/* --- Sources : bannières → sous-agences -------------------------------- */616.franchise-list { display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }617.franchise { border: 2px solid var(--ink); background: var(--surface); box-shadow: var(--shadow-off-soft); }618.franchise-head {619 width: 100%; display: flex; align-items: center; gap: 12px; padding: 14px 16px;620 background: none; border: 0; cursor: pointer; font-family: var(--font-display);621 font-size: 16px; font-weight: 600; color: var(--ink); text-align: left;622}623.franchise-head:hover { background: var(--surface-2); }624.fh-caret { color: var(--green); width: 14px; }625.fh-name { flex: 1; }626.fh-sub { font-size: 12px; font-weight: 500; color: var(--ink-3); font-family: var(--font-mono); }627.fh-count {628 font-family: var(--font-mono); font-weight: 700; background: #ffffff;629 color: var(--accent); border: 1.5px solid var(--accent); padding: 3px 10px; min-width: 64px; text-align: right;630}631.subagency-list { list-style: none; margin: 0; padding: 0 16px 10px 40px; border-top: 1px solid var(--line); }632.subagency-list li {633 display: flex; align-items: center; justify-content: space-between; gap: 12px;634 padding: 8px 0; border-bottom: 1px dotted var(--line); font-size: 14px;635}636.subagency-list li:last-child { border-bottom: 0; }637.sa-name { color: var(--ink-2); }638639/* --- Pagination (accueil) ---------------------------------------------- */640.pager { display: flex; flex-wrap: wrap; align-items: center; justify-content: center;641 gap: 6px; margin: 32px 0 8px; }642.pager-btn {643 font-family: var(--font-mono); font-size: 14px; min-width: 42px; min-height: 42px; padding: 8px 12px;644 border: 2px solid var(--ink); border-radius: 8px; background: var(--surface); color: var(--ink);645 cursor: pointer; box-shadow: 3px 3px 0 rgba(26, 18, 20, 0.14);646 transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;647}648.pager-btn:hover:not(:disabled):not(.on) { background: var(--lime-soft); transform: translate(-1px, -1px); box-shadow: 4px 4px 0 rgba(26, 18, 20, 0.2); }649.pager-btn:active:not(:disabled) { transform: none; box-shadow: none; }650.pager-btn.on { background: #ffffff; color: var(--accent); border-color: var(--accent); font-weight: 700; box-shadow: 3px 3px 0 var(--lime); }651.pager-btn:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; }652.pager-gap { padding: 0 4px; color: var(--ink-3); }653.pager-info { width: 100%; text-align: center; margin-top: 8px; font-size: 12px;654 color: var(--ink-3); font-family: var(--font-mono); }655656657658/* --- Le quartier (census / proximité / chaleur / crime) — porté de Lou-Ka --- */659/* --- Section « Le quartier » (fiche) --------------------------------------- */660.quartier { margin-top: 34px; }661.quartier h2 { font-size: 24px; letter-spacing: -0.02em; }662.q-sub { color: var(--ink-3); font-size: 13px; margin: 4px 0 16px; }663.q-grid {664 display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;665}666.q-grid { grid-template-columns: repeat(2, 1fr); }667.q-cell {668 background: var(--surface); border: 1.5px solid var(--line-strong);669 border-radius: var(--r-card); padding: 12px 14px; box-shadow: var(--shadow-flat);670}671.q-val { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }672.q-label { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-3);673 text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }674.q-prox { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }675.q-bar { display: flex; align-items: center; gap: 10px; font-size: 13px; }676.q-bar-label { flex: 0 0 150px; color: var(--ink-2); }677.q-bar-label { flex-basis: 120px; font-size: 12px; }678.q-bar-track {679 flex: 1; height: 10px; background: var(--surface-2);680 border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden;681}682.q-bar-fill { display: block; height: 100%; background: var(--green); border-radius: 999px; }683.q-bar-num { flex: 0 0 30px; text-align: right; font-family: var(--font-mono);684 font-size: 11.5px; font-weight: 700; }685.q-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }686.q-badge {687 display: inline-flex; align-items: center; gap: 6px;688 border: 1.5px solid var(--line-strong); border-radius: 999px;689 padding: 7px 13px; font-size: 12.5px; background: var(--surface);690}691.q-badge.cool { background: var(--lime-soft); border-color: var(--green); color: var(--green-deep); }692.q-badge.hot { background: var(--amber-soft); border-color: var(--amber); color: #8a5a12; }693.quartier .fine { margin-top: 10px; }694.q-cell { padding: 9px 11px; }695.q-val { font-size: 16px; }696.q-bar { gap: 8px; font-size: 12px; }697.q-bar-track { height: 8px; }698.q-badge-sub { display: block; font-size: 10.5px; color: var(--ink-3); font-weight: 400; margin-left: 4px; }699700/* --- Vrai-Prix : estimation de valeur ---------------------------------- */701.vraiprix { border: 2px solid var(--ink); background: var(--surface-2);702 box-shadow: var(--shadow-off-soft); padding: 14px; margin: 14px 0; }703.vp-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }704.vp-logo { font-family: var(--font-display); font-weight: 700; color: var(--green-deep);705 letter-spacing: -.3px; }706.vp-conf { font-family: var(--font-mono); font-size: 11px; padding: 2px 7px; border: 1px solid var(--ink); }707.vp-conf-A { background: var(--lime); color: #fff; } .vp-conf-B { background: var(--lime-soft); }708.vp-conf-C { background: var(--amber-soft); } .vp-conf-D { background: #f0d9d9; }709.vp-k { font-size: 11px; color: var(--ink-3); text-transform: uppercase;710 letter-spacing: .5px; margin-top: 8px; }711.vp-value { font-family: var(--font-display); font-size: 26px; font-weight: 700;712 letter-spacing: -1px; color: var(--ink); }713.vp-range { font-size: 12px; color: var(--ink-2); font-family: var(--font-mono); }714/* jauge Vrai-Prix : fourchette P10–P90 + marqueurs estimation / prix demandé */715.vp-gauge { margin-top: 10px; }716.vp-gauge-track { position: relative; height: 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line-strong); overflow: hidden; }717.vp-gauge-band { position: absolute; inset: 3px 6%; background: linear-gradient(90deg, var(--lime-soft), rgba(30, 79, 216, 0.35), var(--lime-soft)); border-radius: 999px; }718.vp-gauge-est { position: absolute; top: 0; bottom: 0; width: 4px; margin-left: -2px; background: var(--lime); border-radius: 2px; }719.vp-gauge-ask { position: absolute; top: 2px; bottom: 2px; width: 4px; margin-left: -2px; background: var(--ink); border-radius: 2px; }720.vp-gauge-ends { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); margin-top: 4px; }721.vp-gauge-legend { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 10px; color: var(--ink-2); margin-top: 5px; }722.vp-dot-est, .vp-dot-ask { display: inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 4px; vertical-align: -1px; }723.vp-dot-est { background: var(--lime); }724.vp-dot-ask { background: var(--ink); }725.vp-delta { font-size: 13px; margin-top: 8px; padding: 6px 8px; border-radius: var(--r-ctl); }726.vp-over { background: #f6e2e2; color: #8a2b2b; }727.vp-under { background: #e2f0e6; color: #1c5c41; }728.vp-fair { background: var(--surface); color: var(--ink-2); }729.vp-link { display: block; text-align: center; margin-top: 10px; font-weight: 700;730 font-size: 13px; padding: 8px; background: var(--green-deep); color: #fff;731 text-decoration: none; }732.vp-link:hover { background: var(--green); }733734/* =============================================================================735 Harmonisation Groupe KA — header (badge + compte KA ID), pages Profil,736 Contact et légales. Le socle vient de ka/tokens.css.737============================================================================= */738739/* ---- Header : badge « Un service Groupe KA » + zone compte ---- */740.header-inner .gk-badge { flex: none; }741@media (max-width: 900px) { .header-inner .gk-badge { display: none; } }742.header-acct { display: flex; align-items: center; gap: 10px; flex: none; }743.ka-auth { display: flex; align-items: center; gap: 10px; }744.ka-login {745 display: inline-flex; align-items: center; gap: 6px; min-height: 40px;746 padding: 8px 15px; border: 1.5px solid var(--ink); border-radius: 999px;747 background: var(--surface); color: var(--ink); cursor: pointer;748 font-family: var(--font-display); font-weight: 600; font-size: 13.5px;749 box-shadow: 3px 3px 0 rgba(20, 24, 20, 0.15);750 transition: transform 0.13s ease, box-shadow 0.13s ease, background 0.15s ease;751}752.ka-login b { background: var(--ink); color: var(--accent); border-radius: 5px; padding: 0 6px 1px; transform: rotate(-2deg); transition: transform 0.15s ease; }753.ka-login:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 rgba(20, 24, 20, 0.2); }754.ka-login:hover b { transform: rotate(0); }755.ka-login:active { transform: translate(2px, 2px); box-shadow: none; }756.ka-signup { font-family: var(--font-mono); font-size: 11px; color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }757.ka-signup:hover { color: var(--accent-deep); }758@media (max-width: 1100px) { .header-acct .ka-signup { display: none; } }759.ka-acct {760 display: inline-flex; align-items: center; gap: 8px; min-height: 40px;761 padding: 6px 14px; border: 1.5px solid var(--ink); border-radius: 999px;762 background: var(--surface); font-family: var(--font-display);763 font-weight: 600; font-size: 13.5px; color: var(--ink);764 max-width: 160px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;765}766.ka-acct:hover, .ka-acct.active { background: var(--ink); color: var(--accent); }767.ka-acct-pic { width: 24px; height: 24px; border-radius: 50%; flex: none; border: 1px solid var(--line); }768@media (max-width: 760px) {769 .header-acct { margin-left: auto; }770 .menu-btn { margin-left: 0; }771 .ka-login { min-height: 44px; }772}773@media (max-width: 380px) { .header-acct { display: none; } } /* → menu mobile */774775/* ---- Menu mobile : compte + badge groupe ---- */776.mm-auth { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 15px 10px; border-bottom: 1.5px dashed var(--line); }777.mm-auth .ka-login { min-height: 44px; }778.mm-foot p { margin: 10px 0 0; }779780/* ---- Générique : lede (Profil / Contact) ---- */781.lede { color: var(--ink-2); font-size: 15.5px; max-width: 640px; }782783/* ================= Page Profil (KA ID) ================= */784.profil { padding: 44px 0 90px; }785.profil h1 { font-size: clamp(28px, 4.6vw, 44px); margin: 10px 0 24px; letter-spacing: -0.03em; }786.profil .lede { margin-bottom: 22px; }787.profil .notice { padding: 60px 0; }788789/* Carte de membre — encre + cerise */790.pc {791 position: relative; overflow: hidden; max-width: 460px;792 background: var(--ink); color: var(--paper);793 border: 1.5px solid var(--ink); border-radius: var(--r-card);794 box-shadow: var(--shadow-off-soft); padding: 22px 26px 0;795}796.pc-watermark {797 position: absolute; right: -18px; bottom: 14px; font-family: var(--font-display);798 font-weight: 700; font-size: 150px; line-height: 1; letter-spacing: -0.06em;799 color: rgba(245, 243, 238, 0.05); pointer-events: none; user-select: none;800}801.pc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }802.pc-brand { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.03em; }803.pc-ka { display: inline-block; background: var(--accent); color: var(--on-accent); border-radius: 6px; padding: 0 7px 2px; margin-left: 3px; transform: rotate(-2deg); }804.pc-label { font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(245, 243, 238, 0.5); }805.pc-id-block { margin: 26px 0 22px; display: flex; flex-direction: column; gap: 4px; }806.pc-id-label { font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); }807.pc-id { font-family: var(--font-mono); font-weight: 700; font-size: clamp(17px, 4.4vw, 22px); letter-spacing: 0.04em; word-break: break-all; }808.pc-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; padding-bottom: 18px; }809.pc-holder { display: flex; flex-direction: column; gap: 3px; min-width: 0; }810.pc-holder-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }811.pc-role-badge { align-self: flex-start; font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; background: var(--accent); color: var(--on-accent); border-radius: 999px; padding: 2px 9px; }812.pc-holder-since { font-family: var(--font-mono); font-size: 10.5px; color: rgba(245, 243, 238, 0.5); letter-spacing: 0.06em; }813.pc-avatar { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--accent); flex: none; object-fit: cover; }814.pc-strip { display: flex; align-items: flex-end; gap: 5px; margin: 0 -26px; padding: 9px 18px; background: rgba(30, 79, 216, 0.14); border-top: 1px solid rgba(30, 79, 216, 0.4); overflow: hidden; }815.pc-strip i { display: block; width: 3px; border-radius: 1px; background: var(--accent); opacity: 0.75; }816.pc-strip i:nth-child(3n) { height: 14px; opacity: 0.4; }817.pc-strip i:nth-child(3n+1) { height: 9px; }818.pc-strip i:nth-child(3n+2) { height: 17px; opacity: 0.95; }819.pc-copy { margin-top: 16px; }820.pc-copy.ok { background: var(--ink); color: var(--accent); }821822.profil-grid {823 display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));824 gap: 12px; margin-top: 28px; max-width: 720px;825}826.pg-item { background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--r-ctl); padding: 12px 14px; display: flex; flex-direction: column; gap: 4px; min-width: 0; }827.pg-label { font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); }828.pg-value { font-weight: 600; font-size: 14.5px; word-break: break-word; }829.pg-value.mono { font-family: var(--font-mono); color: var(--accent-deep); }830.profil-note { max-width: 640px; color: var(--ink-2); font-size: 13.5px; margin-top: 22px; }831.profil-note a { text-decoration: underline; text-underline-offset: 3px; }832.profil-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }833834/* Profil hub Groupe KA (lecture seule) */835.hub-profile { margin-top: 34px; padding-top: 24px; border-top: 1.5px solid var(--line-strong); max-width: 720px; display: flex; flex-direction: column; gap: 14px; }836.hub-profile h3 { font-size: 18px; }837.hub-profile .hub-bio { color: var(--ink-2); font-size: 14px; margin: 0; max-width: 560px; }838.hub-profile .pub-meta { display: flex; gap: 8px; flex-wrap: wrap; }839.hub-profile .stat-chip { display: inline-flex; align-items: center; gap: 6px; }840.hub-profile a.stat-chip:hover { background: var(--accent-soft); }841.hub-hint { color: var(--ink-3); font-size: 12.5px; margin: 0; }842843/* ================= Pages légales ================= */844.legal { padding: 48px 0 80px; max-width: 780px; }845.legal h1 { font-size: clamp(28px, 4.6vw, 44px); margin: 8px 0 6px; }846.legal .legal-meta { color: var(--ink-3); font-family: var(--font-mono); font-size: 12px; margin: 0 0 26px; }847.legal h2 { font-size: 20px; margin: 30px 0 8px; border-left: 4px solid var(--accent); padding-left: 10px; }848.legal p, .legal li { color: var(--ink-2); font-size: 14.5px; }849.legal ul { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }850.legal a { text-decoration: underline; text-underline-offset: 3px; }851.legal b { color: var(--ink); }852853/* ================= Page Contact (écosystème Groupe KA) ================= */854.contact { padding: 48px 0 90px; }855.contact h1 { font-size: clamp(30px, 5vw, 52px); margin: 12px 0 14px; text-transform: uppercase; letter-spacing: -0.03em; }856.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; margin: 28px 0 6px; max-width: 900px; }857.contact-card {858 display: flex; flex-direction: column; gap: 8px; min-height: var(--touch, 44px);859 background: var(--surface); border: 1.5px solid var(--ink);860 border-radius: var(--r-card); padding: 18px 20px;861 box-shadow: var(--shadow-off-soft);862 transition: transform 0.15s ease, box-shadow 0.15s ease;863}864.contact-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-off); }865.contact-role { font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); }866.contact-mail { font-family: var(--font-display); font-weight: 700; font-size: clamp(14px, 2vw, 17px); word-break: break-all; border-bottom: 2px solid var(--accent); align-self: flex-start; }867.contact-disclaimer { max-width: 720px; margin: 24px 0 0; padding: 14px 16px; border-left: 3px solid var(--accent); background: var(--accent-soft); color: var(--ink-2); font-size: 13.5px; }868.contact-disclaimer b { color: var(--ink); }869.contact-hub { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }870.contact-sites { margin-top: 46px; }871.contact-sites h2 { font-size: 21px; text-transform: uppercase; margin-bottom: 14px; }872.contact-sites ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px; }873.contact-sites a { display: flex; flex-direction: column; gap: 3px; min-height: var(--touch, 44px); background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--r-ctl); padding: 12px 14px; transition: transform 0.14s ease, box-shadow 0.14s ease; }874.contact-sites a:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }875.contact-sites b { font-family: var(--font-display); font-size: 15px; }876.contact-sites span { font-size: 12px; color: var(--ink-3); }877@media (max-width: 480px) {878 .header-inner { gap: 10px; }879 .ka-login { font-size: 12px; padding: 6px 10px; gap: 4px; min-height: 44px; }880}881882/* Bulle KA Agent : sur mobile, remontée au-dessus de la barre CTA collante des883 fiches (sinon elle chevauche le bouton « Voir chez … »). */884@media (max-width: 899px) {885 .kaa-btn {886 bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;887 }888}889890/* Footer commun KA : zones tactiles ≥ 44 px pour les petits liens (Ka2, Ka4…)891 — padding compensé par une marge négative : aucun changement visuel. */892.ka-footer .sites a, .ka-footer .legal a, .ka-footer .contacts a {893 display: inline-block; padding: 12px 8px; margin: -12px -8px;894}895896/* ================= Qualité des annonces / images ================= */897/* Image de secours par TYPE DE BIEN (jamais d'icône d'image cassée) */898.type-fallback {899 display: flex; flex-direction: column; align-items: center; justify-content: center;900 gap: 9px; width: 100%; height: 100%; min-height: 120px;901 background:902 radial-gradient(circle at 78% 18%, rgba(30, 79, 216, 0.14), transparent 52%),903 repeating-linear-gradient(45deg, #f3ece9 0 14px, #f7f1ef 14px 28px);904 color: var(--accent-deep);905}906.type-fallback .ico { opacity: 0.75; }907.type-fallback span {908 font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;909 text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3);910}911.carousel-empty .type-fallback { aspect-ratio: 16/11; }912913/* légende de photo (étiquette de pièce de la source) */914.carousel-caption {915 position: absolute; left: 12px; bottom: 12px; z-index: 2; max-width: 60%;916 background: rgba(26, 18, 20, 0.82); color: #f5f3ee;917 font-family: var(--font-mono); font-size: 11px; font-weight: 600;918 padding: 4px 10px; border-radius: 999px;919 overflow: hidden; text-overflow: ellipsis; white-space: nowrap;920}921922/* mention loyer mensuel (transaction = location) */923.per-month { font-size: 0.55em; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }924925/* lightbox : l'image zoomable ne doit pas déclencher le scroll de la page */926.lightbox img { user-select: none; -webkit-user-drag: none; }927928/* ---- Stats : qualité des données ---- */929.q-table-wrap { overflow-x: auto; }930.q-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 520px; }931.q-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); }932.q-table td { padding: 6px 10px; border-bottom: 1px solid var(--line); }933.q-table .num { text-align: right; font-family: var(--font-mono); }934.q-meter { display: inline-block; width: 74px; height: 9px; background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden; vertical-align: -1px; margin-right: 7px; }935.q-meter i { display: block; height: 100%; background: var(--green); }936937938/* ---- Criminalité détaillée SPVM (bloc quartier) ---- */939.q-crime { width: 100%; }940.q-crime-cats { list-style: none; margin: 8px 0 0; padding: 0; }941.q-crime-cats li { display: flex; align-items: center; gap: 8px;942 padding: 3px 0; font-size: 12.5px; }943.q-crime-nom { flex: 0 0 46%; color: var(--ink-2, #555); overflow: hidden;944 text-overflow: ellipsis; white-space: nowrap; }945.q-crime-barre { flex: 1 1 auto; height: 10px; background: var(--surface-2, #f0ede8);946 border-radius: 5px; overflow: hidden; }947.q-crime-barre i { display: block; height: 100%; border-radius: 5px;948 background: var(--accent, #1e4fd8); opacity: 0.55; }949.q-crime-n { flex: 0 0 52px; text-align: right; font-weight: 600;950 color: var(--ink, #222); white-space: nowrap; }951.q-crime-n small { font-weight: 400; color: var(--ink-3, #888); }952.q-crime-src { margin-top: 8px; }953954955/* ---- Risque d'inondation (fiche) — BDZI gouv. du Québec ---- */956.f-zi .zi-head { display: flex; align-items: center; gap: 10px; }957.zi-badge { display: inline-block; padding: 3px 10px; border-radius: 999px;958 font-size: 12.5px; font-weight: 700; }959.zi-eleve { background: #fde8e8; color: #a12622; }960.zi-modere { background: #fdf3e0; color: #8a5a00; }961.zi-present { background: #fdf3e0; color: #8a5a00; }962.zi-ok { background: #e7f4ea; color: #1e6b34; }963.zi-nc { background: var(--surface-2, #f0ede8); color: var(--ink-3, #888); }964.zi-liste { margin: 8px 0 0; padding: 0; list-style: none; font-size: 13px; }965.zi-liste li { padding: 4px 0; border-top: 1px solid var(--line, #e6e4df); }966967968/* ---- tuiles KPI + tableau compacts (partagés air/essence) ---- */969.rdl-kpis { display: flex; flex-wrap: wrap; gap: 10px; margin: 2px 0 12px; }970.rdl-kpi { flex: 1 1 90px; min-width: 90px; background: var(--surface-2, #f7f5f1);971 border-radius: 10px; padding: 10px 12px; }972.rdl-kpi-v { display: block; font-size: 20px; font-weight: 700;973 letter-spacing: -0.02em; color: var(--ink, #222); }974.rdl-kpi-l { display: block; font-size: 11px; line-height: 1.35;975 color: var(--ink-3, #888); margin-top: 2px; }976.rdl-table { width: 100%; border-collapse: collapse; font-size: 13px; }977.rdl-table td { padding: 5px 8px 5px 0; border-top: 1px solid var(--line, #e6e4df);978 vertical-align: top; }979.rdl-table .rdl-addr { max-width: 46%; }980.rdl-table .rdl-prix { font-weight: 600; white-space: nowrap; }981.rdl-table .rdl-date { white-space: nowrap; color: var(--ink-2, #555); }982.rdl-table .rdl-dist { color: var(--ink-3, #888); white-space: nowrap; text-align: right; }983.rdl-cap { caption-side: top; text-align: left; font-size: 13px; font-weight: 700;984 color: var(--ink, #222); padding: 6px 0; }985986/* ---- Qualité de l'air (RSQAQ) + Essence à proximité ---- */987.air-liste { list-style: none; margin: 10px 0 0; padding: 0; }988.air-liste li { display: flex; align-items: center; gap: 8px;989 padding: 4px 0; font-size: 12.5px; }990.air-nom { flex: 0 0 44%; color: var(--ink-2); overflow: hidden;991 text-overflow: ellipsis; white-space: nowrap; }992.air-barre { flex: 1 1 auto; height: 10px; background: var(--surface-2, #f0ede8);993 border-radius: 5px; overflow: hidden; }994.air-barre i { display: block; height: 100%; border-radius: 5px;995 background: #4d9e64; }996.air-barre i.air-sur { background: #c96a1f; }997.air-val { flex: 0 0 34%; text-align: right; font-weight: 600;998 color: var(--ink); white-space: nowrap; overflow: hidden;999 text-overflow: ellipsis; }1000.air-val small { font-weight: 400; color: var(--ink-3); }1001.air-val .air-ref { display: block; font-size: 10px; }1002.gaz-head th { text-align: left; font-size: 11px; color: var(--ink-3);1003 font-weight: 600; padding: 2px 8px 2px 0; }1004.gaz-best { display: inline-block; margin-left: 6px; padding: 1px 7px;1005 border-radius: 999px; background: #e7f4ea; color: #1e6b34;1006 font-size: 10.5px; font-weight: 700; }1007.gaz-adr { display: block; font-size: 11px; color: var(--ink-3); }100810091010/* ---- Commerces et transport (fiche) ---- */1011.cm-grille { list-style: none; margin: 6px 0 0; padding: 0;1012 display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px; }1013@media (max-width: 560px) { .cm-grille { grid-template-columns: 1fr; } }1014.cm-item { display: flex; align-items: center; gap: 9px; padding: 5px 0;1015 border-bottom: 1px solid var(--line, #eeece7); min-width: 0; }1016.cm-ico { flex: 0 0 28px; }1017.cm-txt { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }1018.cm-nom { font-size: 13px; font-weight: 600; color: var(--ink, #222);1019 white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }1020.cm-poi { font-size: 11px; color: var(--ink-3, #8a877f);1021 white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }1022.cm-dist { flex: 0 0 auto; font-size: 13px; font-weight: 700;1023 color: var(--ink-2, #4c4a45); white-space: nowrap; }102410251026/* ---- Coût d'électricité (Hydro-Québec) ---- */1027.hydro-intro { margin: 2px 0 12px; color: var(--ink-2, #4c4a45); }1028.hydro-btn { appearance: none; border: 0; border-radius: 10px; cursor: pointer;1029 background: var(--accent, #2b7a3b); color: #fff; font-weight: 700;1030 font-size: 14px; padding: 11px 18px; }1031.hydro-btn:disabled { opacity: 0.6; cursor: progress; }1032.hydro-montant { font-size: 26px; font-weight: 800; letter-spacing: -0.02em;1033 color: var(--navy, #1c1b18); display: flex; align-items: baseline;1034 gap: 10px; flex-wrap: wrap; }1035.hydro-montant small { font-size: 14px; font-weight: 500; color: var(--ink-3); }1036.hydro-an { font-size: 14px; font-weight: 600; color: var(--ink-2, #4c4a45); }1037.hydro-vide { color: var(--ink-3, #8a877f); }103810391040/* ============================================================================1041 PASSE DE DESIGN — « éditorial sharp » appliqué à toute la fiche1042 Blocs = cartes encre (bordure 1,5 px + ombre décalée douce), titres à1043 marqueur accent + filet, tuiles KPI blanches à ombre dure, tableaux zébrés,1044 barres en dégradé, pastilles unifiées (mono, point d'état, liseré).1045 Aucune propriété `order` (règle Groupe Ka : ordre DOM = ordre visuel).1046 ========================================================================== */10471048/* --- Blocs de la fiche : cartes posées sur le papier --- */1049.f-bloc:not(.f-galerie):not(.f-hero),1050.quartier {1051 background: var(--surface);1052 border: 1.5px solid var(--ink);1053 border-radius: var(--r-card);1054 padding: 18px 20px 16px;1055 box-shadow: var(--shadow-off-soft);1056}1057@media (max-width: 640px) {1058 .f-bloc:not(.f-galerie):not(.f-hero),1059 .quartier { padding: 15px 15px 13px; }1060}1061/* blocs pleine largeur sous la grille : respiration entre les cartes */1062.detail > .f-bloc { margin-top: 22px; }10631064/* --- Titres de section : carré accent + filet éditorial --- */1065.f-bloc h2, .quartier h2 {1066 display: flex; align-items: center; gap: 10px;1067 font-size: 19px; letter-spacing: -0.015em; margin-bottom: 14px;1068 border-left: 0; padding-left: 0;1069}1070.f-bloc h2::before, .quartier h2::before {1071 content: ""; flex: 0 0 9px; width: 9px; height: 9px;1072 background: var(--accent); border: 1.5px solid var(--ink);1073 box-shadow: 2px 2px 0 var(--ink);1074}1075.f-bloc h2::after, .quartier h2::after {1076 content: ""; flex: 1 1 auto; height: 1.5px; min-width: 20px;1077 background: var(--line);1078}10791080/* --- Tuiles KPI : blanches, bord encre, ombre dure accent --- */1081.rdl-kpi {1082 background: var(--surface);1083 border: 1.5px solid var(--ink);1084 border-radius: var(--r-ctl);1085 box-shadow: 3px 3px 0 var(--accent-soft);1086}1087.rdl-kpi-v { font-family: var(--font-display); }1088.q-cell { box-shadow: 3px 3px 0 rgba(20, 24, 20, 0.1); border-radius: var(--r-ctl); }1089.q-val { font-size: 20px; }10901091/* --- Tableaux : en-têtes mono, zébrure, survol accent --- */1092.rdl-table td { padding: 7px 8px 7px 0; }1093.rdl-table tbody tr:nth-child(even) td,1094.rdl-table > tr:nth-child(even) td { background: var(--surface-2); }1095.rdl-table tr:hover td { background: var(--accent-soft); }1096.gaz-head th {1097 font-family: var(--font-mono); font-size: 10px; font-weight: 700;1098 text-transform: uppercase; letter-spacing: 0.08em;1099 border-bottom: 1.5px solid var(--ink);1100}1101.rdl-cap { font-family: var(--font-display); }1102table.rooms tbody tr:hover td { background: var(--accent-soft); }11031104/* --- Barres : pistes bordées + remplissage en dégradé --- */1105.q-bar-track, .q-crime-barre, .air-barre {1106 background: var(--surface-2);1107 border: 1px solid var(--line);1108 height: 12px;1109}1110.q-bar-fill {1111 background: linear-gradient(90deg, var(--accent), var(--accent-deep));1112}1113.q-crime-barre i {1114 background: linear-gradient(90deg, #f0808a, var(--accent));1115 opacity: 0.9;1116}1117.air-barre i { background: linear-gradient(90deg, #6fbc85, #2e7d4a); }1118.air-barre i.air-sur { background: linear-gradient(90deg, #e08a48, #c96a1f); }11191120/* --- Pastilles d'état unifiées (zi-badge & cie) : mono + point d'état --- */1121.zi-badge {1122 display: inline-flex; align-items: center; gap: 6px;1123 font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;1124 text-transform: uppercase; letter-spacing: 0.06em;1125 padding: 4px 10px; border: 1.5px solid currentColor;1126}1127.zi-badge::before {1128 content: ""; width: 6px; height: 6px; border-radius: 50%;1129 background: currentColor;1130}1131.gaz-best { border: 1px solid currentColor; }11321133/* --- Listes riches (zones d'inondation) : mini-cartes à liseré accent --- */1134.zi-liste { display: flex; flex-direction: column; gap: 8px; }1135.zi-liste li {1136 border: 1px solid var(--line); border-left: 3px solid var(--accent);1137 border-top: 1px solid var(--line);1138 border-radius: var(--r-ctl); padding: 9px 12px;1139 background: var(--surface-2);1140}11411142/* --- Inclusions : icône et libellé alignés sur une seule ligne --- */1143.amenity { display: inline-flex; align-items: center; gap: 6px; }11441145/* --- Notes de bas de bloc : filet pointillé --- */1146.f-bloc .fine, .quartier .fine {1147 margin-top: 12px; padding-top: 9px;1148 border-top: 1px dashed var(--line);1149}11501151/* --- CTA secondaire : téléchargement de la fiche PDF --- */1152.cta-pdf {1153 background: var(--surface); color: var(--ink);1154 box-shadow: 4px 4px 0 rgba(26, 18, 20, 0.12);1155 margin-top: 10px;1156}1157.cta-pdf:hover { background: var(--accent-soft); color: var(--accent-deep); }11581159/* ================= Financement (fiche) + page Taux hypothécaires ========= */1160.f-mtg .mtg-intro { color: var(--ink-2); font-size: 14px; margin: 4px 0 14px; }1161.f-mtg .mtg-intro a { color: var(--lime); font-weight: 600; }11621163.mtg-form {1164 display: grid; gap: 10px;1165 grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));1166}1167.mtg-form label { display: flex; flex-direction: column; gap: 3px; min-width: 0; }1168.mtg-form label > span {1169 font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;1170 text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3);1171}1172.mtg-form input, .mtg-form select {1173 border: 1.5px solid var(--ink); border-radius: 9px; background: var(--surface);1174 padding: 9px 10px; font-size: 14.5px; font-family: inherit; color: var(--ink);1175 min-height: 42px; min-width: 0;1176}1177.mtg-form input:focus, .mtg-form select:focus {1178 outline: none; box-shadow: 3px 3px 0 var(--lime);1179}11801181.mtg-err { color: var(--accent-deep); font-size: 13.5px; margin: 12px 0 0; }11821183.mtg-resultat {1184 display: grid; gap: 10px; margin-top: 16px;1185 grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));1186}1187.mtg-kpi {1188 border: 1.5px solid var(--line-strong); border-radius: var(--r-card);1189 background: var(--surface-2); padding: 12px 14px;1190 display: flex; flex-direction: column; gap: 2px; min-width: 0;1191}1192.mtg-kpi-k {1193 font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;1194 text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3);1195}1196.mtg-kpi-v {1197 font-family: var(--font-display); font-weight: 700; font-size: 22px;1198 letter-spacing: -0.02em;1199}1200.mtg-kpi-sub { font-size: 12px; color: var(--ink-3); }1201.mtg-kpi:first-child { background: var(--ink); border-color: var(--ink); }1202.mtg-kpi:first-child .mtg-kpi-v { color: var(--lime); }1203.mtg-kpi:first-child .mtg-kpi-k, .mtg-kpi:first-child .mtg-kpi-sub { color: rgba(255,255,255,0.75); }12041205.mtg-source { margin-top: 10px; }12061207.mtg-schl {1208 margin-top: 14px; border: 1.5px dashed var(--line-strong);1209 border-radius: var(--r-card); padding: 12px 14px; font-size: 13.5px;1210 background: var(--surface);1211}1212.mtg-schl ul { margin: 8px 0 0; padding-left: 18px; display: grid; gap: 3px; }1213.mtg-schl-no { border-color: var(--accent-deep); }1214.mtg-issue { margin: 8px 0 0; color: var(--accent-deep); font-size: 13px; }12151216.mtg-detail {1217 margin-top: 10px; border: 1.5px solid var(--line-strong);1218 border-radius: var(--r-card); background: var(--surface);1219}1220.mtg-detail > summary {1221 cursor: pointer; padding: 11px 14px; font-weight: 700; font-size: 14px;1222 list-style: none; display: flex; align-items: center; gap: 8px;1223}1224.mtg-detail > summary::before { content: "+"; font-family: var(--font-mono); color: var(--lime); font-weight: 700; }1225.mtg-detail[open] > summary::before { content: "−"; }1226.mtg-detail > summary::-webkit-details-marker { display: none; }1227.mtg-detail > *:not(summary) { margin: 0 14px 12px; }1228.mtg-detail .fine { border-top: none; padding-top: 0; }1229.mtg-total { border-top: 2px solid var(--ink); }1230.mtg-comp td, .mtg-comp th { white-space: nowrap; }1231.mtg-stale { color: var(--accent-deep); }12321233.mtg-chart svg { width: 100%; height: auto; display: block; }1234.mtg-grid { stroke: var(--line); stroke-width: 1; }1235.mtg-tick { font-family: var(--font-mono); font-size: 10px; fill: var(--ink-3); }1236.mtg-line { fill: none; stroke: var(--lime); stroke-width: 2.5; stroke-linejoin: round; }1237.mtg-dot { fill: var(--ink); stroke: var(--lime); stroke-width: 2.5; }12381239/* ---- page /taux-hypothecaires ---- */1240.taux-page { padding-bottom: 40px; }1241.taux-head { margin: 28px 0 6px; max-width: 760px; }1242.taux-head h1 { font-family: var(--font-display); font-size: clamp(28px, 5vw, 40px); letter-spacing: -0.03em; }1243.taux-head p { color: var(--ink-2); font-size: 15px; margin: 12px 0 0; }1244.taux-page > .f-bloc { margin-top: 22px; }12451246.taux-grid {1247 display: grid; gap: 10px;1248 grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));1249}1250.taux-card {1251 border: 1.5px solid var(--ink); border-radius: var(--r-card);1252 background: var(--surface); padding: 12px 14px; text-align: left;1253 cursor: pointer; display: flex; flex-direction: column; gap: 2px;1254 transition: box-shadow 0.15s ease; font-family: inherit; min-width: 0;1255}1256.taux-card:hover { box-shadow: 3px 3px 0 var(--lime); }1257.taux-card.on { background: var(--ink); color: var(--paper); }1258.taux-card.on .taux-card-v { color: var(--lime); }1259.taux-card-k {1260 font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;1261 text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3);1262}1263.taux-card.on .taux-card-k, .taux-card.on .taux-card-sub { color: rgba(255,255,255,0.7); }1264.taux-card-v { font-family: var(--font-display); font-weight: 700; font-size: 24px; }1265.taux-card-sub { font-size: 11.5px; color: var(--ink-3); }12661267.taux-filtres { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }1268.taux-filtres label { display: flex; flex-direction: column; gap: 3px; }1269.taux-filtres label > span {1270 font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;1271 text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3);1272}1273.taux-filtres select {1274 border: 1.5px solid var(--ink); border-radius: 9px; background: var(--surface);1275 padding: 9px 12px; font-size: 14.5px; font-family: inherit; min-height: 42px;1276}1277.taux-best td { background: var(--lime-soft); }1278.taux-badge {1279 font-family: var(--font-mono); font-size: 9px; font-weight: 700;1280 text-transform: uppercase; letter-spacing: 0.1em; background: #ffffff;1281 color: var(--accent); border: 1.5px solid var(--accent); border-radius: 999px; padding: 2px 8px; margin-left: 8px;1282}1283.taux-sante { display: flex; flex-wrap: wrap; gap: 8px; }1284.taux-src {1285 border: 1.5px solid var(--line-strong); border-radius: 999px;1286 padding: 6px 12px; font-size: 12.5px; font-weight: 600;1287 display: inline-flex; align-items: center; gap: 7px;1288}1289.taux-src::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }1290.taux-src-ok::before { background: var(--green, #2f9e44); }1291.taux-src-warning::before { background: #e8a000; }1292.taux-src-error::before { background: var(--accent-deep); }12931294/* =============================================================================1295 REFONTE ÉDITORIALE v2 (2026-08-25) — accueil « produit premium »1296 Personnalité Immo-Ka : architecturale et financière — composition1297 typographique majuscule plein/outline décalée, colonne de données mono1298 façon terminal, cerise en couleur de SIGNAL (jamais en aplat décoratif).1299 Primitives locales : rayons 0/6/10/18, durées 150/240/350 ms.1300 Couche posée en FIN de fichier : elle a le dernier mot sur la cascade.1301============================================================================= */1302:root {1303 --r-0: 0px; --r-1: 6px; --r-2: 10px; --r-3: 18px;1304 --dur-1: 150ms; --dur-2: 240ms; --dur-3: 350ms;1305 --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);1306 --hairline: rgba(20, 24, 20, 0.14);1307 --hairline-strong: rgba(20, 24, 20, 0.6);1308}13091310/* ---- Héro : composition typographique + colonne de données ---- */1311.hero-wrap { display: grid; grid-template-columns: 1fr auto; gap: 24px 56px; align-items: end; }1312.hero h1.hero-display {1313 display: flex; flex-direction: column;1314 font-size: clamp(40px, 6.8vw, 92px); line-height: 0.96;1315 text-transform: uppercase; letter-spacing: -0.04em;1316 max-width: none; margin-top: 16px;1317}1318.hero-display .hd-l1, .hero-display .hd-l2,1319.hero-display .hd-l3, .hero-display .hd-l4 { display: block; }1320.hero-display .hd-l2 { color: transparent; -webkit-text-stroke: 2.5px var(--ink); }1321.hero-display .hd-l3 { margin-left: clamp(24px, 6vw, 110px); }1322.hero-display .hd-l4 {1323 font-size: 0.5em; letter-spacing: -0.02em; margin-top: 0.35em;1324 margin-left: clamp(2px, 1vw, 8px);1325}1326.hero-display .signal {1327 font-style: normal; color: var(--lime); position: relative;1328 border-bottom: 4px solid var(--lime); padding-bottom: 1px;1329}1330.hero p.lede { font-size: 16px; max-width: 560px; }1331.hero::before { opacity: 0.7; }1332.hero::after { opacity: 0.5; }13331334/* colonne « terminal » : les chiffres du marché comme élément graphique */1335.hero-data {1336 display: flex; flex-direction: column; gap: 18px;1337 border-left: 1px solid var(--hairline-strong); padding-left: 28px;1338 min-width: 190px;1339}1340.hd-row b {1341 display: block; font-family: var(--font-display); font-weight: 700;1342 font-size: clamp(20px, 2vw, 27px); letter-spacing: -0.03em; color: var(--ink);1343 font-variant-numeric: tabular-nums; line-height: 1.1;1344}1345.hd-row span {1346 font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;1347 text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-3);1348}1349@media (max-width: 900px) {1350 .hero-wrap { grid-template-columns: 1fr; align-items: start; }1351 .hero-data {1352 flex-direction: row; flex-wrap: wrap; gap: 16px 28px;1353 border-left: 0; border-top: 1px solid var(--hairline);1354 padding: 16px 0 0; min-width: 0; margin-top: 6px;1355 }1356}13571358/* ---- Ligne de données vivantes (mono + filets) ---- */1359.live-line {1360 display: flex; flex-wrap: wrap; align-items: baseline;1361 margin-top: 30px; font-family: var(--font-mono); font-size: 12px;1362 color: var(--ink-2); letter-spacing: 0.02em; row-gap: 10px;1363}1364.live-flag {1365 display: inline-flex; align-items: center; gap: 7px;1366 font-weight: 700; font-size: 10.5px; letter-spacing: 0.18em;1367 text-transform: uppercase; color: var(--accent-deep);1368 padding-right: 14px; margin-right: 14px; border-right: 1px solid var(--hairline-strong);1369}1370.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: pulse 2.4s ease infinite; }1371.live-item { padding-right: 14px; margin-right: 14px; border-right: 1px solid var(--hairline); }1372.live-item:last-child { border-right: 0; padding-right: 0; margin-right: 0; }1373.live-item b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }1374@media (max-width: 640px) {1375 .live-line { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;1376 white-space: nowrap; margin-right: -16px; padding-right: 16px; }1377 .live-line::-webkit-scrollbar { display: none; }1378}13791380/* ---- Recherche au cœur : grand champ souligné + critères en filets ---- */1381.search-zone { margin: 42px 0 0; }1382.q-big {1383 display: flex; align-items: center; gap: 14px;1384 border: 0; border-bottom: 2px solid var(--ink); border-radius: 0;1385 background: transparent; padding: 4px 2px 14px; color: var(--ink-3);1386 transition: border-color var(--dur-2) var(--ease-out), color var(--dur-2) ease;1387}1388.q-big:focus-within { border-color: var(--lime); color: var(--accent-deep); }1389.q-big svg { flex: none; }1390.q-big input {1391 flex: 1; min-width: 0; border: 0; background: none; outline: none; padding: 0;1392 font-family: var(--font-display); font-weight: 600;1393 font-size: clamp(19px, 2.8vw, 28px); letter-spacing: -0.02em; color: var(--ink);1394}1395.q-big input::placeholder { color: var(--ink-3); font-weight: 500; }1396.crit-line { display: flex; align-items: stretch; flex-wrap: wrap; }1397.crit {1398 display: flex; flex-direction: column; justify-content: center; gap: 1px;1399 padding: 12px 26px 12px 0; margin-right: 26px;1400 border-right: 1px solid var(--hairline); min-width: 0; cursor: pointer;1401}1402.crit > span {1403 font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;1404 text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-3);1405}1406.crit select {1407 border: 0; background: transparent; outline: none; cursor: pointer;1408 font-family: var(--font-display); font-weight: 700; font-size: 15.5px;1409 color: var(--ink); appearance: none; -webkit-appearance: none;1410 padding: 2px 18px 2px 0; min-width: 0; max-width: 190px; text-overflow: ellipsis;1411 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5'%3E%3Cpath d='M0 0l4.5 5L9 0z' fill='%238b928c'/%3E%3C/svg%3E");1412 background-repeat: no-repeat; background-position: right center;1413}1414.crit:hover select { color: var(--accent-deep); }1415.crit .range-pair select { max-width: 92px; }1416.crit-more {1417 display: inline-flex; align-items: center; gap: 9px; align-self: center;1418 border: 0; background: none; padding: 12px 0; cursor: pointer;1419 font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink);1420 transition: color var(--dur-1) ease;1421}1422.crit-more:hover, .crit-more.on { color: var(--accent-deep); }1423.crit-badge, .rb-badge {1424 display: inline-grid; place-items: center; min-width: 19px; height: 19px; padding: 0 5px;1425 border-radius: 999px; background: var(--lime); color: #fff;1426 font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums;1427}1428.search-zone .f-adv { border-top: 1px solid var(--hairline); margin-top: 2px; padding-top: 18px; }1429.search-zone .seg button {1430 border: 1px solid var(--hairline-strong); background: transparent; color: var(--ink-2);1431 min-height: 38px; font-weight: 600; margin-left: -1px;1432}1433.search-zone .seg button:first-child { border-radius: var(--r-1) 0 0 var(--r-1); }1434.search-zone .seg button:last-child { border-radius: 0 var(--r-1) var(--r-1) 0; }1435.search-zone .seg button:hover { background: var(--lime-soft); color: var(--accent-deep); }1436.search-zone .seg button.on { background: #ffffff; border-color: var(--accent); color: var(--accent); box-shadow: none; }1437.search-zone .f-native { border: 1px solid var(--hairline-strong); background: transparent; }14381439/* résumé mobile des critères — remplace le FAB (voir media 640 plus bas) */1440.crit-summary { display: none; }14411442/* ---- Barre de résultats sticky : N propriétés · tri · Liste|Carte ---- */1443.results-bar {1444 position: sticky; top: 64px; z-index: var(--z-sticky, 300);1445 display: flex; align-items: center; gap: 16px;1446 margin: 30px 0 22px; padding: 12px 0 11px;1447 border-bottom: 1px solid var(--hairline-strong);1448 background: color-mix(in srgb, var(--paper) 86%, transparent);1449 backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);1450}1451@supports not (background: color-mix(in srgb, red 50%, blue)) {1452 .results-bar { background: rgba(245, 243, 238, 0.92); }1453}1454.rb-count { margin: 0; font-size: clamp(16px, 2vw, 20px); letter-spacing: -0.02em; color: var(--ink); text-transform: none; }1455.rb-count b { font-variant-numeric: tabular-nums; }1456.rb-tools { margin-left: auto; display: flex; align-items: center; gap: 20px; }1457.rb-sort select {1458 border: 0; background: transparent; outline: none; cursor: pointer;1459 font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;1460 text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-2);1461 appearance: none; -webkit-appearance: none; padding: 8px 16px 8px 0;1462 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5'%3E%3Cpath d='M0 0l4.5 5L9 0z' fill='%238b928c'/%3E%3C/svg%3E");1463 background-repeat: no-repeat; background-position: right center;1464}1465.rb-sort select:hover { color: var(--ink); }1466.rb-tabs { display: flex; gap: 18px; }1467.rb-tab {1468 position: relative; display: inline-flex; align-items: center; gap: 6px;1469 border: 0; background: none; padding: 8px 0; cursor: pointer;1470 font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--ink-3);1471 transition: color var(--dur-1) ease;1472}1473.rb-tab:hover, .rb-tab.on { color: var(--ink); }1474.rb-tab::after {1475 content: ""; position: absolute; left: 0; right: 0; bottom: -12px; height: 2.5px;1476 background: var(--lime); transform: scaleX(0); transform-origin: left;1477 transition: transform var(--dur-2) var(--ease-out);1478}1479.rb-tab.on::after { transform: scaleX(1); }1480.rb-filters {1481 display: inline-flex; align-items: center; gap: 7px;1482 border: 0; background: none; padding: 8px 0; cursor: pointer;1483 font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--ink);1484}1485.rb-filters:hover { color: var(--accent-deep); }1486@media (min-width: 641px) { .rb-filters { display: none; } }14871488/* ---- Transition douce liste ↔ carte ---- */1489.view-pane { animation: pane-in var(--dur-2) var(--ease-out); }1490@keyframes pane-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }14911492/* ---- Chips rapides : plus légères ---- */1493.chip {1494 border: 1px solid var(--hairline-strong); background: transparent;1495 min-height: 38px; padding: 7px 15px; font-size: 12.5px; box-shadow: none;1496}1497.chip:hover { transform: none; box-shadow: none; background: var(--lime-soft); color: var(--accent-deep); }1498.chip.on { background: #ffffff; border-color: var(--accent); color: var(--accent); box-shadow: none; }1499.chips { margin: 20px 0 0; }15001501/* ---- Pastilles actives : discrètes, survol = retrait ---- */1502.pills { margin: 14px 0 0; }1503.pills .pill { border: 1px solid var(--hairline-strong); background: transparent; box-shadow: none; padding: 5px 12px; font-size: 12px; }1504.pills .pill:hover { background: var(--danger-soft); border-color: var(--danger); color: var(--danger); }15051506/* ---- Fiches éditoriales : l'image domine, plus de boîte ---- */1507.card, .card:hover { background: transparent; border: 0; border-radius: 0; box-shadow: none; transform: none; }1508.card-img { border-radius: var(--r-2); aspect-ratio: 4/3; }1509.card-img img { transition: transform var(--dur-3) var(--ease-out); }1510@media (hover: hover) {1511 .card:hover .card-img img { transform: scale(1.025); }1512 .card:hover .card-price { color: var(--accent-deep); }1513}1514.card:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; border-radius: var(--r-2); }1515.card-body { padding: 13px 2px 0; gap: 3px; }1516.card-price { font-size: 22px; letter-spacing: -0.03em; color: var(--ink); transition: color var(--dur-1) ease; }1517.card-title { font-size: 14px; font-weight: 500; color: var(--ink-2); }1518.card-meta { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); }1519.card-meta .sep { width: 3px; height: 3px; border: 0; border-radius: 50%; background: var(--lime); transform: none; }1520.card-specs { font-size: 11.5px; color: var(--ink-2); }1521.card-foot { border-top: 0; padding-top: 8px; }1522.source-tag { background: none; border: 0; border-radius: 0; padding: 0; color: var(--ink-3); font-size: 10px; letter-spacing: 0.08em; max-width: 62%; }1523.avail { font-size: 11px; color: var(--ink-3); }1524.badge { border: 0; border-radius: 4px; background: rgba(20, 24, 20, 0.78); color: var(--paper);1525 backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);1526 font-size: 9.5px; padding: 4px 9px; letter-spacing: 0.08em; }1527.badge.type { background: var(--lime); color: #fff; }1528.badge.right { background: rgba(20, 24, 20, 0.55); }1529/* la liste latérale de la vue carte garde ses fiches synchronisées lisibles */1530.map-card { border-radius: var(--r-2); }1531.map-card-sel { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: var(--r-2); }15321533/* ---- Grille à rythme éditorial (accueil) ---- */1534.grid.grid-edito { grid-template-columns: repeat(3, 1fr); gap: 36px 26px; align-items: start; }1535@media (max-width: 980px) {1536 .grid.grid-edito { grid-template-columns: 1fr 1fr; gap: 30px 20px; }1537}1538@media (max-width: 640px) {1539 .grid.grid-edito { grid-template-columns: 1fr; gap: 32px; }1540}1541@media (prefers-reduced-motion: no-preference) {1542 .grid-edito > * { animation: rise 0.5s var(--ease-out) backwards; }1543 .grid-edito > *:nth-child(3n+2) { animation-delay: 60ms; }1544 .grid-edito > *:nth-child(3n) { animation-delay: 120ms; }1545}1546@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }15471548/* ---- Squelettes sans boîte ---- */1549.skel { border: 0; border-radius: 0; background: transparent; }1550.skel .sk-img { aspect-ratio: 4/3; border-radius: var(--r-2); }1551.skel .sk-line { margin: 12px 2px; }15521553/* ---- Pagination éditoriale : chiffres nus, page courante soulignée ---- */1554.pager { border-top: 1px solid var(--hairline); padding-top: 16px; margin-top: 26px; }1555.pager-info { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); }1556.pager-btn {1557 min-width: 34px; min-height: 38px; height: auto; padding: 0 10px; border: 0; border-radius: var(--r-1);1558 background: none; color: var(--ink-2); box-shadow: none;1559 font-family: var(--font-display); font-size: 13.5px; font-weight: 600; position: relative;1560}1561.pager-btn:hover:not(:disabled):not(.on) { background: var(--lime-soft); color: var(--accent-deep); transform: none; box-shadow: none; }1562.pager-btn.on { background: none; border: 0; color: var(--ink); font-weight: 700; box-shadow: none; }1563.pager-btn.on::after { content: ""; position: absolute; left: 9px; right: 9px; bottom: 3px; height: 2.5px; background: var(--lime); }1564.pager-btn:disabled { box-shadow: none; }15651566/* ---- Mobile : recherche condensée + feuille de critères premium ---- */1567@media (max-width: 640px) {1568 .hero h1.hero-display { font-size: clamp(38px, 11vw, 52px); }1569 .results-bar { top: 64px; gap: 10px; flex-wrap: wrap; }1570 .rb-tools { gap: 14px; }1571 .search-zone { margin: 30px 0 0; }1572 .crit-line, .search-zone .f-adv, .search-zone .sheet-apply { display: none; }1573 .crit-summary {1574 display: flex; align-items: center; gap: 10px; width: 100%;1575 border: 0; border-bottom: 1px solid var(--hairline); background: none;1576 padding: 14px 2px; margin: 0; cursor: pointer; text-align: left;1577 font-family: var(--font-mono); font-size: 12px; color: var(--ink-2);1578 }1579 .crit-summary svg { flex: none; color: var(--ink); }1580 .crit-summary .cs-txt { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }1581 .crit-summary .f-chev { margin: 0 2px 0 0; }15821583 .search-zone.open {1584 display: flex; flex-direction: column; gap: 12px;1585 position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-modal, 900);1586 margin: 0; border-radius: var(--r-3) var(--r-3) 0 0; background: var(--surface);1587 border: 0;1588 max-height: 86dvh; overflow-y: auto; -webkit-overflow-scrolling: touch;1589 padding: 10px 18px calc(16px + env(safe-area-inset-bottom));1590 box-shadow: 0 -18px 50px rgba(20, 24, 20, 0.3);1591 animation: sheet-up 0.26s var(--ease-out);1592 }1593 .search-zone.open .sheet-handle {1594 display: block; flex: none; width: 40px; height: 4.5px;1595 border-radius: 999px; background: var(--line); margin: 0 auto;1596 }1597 .search-zone.open .sheet-head {1598 display: flex; justify-content: space-between; align-items: center;1599 font-family: var(--font-display); font-weight: 700; font-size: 17px;1600 letter-spacing: -0.01em; color: var(--ink); text-transform: none;1601 position: sticky; top: -10px; background: var(--surface); padding: 6px 0 8px;1602 border-bottom: 1px solid var(--hairline); z-index: 1;1603 }1604 .search-zone.open .crit-summary { display: none; }1605 .search-zone.open .q-big { padding: 2px 0 10px; }1606 .search-zone.open .q-big input { font-size: 17px; }1607 .search-zone.open .crit-line { display: flex; flex-direction: column; }1608 .search-zone.open .crit { border-right: 0; border-bottom: 1px solid var(--hairline); margin: 0; padding: 10px 0; }1609 .search-zone.open .crit select { max-width: none; width: 100%; font-size: 16px; }1610 .search-zone.open .crit .range-pair select { width: auto; flex: 1; }1611 .search-zone.open .crit-more { display: none; }1612 .search-zone.open .f-adv { display: grid; border-top: 0; padding-top: 4px; margin-top: 0; }1613 .search-zone.open .sheet-apply {1614 display: flex; position: sticky; bottom: 0; z-index: 1; width: 100%; min-height: 50px;1615 box-shadow: 0 -14px 18px -12px rgba(20, 24, 20, 0.35);1616 }1617}16181619/* ---- Navigation mobile flottante (pilule détachée du bord) ---- */1620.tabbar { display: none; }1621@media (max-width: 760px) {1622 .tabbar {1623 display: grid; grid-template-columns: repeat(4, 1fr);1624 position: fixed; left: 12px; right: 12px;1625 bottom: calc(10px + env(safe-area-inset-bottom));1626 z-index: var(--z-bottombar, 600);1627 border: 1px solid var(--hairline-strong); border-radius: var(--r-3);1628 background: rgba(250, 249, 245, 0.88);1629 backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);1630 box-shadow: 0 14px 34px rgba(20, 24, 20, 0.16);1631 padding: 6px;1632 }1633 .tabbar a {1634 display: flex; flex-direction: column; align-items: center; justify-content: center;1635 gap: 2px; padding: 5px 2px; min-height: 48px; border-radius: 12px;1636 font-family: var(--font-display); font-size: 10px; font-weight: 600;1637 color: var(--ink-3); text-decoration: none; transition: color var(--dur-1) ease;1638 }1639 .tabbar a svg { display: block; }1640 .tabbar a.active { color: var(--ink); }1641 .tabbar a.active::after { content: ""; width: 16px; height: 2.5px; border-radius: 2px; background: var(--lime); }1642 body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }1643 .ka-footer { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }16441645 /* widget KA Agent : dégagé de la tabbar (style injecté après le bundle →1646 spécificité doublée pour gagner) */1647 .kaa-btn.kaa-btn { bottom: calc(86px + env(safe-area-inset-bottom, 0px)); right: 14px; }1648 .kaa-panel.kaa-panel:not(.kaa-full) { bottom: calc(152px + env(safe-area-inset-bottom, 0px)); }1649}16501651/* ---- Header : jamais de débordement à droite ----1652 La nav (8 entrées) + connexion dépassaient le conteneur même à 1440px1653 (masqué par overflow-x: clip). Resserrage, badge Groupe KA masqué quand1654 l'espace manque, burger sous 1200px. ---- */1655.nav a { white-space: nowrap; padding: 8px 11px; font-size: 13px; }1656@media (max-width: 1400px) { .header .gk-badge { display: none; } }1657@media (max-width: 1200px) {1658 .nav { display: none; }1659 .menu-btn { display: flex; }1660}16611662/* header pleine largeur : la nav dense s'aligne aux bords de l'écran au lieu1663 de déborder du conteneur 1240px sur les grands écrans */1664.header .header-inner { max-width: none; }16651666/* ---- Fiche propriété : DA v2 — sections en filets, icônes contextuelles ---- */1667.f-bloc h2 { border-left: 0; padding-left: 0; display: flex; align-items: center; gap: 10px; }1668.f-bloc h2::before { content: ""; width: 20px; height: 3px; border-radius: 2px; background: var(--lime); flex: none; }1669/* le panneau héros perd sa boîte : la typographie structure */1670.f-hero { background: transparent; border: 0; box-shadow: none; padding: 0; }1671.f-hero .price { font-size: clamp(36px, 7vw, 54px); letter-spacing: -0.04em; }1672/* inclusions : grille d'items en filets — chaque inclusion a SON icône */1673.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 0 28px; margin-bottom: 8px; }1674.amenity-it {1675 display: flex; align-items: center; gap: 11px; padding: 7px 0;1676 border-bottom: 1px solid var(--hairline); font-size: 13.5px; color: var(--ink); min-height: 46px;1677}1678.am-ico {1679 display: inline-grid; place-items: center; width: 32px; height: 32px;1680 border-radius: 10px; background: var(--lime-soft); color: var(--green-deep); flex: none;1681}1682.am-txt { min-width: 0; }1683/* caractéristiques : clés en micro-mono */1684.dtable { gap: 0 28px; }1685.drow { padding: 9px 0; }1686.drow span { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); align-self: center; }1687/* galerie : cadre allégé */1688.carousel { border: 1px solid var(--hairline-strong); box-shadow: none; border-radius: var(--r-2); }1689.thumbs button { border-radius: 8px; }1690/* CTA sticky : sur la fiche, il prend le bas d'écran — la tabbar s'efface */1691body:has(.cta-sticky) .tabbar { display: none; }1692.cta-sticky { z-index: var(--z-dropdown, 700); border-top: 1px solid var(--hairline-strong); background: rgba(250, 249, 245, 0.92); }1693@media (max-width: 760px) {1694 body:has(.cta-sticky) { padding-bottom: 0; }1695}16961697/* colonnes de la fiche : les sections respirent sans boîte — les modules1698 pleine largeur (.detail > .f-bloc : financement, quartier…) restent en cartes */1699.fiche > .f-col > .f-bloc:not(.f-galerie) {1700 background: transparent; border: 0; border-radius: 0; padding: 0; box-shadow: none;1701}1702@media (max-width: 640px) {1703 .fiche > .f-col > .f-bloc:not(.f-galerie) { padding: 0; }1704}1705/* tiret accent des titres : sans bordure ni ombre héritées de la couche fiche */1706.f-bloc h2::before, .quartier h2::before { border: 0; box-shadow: none; }17071708/* =============================================================================1709 KA MAP SYSTEM v2 — MODE CARTE IMMO-KA (shell plein viewport)1710 Jetons du design system appliqués au shell ; le sélecteur .ka-map du1711 framework pose ses défauts directement sur le canevas — re-déclarer les1712 jetons dessus, sinon l'accent retombe au noir générique dans la carte.1713============================================================================= */1714.ka-shell,1715.ka-shell .ka-map {1716 --ka-accent: var(--accent);1717 --ka-on-accent: var(--on-accent, #fff);1718 --ka-surface: var(--surface);1719 --ka-ink: var(--ink);1720 --ka-line: var(--line-strong);1721 --ka-radius: var(--r-ctl);1722 --ka-shadow: 0 8px 24px rgba(26, 18, 20, 0.14);1723 --ka-font: var(--font-body);1724}1725.ka-shell-fallback {1726 position: fixed; inset: 0; z-index: 640;1727 display: grid; place-items: center;1728 background: var(--surface); color: var(--ink-3);1729 font-family: var(--font-mono, inherit); font-size: 13px;1730}1731.ms2-brand { display: inline-flex; align-items: baseline; gap: 7px; font-family: var(--font-display); min-width: 0; }1732.ms2-brand b { font-size: 15px; letter-spacing: -0.01em; }1733.ms2-brand span {1734 font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em;1735 color: var(--ink-3); font-weight: 600;1736}1737.ka-top-btn {1738 display: inline-flex; align-items: center; gap: 6px;1739 border: 1.5px solid var(--ink); border-radius: var(--r-ctl);1740 background: var(--surface); color: var(--ink);1741 font-family: var(--font-display); font-weight: 600; font-size: 12.5px;1742 padding: 8px 13px; cursor: pointer; min-height: 38px; white-space: nowrap;1743}1744.ka-top-btn:hover { background: var(--accent-soft); color: var(--accent-deep); }1745.ka-top-badge {1746 min-width: 17px; height: 17px; border-radius: 999px;1747 background: var(--accent); color: var(--on-accent, #fff);1748 font-size: 10.5px; font-weight: 700; line-height: 17px;1749 text-align: center; padding: 0 4px;1750}1751.ms2-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; min-width: 0; }1752.ms2-count { font-size: 13px; color: var(--ink-2); min-width: 0; }1753.ms2-count b { color: var(--ink); font-size: 15px; }1754.ms2-zone {1755 margin-left: 8px; font-size: 11px; color: var(--accent-deep, var(--accent));1756 border: 1px dashed var(--accent); border-radius: 999px; padding: 2px 8px;1757}1758.ms2-sort select {1759 border: 1.5px solid var(--ink); border-radius: var(--r-ctl);1760 background: var(--surface); padding: 6px 8px; font-size: 12.5px;1761 font-weight: 600; color: var(--ink); max-width: 168px;1762}1763.ms2-list { display: flex; flex-direction: column; gap: 14px; position: relative; }1764.ms2-list .map-card { flex: 0 0 auto; }1765.ka-sheet .ms2-list { gap: 12px; padding-bottom: 10px; }1766.ms2-pager { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 6px 0 4px; }17671768/* mode carte : le widget Ka Agent s'efface (le sheet occupe son coin) */1769body.ka-map-mode .kaa-btn, body.ka-map-mode .kaa-hello { display: none !important; }17701771/* filtres de la page AU-DESSUS du mode carte — desktop : modale centrée */1772@media (min-width: 781px) {1773 body.ka-map-mode .sheet-backdrop {1774 display: block; position: fixed; inset: 0;1775 z-index: var(--z-overlay, 800); background: rgba(26, 18, 20, 0.45);1776 }1777 body.ka-map-mode .search-zone { display: none; }1778 body.ka-map-mode .search-zone.open {1779 display: block; position: fixed; top: 7dvh; left: 50%;1780 transform: translateX(-50%); width: min(760px, 94vw);1781 max-height: 84dvh; overflow-y: auto; z-index: var(--z-modal, 900);1782 background: var(--surface); border: 1.5px solid var(--ink);1783 border-radius: var(--r-card); box-shadow: var(--shadow-off);1784 padding: 16px 22px 20px; margin: 0;1785 }1786 body.ka-map-mode .search-zone.open .sheet-head {1787 display: flex; align-items: center; justify-content: space-between;1788 font-weight: 700; font-size: 14px; margin-bottom: 10px;1789 }1790 body.ka-map-mode .search-zone.open .sheet-close {1791 display: grid; place-items: center; width: 34px; height: 34px;1792 border: 1.5px solid var(--ink); border-radius: 50%;1793 background: var(--surface); cursor: pointer; font-size: 14px;1794 }1795}17961797/* --- KA ID v2 : badge « Recommandé pour vous » (parcimonieux, serveur) --- */1798.badge.ka-reco { top: auto; bottom: 12px; background: var(--ink); color: var(--accent); }17991800/* ================= Home-Ka specifics ================= */1801/* status chip on the detail page (2. price + status badge) */1802.status-chip {1803 display: inline-flex; align-items: center; gap: 6px;1804 font-family: var(--font-mono); font-size: 11px; font-weight: 700;1805 text-transform: uppercase; letter-spacing: 0.08em;1806 padding: 5px 10px; border-radius: 999px;1807 background: var(--accent-red); color: var(--on-accent);1808}1809.status-chip.st-pending { background: #b96a00; }1810.status-chip.st-sold { background: var(--ink); color: var(--paper); }1811.status-chip.st-withdrawn { background: var(--ink-3); color: var(--paper); }1812.status-chip.st-coming { background: var(--accent-deep); }18131814/* status badge on result cards */1815.card-img .badge.status {1816 left: auto; right: 10px; bottom: 10px; top: auto;1817 background: var(--accent-red); color: #ffffff;1818}18191820.broker-agency { font-size: 13.5px; color: var(--ink-2); }18211822/* ================= Admin (/admin) ================= */1823.admin { padding-top: 30px; padding-bottom: 46px; }1824.admin h1 { font-family: var(--font-display); font-size: 30px; margin: 4px 0 6px; }1825.admin .sub { color: var(--ink-2); max-width: 620px; }18261827.adm-token {1828 display: flex; flex-wrap: wrap; gap: 10px; align-items: center;1829 margin: 18px 0 20px; padding: 12px 14px;1830 border: 1.5px dashed var(--ink-3); border-radius: var(--r-card);1831 background: var(--surface);1832}1833.adm-token label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }1834.adm-token input {1835 flex: 1; min-width: 220px; padding: 9px 12px; font: inherit;1836 border: 1.5px solid var(--ink); border-radius: 8px; background: var(--paper);1837}18381839.adm-tiles { margin-bottom: 20px; }1840.adm-tile-wide { grid-column: 1 / -1; }1841.adm-status-row { display: flex; flex-wrap: wrap; gap: 8px; }18421843.adm-tabs { display: flex; gap: 6px; margin: 6px 0 18px; border-bottom: 2px solid var(--ink); }1844.adm-tabs a {1845 padding: 9px 16px; font-weight: 600; font-size: 14px; color: var(--ink-2);1846 border: 1.5px solid transparent; border-bottom: none;1847 border-radius: 10px 10px 0 0;1848}1849.adm-tabs a:hover { color: var(--ink); border-color: var(--ink-3); }1850.adm-tabs a.on { background: #ffffff; color: var(--accent); border-color: var(--accent); }18511852.adm-badge {1853 display: inline-flex; align-items: center; gap: 5px;1854 font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;1855 text-transform: uppercase; letter-spacing: 0.05em;1856 padding: 2px 8px; border-radius: 999px;1857 border: 1px solid var(--ink-3); color: var(--ink-2); background: var(--surface);1858}1859.adm-badge.adm-ok { border-color: var(--accent); color: var(--accent-deep); background: var(--accent-soft); }1860.adm-badge.adm-err { border-color: #b3261e; color: #b3261e; background: #fbe4e2; }1861.adm-badge.adm-off { border-color: var(--ink-3); color: var(--ink-3); }18621863.adm-sub { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-3); }1864.adm-msg { max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }1865.adm-table { min-width: 900px; }18661867.adm-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 14px; }1868.adm-card {1869 background: var(--surface); border: 1.5px solid var(--ink);1870 border-radius: var(--r-card); padding: 14px 16px;1871 box-shadow: 3px 3px 0 rgba(26, 18, 20, 0.1);1872}1873.adm-card-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 4px; }1874.adm-card p { margin: 8px 0 0; font-size: 13px; color: var(--ink-2); }18751876.adm-controls { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 16px; align-items: center; }1877.adm-controls input, .adm-controls select {1878 padding: 8px 10px; font: inherit; font-size: 13.5px;1879 border: 1.5px solid var(--ink); border-radius: 8px; background: var(--paper);1880}1881.adm-controls input:first-child { flex: 1; min-width: 200px; }1882.adm-status-select {1883 padding: 5px 6px; font: inherit; font-size: 12.5px;1884 border: 1.5px solid var(--ink-3); border-radius: 7px; background: var(--paper);1885}1886.adm-inspect { padding: 5px 10px; font-size: 12.5px; }1887