/* ==========================================================================
   Luxe Shield Group — surcouche de marque sur le template « Zenfy »
   --------------------------------------------------------------------------
   Direction : THÈME CLAIR (comme la version par défaut de Zenfy) — ivoire
   chaud + or Luxe Shield #C9A227. Aucun grand aplat sombre : les respirations,
   la typographie (Hanken Grotesk + Inter), les titres de section (œil + filet)
   et les boutons à balayage viennent de Zenfy ; le reste (chrome, cartes de
   pôle, piliers, équipe, avis) est redessiné ici.

   Chargé APRÈS `style.css`. Aucun helper PHP (fichier servi tel quel) :
   les chemins d'images pointent en absolu depuis la racine du domaine.
   ========================================================================== */

:root {
    /* On détourne les variables de Zenfy : l'or remplace le bleu partout. */
    --primary-color1: #C9A227;
    --primary-color1-opc: 201, 162, 39;
    --primary-color2: #14161A;
    --primary-color2-opc: 20, 22, 26;

    --lsg-gold: #C9A227;
    --lsg-gold-soft: #EBD9A0;
    --lsg-gold-deep: #A07E16;
    --lsg-gold-bg: #FBF4E1;
    --lsg-ink: #14161A;
    --lsg-dark: #0B0D10;
    /* Fond de page : BLANC pur (le client ne veut pas d'ivoire). */
    --lsg-paper: #FFFFFF;
    --lsg-surface: #FFFFFF;
    /* Gris très clair neutre pour les sections alternées et le pied de page. */
    --lsg-surface-2: #F5F4F2;
    --lsg-text: #44413B;
    --lsg-text-soft: #726B60;
    --lsg-line: #E7E4DD;
    --lsg-radius: 6px;
}

body {
    background: var(--lsg-paper);
    color: var(--lsg-text);
    -webkit-font-smoothing: antialiased;
}
p { color: var(--lsg-text); }

.section-title h2,
.section-title2 h2 { font-weight: 700; letter-spacing: -0.01em; color: var(--lsg-ink); text-wrap: balance; }
.section-title > span { color: var(--lsg-gold-deep); font-weight: 600; }
.section-title p { color: var(--lsg-text-soft); }
@media (max-width: 575px) {
    .section-title h2, .section-title2 h2 { font-size: 29px; }
    .lsg-hero h1 { font-size: 34px; }
}

a { color: var(--lsg-gold-deep); }
a:hover { color: var(--lsg-gold); }

/* Boutons Zenfy re-colorés. `.primary-btn1` = plein or, `.primary-btn2` = contour. */
.primary-btn1 { background-color: var(--lsg-gold); color: #fff; border-radius: var(--lsg-radius); }
.primary-btn1:hover { background-color: var(--lsg-ink); color: #fff; }
.primary-btn2 {
    background-color: transparent;
    color: var(--lsg-ink);
    border: 1px solid var(--lsg-ink);
    border-radius: var(--lsg-radius);
    padding: 17px 29px;
}
.primary-btn2:hover { background-color: var(--lsg-ink); color: #fff; }

:where(a, button, summary, input, textarea, select):focus-visible {
    outline: 2px solid var(--lsg-gold-deep);
    outline-offset: 2px;
}

/* ==========================================================================
   BANDEAU PROMO
   ========================================================================== */
.promo-ribbon {
    background: var(--lsg-ink);
    color: #fff;
    text-align: center;
    font-family: var(--font-inter);
    font-size: 14px;
    padding: 9px 16px;
}
.promo-ribbon a { color: var(--lsg-gold-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   EN-TÊTE
   ========================================================================== */
.lsg-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--lsg-line);
    transition: box-shadow .25s ease;
}
.lsg-header.is-stuck { box-shadow: 0 10px 30px -20px rgba(20,22,26,.25); }
.lsg-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
}
.lsg-header .navbar-brand img { max-height: 44px; width: auto; }
.lsg-wordmark { display: inline-flex; flex-direction: column; line-height: 1.05; }
.lsg-wordmark strong {
    font-family: var(--font-hankenGrotesk);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .01em;
    color: var(--lsg-ink);
    text-transform: uppercase;
}
.lsg-wordmark em {
    font-style: normal;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--lsg-gold-deep);
}

.lsg-nav { display: flex; align-items: center; gap: 34px; }
.lsg-nav a {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 500;
    color: var(--lsg-text);
    position: relative;
    padding: 6px 0;
}
.lsg-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--lsg-gold);
    transition: width .25s ease;
}
.lsg-nav a:hover,
.lsg-nav a.is-current { color: var(--lsg-ink); }
.lsg-nav a:hover::after,
.lsg-nav a.is-current::after { width: 100%; }

