/* ========================================
   V3 — COUCHE DE FINITION
   Se superpose à styles.css / wow.css / globe-only.css sans les modifier.
   Principe : même structure, mêmes mécaniques de découverte, uniquement
   de la finition. Palette noir & blanc stricte : l'« accent » est blanc et
   réservé à l'élément actif / découvert. Noirs en couches sur les surfaces (le fond de page reste #000 :
   le globe dither impose un wrapper noir pur).
   ======================================== */

:root {
    /* Accent blanc (pas de couleur) : réservé à l'élément actif / découvert */
    --v3-accent: #ffffff;
    --v3-accent-strong: #ffffff;
    --v3-accent-soft: rgba(255, 255, 255, 0.10);
    --v3-accent-line: rgba(255, 255, 255, 0.45);
    --v3-accent-glow: rgba(255, 255, 255, 0.30);
    --v3-on-accent: #000000;   /* texte posé sur un fond accent */
    --v3-ease: cubic-bezier(0.2, 0.8, 0.2, 1);

    /* Surfaces = noir page ; le survol porte le contraste */
    --color-bg-elevated: #000000;
    --color-bg-card: #000000;
    --color-surface: #000000;
    --color-border: rgba(255, 255, 255, 0.10);
    --color-border-hover: rgba(255, 255, 255, 0.20);

    /* Hiérarchie de gris (wow.css met tout en blanc pur) */
    --color-text-secondary: #c9c9c9;
    --color-text-muted: #9a9a9a;
}

/* ----------------------------------------
   Global
   ---------------------------------------- */
::selection {
    background: rgba(255, 255, 255, 0.88);
    color: #000;
}

:focus-visible {
    outline: 2px solid var(--v3-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

h1, h2, h3, h4,
.hero-title,
.section-title,
.contact-title {
    text-wrap: balance;
}

p,
.hero-description,
.contact-text,
.skill-detail {
    text-wrap: pretty;
}

/* Barre de scroll fine (le panneau destinations garde la sienne : plus spécifique) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #262626;
    border-radius: 999px;
    border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}

html {
    scrollbar-color: #262626 #000;
    scrollbar-width: thin;
}

/* Barre de lecture en accent */
.scroll-progress,
#scroll-progress {
    background: var(--v3-accent);
    box-shadow: 0 0 12px var(--v3-accent-glow);
}

/* Reveals : un peu plus courts, easing plus doux */
.reveal {
    transform: translateY(14px);
    transition: opacity 0.7s var(--v3-ease), transform 0.7s var(--v3-ease);
}

/* Titres de section : un cran plus grands, numéro mono en accent */
.section-title {
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.section-tag,
body[data-parcours-view] .section-tag::before {
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--v3-accent);
    letter-spacing: 0.18em;
}

.section-tag {
    margin-bottom: var(--space-md);
}

/* Respiration entre sections (desktop) */
@media (min-width: 769px) {
    .journey,
    .competences {
        padding: clamp(4.5rem, 7vw, 6.5rem) 0;
    }

    .contact {
        padding: clamp(4.5rem, 7vw, 6.5rem) 0 clamp(3.5rem, 5vw, 5rem);
    }

    .section-header {
        margin-bottom: clamp(2rem, 3.2vw, 3rem);
    }
}

.competences,
.contact {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ----------------------------------------
   Nav
   ---------------------------------------- */
.nav {
    background: transparent !important;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.72) !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    backdrop-filter: blur(14px) saturate(1.2);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-link::after {
    height: 1.5px;
    background: var(--v3-accent);
}

.nav-link.is-active {
    color: #fff;
}

.nav-link.is-active::after {
    width: 100%;
}

.nav-link-cta {
    border-radius: 6px;
}

.nav-link-cta:hover {
    box-shadow: 0 0 0 3px var(--v3-accent-soft);
}

.lang-switch:hover {
    border-color: var(--v3-accent-line);
}

/* Menu mobile : fond opaque conservé */
@media (max-width: 768px) {
    .nav.scrolled {
        background: rgba(0, 0, 0, 0.9) !important;
    }
}

/* ----------------------------------------
   Hero
   ---------------------------------------- */
.hero.hero-editorial .hero-title {
    letter-spacing: -0.045em;
    line-height: 0.92;
}

/* « Etienne » en italique serif, plus léger : hiérarchie nom / prénom */
.hero.hero-editorial .hero-title-line:first-child {
    font-style: italic;
    font-weight: 400;
    opacity: 0.5;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .hero.hero-editorial .hero-title-line:first-child {
        opacity: 0.68;
    }
}

/* Badge ONU : point pulsant accent, hover teinté */
.hero-badge-un {
    gap: 9px;
    padding: 7px 14px 7px 12px;
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
}

.hero-badge-un:hover {
    border-color: var(--v3-accent-line);
    background: var(--v3-accent-soft);
}

.hero-badge-un:hover svg {
    color: var(--v3-accent-strong);
}

.v3-live-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--v3-accent);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 var(--v3-accent-glow);
    animation: v3Pulse 2.2s ease-out infinite;
}

