/* ════════════════════════════════════════════════════════════
   CASA PARAGUAY — démo immobilier
   ════════════════════════════════════════════════════════════ */

:root {
    --ink:        #1c2a22;
    --ink-soft:   #40514a;
    --muted:      #77837d;
    --paper:      #f7f4ee;
    --white:      #ffffff;
    --green:      #1e3d2f;
    --green-deep: #12291f;
    --gold:       #b98e4f;
    --gold-soft:  #e6d5b3;
    --line:       #e5dfd3;
    --radius:     14px;
    --shadow:     0 22px 55px rgba(18, 41, 31, .13);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

button { font-family: inherit; cursor: pointer; }

.im-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Titres de section */
.sec-eyebrow {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.sec-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    color: var(--ink);
}

/* ────────────────────────────────────────────────────────────
   BANDEAU RETOUR GDEL
   ──────────────────────────────────────────────────────────── */
.gdel-demo-bar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 110;
    height: 44px;
    background: #000;
    border-bottom: 1px solid rgba(224, 163, 255, 0.3);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.gdel-demo-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
}

.gdel-demo-bar-text {
    color: #d1d1d1;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gdel-demo-bar-logo {
    font-weight: 700;
    background: linear-gradient(45deg, #e0a3ff, #ff69b4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.gdel-demo-bar-btn {
    flex-shrink: 0;
    padding: 6px 16px;
    border-radius: 999px;
    background: linear-gradient(45deg, #e0a3ff, #ff69b4);
    color: #000;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s ease, transform .2s ease;
}

.gdel-demo-bar-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .gdel-demo-bar-text {
        font-size: 0.78rem;
    }

    .gdel-demo-bar-btn {
        font-size: 0.78rem;
        padding: 5px 12px;
    }
}

/* ────────────────────────────────────────────────────────────
   NAV
   ──────────────────────────────────────────────────────────── */
.im-nav {
    position: fixed;
    inset: 44px 0 auto 0;
    z-index: 100;
    padding: 18px 0;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.im-nav.scrolled {
    background: rgba(18, 41, 31, .96);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, .25);
    padding: 12px 0;
}

.im-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.im-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--white);
    text-decoration: none;
}

.im-logo span { color: var(--gold); }

.im-links {
    display: flex;
    gap: 30px;
}

.im-links a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .02em;
    transition: color .2s;
}

.im-links a:hover { color: var(--gold-soft); }

.im-nav-right { display: flex; align-items: center; gap: 16px; }

.im-nav-cta {
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    padding: 9px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background .2s, border-color .2s;
}

.im-nav-cta:hover { background: var(--gold); border-color: var(--gold); }

.im-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
}

.im-burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* ────────────────────────────────────────────────────────────
   HOME — HERO
   ──────────────────────────────────────────────────────────── */
.home-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.home-hero-media,
.home-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 41, 31, .55) 0%, rgba(18, 41, 31, .25) 40%, rgba(18, 41, 31, .78) 100%);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 130px;
    padding-bottom: 70px;
}

.home-hero-eyebrow {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 18px;
}

.home-hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.08;
    max-width: 700px;
}

.home-hero h1 em {
    font-style: italic;
    color: var(--gold-soft);
}

.home-hero-sub {
    margin-top: 20px;
    max-width: 520px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .88);
}

/* Barre de recherche */
.home-search {
    margin-top: 38px;
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 860px;
}

.hs-field {
    flex: 1;
    padding: 14px 22px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hs-field label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.hs-field select {
    border: none;
    background: none;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink);
    outline: none;
    cursor: pointer;
}

.hs-submit {
    border: none;
    background: var(--green);
    color: var(--white);
    font-size: .95rem;
    font-weight: 600;
    padding: 0 34px;
    white-space: nowrap;
    transition: background .2s;
}

.hs-submit:hover { background: var(--gold); }

/* Stats */
.home-hero-stats {
    margin-top: 46px;
    display: flex;
    gap: 54px;
    flex-wrap: wrap;
}

.hh-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--gold-soft);
    line-height: 1.1;
}

.hh-stat span {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
}

/* ────────────────────────────────────────────────────────────
   CARTES LISTING (home + biens similaires)
   ──────────────────────────────────────────────────────────── */
.home-listings { padding: 90px 0 40px; }

.similar-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.similar-link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: color .2s;
}

.similar-link:hover { color: var(--gold); }

.listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.listing {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(18, 41, 31, .07);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}

.listing:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.listing .img {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.listing .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.listing:hover .img img { transform: scale(1.05); }

.listing .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(18, 41, 31, .85);
    color: var(--white);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}

.listing .heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--green);
    font-size: 1rem;
    display: grid;
    place-items: center;
    transition: background .2s, color .2s;
}