.lsg-header-actions { display: flex; align-items: center; gap: 16px; }

.lsg-burger {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--lsg-line);
    border-radius: var(--lsg-radius);
    background: var(--lsg-surface);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}
.lsg-burger span { display: block; width: 18px; height: 2px; background: var(--lsg-ink); transition: transform .2s ease, opacity .2s ease; }
.lsg-header.is-open .lsg-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.lsg-header.is-open .lsg-burger span:nth-child(2) { opacity: 0; }
.lsg-header.is-open .lsg-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.lsg-mobile-lang { display: none; }

@media (max-width: 991px) {
    .lsg-nav {
        position: fixed;
        inset: 82px 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--lsg-surface);
        border-bottom: 1px solid var(--lsg-line);
        padding: 8px 0;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s ease, opacity .25s ease;
        max-height: calc(100vh - 82px);
        overflow-y: auto;
    }
    .lsg-header.is-open .lsg-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .lsg-nav a { padding: 14px 24px; border-bottom: 1px solid var(--lsg-line); }
    .lsg-nav a:last-child { border-bottom: 0; }
    .lsg-nav a::after { display: none; }
    .lsg-header-actions .lsg-desktop-only { display: none; }
    .lsg-burger { display: flex; }
    .lsg-mobile-lang { display: inline-flex; }
}

/* ==========================================================================
   FIL D'ARIANE (pages internes)
   ========================================================================== */
.lsg-breadcrumb {
    position: relative;
    background: var(--lsg-dark);
    padding: 84px 0 66px;
    text-align: center;
    overflow: hidden;
}
.lsg-breadcrumb .lsg-breadcrumb-bg { opacity: .2 !important; }
.lsg-breadcrumb > .container { position: relative; z-index: 1; }
.lsg-breadcrumb h1 {
    font-family: var(--font-hankenGrotesk);
    font-weight: 800;
    font-size: clamp(30px, 5vw, 48px);
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.lsg-breadcrumb-nav { font-family: var(--font-inter); font-size: 14px; color: rgba(255,255,255,.66); }
.lsg-breadcrumb-nav a { color: rgba(255,255,255,.66); }
.lsg-breadcrumb-nav a:hover { color: var(--lsg-gold-soft); }
.lsg-breadcrumb-nav .sep { margin: 0 8px; opacity: .5; }
.lsg-breadcrumb-nav .current { color: #fff; }

/* ==========================================================================
   HERO (accueil) — SOMBRE (demande client), sur fond de page blanc
   ========================================================================== */
.lsg-hero {
    background: var(--lsg-dark);
    color: #fff;
    padding: clamp(60px, 8vw, 110px) 0 clamp(60px, 7.5vw, 96px);
    position: relative;
    overflow: hidden;
}
.lsg-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(85% 120% at 12% -10%, rgba(201,162,39,.16) 0%, transparent 55%),
        radial-gradient(60% 90% at 100% 110%, rgba(201,162,39,.10) 0%, transparent 60%);
    z-index: 0;
}
.lsg-hero > .container { position: relative; z-index: 1; }
.lsg-hero-eyebrow {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--lsg-gold-soft);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}
.lsg-hero-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--lsg-gold); }
.lsg-hero h1 {
    font-family: var(--font-hankenGrotesk);
    font-weight: 800;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 22px;
    max-width: 15ch;
}
.lsg-hero h1 span { color: var(--lsg-gold); }
.lsg-hero-body {
    font-family: var(--font-inter);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.72);
    max-width: 52ch;
    margin: 0 0 34px;
}
.lsg-hero-figure {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3.2;
    box-shadow: 0 40px 80px -40px rgba(0,0,0,.7);
    border: 1px solid rgba(255,255,255,.08);
}
.lsg-hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.lsg-hero-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}
.lsg-hero-list li {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: 7px 16px;
}

