/*
Theme Name:  Léobjectif
Theme URI:   https://leobjectif.fr
Author:      Com' À Votre Image — Tomas
Author URI:  https://comavotreimage.fr
Description: Thème blank optimisé pour Elementor. Portfolio photographe Léo Marceaux. Curseur custom, menu fullscreen, drag scroll, animations reveal.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: leobjectif
Tags:        portfolio, photography, elementor, blank, one-page
*/

/* ═══════════════════════════════════════════
   VARIABLES & RESET
   Disponibles dans tout Elementor via CSS custom
═══════════════════════════════════════════ */
:root {
  --lbj-bg:           #f0ede8;
  --lbj-ink:          #1a2235;
  --lbj-red:          #d42b22;
  --lbj-yellow:       #f0a500;
  --lbj-teal:         #2aa8b4;
  --lbj-mid:          #6b6b6b;
  --lbj-border:       #d0cdc8;
  --lbj-font-display: 'Bebas Neue', sans-serif;
  --lbj-font-cond:    'Barlow Condensed', sans-serif;
  --lbj-font-mono:    'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--lbj-bg);
  color: var(--lbj-ink);
  font-family: var(--lbj-font-cond);
  font-weight: 300;
  cursor: none;
  overflow-x: hidden;
  margin: 0;
}

/* Neutraliser les styles par défaut Elementor */
.elementor-section,
.elementor-container,
.elementor-widget-wrap { width: 100% !important; }

img { max-width: 100%; display: block; }
a   { text-decoration: none; }

/* ═══════════════════════════════════════════
   CURSEUR CUSTOM
═══════════════════════════════════════════ */
#lbj-cursor {
  width: 12px; height: 12px;
  background: var(--lbj-red);
  position: fixed; top: 0; left: 0; z-index: 99999;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: width .2s, height .2s, background .2s;
  will-change: left, top;
}
#lbj-cursor.big {
  width: 40px; height: 40px;
  background: var(--lbj-teal);
}

/* ═══════════════════════════════════════════
   BARRE DE NAVIGATION FIXE
═══════════════════════════════════════════ */
.lbj-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 2.5rem;
  background: var(--lbj-bg);
  border-bottom: 1.5px solid var(--lbj-ink);
  transition: background .3s, border-color .3s;
}
.lbj-nav.menu-open {
  background: transparent;
  border-bottom-color: transparent;
}
.lbj-nav-logo {
  font-family: var(--lbj-font-display);
  font-size: 1.6rem; letter-spacing: .05em;
  color: var(--lbj-ink); text-decoration: none;
  position: relative; z-index: 1100;
  transition: color .3s;
}
.lbj-nav-logo span { color: var(--lbj-red); }
.lbj-nav.menu-open .lbj-nav-logo       { color: var(--lbj-bg); }
.lbj-nav.menu-open .lbj-nav-logo span  { color: var(--lbj-yellow); }

.lbj-nav-tag {
  font-family: var(--lbj-font-mono);
  font-size: .6rem; color: var(--lbj-mid); letter-spacing: .08em;
  position: relative; z-index: 1100;
  transition: color .3s;
}
.lbj-nav.menu-open .lbj-nav-tag { color: rgba(240,237,232,.4); }

/* Burger */
.lbj-burger {
  position: relative; z-index: 1100;
  background: none; border: none; cursor: none;
  display: flex; flex-direction: column; justify-content: center;
  gap: 6px; width: 36px; height: 36px; padding: 4px;
}
.lbj-burger span {
  display: block; height: 1.5px; background: var(--lbj-ink);
  transition: transform .35s cubic-bezier(.23,1,.32,1), opacity .2s, background .3s;
  transform-origin: center;
}
.lbj-nav.menu-open .lbj-burger span { background: var(--lbj-bg); }
.lbj-nav.menu-open .lbj-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.lbj-nav.menu-open .lbj-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lbj-nav.menu-open .lbj-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   MENU OVERLAY FULLSCREEN
═══════════════════════════════════════════ */
.lbj-menu-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: var(--lbj-ink);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 7rem 2.5rem 3rem;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s cubic-bezier(.77,0,.18,1);
}
.lbj-menu-overlay.open {
  pointer-events: all;
  clip-path: inset(0 0 0% 0);
}

.lbj-menu-items { list-style: none; }
.lbj-menu-items li {
  border-top: 1px solid rgba(240,237,232,.12); overflow: hidden;
}
.lbj-menu-items li:last-child { border-bottom: 1px solid rgba(240,237,232,.12); }
.lbj-menu-items a {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--lbj-font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 1; color: var(--lbj-bg); text-decoration: none;
  padding: .6rem 0;
  transform: translateY(110%);
  transition: transform .55s cubic-bezier(.23,1,.32,1), color .2s;
}
.lbj-menu-overlay.open .lbj-menu-items li:nth-child(1) a { transform: translateY(0); transition-delay: .10s; }
.lbj-menu-overlay.open .lbj-menu-items li:nth-child(2) a { transform: translateY(0); transition-delay: .17s; }
.lbj-menu-overlay.open .lbj-menu-items li:nth-child(3) a { transform: translateY(0); transition-delay: .24s; }
.lbj-menu-overlay.open .lbj-menu-items li:nth-child(4) a { transform: translateY(0); transition-delay: .31s; }
.lbj-menu-items a:hover { color: var(--lbj-yellow); }
.lbj-menu-items a:hover .lbj-arrow { transform: translate(4px,-4px); color: var(--lbj-yellow); }

.lbj-menu-num {
  font-family: var(--lbj-font-mono); font-size: .65rem;
  color: rgba(240,237,232,.3); letter-spacing: .1em;
}
.lbj-arrow { font-size: 2rem; color: rgba(240,237,232,.2); transition: transform .3s, color .3s; }

