/* ══════════════════════════════════════════════
   main.css · lmscom studio web
   Styles partagés : reset · variables · nav
   boutons · sections · fade-up · footer
   ══════════════════════════════════════════════ */

/* ── VARIABLES ───────────────────────────────── */
:root {
    --black:      #0F0E0D;
    --ink:        #1C1917;
    --white:      #FAFAF8;
    --ivory:      #F2EDE2;
    --paper:      #ECE5D5;
    --tc:         #E8652A;
    --tc-deep:    #C44E1F;
    --tc-dim:     #F4A07A;
    --moss:       #2A3E2D;
    --warm-gray:  #807468;
    --border:     #DDD2BF;
    --border-d:   #C9BCA5;
    --announce-h: 0px;
    --mono:       'Space Mono', ui-monospace, 'SFMono-Regular', monospace;
}

/* ── ANNOUNCE BAR ────────────────────────────── */
.announce-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    height: 40px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    letter-spacing: -0.005em;
}
.announce-bar strong { color: white; font-weight: 700; }
.announce-bar .announce-dot { color: var(--tc); }
.announce-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--tc);
    color: white;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 100px;
    transition: background .2s;
    flex-shrink: 0;
}
.announce-cta:hover { background: var(--tc-deep); }
@media (max-width: 600px) {
    .announce-bar { gap: 10px; font-size: 11.5px; }
    .announce-text-long { display: none; }
    .announce-text-short { display: inline; }
}
@media (min-width: 601px) {
    .announce-text-short { display: none; }
}

/* ── PRICE OFFER (carte promo) ───────────────── */
.price-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,101,42,.12);
    color: var(--tc);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(232,101,42,.25);
    margin-bottom: 12px;
}
.price-offer-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tc);
    animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.7); }
}
.price-was {
    font-size: 13px;
    color: var(--warm-gray);
    margin-top: 4px;
}
.price-was s {
    text-decoration: line-through;
    opacity: .7;
}
.price-monthly {
    font-size: 12.5px;
    color: var(--warm-gray);
    margin-top: 6px;
    font-style: italic;
}
.card.dark .price-monthly {
    color: rgba(255,255,255,.45);
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BASE ────────────────────────────────────── */
html { scroll-behavior: smooth; overflow-anchor: none; }

/* Ancres : la pill flottante ne doit pas recouvrir le titre visé */
section[id], div[id] { scroll-margin-top: 92px; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-anchor: none;
    padding-top: var(--announce-h);
}

/* ── TYPOGRAPHIE HELPERS ─────────────────────── */
.display {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 700;
    letter-spacing: -0.04em;
    line-height: 0.96;
}
.display-light {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 400;
    letter-spacing: -0.025em;
    line-height: 1.05;
}
.serif {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.02em;
}

/* ── NAV (floating pill) ─────────────────────── */
/*
   Pill flottante toujours en glass dark.
   Auto-hide en scroll-down, réapparaît en scroll-up.
   Mobile : passe en burger + drawer plein écran.
*/
nav {
    position: fixed;
    top: calc(14px + var(--announce-h));
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 940px;
    z-index: 100;
    padding: 7px 8px 7px 22px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(20, 17, 15, 0.72);
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 100px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.20), 0 1px 0 rgba(255,255,255,.05) inset;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1), opacity 0.3s ease;
}
nav.nav-hidden {
    transform: translateX(-50%) translateY(calc(-100% - 24px));
    opacity: 0;
    pointer-events: none;
}

/* Logo */
.logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 700;
    font-size: 18px;
    letter-spacing: -0.04em;
    color: white;
    text-decoration: none;
    flex-shrink: 0;
}
.logo .dot { color: var(--tc); }

/* Liens nav */
.nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.005em;
    padding: 8px 14px;
    border-radius: 100px;
    transition: color .2s ease, background .2s ease;
    display: inline-block;
}
.nav-links a:hover { color: white; background: rgba(255, 255, 255, 0.06); }
.nav-links a.active { color: white; background: rgba(255, 255, 255, 0.09); }

/* CTA dans la pill */
.nav-cta {
    padding: 9px 18px;
    font-size: 13px;
    flex-shrink: 0;
}