@keyframes v3Pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
    70% { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Rôle (typewriter mono) */
.hero.hero-editorial .hero-subtitle {
    letter-spacing: 0.18em;
    color: #bdbdbd !important;
}

.typewriter-caret {
    background: var(--v3-accent);
}

.hero-rail-line {
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2) 15%,
        rgba(255, 255, 255, 0.2) 85%,
        transparent);
}

/* Description : gris doux, interligne plus aéré */
.hero.hero-editorial .hero-description {
    max-width: 58ch;
    line-height: 1.7;
    color: #cfcfcf !important;
    opacity: 1;
}

/* CTA */
.btn {
    border-radius: 6px;
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
    border-color: var(--v3-accent-line);
    color: #fff;
    box-shadow: 0 0 0 3px var(--v3-accent-soft);
    transform: translateY(-2px);
}

/* Indice de défilement (au-dessus du marquee) */
.v3-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: calc(3.6rem + 1.1rem);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    transform: translateX(-50%);
    color: var(--color-text-muted);
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.6s ease, color 0.2s ease;
    pointer-events: none;
}

body.globe-reveal .v3-scroll-hint,
body:not(.bust-intro) .v3-scroll-hint {
    opacity: 0.75;
    pointer-events: auto;
    transition-delay: 0.6s;
}

.v3-scroll-hint.is-hidden {
    opacity: 0 !important;
    pointer-events: none;
    transition-delay: 0s;
}

.v3-scroll-hint:hover {
    color: #fff;
}

.v3-scroll-hint-line {
    width: 1px;
    height: 34px;
    background: linear-gradient(180deg, transparent, var(--v3-accent) 40%, transparent);
    animation: v3ScrollLine 2.2s var(--v3-ease) infinite;
}

@keyframes v3ScrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    35% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    70% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.v3-scroll-hint-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

@media (max-width: 768px), (max-height: 720px) {
    .v3-scroll-hint {
        display: none;
    }
}

/* Marquee : logos gris → couleur au survol, bords fondus plus larges */
.logo-marquee {
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    border-top-color: rgba(255, 255, 255, 0.08);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.marquee-item {
    opacity: 0.55;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.marquee-item img {
    filter: grayscale(1) contrast(1.05);
    opacity: 0.85;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s var(--v3-ease);
}

.marquee-item:hover {
    opacity: 1;
}

.marquee-item:hover img {
    filter: none;
    opacity: 1;
    transform: translateY(-1px);
}

/* ----------------------------------------
   Parcours / globe
   ---------------------------------------- */
.location-label {
    font-family: var(--font-mono);
    color: var(--v3-accent);
    letter-spacing: 0.14em;
}

.current-location {
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.12);
}

/* Panneau destinations : fine timeline pointillée à gauche des cartes */
.journey-info-panel {
    --v3-rail: 1.5rem;          /* largeur réservée à la timeline */
    padding-left: var(--v3-rail);
    gap: 0.6rem;
}

.journey-destination {
    border-radius: 12px;
    opacity: 0.55;
    transition: opacity 0.3s ease, border-color 0.3s ease, background 0.3s ease,
        transform 0.3s var(--v3-ease), box-shadow 0.3s ease;
}

/* Jalon */
.journey-destination::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--v3-rail, 1.5rem) / 2);
    top: 1.35rem;
    width: 7px;
    height: 7px;
    margin-left: -3.5px;
    border-radius: 50%;
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