/* ==========================================================================
   SECTION générique
   ========================================================================== */
.lsg-section { padding: clamp(52px, 6.5vw, 88px) 0; }
.lsg-section.is-tight { padding: clamp(44px, 5vw, 68px) 0; }
.lsg-section-head { margin-bottom: 44px; }
.lsg-section--surface { background: var(--lsg-surface-2); }

/* ==========================================================================
   CARTES DE PÔLE
   ========================================================================== */
.lsg-division {
    --lsg-division-accent: var(--lsg-gold);
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--lsg-surface);
    border: 1px solid var(--lsg-line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.lsg-division:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -34px rgba(20,22,26,.25);
    border-color: color-mix(in srgb, var(--lsg-division-accent) 45%, var(--lsg-line));
}
.lsg-division-media {
    aspect-ratio: 16 / 11;
    background: var(--lsg-surface-2) center / cover no-repeat;
    position: relative;
}
.lsg-division-badge {
    position: absolute;
    top: 14px; left: 14px;
    font-family: var(--font-inter);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lsg-ink);
    background: var(--lsg-gold-soft);
    padding: 5px 10px;
    border-radius: 999px;
}
.lsg-division-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.lsg-division-body h3 {
    font-family: var(--font-hankenGrotesk);
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.lsg-division-body h3 a { color: var(--lsg-ink); }
.lsg-division-body h3 a:hover { color: var(--lsg-division-accent); }
.lsg-division-tagline {
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--lsg-division-accent);
    margin: 0 0 12px;
}
.lsg-division-summary { font-family: var(--font-inter); font-size: 15px; line-height: 1.65; margin: 0 0 22px; color: var(--lsg-text-soft); }
.lsg-division-actions { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.lsg-division-link {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--lsg-ink);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.lsg-division-link svg { transition: transform .2s ease; }
.lsg-division-link:hover { color: var(--lsg-division-accent); }
.lsg-division-link:hover svg { transform: translateX(3px); }
.lsg-division-visit {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--lsg-division-accent);
    border-radius: var(--lsg-radius);
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: filter .2s ease;
}
.lsg-division-visit:hover { color: #fff; filter: brightness(.92); }
.lsg-division-soon {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--lsg-text-soft);
    font-style: italic;
}

/* ==========================================================================
   PILIERS « même méthode » — cartes claires, icône dorée (pas de photo)
   ========================================================================== */
.lsg-pillar {
    height: 100%;
    background: var(--lsg-surface);
    border: 1px solid var(--lsg-line);
    border-radius: 12px;
    padding: 30px 26px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.lsg-pillar:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -34px rgba(20,22,26,.2); }
