/* =====================================================================
   MaximBlais.com — Feuille de style
   Mobile-first · variables CSS · dark mode automatique
   ===================================================================== */

/* --- Police auto-hébergée (optionnelle) ---------------------------------
   Déposez Inter (woff2) dans /assets/fonts/ pour l'activer. Si le fichier
   est absent, le navigateur utilise la pile système ci-dessous : rien ne
   casse. Voir assets/fonts/README.md.                                    */
@font-face {
    font-family: 'InterVar';
    src: url('/assets/fonts/Inter-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

/* --- Design tokens ---------------------------------------------------- */
:root {
    --navy-900: #081a2e;
    --navy-800: #0e2a47;
    --navy-700: #163a5f;
    --navy-600: #1e4d7b;
    /* Bleu de la marque (logo « MAXIM ») */
    --accent:      #1f83f7;
    --accent-600:  #0b63d6;
    --accent-400:  #5aa6ff;

    /* Thème sombre — thème unique du site */
    --bg:        #0b1622;
    --bg-alt:    #0f1e2e;
    --surface:   #13273b;
    --border:    #22384f;
    --text:      #d6e2f0;
    --text-soft: #9db0c6;
    --heading:   #eaf2fb;
    --on-dark:   #eaf2fb;

    --font-sans: 'InterVar', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --radius:    14px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.25);
    --shadow-md: 0 6px 24px rgba(0,0,0,.35);
    --shadow-lg: 0 18px 50px rgba(0,0,0,.45);

    --container: 1140px;
    --gutter:    1.25rem;
    --section-y: clamp(3rem, 8vw, 6rem);
}

/* --- Reset léger ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { color: var(--heading); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 6vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
ul { padding: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
    position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
    background: var(--navy-800); color: #fff; padding: .6rem 1rem; border-radius: 0 0 10px 10px;
    z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 0; text-decoration: none; }

/* --- Boutons ---------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-weight: 600; font-size: 1rem; line-height: 1;
    padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    min-height: 48px;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent-600); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--heading); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-600); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.eyebrow {
    text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 700;
    color: var(--accent-600); margin-bottom: .75rem;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--text-soft); max-width: 60ch; }
.grad {
    background: linear-gradient(100deg, var(--accent-400), var(--accent-600) 60%, var(--navy-600));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --- En-tête / navigation -------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--heading); }
.brand:hover { text-decoration: none; }
/* Logo en blanc partout (thème sombre + pied de page marine) */
.brand-logo { height: 40px; width: auto; display: block; filter: brightness(0) invert(1); }

.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px; padding: 0 11px; border: 1px solid var(--border);
    background: var(--surface); border-radius: 12px; cursor: pointer;
}
.nav-toggle-bar { height: 2px; width: 100%; background: var(--heading); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg); border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .3s ease; box-shadow: var(--shadow-md);
}
.site-nav.open { max-height: 420px; }
.site-nav ul { list-style: none; display: flex; flex-direction: column; padding: .5rem var(--gutter) 1rem; gap: .25rem; }
.site-nav a {
    display: block; padding: .8rem .4rem; color: var(--heading); font-weight: 600; border-radius: 10px;
}
.site-nav a:hover { text-decoration: none; background: var(--bg-alt); }
.site-nav a.is-active { color: var(--accent-600); }
.nav-cta { color: var(--accent-600) !important; }

/* --- Hero ------------------------------------------------------------- */
.hero { position: relative; padding: clamp(2.5rem, 8vw, 5.5rem) 0 clamp(3rem, 8vw, 5rem); overflow: hidden; }
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(60% 60% at 85% 10%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%),
        radial-gradient(50% 50% at 10% 90%, color-mix(in srgb, var(--navy-600) 16%, transparent), transparent 70%);
}
.hero-inner { display: grid; gap: 2.5rem; align-items: center; }
.hero-content h1 { margin: .3rem 0 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.5rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; color: var(--text-soft); font-size: .95rem; font-weight: 500; }
.hero-badges li { display: flex; align-items: center; gap: .4rem; }
.hero-badges span { color: var(--accent-600); font-weight: 800; }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-card {
    width: 100%; max-width: 380px; background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.4rem; box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; gap: .8rem; transform: rotate(-1.5deg);
}
.hero-card-dots { display: flex; gap: .4rem; margin-bottom: .4rem; }
.hero-card-dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--border); }
.hero-card-dots span:first-child { background: #ff5f56; }
.hero-card-dots span:nth-child(2) { background: #ffbd2e; }
.hero-card-dots span:nth-child(3) { background: #27c93f; }
.hero-card-line { height: 12px; border-radius: 6px; background: var(--bg-alt); }
.hero-card-line.w80 { width: 80%; } .hero-card-line.w70 { width: 70%; }
.hero-card-line.w60 { width: 60%; } .hero-card-line.w40 { width: 40%; }
.hero-card-block {
    height: 90px; border-radius: 12px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 35%, transparent), color-mix(in srgb, var(--navy-600) 35%, transparent));
}
.hero-glow {
    position: absolute; inset: 8% 12%; z-index: -1; filter: blur(46px); opacity: .5;
    background: radial-gradient(circle, var(--accent), transparent 65%);
}

/* --- Sections génériques --------------------------------------------- */
.section { padding: var(--section-y) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 60ch; margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; }
.section-head .eyebrow { margin-bottom: .5rem; }
.section-sub { color: var(--text-soft); margin-top: .6rem; }

.page-hero { padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(1.5rem, 4vw, 2.5rem); }
.page-hero h1 { margin: .4rem 0 1rem; }

/* --- Cartes ----------------------------------------------------------- */
.cards { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-soft); }
.card-icon {
    display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1rem;
    color: var(--accent-600); background: color-mix(in srgb, var(--accent) 14%, transparent);
}
.card-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-weight: 600; }
.card-link:hover span { transform: translateX(3px); }
.card-link span { transition: transform .15s; }

