

/* ── TOKENS LOCAUX (surcharge possible sans toucher le root) ── */
:root {
  --lc-surface:      var(--surface, #0d0f1c);
  --lc-surface-2:    color-mix(in srgb, var(--surface, #0d0f1c) 60%, #000 40%);
  --lc-border:       var(--line, rgba(255,255,255,.05));
  --lc-border-hover: rgba(201,168,76,.22);   /* --gold à 22% */
  --lc-accent:       var(--gold, #c9a84c);
  --lc-accent-dim:   rgba(201,168,76,.10);
  --lc-accent-glow:  rgba(201,168,76,.18);
  --lc-text:         var(--text, #ccc8bf);
  --lc-muted:        var(--muted, #5e5a55);
  --lc-success:      var(--serpent-pale, #7abf9e);
  --lc-warn:         var(--gold-pale, #e8d5a0);
  --lc-error:        var(--sc-pale, #d4849e);
  --lc-radius:       var(--radius, 4px);
  --lc-ease:         var(--ease-in-out, cubic-bezier(.4,0,.2,1));

    --gold: #c9a84c;
    --gold-light: #e0c070;
    --black: #111;
    --white: #fff;
    --dark-bg: #1a1a1a;
    --overlay: rgba(0,0,0,0.75);
    --radius: 18px;  
}
 
  /* ── Bouton déclencheur ── */
  .support-btn {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold, #c9a84c);
    color: var(--black, #111);
    font-family: inherit;
    font-weight: 700;
    font-size: .92rem;
    padding: 9px 13px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(201,168,76,0.35);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 9998;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, background 0.3s ease;
  }
  .support-btn.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .support-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(201,168,76,0.5);
    background: var(--gold-light, #e0c070);
  }
 
  /* ── Overlay ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow: hidden;
  }
  .modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
  }
 
  /* ── Bouton fermeture ── */
  .modal-close {
    position: fixed;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    font-size: 2rem;
    line-height: 1;
    font-family: inherit;
    padding: 4px 10px;
    border-radius: 8px;
    transition: color 0.2s;
    z-index: 10001;
  }
  .modal-close:hover { color: #fff; }
 
  /* ── Card ── */
  .modal-card {
    background: #161616;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    padding: 28px 28px 22px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.7);
    transform: translateY(28px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.34,1.4,0.64,1);
    overflow-y: auto;
    max-height: calc(100vh - 32px);
    position: relative;
    z-index: 10000;
    overscroll-behavior: contain;
  }
  .modal-overlay.is-open .modal-card {
    transform: translateY(0) scale(1);
  }
  .modal-card::-webkit-scrollbar { width: 4px; }
  .modal-card::-webkit-scrollbar-track { background: transparent; }
  .modal-card::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); border-radius: 4px; }
 
  /* ── Textes intro ── */
  .modal-intro {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
  }
  .modal-desc {
    line-height: 1.65;
    color: #999;
    font-size: 0.88rem;
    text-align: center;
    margin-bottom: 16px;
  }
  .modal-desc strong { color: #c9a84c; font-weight: 700; }
 
  /* ── Bloc "Pourquoi" ── */
  .modal-why {
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 18px;
  }
  .modal-why-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }
  .modal-why-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.87rem;
    color: #ccc;
    line-height: 1.45;
    margin-bottom: 5px;
  }
  .modal-why-item:last-child { margin-bottom: 0; }
 
  /* ══════════════════════════════════════
     SÉLECTEUR GAMIFIÉ
  ══════════════════════════════════════ */
  .tier-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    display: block;
  }
  .tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
  }
  .tier-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 10px 6px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
  }
  .tier-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.12), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 12px;
  }
  .tier-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-2px);
  }
  .tier-card:hover::before { opacity: 1; }
  .tier-card.selected {
    border-color: #c9a84c;
    background: rgba(201,168,76,0.1);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 24px rgba(201,168,76,0.25), 0 0 0 2px rgba(201,168,76,0.2);
  }
  .tier-card.selected::before { opacity: 1; }
 
  /* Ripple */
  .tier-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(201,168,76,0.3);
    transform: scale(0);
    animation: rippleAnim 0.5s ease-out forwards;
    pointer-events: none;
  }
  @keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
  }
 
  .tier-emoji {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 4px;
    transition: transform 0.3s cubic-bezier(0.34,1.4,0.64,1);
  }
  .tier-card.selected .tier-emoji { transform: scale(1.2); }
  .tier-card:hover:not(.selected) .tier-emoji { transform: scale(1.1); }
 
  .tier-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
    transition: color 0.2s;
  }
  .tier-card.selected .tier-price { color: #c9a84c; }
 
  .tier-unit {
    font-size: 0.64rem;
    display: block;
    margin-bottom: 5px;
    transition: color 0.2s;
    color: #CCC8BF;
  }
  .tier-card.selected .tier-unit { color: #9a7c30; }
 
  .tier-name {
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.2s;
    display: block;
    color:#CCC8BF;
  }
  .tier-card.selected .tier-name { color: #c9a84c; }
 
  /* Badge "Populaire" */
  .tier-popular {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #c9a84c;
    color: #111;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
 
  /* Check mark animé */
  .tier-check {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 16px;
    height: 16px;
    background: #c9a84c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34,1.4,0.64,1);
  }
  .tier-card.selected .tier-check { opacity: 1; transform: scale(1); }
  .tier-check::after { content: '✓'; font-size: 0.65rem; color: #111; font-weight: 900; }
 
  /* ── Jauge ── */
  .modal-gauge-wrap { margin-bottom: 16px; }
  .modal-gauge-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 5px;
  }
  .modal-gauge-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .modal-gauge-count { font-size: 0.8rem; color: #888; }
  .modal-gauge-count strong { color: #c9a84c; }
  .modal-gauge-track {
    height: 7px;
    background: rgba(255,255,255,0.07);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 6px;
  }
  .modal-gauge-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c9a84c, #e0c070);
    border-radius: 99px;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 0 8px rgba(201,168,76,0.4);
  }
  .modal-gauge-markers {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
  }
  .gauge-marker { font-size: 0.66rem; text-align: center; color:#CCC8BF;}
  .gauge-marker.reached { color: #c9a84c; }
  .gauge-marker span { display: block; font-size: 0.72rem; color: wheat; margin-top: 1px; }
  .gauge-marker.reached span { color: #888; }
  .modal-gauge-status {
    font-size: 0.78rem;
    text-align: center;
    margin-top: 5px;
    color: #777;
  }
  .modal-gauge-status em { color: #c9a84c; font-style: normal; font-weight: 700; }
 
  /* ── Paliers ── */
  .modal-paliers-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }
  .palier {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.86rem;
    color: #aaa;
    line-height: 1.45;
  }
  .palier:last-child { margin-bottom: 0; }
  .palier-badge {
    flex-shrink: 0;
    background: rgba(201,168,76,0.1);
    color: #c9a84c;
    font-weight: 700;
    font-size: 0.68rem;
    padding: 2px 7px;
    border-radius: 20px;
    margin-top: 2px;
    white-space: nowrap;
  }
 
  /* ── Séparateur ── */
  .modal-sep {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 16px 0;
  }
 
  /* ── CTA Principal ── */
  .modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #c9a84c;
    color: #111;
    font-family: inherit;
    font-weight: 800;
    font-size: 1rem;
    padding: 15px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(201,168,76,0.4);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.55);
    background: #e0c070;
  }
 
  /* ── CTA Secondaire (don unique) ── */
  .modal-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: wheat;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
    margin-bottom: 10px;
    padding: 4px;
  }
  .modal-cta-secondary:hover { color: #c9a84c; }
 
  /* ── Méthodes paiement ── */
  .modal-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: nowrap;
  }
  .pay-badge {
    font-size: 0.64rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 3px 6px;
    white-space: nowrap;
    color: #CCC8BF;
  }
 
  /* ── Responsive ── */
  @media (max-width: 860px) {
    .support-btn { font-size: .8rem; padding: 9px 13px;   }.modal-cta {
    font-size: .88rem;
    padding: 15px 16px; 
  }
  }
  @media (max-width: 480px) {
    .modal-card { padding: 22px 18px 18px; }
    .tier-card { padding: 10px 4px 10px; border-radius: 12px; }
    .tier-emoji { font-size: 1.2rem; }
    .tier-price { font-size: 0.95rem; }
    .tier-name { font-size: 0.62rem; }
    .modal-payments { flex-wrap: wrap; }
  }

/* ── PANNEAU PARTAGE ─────────────────────────────────────────── */
.fixed-share-panel {
    position: fixed;
    left: 13px;
    top: calc(50% - 40px);          /* remonté de ~40px vs 50% */
    transform: translateY(-50%);
    width: 110px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 18px 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 100;
}

.share-title {
    font-weight: 700;
    font-size: 15px;
    color: #999;
    margin-bottom: 16px;
}

.share-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    border-radius: 10px;
    transition: all 0.25s;
    background: inherit;
    color: #999;
    width: 100%;
    text-decoration: none;
    /* reset button */
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.share-btn svg { transition: all 0.25s; }

/* Couleurs officielles au survol */
.share-fb:hover    { background: #1877F2 !important; color: white !important; }
.share-wa:hover    { background: #25D366 !important; color: white !important; }
.share-li:hover    { background: #0A66C2 !important; color: white !important; }
.share-copy:hover  { background: #0078D4 !important; color: white !important; }
.share-mail:hover  { background: #EA4335 !important; color: white !important; }

/* Bouton commentaires — accent doré du site */
.share-comments {
    color: var(--gold, #c9a84c);
    margin-top: 4px;
    border-top: 1px solid rgba(201,168,76,.15);
    padding-top: 12px;
}
.share-comments:hover {
    background: rgba(201,168,76,.12) !important;
    color: var(--gold, #c9a84c) !important;
}
.share-comments svg {
    stroke: currentColor;
}

.share-label {
    font-size: 12px;
    font-weight: 500;
}

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 1140px) {
    .fixed-share-panel {
        position: static !important;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.06);
        padding: 14px 12px;
        margin: 20px auto 30px;
        background: transparent;
    }

    .share-list {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        gap: 8px;
        flex-wrap: wrap;
    }

    .share-btn {
        min-width: 58px;
        padding: 8px 6px;
    }

    .share-btn svg { width: 24px; height: 24px; }
    .share-label   { font-size: 9px; }

    /* Sur mobile, le bouton commentaires s'intègre inline sans séparateur */
    .share-comments {
        border-top: none;
        margin-top: 0;
        padding-top: 8px;
    }
}
/* ====================== STYLES GÉNÉRAUX (inchangés ou affinés) ====================== */
.author-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: wheat;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.author-role {
  font-size: 0.95rem;
  color: #c9a84c;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.author-bio {
  line-height: 1.65;
  color: #ddd;
  font-size: 1.02rem;
  max-width: 680px;
  margin: 0 auto; /* centré */
}

.author-bio h3 {
  margin: 0 0 1rem 0;
  color: #c9a84c;
  font-size: 1.25rem;
}

.footer-separator {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a84c55, transparent);
  margin: 2.5rem auto;
  max-width: 1100px;
}

/* ====================== NOUVEAU LAYOUT ÉQUILIBRÉ ====================== */
.footer-lab {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Soutien plus large + Éthique équilibrée */
  gap: 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.footer-support {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-support h4 {
  color: #c9a84c;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  text-align: center; /* titre centré pour équilibre visuel */
}

.footer-support p {
  line-height: 1.7;
  color: #ddd;
  font-size: 1.02rem;
  text-align: left;
}



.footer-ethics {
  color: #bbb;
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer-ethics p {
  margin-bottom: 1.4rem;
}

.footer-ethics strong {
  color: wheat;
}

/* ====================== LIGNE LÉGALE DISCRÈTE EN BAS ====================== */
.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  text-align: center;
  font-size: 13px;
  color: #999;
  line-height: 1.4;
}

.link-legal {
  color: wheat;
  text-decoration: none;
  transition: color 0.3s;
}

.link-legal:hover {
  color: #c9a84c;
}
.link-lab{
    color: wheat;
    font-weight: 800;
    text-decoration: none;
}
.link-lab:hover{
    opacity:.92;
    text-decoration:underline;
}


/* ── SECTION WRAPPER ────────────────────────────────────────── */
#lc-container {
  margin: 3.5rem 0 2rem;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--lc-text);
}

.lc-section {
  background: var(--lc-surface);
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius);
  padding: 2rem 2rem 2.25rem;
  position: relative;
  overflow: hidden;
}

/* Halo doré discret */
.lc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 380px 220px at 8% 0%, var(--lc-accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.lc-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lc-border);
}

.lc-title {
  font-family: Cinzel, serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lc-accent);
  margin: 0;
  flex: 1;
}

/* ── LOADER ─────────────────────────────────────────────────── */
.lc-loader {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--lc-border);
  border-top-color: var(--lc-accent);
  border-radius: 50%;
  animation: lc-spin .75s linear infinite;
  flex-shrink: 0;
}
@keyframes lc-spin { to { transform: rotate(360deg); } }

/* ── LISTE ──────────────────────────────────────────────────── */
.lc-list {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.lc-empty {
  font-style: italic;
  color: var(--lc-muted);
  padding: 1rem 0;
  margin: 0;
}

/* ── COMMENTAIRE ────────────────────────────────────────────── */
.lc-comment {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: .75rem;
  background: var(--lc-surface-2);
  border: 1px solid var(--lc-border);
  border-left: 2px solid transparent;
  border-radius: var(--lc-radius);
  padding: 1rem 1rem 1rem .875rem;
  transition:
    border-color .2s var(--lc-ease),
    box-shadow   .2s var(--lc-ease);
  animation: lc-in .3s var(--lc-ease) both;
}

.lc-comment:hover {
  border-left-color: var(--lc-accent);
  border-color: var(--lc-border-hover);
  box-shadow: 0 2px 18px var(--lc-accent-glow);
}

@keyframes lc-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* Avatar initiales */
.lc-comment__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lc-accent-dim);
  border: 1px solid var(--lc-border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Cinzel, serif;
  font-size: .65rem;
  letter-spacing: .04em;
  color: var(--lc-accent);
  flex-shrink: 0;
  margin-top: .1rem;
}

.lc-comment__body   { min-width: 0; }

.lc-comment__header {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-bottom: .3rem;
  flex-wrap: wrap;
}

.lc-comment__author {
  font-family: Cinzel, serif;
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--lc-accent);
}

.lc-comment__date {
  font-size: .8rem;
  color: var(--lc-muted);
  font-style: italic;
}

.lc-comment__text {
  margin: 0 0 .5rem;
  color: var(--lc-text);
  font-size: .97rem;
  line-height: 1.7;
}

/* ── REPLY BUTTON (inline) ──────────────────────────────────── */
.lc-reply-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: Cinzel, serif;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: wheat;
  cursor: pointer;
  transition: color .18s var(--lc-ease);
}
.lc-reply-btn:hover { color: var(--lc-accent); }

/* ── RÉPONSES imbriquées ────────────────────────────────────── */
.lc-replies {
  margin-top: .875rem;
  padding-left: .875rem;
  border-left: 1px solid var(--lc-border-hover);
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.lc-comment--reply {
  background: transparent;
  border-left: none;
  padding: .625rem .75rem;
}
.lc-comment--reply:hover {
  border-color: var(--lc-border-hover);
  box-shadow: none;
}
.lc-comment--reply .lc-comment__avatar {
  width: 28px;
  height: 28px;
  font-size: .58rem;
}

/* ── SHOW MORE BUTTON ───────────────────────────────────────── */
.lc-showmore-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1.25rem 0 0;
  padding: .7rem 1.25rem;
  background: transparent;
  border: 1px solid var(--lc-border-hover);
  border-radius: var(--lc-radius);
  font-family: Cinzel, serif;
  font-size: .75rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--lc-accent);
  cursor: pointer;
  transition:
    background .2s var(--lc-ease),
    box-shadow  .2s var(--lc-ease);
}
.lc-showmore-btn:hover {
  background: var(--lc-accent-dim);
  box-shadow: 0 0 18px var(--lc-accent-glow);
}

/* ── FORM WRAPPER ───────────────────────────────────────────── */
.lc-form-wrapper {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lc-border);
}

.lc-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* Label reply actif */
.lc-reply-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--lc-accent);
  font-style: italic;
  padding: .5rem .75rem;
  background: var(--lc-accent-dim);
  border-radius: var(--lc-radius);
  border: 1px solid var(--lc-border-hover);
}
.lc-reply-label strong { font-style: normal; }