/* Burger - hidden on desktop */
.nav-burger {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    position: relative;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}
.nav-burger span {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 1.5px;
    background: currentColor;
    transition: transform .35s cubic-bezier(.4,0,.2,1), top .35s cubic-bezier(.4,0,.2,1);
    border-radius: 1px;
}
.nav-burger span:first-child { top: 15px; }
.nav-burger span:last-child  { top: 23px; }
body.drawer-open .nav-burger span:first-child { top: 19px; transform: rotate(45deg); }
body.drawer-open .nav-burger span:last-child  { top: 19px; transform: rotate(-45deg); }

/* ── DRAWER (mobile fullscreen) ──────────────── */
.nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 99;
    background:
        radial-gradient(ellipse 55% 60% at 96% -2%, rgba(232,101,42,.22) 0%, transparent 100%),
        radial-gradient(ellipse 50% 55% at 2% 104%, rgba(42,62,45,.5) 0%, transparent 100%),
        var(--ink);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 96px 28px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    overflow-y: auto;
}
.nav-drawer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}
body.drawer-open .nav-drawer { opacity: 1; visibility: visible; }
body.drawer-open { overflow: hidden; }

.nav-drawer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}
.nav-drawer-link {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 600;
    font-size: clamp(32px, 7.5vw, 46px);
    letter-spacing: -0.04em;
    line-height: 1;
    color: white;
    text-decoration: none;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color .25s, padding-left .35s cubic-bezier(.4,0,.2,1);
}
.nav-drawer-link em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--tc);
}
.nav-drawer-link:hover { color: var(--tc); padding-left: 8px; }
.nav-drawer-link .nav-arrow {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.3);
    transition: transform .3s, color .3s;
}
.nav-drawer-link:hover .nav-arrow { color: var(--tc); transform: translateX(4px); }

.nav-drawer-foot {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}
.nav-drawer-mail {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    text-decoration: none;
    transition: color .2s;
}
.nav-drawer-mail:hover { color: var(--tc); }
.nav-drawer-cta { width: 100%; justify-content: center; }

/* ── BOUTONS ─────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 100px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    border: 1px solid transparent;
    line-height: 1;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}
.btn-primary { background: var(--ink); color: white; border-color: var(--ink); }
.btn-primary:hover { background: var(--tc); border-color: var(--tc); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-d); }
.btn-ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }
.btn-tc { background: var(--tc); color: white; border-color: var(--tc); }
.btn-tc:hover { background: var(--tc-deep); border-color: var(--tc-deep); transform: translateY(-1px); }
.btn-lg { padding: 16px 30px; font-size: 14px; }
.btn-white { background: white; color: var(--ink); border-color: white; }
.btn-white:hover { background: var(--ivory); }
.btn-arrow { display: inline-flex; align-items: center; gap: 8px; transition: gap .2s ease; }
.btn:hover .btn-arrow { gap: 14px; }

/* Ghost dans contexte sombre */
.dark-ctx .btn-ghost {
    color: white;
    border-color: rgba(255,255,255,0.18);
}
.dark-ctx .btn-ghost:hover { background: white; color: var(--ink); border-color: white; }

/* ── LAYOUT SECTIONS ─────────────────────────── */
.section { padding: 120px 5%; }
.section-inner { max-width: 1320px; margin: 0 auto; }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.section-head-left { flex: 1; min-width: 280px; }
.section-head-right { font-size: 16px; color: var(--warm-gray); max-width: 380px; line-height: 1.7; }

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 20px;
}
.section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 600;
    font-size: clamp(40px, 5.5vw, 88px);
    letter-spacing: -0.045em;
    line-height: 0.95;
    color: var(--ink);
}
.section-title em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--tc);
}

/* ── FADE-UP ─────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .08s; }
.fade-up-d2 { transition-delay: .16s; }
.fade-up-d3 { transition-delay: .24s; }
.fade-up-d4 { transition-delay: .32s; }

/* ── MEGA FOOTER ─────────────────────────────── */
.mega-footer {
    background:
        radial-gradient(ellipse 55% 50% at 95% -5%, rgba(232,101,42,.14) 0%, transparent 100%),
        radial-gradient(ellipse 50% 55% at 0% 105%, rgba(42,62,45,.45) 0%, transparent 100%),
        var(--ink);
    color: white;
    padding: 100px 5% 80px;
    position: relative;
    overflow: hidden;
}

