/* ── Exteriorea — Archetype AM : ESPALIER ──────────────────────────────── */
/* Fond vert nuit (header/hero/footer) + corps blanc + paille persona        */
/* Display : Josefin Sans 700 uppercase | Corps : Source Sans 3              */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,300;0,400;0,700;1,300;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
    /* Fonds */
    --ea-nuit:    #152618;    /* vert nuit — header, hero, footer */
    --ea-vert:    #1F3D2A;    /* vert forêt moyen */
    --ea-fond:    #FFFFFF;    /* fond page principal */
    --ea-surface: #F3F6F2;    /* fond surfaces articles */
    --ea-paille:  #EAE0B8;    /* paille/foin — section persona */
    --ea-tint:    #D8EBD4;    /* vert pâle — fond section catégories */

    /* Typographie */
    --ea-encre:       #0F1710;    /* texte sur blanc */
    --ea-ink-soft:    #4E5E52;    /* muted sur blanc */
    --ea-clair:       #EDE9DF;    /* texte sur vert sombre */
    --ea-clair-soft:  #8BA48E;    /* muted sur vert sombre */

    /* Lignes */
    --ea-ligne:       #D6E4D2;    /* séparateurs sur blanc */
    --ea-paille-lig:  #C4B47E;    /* séparateurs sur paille */

    /* Accents */
    --ea-vif:         #3A9056;    /* vert vif (CTA, bullets, accents) */
    --ea-vif-hover:   #2E7244;    /* hover */
    --ea-vif-hero:    #7ED49A;    /* vert clair sur fond sombre */

    /* Méta */
    --ea-r: 3px;
    --ea-hh: 72px;    /* hauteur header */
    --ea-gap: clamp(24px, 4vw, 48px);
    --ea-max: 1220px;
}

/* ── Reset & base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ea-encre);
    background: var(--ea-fond);
    -webkit-font-smoothing: antialiased;
    padding-top: var(--ea-hh);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--ea-vif); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ea-vif-hover); }
ul { list-style: none; }

/* Container */
.ea-fil {
    max-width: var(--ea-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

/* ── Typographie ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.25rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1rem, 2vw, 1.35rem); }

em { font-style: italic; }

/* ── Boutons ────────────────────────────────────────────────────────────── */
.ea-bouton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 13px 28px;
    border: 2px solid var(--ea-vif);
    color: var(--ea-vif);
    background: transparent;
    border-radius: var(--ea-r);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    line-height: 1;
}
.ea-bouton:hover { background: var(--ea-vif); color: #fff; }
.ea-bouton--plein { background: var(--ea-vif); color: #fff; }
.ea-bouton--plein:hover { background: var(--ea-vif-hover); border-color: var(--ea-vif-hover); color: #fff; }
.ea-bouton--clair {
    border-color: var(--ea-vif-hero);
    color: var(--ea-vif-hero);
}
.ea-bouton--clair:hover { background: var(--ea-vif-hero); color: var(--ea-nuit); }

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.ea-serre {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--ea-hh);
    background: var(--ea-nuit);
    z-index: 100;
    display: flex;
    align-items: center;
}
.ea-serre-inner {
    max-width: var(--ea-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.ea-serre-logo a {
    display: flex;
    align-items: center;
    color: var(--ea-clair);
    text-decoration: none;
}
.ea-serre-logo a:hover { color: var(--ea-clair); opacity: 0.85; }

/* Navigation */
.ea-serre-nav { display: flex; align-items: center; gap: 2px; }
.ea-serre-nav a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ea-clair-soft);
    padding: 8px 14px;
    border-radius: var(--ea-r);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    text-decoration: none;
}
.ea-serre-nav a:hover { color: var(--ea-clair); background: rgba(255,255,255,0.06); }
.ea-serre-nav a.ea-nav-contact {
    color: var(--ea-vif-hero);
    border: 1px solid rgba(126,212,154,0.35);
    margin-left: 8px;
}
.ea-serre-nav a.ea-nav-contact:hover { background: rgba(126,212,154,0.12); }

/* Menu mobile */
.ea-nav-close, .ea-nav-logo-mobile { display: none; }

.ea-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.ea-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ea-clair);
    transition: transform 0.2s, opacity 0.2s;
}

/* ── HERO / FACADE ──────────────────────────────────────────────────────── */
.ea-facade {
    background: var(--ea-nuit);
    padding-top: 72px;
    padding-bottom: 0;
}
.ea-facade-corps {
    padding: clamp(40px, 8vw, 96px) 0 clamp(32px, 6vw, 64px);
}
.ea-facade-meta {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ea-vif-hero);
    margin-bottom: 28px;
}
.ea-facade-titre {
    color: var(--ea-clair);
    margin-bottom: 24px;
    font-size: clamp(2.6rem, 7vw, 6.5rem);
    letter-spacing: 0.02em;
}
.ea-facade-titre .ea-titre-desc {
    display: block;
    font-weight: 100;
    font-size: 0.42em;
    color: var(--ea-clair-soft);
    margin-top: 12px;
    letter-spacing: 0.06em;
}
.ea-facade-titre em {
    color: var(--ea-vif-hero);
    font-style: italic;
}
.ea-facade-deck {
    font-size: 1.1rem;
    color: var(--ea-clair-soft);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.6;
    font-weight: 300;
}
.ea-facade-chiffres {
    display: flex;
    gap: clamp(24px, 5vw, 64px);
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.ea-chiffre-num {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--ea-clair);
    line-height: 1;
}
.ea-chiffre-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ea-clair-soft);
    margin-top: 6px;
}