.lc-cancel-reply {
  background: none;
  border: none;
  color: var(--lc-muted);
  cursor: pointer;
  font-size: .85rem;
  padding: 0 .2rem;
  margin-left: auto;
  line-height: 1;
  transition: color .15s;
}
.lc-cancel-reply:hover { color: var(--lc-error); }

/* Deux champs côte à côte */
.lc-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media (max-width: 520px) {
  .lc-form__fields { grid-template-columns: 1fr; }
}

/* ── INPUTS & TEXTAREA ──────────────────────────────────────── */
.lc-input,
.lc-textarea {
  background: var(--lc-surface-2);
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius);
  padding: .65rem .875rem;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--lc-text);
  outline: none;
  transition:
    border-color .18s var(--lc-ease),
    box-shadow   .18s var(--lc-ease);
  width: 100%;
}
.lc-input::placeholder,
.lc-textarea::placeholder {
  color: var(--lc-muted);
  font-style: italic;
}
.lc-input:focus,
.lc-textarea:focus {
  border-color: var(--lc-border-hover);
  box-shadow: 0 0 0 3px var(--lc-accent-dim);
}

.lc-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}

/* ── FOOTER FORM (btn + msg) ────────────────────────────────── */
.lc-form__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── SUBMIT BUTTON ──────────────────────────────────────────── */
.lc-submit-btn {
  font-family: Cinzel, serif;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--midnight, #07080f);
  background: var(--lc-accent);
  border: none;
  border-radius: var(--lc-radius);
  padding: .65rem 1.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow  .2s var(--lc-ease),
    filter      .2s var(--lc-ease),
    opacity     .2s var(--lc-ease);
  flex-shrink: 0;
}
.lc-submit-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .18s;
}
.lc-submit-btn:hover {
  box-shadow: 0 0 22px var(--lc-accent-glow);
  filter: brightness(1.08);
}
.lc-submit-btn:hover::after { background: rgba(255,255,255,.06); }
.lc-submit-btn:active { filter: brightness(.95); }

