/* =========================================================
   FANNY DARBELLAY — CV ÉDITORIAL LUXE
   Crème rosé · encre prune · rose vif · lilas · pêche
   ========================================================= */

:root {
    --bg:        #f7efe8;     /* crème rosé */
    --bg-card:   #fffaf5;     /* ivoire */
    --ink:       #2b1226;     /* prune noir */
    --ink-soft:  rgba(43, 18, 38, 0.72);
    --ink-dim:   rgba(43, 18, 38, 0.45);
    --line:      rgba(43, 18, 38, 0.16);

    --pink:      #e84d8a;     /* rose vif */
    --lilac:     #b388eb;     /* lilas */
    --peach:     #ffb4a2;     /* pêche */
    --blush:     #fbd2e0;     /* rose poudré */

    --grad:      linear-gradient(110deg, var(--pink), var(--lilac) 55%, var(--peach));

    --serif:     'Fraunces', Georgia, serif;
    --grotesk:   'Space Grotesk', sans-serif;
    --sans:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
    --pad:       clamp(1.25rem, 4vw, 4rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

/* =========================================================
   PRÉLOADER RIDEAU
   ========================================================= */
.loader {
    position: fixed; inset: 0; z-index: 200;
    display: grid; place-items: center;
    background: var(--ink);
    animation: loaderUp .8s var(--ease-out) 1.3s forwards;
    pointer-events: none;
}
.loader__mark {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--bg);
    opacity: 0;
    animation: loaderMark .8s var(--ease-out) .15s forwards;
}
@keyframes loaderMark {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderUp {
    to { transform: translateY(-101%); visibility: hidden; }
}

/* =========================================================
   CURSEUR PERSONNALISÉ
   ========================================================= */
.cursor, .cursor-dot { display: none; }
@media (pointer: fine) {
    .cursor {
        display: block;
        position: fixed; top: 0; left: 0; z-index: 150;
        width: 44px; height: 44px;
        margin: -22px 0 0 -22px;
        border: 1.5px solid var(--pink);
        border-radius: 50%;
        pointer-events: none;
        transition: transform .18s ease-out, opacity .3s, background .3s;
        mix-blend-mode: multiply;
    }
    .cursor--hover {
        transform: scale(1.8);
        background: rgba(232, 77, 138, 0.15);
    }
    .cursor-dot {
        display: block;
        position: fixed; top: 0; left: 0; z-index: 151;
        width: 6px; height: 6px;
        margin: -3px 0 0 -3px;
        background: var(--pink);
        border-radius: 50%;
        pointer-events: none;
    }
}

/* =========================================================
   FOND MESH PASTEL
   ========================================================= */
.mesh { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.mesh__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: drift 26s var(--ease-out) infinite alternate;
    will-change: transform;
}
.mesh__blob--1 {
    top: -15%; right: -10%;
    width: 55vw; height: 55vw;
    background: radial-gradient(circle, var(--blush), transparent 65%);
}
.mesh__blob--2 {
    bottom: -20%; left: -15%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(179, 136, 235, 0.35), transparent 65%);
    animation-delay: -9s;
}
.mesh__blob--3 {
    top: 40%; left: 30%;
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, rgba(255, 180, 162, 0.4), transparent 65%);
    animation-delay: -17s;
}
@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(6vw, -4vh) scale(1.15); }
}
.mesh__grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
    mix-blend-mode: multiply;
    opacity: 0.06;
    pointer-events: none;
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem var(--pad);
    transition: background .4s, box-shadow .4s, padding .4s;
}
.topbar--scrolled {
    background: rgba(247, 239, 232, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--line);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.topbar__logo {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
}
.topbar__nav {
    display: flex; gap: 2rem;
    font-family: var(--grotesk);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.topbar__nav a { position: relative; padding: 0.2rem 0; }
.topbar__nav a::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 100%; height: 1.5px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease-out);
}
.topbar__nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.topbar__cta {
    font-family: var(--grotesk);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.7rem 1.4rem;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.topbar__cta:hover {
    background: var(--ink);
    color: var(--bg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem var(--pad) 3rem;
}
.hero__eyebrow {
    display: flex; align-items: center; gap: 0.7rem;
    font-family: var(--grotesk);
    font-size: clamp(0.78rem, 1.4vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    margin-bottom: clamp(1.5rem, 3vh, 3rem);
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) 1.5s forwards;
}
.hero__eyebrow-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 0 rgba(232, 77, 138, 0.4);
    animation: ping 2.2s infinite;
}
@keyframes ping {
    0%   { box-shadow: 0 0 0 0 rgba(232, 77, 138, 0.4); }
    70%  { box-shadow: 0 0 0 12px rgba(232, 77, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 77, 138, 0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__title {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 13.5vw, 12.5rem);
    line-height: 0.92;
    letter-spacing: -0.025em;
    font-weight: 700;
    text-transform: uppercase;
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__line--right { text-align: right; }
.hero__word { display: inline-block; white-space: nowrap; }
.hero__word--fancy {
    font-style: italic;
    font-weight: 300;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ltr {
    display: inline-block;
    transform: translateY(115%) rotate(4deg);
    animation: rise 1s var(--ease-out) forwards;
    animation-delay: calc(1.35s + var(--i) * 0.045s);
}
@keyframes rise {
    to { transform: translateY(0) rotate(0); }
}

.hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-top: clamp(2rem, 5vh, 4rem);
}
.hero__baseline {
    max-width: 460px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    line-height: 1.45;
    color: var(--ink-soft);
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) 2s forwards;
}

/* Badge circulaire rotatif */
.hero__seal {
    position: relative;
    width: clamp(120px, 16vw, 190px);
    height: clamp(120px, 16vw, 190px);
    flex-shrink: 0;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) 2.2s forwards;
}
.hero__seal svg {
    width: 100%; height: 100%;
    animation: spin 22s linear infinite;
}
.hero__seal text {
    font-family: var(--grotesk);
    font-size: 13.5px;
    letter-spacing: 0.22em;
    fill: var(--ink);
    text-transform: uppercase;
}
.hero__seal-center {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-size: 1.6rem;
    color: var(--pink);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
    overflow: hidden;
    border-top: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
    background: var(--ink);
    color: var(--bg);
    padding: 0.9rem 0;
    transform: rotate(-1.2deg) scale(1.02);
    margin: 2rem -1rem 0;
}
.marquee__track {
    display: flex;
    width: max-content;
    animation: scroll 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; }
.marquee__item {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.1rem, 2.4vw, 1.7rem);
    white-space: nowrap;
    padding: 0 1.4rem;
}
.marquee__star { color: var(--pink); font-size: 1rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: clamp(5rem, 12vh, 9rem) var(--pad) 0; }
.section__head {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 1.2rem;
    margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
}
.section__index {
    font-family: var(--grotesk);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--pink);
    letter-spacing: 0.15em;
}
.section__title {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
}
.section__title em {
    font-style: italic;
    font-weight: 300;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* =========================================================
   À PROPOS
   ========================================================= */
.about {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
}
.about__text {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.25rem, 2.4vw, 1.85rem);
    line-height: 1.5;
    color: var(--ink-soft);
}
.about__text::first-letter {
    font-size: 3.2em;
    font-weight: 700;
    float: left;
    line-height: 0.8;
    padding: 0.08em 0.12em 0 0;
    color: var(--pink);
}
.about__stats { display: flex; flex-direction: column; gap: 1rem; }
.stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 1.6rem;
    background: var(--bg-card);
    border: 1.5px solid var(--ink);
    border-radius: 18px;
    box-shadow: 5px 5px 0 var(--blush);
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.stat:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--pink);
}
.stat__value {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
}
.stat__value sup {
    color: var(--pink);
    font-size: 0.5em;
    font-style: italic;
}
.stat__label {
    font-family: var(--grotesk);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-dim);
    text-align: right;
    max-width: 150px;
}

