/*
 * imse-home-sections.css — Phase 2 refonte homepage S108 22/05/2026
 * Bio Julien + Communes Grid + Process 3 étapes
 */

/* ===========================================
   BIO JULIEN section
   =========================================== */

.imse-home-bio {
    background: #FAF4E5;
    padding: 5rem 1.5rem;
    color: #0F2236;
}
.imse-home-bio__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 900px) {
    .imse-home-bio__inner { grid-template-columns: 320px 1fr; }
}
.imse-home-bio__media {
    text-align: center;
}
.imse-home-bio__portrait {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #F4A340;
    box-shadow: 0 10px 40px rgba(15, 34, 54, 0.15);
}
.imse-home-bio__eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #F4A340;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.imse-home-bio__title {
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    color: #0F2236;
    margin: 0 0 1.5rem;
}
.imse-home-bio__title em {
    font-style: italic;
    font-weight: 400;
    color: #1E3A5F;
}
.imse-home-bio__lede {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #1E3A5F;
    margin: 0 0 1.25rem;
}
.imse-home-bio__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(15, 34, 54, 0.15);
    border-bottom: 1px solid rgba(15, 34, 54, 0.15);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.imse-home-bio__stat {
    text-align: center;
}
.imse-home-bio__stat-value {
    display: block;
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.8rem;
    color: #F4A340;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.imse-home-bio__stat-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #1E3A5F;
    line-height: 1.35;
}
.imse-home-bio__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    font-family: 'JetBrains Mono', 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #1E3A5F;
    margin-bottom: 1.5rem;
}
.imse-home-bio__credentials strong { color: #0F2236; }
.imse-home-bio__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.imse-home-bio__cta {
    padding: 0.85rem 1.75rem;
    background: #0F2236;
    color: #FAF4E5;
    border-radius: 999px;
    border: 2px solid #0F2236;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}
.imse-home-bio__cta:hover {
    background: #F4A340;
    color: #0F2236;
    border-color: #F4A340;
}
.imse-home-bio__cta--ghost {
    background: transparent;
    color: #0F2236;
}
.imse-home-bio__cta--ghost:hover {
    background: #0F2236;
    color: #FAF4E5;
}

/* ===========================================
   COMMUNES GRID section
   =========================================== */

.imse-home-communes {
    background: #FAF4E5;
    padding: 5rem 1.5rem;
}
.imse-home-communes__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.imse-home-communes__header {
    text-align: center;
    margin-bottom: 3rem;
}
.imse-home-communes__eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #F4A340;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.imse-home-communes__title {
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: #0F2236;
    margin: 0 0 1rem;
}
.imse-home-communes__title em {
    font-style: italic;
    font-weight: 400;
    color: #1E3A5F;
}
.imse-home-communes__subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    color: #1E3A5F;
}
.imse-home-communes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
@media (min-width: 900px) {
    .imse-home-communes__grid { grid-template-columns: repeat(3, 1fr); }
}
.imse-home-communes__card {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    background-image: var(--imse-commune-image);
    background-size: cover;
    background-position: center center;
    text-decoration: none;
    color: #fff;
    isolation: isolate;
    transition: transform 0.3s ease;
}
.imse-home-communes__card:hover { transform: translateY(-4px) scale(1.02); }
.imse-home-communes__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 34, 54, 0.05) 0%, rgba(15, 34, 54, 0.85) 100%);
    z-index: 1;
}
.imse-home-communes__card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #FAF4E5;
}
.imse-home-communes__card-cp {
    display: block;
    font-family: 'JetBrains Mono', 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #F4A340;
    margin-bottom: 0.3rem;
    letter-spacing: 0.08em;
}
.imse-home-communes__card-name {
    display: block;
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1.1;
}
.imse-home-communes__card-desc {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(250, 244, 229, 0.85);
    line-height: 1.4;
}
.imse-home-communes__footnote {
    text-align: center;
    margin-top: 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1E3A5F;
}
.imse-home-communes__footnote a {
    color: #F4A340;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #F4A340;
}
.imse-home-communes__footnote a:hover { color: #0F2236; border-bottom-color: #0F2236; }

/* ===========================================
   PROCESS 3 ÉTAPES section
   =========================================== */

.imse-home-process {
    background: #0F2236;
    color: #FAF4E5;
    padding: 5rem 1.5rem 6rem;
}
.imse-home-process__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.imse-home-process__header {
    text-align: center;
    margin-bottom: 4rem;
}
.imse-home-process__eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #F4A340;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.imse-home-process__title {
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: #fff;
    margin: 0;
}
.imse-home-process__title em {
    font-style: italic;
    font-weight: 400;
    color: #F4A340;
}
.imse-home-process__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 900px) {
    .imse-home-process__steps { grid-template-columns: repeat(3, 1fr); }
}
.imse-home-process__step {
    background: rgba(250, 244, 229, 0.05);
    border-left: 3px solid #F4A340;
    padding: 2rem 1.75rem;
    border-radius: 0 12px 12px 0;
}
.imse-home-process__step-number {
    display: block;
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-style: italic;
    font-size: 2.5rem;
    color: #F4A340;
    line-height: 1;
    margin-bottom: 0.75rem;
}
.imse-home-process__step-title {
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 0.85rem;
}
.imse-home-process__step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(250, 244, 229, 0.85);
    margin: 0;
}
.imse-home-process__step-desc strong { color: #fff; }
.imse-home-process__cta {
    text-align: center;
    margin-top: 4rem;
}
.imse-home-process__cta-btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: #F4A340;
    color: #0F2236;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
}
.imse-home-process__cta-btn:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