.lbj-menu-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  opacity: 0; transition: opacity .4s .5s;
}
.lbj-menu-overlay.open .lbj-menu-footer { opacity: 1; }
.lbj-menu-socials { display: flex; gap: 1.5rem; list-style: none; }
.lbj-menu-socials a {
  font-family: var(--lbj-font-mono); font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(240,237,232,.4); text-decoration: none;
  transition: color .2s;
}
.lbj-menu-socials a:hover { color: var(--lbj-yellow); }
.lbj-menu-avail { font-family: var(--lbj-font-mono); font-size: .6rem; color: rgba(240,237,232,.3); letter-spacing: .1em; }
.lbj-menu-avail span { color: var(--lbj-yellow); }

/* ═══════════════════════════════════════════
   HERO — Section Elementor
   Classe CSS à appliquer sur la section : "lbj-hero"
═══════════════════════════════════════════ */
.lbj-hero.elementor-section {
  height: 100vh !important;
  padding-top: 70px !important;
  border-bottom: 1.5px solid var(--lbj-ink);
  overflow: hidden;
}
.lbj-hero .elementor-container {
  height: 100%;
  align-items: stretch !important;
  max-width: 100% !important;
  padding: 0 !important;
}
.lbj-hero .elementor-column { padding: 0 !important; }
/* Colonne gauche */
.lbj-hero .elementor-column:first-child {
  border-right: 1.5px solid var(--lbj-ink);
}
.lbj-hero .elementor-column:first-child > .elementor-widget-wrap {
  padding: 3rem 2.5rem !important;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
/* Colonne droite — image cover */
.lbj-hero .elementor-column:last-child { background: var(--lbj-ink); }
.lbj-hero .elementor-column:last-child .elementor-widget-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(10%) contrast(1.1);
  transform: scale(1.03); transition: transform 6s ease;
}
.lbj-hero .elementor-column:last-child:hover .elementor-widget-image img {
  transform: scale(1);
}

/* ═══════════════════════════════════════════
   WIDGETS HÉRO — classes sur les widgets Elementor
═══════════════════════════════════════════ */

/* Badge statut pulsant — classe "lbj-status" sur widget Texte */
.lbj-status .elementor-widget-container {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--lbj-yellow); border: 1.5px solid var(--lbj-ink);
  padding: .35rem .8rem;
  font-family: var(--lbj-font-mono) !important;
  font-size: .6rem !important; letter-spacing: .1em;
  text-transform: uppercase;
  animation: lbjPopIn .5s .3s cubic-bezier(.34,1.56,.64,1) both;
}
.lbj-status .elementor-widget-container::before {
  content: ''; width: 6px; height: 6px; flex-shrink: 0;
  background: var(--lbj-red); border-radius: 50%;
  animation: lbjPulse 1.5s infinite;
}

/* Titre héro — classe "lbj-hero-title" sur widget Heading */
.lbj-hero-title .elementor-heading-title {
  font-family: var(--lbj-font-display) !important;
  font-size: clamp(5rem, 11vw, 11rem) !important;
  line-height: .9 !important;
  font-weight: 400 !important;
  color: var(--lbj-ink) !important;
  animation: lbjUp .8s .1s ease both;
}
/* Deuxième ligne en rouge — appliquer la couleur rouge dans Elementor sur la 2e ligne */

/* Description héro — classe "lbj-hero-desc" sur widget Texte */
.lbj-hero-desc .elementor-widget-container {
  font-family: var(--lbj-font-mono) !important;
  font-size: .7rem !important; line-height: 1.8 !important;
  color: var(--lbj-mid) !important; font-style: italic !important;
  animation: lbjUp .7s .5s ease both;
}

/* Grand numéro fantôme — classe "lbj-bg-num" sur widget Heading */
.lbj-bg-num .elementor-heading-title {
  font-family: var(--lbj-font-display) !important;
  font-size: 28vw !important; line-height: 1 !important;
  color: transparent !important;
  -webkit-text-stroke: 1px rgba(17,16,16,.06) !important;
  pointer-events: none; user-select: none;
  position: absolute; bottom: -2rem; left: -1rem;
}

/* Bouton primaire — classe "lbj-btn-primary" sur widget Bouton */
.lbj-btn-primary .elementor-button {
  background: var(--lbj-ink) !important; color: var(--lbj-bg) !important;
  font-family: var(--lbj-font-display) !important;
  font-size: 1.1rem !important; letter-spacing: .08em !important;
  border: 1.5px solid var(--lbj-ink) !important;
  border-radius: 0 !important; padding: .8rem 2rem !important;
  transition: background .2s, color .2s, transform .15s !important;
}
.lbj-btn-primary .elementor-button:hover {
  background: var(--lbj-red) !important; border-color: var(--lbj-red) !important;
  transform: translate(-2px,-2px) !important;
}

/* Bouton ghost — classe "lbj-btn-ghost" sur widget Bouton */
.lbj-btn-ghost .elementor-button {
  background: transparent !important; color: var(--lbj-mid) !important;
  font-family: var(--lbj-font-mono) !important;
  font-size: .65rem !important; letter-spacing: .1em !important;
  border: none !important; border-bottom: 1px solid var(--lbj-mid) !important;
  border-radius: 0 !important; padding: 0 0 .2rem !important;
  text-transform: uppercase;
  transition: color .2s, border-color .2s !important;
}
.lbj-btn-ghost .elementor-button:hover { color: var(--lbj-ink) !important; border-color: var(--lbj-ink) !important; }

/* Badge rond rotatif — classe "lbj-badge" sur widget Texte */
.lbj-badge .elementor-widget-container {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--lbj-yellow); border: 1.5px solid var(--lbj-ink);
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--lbj-font-mono) !important;
  font-size: .55rem !important; letter-spacing: .08em;
  text-align: center; text-transform: uppercase; line-height: 1.5;
  animation: lbjSpin 12s linear infinite;
}

