/* ===== AFC-House — design tokens ===== */
:root {
  --bg: #1D1D1B;
  --panel: #262624;
  --panel-alt: #2C2C29;
  --img-bg: #232320;
  --dark: #111110;
  --text: #FFFFFF;
  --text-soft: #CFCFCB;
  --text-body: #D8D8D3;
  --muted: #9C9C96;
  --muted-dark: #8A8A84;
  --accent: #DE9B4A;
  --teal: #3FC1B0;
  --line: rgba(255, 255, 255, .12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Archivo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #FFFFFF; }

@keyframes pulseRing { 0% { transform: scale(1); opacity: .55; } 70% { transform: scale(2.6); opacity: 0; } 100% { opacity: 0; } }
@keyframes floatIn { from { opacity: 0; transform: translate(-50%, calc(-100% - 12px)); } to { opacity: 1; transform: translate(-50%, calc(-100% - 18px)); } }
@keyframes panelIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.page { min-height: 100vh; background: var(--bg); overflow-x: hidden; position: relative; }

.lnk { position: relative; font-size: 13px; color: var(--text-soft); text-decoration: none; letter-spacing: .2px; }
.lnk:hover { color: #FFFFFF; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(29, 29, 27, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand-mark {
  width: 34px; height: 34px; border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px; letter-spacing: -.5px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 600; font-size: 17px; letter-spacing: .5px; }
.brand-name-light { font-weight: 300; }
.brand-sub { font-size: 9px; letter-spacing: 3px; color: var(--muted); margin-top: 3px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-cta { font-size: 13px; color: #FFFFFF; text-decoration: none; background: var(--accent); padding: 10px 20px; letter-spacing: .3px; }

/* ===== HERO ===== */
.hero { padding: 88px 40px 70px; max-width: 1240px; margin: 0 auto; }
.kicker-row { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.kicker-line { width: 38px; height: 1px; background: var(--accent); }
.kicker { font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--accent); }
.hero-title { font-weight: 800; font-size: 66px; line-height: 1.04; letter-spacing: -1.5px; margin: 0; max-width: 900px; }
.hero-teal { font-weight: 800; color: var(--teal); }
.hero-lead { font-size: 17px; line-height: 1.65; color: var(--text-soft); max-width: 560px; margin: 30px 0 40px; }
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-accent {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #FFFFFF; text-decoration: none;
  padding: 15px 26px; font-size: 14px; letter-spacing: .3px; border: 0; cursor: pointer;
  font-family: inherit;
}
.btn-accent .arrow { font-size: 16px; }
.btn-underline {
  display: inline-flex; align-items: center; gap: 8px;
  color: #FFFFFF; text-decoration: none; padding: 15px 6px; font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.hero-stats {
  display: flex; gap: 56px; margin-top: 64px;
  border-top: 1px solid var(--line); padding-top: 30px; max-width: 760px;
}
.stat-num { font-size: 38px; font-weight: 500; }
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: .4px; margin-top: 2px; }

/* ===== SECTIONS ===== */
.section { max-width: 1240px; margin: 0 auto; }
.section-map { padding: 40px 40px 90px; }
.section-listings { padding: 20px 40px 90px; }
.section-parcours { padding: 80px 40px; }
.section-faq { padding: 80px 40px; }
.section-legal { padding: 80px 40px; scroll-margin-top: 80px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 8px; flex-wrap: wrap; gap: 16px; }
.section-kicker { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-weight: 800; font-size: 40px; letter-spacing: -.8px; margin: 0; }
.section-note { font-size: 13px; color: var(--muted); max-width: 300px; margin: 0; }

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px 30px;
  margin-top: 28px; padding: 18px 22px;
  background: var(--panel); border: 1px solid var(--line);
}
.filter-group { display: flex; align-items: center; gap: 12px; }
.filter-price { margin-left: auto; }
.filter-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  cursor: pointer; font-size: 12px; letter-spacing: .2px; padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: transparent; color: var(--text-soft);
  transition: all .12s;
}
.chip.active { background: var(--teal); color: #1D1D1B; }
#price-range { width: 150px; accent-color: #FFFFFF; cursor: pointer; }
.price-value { font-size: 14px; font-weight: 600; min-width: 96px; text-align: right; }
.filter-reset { cursor: pointer; font-size: 12px; color: var(--muted); border-bottom: 1px solid rgba(255, 255, 255, .25); white-space: nowrap; }

/* ===== MAP ===== */
.map-grid { display: grid; grid-template-columns: 1fr 300px; gap: 34px; margin-top: 24px; align-items: start; }
.map-canvas {
  position: relative;
  background: linear-gradient(160deg, #262624, #1F1F1D);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 20px;
}
#map-svg { display: block; width: 100%; height: auto; }
.prov-path { cursor: pointer; transition: fill .15s; }
.map-pin { cursor: pointer; }
.pin-ring { transform-box: fill-box; transform-origin: center; animation: pulseRing 2.6s ease-out infinite; }

.hover-card {
  position: absolute; transform: translate(-50%, calc(-100% - 18px));
  width: 240px; background: var(--panel); color: #FFFFFF;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
  pointer-events: none; z-index: 10;
  animation: floatIn .18s ease-out;
}
.hover-card-img { height: 124px; position: relative; background-color: var(--img-bg); background-size: cover; background-position: center; }
.hover-card-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 8px; background: var(--accent); color: #1D1D1B; font-weight: 600;
}
.hover-card-body { padding: 14px 16px 16px; }
.hover-card-loc { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.hover-card-name { font-weight: 700; font-size: 19px; line-height: 1.15; margin-bottom: 10px; }
.hover-card-row { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(29, 29, 27, .16); padding-top: 10px; }
.hover-card-price { font-size: 15px; font-weight: 600; }
.hover-card-surface { font-size: 11px; color: rgba(255, 255, 255, .6); }
.hover-card-tail {
  position: absolute; bottom: -7px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; background: var(--panel); rotate: 45deg;
}

.prov-label {
  position: absolute; left: 26px; top: 26px;
  background: var(--teal); color: #1D1D1B;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 13px; pointer-events: none;
}

.map-legend {
  position: absolute; left: 26px; bottom: 26px;
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted);
}
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot-accent { background: var(--accent); }
.legend-dot-teal { background: var(--teal); margin-left: 10px; }

/* ===== REGION LIST ===== */
.list-kicker { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.region-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 4px; border-bottom: 1px solid rgba(255, 255, 255, .09); cursor: pointer;
}
.region-item:hover { background: rgba(255, 255, 255, .04); }
.region-item-left { display: flex; align-items: center; gap: 11px; min-width: 0; }
.region-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.region-city { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.region-type { font-size: 11px; color: var(--muted); }
.region-price { font-size: 12px; color: var(--text-soft); white-space: nowrap; }

/* ===== LISTINGS ===== */
.listings-head { margin-bottom: 36px; }
.listings-count { font-size: 13px; color: var(--muted); }
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  cursor: pointer; background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: border-color .12s;
}
.card:hover { border-color: rgba(255, 255, 255, .3); }
.card-img { height: 210px; position: relative; background-color: var(--panel-alt); background-size: cover; background-position: center; }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 9px; font-weight: 600;
}
.card-body { padding: 20px; }
.card-loc { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.card-name { font-weight: 700; font-size: 22px; line-height: 1.15; margin-bottom: 16px; }
.card-specs { display: flex; gap: 16px; font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.card-portals { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.portal-chip {
  width: 22px; height: 22px; border-radius: 5px; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
}
.card-portals-note { font-size: 11px; color: var(--muted); margin-left: 3px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 16px; }
.card-price { font-size: 18px; font-weight: 600; }
.card-more { font-size: 12px; color: #FFFFFF; border-bottom: 1px solid var(--accent); }

.no-results { padding: 70px 20px; text-align: center; border: 1px dashed rgba(255, 255, 255, .2); background: var(--panel); }
.no-results-title { font-weight: 700; font-size: 24px; margin-bottom: 8px; }
.no-results-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.no-results-btn { display: inline-block; padding: 12px 22px; font-size: 13px; }

/* ===== PARCOURS ===== */
.parcours-head { margin-bottom: 44px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card { background: var(--panel); border-top: 2px solid var(--line); padding: 26px 22px; }
.step-card-active { border-top-color: var(--accent); }
.step-diamond {
  width: 34px; height: 34px;
  background: var(--bg); border: 1px solid var(--teal);
  rotate: 45deg;
  display: flex; align-items: center; justify-content: center;
  margin: 6px 0 22px 6px;
}
.step-diamond span { rotate: -45deg; font-size: 12px; font-weight: 700; color: #FFFFFF; }
.step-diamond-accent { background: var(--accent); border: 0; }
.step-diamond-accent span { color: #1D1D1B; }
.step-title { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.step-text { font-size: 13.5px; line-height: 1.6; color: var(--text-soft); margin: 0; }

/* ===== ABOUT ===== */
.about { background: var(--dark); color: #FFFFFF; padding: 88px 40px; }
.about-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-title { font-weight: 800; font-size: 44px; line-height: 1.15; letter-spacing: -1px; margin: 0 0 24px; }
.about-text { font-size: 16px; line-height: 1.7; color: rgba(255, 255, 255, .7); margin: 0 0 20px; }
.about-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: #FFFFFF; text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 4px;
  font-size: 14px; margin-top: 8px;
}
.about-visual {
  height: 360px; background-color: var(--img-bg); position: relative;
  background-image: url(../images/prop-antwerpen.png);
  background-size: cover; background-position: center;
}
.about-visual-veil { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .15)); }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 340px 1fr; gap: 50px; align-items: start; }
.faq-title { line-height: 1.1; margin-bottom: 18px; }
.faq-intro { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }
.faq-contact-link { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--panel); border: 1px solid rgba(255, 255, 255, .08); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; cursor: pointer;
}
.faq-q:hover { background: rgba(255, 255, 255, .03); }
.faq-q-text { font-weight: 700; font-size: 15.5px; }
.faq-sign { font-size: 20px; color: var(--accent); flex: none; width: 24px; text-align: center; }
.faq-a { font-size: 14.5px; line-height: 1.7; color: var(--text-soft); margin: 0; padding: 0 22px 22px; max-width: 640px; }

/* ===== LEGAL ===== */
.legal-head { margin-bottom: 34px; }
.legal-box {
  display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start;
  border: 1px solid var(--line); background: var(--panel);
}
.legal-sidebar { border-right: 1px solid var(--line); padding: 26px 18px; }
.legal-tab {
  cursor: pointer; font-size: 13.5px; padding: 12px 14px; margin-bottom: 4px;
  background: transparent; color: var(--text-soft); transition: all .12s;
}
.legal-tab.active { background: var(--teal); color: #1D1D1B; }
.legal-disclaimer { margin-top: 22px; padding: 14px; border: 1px solid rgba(255, 255, 255, .14); font-size: 11px; line-height: 1.6; color: var(--muted); }
.legal-content { padding: 34px 40px 34px 8px; max-width: 720px; }
.legal-title { font-weight: 700; font-size: 26px; margin-bottom: 24px; }
.legal-block { margin-bottom: 26px; }
.legal-block-h { font-weight: 700; font-size: 18px; margin-bottom: 9px; }
.legal-block-p { font-size: 14.5px; line-height: 1.75; color: var(--text-body); margin: 0; white-space: pre-line; }
.legal-updated { font-size: 12px; color: var(--muted-dark); border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 18px; margin-top: 6px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg); padding: 80px 40px 40px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.1fr; gap: 40px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.footer-title { font-weight: 800; font-size: 34px; letter-spacing: -.6px; margin: 0 0 18px; max-width: 420px; }
.footer-kicker { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-text { font-size: 14px; line-height: 2; color: var(--text-soft); }
.footer-legal-links { display: flex; flex-direction: column; gap: 9px; }
.footer-legal-links a { font-size: 14px; color: var(--text-soft); width: fit-content; text-decoration: none; }
.footer-legal-links a:hover { color: #FFFFFF; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ===== DETAIL PANEL ===== */
.detail-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: fadeIn .2s ease-out;
}
.detail-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61;
  width: 560px; max-width: 94vw;
  background: var(--bg);
  box-shadow: -24px 0 60px rgba(0, 0, 0, .55);
  overflow-y: auto;
  animation: panelIn .28s cubic-bezier(.25, .8, .35, 1);
}
.detail-head {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: rgba(29, 29, 27, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.detail-head-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }
.detail-close {
  cursor: pointer; width: 34px; height: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: all .12s;
}
.detail-close:hover { background: var(--accent); color: #FFFFFF; }
.detail-hero { height: 300px; position: relative; background-color: var(--panel-alt); background-size: cover; background-position: center; }
.detail-badge {
  position: absolute; top: 18px; left: 18px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 11px; font-weight: 600;
}
.detail-thumbs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; padding: 6px 6px 0; }
.detail-thumb { height: 80px; background-color: var(--panel-alt); }
.detail-thumb-more { position: relative; background-color: var(--img-bg); background-size: cover; background-position: center; }
.detail-thumb-more-veil {
  position: absolute; inset: 0; background: rgba(0, 0, 0, .55);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 1px; color: #FFFFFF;
}
.detail-body { padding: 30px 28px 40px; }
.detail-loc { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.detail-name { font-weight: 800; font-size: 34px; line-height: 1.1; letter-spacing: -.6px; margin: 0 0 8px; }
.detail-address { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.detail-price-row {
  display: flex; align-items: baseline; gap: 12px; padding: 20px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.detail-price { font-size: 36px; font-weight: 500; }
.detail-price-per { font-size: 13px; color: var(--muted); }
.detail-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255, 255, 255, .1); margin: 24px 0;
  border: 1px solid rgba(255, 255, 255, .1);
}
.detail-spec { background: var(--bg); padding: 16px 18px; }
.detail-spec-label { font-size: 11px; color: var(--muted); letter-spacing: .4px; margin-bottom: 5px; }
.detail-spec-value { font-size: 17px; font-weight: 600; }
.detail-spec-value.peb { color: var(--accent); }
.detail-section-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin: 28px 0 12px; }
.detail-desc { font-size: 15px; line-height: 1.7; color: var(--text-body); margin: 0 0 24px; }
.detail-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-bottom: 32px; }
.detail-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-body); }
.detail-feature-dot { width: 5px; height: 5px; background: var(--accent); rotate: 45deg; flex: none; }
.detail-portals { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.detail-portal {
  display: flex; align-items: center; gap: 13px; padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  text-decoration: none; color: #FFFFFF; transition: border-color .12s;
}
.detail-portal:hover { border-color: #FFFFFF; }
.detail-portal-logo {
  width: 36px; height: 36px; border-radius: 8px; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex: none; letter-spacing: .3px;
}
.detail-portal-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.detail-portal-name { font-size: 14px; font-weight: 600; }
.detail-portal-price { font-size: 12px; color: var(--muted); }
.detail-portal-arrow { font-size: 16px; color: var(--muted); }
.detail-cta {
  display: flex; gap: 12px; position: sticky; bottom: 0;
  background: linear-gradient(to top, #1D1D1B 70%, transparent);
  padding: 16px 0 4px; margin-top: 8px;
}
.detail-cta-main { flex: 1; text-align: center; background: var(--accent); color: #FFFFFF; text-decoration: none; padding: 16px; font-size: 14px; letter-spacing: .3px; }
.detail-cta-alt { text-align: center; color: #FFFFFF; text-decoration: none; padding: 16px 20px; font-size: 14px; border: 1px solid rgba(255, 255, 255, .25); }

/* ===== CONTACT / FORMULAIRES ===== */
.section-contact { padding: 80px 40px; scroll-margin-top: 80px; }
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.contact-title { line-height: 1.1; }
.contact-intro { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 16px 0 28px; }
.contact-coords { display: flex; flex-direction: column; gap: 14px; }
.contact-coord-label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-coords a { color: var(--text-soft); text-decoration: none; font-size: 15px; }
.contact-coords a:hover { color: #FFFFFF; }

.contact-form { background: var(--panel); border: 1px solid var(--line); padding: 28px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-field span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--bg); border: 1px solid rgba(255, 255, 255, .15);
  padding: 12px 14px; outline: none; border-radius: 0; -webkit-appearance: none; appearance: none;
}
.form-field select { background-image: linear-gradient(45deg, transparent 50%, #9C9C96 50%), linear-gradient(135deg, #9C9C96 50%, transparent 50%); background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); }
.form-field input:disabled { color: var(--muted); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; line-height: 1.55; color: var(--muted); margin: 4px 0 20px; cursor: pointer; }
.form-consent input { margin-top: 2px; accent-color: var(--accent); }
.form-consent a { color: var(--accent); text-decoration: none; }
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-actions button:disabled { opacity: .6; cursor: wait; }
.form-status { font-size: 13px; line-height: 1.5; }

/* ===== BANDEAU COOKIES ===== */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 80;
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  background: #262624; border: 1px solid rgba(255, 255, 255, .18);
  padding: 18px 22px; box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
  animation: floatUp .3s ease-out;
}
@keyframes floatUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.cookie-text { flex: 1 1 320px; font-size: 13px; line-height: 1.6; color: var(--text-soft); margin: 0; }
.cookie-text a { color: var(--accent); text-decoration: none; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn { font-family: inherit; font-size: 12.5px; padding: 10px 16px; cursor: pointer; border: 0; letter-spacing: .2px; }
.cookie-accept { background: var(--accent); color: #FFFFFF; }
.cookie-refuse { background: transparent; color: var(--text-soft); border: 1px solid rgba(255, 255, 255, .25); }
.cookie-refuse:hover { color: #FFFFFF; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .85); backdrop-filter: blur(3px); }
.lightbox-img { position: relative; max-width: 88vw; max-height: 86vh; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); animation: fadeIn .18s ease-out; }
.lightbox-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); font-size: 12px; letter-spacing: 2px; color: var(--text-soft); }
.lightbox-btn {
  position: absolute; z-index: 2; width: 42px; height: 42px;
  background: rgba(29, 29, 27, .8); color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, .25); cursor: pointer; font-size: 16px; font-family: inherit;
}
.lightbox-btn:hover { background: var(--accent); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ===== PAGE BIEN ===== */
.bien-page { max-width: 1240px; margin: 0 auto; padding: 36px 40px 90px; }
.bien-breadcrumb { margin-bottom: 28px; }
.bien-breadcrumb a { font-size: 13px; color: var(--muted); text-decoration: none; }
.bien-breadcrumb a:hover { color: #FFFFFF; }
.bien-top { display: grid; grid-template-columns: 1.25fr 1fr; gap: 44px; align-items: start; }
.bien-hero { height: 420px; position: relative; background-color: var(--panel-alt); background-size: cover; background-position: center; }
.bien-thumbs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 6px; }
.bien-thumb { height: 96px; background-color: var(--panel-alt); background-size: cover; background-position: center; }
.bien-gallery-note { font-size: 11px; color: var(--muted-dark); margin-top: 10px; }
.bien-title { font-weight: 800; font-size: 42px; line-height: 1.08; letter-spacing: -.8px; margin: 0 0 8px; }
.bien-actions { display: flex; gap: 14px; align-items: center; margin-top: 26px; flex-wrap: wrap; }
.bien-summary .detail-specs { margin-bottom: 0; }
.bien-content { display: grid; grid-template-columns: 1.25fr 1fr; gap: 44px; align-items: start; margin-top: 40px; }
.bien-visite { margin-top: 70px; border-top: 1px solid var(--line); padding-top: 50px; max-width: 760px; scroll-margin-top: 90px; }
.bien-visite-note { font-size: 14px; color: var(--muted); margin: 14px 0 26px; }
.detail-page-link { color: var(--accent); text-decoration: none; }
.detail-page-link:hover { border-bottom: 1px solid var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .bien-top, .bien-content { grid-template-columns: 1fr; gap: 32px; }
  .bien-hero { height: 320px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .map-grid { grid-template-columns: 1fr; }
  .legal-box { grid-template-columns: 1fr; }
  .legal-sidebar { border-right: 0; border-bottom: 1px solid var(--line); }
  .legal-content { padding: 10px 26px 30px; }
  .filter-price { margin-left: 0; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav-links { gap: 18px; }
  .nav-links .lnk { display: none; }
  .hero { padding: 60px 20px 50px; }
  .hero-title { font-size: 42px; letter-spacing: -1px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .section-map, .section-listings, .section-parcours, .section-faq, .section-legal { padding-left: 20px; padding-right: 20px; }
  .section-title { font-size: 32px; }
  .about { padding: 60px 20px; }
  .about-title { font-size: 34px; }
  .footer { padding: 60px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .listings-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .detail-features { grid-template-columns: 1fr; }
  .section-contact { padding-left: 20px; padding-right: 20px; }
  .contact-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .bien-page { padding: 24px 20px 60px; }
  .bien-title { font-size: 32px; }
  .bien-hero { height: 240px; }
}