/* ── BANDE DE PHOTOS (accordéon) ────────────────────────────────────────── */
.ea-bande {
    display: flex;
    gap: 2px;
    height: clamp(180px, 22vw, 280px);
    overflow: hidden;
    background: var(--ea-nuit);
}
.ea-bande-photo {
    flex: 1;
    min-width: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65) saturate(0.75);
    transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.35s ease;
    cursor: pointer;
    position: relative;
}
.ea-bande-photo::after {
    content: attr(data-cat);
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0);
    transition: color 0.3s ease;
}
.ea-bande-photo:hover {
    flex: 3;
    filter: brightness(0.88) saturate(1.05);
}
.ea-bande-photo:hover::after { color: rgba(255,255,255,0.9); }

/* ── SECTION ARTICLES / JOURNAL ─────────────────────────────────────────── */
.ea-journal {
    padding: clamp(48px, 8vw, 96px) 0;
}
.ea-journal-titre {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: clamp(28px, 4vw, 48px);
}
.ea-journal-titre h2 {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--ea-ink-soft);
}
.ea-journal-titre::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ea-ligne);
}

/* Vedette (premier article) */
.ea-vedette {
    display: grid;
    grid-template-columns: 55% 1fr;
    min-height: 420px;
    border-top: 2.5px solid var(--ea-vif);
    margin-bottom: 2px;
    text-decoration: none;
    color: inherit;
}
.ea-vedette:hover .ea-vedette-titre { color: var(--ea-vif); }
.ea-vedette-visuel {
    position: relative;
    overflow: hidden;
    aspect-ratio: unset;
}
.ea-vedette-visuel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ea-vedette:hover .ea-vedette-visuel img { transform: scale(1.04); }
.ea-vedette-corps {
    padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
    background: var(--ea-surface);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.ea-vedette-cat {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ea-vif);
}
.ea-vedette-titre {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--ea-encre);
    transition: color 0.2s;
    line-height: 1.2;
}
.ea-vedette-extrait {
    font-size: 0.95rem;
    color: var(--ea-ink-soft);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ea-vedette-meta {
    font-size: 0.7rem;
    color: var(--ea-ink-soft);
    font-weight: 300;
    letter-spacing: 0.04em;
}

/* Grille articles (planche) */
.ea-planche {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--ea-ligne);
}
.ea-semis {
    background: var(--ea-fond);
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}
.ea-semis:hover { background: var(--ea-surface); }
.ea-semis:hover .ea-semis-titre { color: var(--ea-vif); }
.ea-semis-visuel {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ea-tint);
    margin-bottom: 6px;
}
.ea-semis-visuel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ea-semis:hover .ea-semis-visuel img { transform: scale(1.05); }
.ea-semis-cat {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ea-vif);
}
.ea-semis-titre {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ea-encre);
    line-height: 1.3;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ea-semis-meta {
    font-size: 0.65rem;
    color: var(--ea-ink-soft);
    margin-top: auto;
    font-weight: 300;
}