/* =========================================================
   PARCOURS — CARTES EMPILÉES
   ========================================================= */
.deck { display: flex; flex-direction: column; gap: 2rem; }
.card {
    position: sticky;
    top: var(--stick, 6rem);
    background: var(--bg-card);
    border: 1.5px solid var(--ink);
    border-radius: 26px;
    padding: clamp(1.6rem, 4vw, 3rem);
    box-shadow: 0 -12px 40px -18px rgba(43, 18, 38, 0.25);
}
.card__head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.2rem 2rem;
    align-items: start;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed var(--line);
}
.card__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 1.2px var(--pink);
}
.card__role {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
}
.card__org {
    margin-top: 0.45rem;
    font-family: var(--grotesk);
    font-size: 0.92rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.card__sep { color: var(--pink); margin: 0 0.4rem; }
.card__when {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}
.card__period {
    font-family: var(--grotesk);
    font-size: 0.8rem;
    color: var(--ink-dim);
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.card__chip {
    font-family: var(--grotesk);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1.5px solid var(--ink);
    white-space: nowrap;
}
.card__chip--now {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
}
.card__missions {
    columns: 2;
    column-gap: 3rem;
}
.card__missions li {
    break-inside: avoid;
    position: relative;
    padding: 0.45rem 0 0.45rem 1.6rem;
    color: var(--ink-soft);
    font-size: 0.97rem;
}
.card__missions li::before {
    content: '✦';
    position: absolute;
    left: 0; top: 0.45rem;
    font-size: 0.75rem;
    color: var(--pink);
}

/* =========================================================
   COMPÉTENCES — LIGNES ÉDITORIALES
   ========================================================= */
.skills-list { border-top: 1.5px solid var(--ink); }
.skill-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "name pct" "bar bar";
    align-items: center;
    gap: 0.4rem 2rem;
    padding: 1.4rem 0.5rem 1.2rem;
    border-bottom: 1.5px solid var(--ink);
    overflow: hidden;
    transition: padding .35s var(--ease-out);
}
.skill-row::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--grad);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .45s var(--ease-out);
    z-index: 0;
}
.skill-row:hover::before { transform: scaleY(1); }
.skill-row:hover { padding-left: 1.4rem; }
.skill-row > * { position: relative; z-index: 1; }
.skill-row__name {
    grid-area: name;
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.25rem, 3vw, 2.1rem);
    letter-spacing: -0.01em;
    transition: color .3s;
}
.skill-row__pct {
    grid-area: pct;
    font-family: var(--grotesk);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--pink);
    transition: color .3s;
}
.skill-row:hover .skill-row__name,
.skill-row:hover .skill-row__pct { color: #fff; }
.skill-row__bar {
    grid-area: bar;
    display: block;
    height: 4px;
    background: rgba(43, 18, 38, 0.1);
    border-radius: 99px;
    overflow: hidden;
}
.skill-row__fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--grad);
    border-radius: 99px;
    transition: width 1.3s var(--ease-out);
}
.skill-row.visible .skill-row__fill { width: var(--target); }
.skill-row:hover .skill-row__bar { background: rgba(255, 255, 255, 0.35); }
.skill-row:hover .skill-row__fill { background: #fff; }

/* Extras : chips + langues */
.extras {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    margin-top: clamp(2.5rem, 6vh, 4rem);
}
.extras__title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
    font-family: var(--grotesk);
    font-size: 0.85rem;
    padding: 0.55rem 1.1rem;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    background: var(--bg-card);
    transition: all .3s var(--ease-out);
    cursor: default;
}
.chip:hover {
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-3px) rotate(-2deg);
}
.langs { display: flex; flex-direction: column; gap: 1.1rem; }
.lang__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.45rem;
}
.lang__name { font-family: var(--grotesk); font-weight: 500; font-size: 0.95rem; }
.lang__level { font-size: 0.8rem; color: var(--ink-dim); }
.lang__bar {
    display: block;
    height: 5px;
    background: rgba(43, 18, 38, 0.1);
    border-radius: 99px;
    overflow: hidden;
}
.lang__fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--grad);
    border-radius: 99px;
    transition: width 1.3s var(--ease-out) .2s;
}
.extras__col.visible .lang__fill { width: var(--target); }