.listing .heart:hover { background: var(--gold); color: var(--white); }

.listing .body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.listing .loc {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.listing h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

.listing h3 a { text-decoration: none; color: inherit; }

.listing .meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.listing__foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.listing .price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--green);
}

.listing__cta {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
}

.listing__cta:hover { color: var(--green); }

/* ────────────────────────────────────────────────────────────
   HOME — POURQUOI NOUS
   ──────────────────────────────────────────────────────────── */
.home-why {
    padding: 90px 0;
    text-align: center;
}

.why-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    text-align: left;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 26px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 8px 26px rgba(18, 41, 31, .06);
}

.why-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: .88rem;
    color: var(--ink-soft);
}

/* ────────────────────────────────────────────────────────────
   HOME — VILLES
   ──────────────────────────────────────────────────────────── */
.home-cities { padding: 20px 0 90px; }

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.city-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.city-card:hover img { transform: scale(1.06); }

.city-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 41, 31, 0) 35%, rgba(18, 41, 31, .85) 100%);
}

.city-info {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
}

.city-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
}

.city-info span {
    font-size: .8rem;
    color: var(--gold-soft);
}

/* ────────────────────────────────────────────────────────────
   HOME — CTA VENDEUR
   ──────────────────────────────────────────────────────────── */
.home-cta {
    background: var(--green-deep);
    color: var(--white);
    padding: 70px 0;
}

.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.home-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.home-cta p {
    max-width: 560px;
    color: rgba(255, 255, 255, .8);
    font-size: .95rem;
}

.home-cta-btn {
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background .2s, transform .2s;
}

.home-cta-btn:hover { background: #a3793d; transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════════
   PAGE BIEN (show)
   ════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.prop-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
}

.prop-hero-media,
.prop-hero-media img,
.prop-hero-media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.media-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, #244435, #12291f);
}

.media-placeholder .play {
    width: 74px;
    height: 74px;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.media-placeholder .cap {
    font-size: .78rem;
    letter-spacing: .25em;
    color: rgba(255, 255, 255, .8);
}

.prop-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 41, 31, .6) 0%, rgba(18, 41, 31, .1) 42%, rgba(18, 41, 31, .82) 100%);
}

.prop-hero-meta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 110px 40px 0;
    flex-wrap: wrap;
}

.crumbs {
    display: flex;
    gap: 10px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .85);
}

.crumbs a {
    color: inherit;
    text-decoration: none;
}

.crumbs a:hover { color: var(--gold-soft); }

.ref {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--gold-soft);
}

.prop-hero-foot {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 0 40px 44px;
    flex-wrap: wrap;
}

.prop-hero-foot .status {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.prop-hero-foot h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.12;
    max-width: 760px;
}

.prop-hero-foot .loc {
    margin-top: 10px;
    font-size: .95rem;
    color: rgba(255, 255, 255, .85);
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.iconbtn {
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(18, 41, 31, .35);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: .84rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 999px;
    transition: background .2s, border-color .2s;
}

.iconbtn:hover { background: var(--gold); border-color: var(--gold); }

/* ── Bandeau chiffres clés ── */
.facts-banner {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.facts-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    flex-wrap: wrap;
}

.fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 110px;
    text-align: center;
}

.fact-ico { color: var(--gold); }

.fact-num {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
}

.fact-num small {
    font-size: .9rem;
    margin-left: 3px;
    color: var(--muted);
}

.fact-label {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.fact-sublabel {
    font-size: .74rem;
    color: var(--gold);
    font-style: italic;
}

.fact-sep {
    width: 1px;
    height: 52px;
    background: var(--line);
}

.fact-price .fact-num { color: var(--green); }

/* ── Description + contact ── */
.desc { padding: 80px 0; }

.desc-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    align-items: start;
}

.desc-body .sec-title { margin-bottom: 24px; }

.desc-body .lead {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 22px;
}

.desc-full p {
    color: var(--ink-soft);
    margin-bottom: 16px;
    font-size: .96rem;
}

.key-points {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
    border-top: 1px solid var(--line);
}

.kp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
}

.kp-label { color: var(--muted); }

.kp-val { font-weight: 600; color: var(--ink); }

/* Carte contact */
.contact-card {
    position: sticky;
    top: 96px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px 28px;
}

.agent-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.agent-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: var(--gold-soft);
    font-weight: 700;
    font-size: 1.05rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-name { font-weight: 700; font-size: .98rem; }

.agent-role { font-size: .8rem; color: var(--muted); }

.form-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.form-sub {
    font-size: .84rem;
    color: var(--muted);
    margin: 4px 0 18px;
}

.contact-form label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    font-family: inherit;
    font-size: .92rem;
    color: var(--ink);
    outline: none;
    transition: border-color .2s;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }

