/* =====================================================
   ARTHUR & MAX — Résidence Jeunes Actifs
   Feuille de style principale
   ===================================================== */

/* ─── Variables ─────────────────────────────────────── */
:root {
    /* Palette */
    --accent:  #D1BB9B;   /* Orange grisé pastel */
    --cream:   #F5F2EA;   /* Fond principal */
    --navy:    #2E4057;   /* Textes / titres */
    --sage:    #A7B9A8;   /* Touches végétales */
    --pearl:   #DADADA;   /* Bordures */
    --white:   #FFFFFF;

    /* Typographie */
    --font: 'Outfit', 'Avenir Next', 'Poppins', 'Montserrat', sans-serif;

    /* Espacements */
    --container: 1200px;
    --pad-section: 108px 0;
    --pad-h: 36px;

    /* Arrondis */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 28px;

    /* Ombres */
    --shadow-xs: 0 1px 6px rgba(46,64,87,.05);
    --shadow-sm: 0 2px 16px rgba(46,64,87,.07);
    --shadow-md: 0 6px 32px rgba(46,64,87,.11);

    /* Transition */
    --ease: 300ms cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    background-color: var(--cream);
    color: var(--navy);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); }

/* ─── Utilitaires ──────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-h);
}
.section-pad { padding: var(--pad-section); }

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

.section-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.025em;
    color: var(--navy);
}

/* ─── Boutons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: .92rem;
    font-weight: 600;
    border-radius: var(--r-sm);
    border: 2px solid transparent;
    transition:
        background-color var(--ease),
        border-color var(--ease),
        color var(--ease),
        transform var(--ease),
        box-shadow var(--ease);
    white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--accent); color: var(--navy); border-color: var(--accent); }
.btn-primary:hover { background: #c4a984; border-color: #c4a984; }

.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--pearl); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-full   { width: 100%; }
.btn-submit { min-width: 220px; }

/* ─── Logo ─────────────────────────────────────────── */
.logo-img       { height: 140px; width: auto; object-fit: contain; }
.logo-img--footer {
    height: 38px;
    /* Typo noire transparente → blanche sur fond navy */
    filter: brightness(0) invert(1);
    opacity: .9;
}
.logo-fallback {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.01em;
}
.logo-fallback--footer { color: var(--white); }

/* ─── Photos réelles ──────────────────────────────── */
.logement-photo {
    height: 250px;
    overflow: hidden;
}
.logement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 500ms ease;
}
.logement-card:hover .logement-img { transform: scale(1.04); }

.duo-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--r-lg);
    margin-bottom: 64px;
    display: block;
}

.profile-avatar--photo {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    margin: 0 auto 28px;
    position: relative;
    overflow: visible;
}
.avatar-img {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

/* ─── Placeholders photo ───────────────────────────── */
.photo-placeholder {
    background-color: var(--cream);
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 5px,
            rgba(46,64,87,.04) 5px,
            rgba(46,64,87,.04) 10px
        );
    border-radius: var(--r-md);
}
.photo-placeholder--duo  { width: 100%; height: 420px; border-radius: var(--r-lg); margin-bottom: 64px; }
.photo-placeholder--avatar {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    margin: 0 auto 28px;
    position: relative;
}
.avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

/* ─── Reveal animation ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    background: rgba(245,242,234,.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
    background: rgba(245,242,234,.97);
    border-bottom-color: var(--pearl);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-h);
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo { flex-shrink: 0; display: flex; align-items: center; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-link {
    font-size: .88rem;
    font-weight: 500;
    color: var(--navy);
    position: relative;
    padding-bottom: 2px;
    transition: color var(--ease);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after,
.nav-link.active-link::after { transform: scaleX(1); }

.nav-link.nav-cta {
    background: var(--navy);
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--r-sm);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover  { background: var(--accent); color: var(--navy); transform: translateY(-1px); }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: 6px;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease);
}
.burger.open span:first-child  { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:last-child   { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--cream);
    padding: 120px var(--pad-h) 80px;
}

/* Grille géométrique subtile */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(46,64,87,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,64,87,.028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 42%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 42%, black 40%, transparent 100%);
}