/* =========================================================
   FORMATION — CARTES PASTEL INCLINÉES
   ========================================================= */
.diplomas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: clamp(1.2rem, 3vw, 2rem);
}
.diploma {
    position: relative;
    padding: 2rem 1.8rem 2.4rem;
    border: 1.5px solid var(--ink);
    border-radius: 22px;
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.diploma--0 { background: var(--blush);  transform: rotate(-1.3deg); }
.diploma--1 { background: #e6d9fb;       transform: rotate(1.1deg); }
.diploma--2 { background: #ffe3d8;       transform: rotate(-0.8deg); }
.diploma:hover {
    transform: rotate(0) translateY(-6px);
    box-shadow: 7px 7px 0 var(--ink);
}
.diploma__period {
    display: inline-block;
    font-family: var(--grotesk);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.8rem;
    background: var(--bg-card);
    border: 1px solid var(--ink);
    border-radius: 999px;
    margin-bottom: 1.1rem;
}
.diploma__title {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}
.diploma__school {
    font-family: var(--grotesk);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    margin-bottom: 0.7rem;
}
.diploma__detail { font-size: 0.92rem; color: var(--ink-soft); }
.diploma__star {
    position: absolute;
    top: 1.4rem; right: 1.5rem;
    color: var(--pink);
    font-size: 1.1rem;
}

/* =========================================================
   CONTACT
   ========================================================= */
.section--contact {
    text-align: center;
    padding-bottom: clamp(5rem, 12vh, 9rem);
}
.contact__eyebrow {
    font-family: var(--grotesk);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-dim);
    margin-bottom: 1.5rem;
}
.contact__title {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 9vw, 7rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
.contact__title em {
    display: block;
    font-style: italic;
    font-weight: 300;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.contact__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}
.contact__mail {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--grotesk);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1.3rem 2.8rem;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
    transition: background .35s, transform .35s var(--ease-out), box-shadow .35s;
}
.contact__mail:hover {
    background: var(--pink);
    box-shadow: 0 18px 40px -12px rgba(232, 77, 138, 0.55);
}
.contact__mail svg { transition: transform .35s var(--ease-out); }
.contact__mail:hover svg { transform: translate(3px, -3px); }
.contact__alt {
    font-family: var(--grotesk);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    transition: color .3s, border-color .3s;
}
a.contact__alt:hover { color: var(--pink); border-color: var(--pink); }
.contact__alt--plain { border: none; color: var(--ink-dim); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.6rem var(--pad);
    border-top: 1.5px solid var(--ink);
    font-family: var(--grotesk);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--ink-dim);
}
.footer span:first-child {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
}
.footer a { transition: color .3s; }
.footer a:hover { color: var(--pink); }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
    transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 880px) {
    .topbar__nav { display: none; }
    .about { grid-template-columns: 1fr; }
    .extras { grid-template-columns: 1fr; gap: 2.5rem; }
    .card__missions { columns: 1; }
    .card { position: static; }
}
@media (max-width: 640px) {
    body { font-size: 15px; }
    .topbar { padding-top: 0.9rem; padding-bottom: 0.9rem; }
    .topbar__cta { padding: 0.55rem 1.1rem; font-size: 0.75rem; }

    .hero { padding-top: 6rem; min-height: 92svh; }
    .hero__line--right { text-align: left; }
    .hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 2rem;
    }
    .hero__seal { align-self: flex-end; margin-top: -1.5rem; }

    .marquee { transform: rotate(-1.5deg) scale(1.05); padding: 0.7rem 0; }

    .section__head { flex-direction: column; gap: 0.4rem; }
    .about__text { font-size: 1.15rem; }
    .stat { padding: 1rem 1.2rem; box-shadow: 4px 4px 0 var(--blush); }
    .stat__value { font-size: 2rem; }
    .stat__label { font-size: 0.68rem; }

    .card { border-radius: 18px; }
    .card__head { grid-template-columns: 1fr; gap: 0.8rem; }
    .card__num { font-size: 2.2rem; }
    .card__when { flex-direction: row; align-items: center; justify-content: flex-start; flex-wrap: wrap; gap: 0.7rem; }
    .card__missions li { font-size: 0.9rem; }

    .skill-row { padding: 1rem 0.3rem 0.9rem; gap: 0.35rem 1rem; }
    .skill-row:hover { padding-left: 0.3rem; }
    .skill-row__name { font-size: 1.1rem; }
    .skill-row__pct { font-size: 0.95rem; }

    .chip { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
    .diploma { padding: 1.6rem 1.3rem 1.9rem; }
    .diploma__title { font-size: 1.12rem; }

    .contact__mail { padding: 1.1rem 2rem; width: 100%; justify-content: center; }
    .footer { flex-direction: column; gap: 0.4rem; text-align: center; }

    .mesh__blob { filter: blur(60px); opacity: 0.4; }
}