.form-submit {
    width: 100%;
    border: none;
    background: var(--green);
    color: var(--white);
    font-size: .95rem;
    font-weight: 600;
    padding: 15px;
    border-radius: 999px;
    margin-top: 4px;
    transition: background .2s;
}

.form-submit:hover { background: var(--gold); }

.form-submit:disabled { background: var(--green); opacity: .85; cursor: default; }

.form-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding: 13px;
    border: 1.5px solid #25d366;
    border-radius: 999px;
    color: #128c4b;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.form-wa svg { width: 20px; height: 20px; fill: currentColor; }

.form-wa:hover { background: #25d366; color: var(--white); }

/* ── Galerie strip ── */
.media-strip { padding: 20px 0 60px; }

.strip-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.strip-nav { display: flex; gap: 10px; }

.strip-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    font-size: 1.3rem;
    line-height: 1;
    transition: background .2s, color .2s, border-color .2s;
}

.strip-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.strip-wrap { overflow: hidden; }

.strip-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 max(24px, calc((100vw - 1240px) / 2 + 24px)) 14px;
    scrollbar-width: none;
}

.strip-track::-webkit-scrollbar { display: none; }

.strip-item {
    position: relative;
    flex: 0 0 340px;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    background-color: var(--green-deep);
    background-size: cover;
    background-position: center;
}

.strip-item.wide { flex-basis: 500px; }

.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strip-item.video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 41, 31, .45);
}

.strip-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255, 255, 255, .85);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 1.15rem;
    z-index: 2;
}

.strip-cap {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    color: var(--white);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

/* ── Équipements ── */
.features {
    background: var(--white);
    padding: 70px 0;
}

.features .sec-title { margin-bottom: 40px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 26px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
    transition: border-color .2s, transform .2s;
}

.feat:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.feat-ico {
    width: 46px;
    height: 46px;
    color: var(--gold);
}

.feat-ico svg { width: 100%; height: 100%; }

.feat-label {
    font-size: .84rem;
    font-weight: 600;
    color: var(--ink);
}

/* ── Biens similaires ── */
.similar { padding: 80px 0 90px; }

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.im-footer {
    background: var(--green-deep);
    color: rgba(255, 255, 255, .8);
}

.im-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 44px;
    padding-top: 64px;
    padding-bottom: 54px;
}

.im-footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--white);
    margin-bottom: 16px;
}

.im-footer-logo span { color: var(--gold); }

.im-footer-baseline {
    font-size: .88rem;
    line-height: 1.7;
}

.im-footer h4 {
    color: var(--gold-soft);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.im-footer-grid a {
    display: block;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: .9rem;
    margin-bottom: 10px;
    transition: color .2s;
}

.im-footer-grid a:hover { color: var(--gold-soft); }

.im-footer-contact { font-size: .9rem; line-height: 1.8; }

.im-footer-bar {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0;
    font-size: .8rem;
}

.im-footer-bar .im-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.im-footer-bar a {
    color: var(--gold-soft);
    text-decoration: none;
}

.im-footer-bar a:hover { text-decoration: underline; }

/* Bouton WhatsApp flottant */
.im-wa-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
    transition: transform .2s;
}

.im-wa-fab:hover { transform: scale(1.08); }

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .listing-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .desc-grid { grid-template-columns: 1fr; gap: 44px; }
    .contact-card { position: static; }
}

@media (max-width: 820px) {
    .im-links {
        position: fixed;
        top: 44px;
        right: 0;
        bottom: 0;
        width: min(320px, 82vw);
        background: var(--green-deep);
        flex-direction: column;
        gap: 8px;
        padding: 100px 34px 34px;
        transform: translateX(100%);
        transition: transform .3s ease;
        box-shadow: -20px 0 50px rgba(0, 0, 0, .3);
    }

    .im-links.open { transform: translateX(0); }

    .im-links a {
        font-size: 1.05rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .im-burger { display: flex; position: relative; z-index: 110; }

    .im-nav-cta { display: none; }

    .home-search { flex-direction: column; }

    .hs-field { border-right: none; border-bottom: 1px solid var(--line); }

    .hs-submit { padding: 16px; }

    .home-hero-stats { gap: 32px; }

    .prop-hero-meta { padding: 96px 24px 0; }

    .prop-hero-foot { padding: 0 24px 34px; }

    .facts-inner { justify-content: center; }

    .fact-sep { display: none; }
}

@media (max-width: 620px) {
    .listing-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .cities-grid { grid-template-columns: 1fr; }
    .city-card { aspect-ratio: 16 / 10; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .key-points { grid-template-columns: 1fr; }
    .strip-item { flex-basis: 78vw; }
    .strip-item.wide { flex-basis: 86vw; }
    .im-footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .home-cta-inner { flex-direction: column; align-items: flex-start; }
}