/* ═══════════════════════════════════════════
   TICKER — classe "lbj-ticker" sur section
═══════════════════════════════════════════ */
.lbj-ticker.elementor-section {
  background: var(--lbj-ink) !important;
  border-top: 1.5px solid var(--lbj-ink);
  border-bottom: 1.5px solid var(--lbj-ink);
  overflow: hidden;
  padding: .8rem 0 !important;
}
.lbj-ticker .elementor-container { max-width: 100% !important; padding: 0 !important; }
/* Widget HTML avec la piste ticker */
.lbj-ticker-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: lbjTicker 18s linear infinite;
}
.lbj-ticker-track span {
  font-family: var(--lbj-font-display); font-size: 1rem;
  letter-spacing: .15em; color: var(--lbj-bg); flex-shrink: 0;
}
.lbj-ticker-track .sep { color: var(--lbj-red); }

/* ═══════════════════════════════════════════
   WIDGET — PROJETS SCROLL
═══════════════════════════════════════════ */
.elementor-widget-lbj_projets_scroll > .elementor-widget-container { padding: 0 !important; line-height: 0; }

.lbj-ps { border-top: 1.5px solid var(--lbj-ink); }

.lbj-ps-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.8rem 2.5rem;
  border-bottom: 1.5px solid var(--lbj-ink);
}
.lbj-ps-title {
  font-family: var(--lbj-font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}
.lbj-ps-hint {
  font-family: var(--lbj-font-mono);
  font-size: .6rem;
  color: var(--lbj-mid);
  letter-spacing: .08em;
  font-style: italic;
  margin: 0;
}
.lbj-ps-empty {
  padding: 2rem 2.5rem;
  font-family: var(--lbj-font-mono);
  font-size: .7rem;
  color: var(--lbj-mid);
}

/* ═══════════════════════════════════════════
   SECTION PROJETS — classe "lbj-projets" sur section
═══════════════════════════════════════════ */
.lbj-projets.elementor-section { padding: 0 !important; }
.lbj-projets .elementor-container { max-width: 100% !important; padding: 0 !important; }

/* En-tête projets — classe "lbj-projects-header" */
.lbj-projects-header.elementor-section {
  border-bottom: 1.5px solid var(--lbj-ink);
  padding: 2rem 2.5rem !important;
}
.lbj-projects-header .elementor-heading-title {
  font-family: var(--lbj-font-display) !important;
  font-size: 3rem !important; letter-spacing: .03em !important;
  font-weight: 400 !important;
}
.lbj-projects-hint {
  font-family: var(--lbj-font-mono) !important;
  font-size: .65rem !important; color: var(--lbj-mid) !important; font-style: italic;
}

/* ─── Scroll horizontal drag ─── */
.lbj-proj-scroll {
  display: flex; overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none;
  border-bottom: 1.5px solid var(--lbj-ink);
  cursor: grab;
}
.lbj-proj-scroll:active { cursor: grabbing; }
.lbj-proj-scroll::-webkit-scrollbar { display: none; }

.lbj-proj-card {
  flex: 0 0 auto; width: 38vw; min-width: 300px;
  border-right: 1.5px solid var(--lbj-ink);
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--lbj-ink);
}
.lbj-proj-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%) contrast(1.1);
  transform: scale(1.04);
  transition: filter .5s, transform .7s cubic-bezier(.23,1,.32,1);
  display: block;
}
.lbj-proj-card:hover img { filter: grayscale(0%) contrast(1.05); transform: scale(1); }
.lbj-proj-card a { display: block; width: 100%; height: 100%; }

.lbj-proj-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  background: linear-gradient(to top, rgba(26,34,53,.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.lbj-proj-card:hover .lbj-proj-info { transform: translateY(0); }
.lbj-proj-num { font-family: var(--lbj-font-mono); font-size: .6rem; color: var(--lbj-yellow); letter-spacing: .1em; margin-bottom: .4rem; }
.lbj-proj-title { font-family: var(--lbj-font-display); font-size: 2.2rem; color: var(--lbj-bg); line-height: .95; }
.lbj-proj-cat { font-family: var(--lbj-font-mono); font-size: .6rem; color: rgba(240,237,232,.5); margin-top: .5rem; letter-spacing: .08em; }

.lbj-proj-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.lbj-proj-name { font-family: var(--lbj-font-display); font-size: 1.3rem; color: var(--lbj-bg); }
.lbj-proj-arrow { font-family: var(--lbj-font-mono); font-size: .7rem; color: rgba(240,237,232,.4); transition: transform .3s, color .3s; }
.lbj-proj-card:hover .lbj-proj-arrow { transform: translate(3px,-3px); color: var(--lbj-yellow); }

/* ═══════════════════════════════════════════
   WIDGET — TEXT + IMAGE
═══════════════════════════════════════════ */
.elementor-widget-lbj_text_image > .elementor-widget-container { padding: 0 !important; line-height: 0; }

.lbj-ti {
  display: flex;
  align-items: stretch;
  border-top: 1.5px solid var(--lbj-ink);
  border-bottom: 1.5px solid var(--lbj-ink);
  overflow: hidden;
}

/* ── Colonne gauche : image ── */
.lbj-ti-left {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  background: var(--lbj-ink);
  border-right: 1.5px solid var(--lbj-ink);
}

.lbj-ti-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transform: scale(1.02);
  transition: transform 6s ease;
}
.lbj-ti-left:hover .lbj-ti-img { transform: scale(1); }

.lbj-ti-sticker {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--lbj-red);
  color: var(--lbj-bg);
  border: 1.5px solid var(--lbj-ink);
  font-family: var(--lbj-font-display);
  font-size: 1rem; letter-spacing: .05em;
  padding: .4rem .8rem;
  transform: rotate(-3deg);
  z-index: 2;
  line-height: 1;
}

/* ── Colonne droite : contenu ── */
.lbj-ti-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 3.5rem 3rem;
}

.lbj-ti-tag {
  font-family: var(--lbj-font-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lbj-mid);
  margin: 0;
}