.lc-submit-btn--loading {
  opacity: .55;
  pointer-events: none;
}

/* ── MESSAGE FEEDBACK ───────────────────────────────────────── */
.lc-msg {
  font-style: italic;
  font-size: .88rem;
  margin: 0;
  transition: opacity .4s var(--lc-ease);
  flex: 1;
}
.lc-msg--success { color: var(--lc-success); }
.lc-msg--warn    { color: var(--lc-warn);    }
.lc-msg--error   { color: var(--lc-error);   }







/* ── Scroll lock ──────────────────────────────────────────── */
html.lnl-scroll-locked,
body.lnl-scroll-locked {
  overflow: hidden;
  height: 100%;
}

body.lnl-scroll-locked {
  padding-right: var(--lnl-scroll-lock-w, 0px);
}
/* ── Overlay ──────────────────────────────────────────────── */
#lnl-overlay {
  position: fixed;
  inset: 0;
  z-index: 9900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);

  opacity: 0;
  pointer-events: none;
  transition:
    opacity        .35s cubic-bezier(.4,0,.2,1),
    background     .35s cubic-bezier(.4,0,.2,1),
    backdrop-filter .35s cubic-bezier(.4,0,.2,1);
}

#lnl-overlay.lnl--visible {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── Popin card ───────────────────────────────────────────── */
#lnl-popin {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 40px 36px 32px;

  background: #0d0f1c;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, .06),
    0 24px 64px rgba(0, 0, 0, .7),
    0 0 80px rgba(201, 168, 76, .04) inset;

  transform: translateY(16px) scale(.97);
  transition:
    transform .4s cubic-bezier(.4,0,.2,1),
    box-shadow .4s cubic-bezier(.4,0,.2,1);
}

