/* ===========================================================================
   bv-front.css — Design system front Baptiste Vidal.
   Typo, layout, composants, utilitaires. Chargé après bv-tokens.css.
   =========================================================================== */

/* ─── Override du moule sur les pages front ─────────────────────────────
   Le moule pose :
     - body { background: #f0f2fb }  → bleu lavande (visible derrière nav)
     - main { padding-top: 64px }    → bandeau blanc au-dessus du hero
   On annule les deux pour les pages front. Le padding-top du header est
   géré par chaque page (hero plein écran sur la home, padding-top calc()
   sur les autres pages). */
body.bv-front-body {
    background: var(--bv-bg) !important;
}
body.bv-front-body > .blob {
    display: none !important;
}
body.bv-front-body > main,
body.bv-front-body > main#main-content {
    padding-top: 0 !important;
}

/* ─── Reset léger sur les pages front (.bv-front en racine) ─────────── */
.bv-front {
    background: var(--bv-bg);
    color: var(--bv-text);
    font-family: var(--bv-font-body);
    font-size: var(--bv-fs-body);
    line-height: var(--bv-lh-normal);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Typographie front ─────────────────────────────────────────────── */
.bv-front h1, .bv-front h2, .bv-front h3, .bv-front .bv-display {
    font-family: var(--bv-font-display);
    font-weight: 400;
    line-height: var(--bv-lh-tight);
    letter-spacing: var(--bv-ls-display);
    margin: 0;
    /* color non défini ici à dessein : laisse les contextes (hero sombre,
       footer sombre, sections claires) gérer leur propre couleur. */
}
.bv-display { font-size: var(--bv-fs-display); }
.bv-front h1 { font-size: var(--bv-fs-h1); }
.bv-front h2 { font-size: var(--bv-fs-h2); }
.bv-front h3 { font-size: var(--bv-fs-h3); line-height: var(--bv-lh-snug); }

/* Couleur par défaut des titres en sections claires */
.bv-section h2,
.bv-section h3,
.bv-section .bv-display:not(.bv-cta-title) {
    color: var(--bv-text);
}

.bv-front p {
    margin: 0 0 1em;
    line-height: var(--bv-lh-normal);
    color: inherit;
}
.bv-front p:last-child { margin-bottom: 0; }

.bv-front a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--bv-d-fast) ease;
}
.bv-front a:hover { opacity: 0.7; }

/* Caption / labels en majuscules (mensurations, méta, nav) */
.bv-caption {
    font-family: var(--bv-font-body);
    font-size: var(--bv-fs-caption);
    text-transform: uppercase;
    letter-spacing: var(--bv-ls-caps);
    font-weight: 500;
    color: var(--bv-text-muted);
}
.bv-micro {
    font-family: var(--bv-font-body);
    font-size: var(--bv-fs-micro);
    text-transform: uppercase;
    letter-spacing: var(--bv-ls-caps);
    font-weight: 500;
}

/* ─── Layout : container & grid ─────────────────────────────────────── */
.bv-container {
    width: 100%;
    padding-left: var(--bv-page-margin);
    padding-right: var(--bv-page-margin);
}

.bv-grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--bv-gutter);
}
@media (max-width: 720px) {
    .bv-grid-12 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Spacers verticaux — resserrés pour rythme premium dense */
.bv-section { padding-block: clamp(56px, 8vh, 96px); }
.bv-section--sm { padding-block: clamp(40px, 5vh, 64px); }
.bv-section--lg { padding-block: clamp(72px, 10vh, 120px); }
@media (max-width: 720px) {
    .bv-section { padding-block: clamp(48px, 6vh, 72px); }
}

/* ─── Boutons ────────────────────────────────────────────────────────── */
.bv-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--bv-space-2);
    padding: 14px 28px;
    font-family: var(--bv-font-body);
    font-size: var(--bv-fs-caption);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--bv-ls-caps);
    border: 1px solid var(--bv-text);
    border-radius: 0;
    background: transparent;
    color: var(--bv-text);
    cursor: pointer;
    transition: background var(--bv-d-fast) ease, color var(--bv-d-fast) ease, opacity var(--bv-d-fast) ease;
}
.bv-btn:hover { background: var(--bv-text); color: var(--bv-bg); opacity: 1; }
.bv-btn--solid { background: var(--bv-text); color: var(--bv-bg); }
.bv-btn--solid:hover { background: var(--bv-bg); color: var(--bv-text); }
.bv-btn--ghost { border-color: var(--bv-border); }