.lbj-ti-title {
  font-family: var(--lbj-font-display);
  line-height: .9;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.lbj-ti-t1 { font-size: clamp(3rem, 5.5vw, 6rem); color: var(--lbj-ink); }
.lbj-ti-t2 { font-size: clamp(3rem, 5.5vw, 6rem); color: var(--lbj-red); }

.lbj-ti-desc {
  font-family: var(--lbj-font-mono);
  font-size: .7rem;
  line-height: 1.9;
  color: var(--lbj-mid);
  font-style: italic;
}
.lbj-ti-desc p { margin: 0 0 .8rem; }
.lbj-ti-desc p:last-child { margin-bottom: 0; }

.lbj-ti-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.lbj-ti-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1.5px solid var(--lbj-ink);
  padding-top: 1.5rem;
}
.lbj-ti-stat { padding-right: 1.2rem; }
.lbj-ti-stat:not(:first-child) {
  border-left: 1.5px solid var(--lbj-ink);
  padding-left: 1.2rem;
}
.lbj-ti-stat-n {
  font-family: var(--lbj-font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1;
  margin: 0 0 .2rem;
}
.lbj-ti-stat-l {
  font-family: var(--lbj-font-mono);
  font-size: .6rem;
  color: var(--lbj-mid);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
}

/* ── Responsive < 768px ── */
@media (max-width: 767px) {
  .lbj-ti { flex-direction: column; }
  .lbj-ti-left {
    flex: none;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-right: none;
    border-bottom: 1.5px solid var(--lbj-ink);
  }
  .lbj-ti-img { position: absolute; inset: 0; }
  .lbj-ti-right { padding: 2rem 1.5rem; }
  .lbj-ti-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════
   SECTION ABOUT — classe "lbj-about" sur section
═══════════════════════════════════════════ */
.lbj-about.elementor-section {
  border-top: 1.5px solid var(--lbj-ink);
  padding: 0 !important;
}
.lbj-about .elementor-container { max-width: 100% !important; padding: 0 !important; align-items: stretch !important; }
.lbj-about .elementor-column { padding: 0 !important; }
.lbj-about .elementor-column:first-child { border-right: 1.5px solid var(--lbj-ink); position: relative; }
.lbj-about .elementor-column:first-child .elementor-widget-image img {
  width: 100%; height: 100%; min-height: 500px; object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
}
.lbj-about .elementor-column:last-child > .elementor-widget-wrap { padding: 3rem 2.5rem !important; display: flex; flex-direction: column; justify-content: space-between; }

/* Sticker — classe "lbj-sticker" sur widget Texte */
.lbj-sticker .elementor-widget-container {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--lbj-red); color: var(--lbj-bg) !important;
  border: 1.5px solid var(--lbj-ink);
  font-family: var(--lbj-font-display) !important;
  font-size: 1rem !important; letter-spacing: .05em;
  padding: .4rem .8rem; transform: rotate(-3deg);
  z-index: 2;
}
.lbj-sticker .elementor-widget-container * { color: var(--lbj-bg) !important; }

/* Étiquette about — classe "lbj-about-tag" */
.lbj-about-tag .elementor-widget-container {
  font-family: var(--lbj-font-mono) !important;
  font-size: .6rem !important; color: var(--lbj-mid) !important;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem;
}

/* Titre about — classe "lbj-about-heading" */
.lbj-about-heading .elementor-heading-title {
  font-family: var(--lbj-font-display) !important;
  font-size: clamp(3rem, 5vw, 5.5rem) !important;
  line-height: .92 !important; font-weight: 400 !important;
}

/* Corps about — classe "lbj-about-body" */
.lbj-about-body .elementor-widget-container {
  font-family: var(--lbj-font-mono) !important;
  font-size: .7rem !important; line-height: 1.9 !important;
  color: var(--lbj-mid) !important; font-style: italic;
}

/* Chips — classe "lbj-chips" sur widget HTML */
.lbj-chips-wrap { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.lbj-chip {
  font-family: var(--lbj-font-mono); font-size: .6rem;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1.5px solid var(--lbj-ink); padding: .35rem .75rem;
  background: transparent; transition: background .2s, color .2s; cursor: default;
}
.lbj-chip:hover { background: var(--lbj-ink); color: var(--lbj-bg); }

/* Stats — classe "lbj-stats" sur widget HTML */
.lbj-stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1.5px solid var(--lbj-ink); margin-top: 2rem; }
.lbj-stat { padding: 1.2rem 0; }
.lbj-stat:not(:last-child) { border-right: 1.5px solid var(--lbj-ink); padding-right: 1.2rem; }
.lbj-stat-n { font-family: var(--lbj-font-display); font-size: 3rem; line-height: 1; }
.lbj-stat-l { font-family: var(--lbj-font-mono); font-size: .6rem; color: var(--lbj-mid); letter-spacing: .1em; text-transform: uppercase; }

/* ═══════════════════════════════════════════
   SECTION CONTACT — classe "lbj-contact" sur section
═══════════════════════════════════════════ */
.lbj-contact.elementor-section {
  border-top: 1.5px solid var(--lbj-ink);
  padding: 5rem 2.5rem !important;
}

/* Grand titre contact — classe "lbj-contact-big" */
.lbj-contact-big .elementor-heading-title {
  font-family: var(--lbj-font-display) !important;
  font-size: clamp(4rem, 9vw, 9rem) !important;
  line-height: .88 !important; font-weight: 400 !important;
}

/* Lien email/tel — classe "lbj-contact-link" sur widget Bouton */
.lbj-contact-link .elementor-button {
  display: block; width: 100%;
  font-family: var(--lbj-font-display) !important;
  font-size: 1.4rem !important; letter-spacing: .03em !important;
  color: var(--lbj-ink) !important; background: transparent !important;
  border: 1.5px solid var(--lbj-ink) !important; border-radius: 0 !important;
  padding: 1rem 1.5rem !important; margin-bottom: 1rem;
  text-align: left !important;
  transition: background .2s, color .2s, transform .15s !important;
}
.lbj-contact-link .elementor-button:hover {
  background: var(--lbj-ink) !important; color: var(--lbj-bg) !important;
  transform: translate(-2px,-2px) !important;
}

/* Lien tel — variante taille réduite */
.lbj-contact-link.phone .elementor-button { font-size: 1.1rem !important; opacity: .7; }

/* Socials — classe "lbj-socials" sur widget HTML */
.lbj-socials { display: flex; gap: 0; border: 1.5px solid var(--lbj-ink); list-style: none; }
.lbj-socials li { flex: 1; border-right: 1.5px solid var(--lbj-ink); }
.lbj-socials li:last-child { border-right: none; }
.lbj-socials a {
  display: block; text-align: center;
  font-family: var(--lbj-font-mono); font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--lbj-mid); text-decoration: none;
  padding: .7rem; transition: background .2s, color .2s;
}
.lbj-socials a:hover { background: var(--lbj-yellow); color: var(--lbj-ink); }

