/* ============================================================
   YJ SITE — Footer
   Fond vert foncé identique au titre "Yannick Jadot" (var --yj-green-deep)
============================================================ */

.yj-footer{
    background:var(--yj-green-deep);   /* ← MÊME VERT QUE LE TITRE */
    color:#fff;
    padding:60px 5% 30px;
    position:relative;
    overflow:hidden;
    font-family:var(--yj-body);
    box-sizing:border-box;
    width:100%;
}
.yj-footer::before{
    content:"";
    position:absolute;
    top:-50%;
    right:-10%;
    width:40vw;height:40vw;
    max-width:500px;max-height:500px;
    background:radial-gradient(circle at center, rgba(45,122,79,.4), transparent 60%);
    filter:blur(60px);
    z-index:0;
    pointer-events:none;
}
.yj-footer::after{
    content:"";
    position:absolute;
    bottom:-30%;
    left:-10%;
    width:35vw;height:35vw;
    max-width:400px;max-height:400px;
    background:radial-gradient(circle at center, rgba(199,93,58,.25), transparent 60%);
    filter:blur(70px);
    z-index:0;
    pointer-events:none;
}

.yj-footer__inner{
    max-width:1400px;
    margin:0 auto;
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:60px;
    align-items:center;
}

.yj-footer__brand{
    opacity:0;
    transform:translateY(20px);
    animation:yjFooterReveal .9s var(--yj-ease-out) .1s forwards;
}
@keyframes yjFooterReveal{to{opacity:1;transform:translateY(0);}}

.yj-footer__name{
    font-family:var(--yj-display);
    font-size:clamp(28px, 4vw, 44px);
    font-weight:900;
    letter-spacing:-.02em;
    line-height:1;
    margin:0 0 10px 0;
    color:#fff;
}
.yj-footer__name span{
    color:var(--yj-terracotta);
}
.yj-footer__tagline{
    font-size:13px;
    color:rgba(255,255,255,.7);
    letter-spacing:.02em;
    margin:0;
}

.yj-footer__socials{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    justify-content:flex-end;
    opacity:0;
    transform:translateY(20px);
    animation:yjFooterReveal .9s var(--yj-ease-out) .3s forwards;
}

.yj-footer__social{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:6px;
    color:#fff;
    font-size:13px;
    font-weight:500;
    text-decoration:none;
    transition:all .35s var(--yj-ease);
    position:relative;
    overflow:hidden;
}
.yj-footer__social::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, transparent 50%, rgba(199,93,58,.35));
    opacity:0;
    transition:opacity .4s var(--yj-ease);
}
.yj-footer__social:hover{
    transform:translateY(-3px);
    border-color:rgba(199,93,58,.5);
    background:rgba(255,255,255,.12);
    box-shadow:0 14px 28px -10px rgba(199,93,58,.4);
    color:#fff;
}
.yj-footer__social:hover::before{opacity:1;}
.yj-footer__social svg{
    width:18px;height:18px;
    transition:transform .4s var(--yj-ease);
    position:relative;z-index:1;
    fill:currentColor;
}
.yj-footer__social:hover svg{transform:scale(1.15) rotate(-8deg);}
.yj-footer__social-label{position:relative;z-index:1;}

.yj-footer__bottom{
    max-width:1400px;
    margin:50px auto 0;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.15);
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:12px;
    color:rgba(255,255,255,.5);
    position:relative;
    z-index:2;
    flex-wrap:wrap;
    gap:12px;
}
.yj-footer__bottom a{
    color:rgba(255,255,255,.65);
    text-decoration:none;
    transition:color .3s ease;
}
.yj-footer__bottom a:hover{color:var(--yj-terracotta);}

/* RESPONSIVE */
@media (max-width: 900px){
    .yj-footer__inner{grid-template-columns:1fr;gap:40px;text-align:center;}
    .yj-footer__socials{justify-content:center;}
}
@media (max-width: 520px){
    .yj-footer{padding:50px 6% 24px;}
    .yj-footer__bottom{flex-direction:column;text-align:center;}
    .yj-footer__social{padding:10px 14px;font-size:12px;}
}