/* ── SECTION PERSONA / TERRAIN ──────────────────────────────────────────── */
.ea-terrain {
    background: var(--ea-paille);
    padding: clamp(48px, 8vw, 96px) 0;
}
.ea-terrain-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}
.ea-terrain-portrait {
    position: relative;
}
.ea-terrain-portrait-cadre {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid var(--ea-paille-lig);
}
.ea-terrain-portrait-cadre img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.ea-terrain-portrait-cadre::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--ea-vif);
    pointer-events: none;
    z-index: 1;
}
.ea-terrain-corps { display: flex; flex-direction: column; gap: 20px; }
.ea-terrain-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ea-vif);
}
.ea-terrain-nom {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ea-encre);
    line-height: 1.1;
}
.ea-terrain-role {
    font-size: 0.85rem;
    color: var(--ea-ink-soft);
    letter-spacing: 0.04em;
}
.ea-terrain-bio {
    font-size: 0.95rem;
    color: var(--ea-encre);
    line-height: 1.7;
    border-top: 1px solid var(--ea-paille-lig);
    padding-top: 20px;
}
.ea-terrain-bio p + p { margin-top: 0.8em; }
.ea-terrain-bio ul { margin-top: 0.6em; margin-bottom: 0.6em; }
.ea-terrain-bio ul li {
    position: relative;
    padding-left: 1.4em;
    margin-bottom: 0.4em;
}
.ea-terrain-bio ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 8px;
    height: 8px;
    border-left: 2px solid var(--ea-vif);
    border-bottom: 2px solid var(--ea-vif);
}

/* ── SECTION CATÉGORIES / JALONS ────────────────────────────────────────── */
.ea-jalons-section {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--ea-fond);
}
.ea-jalons-titre {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: clamp(24px, 4vw, 40px);
}
.ea-jalons-titre h2 {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--ea-ink-soft);
    white-space: nowrap;
}
.ea-jalons-titre::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ea-ligne);
}
.ea-jalons { }
.ea-jalon {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 26px 0;
    border-top: 1px solid var(--ea-ligne);
    text-decoration: none;
    color: var(--ea-encre);
    position: relative;
    overflow: hidden;
    transition: color 0.25s ease, padding-left 0.28s ease;
}
.ea-jalon:last-child { border-bottom: 1px solid var(--ea-ligne); }
.ea-jalon::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--ea-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    filter: saturate(0.6) brightness(0.35);
    z-index: 0;
}
.ea-jalon > * { position: relative; z-index: 1; }
.ea-jalon:hover::before { opacity: 1; }
.ea-jalon:hover { color: var(--ea-clair); padding-left: 20px; }
.ea-jalon:hover .ea-jalon-desc { color: var(--ea-clair-soft); }
.ea-jalon:hover .ea-jalon-compteur { color: var(--ea-vif-hero); }
.ea-jalon-num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--ea-ink-soft);
    transition: color 0.25s;
}
.ea-jalon:hover .ea-jalon-num { color: var(--ea-clair-soft); }
.ea-jalon-info { display: flex; flex-direction: column; gap: 3px; }
.ea-jalon-nom {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}
.ea-jalon-desc {
    font-size: 0.8rem;
    color: var(--ea-ink-soft);
    transition: color 0.25s;
    font-weight: 300;
}
.ea-jalon-compteur {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ea-vif);
    white-space: nowrap;
    transition: color 0.25s;
}

/* ── FOOTER / FONDATIONS ────────────────────────────────────────────────── */
.ea-fondations {
    background: var(--ea-nuit);
    padding: clamp(48px, 8vw, 80px) 0 0;
    color: var(--ea-clair-soft);
}
.ea-fondations-grille {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    padding-bottom: clamp(40px, 6vw, 64px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ea-fondations a {
    color: var(--ea-clair-soft);
    font-size: 0.85rem;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.ea-fondations a:hover { color: var(--ea-vif-hero); }
.ea-fondations-titre {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ea-clair-soft);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ea-fondations-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--ea-clair-soft);
    margin-top: 16px;
}
.ea-fondations-art {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
    text-decoration: none !important;
    color: inherit;
}
.ea-fondations-art:hover { color: inherit; }
.ea-fondations-art:hover .ea-fondations-art-titre { color: var(--ea-vif-hero); }
.ea-fondations-art-vignette {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--ea-vert);
}
.ea-fondations-art-vignette img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ea-fondations-art-titre {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--ea-clair-soft);
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ea-fondations-pied {
    padding: 20px 0;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.06em;
}

/* ── HEROES INTERNES ────────────────────────────────────────────────────── */
.ea-hero-interne {
    background: var(--ea-nuit);
    padding: calc(var(--ea-hh) + clamp(32px, 5vw, 64px)) 0 clamp(32px, 5vw, 64px);
}
.ea-hero-interne.ea-hero-photo {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}
.ea-hero-interne.ea-hero-photo .ea-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) saturate(0.7);
}
.ea-hero-interne .ea-fil { position: relative; z-index: 1; width: 100%; }
.ea-hero-fil {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    color: var(--ea-clair-soft);
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}
.ea-hero-fil a { color: var(--ea-clair-soft); }
.ea-hero-fil a:hover { color: var(--ea-vif-hero); }
.ea-hero-fil span { color: rgba(255,255,255,0.35); }
.ea-hero-cat {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ea-vif-hero);
    margin-bottom: 12px;
}
.ea-hero-h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ea-clair);
    line-height: 1.15;
}
.ea-hero-meta {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--ea-clair-soft);
    font-weight: 300;
}

