/* =========================================================================
   HOME.CSS — Styles spécifiques à la page d'accueil
   Chargé uniquement sur la home (via la section 'head' du layout).
   Le socle commun (variables, reset, header, footer...) est dans style.css.
   ========================================================================= */

/* =========================================================================
   HERO / CARROUSEL
   ========================================================================= */
:root {
    --hero-offset: 146px;   /* hauteur topbar (~50) + header (96) : à ajuster si besoin */
}

.hero {
    position: relative;
    height: calc(100vh - var(--hero-offset));   /* plein écran calculé */
    min-height: 480px;
    overflow: hidden;
    background-color: #111;
}

/* Slides empilés, fondu enchaîné */
.hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}
.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
}

/* Overlay pointillé (reproduction du tp-dottedoverlay threexthree) :
   fine trame de points, assombrissement très léger — comme l'original. */
.hero__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.10);
    background-image: radial-gradient(rgba(0, 0, 0, 0.28) 1px, transparent 1.4px);
    background-size: 3px 3px;
}

/* Images décoratives superposées (slide drone) */
.hero__deco {
    position: absolute;
    z-index: 1;              /* au-dessus de l'overlay, sous le texte */
    pointer-events: none;
    height: auto;
}
/* Drone : à gauche, réagit à la souris (--px/--py posés en JS) */
.hero__deco--drone {
    left: 15%;
    top: 50%;
    width: min(36vw, 500px);
    transform: translateY(-50%) translate(var(--px, 0px), var(--py, 0px));
    transition: transform 0.15s ease-out;
    will-change: transform;
}
/* Macaron certif : fixe, coin bas-droite */
.hero__deco--badge {
    right: 3%;
    bottom: 6%;
    width: min(16vw, 204px);
    z-index: 2;
}

/* Contenu : hero__inner = élément flex plein largeur (centrage vertical),
   .container à l'intérieur gère le centrage horizontal normalement. */
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero__content { text-align: center; }

.hero__title {
    color: #fff;
    font-weight: var(--font-weight-title);
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    max-width: 820px;
    margin: 0 auto 1.75rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);   /* lisibilité sans assombrir l'image */
}
.hero__content--center .hero__title { margin-left: auto; margin-right: auto; }