#lnl-overlay.lnl--visible #lnl-popin {
  transform: translateY(0) scale(1);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, .10),
    0 32px 80px rgba(0, 0, 0, .8),
    0 0 120px rgba(201, 168, 76, .06) inset;
}

/* ── Bouton fermer ────────────────────────────────────────── */
#lnl-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #5e5a55;
  cursor: pointer;
  transition: color .2s, background .2s;
}

#lnl-close:hover {
  color: #c9a84c;
  background: rgba(201,168,76,.10);
}

/* ── Eyebrow (label + étoile) ─────────────────────────────── */
.lnl-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c9a84c;
}

.lnl-star-icon {
  flex-shrink: 0;
  color: #c9a84c;
  opacity: .8;
}

/* ── Heading ──────────────────────────────────────────────── */
.lnl-heading {
  margin: 0 0 10px;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: #ccc8bf;
  letter-spacing: -.01em;
}

/* ── Sous-titre ───────────────────────────────────────────── */
.lnl-sub {
  margin: 0 0 26px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #f5deb3;
}

/* ── Ligne formulaire ─────────────────────────────────────── */
.lnl-form-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Input ────────────────────────────────────────────────── */
.lnl-input {
  flex: 1 1 180px;
  min-width: 0;
  height: 44px;
  padding: 0 14px;

  background: color-mix(in srgb, #0d0f1c 60%, #000 40%);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 8px;
  color: #ccc8bf;
  font-size: 16px;
  font-family: inherit;

  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.lnl-input::placeholder { 
  color: #5e5a55; 
}

.lnl-input:focus {
  border-color: #c9a84c;
  background: color-mix(in srgb, #0d0f1c 80%, #c9a84c 3%);
  box-shadow: 0 0 0 3px rgba(201,168,76,.18);
}

/* ── Bouton ───────────────────────────────────────────────── */
.lnl-btn {
  flex-shrink: 0;
  height: 44px;
  padding: 0 22px;

  background: #c9a84c;
  border: none;
  border-radius: 8px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;

  transition: background .2s, box-shadow .2s, transform .15s;
}

.lnl-btn:hover:not(:disabled) {
  background: #e0c070;
  box-shadow: 0 4px 18px rgba(201, 168, 76, .28);
  transform: translateY(-1px);
}

.lnl-btn:active:not(:disabled) { 
  transform: translateY(0); 
}

.lnl-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

/* ── Messages état ────────────────────────────────────────── */
.lnl-msg {
  min-height: 18px;
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: #5e5a55;
  transition: color .2s;
}

.lnl-msg--success { 
  color: #7abf9e; 
}
.lnl-msg--error { 
  color: #d4849e; 
}

/* ── Mention RGPD ─────────────────────────────────────────── */
.lnl-privacy {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: .6;
  color:wheat;
}

/* ════════════════════════════════════════════════════════════
   FOOTER WIDGET
════════════════════════════════════════════════════════════ */
#lnl-footer {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 52px 0;
}

#lnl-footer::before {
  content: '';
  display: block;
  height: 80px;
  margin-top: -80px;
  pointer-events: none;
  visibility: hidden;
}

.lnl-footer-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.lnl-footer-text {
  flex: 1 1 220px;
}

.lnl-footer-heading {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 400;
  color: #ccc8bf;
  letter-spacing: -.01em;
}

.lnl-footer-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #5e5a55;
}