.lsg-pillar-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--lsg-gold-bg);
    margin-bottom: 18px;
}
.lsg-pillar-icon svg { width: 22px; height: 22px; color: var(--lsg-gold-deep); }
.lsg-pillar h3 {
    font-family: var(--font-hankenGrotesk);
    font-weight: 700;
    font-size: 19px;
    color: var(--lsg-ink);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.lsg-pillar p { font-family: var(--font-inter); font-size: 14.5px; line-height: 1.6; color: var(--lsg-text-soft); margin: 0; }

/* ==========================================================================
   ÉQUIPE — cartes portrait
   ========================================================================== */
.lsg-team-grid { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; }
.lsg-team-card {
    flex: 0 1 320px;
    background: var(--lsg-surface);
    border: 1px solid var(--lsg-line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.lsg-team-card:hover { transform: translateY(-5px); box-shadow: 0 34px 60px -36px rgba(20,22,26,.28); }
.lsg-team-portrait {
    position: relative;
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(120% 120% at 30% 15%, #23262d 0%, #14161A 68%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--lsg-gold);
}
.lsg-team-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lsg-team-monogram {
    font-family: var(--font-hankenGrotesk);
    font-weight: 800;
    font-size: 52px;
    letter-spacing: .02em;
    color: var(--lsg-gold);
    line-height: 1;
}
.lsg-team-monogram::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 22px;
    width: 34px; height: 2px;
    background: rgba(201,162,39,.5);
    transform: translateX(-50%);
}
.lsg-team-body { padding: 24px 26px 26px; text-align: center; }
.lsg-team-card h3 {
    font-family: var(--font-hankenGrotesk);
    font-weight: 700;
    font-size: 19px;
    color: var(--lsg-ink);
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.lsg-team-creds {
    font-family: var(--font-inter);
    font-size: 12px;
    color: var(--lsg-text-soft);
    margin: 0 0 10px;
}
.lsg-team-role {
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--lsg-gold-deep);
    margin: 0 0 16px;
}
.lsg-team-phone {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--lsg-text-soft);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lsg-team-phone:hover { color: var(--lsg-ink); }

/* ==========================================================================
   BANDE D'APPEL (CTA contact) — panneau doré clair
   ========================================================================== */
.lsg-band {
    position: relative;
    background: var(--lsg-gold-bg);
    border-top: 1px solid var(--lsg-line);
    border-bottom: 1px solid var(--lsg-line);
    padding: clamp(48px, 6vw, 78px) 0;
    overflow: hidden;
}
.lsg-band::before {
    content: "";
    position: absolute; inset: 0;
    background: url('/storage/site/cta-craft.jpg') 80% 30% / cover no-repeat;
    opacity: .08;
}
.lsg-band > .container { position: relative; z-index: 1; }
.lsg-band .section-title.white h2 { color: var(--lsg-ink); }
.lsg-band .section-title.white > span { color: var(--lsg-gold-deep); }

/* ==========================================================================
   AVIS CLIENTS
   ========================================================================== */
.lsg-review {
    height: 100%;
    background: var(--lsg-surface);
    border: 1px solid var(--lsg-line);
    border-radius: 12px;
    padding: 26px;
}
.lsg-review .lsg-stars { color: var(--lsg-gold); margin-bottom: 12px; letter-spacing: 2px; }
.lsg-review-quote { font-family: var(--font-inter); font-size: 15px; line-height: 1.7; color: var(--lsg-text); margin: 0 0 20px; }
.lsg-review-author { display: flex; align-items: center; gap: 12px; }
.lsg-review-author img { width: 42px; height: 42px; border-radius: 999px; object-fit: cover; }
.lsg-review-author strong { display: block; font-family: var(--font-hankenGrotesk); font-size: 15px; color: var(--lsg-ink); }
.lsg-review-author span { display: block; font-family: var(--font-inter); font-size: 12px; color: var(--lsg-text-soft); }

/* ==========================================================================
   FAQ (accordéon Bootstrap)
   ========================================================================== */
.lsg-faq .accordion-item { border: 1px solid var(--lsg-line); border-radius: 12px !important; margin-bottom: 12px; overflow: hidden; background: var(--lsg-surface); }
.lsg-faq .accordion-button {
    font-family: var(--font-hankenGrotesk);
    font-weight: 600;
    font-size: 17px;
    color: var(--lsg-ink);
    background: var(--lsg-surface);
    padding: 20px 22px;
    box-shadow: none;
}
.lsg-faq .accordion-button:not(.collapsed) { color: var(--lsg-gold-deep); background: var(--lsg-surface); }
.lsg-faq .accordion-button:focus { box-shadow: 0 0 0 3px rgba(201,162,39,.22); }
.lsg-faq .accordion-body { font-family: var(--font-inter); font-size: 15px; line-height: 1.7; color: var(--lsg-text-soft); padding: 4px 22px 22px; }

/* ==========================================================================
   CARTE (map)
   ========================================================================== */
.lsg-map-details { list-style: none; margin: 0; padding: 0; }
.lsg-map-details li { padding: 12px 0; border-bottom: 1px solid var(--lsg-line); }
.lsg-map-details li:last-child { border-bottom: 0; }
.lsg-map-details span { display: block; font-family: var(--font-inter); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--lsg-text-soft); margin-bottom: 3px; }
.lsg-map-details b { font-family: var(--font-inter); font-weight: 500; color: var(--lsg-ink); }
.lsg-map-frame { margin-top: 34px; border-radius: 12px; overflow: hidden; border: 1px solid var(--lsg-line); }
.lsg-map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }
.lsg-map-note { margin-top: 14px; font-family: var(--font-inter); font-size: 13px; color: var(--lsg-text-soft); font-style: italic; }

/* ==========================================================================
   PIED DE PAGE — clair
   ========================================================================== */
.lsg-footer { background: var(--lsg-dark); color: rgba(255,255,255,.78); padding: 68px 0 28px; }
.lsg-footer h4 {
    font-family: var(--font-hankenGrotesk);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 18px;
}
.lsg-footer a { color: rgba(255,255,255,.78); font-family: var(--font-inter); font-size: 14px; }
.lsg-footer a:hover { color: var(--lsg-gold-soft); }
.lsg-footer p { color: rgba(255,255,255,.78); }
.lsg-footer ul { list-style: none; margin: 0; padding: 0; }
.lsg-footer ul li { margin-bottom: 9px; }
.lsg-footer-brand .lsg-wordmark strong { color: #fff; }
.lsg-footer-contact p { color: rgba(255,255,255,.78); font-family: var(--font-inter); font-size: 14px; margin: 0 0 6px; }
.lsg-footer-contact h3 { font-family: var(--font-hankenGrotesk); font-size: 20px; margin: 0 0 10px; }
.lsg-footer-contact h3 a { color: #fff; font-size: 20px; }

.lsg-newsletter input {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--lsg-radius);
    color: #fff;
    font-family: var(--font-inter);
    font-size: 14px;
    padding: 13px 16px;
}
.lsg-newsletter input::placeholder { color: rgba(255,255,255,.45); }
.lsg-newsletter .lsg-newsletter-row { display: flex; gap: 10px; flex-wrap: wrap; }
.lsg-newsletter .lsg-newsletter-row input { flex: 1 1 200px; }

.lsg-footer-social { display: flex; gap: 12px; margin-top: 16px; }
.lsg-footer-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
}
.lsg-footer-social a:hover { border-color: var(--lsg-gold); color: var(--lsg-gold-soft); }

.lsg-footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 24px;
    font-family: var(--font-inter);
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.lsg-footer-bottom-links { display: flex; gap: 18px; }

/* Signature Rezolusoft — s'éclaircit sur le pied de page sombre */
.ls-credit { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-inter); font-size: 13px; color: rgba(255,255,255,.6); }
.ls-credit-by { opacity: .8; }
.ls-credit-mark { width: 22px; color: rgba(255,255,255,.85); }
.ls-credit-mark svg { display: block; width: 100%; height: auto; }
.ls-credit-name-1 { color: #F5A623; }
.ls-credit-name-2 { color: #fff; }
.ls-credit-dot { color: #F5A623; }

/* ==========================================================================
   SÉLECTEUR DE LANGUE (composant natif <details>)
   ========================================================================== */
.ls-lang { position: relative; display: inline-block; }
.ls-lang > summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 600;
    color: var(--lsg-ink);
    border: 1px solid var(--lsg-line);
    border-radius: 999px;
    padding: 7px 12px;
    background: var(--lsg-surface);
}
.ls-lang > summary::-webkit-details-marker { display: none; }
.ls-lang-caret { width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -2px; }
.ls-lang[open] .ls-lang-caret { transform: rotate(225deg); margin-top: 2px; }
.ls-lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 168px;
    background: var(--lsg-surface);
    border: 1px solid var(--lsg-line);
    border-radius: 10px;
    box-shadow: 0 24px 48px -26px rgba(20,22,26,.28);
    padding: 6px;
    list-style: none;
    margin: 0;
    z-index: 1200;
}
.ls-lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 7px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--lsg-text);
}
.ls-lang-menu a:hover { background: var(--lsg-paper); color: var(--lsg-ink); }
.ls-lang-menu a.is-active { color: var(--lsg-gold-deep); font-weight: 600; }