.hero__buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero__content--center .hero__buttons { justify-content: center; }

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 35px;
    border-radius: 30px;
    background-color: var(--color-hero-btn);
    color: #fff;
    font-weight: var(--font-weight-nav);
    font-size: 1.05rem;
    transition: background-color 0.25s ease, color 0.25s ease;
}
.hero__btn:hover { background-color: #000; color: #fff; }

/* Animation d'entrée du contenu de la slide active */
.hero__title,
.hero__buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hero__slide.is-active .hero__title,
.hero__slide.is-active .hero__buttons {
    opacity: 1;
    transform: none;
}

/* Flèches carrées en bas à gauche (reproduction du style "gyges") */
.hero__nav {
    position: absolute;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    transition: background-color 0.25s ease;
}
.hero__nav:hover { background-color: #000; }
.hero__nav--prev { left: 0; }
.hero__nav--next { left: 40px; }
.hero__nav .icon { width: 20px; height: 20px; }

/* Responsive hero */
@media (max-width: 767px) {
    .hero { height: calc(100vh - 120px); min-height: 420px; }
    .hero__btn { padding: 10px 26px; font-size: 0.95rem; }
}



/* =========================================================================
   SECTION : PRÉSENTATION DE L'AGENCE
   ========================================================================= */
.about {
    padding: 90px 0;
}

/* Grille : colonne gauche (titres + texte) / colonne droite (image + réseau)
   Proportions comme l'original : ~2/3 – 1/3 (col-8 / col-4) */
.about__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* ---- Colonne gauche ---- */
/* En-tête (sur-titres, titre, étoiles) : centré DANS la colonne */
.about__eyebrow {
    margin: 0 0 0.35rem;
    color: var(--color-text);
    font-weight: var(--font-weight-subtitle);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;      /* lettrage très espacé, comme l'original */
    line-height: 1.5;
    text-align: center;
}
.about__eyebrow--accent {
    margin-bottom: 1.25rem;
    color: var(--color-brand);   /* 2e ligne en rouge */
}

.about__title {
    margin: 0 0 1.5rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    text-align: center;
}

/* Étoiles en contour, encadrées de deux filets horizontaux */
.about__stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 2.5rem;
    color: #c9c9c9;              /* gris clair, pas rouge */
}
.about__stars .icon {
    width: 22px;
    height: 22px;
    fill: none;                  /* contour uniquement */
    stroke: currentColor;
    stroke-width: 1.5;
}
.about__rule {
    flex: 1;
    height: 1px;
    background-color: #e5e5e5;
}

/* Corps de texte : aligné à gauche */
.about__text > p:not(.about__eyebrow) {
    margin-bottom: 1.25rem;
    text-align: left;
}
.about__text strong {
    font-weight: var(--font-weight-title);
    color: var(--color-heading);
}

/* ---- Colonne droite ---- */
.about__media img { width: 100%; height: auto; }

/* Bloc "Un réseau d'expert" : sous l'image, centré */
.about__network {
    margin-top: 2rem;
    text-align: center;
}
.about__network-title {
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    text-transform: uppercase;
}
.about__network strong {
    font-weight: var(--font-weight-title);
    color: var(--color-heading);
}

@media (max-width: 900px) {
    .about { padding: 60px 0; }
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about__stars { margin-bottom: 2rem; }
    .about__eyebrow { letter-spacing: 0.18em; font-size: 0.9rem; }
}


/* =========================================================================
   SECTION : CE QUE NOUS PROPOSONS
   (contenu en blanc sur image de fond, onglets à cheval sur le bas)
   ========================================================================= */
.services { background-color: #fff; }

/* ---- En-tête (fond blanc) ---- */
.services__header {
    padding: 70px 0 40px;
    text-align: center;
}
.services__eyebrow {
    margin: 0 0 0.5rem;
    color: #b5b5b5;
    font-weight: var(--font-weight-subtitle);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
}
.services__title {
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    text-transform: uppercase;
}
.services__divider {
    display: block;
    width: 40px;
    height: 2px;
    margin: 0 auto;
    background-color: #ddd;
}

/* ---- Scène : une image de fond PAR service (fondu au changement) ---- */
.services__stage {
    position: relative;
    padding: 70px 0 0;                 /* les onglets débordent en bas */
    background-color: #333;            /* repli si une image manque */
    color: #fff;
    overflow: hidden;
}

/* Couches d'images empilées : seule l'active est visible */
.services__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.services__bg.is-active { opacity: 1; }

.services__stage::before {             /* voile pour la lisibilité du texte blanc */
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.35);
}
.services__stage > .container {
    position: relative;
    z-index: 2;
}

/* ---- Panneaux (texte blanc, centré) ---- */
.services__panels {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px 120px;             /* espace bas pour le chevauchement des onglets */
    text-align: center;
    /* Hauteur FIXE : le contenu varie (2 à 4 items) ; sans ça, le panneau le plus
       long pousse la zone et la hauteur saute d'un onglet à l'autre.
       height (et non min-height) garantit une zone identique pour tous. */
    height: 420px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services__panel {
    width: 100%;
    max-height: 100%;
    overflow: auto;                    /* sécurité : si un contenu très long arrivait */
    animation: services-fade 0.4s ease;
}
.services__panel[hidden] { display: none; }

@keyframes services-fade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}

.services__panel-title {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    text-transform: uppercase;
}
.services__panel-lead {
    margin-bottom: 1.75rem;
    color: #fff;
    font-weight: var(--font-weight-title);
}
/* Liste sans puces, centrée (comme l'original) */
.services__list {
    max-width: 760px;
    margin: 0 auto;
}
.services__list li {
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: var(--font-weight-subtitle);
}

/* Flèches discrètes sur les côtés */
.services__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -60px;                 /* compense le padding bas des panneaux */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}
.services__arrow:hover { color: #fff; }
.services__arrow--prev { left: 0; }
.services__arrow--next { right: 0; }

/* ---- Barre d'onglets : blanche, compacte, à cheval sur le bas de l'image ---- */
.services__tabs {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
    margin: -90px auto 0;              /* remonte pour chevaucher le bas de l'image */
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.services__tab {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 2rem 1rem 2.5rem;
    border: none;
    border-left: 1px solid #ececec;    /* filets de séparation */
    background-color: #fff;
    color: #9a9a9a;
    text-align: center;
    transition: color var(--transition);
}
.services__tab:first-child { border-left: none; }
.services__tab:hover { color: var(--color-heading); }

/* Onglet actif : trait rouge en bas + picto rouge */
.services__tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background-color: var(--color-brand);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.services__tab.is-active::after { transform: scaleX(1); }
.services__tab.is-active { color: var(--color-heading); }

.services__tab-icon {
    width: 30px;
    height: 30px;
    color: #c4c4c4;
    transition: color var(--transition);
}
.services__tab.is-active .services__tab-icon { color: var(--color-brand); }

.services__tab-label {
    font-weight: var(--font-weight-nav);
    font-size: 0.72rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Filigrane : gros picto pâle, ancré en bas à droite, débordant du bloc */
.services__tab-ghost {
    position: absolute;
    right: -30px;                      /* déborde à droite */
    bottom: -40px;                     /* déborde aussi en bas */
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    line-height: 0;
}
.services__tab-ghost .icon {
    width: 150px;
    height: 150px;
    color: rgba(0, 0, 0, 0.05);
}
.services__tab.is-active .services__tab-ghost { opacity: 1; }

/* Marge basse de la section */
.services { padding-bottom: 70px; }

@media (max-width: 900px) {
    .services__header { padding: 50px 0 30px; }
    .services__stage { padding-top: 50px; }

    /* Plus de hauteur fixe en mobile : le contenu définit la hauteur (sinon il est coupé) */
    .services__panels {
        height: auto;
        min-height: 0;
        padding: 40px 40px 55px;
    }

    /* Onglets : 2 colonnes, posés sous l'image (plus de chevauchement) */
    .services__tabs {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
    }
    .services__tab { padding: 1.5rem 0.75rem; gap: 1rem; }
    .services__tab:nth-child(2n+1) { border-left: none; }        /* pas de filet à gauche de la col 1 */
    .services__tab:nth-child(n+3)  { border-top: 1px solid #ececec; }  /* filet entre les 2 rangées */
    .services__tab-ghost { display: none; }

    .services__arrow { margin-top: 0; }
    .services { padding-bottom: 50px; }
}
@media (max-width: 520px) {
    .services__panels { padding: 32px 20px 45px; }
    .services__tab { padding: 1.25rem 0.5rem; }
    .services__tab-label { font-size: 0.68rem; }
    .services__arrow { display: none; }   /* les onglets suffisent comme contrôles en mobile */
}

/* =========================================================================
   SECTION : GALERIE & PORTFOLIO (flux Instagram)
   ========================================================================= */
.gallery {
    padding: 90px 0;
    text-align: center;
}

.gallery__eyebrow {
    margin: 0 0 0.5rem;
    color: #b5b5b5;
    font-weight: var(--font-weight-subtitle);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
}
.gallery__title {
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    text-transform: uppercase;
}
.gallery__divider {
    display: block;
    width: 40px;
    height: 2px;
    margin: 0 auto 3rem;
    background-color: #ddd;
}

/* Grille 4 colonnes, vignettes carrées */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: #f0f0f0;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

/* Overlay sombre au survol */
.gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background-color: rgba(0, 0, 0, 0.72);
    color: #fff;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__type { width: 30px; height: 30px; }
.gallery__caption {
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: var(--font-weight-subtitle);
}

/* Bouton "Suivez-nous" */
.gallery__cta { margin-top: 2.5rem; }
.gallery__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 12px 32px;
    border-radius: 30px;
    background-color: var(--color-brand);
    color: #fff;
    font-weight: var(--font-weight-nav);
    transition: background-color var(--transition);
}
.gallery__btn:hover { background-color: #000; color: #fff; }

.gallery__empty { color: var(--color-text); }

@media (max-width: 900px) {
    .gallery { padding: 60px 0; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__caption { display: none; }
}


/* =========================================================================
   SECTION : GARANTIE À VOS PROJETS
   (en-tête blanc + titre animé "marqueur", puis corps sombre)
   ========================================================================= */

/* ---- En-tête blanc ---- */
.guarantee__header {
    padding: 80px 15px 50px;
    text-align: center;
}
.guarantee__eyebrow {
    margin: 0 0 1.25rem;
    color: #b5b5b5;
    font-weight: var(--font-weight-subtitle);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
}
.guarantee__title {
    margin: 0 0 1.5rem;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    min-height: 1.4em;                 /* évite le saut de hauteur pendant la frappe */
    line-height: 1.4;
}
/* Titre simple (sans fond), couleur foncée */
.guarantee__title .js-typed-text {
    color: var(--color-heading);
}
.js-typed-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    margin-left: 2px;
    background-color: var(--color-heading);
    vertical-align: text-bottom;
    animation: typed-blink 0.7s step-end infinite;
}
@keyframes typed-blink { 50% { opacity: 0; } }

.guarantee__divider {
    display: block;
    width: 40px;
    height: 2px;
    margin: 0 auto;
    background-color: #ddd;
}

/* ---- Corps sombre ---- */
.guarantee__body {
    background-color: #2b2b2b;
    color: #fff;
    padding: 20px 0 70px;
}

/* Grille des 8 arguments : 4 colonnes, avec filets de séparation */
.guarantee__args {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.guarantee__arg {
    padding: 3rem 1.75rem;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.guarantee__arg:nth-child(4n+1) { border-left: none; }
.guarantee__arg:nth-child(n+5)  { border-bottom: none; }

.guarantee__arg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transition: background-color var(--transition), border-color var(--transition);
}
.guarantee__arg-icon .icon { width: 30px; height: 30px; color: #fff; }
.guarantee__arg:hover .guarantee__arg-icon {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
}

.guarantee__arg-title {
    margin-bottom: 0.85rem;
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.guarantee__arg-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- Bandeau de badges (image récupérée du WP) ---- */
.guarantee__badges {
    text-align: center;
    margin: 4rem 0;
}
.guarantee__badges img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* ---- Conclusion ---- */
.guarantee__conclusion {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}
.guarantee__conclusion strong { color: #fff; font-weight: var(--font-weight-title); }

@media (max-width: 900px) {
    .guarantee__args { grid-template-columns: repeat(2, 1fr); }
    .guarantee__arg { padding: 2.25rem 1.25rem; }
    .guarantee__arg:nth-child(4n+1) { border-left: 1px solid rgba(255,255,255,0.08); }
    .guarantee__arg:nth-child(odd)  { border-left: none; }
    .guarantee__arg:nth-child(n+5)  { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .guarantee__arg:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
    .guarantee__args { grid-template-columns: 1fr; }
    .guarantee__arg { border-left: none !important; }
    .guarantee__badges { gap: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
    .js-typed-cursor { display: none; }
}

/* =========================================================================
   SECTION : ILS NOUS FONT CONFIANCE (carrousel de logos)
   ========================================================================= */
.partners {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}
.partners__eyebrow {
    margin: 0 0 0.5rem;
    color: #b5b5b5;
    font-weight: var(--font-weight-subtitle);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
}
.partners__title {
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    text-transform: uppercase;
}
.partners__divider {
    display: block;
    width: 40px;
    height: 2px;
    margin: 0 auto 3rem;
    background-color: #ddd;
}

/* Zone du carrousel */
.partners__viewport {
    position: relative;
    padding: 0 50px;
}
/* Fenêtre FIXE qui découpe (ne bouge pas) */
.partners__window {
    overflow: hidden;
    width: 100%;
}
/* Piste qui se déplace À L'INTÉRIEUR de la fenêtre */
.partners__track {
    display: flex;
    width: 100%;
}
.partners__slide {
    flex: 0 0 25%;            /* 4 logos visibles à la fois */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    padding: 1.5rem 2rem;
    border-left: 1px solid #ececec;   /* filet de séparation vertical */
}
.partners__slide:first-child { border-left: none; }
.partners__slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Flèches */
.partners__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: #ccc;
    transition: color var(--transition);
    z-index: 2;
}
.partners__arrow:hover { color: var(--color-brand); }
.partners__arrow--prev { left: 0; }
.partners__arrow--next { right: 0; }

@media (max-width: 900px) {
    .partners { padding: 60px 0; }
    .partners__slide { flex-basis: 33.333%; }   /* 3 visibles */
}
@media (max-width: 640px) {
    .partners__slide { flex-basis: 50%; }        /* 2 visibles */
    .partners__viewport { padding: 0 36px; }
}
@media (max-width: 420px) {
    .partners__slide { flex-basis: 100%; }       /* 1 visible */
}

/* =========================================================================
   SECTION : TROUVEZ-NOUS SUR (3 blocs réseaux avec picto en filigrane)
   ========================================================================= */
.social {
    display: flex;
}
.social__block {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 230px;
    padding: 2rem;
    text-align: center;
    transition: background-color var(--transition);
}
/* Dégradé de gris entre les blocs (comme l'original) */
.social__block:nth-child(1) { background-color: #ffffff; }
.social__block:nth-child(2) { background-color: #f4f4f4; }
.social__block:nth-child(3) { background-color: #eaeaea; }

/* Picto en filigrane : grand, pâle, débordant à droite et en bas (vers le footer) */
.social__ghost {
    position: absolute;
    right: -30px;
    bottom: -60px;             /* déborde vers le bas, se prolonge dans le footer */
    line-height: 0;
    pointer-events: none;
}
.social__ghost .icon {
    width: 210px;
    height: 210px;
    color: rgba(0, 0, 0, 0.05);
    transition: color var(--transition);
}
.social__block:hover .social__ghost .icon { color: rgba(0, 0, 0, 0.08); }

.social__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.social__eyebrow {
    color: #b5b5b5;
    font-weight: var(--font-weight-subtitle);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
    text-transform: capitalize;
}
.social__name {
    font-weight: var(--font-weight-title);
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Couleurs de marque par réseau */
.social__block--facebook  .social__name { color: #1877F2; }
.social__block--youtube   .social__name { color: #FF0000; }
.social__block--instagram .social__name {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #cc2366;   /* repli si background-clip non supporté */
}

@media (max-width: 767px) {
    .social { flex-direction: column; }
    .social__block { min-height: 170px; }
    .social__ghost .icon { width: 150px; height: 150px; }
}