/* ── MINI RDV BUTTON (icon-only circle, Cal.com modal trigger) ─ */
.lms-rdv-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    background: rgba(15, 14, 13, 0.88);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s cubic-bezier(.4,0,.2,1), background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lms-rdv-btn span {
    /* Visuellement caché, lu par les screen readers */
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.lms-rdv-btn svg {
    width: 16px; height: 16px;
    color: white;
    transition: color .25s ease;
}
.lms-rdv-btn:hover {
    background: var(--tc);
    border-color: var(--tc);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232, 101, 42, 0.4);
}
.lms-rdv-btn:hover svg { color: white; }
/* Tooltip au hover (desktop) */
.lms-rdv-btn::after {
    content: 'Prendre rendez-vous';
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: rgba(15, 14, 13, 0.92);
    color: white;
    padding: 6px 12px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
}
.lms-rdv-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.mega-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.mega-footer-inner { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; }

.mega-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.mega-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.mega-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--tc); }
.mega-headline {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 500;
    font-size: clamp(40px, 5vw, 76px);
    letter-spacing: -0.045em;
    line-height: 1;
    margin-bottom: 36px;
}
.mega-headline em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; color: var(--tc); }
.mega-mail {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 400;
    font-size: clamp(28px, 3.5vw, 48px);
    letter-spacing: -0.03em;
    color: var(--tc-dim);
    text-decoration: none;
    border-bottom: 1px solid rgba(244,160,122,.3);
    padding-bottom: 8px;
    display: inline-block;
    transition: color .2s, border-color .2s;
}
.mega-mail:hover { color: var(--tc); border-color: var(--tc); }
.mega-meta { display: flex; flex-direction: column; gap: 32px; }
.mega-meta-block .mb-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 10px;
}
.mega-meta-block .mb-content { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.55; }
.mega-meta-block a { color: rgba(255,255,255,.85); text-decoration: none; transition: color .2s; }
.mega-meta-block a:hover { color: var(--tc); }
.mega-logo-row { padding: 80px 0 40px; position: relative; }
.mega-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 700;
    font-size: clamp(80px, 22vw, 360px);
    letter-spacing: -0.07em;
    line-height: 0.85;
    color: white;
    display: block;
    white-space: nowrap;
}
.mega-logo .dot { color: var(--tc); }
.mega-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 12px;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: 16px;
}
.mega-bottom-links { display: flex; gap: 24px; }
.mega-bottom-links a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.mega-bottom-links a:hover { color: white; }

/* ── KEYFRAMES ───────────────────────────────── */
@keyframes fadeUp    { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes drawLine  { from { opacity: 0; clip-path: inset(0 100% 0 0); } to { opacity: 1; clip-path: inset(0 0 0 0); } }

/* ══════════════════════════════════════════════
   IDENTITÉ STUDIO · mono · folios · curseur
   sceau · grain · cadre blueprint
   ══════════════════════════════════════════════ */

/* Couche meta en monospace (signature studio technique) */
.eyebrow, .hero-eyebrow, .work-tag, .hero-stat-label,
.pillar-tag, .mega-eyebrow, .compare-eyebrow-pill,
.mega-meta-block .mb-label, .bcd-header, .bcd-foot,
.bcd-typo-role, .tarif-label, .step-title, .ii-title {
    font-family: var(--mono);
}
.eyebrow, .hero-eyebrow, .work-tag, .hero-stat-label,
.pillar-tag, .mega-eyebrow { letter-spacing: 0.1em; }

/* Folios de section (01 à 07) */
body { counter-reset: sec; }
.section-head { counter-increment: sec; }
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 11px; }
.section-head .eyebrow::before {
    content: "(" counter(sec, decimal-leading-zero) ")";
    color: var(--tc);
    font-weight: 700;
}