/* Cercles décoratifs */
.hero-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.geo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(209,187,155,.3);
}
.geo-ring--1 { width: 600px; height: 600px; top: -140px; right: -160px; }
.geo-ring--2 { width: 380px; height: 380px; bottom: 40px; left: -100px; border-color: rgba(167,185,168,.25); }
.geo-ring--3 { width: 200px; height: 200px; bottom: 120px; left: -30px; border-color: rgba(167,185,168,.18); }

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
}

.hero-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: .6;
    padding: 9px 22px;
    border: 1px solid rgba(46,64,87,.2);
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(3.2rem, 7.5vw, 5.8rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.035em;
    color: var(--navy);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(46,64,87,.55);
    font-weight: 400;
    margin-bottom: 52px;
    letter-spacing: .01em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Indicateur de scroll */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    translate: -50% 0;
    width: 1.5px;
    height: 56px;
    background: linear-gradient(to bottom, transparent 0%, var(--accent) 100%);
    animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { opacity: .2; transform: scaleY(.6); transform-origin: bottom; }
    60%      { opacity: .9; transform: scaleY(1);  transform-origin: bottom; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
    background: var(--navy);
    padding: 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--container);
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    padding: 56px 24px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    display: block;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -.04em;
}
.stat-unit {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 10px;
}
.stat-label {
    display: block;
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    margin-top: 6px;
    line-height: 1.4;
}

/* ============================================================
   CONCEPT
   ============================================================ */
.concept { background: var(--cream); }

.concept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.concept-card {
    background: var(--white);
    border: 1.5px solid var(--pearl);
    border-radius: var(--r-md);
    padding: 36px 28px;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.concept-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.concept-icon { margin-bottom: 22px; }
.concept-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy);
}
.concept-card p {
    font-size: .875rem;
    color: rgba(46,64,87,.6);
    line-height: 1.7;
}

.concept-quote {
    text-align: center;
    padding: 72px 48px;
    background: var(--white);
    border: 1.5px solid var(--pearl);
    border-radius: var(--r-lg);
}
.concept-quote p {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -.015em;
    line-height: 1.35;
    margin-bottom: 20px;
}
.quote-mark {
    color: var(--accent);
    font-size: 1.6em;
    line-height: 0;
    vertical-align: -.15em;
}
.concept-quote cite {
    font-size: .88rem;
    font-style: normal;
    font-weight: 500;
    color: rgba(46,64,87,.45);
}

/* ============================================================
   LOGEMENTS
   ============================================================ */
.logements-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 52px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 26px;
    border: 1.5px solid var(--pearl);
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 500;
    color: rgba(46,64,87,.6);
    background: transparent;
    transition: all var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--navy);
}

.logements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}
.logement-card {
    background: var(--cream);
    border: 1.5px solid var(--pearl);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: box-shadow var(--ease), transform var(--ease);
}
.logement-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.logement-card.hidden { display: none; }

.logement-photo { height: 250px; border-radius: 0; }

.logement-body { padding: 28px; }
.logement-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 22px;
    gap: 12px;
}
.logement-badge {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
}
.logement-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.03em;
    white-space: nowrap;
}
.logement-price small {
    font-size: .7rem;
    font-weight: 500;
    color: rgba(46,64,87,.45);
}

.logement-features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 28px;
}
.logement-features li {
    font-size: .86rem;
    color: rgba(46,64,87,.7);
    padding-left: 18px;
    position: relative;
}
.logement-features li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.leboncoin-block {
    text-align: center;
    padding: 52px 40px;
    border: 1.5px dashed var(--pearl);
    border-radius: var(--r-md);
}
.leboncoin-block p {
    font-size: .95rem;
    color: rgba(46,64,87,.6);
    margin-bottom: 22px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}
.service-item { text-align: center; }
.service-icon {
    width: 68px;
    height: 68px;
    background: var(--white);
    border: 1.5px solid var(--pearl);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: border-color var(--ease), box-shadow var(--ease);
}
.service-item:hover .service-icon { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.service-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.service-item p { font-size: .845rem; color: rgba(46,64,87,.58); line-height: 1.6; }

/* ============================================================
   ÉQUIPE
   ============================================================ */
.equipe { background: var(--white); }
.equipe-duo { max-width: 880px; margin: 0 auto; }

.equipe-profiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 64px;
}
.profile-card {
    background: var(--cream);
    border: 1.5px solid var(--pearl);
    border-radius: var(--r-md);
    padding: 40px 36px 36px;
    text-align: center;
    transition: border-color var(--ease), box-shadow var(--ease);
}
.profile-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }

/* Carte horizontale */
.profile-card--horiz {
    display: flex;
    align-items: stretch;
    gap: 0;
    text-align: left;
    padding: 0;
}
.profile-photo-wrap {
    width: 220px;
    flex-shrink: 0;
    overflow: hidden;
}
.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.profile-content {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.profile-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--navy);
}
.profile-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
    margin-bottom: 22px;
}
.role-tag {
    font-size: .72rem;
    font-weight: 500;
    color: rgba(46,64,87,.65);
    background: var(--white);
    border: 1px solid var(--pearl);
    padding: 4px 12px;
    border-radius: 100px;
}
.profile-bio {
    font-size: .88rem;
    color: rgba(46,64,87,.65);
    line-height: 1.75;
    text-align: left;
    margin-top: 4px;
}
.profile-bio em { color: var(--accent); font-style: italic; }

/* Encart valeurs */
.valeurs-encart {
    background: var(--navy);
    border-radius: var(--r-lg);
    padding: 72px 64px;
    text-align: center;
}
.valeurs-encart h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 56px;
    letter-spacing: -.02em;
}
.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.valeur-item { color: var(--white); }
.valeur-diamond {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
    transform: rotate(45deg);
    margin: 0 auto 18px;
}
.valeur-item strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: .01em;
}
.valeur-item p {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.temoignages { background: var(--cream); }

.slider-wrapper { max-width: 760px; margin: 0 auto; }
.slider-viewport {
    overflow: hidden;
    border-radius: var(--r-md);
}
.slider-track {
    display: flex;
    transition: transform 520ms cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.temoignage-card {
    min-width: 100%;
    background: var(--white);
    border: 1.5px solid var(--pearl);
    border-radius: var(--r-md);
    padding: 52px 48px;
}
.temoignage-text {
    font-size: 1.08rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.75;
    margin-bottom: 36px;
}
.temoignage-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--cream);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent, transparent 4px,
        rgba(46,64,87,.05) 4px,
        rgba(46,64,87,.05) 8px
    );
}
.temoignage-author strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); }
.temoignage-author span  { font-size: .78rem; color: rgba(46,64,87,.48); }

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}
.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--pearl);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--ease), color var(--ease), box-shadow var(--ease);
}
.slider-btn:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-sm); }

.slider-dots { display: flex; gap: 8px; }
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pearl);
    padding: 0;
    transition: background var(--ease), transform var(--ease);
}
.dot.active { background: var(--accent); transform: scale(1.3); }

/* ============================================================
   LOCALISATION
   ============================================================ */
.localisation-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.map-wrapper {
    height: 460px;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1.5px solid var(--pearl);
}
.map-wrapper iframe { width: 100%; height: 100%; }

.localisation-infos { display: flex; flex-direction: column; gap: 40px; }
.adresse-block h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.adresse-block p  { font-size: .9rem; color: rgba(46,64,87,.55); }

.proximites { display: flex; flex-direction: column; gap: 14px; }
.proximites li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--cream);
    border: 1.5px solid var(--pearl);
    border-radius: var(--r-sm);
    transition: border-color var(--ease);
}
.proximites li:hover { border-color: var(--accent); }
.prox-icon { font-size: 1.2rem; flex-shrink: 0; }
.proximites div { display: flex; flex-direction: column; gap: 2px; }
.proximites strong { font-size: .88rem; font-weight: 700; color: var(--navy); }
.proximites span   { font-size: .78rem; color: rgba(46,64,87,.48); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }

.contact-simple {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.contact-simple-text {
    font-size: 1.05rem;
    color: rgba(46,64,87,.7);
    line-height: 1.7;
}
.btn-contact-mail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}
.contact-simple-coords {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1.5px solid var(--pearl);
    padding-top: 28px;
    width: 100%;
}
.contact-simple-coords li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.contact-simple-coords svg { flex-shrink: 0; }
.contact-simple-coords a {
    font-size: .92rem;
    font-weight: 500;
    color: var(--navy);
    transition: color var(--ease);
}
.contact-simple-coords a:hover { color: var(--accent); }
.contact-simple-coords address {
    font-size: .88rem;
    color: rgba(46,64,87,.6);
    font-style: normal;
}