/* ===========================================
   CORRECTION 5 — Homepage polish spacing + hiérarchie (S108 Julien)
   =========================================== */

/* Spacing cohérent sections homepage : 4rem desktop / 2.5rem mobile */
.imse-home-bio,
.imse-home-communes,
.imse-home-process,
.imse-services-mosaic {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}
@media (min-width: 900px) {
    .imse-home-bio,
    .imse-home-communes,
    .imse-home-process,
    .imse-services-mosaic {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }
}
@media (max-width: 720px) {
    .imse-home-bio,
    .imse-home-communes,
    .imse-home-process,
    .imse-services-mosaic {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* Bio section : portrait + texte alignés en haut sur desktop */
@media (min-width: 900px) {
    .imse-home-bio__inner {
        align-items: start !important;
        padding-top: 1rem;
    }
}

/* Stats grid : meilleur visual hierarchy */
.imse-home-bio__stat-value {
    font-size: 1.6rem !important;
}
.imse-home-bio__stat-label {
    font-size: 0.75rem !important;
}

/* Process steps : meilleure aération */
.imse-home-process__step {
    padding: 1.75rem 1.5rem !important;
}
.imse-home-process__step-title {
    font-size: 1.2rem !important;
}
.imse-home-process__step-desc {
    font-size: 0.88rem !important;
}

/* Communes grid : aspect 4/3 -> 3/2 (plus visible) + card name plus impactant */
.imse-home-communes__card {
    aspect-ratio: 3 / 2 !important;
}
.imse-home-communes__card-name {
    font-size: 1.4rem !important;
}
.imse-home-communes__card-desc {
    font-size: 0.78rem !important;
}

/* Mosaic 4 services : cards plus compactes */
.imse-services-mosaic__card {
    aspect-ratio: 4 / 3 !important;
}
.imse-services-mosaic__card-label {
    font-size: 1.25rem !important;
}
.imse-services-mosaic__card-desc {
    font-size: 0.78rem !important;
}

/* ===========================================
   FORM TEASER (V2.A.4) — Form 4 questions hero
   =========================================== */
.imse-home-form-teaser {
    background: linear-gradient(135deg, #0F2236 0%, #1E3A5F 100%);
    color: #FAF4E5;
    padding: 3.5rem 1.5rem;
}
.imse-home-form-teaser__inner {
    max-width: 880px;
    margin: 0 auto;
}
.imse-home-form-teaser__header { text-align: center; margin-bottom: 2rem; }
.imse-home-form-teaser__eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #F4A340;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.85rem;
    border: 1px solid rgba(244, 163, 64, 0.4);
    border-radius: 999px;
}
.imse-home-form-teaser__title {
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1.2;
    margin: 0.5rem 0;
    color: #fff;
}
.imse-home-form-teaser__title em { font-style: italic; font-weight: 400; color: #F4A340; }
.imse-home-form-teaser__subtitle {
    max-width: 620px;
    margin: 0.75rem auto 0;
    font-size: 0.95rem;
    color: rgba(250, 244, 229, 0.85);
    line-height: 1.5;
}

.imse-home-form-teaser__form {
    background: rgba(250, 244, 229, 0.04);
    border: 1px solid rgba(244, 163, 64, 0.15);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    backdrop-filter: blur(8px);
}
.imse-home-form-teaser__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (min-width: 700px) {
    .imse-home-form-teaser__row { grid-template-columns: 1fr 1fr; }
}
.imse-home-form-teaser__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.imse-home-form-teaser__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #F4A340;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.imse-home-form-teaser__optional {
    font-weight: 400;
    color: rgba(250, 244, 229, 0.55);
    text-transform: none;
    letter-spacing: 0;
}
.imse-home-form-teaser__input,
.imse-home-form-teaser__select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: rgba(15, 34, 54, 0.6);
    color: #FAF4E5;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    border: 1px solid rgba(244, 163, 64, 0.25);
    border-radius: 6px;
    transition: border-color 0.2s ease;
}
.imse-home-form-teaser__input::placeholder { color: rgba(250, 244, 229, 0.4); }
.imse-home-form-teaser__input:focus,
.imse-home-form-teaser__select:focus {
    outline: none;
    border-color: #F4A340;
    box-shadow: 0 0 0 3px rgba(244, 163, 64, 0.15);
}
.imse-home-form-teaser__cta {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #F4A340 0%, #fbbf24 100%);
    color: #0F2236;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
}
.imse-home-form-teaser__cta:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #F4A340 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(244, 163, 64, 0.3);
}
.imse-home-form-teaser__arrow { font-size: 1.15rem; }
.imse-home-form-teaser__legal {
    margin: 1.25rem 0 0;
    font-size: 0.72rem;
    color: rgba(250, 244, 229, 0.55);
    text-align: center;
    line-height: 1.5;
}
.imse-home-form-teaser__legal a { color: #F4A340; }

/* ===========================================
   WORDCLOUD 150 keywords (V2.A.5)
   =========================================== */
.imse-home-wordcloud {
    background: #0F2236;
    color: #FAF4E5;
    padding: 3.5rem 1.5rem 4rem;
}
.imse-home-wordcloud__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.imse-home-wordcloud__header {
    text-align: center;
    margin-bottom: 2rem;
}
.imse-home-wordcloud__eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #F4A340;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.imse-home-wordcloud__title {
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1.2;
    margin: 0.5rem 0;
    color: #fff;
}
.imse-home-wordcloud__title em { font-style: italic; font-weight: 400; color: #F4A340; }
.imse-home-wordcloud__subtitle {
    max-width: 620px;
    margin: 0.75rem auto 0;
    font-size: 0.92rem;
    color: rgba(250, 244, 229, 0.7);
}
.imse-home-wordcloud__cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.4rem 0.85rem;
    line-height: 1.4;
    padding: 1.5rem;
    background: rgba(244, 163, 64, 0.04);
    border: 1px solid rgba(244, 163, 64, 0.1);
    border-radius: 12px;
}
.imse-home-wordcloud__word {
    display: inline-block;
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-style: italic;
    font-size: var(--imse-wc-size);
    color: rgba(250, 244, 229, 0.78);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}