/* Connecteur pointillé vers la carte suivante */
.journey-destination:not(:last-child)::after {
    content: '';
    position: absolute;
    left: calc(-1 * var(--v3-rail, 1.5rem) / 2);
    top: calc(1.35rem + 9px);
    /* du bas du jalon jusqu'au jalon de la carte suivante (gap 0.6rem) */
    height: calc(100% - 9px + 0.6rem);
    border-left: 1px dashed rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.journey-destination:hover {
    opacity: 0.9;
    transform: translateX(2px);
    border-color: var(--color-border-hover);
}

.journey-destination.active {
    opacity: 1;
    border-color: var(--v3-accent-line);
    background: linear-gradient(90deg, var(--v3-accent-soft), transparent 60%), var(--color-bg-card);
    box-shadow: inset 2px 0 0 var(--v3-accent);
}

.journey-destination.active::before {
    background: var(--v3-accent);
    border-color: var(--v3-accent);
    box-shadow: 0 0 0 4px var(--v3-accent-soft), 0 0 12px var(--v3-accent-glow);
}

.journey-destination[data-tutored] {
    border-style: dashed;
}

.journey-destination[data-tutored].active {
    border-style: solid;
}

.destination-date {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--v3-accent);
}

.destination-logo {
    border-radius: 8px;
}

.destination-header h4 {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Flèche « voir le détail » : toujours visible mais discrète */
.journey-destination.has-detail .destination-detail {
    display: inline-flex;
    opacity: 0.45;
    border-radius: 8px;
    transition: opacity 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--v3-ease);
}

.journey-destination.has-detail:hover .destination-detail,
.journey-destination.has-detail.active .destination-detail {
    opacity: 1;
}

.destination-detail:hover {
    color: #fff;
    border-color: var(--v3-accent-line);
    background: var(--v3-accent-soft);
    transform: translate(1px, -1px);
}

/* Mobile : le panneau devient un carrousel horizontal → pas de rail vertical */
@media (max-width: 768px) {
    .journey-info-panel {
        padding-left: 0;
    }

    .journey-destination::before,
    .journey-destination::after {
        display: none;
    }

    .journey-destination:hover {
        transform: none;
    }
}

/* HUD */
.globe-hud {
    border-radius: 999px;
    padding: 0.3rem;
    border-color: rgba(255, 255, 255, 0.12);
}

.globe-hud-btn {
    border-radius: 999px;
}

.globe-hud-btn:hover {
    background: var(--v3-accent-soft);
    border-color: var(--v3-accent-line);
}

.globe-hud-step b {
    color: var(--v3-accent-strong);
}

/* Onglets Globe / Liste */
.parcours-view-switch,
.parcours-view-switch-main {
    background: #000;
    border-radius: 999px;
}