/* ─── Header front ───────────────────────────────────────────────────── */
.bv-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--bv-z-header);
    height: var(--bv-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--bv-page-margin);
    background: transparent;
    color: var(--bv-text);
    border-bottom: 1px solid transparent;
    transition:
        background var(--bv-d-normal) var(--bv-ease-out),
        color      var(--bv-d-normal) var(--bv-ease-out),
        border-color var(--bv-d-normal) var(--bv-ease-out);
}
.bv-header[data-state="scrolled"] {
    background: rgba(250, 250, 248, 0.85);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border-bottom-color: var(--bv-border);
    color: var(--bv-text);
}
.bv-header[data-state="dark"],
.bv-header[data-state="hero"] {
    color: var(--bv-bg);
}

/* ── Logo signature (Cormorant Italic) ──────────────────────────────── */
.bv-logo {
    font-family: var(--bv-font-display);
    font-style: italic;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 400;
    letter-spacing: var(--bv-ls-tight);
    line-height: 1;
    text-decoration: none;
    color: inherit;
    transition: opacity var(--bv-d-fast) ease, letter-spacing var(--bv-d-normal) var(--bv-ease-out);
}
.bv-logo:hover {
    opacity: 1;
    letter-spacing: 0;
}
.bv-logo__short { display: none; }
@media (max-width: 480px) {
    .bv-logo__full  { display: none; }
    .bv-logo__short { display: inline; font-style: italic; font-size: 1.4rem; letter-spacing: 0; }
}

/* ── Nav links avec underline raffiné ───────────────────────────────── */
.bv-nav-wrap { display: flex; }
.bv-nav {
    display: flex;
    gap: var(--bv-space-7);
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.bv-nav a {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    font-family: var(--bv-font-body);
    font-size: var(--bv-fs-caption);
    text-transform: uppercase;
    letter-spacing: var(--bv-ls-caps);
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    transition: opacity var(--bv-d-fast) ease;
}
.bv-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform var(--bv-d-normal) var(--bv-ease-out-expo);
}
.bv-nav a:hover { opacity: 1; }
.bv-nav a:hover::after,
.bv-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left center;
}
.bv-nav__admin a {
    padding: 6px 14px;
    border: 1px solid currentColor;
    border-radius: 0;
}
.bv-nav__admin a::after { display: none; }

/* ── Burger animé (3 lignes ↔ X) ─────────────────────────────────────── */
.bv-burger {
    display: none;
    width: 36px;
    height: 36px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    position: relative;
}
.bv-burger span {
    display: block;
    position: absolute;
    left: 8px;
    right: 8px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.35s var(--bv-ease-out-expo), opacity 0.2s ease, top 0.35s var(--bv-ease-out-expo);
    transform-origin: center;
}
.bv-burger span:nth-child(1) { top: 12px; }
.bv-burger span:nth-child(2) { top: 18px; }
.bv-burger span:nth-child(3) { top: 24px; }
.bv-burger[aria-expanded="true"] span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
}
.bv-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bv-burger[aria-expanded="true"] span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
}
/* Menu ouvert : panneau off-white → la croix doit être sombre même si le header
   était en mode clair (état "hero" tout en haut de la page). */
.bv-burger[aria-expanded="true"] {
    color: var(--bv-text);
}