/* ============================================================
   LOGEMENTS — nouvelles classes (2 colonnes, tarification)
   ============================================================ */
.logements-intro {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
    font-size: 1rem;
    color: rgba(46,64,87,.65);
    line-height: 1.8;
}

.logements-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

.logement-price-block { display: flex; flex-direction: column; gap: 6px; }

.price-lbc-link {
    display: inline-flex;
    align-items: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent);
    border-bottom: 1px solid rgba(209,187,155,.4);
    padding-bottom: 1px;
    transition: color var(--ease), border-color var(--ease);
    margin-bottom: 16px;
}
.price-lbc-link:hover { color: #b89e7a; border-color: #b89e7a; }

.price-details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.price-details li {
    font-size: .72rem;
    color: rgba(46,64,87,.55);
    padding-left: 0;
    line-height: 1.5;
}
.price-details li::before { display: none; }

.logement-card--featured { border-color: var(--accent); }

.badge-featured {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--navy);
    padding: 3px 10px;
    border-radius: 100px;
}

/* Encart loyer */
.loyer-encart {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--cream);
    border: 1.5px solid var(--accent);
    border-radius: var(--r-md);
    padding: 32px 36px;
    margin-bottom: 52px;
}
.loyer-encart-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.loyer-encart h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.loyer-encart p {
    font-size: .88rem;
    color: rgba(46,64,87,.65);
    line-height: 1.75;
    margin-bottom: 8px;
}
.loyer-encart p:last-child { margin-bottom: 0; }
.loyer-budget { color: var(--navy) !important; }

/* Services inclus inline */
.services-inclus {
    background: var(--cream);
    border: 1.5px solid var(--pearl);
    border-radius: var(--r-md);
    padding: 40px;
    margin-bottom: 52px;
}
.services-inclus-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    text-align: center;
}
.services-inclus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.service-tag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.service-tag-item svg { flex-shrink: 0; }
.service-tag-item div { display: flex; flex-direction: column; gap: 3px; }
.service-tag-item strong { font-size: .8rem; font-weight: 700; color: var(--navy); }
.service-tag-item span  { font-size: .72rem; color: rgba(46,64,87,.5); line-height: 1.4; }

/* ============================================================
   LOCALISATION — refonte
   ============================================================ */
.localisation-intro {
    max-width: 620px;
    margin: 0 auto 52px;
    text-align: center;
    font-size: 1rem;
    color: rgba(46,64,87,.65);
    line-height: 1.8;
}

.poles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 52px;
}
.pole-card {
    background: var(--cream);
    border: 1.5px solid var(--pearl);
    border-radius: var(--r-md);
    padding: 36px 32px;
    text-align: center;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.pole-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.pole-emoji {
    display: block;
    font-size: 2rem;
    margin-bottom: 16px;
}
.pole-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
}
.pole-card ul { display: flex; flex-direction: column; gap: 8px; }
.pole-card li {
    font-size: .86rem;
    color: rgba(46,64,87,.6);
    position: relative;
    padding-left: 14px;
}
.pole-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: .8rem;
}

.map-wrapper--full {
    height: 400px;
    margin-bottom: 20px;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1.5px solid var(--pearl);
}
.map-wrapper--full iframe { width: 100%; height: 100%; }

.map-caption {
    text-align: center;
    font-size: .88rem;
    color: rgba(46,64,87,.5);
    padding-top: 4px;
}

@media (max-width: 1024px) {
    .services-inclus-grid { grid-template-columns: repeat(3, 1fr); }
    .poles-grid { grid-template-columns: 1fr; gap: 16px; }
    .pole-card { text-align: left; }
    .pole-emoji { display: inline-block; margin-bottom: 0; margin-right: 10px; vertical-align: middle; }
}
@media (max-width: 768px) {
    .logements-grid--2col { grid-template-columns: 1fr; }
    .services-inclus-grid { grid-template-columns: repeat(2, 1fr); }
    .loyer-encart { flex-direction: column; gap: 14px; padding: 24px; }
    .services-inclus { padding: 28px 20px; }
    .map-wrapper--full { height: 300px; }
}
@media (max-width: 480px) {
    .services-inclus-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AUTRES LOGEMENTS
   ============================================================ */
.autres-logements { background: var(--white); }

.autres-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
}
.autres-text { display: flex; flex-direction: column; gap: 32px; }
.autres-intro {
    font-size: 1.1rem;
    color: rgba(46,64,87,.7);
    line-height: 1.8;
    max-width: 520px;
}