/* ── ARTICLE SINGLE ─────────────────────────────────────────────────────── */
.ea-post-vignette {
    max-width: 860px;
    margin: 0 auto 40px;
    padding: 0 clamp(20px, 4vw, 48px);
}
.ea-post-vignette-cadre {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--ea-r);
    max-height: 520px;
}
.ea-post-vignette-cadre img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ea-post-corps {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px) clamp(48px, 8vw, 80px);
}
.entry-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ea-encre);
    margin-top: 32px;
}
.entry-content h2 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin: 2em 0 0.8em;
    color: var(--ea-encre);
    border-bottom: 2px solid var(--ea-vif);
    padding-bottom: 8px;
}
.entry-content h3 {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    margin: 1.6em 0 0.6em;
    color: var(--ea-encre);
}
.entry-content p + p { margin-top: 1.1em; }
.entry-content img { border-radius: var(--ea-r); max-height: 480px; object-fit: cover; margin: 24px auto; }

/* ── Bullets décoratifs entry-content (angle droit "L") ─────────────────── */
.entry-content ul { list-style: none; padding-left: 0; margin-bottom: 1.4em; }
.entry-content ol { list-style: decimal; padding-left: 1.5em; margin-bottom: 1.4em; }
.entry-content ul li { position: relative; padding-left: 1.5em; margin-bottom: 0.55em; }
.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 8px;
    height: 8px;
    border-left: 2px solid var(--ea-vif);
    border-bottom: 2px solid var(--ea-vif);
    flex-shrink: 0;
}
.entry-content ol li { margin-bottom: 0.5em; }

.ea-tags {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--ea-ligne);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ea-tag {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid var(--ea-ligne);
    color: var(--ea-ink-soft);
    border-radius: var(--ea-r);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.ea-tag:hover { border-color: var(--ea-vif); color: var(--ea-vif); }

/* Bloc auteur */
.ea-auteur {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--ea-surface);
    border-left: 3px solid var(--ea-vif);
    margin-top: 48px;
}
.ea-auteur-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--ea-tint);
}
.ea-auteur-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ea-auteur-nom {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ea-encre);
    margin-bottom: 4px;
}
.ea-auteur-role { font-size: 0.75rem; color: var(--ea-ink-soft); margin-bottom: 10px; }
.ea-auteur-bio { font-size: 0.88rem; color: var(--ea-ink-soft); line-height: 1.65; }

/* Articles similaires */
.ea-similaires {
    padding: clamp(40px, 6vw, 64px) 0;
    background: var(--ea-surface);
    border-top: 1px solid var(--ea-ligne);
}
.ea-similaires-titre {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--ea-ink-soft);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.ea-similaires-titre::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ea-ligne);
}
.ea-similaires-grille {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--ea-ligne);
}

/* ── ARCHIVE CATÉGORIE ──────────────────────────────────────────────────── */
.ea-archive-grille {
    padding: clamp(40px, 6vw, 64px) 0 clamp(48px, 8vw, 80px);
}
.ea-archive-grille-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--ea-ligne);
}
.ea-archive-seo {
    padding: clamp(40px, 6vw, 64px) 0;
    background: var(--ea-surface);
}
.ea-archive-seo-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.ea-archive-seo-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.ea-archive-seo-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--ea-r);
}
.ea-archive-seo-texte h2 {
    margin-bottom: 16px;
    font-size: clamp(1rem, 2vw, 1.4rem);
}
.ea-archive-seo-intro { font-size: 0.95rem; color: var(--ea-ink-soft); line-height: 1.7; margin-bottom: 12px; }
.ea-archive-seo-liste { list-style: none; margin: 12px 0; }
.ea-archive-seo-liste li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--ea-ink-soft);
}
.ea-archive-seo-liste li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ea-vif);
    font-family: monospace;
}
.ea-archive-seo-outro { font-size: 0.9rem; color: var(--ea-ink-soft); line-height: 1.65; }

/* ── PAGE CONTACT ───────────────────────────────────────────────────────── */
.ea-contact-section {
    padding: clamp(40px, 6vw, 72px) 0;
}
.ea-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
.ea-contact-intro-titre {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 16px;
}
.ea-contact-intro-texte { font-size: 0.95rem; color: var(--ea-ink-soft); line-height: 1.7; }
.ea-contact-form-panel {
    background: var(--ea-surface);
    padding: 32px;
    border-top: 3px solid var(--ea-vif);
}