/* ── Menu mobile fullscreen ─────────────────────────────────────────── */
@media (max-width: 880px) {
    .bv-nav-wrap { position: static; }
    .bv-nav {
        position: fixed;
        /* Offsets explicites (et non `inset:0` non supporté par Safari iOS < 14.1,
           ce qui faisait perdre le plein écran → menu éparpillé sur le contenu). */
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 105; /* au-dessus du contenu, sous le burger (110) qui reste cliquable */
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: var(--bv-space-5);
        padding: var(--bv-page-margin);
        padding-top: calc(var(--bv-header-h) + var(--bv-space-5));
        background: var(--bv-bg);
        color: var(--bv-text);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.35s var(--bv-ease-out), transform 0.35s var(--bv-ease-out);
    }
    .bv-nav.is-mobile-open {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }
    .bv-nav a {
        font-family: var(--bv-font-display);
        font-size: clamp(2.5rem, 9vw, 4rem);
        font-weight: 400;
        text-transform: none;
        letter-spacing: var(--bv-ls-tight);
        line-height: 1;
        padding: 0;
    }
    .bv-nav a::after { display: none; }
    .bv-nav__admin {
        margin-top: var(--bv-space-7);
    }
    .bv-nav__admin a {
        font-family: var(--bv-font-body);
        font-size: var(--bv-fs-caption);
        text-transform: uppercase;
        letter-spacing: var(--bv-ls-caps);
    }
    .bv-burger { display: block; z-index: 110; }
    /* Empêche le scroll de l'arrière-plan quand le menu est ouvert */
    body:has(.bv-burger[aria-expanded="true"]) {
        overflow: hidden;
    }
}

/* ─── Footer front éditorial ────────────────────────────────────────── */
.bv-footer {
    background: var(--bv-bg-dark);
    color: var(--bv-bg);
    padding: clamp(48px, 7vw, 96px) var(--bv-page-margin) var(--bv-space-6);
    overflow: hidden;
}
.bv-footer .bv-caption {
    color: rgba(250, 250, 248, 0.45);
    margin-bottom: var(--bv-space-4);
}
.bv-footer a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--bv-d-fast) ease;
}
.bv-footer a:hover { opacity: 0.65; }

/* ── Bloc top : titre à gauche · bouton à droite aligné sur le bas du titre ─ */
.bv-footer__top {
    margin-bottom: clamp(48px, 7vw, 88px);
}
.bv-footer__top-head {
    display: flex;
    align-items: flex-end;            /* bouton aligné sur la ligne du bas de "contact." */
    justify-content: space-between;
    gap: clamp(24px, 5vw, 72px);
    margin-bottom: var(--bv-space-7); /* espace avant l'email */
}
.bv-footer__top-titles {
    min-width: 0;
}
.bv-footer__cta {
    flex: 0 0 auto;
    white-space: nowrap;
}
@media (max-width: 1100px) {
    .bv-footer__top-head {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--bv-space-6);
    }
}
.bv-footer__eyebrow {
    color: rgba(250, 250, 248, 0.55);
    margin-bottom: var(--bv-space-4);
}
.bv-footer__headline {
    color: var(--bv-bg);
    font-size: clamp(3rem, 11vw, 8.5rem);
    line-height: 0.92;
    margin-bottom: 0; /* l'espacement est porté par .bv-footer__top-head */
    max-width: 14ch;
}

/* Email géant cliquable */
.bv-footer__mail {
    display: inline-flex;
    align-items: baseline;
    gap: clamp(12px, 2vw, 24px);
    font-family: var(--bv-font-display);
    font-size: clamp(1.5rem, 4.5vw, 3.25rem);
    line-height: 1;
    letter-spacing: var(--bv-ls-tight);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(250, 250, 248, 0.25);
    transition: border-color var(--bv-d-normal) var(--bv-ease-out), opacity var(--bv-d-fast) ease;
}
.bv-footer__mail:hover {
    border-bottom-color: rgba(250, 250, 248, 1);
    opacity: 1;
}
.bv-footer__mail-text { display: inline-block; }
.bv-footer__mail-arrow {
    width: clamp(18px, 2.4vw, 28px);
    height: clamp(18px, 2.4vw, 28px);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translateY(-0.1em);
    transition: transform var(--bv-d-normal) var(--bv-ease-out);
}
.bv-footer__mail:hover .bv-footer__mail-arrow {
    transform: translate(8px, -0.1em);
}
.bv-footer__mail--placeholder {
    color: rgba(250, 250, 248, 0.35);
    border-bottom-style: dashed;
    pointer-events: none;
    cursor: not-allowed;
}

/* ── Divider animé (élargi quand le footer entre via image-reveal) ── */
.bv-footer__divider {
    height: 1px;
    background: rgba(250, 250, 248, 0.15);
    margin-bottom: clamp(40px, 8vw, 80px);
}