/* ═══════════════════════════════════════════
   FOOTER — classe "lbj-footer" sur section
═══════════════════════════════════════════ */
.lbj-footer.elementor-section {
  background: var(--lbj-ink) !important;
  border-top: 1.5px solid var(--lbj-ink);
  padding: 1.5rem 2.5rem !important;
}
.lbj-footer .elementor-widget-container { font-family: var(--lbj-font-display) !important; }
.lbj-footer-logo { font-family: var(--lbj-font-display); font-size: 1.2rem; color: var(--lbj-bg); letter-spacing: .05em; }
.lbj-footer-logo span { color: var(--lbj-red); }
.lbj-footer-copy { font-family: var(--lbj-font-mono); font-size: .6rem; color: rgba(240,237,232,.3); letter-spacing: .08em; }

/* ═══════════════════════════════════════════
   WIDGET — HERO SCREEN
   Placer dans une section pleine largeur, sans padding, colonne 100%
═══════════════════════════════════════════ */
.elementor-widget-lbj_hero_screen > .elementor-widget-container { padding: 0 !important; line-height: 0; }

.lbj-hs {
  display: flex;
  align-items: stretch;
  height: 100dvh;
  border-bottom: 1.5px solid var(--lbj-ink);
  overflow: hidden;
}

/* ── Colonne gauche ── */
.lbj-hs-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-right: 1.5px solid var(--lbj-ink);
}

/* Badge disponibilité */
.lbj-hs-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--lbj-yellow);
  border: 1.5px solid var(--lbj-ink);
  padding: .35rem .8rem;
  font-family: var(--lbj-font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
  animation: lbjPopIn .5s .3s cubic-bezier(.34,1.56,.64,1) both;
}
.lbj-hs-badge::before {
  content: '';
  width: 6px; height: 6px; flex-shrink: 0;
  background: var(--lbj-red);
  border-radius: 50%;
  animation: lbjPulse 1.5s infinite;
}

/* Zone centrale : numéro fantôme + titre */
.lbj-hs-center {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.lbj-hs-bgnum {
  font-family: var(--lbj-font-display);
  font-size: clamp(12rem, 24vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17,16,16,.06);
  pointer-events: none;
  user-select: none;
  position: absolute;
  bottom: -1rem; left: -1rem;
  z-index: 0;
}

.lbj-hs-title {
  font-family: var(--lbj-font-display);
  line-height: .9;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin: 0;
}

.lbj-hs-t1 {
  font-size: clamp(4.5rem, 10vw, 10rem);
  color: var(--lbj-ink);
  animation: lbjUp .8s .1s ease both;
}

.lbj-hs-t2 {
  font-size: clamp(4.5rem, 10vw, 10rem);
  color: var(--lbj-red);
  animation: lbjUp .8s .2s ease both;
}

/* Description */
.lbj-hs-desc {
  font-family: var(--lbj-font-mono);
  font-size: .7rem;
  line-height: 1.8;
  color: var(--lbj-mid);
  font-style: italic;
  margin: 0;
  animation: lbjUp .7s .45s ease both;
}

/* Boutons */
.lbj-hs-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: lbjUp .6s .6s ease both;
  margin-top: 2rem;
}

.lbj-hs-btn-primary {
  display: inline-block;
  background: var(--lbj-ink);
  color: var(--lbj-bg);
  font-family: var(--lbj-font-display);
  font-size: 1.1rem;
  letter-spacing: .08em;
  border: 1.5px solid var(--lbj-ink);
  padding: .8rem 2rem;
  text-decoration: none;
  line-height: 1;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.lbj-hs-btn-primary:hover {
  background: var(--lbj-red);
  border-color: var(--lbj-red);
  color: var(--lbj-bg);
  transform: translate(-2px, -2px);
}

.lbj-hs-btn-ghost {
  font-family: var(--lbj-font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lbj-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--lbj-mid);
  padding-bottom: .2rem;
  line-height: 1;
  transition: color .2s, border-color .2s;
}
.lbj-hs-btn-ghost:hover {
  color: var(--lbj-ink);
  border-color: var(--lbj-ink);
}

/* ── Colonne droite : full height desktop ── */
.lbj-hs-right {
  flex: 0 0 50%;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  background: var(--lbj-ink);
}

.lbj-hs-img {
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(1.1);
  transform: scale(1.03);
  transition: transform 6s ease;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
}
.lbj-hs-right:hover .lbj-hs-img { transform: scale(1); }

/* Badge circulaire SVG */
.lbj-hs-circle {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 90px;
  height: 90px;
  animation: lbjSpin 12s linear infinite;
}
.lbj-hs-circle svg { width: 100%; height: 100%; display: block; }

/* ── Responsive : < 768px — empilement vertical ── */
@media (max-width: 767px) {
  .lbj-hs { flex-direction: column; height: auto; }

  .lbj-hs-left {
    min-height: auto;
    padding: 2rem 1.5rem;
    border-right: none;
    border-bottom: 1.5px solid var(--lbj-ink);
    gap: 2rem;
  }

  .lbj-hs-right {
    flex: none;
    width: 100%;
    aspect-ratio: 4 / 3;
    align-self: auto;
  }

  .lbj-hs-actions {
    margin-top: 0;
  }

  .lbj-hs-img {
    position: absolute;
    inset: 0;
  }

  .lbj-hs-t1,
  .lbj-hs-t2 { font-size: clamp(3.5rem, 14vw, 6rem); }
}

/* ═══════════════════════════════════════════
   REVEAL AU SCROLL — classe "lbj-reveal" sur section
═══════════════════════════════════════════ */
.lbj-reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.lbj-reveal.lbj-in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   SINGLE PROJET — single-projet.php
═══════════════════════════════════════════ */

/* ── Hero ── */
.lbj-sp-hero {
  position: relative;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 1.5px solid var(--lbj-ink);
}

.lbj-sp-hero-bg {
  position: absolute;
  inset: 0;
  margin: 0;
  background: var(--lbj-ink);
}
.lbj-sp-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.lbj-sp-hero:hover .lbj-sp-hero-bg img { transform: scale(1); }

.lbj-sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,34,53,.15) 0%,
    rgba(26,34,53,.0)  40%,
    rgba(26,34,53,.65) 100%
  );
}