.lnl-footer-form {
  flex: 1 1 300px;
}


/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 520px) {
  #lnl-popin {
    padding: 32px 22px 26px;
  }

  .lnl-form-row {
    flex-direction: column;
  }

  .lnl-input,
  .lnl-btn {
    width: 100%;
    flex: none;
  }

  .lnl-footer-inner {
    flex-direction: column;
    gap: 24px;
  }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #lnl-overlay,
  #lnl-popin,
  .lnl-btn,
  .lnl-input { transition: none; }
}

/* ── Section verrouillée ──────────────────────────────────── */

[data-premium] {
  position: relative;
  transition: filter .5s var(--lc-ease, ease), opacity .5s var(--lc-ease, ease);
}

/* Quand verrouillée : flou + gradient masquant */
.lab-premium-locked {
  filter: blur(5px);
  opacity: .35;
  pointer-events: none;
  user-select: none;
  max-height: 420px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
}

/* Animation déverrouillage */
.lab-premium-reveal {
  animation: lp-reveal .8s var(--lc-ease, ease) both;
}

@keyframes lp-reveal {
  from { filter: blur(4px); opacity: 0; transform: translateY(10px); }
  to   { filter: blur(0);   opacity: 1; transform: translateY(0); }
}

/* ── Bloc verrou ──────────────────────────────────────────── */