/* =========================================================
   ACCESSIBILITÉ — MOUVEMENT RÉDUIT
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .loader { display: none; }
    .ltr { transform: none; }
    .hero__eyebrow, .hero__baseline, .hero__seal { opacity: 1; }
    .reveal { opacity: 1; transform: none; }
    .skill-row__fill, .lang__fill { width: var(--target); }
}

/* =========================================================
   IMPRESSION
   ========================================================= */
@media print {
    .loader, .cursor, .cursor-dot, .mesh, .topbar, .marquee,
    .hero__seal, .footer a, .contact__mail svg { display: none !important; }
    body { background: #fff; color: #111; }
    .hero { min-height: auto; padding: 1rem 0; }
    .hero__word--fancy, .section__title em, .contact__title em {
        background: none !important;
        -webkit-text-fill-color: #111 !important;
        color: #111 !important;
    }
    .ltr { transform: none; animation: none; }
    .hero__eyebrow, .hero__baseline { opacity: 1; animation: none; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .card { position: static; box-shadow: none; page-break-inside: avoid; }
    .stat, .diploma, .chip { box-shadow: none !important; transform: none !important; }
    .skill-row__fill, .lang__fill { width: var(--target); background: #111; }
    .section { padding: 1.5rem 0 0; }
    .marquee + .section { padding-top: 0.5rem; }
    a { color: #111 !important; }
}