/* Curseur signature · anneau qui suit le pointeur */
.cursor-ring {
    position: fixed; top: 0; left: 0;
    width: 30px; height: 30px;
    border: 1.5px solid var(--tc);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: width .25s cubic-bezier(.3,1.5,.5,1), height .25s cubic-bezier(.3,1.5,.5,1), background .2s, opacity .3s, border-color .2s;
    will-change: transform;
}
.cursor-ring.on { opacity: 1; }
.cursor-ring.is-hover { width: 54px; height: 54px; background: rgba(232,101,42,.22); border-color: var(--tc-dim); }
.cursor-ring.is-down { width: 20px; height: 20px; }
@media (hover: none), (pointer: coarse) { .cursor-ring { display: none; } }

/* Grain / texture matière */
body::after {
    content: '';
    position: fixed; inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Sceau qui tourne (signature artisan) */
.seal { position: absolute; width: 132px; height: 132px; z-index: 2; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.seal svg { width: 100%; height: 100%; animation: sealspin 22s linear infinite; transform-origin: 50% 50%; }
.seal text { font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; fill: rgba(255,255,255,.82); }
.seal-mark { position: absolute; font-size: 17px; color: var(--tc); }
@keyframes sealspin { to { transform: rotate(360deg); } }

/* Cadre blueprint (coins techniques) */
.bp-frame { position: absolute; inset: 22px; z-index: 1; pointer-events: none; }
.bp-frame i { position: absolute; width: 16px; height: 16px; border: 1.5px solid rgba(255,255,255,.22); }
.bp-frame i:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.bp-frame i:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.bp-frame i:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.bp-frame i:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }

@media (prefers-reduced-motion: reduce) { .seal svg { animation: none; } }

/* ══════════════════════════════════════════════
   ANIMATIONS RICHES (agence) · au scroll, GPU-light
   ══════════════════════════════════════════════ */

/* Titres en volet · FAIL-SAFE : visibles par défaut, l'animation se joue à l'apparition.
   Si le JS/observer ne se déclenche pas, le titre reste simplement visible (jamais caché). */
@keyframes titleVolet {
    from { clip-path: inset(-4% -3% 112% -3%); transform: translateY(0.16em); }
    to   { clip-path: inset(-4% -3% -12% -3%); transform: none; }
}
html.js .section-title.title-in {
    animation: titleVolet 1s cubic-bezier(.16,1,.3,1) both;
}

/* ✦ qui tourne après le folio de chaque section */
.section-head .eyebrow::after {
    content: '✦';
    color: var(--tc);
    font-size: 0.85em;
    line-height: 1;
    margin-left: 2px;
    display: inline-block;
    animation: sealspin 11s linear infinite;
    transform-origin: 50% 50%;
}

/* Rotations au survol (interactivité) */
.pillar-item .pillar-num { transition: color .3s ease, transform .5s cubic-bezier(.3,1.35,.4,1); }
.pillar-item:hover .pillar-num { transform: rotate(-8deg) scale(1.08); }
.work-tag .dot { transition: transform .5s cubic-bezier(.3,1.35,.4,1), border-radius .4s ease; }
.work-item:hover .work-tag .dot { transform: rotate(45deg) scale(1.3); border-radius: 1px; }

@media (prefers-reduced-motion: reduce) {
    .section-head .eyebrow::after { animation: none; }
    html.js .section-title.title-in { animation: none; }
}

/* ── RESPONSIVE PARTAGÉ ──────────────────────── */
@media (max-width: 980px) {
    nav { padding: 7px 8px 7px 22px; gap: 8px; }
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: block; }
    .section { padding: 80px 5%; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 24px; }
    .mega-footer { padding: 72px 5% 70px; }
    .mega-footer-top { grid-template-columns: 1fr; gap: 48px; }
    .mega-logo-row { padding: 48px 0 28px; }
}
@media (max-width: 540px) {
    nav { width: calc(100% - 24px); top: calc(10px + var(--announce-h)); height: 52px; }
    .logo { font-size: 17px; }
    .nav-drawer { padding: 88px 24px 32px; }
    .section { padding: 56px 5%; }
    .mega-footer { padding: 56px 5% 60px; }
    /* Cible tactile : 44px minimum au doigt */
    .lms-rdv-btn { width: 44px; height: 44px; bottom: 14px; right: 14px; }
    .lms-rdv-btn svg { width: 16px; height: 16px; }
    .lms-rdv-btn::after { display: none; }
}