/* ==========================================================================
   FLASH
   ========================================================================== */
.lsg-flash { background: #E9F5EE; color: #1C6B43; border: 1px solid #BFE3CE; border-radius: 8px; padding: 12px 18px; font-family: var(--font-inter); font-size: 14px; margin: 16px auto 0; max-width: 1140px; }

/* ==========================================================================
   FORMULAIRE
   ========================================================================== */
.lsg-form fieldset { border: 0; padding: 0; margin: 0 0 26px; }
.lsg-legend {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    font-family: var(--font-inter);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lsg-gold-deep);
    margin-bottom: 18px;
}
.lsg-legend::after { content: ""; flex: 1; height: 1px; background: var(--lsg-line); }
.lsg-form label { font-family: var(--font-inter); font-size: 13px; font-weight: 600; color: var(--lsg-ink); display: block; margin-bottom: 6px; }
.lsg-form .form-control {
    border: 1px solid var(--lsg-line);
    border-radius: var(--lsg-radius);
    padding: 12px 14px;
    font-family: var(--font-inter);
    font-size: 15px;
    background: var(--lsg-surface);
    color: var(--lsg-ink);
}
.lsg-form .form-control:focus { border-color: var(--lsg-gold); box-shadow: 0 0 0 3px rgba(201,162,39,.18); }
.lsg-form .form-control.is-invalid { border-color: #B3453E; }
.lsg-error { color: #B3453E; font-family: var(--font-inter); font-size: 13px; margin: 6px 0 0; }
.lsg-req { color: var(--lsg-gold-deep); }
.lsg-form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; }
.lsg-form-note { margin: 0; font-family: var(--font-inter); font-size: 13px; color: var(--lsg-text-soft); }

/* ==========================================================================
   CONTACT — coordonnées
   ========================================================================== */
.lsg-contact-list { list-style: none; margin: 0; padding: 0; }
.lsg-contact-list li { padding: 14px 0; border-bottom: 1px solid var(--lsg-line); }
.lsg-contact-list li:last-child { border-bottom: 0; }
.lsg-contact-list .k { display: block; font-family: var(--font-inter); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--lsg-text-soft); margin-bottom: 4px; }
.lsg-contact-list .v { font-family: var(--font-inter); font-size: 15px; color: var(--lsg-ink); }