/* ── 3 colonnes ─────────────────────────────────────────────────────── */
.bv-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bv-gutter);
    margin-bottom: clamp(60px, 10vw, 100px);
}
@media (max-width: 720px) {
    .bv-footer__cols {
        grid-template-columns: 1fr;
        gap: var(--bv-space-7);
    }
}
.bv-footer__col {
    display: flex;
    flex-direction: column;
    gap: var(--bv-space-1);
}
.bv-footer__line {
    display: block;
    font-family: var(--bv-font-body);
    font-size: var(--bv-fs-body);
    line-height: 1.6;
    color: var(--bv-bg);
}
.bv-footer__line--strong {
    font-weight: 500;
}
.bv-footer__line--placeholder {
    color: rgba(250, 250, 248, 0.35);
    font-style: italic;
}
.bv-footer__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--bv-space-2);
}
.bv-footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--bv-space-2);
    font-size: var(--bv-fs-body);
    color: var(--bv-bg);
    transition: gap var(--bv-d-normal) var(--bv-ease-out), opacity var(--bv-d-fast) ease;
}
.bv-footer__social-link:hover { opacity: 1; gap: var(--bv-space-3); }
.bv-footer__social-link svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translateY(0);
    transition: transform var(--bv-d-normal) var(--bv-ease-out);
}
.bv-footer__social-link:hover svg {
    transform: translate(2px, -2px);
}

/* ── Bottom bar : copyright + legal + crédit Vultek ─────────────────── */
.bv-footer__bottom {
    border-top: 1px solid rgba(250, 250, 248, 0.1);
    padding-top: var(--bv-space-5);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--bv-space-5);
    font-size: var(--bv-fs-micro);
    color: rgba(250, 250, 248, 0.5);
    text-transform: uppercase;
    letter-spacing: var(--bv-ls-caps);
}
@media (max-width: 720px) {
    .bv-footer__bottom {
        grid-template-columns: 1fr;
        text-align: left;
    }
}
.bv-footer__copy { white-space: nowrap; }
.bv-footer__legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--bv-space-5);
}
@media (max-width: 720px) {
    .bv-footer__legal { justify-content: flex-start; }
}
.bv-footer__legal a {
    color: rgba(250, 250, 248, 0.5);
    transition: color var(--bv-d-fast) ease;
}
.bv-footer__legal a:hover {
    color: var(--bv-bg);
    opacity: 1;
}
.bv-footer__credit {
    text-align: right;
    color: rgba(250, 250, 248, 0.35);
}
.bv-footer__credit a {
    color: inherit;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.bv-footer__credit a:hover {
    color: var(--bv-bg);
    opacity: 1;
}
@media (max-width: 720px) {
    .bv-footer__credit { text-align: left; }
}

/* ─── Hero (réutilisable home + about) ──────────────────────────────────
   Spécificité élevée + !important volontaire sur les couleurs : on a
   constaté des bugs de cascade avec le moule (.bv-front h1 héritait d'une
   couleur sombre). Ces overrides garantissent un texte clair lisible. */
.bv-front .bv-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    overflow: hidden;
    background: var(--bv-bg-dark);
    color: var(--bv-bg);
}
.bv-front .bv-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}
.bv-front .bv-hero__media img,
.bv-front .bv-hero__media picture,
.bv-front .bv-hero__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 25% !important;
    display: block;
}
.bv-front .bv-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,10,10,.35) 0%, transparent 35%, transparent 55%, rgba(10,10,10,.7) 100%),
        linear-gradient(to right, rgba(10,10,10,.55) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.bv-front .bv-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--bv-page-margin);
    padding-bottom: clamp(60px, 10vh, 120px);
    color: var(--bv-bg) !important;
    z-index: 2;
    pointer-events: none;
}
.bv-front .bv-hero__title {
    color: var(--bv-bg) !important;
    font-family: var(--bv-font-display);
    font-size: var(--bv-fs-hero);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: var(--bv-ls-display);
    margin: 0;
    will-change: opacity, transform;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.bv-front .bv-hero__subtitle {
    color: rgba(250, 250, 248, 0.92) !important;
    font-family: var(--bv-font-body);
    font-size: var(--bv-fs-caption);
    text-transform: uppercase;
    letter-spacing: var(--bv-ls-caps);
    font-weight: 500;
    margin: 0;
    max-width: 480px;
    will-change: opacity, transform;
}
.bv-front .bv-scroll-indicator {
    position: absolute;
    bottom: clamp(56px, 9vh, 96px);
    right: var(--bv-page-margin);
    color: var(--bv-bg) !important;
    font-size: var(--bv-fs-micro);
    text-transform: uppercase;
    letter-spacing: var(--bv-ls-caps);
    font-weight: 500;
    display: flex;
    flex-direction: column-reverse; /* ligne au-dessus, texte en-dessous */
    align-items: flex-end;
    gap: var(--bv-space-3);
    z-index: 3;
    opacity: 0.85;
}
.bv-front .bv-scroll-indicator::after {
    content: '';
    width: 1px;
    height: 36px;
    background: currentColor;
    animation: bv-scroll-line 1.8s ease-in-out infinite;
    transform-origin: top;
}
@keyframes bv-scroll-line {
    0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
    50%      { transform: scaleY(1);   opacity: 1; }
}

/* ─── Curseur custom (desktop seulement) ────────────────────────────── */
.bv-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bv-text);
    pointer-events: none;
    z-index: var(--bv-z-cursor);
    transform: translate(-50%, -50%);
    transition: transform var(--bv-d-fast) ease, width var(--bv-d-fast) ease, height var(--bv-d-fast) ease, background var(--bv-d-fast) ease;
    mix-blend-mode: difference;
    background: #fff;
}
.bv-cursor.is-text {
    width: auto;
    height: auto;
    padding: 8px 14px;
    border-radius: 100px;
    background: var(--bv-text);
    color: var(--bv-bg);
    font-size: var(--bv-fs-micro);
    text-transform: uppercase;
    letter-spacing: var(--bv-ls-caps);
    font-weight: 500;
    mix-blend-mode: normal;
}
@media (pointer: coarse), (hover: none) {
    .bv-cursor { display: none; }
}