/* --- Étapes / processus ---------------------------------------------- */
.steps { list-style: none; display: grid; gap: 1.25rem; grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.step-num {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; margin-bottom: .8rem;
    font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--accent), var(--navy-700));
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--text-soft); }

/* --- Bandeau CTA ------------------------------------------------------ */
.cta-banner { padding: clamp(2.5rem, 7vw, 4rem) 0; }
.cta-inner {
    background: linear-gradient(120deg, var(--navy-800), var(--navy-700));
    color: var(--on-dark); border-radius: var(--radius-lg); padding: clamp(1.8rem, 5vw, 3rem);
    display: grid; gap: 1.5rem; box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.cta-inner::after {
    content: ""; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 45%, transparent), transparent 70%);
}
.cta-inner h2 { color: #fff; margin-bottom: .4rem; }
.cta-inner p { color: color-mix(in srgb, var(--on-dark) 85%, transparent); position: relative; }
.cta-inner .btn { position: relative; z-index: 1; justify-self: start; }

/* --- Services --------------------------------------------------------- */
.service-grid { display: grid; gap: 2rem; align-items: start; }
.service-block .eyebrow { color: var(--accent-600); }
.feature-list { list-style: none; display: grid; gap: .7rem; margin-top: 1.2rem; }
.feature-list li { position: relative; padding-left: 1.9rem; color: var(--text-soft); }
.feature-list li::before {
    content: "✓"; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--accent-600);
    background: color-mix(in srgb, var(--accent) 15%, transparent); width: 1.4rem; height: 1.4rem;
    display: grid; place-items: center; border-radius: 50%; font-size: .8rem;
}
.service-aside {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.service-aside-img {
    width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 12px;
    margin-bottom: 1.2rem; border: 1px solid var(--border);
}
.service-aside h3 { margin-bottom: .9rem; }
.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.tag-list li {
    font-size: .85rem; font-weight: 600; padding: .35rem .8rem; border-radius: 999px;
    background: var(--bg-alt); color: var(--text-soft); border: 1px solid var(--border);
}
.tag-list.small li { font-size: .78rem; padding: .25rem .6rem; }

/* --- À propos --------------------------------------------------------- */
.about-grid { display: grid; gap: 2.5rem; align-items: start; }
.about-text h2 { margin: 1.8rem 0 .6rem; }
.about-text h2:first-child { margin-top: 0; }
.about-text p { color: var(--text-soft); margin-bottom: .9rem; }
.about-aside { display: grid; gap: 1rem; }
.stat-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.4rem; box-shadow: var(--shadow-sm); display: grid; gap: .25rem;
}
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--accent-600); letter-spacing: -.02em; }
.stat-label { color: var(--text-soft); font-size: .95rem; }

/* --- Portfolio -------------------------------------------------------- */
.portfolio-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.project-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-thumb {
    aspect-ratio: 16 / 9; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--navy-700), var(--accent-600));
}
.project-initial { font-size: 2.6rem; font-weight: 800; color: rgba(255,255,255,.9); }
.project-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.project-cat { text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 700; color: var(--accent-600); }
.project-title { font-size: 1.2rem; }
.project-body p { color: var(--text-soft); }
.portfolio-note { text-align: center; margin-top: 2rem; color: var(--text-soft); }