.imse-home-wordcloud__word:hover {
    color: #F4A340;
    transform: translateY(-2px);
}
/* Color top 20 in gold for emphasis */
.imse-home-wordcloud__word:nth-child(-n+20) {
    color: #F4A340;
    font-weight: 600;
}
.imse-home-wordcloud__word:nth-child(-n+20):hover { color: #fff; }

/* ===========================================
   V6.T — Blog hub cards refondu
   =========================================== */
.imse-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}
@media (min-width: 700px) {
    .imse-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .imse-blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.imse-blog-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15, 34, 54, 0.08);
    border-radius: 12px;
    padding: 1.75rem 1.5rem 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 240px;
}
.imse-blog-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4A340 0%, #fbbf24 100%);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.imse-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 34, 54, 0.12);
    border-color: rgba(244, 163, 64, 0.25);
}
.imse-blog-card:hover::before { opacity: 1; }

.imse-blog-card--featured {
    background: linear-gradient(135deg, #FAF4E5 0%, #fff 100%);
    border-color: rgba(244, 163, 64, 0.3);
}
.imse-blog-card--featured::before { opacity: 1; }

.imse-blog-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(244, 163, 64, 0.12);
    border-radius: 50%;
    color: #F4A340;
    font-size: 1.5rem;
}