/* ─── Image reveal (clip-path animation) ────────────────────────────── */
.bv-image-reveal {
    overflow: hidden;
    will-change: clip-path;
}

/* ─── Reduced motion ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .bv-cursor { display: none; }
}

/* ─── Utilitaires ───────────────────────────────────────────────────── */
.bv-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.bv-text-center { text-align: center; }
.bv-mb-4 { margin-bottom: var(--bv-space-4); }
.bv-mb-6 { margin-bottom: var(--bv-space-6); }
.bv-mb-8 { margin-bottom: var(--bv-space-8); }

/* ===========================================================================
   PAGES & ÉLÉMENTS PUBLICS UTILITAIRES (erreur, légal, auth, bandeau cookies)
   Alignés sur le design front en redéfinissant les tokens "glass" du moule,
   UNIQUEMENT sous body.bv-front-body. Le BO n'a jamais cette classe → il n'est
   pas affecté. (Demande : tout ce qu'un visiteur public voit doit prendre le
   design du site front, pas celui du moule/BO.)
   =========================================================================== */
body.bv-front-body {
    --glass-bg: #FFFFFF;     /* carte blanche nette sur fond off-white */
    --glass-border: #E8E6E0;
    --blur: none;
    --accent: #111111;       /* fin des dégradés bleu/violet → noir éditorial */
    --accent2: #111111;
}

/* Coins nets (éditorial) sur les conteneurs glass du moule */
body.bv-front-body .cb-banner,
body.bv-front-body .error-card,
body.bv-front-body .error-logo,
body.bv-front-body .error-icon-card,
body.bv-front-body .error-badge,
body.bv-front-body .legal-card,
body.bv-front-body .legal-logo,
body.bv-front-body .login-card,
body.bv-front-body .login-input-wrap,
body.bv-front-body .login-btn,
body.bv-front-body .login-btn-social,
body.bv-front-body .cb-btn,
body.bv-front-body .error-btn-primary {
    border-radius: 0;
}

/* Suppression du flou + ombre soufflée → ombre éditoriale discrète */
body.bv-front-body .cb-banner,
body.bv-front-body .error-card,
body.bv-front-body .login-card {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
}