/* ==========================================================================
   Divers
   ========================================================================== */
.lsg-rich-text { font-family: var(--font-inter); color: var(--lsg-text); line-height: 1.75; }
.lsg-rich-text h2, .lsg-rich-text h3, .lsg-rich-text h4 { font-family: var(--font-hankenGrotesk); color: var(--lsg-ink); margin: 1.6em 0 .5em; }
.lsg-rich-text p { margin-bottom: 1em; }
.lsg-rich-text p:last-child { margin-bottom: 0; }
.lsg-rich-text a { color: var(--lsg-gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.lsg-rich-text ul, .lsg-rich-text ol { margin: 0 0 1em 1.2em; }
.lsg-rich-text li { margin-bottom: .4em; }
.lsg-note { background: var(--lsg-surface); border: 1px solid var(--lsg-line); border-left: 3px solid var(--lsg-gold); border-radius: 10px; padding: 22px; }
.lsg-prose-narrow { max-width: 760px; margin: 0 auto; }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ==========================================================================
   PAGE 404 (lot 2) — itinéraire qui se trace jusqu'à un point d'arrivée.
   Tout en CSS + SVG en ligne : une page d'erreur ne télécharge aucune image.
   ========================================================================== */
.lsg-404 { padding: clamp(56px, 8vw, 96px) 0 clamp(70px, 9vw, 110px); }
.lsg-404-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 40px 60px;
    max-width: 1120px;
    margin: 0 auto;
}
.lsg-404-art svg { display: block; width: 100%; height: auto; }
.lsg-404-road { fill: none; stroke: var(--lsg-line); stroke-width: 3; stroke-linecap: round; }
.lsg-404-road-draw {
    fill: none;
    stroke: var(--lsg-gold);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 520;
    stroke-dashoffset: 520;
    animation: lsg-404-draw 1.9s ease-in-out .15s both;
}
.lsg-404-start { fill: var(--lsg-ink); }
.lsg-404-pin { fill: var(--lsg-ink); animation: lsg-404-drop .55s ease-out 1.85s both; transform-origin: 396px 74px; }
.lsg-404-pin-dot { fill: var(--lsg-gold); }
.lsg-404-figure { font-family: var(--font-hankenGrotesk); font-size: 86px; font-weight: 800; fill: var(--lsg-ink); text-anchor: middle; opacity: .08; }
@keyframes lsg-404-draw { from { stroke-dashoffset: 520; } to { stroke-dashoffset: 0; } }
@keyframes lsg-404-drop { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.lsg-404-eyebrow {
    display: block;
    font-family: var(--font-inter);
    font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
    color: var(--lsg-gold-deep); margin-bottom: 12px;
}
.lsg-404-title { font-family: var(--font-hankenGrotesk); font-weight: 800; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.12; color: var(--lsg-ink); margin: 0 0 16px; text-wrap: balance; letter-spacing: -0.01em; }
.lsg-404-lead { font-family: var(--font-inter); font-size: 17px; color: var(--lsg-text-soft); max-width: 52ch; margin: 0 0 28px; }
.lsg-404-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-bottom: 34px; }
.lsg-404-back {
    background: none; border: 0; padding: 0;
    font-family: var(--font-inter); font-size: 15px; font-weight: 600;
    color: var(--lsg-ink); cursor: pointer;
    border-bottom: 1px solid var(--lsg-gold); line-height: 1.7;
}
.lsg-404-back:hover, .lsg-404-back:focus-visible { color: var(--lsg-gold-deep); }
.lsg-404-links { border-top: 1px solid var(--lsg-line); padding-top: 22px; }
.lsg-404-links-label { display: block; font-family: var(--font-inter); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lsg-gold-deep); margin-bottom: 12px; }
.lsg-404-links ul { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 0; padding: 0; list-style: none; }
.lsg-404-links a { font-family: var(--font-inter); color: var(--lsg-text); }
.lsg-404-links a:hover, .lsg-404-links a:focus-visible { color: var(--lsg-gold-deep); }
.lsg-404-report { margin: 0; padding-top: 22px; font-family: var(--font-inter); font-size: 14px; color: var(--lsg-text-soft); }
.lsg-404-report a { color: var(--lsg-gold-deep); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 991px) {
    .lsg-404-inner { grid-template-columns: 1fr; gap: 30px; }
    .lsg-404-art { order: 2; }
}
@media (prefers-reduced-motion: reduce) {
    .lsg-404-road-draw { animation: none; stroke-dashoffset: 0; }
    .lsg-404-pin { animation: none; }
}