.lab-premium-lock {
  position: relative;
  z-index: 10;
  margin: -40px 26px 40px 26px;  /* chevauchement sur le contenu flouté */

  background: #0d0f1c;
  border: 1px solid var(--lc-border, rgba(255,255,255,.05));
  border-top: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius, 4px);
  box-shadow:
    0 0 0 1px rgba(201,168,76,.06),
    0 16px 48px rgba(0,0,0,.5);

  transition: opacity .4s, transform .4s var(--lc-ease, ease);
}

/* Sortie animée quand le verrou est retiré */
.lab-premium-lock.lp-removing {
  opacity: 0;
  transform: translateY(-8px) scale(.98);
  pointer-events: none;
}

/* Ligne décorative dorée en haut */
.lab-premium-lock::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lc-accent, #c9a84c), transparent);
  opacity: .5;
  border-radius: 2px 2px 0 0;
}

.lp-inner {
  padding: 32px 36px 28px;
}

/* ── Eyebrow ──────────────────────────────────────────────── */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lc-accent, #c9a84c);
  margin: 0 0 14px;
}

/* ── Heading ──────────────────────────────────────────────── */
.lp-heading {
  margin: 0 0 10px;
  font-size: clamp(17px, 3vw, 22px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--lc-text, #ccc8bf);
  letter-spacing: -.01em;
}

/* ── Sous-titre ───────────────────────────────────────────── */
.lp-sub {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gold-pale, #e8d5a0);
  max-width: 480px;
}

/* ── Formulaire ───────────────────────────────────────────── */
.lp-form-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-input {
  flex: 1 1 180px;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--lc-radius, 4px);
  color: #ccc8bf;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.lp-input::placeholder { color: var(--lc-muted, #5e5a55); }

.lp-input:focus {
  border-color: var(--lc-accent, #c9a84c);
  box-shadow: 0 0 0 3px var(--lc-accent-glow, rgba(201,168,76,.18));
}

.lp-btn {
  flex-shrink: 0;
  height: 44px;
  padding: 0 22px;
  background: var(--lc-accent, #c9a84c);
  border: none;
  border-radius: var(--lc-radius, 4px);
  color: var(--black, #111);
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
}

.lp-btn:hover:not(:disabled) {
  background: var(--gold-light, #e0c070);
  box-shadow: 0 4px 18px rgba(201,168,76,.28);
  transform: translateY(-1px);
}

.lp-btn:active:not(:disabled) { transform: translateY(0); }
.lp-btn:disabled { opacity: .55; cursor: not-allowed; }

/* ── Messages ─────────────────────────────────────────────── */
.lp-msg {
  min-height: 18px;
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--lc-muted, #5e5a55);
  transition: color .2s;
}

.lp-msg--success { color: var(--lc-success, #7abf9e); }
.lp-msg--error   { color: var(--lc-error,   #d4849e); }

/* ── RGPD ─────────────────────────────────────────────────── */
.lp-privacy {
  margin: 10px 0 0;
  line-height: 1.5;
  color: wheat;
  opacity: .55;
  font-size: .82em;
}
@media (max-width: 968px) {
.lab-premium-locked {
  max-height: 300px;}
}
/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 520px) {
  .lp-inner { padding: 24px 20px 20px; }
  .lp-form-row { flex-direction: column; }
  .lp-input, .lp-btn { width: 100%; flex: none; }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-premium], .lab-premium-lock, .lp-btn, .lp-input,
  .lab-premium-reveal, .lp-removing { transition: none; animation: none; }
}