/* CF7 */
.wpcf7-form p { display: flex; flex-direction: column; gap: 6px; margin: 0 0 18px; }
.wpcf7-form label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ea-ink-soft);
}
.wpcf7-form br { display: none; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--ea-ligne);
    border-radius: var(--ea-r);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    color: var(--ea-encre);
    background: var(--ea-fond);
    transition: border-color 0.2s;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--ea-vif);
}
.wpcf7-form textarea { min-height: 140px; resize: vertical; }
.wpcf7-submit {
    width: 100%;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 15px;
    background: var(--ea-vif);
    color: #fff;
    border: none;
    border-radius: var(--ea-r);
    cursor: pointer;
    transition: background 0.2s;
}
.wpcf7-submit:hover { background: var(--ea-vif-hover); }

/* ── MENTIONS LÉGALES / PAGES STATIQUES ─────────────────────────────────── */
.ea-mentions-corps, .ea-page-corps {
    max-width: 780px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
}
.ea-mentions-corps h2, .ea-page-corps h2 {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    margin: 2em 0 0.8em;
    color: var(--ea-vif);
}
.ea-mentions-corps p, .ea-page-corps p { font-size: 0.95rem; line-height: 1.75; color: var(--ea-ink-soft); margin-bottom: 1em; }
.ea-mentions-corps a { color: var(--ea-vif); }

/* ── PLAN DU SITE ───────────────────────────────────────────────────────── */
.ea-plan-corps {
    padding: clamp(40px, 6vw, 72px) 0;
}
.ea-plan-cat { margin-bottom: 32px; }
.ea-plan-cat h2 {
    font-size: 0.8rem;
    color: var(--ea-vif);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ea-ligne);
}
.ea-plan-cat ul li { padding-left: 16px; position: relative; margin-bottom: 6px; }
.ea-plan-cat ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-left: 1.5px solid var(--ea-vif);
    border-bottom: 1.5px solid var(--ea-vif);
}
.ea-plan-cat ul a { font-size: 0.9rem; color: var(--ea-ink-soft); }
.ea-plan-cat ul a:hover { color: var(--ea-vif); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ea-planche { grid-template-columns: repeat(2, 1fr); }
    .ea-vedette { grid-template-columns: 1fr; min-height: auto; }
    .ea-vedette-visuel { aspect-ratio: 16/9; position: relative; }
    .ea-terrain-inner { grid-template-columns: 280px 1fr; gap: 32px; }
    .ea-fondations-grille { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ea-similaires-grille { grid-template-columns: repeat(2, 1fr); }
    .ea-archive-grille-inner { grid-template-columns: repeat(2, 1fr); }
    .ea-archive-seo-inner { grid-template-columns: 1fr; }
    .ea-archive-seo-img { max-height: 300px; }
}

@media (max-width: 768px) {
    body { padding-top: var(--ea-hh); }

    /* Mobile nav */
    .ea-serre-nav {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--ea-nuit);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 200;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .ea-serre-nav.ea-nav--open { opacity: 1; pointer-events: all; }
    .ea-serre-nav a {
        font-size: 1.2rem;
        letter-spacing: 0.1em;
        padding: 14px 28px;
    }
    .ea-nav-close, .ea-nav-logo-mobile {
        display: block;
        color: var(--ea-clair);
    }
    .ea-nav-close {
        position: absolute;
        top: 20px;
        right: 24px;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1.8rem;
        color: var(--ea-clair-soft);
        line-height: 1;
    }
    .ea-nav-logo-mobile {
        margin-bottom: 32px;
    }
    .ea-burger { display: flex; }

    .ea-vedette { grid-template-columns: 1fr; }
    .ea-planche { grid-template-columns: 1fr 1fr; }
    .ea-terrain-inner { grid-template-columns: 1fr; }
    .ea-terrain-portrait { max-width: 260px; margin: 0 auto; }
    .ea-terrain-corps { text-align: center; }
    .ea-terrain-bio { text-align: left; }
    .ea-fondations-grille { grid-template-columns: 1fr; gap: 24px; }
    .ea-similaires-grille { grid-template-columns: 1fr; }
    .ea-archive-grille-inner { grid-template-columns: 1fr; }
    .ea-contact-inner { grid-template-columns: 1fr; }
    .ea-jalon { grid-template-columns: 40px 1fr auto; gap: 12px; }
    .ea-bande { height: 140px; }
}

@media (max-width: 480px) {
    .ea-planche { grid-template-columns: 1fr; }
    .ea-facade-chiffres { gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