/* --- Contact ---------------------------------------------------------- */
.contact-grid { display: grid; gap: 2.5rem; align-items: start; }
.contact-form-wrap {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow-md);
}
.form-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.form-group { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-weight: 600; color: var(--heading); font-size: .95rem; }
.req { color: #dc2626; }
.form-group input, .form-group textarea {
    width: 100%; font: inherit; color: var(--text); background: var(--bg);
    border: 1.5px solid var(--border); border-radius: 12px; padding: .8rem .9rem; min-height: 48px;
    transition: border-color .15s, box-shadow .15s;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}
.form-note { color: var(--text-soft); font-size: .85rem; margin-top: .8rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { border-radius: 12px; padding: 1rem 1.1rem; margin-bottom: 1.4rem; }
.alert-error { background: color-mix(in srgb, #dc2626 14%, var(--bg)); border: 1px solid color-mix(in srgb, #dc2626 40%, var(--border)); color: #fca5a5; }
.alert-error ul { margin: .5rem 0 0 1.1rem; }

.contact-aside h2 { font-size: 1.15rem; margin: 1.4rem 0 .5rem; }
.contact-aside h2:first-child { margin-top: 0; }
.contact-aside p { color: var(--text-soft); }
.contact-mail { font-weight: 700; font-size: 1.05rem; }
.next-steps { margin: .5rem 0 0 1.1rem; color: var(--text-soft); display: grid; gap: .4rem; }

/* --- Merci / 404 ------------------------------------------------------ */
.thanks { text-align: center; }
.thanks .lead { margin-inline: auto; }
.thanks .hero-actions { justify-content: center; }
.thanks-check {
    width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1.2rem; display: grid; place-items: center;
    color: #fff; background: linear-gradient(135deg, var(--accent), var(--navy-700)); box-shadow: var(--shadow-md);
}

/* --- Pied de page ----------------------------------------------------- */
.site-footer { background: var(--navy-900); color: var(--on-dark); padding: 3rem 0 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.site-footer .brand-logo { height: 42px; }
.footer-tagline { color: color-mix(in srgb, var(--on-dark) 75%, transparent); margin-top: .8rem; max-width: 32ch; }
.footer-title { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-400); margin-bottom: .9rem; }
.footer-col ul { list-style: none; display: grid; gap: .55rem; }
.footer-col a { color: color-mix(in srgb, var(--on-dark) 82%, transparent); }
.footer-col a:hover { color: #fff; }
.footer-cta { font-weight: 700; color: var(--accent-400) !important; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.4rem;
    display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
    color: color-mix(in srgb, var(--on-dark) 65%, transparent); font-size: .9rem;
}

/* --- Tarifs / forfaits ------------------------------------------------ */
.pricing { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin-bottom: 1.25rem; }
.price-card {
    position: relative; display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.9rem 1.6rem; box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--accent); box-shadow: var(--shadow-md); }
.price-badge {
    position: absolute; top: -12px; left: 1.6rem;
    background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.price-name { font-size: 1.25rem; margin-bottom: .6rem; }
.price-tag { display: flex; flex-direction: column; line-height: 1.1; margin-bottom: .5rem; }
.price-from { font-size: .8rem; color: var(--text-soft); font-weight: 600; min-height: 1.1rem; }
.price-amount { font-size: 2.1rem; font-weight: 800; color: var(--heading); letter-spacing: -.02em; }
.price-for { color: var(--text-soft); margin-bottom: .3rem; }
.price-card .feature-list { margin-bottom: 1.6rem; }
.price-card .btn { margin-top: auto; }
.pricing-note { text-align: center; color: var(--text-soft); font-size: .9rem; margin-bottom: 2.5rem; }

/* Forfait récurrent — distinct des forfaits de création */
.recurring-plan {
    display: grid; gap: 1.6rem; grid-template-columns: 1fr;
    background: var(--surface); border: 2px solid var(--accent); border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-md);
}
.recurring-info h3 { font-size: 1.5rem; margin: .2rem 0 .6rem; }
.recurring-info p { color: var(--text-soft); margin-bottom: 1rem; }
.recurring-side { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.recurring-price { display: flex; align-items: baseline; gap: .3rem; }
.recurring-price .price-amount { font-size: 2.6rem; }
.price-period { font-size: 1rem; color: var(--text-soft); font-weight: 600; }

/* --- Animation « reveal » -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   BREAKPOINTS
   ===================================================================== */
@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
    .cta-inner .btn { justify-self: end; }
    .footer-bottom { font-size: .9rem; }
}

@media (min-width: 768px) {
    .cards { grid-template-columns: repeat(3, 1fr); }
    .pricing { grid-template-columns: repeat(3, 1fr); }
    .recurring-plan { grid-template-columns: 1.7fr 1fr; align-items: center; }
    .recurring-side { align-items: flex-end; text-align: right; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid { grid-template-columns: 1.6fr 1fr; }
    .about-grid { grid-template-columns: 1.7fr 1fr; }
    .contact-grid { grid-template-columns: 1.6fr 1fr; }
    .cta-inner { grid-template-columns: 1fr auto; align-items: center; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
}

@media (min-width: 900px) {
    .hero-inner { grid-template-columns: 1.15fr .85fr; }
    .hero-card { max-width: 420px; }
    .steps { grid-template-columns: repeat(4, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    :root { --gutter: 2rem; }
}

/* --- Desktop : afficher la nav en ligne, cacher le hamburger ---------- */
@media (min-width: 860px) {
    .nav-toggle { display: none; }
    .site-nav {
        position: static; max-height: none; overflow: visible; background: transparent;
        border: 0; box-shadow: none;
    }
    .site-nav ul { flex-direction: row; align-items: center; padding: 0; gap: .25rem; }
    .site-nav a { padding: .5rem .9rem; }
    .nav-cta {
        background: var(--accent); color: #04222b !important; border-radius: 999px; margin-left: .3rem;
    }
    .nav-cta:hover { background: var(--accent-400); }
}

/* --- Accessibilité : mouvement réduit -------------------------------- */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