.lbj-sp-back {
  position: absolute;
  top: calc(70px + 1.5rem);
  left: 2.5rem;
  font-family: var(--lbj-font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lbj-bg);
  text-decoration: none;
  border-bottom: 1px solid rgba(240,237,232,.4);
  padding-bottom: .15rem;
  z-index: 2;
  transition: border-color .2s, color .2s;
  opacity: .8;
}
.lbj-sp-back:hover { opacity: 1; border-color: var(--lbj-bg); }

.lbj-sp-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 3rem;
}
.lbj-sp-hero-meta {
  font-family: var(--lbj-font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lbj-yellow);
  margin: 0 0 .6rem;
}
.lbj-sp-hero-title {
  font-family: var(--lbj-font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: .88;
  font-weight: 400;
  color: var(--lbj-bg);
  margin: 0;
  animation: lbjUp .8s .1s ease both;
}

.lbj-sp-scroll-hint {
  position: absolute;
  bottom: 2rem; right: 2.5rem;
  font-family: var(--lbj-font-mono);
  font-size: .7rem;
  color: rgba(240,237,232,.5);
  z-index: 2;
  animation: lbjScrollBounce 2s infinite;
}
@keyframes lbjScrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── Meta strip ── */
.lbj-sp-meta-strip {
  display: flex;
  border-bottom: 1.5px solid var(--lbj-ink);
}
.lbj-sp-meta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1.4rem 2.5rem;
  border-right: 1.5px solid var(--lbj-ink);
}
.lbj-sp-meta-item:last-child { border-right: none; }
.lbj-sp-meta-label {
  font-family: var(--lbj-font-mono);
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lbj-mid);
}
.lbj-sp-meta-value {
  font-family: var(--lbj-font-display);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: .03em;
}

/* ── Contenu Elementor ── */
.lbj-sp-content {
  border-bottom: 1.5px solid var(--lbj-ink);
}

/* ── Galerie ── */
.lbj-sp-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--lbj-ink);
  border-bottom: 1.5px solid var(--lbj-ink);
}
.lbj-sp-gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--lbj-ink);
}
.lbj-sp-gallery-item.lbj-sp-gallery-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.lbj-sp-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform .7s cubic-bezier(.23,1,.32,1), filter .5s;
  filter: grayscale(10%) contrast(1.05);
}
.lbj-sp-gallery-item:hover img {
  transform: scale(1);
  filter: grayscale(0%) contrast(1);
}

/* ── Navigation prev / next ── */
.lbj-sp-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1.5px solid var(--lbj-ink);
}
.lbj-sp-nav-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  overflow: hidden;
  text-decoration: none;
  background: var(--lbj-ink);
}
.lbj-sp-nav-item:first-child { border-right: 1.5px solid var(--lbj-ink); }
.lbj-sp-nav-empty { background: var(--lbj-bg); }

.lbj-sp-nav-bg {
  position: absolute;
  inset: 0;
  margin: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.lbj-sp-nav-item:hover .lbj-sp-nav-bg { transform: scale(1); }

.lbj-sp-nav-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,34,53,.85) 0%, rgba(26,34,53,.1) 100%);
  transition: opacity .3s;
}
.lbj-sp-nav-item:hover .lbj-sp-nav-overlay { opacity: .7; }