.imse-blog-card__badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.25rem 0.7rem;
    background: rgba(30, 58, 95, 0.08);
    color: #1E3A5F;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
}
.imse-blog-card__badge--vendeur { background: rgba(244, 163, 64, 0.18); color: #d18020; }
.imse-blog-card__badge--acheteur { background: rgba(76, 153, 110, 0.15); color: #2d6b4a; }
.imse-blog-card__badge--marche { background: rgba(94, 122, 175, 0.15); color: #3e5b8e; }
.imse-blog-card__badge--juridique { background: rgba(170, 70, 70, 0.12); color: #8a3232; }
.imse-blog-card__badge--patrimoine { background: rgba(120, 90, 60, 0.12); color: #6b4d2c; }

.imse-blog-card h3 {
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.25;
    margin: 0;
    color: #0F2236;
}
.imse-blog-card h3 a {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.3s ease;
}
.imse-blog-card:hover h3 a {
    background-size: 100% 1px;
}

.imse-blog-card__excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #475569;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.imse-blog-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(15, 34, 54, 0.06);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #6b7a8d;
}
.imse-blog-card__cta {
    color: #F4A340;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s ease;
}
.imse-blog-card:hover .imse-blog-card__cta { gap: 0.5rem; }

.imse-blog-cta {
    background: linear-gradient(135deg, #0F2236 0%, #1E3A5F 100%);
    color: #FAF4E5;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0 1rem;
}
.imse-blog-cta h3 {
    font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
    font-style: italic;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 0 0.75rem;
}
.imse-blog-cta p { margin: 0 0 1.25rem; color: rgba(250, 244, 229, 0.85); }
.imse-blog-cta .cta-btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    background: #F4A340;
    color: #0F2236;
    text-decoration: none;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}
.imse-blog-cta .cta-btn:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

/* ===========================================
   V6.U — Renforcer 6 communes phares homepage
   =========================================== */
.imse-home-communes__card-cta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: rgba(244, 163, 64, 0.18);
    color: #F4A340;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.25s ease;
    align-self: flex-start;
}
.imse-home-communes__card:hover .imse-home-communes__card-cta {
    background: #F4A340;
    color: #0F2236;
}

/* === V7.2.2 — Section 2 narrative courte (remplace stats) === */
.imse-home-bio--v722 {
    background: var(--imse-cream, #F5EBD9);
    padding: 6rem 1.5rem;
}
.imse-home-bio--v722 .imse-home-bio__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}
.imse-home-bio--v722 .imse-home-bio__media {
    flex: 0 0 280px;
}
.imse-home-bio--v722 .imse-home-bio__portrait {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 36px rgba(15, 34, 54, 0.18);
    border: 4px solid #F4A340;
}
.imse-home-bio--v722 .imse-home-bio__body {
    flex: 1;
}
.imse-home-bio--v722 .imse-home-bio__title {
    font-family: var(--imse-font-serif, "Fraunces", "DM Serif Display", Georgia, serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--imse-navy, #0F2236);
    line-height: 1.2;
    margin: 0 0 1.5rem;
}
.imse-home-bio--v722 .imse-home-bio__lede {
    font-family: var(--imse-font-sans, "Inter", sans-serif);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--imse-ink, #1f2933);
    margin: 0 0 2rem;
}
.imse-home-bio--v722 .imse-home-bio__cta--ghost {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--imse-navy, #0F2236);
    border: 2px solid var(--imse-navy, #0F2236);
    border-radius: 999px;
    font-family: var(--imse-font-sans, "Inter", sans-serif);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.imse-home-bio--v722 .imse-home-bio__cta--ghost:hover {
    background: var(--imse-navy, #0F2236);
    color: var(--imse-cream, #F5EBD9);
}
@media (max-width: 768px) {
    .imse-home-bio--v722 {
        padding: 4rem 1rem;
    }
    .imse-home-bio--v722 .imse-home-bio__inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .imse-home-bio--v722 .imse-home-bio__media {
        flex: 0 0 auto;
    }
    .imse-home-bio--v722 .imse-home-bio__portrait {
        width: 200px;
        height: 200px;
    }
}

/* === V7.3.3 — Espace Section 1/2 comble (form rapproche du hero) === */
.imse-home-form-teaser {
    padding-top: 2rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
}
.imse-hero-banner--v721 {
    margin-bottom: 0 !important;
}
/* Transition douce navy hero -> navy form */
.imse-home-form-teaser {
    border-top: 1px solid rgba(244, 163, 64, 0.15);
}