.parcours-view-switch-main .parcours-view-btn {
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.parcours-view-switch-main .parcours-view-btn:not(.is-active):hover {
    background: var(--v3-accent-soft);
    color: #fff;
}

/* ----------------------------------------
   Compétences (mêmes tableaux, plus lisibles)
   ---------------------------------------- */
.skill-category {
    border-radius: 12px;
    padding: var(--space-lg) var(--space-xl);
    background: #000;
}

.skill-category:hover {
    border-color: var(--color-border-hover);
    background: rgba(255, 255, 255, 0.045);
}

.skill-category-header {
    gap: 0.8rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.skill-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    color: var(--v3-accent-strong);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.skill-category:hover .skill-icon {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.skill-icon svg {
    width: 19px;
    height: 19px;
}

.skill-category-header h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Ligne : libellé | détail, tous deux alignés à gauche, plus de texte tronqué */
.skill-item {
    display: grid;
    grid-template-columns: minmax(9.5rem, 11.5rem) 1fr;
    gap: 0.2rem 1.25rem;
    align-items: baseline;
    padding: 0.62rem var(--space-md);
    margin: 0 calc(-1 * var(--space-md));
    border-radius: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.skill-item:first-child {
    padding-top: 0.62rem;
}

.skill-item:last-child {
    padding-bottom: 0.62rem;
    border-bottom: none;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.skill-name {
    font-size: 0.8375rem;
    font-weight: 600;
    color: #f2f2f2;
}

.skill-detail {
    font-size: 0.8125rem;
    text-align: left;
    max-width: none;
    line-height: 1.5;
    color: #b3b3b3;
}

.skill-item:hover .skill-detail {
    color: #d0d0d0;
}

@media (max-width: 1024px) {
    .skill-item {
        grid-template-columns: minmax(8rem, 9.5rem) 1fr;
    }
}

@media (max-width: 768px) {
    .skill-category {
        padding: var(--space-md) var(--space-lg);
    }

    .skill-category-header {
        gap: 0.6rem;
        margin-bottom: var(--space-md);
        padding-bottom: var(--space-sm);
    }

    .skill-icon {
        width: 32px;
        height: 32px;
    }

    .skill-icon svg {
        width: 16px;
        height: 16px;
    }

    .skill-category-header h3 {
        font-size: 0.95rem;
    }

    .skill-item {
        grid-template-columns: 1fr;
        gap: 0.15rem;
        margin: 0 calc(-1 * var(--space-sm));
        padding: 0.55rem var(--space-sm);
    }

    .skill-detail {
        font-size: 0.78rem;
    }
}

/* Langues */
.languages {
    border-radius: 12px;
}

.language-level {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.language-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.07);
}

.language-progress {
    background: linear-gradient(90deg, var(--v3-accent), var(--v3-accent-strong));
    box-shadow: 0 0 10px var(--v3-accent-glow);
}

/* ----------------------------------------
   Contact & footer
   ---------------------------------------- */
.contact-title {
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.contact-text {
    color: #cfcfcf;
}

.contact-text strong {
    color: #fff;
}

.contact-link {
    border-radius: 12px;
    gap: 1rem;
    background: #000;
}

.contact-link:not(.contact-link-location):hover {
    border-color: var(--v3-accent-line);
    background: linear-gradient(90deg, var(--v3-accent-soft), transparent 55%), #000;
}

.contact-link-icon {
    border-radius: 50%;
    background: #000;
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--v3-accent-strong);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--v3-ease);
}

.contact-link:not(.contact-link-location):hover .contact-link-icon {
    background: var(--v3-accent);
    border-color: var(--v3-accent);
    color: var(--v3-on-accent);
    transform: scale(1.04);
}

/* Flèche ↗ qui apparaît au survol */
.contact-link:not(.contact-link-location)::after {
    content: '';
    width: 14px;
    height: 14px;
    margin-left: auto;
    flex-shrink: 0;
    background: currentColor;
    color: var(--v3-accent-strong);
    -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M17 7H7M17 7V17'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M17 7H7M17 7V17'/%3E%3C/svg%3E") center / contain no-repeat;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity 0.25s ease, transform 0.25s var(--v3-ease);
}

.contact-link:not(.contact-link-location):hover::after {
    opacity: 1;
    transform: none;
}

.contact-link-label {
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    font-size: 0.64rem;
}

/* Rangée email + bouton copier */
.v3-contact-row {
    position: relative;
}

.v3-contact-row .contact-link {
    padding-right: 5.6rem;
}

.v3-contact-row .contact-link::after {
    display: none;
}

.v3-contact-row .contact-link:hover {
    transform: none;
}

.v3-copy {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: #000;
    color: #bdbdbd;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.v3-copy:hover {
    border-color: var(--v3-accent-line);
    background: var(--v3-accent-soft);
    color: #fff;
}

.v3-copy .v3-copy-check {
    display: none;
}

.v3-copy.is-copied {
    border-color: var(--v3-accent);
    background: var(--v3-accent);
    color: var(--v3-on-accent);
}

.v3-copy.is-copied .v3-copy-icon {
    display: none;
}

.v3-copy.is-copied .v3-copy-check {
    display: block;
}

.v3-copy-toast {
    position: absolute;
    right: calc(100% + 0.6rem);
    top: 50%;
    transform: translateY(-50%) translateX(4px);
    padding: 0.3rem 0.55rem;
    border-radius: 6px;
    background: #000;
    border: 1px solid var(--v3-accent-line);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s var(--v3-ease);
}

.v3-copy.is-copied .v3-copy-toast {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .v3-contact-row .contact-link {
        padding-right: 3.6rem;
    }

    .v3-copy {
        right: 0.65rem;
        width: 1.9rem;
        height: 1.9rem;
    }
}

/* Footer */
.footer {
    padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
    border-top-color: rgba(255, 255, 255, 0.07);
}

.footer-copyright {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
}

.footer-social {
    border-radius: 50%;
}

.footer-social:hover {
    border-color: var(--v3-accent-line);
    background: var(--v3-accent-soft);
    color: #fff;
}

/* ----------------------------------------
   Overlay détail (inchangé fonctionnellement)
   ---------------------------------------- */
.parcours-overlay-backdrop {
    background: rgba(0, 0, 0, 0.78);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    animation: v3FadeIn 0.3s ease both;
}

.parcours-overlay-dialog {
    animation: v3OverlayIn 0.32s var(--v3-ease) both;
}

@keyframes v3FadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes v3OverlayIn {
    from { opacity: 0; transform: translateY(10px) scale(0.97); }
    to { opacity: 1; transform: none; }
}

.parcours-overlay-close {
    width: 2.5rem;
    height: 2.5rem;
    top: -0.75rem;
    right: -0.75rem;
    background: #0a0a0a;
    border-color: rgba(255, 255, 255, 0.18);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--v3-ease);
}

.parcours-overlay-close:hover,
.parcours-overlay-close:focus-visible {
    border-color: var(--v3-accent-line);
    background: var(--v3-accent-soft);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .parcours-overlay-close {
        width: 2.25rem;
        height: 2.25rem;
        top: -0.5rem;
        right: -0.5rem;
    }
}

/* Ruban « En poste » : l'état actuel porte l'accent */
.exp-featured-ribbon {
    background: var(--v3-accent);
    color: var(--v3-on-accent);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.exp-card,
.journey-destination {
    background: #000;
}

.exp-card:hover,
.journey-destination:hover {
    border-color: var(--color-border-hover);
    background: rgba(255, 255, 255, 0.045);
}

.exp-card-featured {
    background: #000;
    box-shadow: inset 3px 0 0 var(--v3-accent);
}

.exp-card-featured:hover {
    background: rgba(255, 255, 255, 0.045);
}

.tag {
    border-radius: 999px;
    padding: 0.28rem 0.65rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Les tags restent neutres : seul l'état « En poste » porte l'accent */
.tag-un {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: #e6e6e6;
}

/* ----------------------------------------
   Motion réduite
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .v3-live-dot,
    .v3-scroll-hint-line {
        animation: none;
    }

    .parcours-overlay-dialog,
    .parcours-overlay-backdrop {
        animation: none;
    }

    .journey-destination,
    .contact-link-icon,
    .parcours-overlay-close {
        transition: none;
    }
}