.lbj-sp-nav-content {
  position: relative;
  z-index: 2;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.lbj-sp-nav-label {
  font-family: var(--lbj-font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,237,232,.5);
}
.lbj-sp-nav-title {
  font-family: var(--lbj-font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: .95;
  color: var(--lbj-bg);
  transition: color .2s;
}
.lbj-sp-nav-item:hover .lbj-sp-nav-title { color: var(--lbj-yellow); }

/* ── Responsive ── */
@media (max-width: 767px) {
  .lbj-sp-meta-strip { flex-direction: column; }
  .lbj-sp-meta-item { border-right: none; border-bottom: 1.5px solid var(--lbj-ink); padding: 1.2rem 1.5rem; }
  .lbj-sp-meta-item:last-child { border-bottom: none; }
  .lbj-sp-gallery { grid-template-columns: 1fr; }
  .lbj-sp-gallery-item.lbj-sp-gallery-wide { grid-column: auto; aspect-ratio: 3 / 4; }
  .lbj-sp-nav { grid-template-columns: 1fr; }
  .lbj-sp-nav-item:first-child { border-right: none; border-bottom: 1.5px solid var(--lbj-ink); }
  .lbj-sp-hero-title { font-size: clamp(3rem, 14vw, 6rem); }
  .lbj-sp-back { left: 1.5rem; }
  .lbj-sp-hero-content { padding: 0 1.5rem 2.5rem; }
}

/* ═══════════════════════════════════════════
   WIDGET — CONTACT
═══════════════════════════════════════════ */
.elementor-widget-lbj_contact > .elementor-widget-container { padding: 0 !important; line-height: 0; }

.lbj-ct {
  display: flex;
  align-items: stretch;
  border-top: 1.5px solid var(--lbj-ink);
  border-bottom: 1.5px solid var(--lbj-ink);
  overflow: hidden;
}

/* ── Colonne gauche : titre ── */
.lbj-ct-left {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
  /* border-right: 1.5px solid var(--lbj-ink); */
}

.lbj-ct-title {
  font-family: var(--lbj-font-display);
  font-weight: 400;
  line-height: .88;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.lbj-ct-t1 { font-size: clamp(4rem, 8vw, 8.5rem); color: var(--lbj-ink); }
.lbj-ct-t2 { font-size: clamp(4rem, 8vw, 8.5rem); color: var(--lbj-red); }

/* ── Colonne droite : coordonnées ── */
.lbj-ct-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 3rem 3.5rem;
}

.lbj-ct-desc {
  font-family: var(--lbj-font-mono);
  font-size: .65rem;
  line-height: 1.8;
  color: var(--lbj-mid);
  font-style: italic;
  margin: 0 0 2rem;
}

/* Lien email */
.lbj-ct-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border: 1.5px solid var(--lbj-ink);
  font-family: var(--lbj-font-display);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  letter-spacing: .04em;
  color: var(--lbj-ink);
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  height: 55px;
}
.lbj-ct-email:hover {
  background: var(--lbj-ink);
  color: var(--lbj-bg);
  transform: translate(-2px, -2px);
  z-index: 1;
  position: relative;
}

/* Lien téléphone */
.lbj-ct-phone {
  display: flex;
  align-items: center;
  padding: 1.1rem 1.5rem;
  border: 1.5px solid var(--lbj-ink);
  font-family: var(--lbj-font-display);
  font-size: clamp(.9rem, 1.4vw, 1.2rem);
  letter-spacing: .04em;
  color: var(--lbj-mid);
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  margin-top: 20px;
  height: 55px;
}
.lbj-ct-phone:hover {
  background: var(--lbj-ink);
  color: var(--lbj-bg);
  transform: translate(-2px, -2px);
  z-index: 1;
  position: relative;
}

/* Réseaux sociaux */
.lbj-ct-socials {
  display: flex;
  border: 1.5px solid var(--lbj-ink);
  margin-top: 1.5rem;
}
.lbj-ct-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem .5rem;
  font-family: var(--lbj-font-mono);
  font-size: .55rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lbj-mid);
  text-decoration: none;
  border-right: 1.5px solid var(--lbj-ink);
  transition: background .2s, color .2s;
}
.lbj-ct-social:last-child { border-right: none; }
.lbj-ct-social:hover { background: var(--lbj-yellow); color: var(--lbj-ink); }

/* ── Responsive ── */
@media (max-width: 767px) {
  .lbj-ct { flex-direction: column; }
  .lbj-ct-left {
    flex: none;
    padding: 3rem 1.5rem;
    border-right: none;
  }
  .lbj-ct-right { padding: 0 1.5rem 3rem; }
  .lbj-ct-socials { flex-wrap: wrap; }
  .lbj-ct-social { flex: 0 0 50%; border-bottom: 1.5px solid var(--lbj-ink); }
  .lbj-ct-social:nth-child(2n) { border-right: none; }
  .lbj-ct-social:nth-last-child(-n+2) { border-bottom: none; }
}

/* ═══════════════════════════════════════════
   WIDGET — FOOTER
═══════════════════════════════════════════ */
.elementor-widget-lbj_footer > .elementor-widget-container { padding: 0 !important; line-height: 0; }

.lbj-ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--lbj-ink);
  padding: 1.2rem 2.5rem;
  border-top: 1.5px solid rgba(240,237,232,.08);
}

.lbj-ft-logo {
  font-family: var(--lbj-font-display);
  font-size: 1.3rem;
  letter-spacing: .05em;
  color: var(--lbj-bg);
  text-decoration: none;
  transition: opacity .2s;
}
.lbj-ft-logo:hover { opacity: .75; }
.lbj-ft-logo span  { color: var(--lbj-red); }

.lbj-ft-copy {
  font-family: var(--lbj-font-mono);
  font-size: .55rem;
  letter-spacing: .08em;
  color: rgba(240,237,232,.3);
  margin: 0;
}

@media (max-width: 767px) {
  .lbj-ft { flex-direction: column; gap: .8rem; text-align: center; padding: 1.5rem; }
}

/* ═══════════════════════════════════════════
   FANCYBOX — surcharge thème
═══════════════════════════════════════════ */
:root {
  --f-bg-color:            #0d1018;
  --f-thumb-border-radius: 0;
  --f-button-bg:           transparent;
  --f-button-color:        rgba(240,237,232,.6);
  --f-button-hover-bg:     transparent;
  --f-button-hover-color:  #f0ede8;
  --f-infobar-color:       rgba(240,237,232,.4);
  --f-font-family:         'DM Mono', monospace;
  --f-spinner-color:       #d42b22;
}
.fancybox__backdrop { background: var(--f-bg-color); }
.fancybox__infobar  { font-size: .6rem; letter-spacing: .1em; }
.fancybox__container { cursor: none !important; }

/* ═══════════════════════════════════════════
   ADMIN BAR OFFSET
═══════════════════════════════════════════ */
.admin-bar .lbj-nav          { top: 32px; }
.admin-bar .lbj-menu-overlay { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .lbj-nav          { top: 46px; }
  .admin-bar .lbj-menu-overlay { top: 46px; }
}