.autres-encart {
    background: var(--cream);
    border: 1.5px solid var(--pearl);
    border-radius: var(--r-md);
    padding: 40px 36px;
    text-align: center;
}
.autres-encart-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 1.5px solid var(--pearl);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.autres-encart h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.35;
}
.secteurs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}
.secteurs-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .88rem;
    color: rgba(46,64,87,.7);
}
.secteur-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* Hero accroche */
.hero-accroche {
    font-size: .92rem;
    color: rgba(46,64,87,.45);
    font-weight: 400;
    margin-top: -36px;
    margin-bottom: 44px;
    letter-spacing: .01em;
}

/* Stat text (symboles non-numériques) */
.stat-text {
    display: block;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -.04em;
}

/* LeBonCoin sub-text */
.leboncoin-sub {
    font-size: .78rem;
    color: rgba(46,64,87,.42);
    margin-top: 14px;
    margin-bottom: 0;
}

/* Footer baseline */
.footer-baseline {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    letter-spacing: .01em;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: center;
    max-width: 500px;
}

@media (max-width: 1024px) {
    .autres-layout { grid-template-columns: 1fr; gap: 40px; }
    .autres-intro { max-width: 100%; }
    .autres-encart { max-width: 440px; }
}
@media (max-width: 768px) {
    .autres-encart { max-width: 100%; }
    .hero-accroche { margin-top: -28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); padding: 72px var(--pad-h); }
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    transition: color var(--ease);
}
.footer-nav a:hover { color: var(--accent); }
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.3); }

/* ============================================================
   RESPONSIVE — Tablette ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
    :root { --pad-h: 28px; --pad-section: 88px 0; }

    .concept-grid,
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.08); }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }

    .logements-grid { grid-template-columns: repeat(2, 1fr); }

    .localisation-layout { grid-template-columns: 1fr; }
    .map-wrapper { height: 360px; }

    .contact-simple { max-width: 100%; }

    .valeurs-grid { grid-template-columns: 1fr; gap: 32px; }
    .valeurs-encart { padding: 52px 40px; }
}

/* ============================================================
   RESPONSIVE — Mobile ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
    :root { --pad-h: 20px; --pad-section: 72px 0; }

    /* Navbar mobile */
    .nav-links {
        display: none;
        position: fixed;
        inset: 74px 0 0;
        background: var(--cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 800;
        padding: 40px 20px;
    }
    .nav-links.open { display: flex; }
    .nav-link { font-size: 1.2rem; }
    .nav-link.nav-cta { font-size: 1rem; }
    .burger { display: flex; }

    .hero-title { font-size: clamp(2.6rem, 11vw, 3.8rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }

    .concept-grid { grid-template-columns: 1fr; gap: 16px; }
    .concept-quote { padding: 44px 28px; }

    .logements-grid { grid-template-columns: 1fr; }
    .logements-filters { gap: 8px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    .equipe-profiles { grid-template-columns: 1fr; gap: 24px; }
    .profile-card--horiz { flex-direction: column; }
    .profile-photo-wrap { width: 100%; height: 280px; }
    .profile-content { padding: 28px 24px; }
    .photo-placeholder--duo { height: 280px; margin-bottom: 40px; }
    .valeurs-encart { padding: 40px 24px; }

    .temoignage-card { padding: 36px 24px; }

    .form-row { grid-template-columns: 1fr; }

    .localisation-layout { gap: 28px; }
    .map-wrapper { height: 300px; }

    .footer-nav { gap: 20px; }
    .footer { padding: 56px var(--pad-h); }
}

/* ============================================================
   RESPONSIVE — Petit mobile ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 36px 16px; }
    .hero-tag { font-size: .65rem; padding: 7px 16px; }
}

/* ============================================================
   PRÉFÉRENCES DE MOUVEMENT RÉDUIT
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