/* ═══════════════════════════════════════════
   ANIMATIONS KEYFRAMES
═══════════════════════════════════════════ */
@keyframes lbjUp     { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes lbjPopIn  { from { opacity:0; } to { opacity:1; } }
@keyframes lbjPulse  { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes lbjSpin   { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes lbjTicker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes lbjFadeIn { from{opacity:0} to{opacity:1} }

/* ═══════════════════════════════════════════
   WIDGET TARIFS  .lbj-tr-*
═══════════════════════════════════════════ */
.lbj-tr { padding: 3rem 0; }

.lbj-tr-header { margin-bottom: 3rem; }
.lbj-tr-tag {
  font-family: var(--lbj-font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--lbj-mid);
  text-transform: uppercase;
  margin: 0 0 .6rem;
}
.lbj-tr-title {
  font-family: var(--lbj-font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--lbj-ink);
  margin: 0 0 .75rem;
}
.lbj-tr-desc {
  font-family: var(--lbj-font-cond);
  font-size: 1rem;
  font-weight: 300;
  color: var(--lbj-mid);
  margin: 0;
  max-width: 560px;
}

.lbj-tr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
}

.lbj-tr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: var(--lbj-bg);
  border: 1.5px solid var(--lbj-border);
  transition: border-color .2s;
}
.lbj-tr-card:hover { border-color: var(--lbj-ink); }

.lbj-tr-card--featured {
  background: var(--lbj-ink);
  border-color: var(--lbj-ink);
  color: var(--lbj-bg);
}
.lbj-tr-card--featured .lbj-tr-name,
.lbj-tr-card--featured .lbj-tr-price,
.lbj-tr-card--featured .lbj-tr-card-desc,
.lbj-tr-card--featured .lbj-tr-features li { color: var(--lbj-bg); }
.lbj-tr-card--featured .lbj-tr-price-note  { color: rgba(240,237,232,.55); }
.lbj-tr-card--featured .lbj-tr-divider     { background: rgba(240,237,232,.15); }
.lbj-tr-card--featured .lbj-tr-features li::before { color: var(--lbj-red); }

.lbj-tr-badge {
  display: inline-block;
  font-family: var(--lbj-font-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lbj-bg);
  background: var(--lbj-red);
  padding: .25em .6em;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.lbj-tr-card-top { margin-bottom: 1.25rem; }

.lbj-tr-name {
  font-family: var(--lbj-font-cond);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lbj-mid);
  margin: 0 0 .75rem;
}
.lbj-tr-card--featured .lbj-tr-name { color: rgba(240,237,232,.6); }

.lbj-tr-price-wrap { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.lbj-tr-price {
  font-family: var(--lbj-font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: .02em;
  color: var(--lbj-ink);
  line-height: 1;
}
.lbj-tr-price-note {
  font-family: var(--lbj-font-mono);
  font-size: .65rem;
  color: var(--lbj-mid);
  letter-spacing: .08em;
}
.lbj-tr-card-desc {
  font-family: var(--lbj-font-cond);
  font-weight: 300;
  font-size: .9rem;
  color: var(--lbj-mid);
  margin: .75rem 0 0;
  line-height: 1.5;
}

.lbj-tr-divider {
  height: 1px;
  background: var(--lbj-border);
  margin: 0 0 1.25rem;
}

.lbj-tr-features {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.lbj-tr-features li {
  font-family: var(--lbj-font-cond);
  font-weight: 300;
  font-size: .95rem;
  color: var(--lbj-ink);
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.lbj-tr-features li::before {
  content: '—';
  font-family: var(--lbj-font-mono);
  font-size: .7rem;
  color: var(--lbj-red);
  flex-shrink: 0;
}

.lbj-tr-cta { margin-top: 1.75rem; }
.lbj-tr-cta a { width: 100%; text-align: center; display: block; }

@media (max-width: 767px) {
  .lbj-tr-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   WIDGET COMMENTAIRES  .lbj-cm-*
═══════════════════════════════════════════ */
.lbj-cm { padding: 3rem 0; }

.lbj-cm-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--lbj-ink);
}
.lbj-cm-title {
  font-family: var(--lbj-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: .03em;
  margin: 0;
  text-transform: uppercase;
  color: var(--lbj-ink);
}
.lbj-cm-count {
  font-family: var(--lbj-font-mono);
  font-size: .65rem;
  color: var(--lbj-mid);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lbj-cm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5px;
}
.lbj-cm-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--lbj-border);
}
.lbj-cm-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.lbj-cm-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.lbj-cm-info { display: flex; flex-direction: column; gap: .2rem; }
.lbj-cm-author {
  font-family: var(--lbj-font-cond);
  font-weight: 600;
  font-size: .95rem;
  color: var(--lbj-ink);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lbj-cm-stars { display: flex; gap: 1px; line-height: 1; }
.lbj-cm-star     { font-size: .85rem; color: var(--lbj-border); }
.lbj-cm-star--on { color: var(--lbj-yellow); }

.lbj-cm-sub { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.lbj-cm-date {
  font-family: var(--lbj-font-mono);
  font-size: .6rem;
  color: var(--lbj-mid);
  letter-spacing: .1em;
}
.lbj-cm-source {
  font-family: var(--lbj-font-mono);
  font-size: .6rem;
  letter-spacing: .08em;
  color: var(--lbj-mid);
  text-transform: uppercase;
}
.lbj-cm-body {
  font-family: var(--lbj-font-cond);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--lbj-ink);
  padding-left: calc(40px + .75rem);
}
.lbj-cm-body p { margin: 0 0 .5em; }
.lbj-cm-body p:last-child { margin-bottom: 0; }

.lbj-cm-empty {
  font-family: var(--lbj-font-mono);
  font-size: .75rem;
  color: var(--lbj-mid);
  letter-spacing: .08em;
  padding: 2rem 0;
  border-top: 1px solid var(--lbj-border);
  border-bottom: 1px solid var(--lbj-border);
  margin: 0 0 2rem;
}

.lbj-cm-cta { margin-top: 2rem; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .lbj-hero.elementor-section { height: auto !important; min-height: 100vh !important; }
  .lbj-hero .elementor-container { flex-direction: column; }
  .lbj-hero .elementor-column:first-child { border-right: none; border-bottom: 1.5px solid var(--lbj-ink); }
  .lbj-about .elementor-container { flex-direction: column; }
  .lbj-about .elementor-column:first-child { border-right: none; border-bottom: 1.5px solid var(--lbj-ink); }
  .lbj-proj-card { width: 80vw; }
  .lbj-contact.elementor-section { padding: 3rem 1.5rem !important; }
}
