/* ═══════════════════════════════════════════════════════════
   JVG Elementor Addon v3.1 — Thème 100% CLAIR
   Fond blanc partout · Couleurs JVG vives · Full responsive
   ═══════════════════════════════════════════════════════════ */

:root {
  --jvg-bg:        #ffffff;
  --jvg-bg2:       #f8fafc;
  --jvg-bg3:       #f1f5f9;
  --jvg-card:      #ffffff;
  --jvg-border:    #e2e8f0;
  --jvg-dark:      #0f172a;
  --jvg-text:      #334155;
  --jvg-muted:     #64748b;
  --jvg-teal:      #0d9488;
  --jvg-teal-lt:   #ccfbf1;
  --jvg-teal-md:   #99f6e4;
  --jvg-orange:    #ea580c;
  --jvg-orange-lt: #ffedd5;
  --jvg-green:     #16a34a;
  --jvg-green-lt:  #dcfce7;
  --jvg-sunday:    #f59e0b;
  --jvg-tuesday:   #0d9488;
  --jvg-wednesday: #ea580c;
  --jvg-thursday:  #16a34a;
  --jvg-friday:    #7c3aed;
  --jvg-head:      'Syne', sans-serif;
  --jvg-body:      'DM Sans', sans-serif;
  --jvg-ease:      cubic-bezier(.25,.46,.45,.94);
  --jvg-r:         14px;
  --jvg-sh:        0 1px 3px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.06);
  --jvg-sh-lg:     0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.05);
}

/* ── Reset ─────────────────────────────────────────────── */
.jvg-section *, .jvg-section *::before, .jvg-section *::after { box-sizing: border-box; }
.jvg-section a { text-decoration: none; color: inherit; }
.jvg-section img { display: block; max-width: 100%; }
.jvg-section ul, .jvg-section ol { list-style: none; padding: 0; margin: 0; }

/* ── Base section ──────────────────────────────────────── */
.jvg-section {
  padding: 72px 20px;
  font-family: var(--jvg-body);
  background: var(--jvg-bg);
  color: var(--jvg-text);
}
.jvg-section.alt { background: var(--jvg-bg2); }

/* ── Reveal ────────────────────────────────────────────── */
.jvg-reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .55s var(--jvg-ease) var(--jvg-delay,0s),
              transform .55s var(--jvg-ease) var(--jvg-delay,0s);
}
.jvg-reveal.jvg-visible { opacity: 1; transform: translateY(0); }
.elementor-editor-active .jvg-reveal,
.elementor-editor-preview .jvg-reveal {
  opacity: 1 !important; transform: none !important; transition: none !important;
}

/* ── Eyebrow ───────────────────────────────────────────── */
.jvg-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: var(--jvg-teal-lt); color: var(--jvg-teal);
  border: 1px solid rgba(13,148,136,.25); padding: 5px 14px;
  border-radius: 99px; margin-bottom: 14px;
}
.jvg-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--jvg-teal); flex-shrink: 0;
  animation: jvgPulse 2s ease-in-out infinite;
}
@keyframes jvgPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.6)} }

/* ── Section header ────────────────────────────────────── */
.jvg-sec-header { margin-bottom: 40px; }
.jvg-sec-header.center { text-align: center; }
.jvg-sec-header.center .jvg-sec-sub { margin: 0 auto; }
.jvg-sec-title {
  font-family: var(--jvg-head);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.1;
  color: var(--jvg-dark); margin: 0 0 10px;
}
.jvg-sec-title em { font-style: normal; color: var(--jvg-teal); }
.jvg-sec-sub { font-size: 15px; color: var(--jvg-muted); max-width: 520px; line-height: 1.7; }

/* ── Boutons ───────────────────────────────────────────── */
.jvg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 99px;
  font-weight: 600; font-size: 15px; font-family: var(--jvg-body);
  border: none; cursor: pointer; transition: all .2s; text-decoration: none;
  white-space: nowrap;
}
.jvg-btn-teal {
  background: var(--jvg-teal); color: #fff;
  box-shadow: 0 2px 12px rgba(13,148,136,.3);
}
.jvg-btn-teal:hover { background: #0f766e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,148,136,.4); }
.jvg-btn-outline {
  background: transparent; color: var(--jvg-muted);
  border: 1.5px solid var(--jvg-border);
}
.jvg-btn-outline:hover { border-color: var(--jvg-teal); color: var(--jvg-teal); transform: translateY(-2px); }

/* ── Badges ────────────────────────────────────────────── */
.jvg-badge { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 99px; font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.jvg-badge--teal   { background: var(--jvg-teal-lt);   color: var(--jvg-teal);   border: 1px solid rgba(13,148,136,.25); }
.jvg-badge--orange { background: var(--jvg-orange-lt); color: var(--jvg-orange); border: 1px solid rgba(234,88,12,.2); }
.jvg-badge--green  { background: var(--jvg-green-lt);  color: var(--jvg-green);  border: 1px solid rgba(22,163,74,.2); }

/* ── Checklist ─────────────────────────────────────────── */
.jvg-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.jvg-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--jvg-text); line-height: 1.5; }
.jvg-check { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; background: var(--jvg-teal-lt); border: 1.5px solid rgba(13,148,136,.3); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; color: var(--jvg-teal); font-weight: 700; margin-top: 1px; }

/* ══════════════════════════════════════════
   HERO — fond dégradé clair
══════════════════════════════════════════ */
.jvg-hero {
  min-height: 90vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  background: linear-gradient(160deg, #f0fdfa 0%, #ffffff 35%, #fff7ed 70%, #faf5ff 100%);
  position: relative; overflow: hidden;
  width: 100%; box-sizing: border-box;
}
.jvg-hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.jvg-hs { position: absolute; border-radius: 50%; }
.jvg-hs1 { width: 500px; height: 500px; top: -150px; right: -100px; background: radial-gradient(circle, rgba(13,148,136,.08), transparent 70%); }
.jvg-hs2 { width: 400px; height: 400px; bottom: -100px; left: -80px; background: radial-gradient(circle, rgba(234,88,12,.07), transparent 70%); }
.jvg-hs3 { width: 280px; height: 280px; top: 30%; left: 3%; background: radial-gradient(circle, rgba(124,58,237,.05), transparent 70%); }
.jvg-hs4 { width: 320px; height: 320px; bottom: 10%; right: 3%; background: radial-gradient(circle, rgba(22,163,74,.06), transparent 70%); }
.jvg-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; width: 100%; padding: 0 4px; }
.jvg-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  background: var(--jvg-teal-lt); color: var(--jvg-teal);
  border: 1px solid rgba(13,148,136,.2); padding: 6px 14px; border-radius: 99px; margin-bottom: 22px;
  max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.jvg-hero-title {
  font-family: var(--jvg-head);
  font-size: clamp(36px, 7.5vw, 84px);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.02;
  color: var(--jvg-dark); margin: 0 0 18px;
  word-break: break-word; overflow-wrap: break-word; hyphens: auto;
}
.jvg-hero-title em { font-style: normal; color: var(--jvg-teal); }
.jvg-hero-sub {
  font-size: clamp(15px, 1.8vw, 18px); color: var(--jvg-muted);
  max-width: 540px; margin: 0 auto 36px; line-height: 1.7;
}
.jvg-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.jvg-hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--jvg-muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
}
.jvg-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--jvg-teal), transparent);
  animation: jvgScroll 2s ease-in-out infinite;
}
@keyframes jvgScroll { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(.4);opacity:.3} }

/* ══════════════════════════════════════════
   STATS — blanc avec séparateurs
══════════════════════════════════════════ */
.jvg-stats { background: #fff; border-top: 1px solid var(--jvg-border); border-bottom: 1px solid var(--jvg-border); }
.jvg-stats-inner { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1100px; margin: 0 auto; }
.jvg-stat { padding: 24px 20px; text-align: center; border-right: 1px solid var(--jvg-border); }
.jvg-stat:last-child { border-right: none; }
.jvg-stat-n { font-family: var(--jvg-head); font-size: clamp(26px,3vw,40px); font-weight: 800; line-height: 1; color: var(--jvg-dark); letter-spacing: -.02em; }
.jvg-stat-l { font-size: 12px; color: var(--jvg-muted); margin-top: 5px; text-transform: uppercase; letter-spacing: .07em; }

/* ══════════════════════════════════════════
   ACTIVITÉS — cards 100% blanches
══════════════════════════════════════════ */
.jvg-act-grid { display: grid; gap: 14px; }
.jvg-act-grid--2 { grid-template-columns: repeat(2,1fr); }
.jvg-act-grid--3 { grid-template-columns: repeat(3,1fr); }
.jvg-act-grid--4 { grid-template-columns: repeat(4,1fr); }

.jvg-act-card {
  background: #ffffff !important;
  border: 1.5px solid var(--jvg-border);
  border-radius: var(--jvg-r); padding: 26px 22px;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s var(--jvg-ease), box-shadow .25s;
  display: block; color: inherit;
}
.jvg-act-card:hover { border-color: var(--jvg-teal); transform: translateY(-5px); box-shadow: var(--jvg-sh-lg); }
.jvg-act-card__arrow {
  position: absolute; top: 18px; right: 18px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--jvg-teal-lt); color: var(--jvg-teal);
  display: flex; align-items: center; justify-content: center; font-size: 12px;
  opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .25s;
}
.jvg-act-card:hover .jvg-act-card__arrow { opacity: 1; transform: translateX(0); }
.jvg-act-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--jvg-bg2); border: 1.5px solid var(--jvg-border);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px;
}
.jvg-act-card h3 { font-family: var(--jvg-head); font-size: 16px; font-weight: 700; color: var(--jvg-dark) !important; margin: 0 0 7px; }
.jvg-act-card p  { font-size: 13px; color: var(--jvg-muted) !important; line-height: 1.65; margin: 0; }

/* Featured card */
.jvg-act-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #f0fdfa, #ffffff) !important;
  border-color: rgba(13,148,136,.3);
  min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.jvg-act-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.jvg-act-card__featured-title { font-family: var(--jvg-head); font-size: clamp(18px,2.5vw,28px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; color: var(--jvg-dark) !important; margin: 0 0 10px; }
.jvg-act-card__glow { position: absolute; top: -20px; right: -20px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(13,148,136,.08) 0%, transparent 70%); pointer-events: none; }

/* ══════════════════════════════════════════
   PROGRAMME HEBDO — cards blanches + couleur par jour
══════════════════════════════════════════ */
.jvg-ph { background: var(--jvg-bg); }
.jvg-prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }

.jvg-prog-card {
  background: #ffffff !important;
  border: 1.5px solid var(--jvg-border);
  border-radius: var(--jvg-r); padding: 26px 22px;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .3s var(--jvg-ease), box-shadow .3s;
}
.jvg-prog-card:hover {
  border-color: var(--day-color, var(--jvg-teal));
  transform: translateY(-5px); box-shadow: var(--jvg-sh-lg);
}
.jvg-prog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--day-color, var(--jvg-teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--jvg-ease);
  border-radius: var(--jvg-r) var(--jvg-r) 0 0;
}
.jvg-prog-card:hover::before { transform: scaleX(1); }
.jvg-prog-card--large { grid-column: span 2; min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; }
.jvg-prog-card-bg { position: absolute; inset: 0; border-radius: var(--jvg-r); pointer-events: none; }
.jvg-prog-card-num { position: absolute; bottom: -8px; right: 12px; font-family: var(--jvg-head); font-size: 80px; font-weight: 800; letter-spacing: -.05em; line-height: 1; color: rgba(0,0,0,.04); pointer-events: none; user-select: none; }
.jvg-prog-card-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 99px; border: 1px solid; margin-bottom: 12px; width: fit-content; position: relative; }
.jvg-prog-card-time { font-family: var(--jvg-head); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--jvg-muted); margin-bottom: 6px; position: relative; }
.jvg-prog-card-title { font-family: var(--jvg-head); font-size: clamp(16px,2vw,22px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; color: var(--jvg-dark) !important; margin: 0 0 10px; position: relative; }
.jvg-prog-card-title em { font-style: normal; color: var(--em-color, var(--jvg-teal)); }
.jvg-prog-card-desc { font-size: 13px; color: var(--jvg-muted) !important; line-height: 1.65; position: relative; }
.jvg-prog-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; position: relative; }
.jvg-prog-card-tag { font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 6px; background: var(--jvg-bg2); color: var(--jvg-muted); border: 1px solid var(--jvg-border); }
.jvg-prog-card-arrow { position: absolute; top: 20px; right: 20px; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .25s var(--jvg-ease); }
.jvg-prog-card:hover .jvg-prog-card-arrow { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════
   ÉVÉNEMENTS — liste blanche
══════════════════════════════════════════ */
.jvg-events-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; flex-wrap: wrap; gap: 14px; }
.jvg-events-header .jvg-sec-title { margin-bottom: 0; }
.jvg-events-list { display: flex; flex-direction: column; gap: 10px; }
.jvg-event-row {
  display: flex; align-items: center; gap: 16px;
  background: #ffffff !important; border: 1.5px solid var(--jvg-border);
  border-radius: var(--jvg-r); padding: 16px 20px;
  transition: border-color .25s, transform .2s, box-shadow .2s; color: inherit;
}
.jvg-event-row:hover { border-color: var(--jvg-teal); transform: translateX(4px); box-shadow: var(--jvg-sh); }
.jvg-event__date { flex-shrink: 0; width: 52px; text-align: center; background: var(--jvg-teal-lt); border-radius: 10px; padding: 7px 4px; }
.jvg-event__day   { font-family: var(--jvg-head); font-size: 22px; font-weight: 800; line-height: 1; color: var(--jvg-teal); }
.jvg-event__month { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--jvg-teal); font-weight: 600; }
.jvg-event__info  { flex: 1; min-width: 0; }
.jvg-event__info h3 { font-family: var(--jvg-head); font-size: 15px; font-weight: 700; color: var(--jvg-dark) !important; margin: 0 0 4px; letter-spacing: -.01em; }
.jvg-event__meta  { display: flex; gap: 12px; flex-wrap: wrap; }
.jvg-event__meta span { font-size: 12px; color: var(--jvg-muted) !important; }

/* ══════════════════════════════════════════
   TÉMOIGNAGES — cards blanches
══════════════════════════════════════════ */
.jvg-testi-grid { display: grid; gap: 14px; }
.jvg-testi-grid--1 { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
.jvg-testi-grid--2 { grid-template-columns: repeat(2,1fr); }
.jvg-testi-grid--3 { grid-template-columns: repeat(3,1fr); }
.jvg-testi-card { background: #ffffff !important; border: 1.5px solid var(--jvg-border); border-radius: var(--jvg-r); padding: 26px 22px; transition: border-color .25s, transform .25s, box-shadow .25s; }
.jvg-testi-card:hover { border-color: var(--jvg-teal); transform: translateY(-4px); box-shadow: var(--jvg-sh-lg); }
.jvg-testi__quote { font-size: 36px; color: var(--jvg-teal); line-height: .8; margin-bottom: 12px; font-family: Georgia,serif; }
.jvg-testi__text  { font-size: 14px; color: var(--jvg-muted) !important; line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.jvg-testi__author { display: flex; align-items: center; gap: 10px; }
.jvg-testi__avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #fff; }
.jvg-testi__avatar--img { object-fit: cover; }
.jvg-testi__name { font-weight: 700; font-size: 14px; color: var(--jvg-dark) !important; }
.jvg-testi__role { font-size: 12px; color: var(--jvg-muted) !important; }

/* ══════════════════════════════════════════
   CTA — dégradé clair
══════════════════════════════════════════ */
.jvg-cta-section { text-align: center; }
.jvg-cta-box {
  background: linear-gradient(135deg, #f0fdfa 0%, #fff7ed 50%, #faf5ff 100%) !important;
  border: 1.5px solid rgba(13,148,136,.2); border-radius: 20px;
  padding: 64px 40px; position: relative; overflow: hidden;
}
.jvg-cta-box::before { content: ''; position: absolute; top: -70px; left: 50%; transform: translateX(-50%); width: 380px; height: 220px; border-radius: 50%; background: radial-gradient(ellipse, rgba(13,148,136,.1), transparent 70%); pointer-events: none; }
.jvg-cta__title { font-family: var(--jvg-head); font-size: clamp(26px,5vw,54px); font-weight: 800; letter-spacing: -.035em; line-height: 1.05; color: var(--jvg-dark) !important; margin: 0 0 12px; position: relative; }
.jvg-cta__title em { font-style: normal; color: var(--jvg-teal); }
.jvg-cta__text { font-size: 15px; color: var(--jvg-muted) !important; max-width: 460px; margin: 0 auto 28px; position: relative; }
.jvg-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ══════════════════════════════════════════
   À PROPOS — fond clair
══════════════════════════════════════════ */
.jvg-about { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.jvg-about--reverse .jvg-about__visual { order: 2; }
.jvg-about--reverse .jvg-about__content { order: 1; }
.jvg-about__visual { aspect-ratio: 1/1; border-radius: 20px; overflow: hidden; background: linear-gradient(135deg, #f0fdfa, #f8fafc); border: 1.5px solid var(--jvg-border); position: relative; box-shadow: var(--jvg-sh); }
.jvg-about__orbs { position: absolute; inset: 0; pointer-events: none; }
.jvg-orb { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .35; }
.jvg-orb--1 { width: 200px; height: 200px; top: -30px; left: -30px; background: radial-gradient(circle, rgba(13,148,136,.3), transparent); animation: jvgFloat 6s ease-in-out infinite; }
.jvg-orb--2 { width: 150px; height: 150px; bottom: 10px; right: -20px; background: radial-gradient(circle, rgba(234,88,12,.2), transparent); animation: jvgFloat 8s ease-in-out 1s infinite reverse; }
@keyframes jvgFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.jvg-about__visual-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
.jvg-about__circle { width: 130px; height: 130px; border-radius: 50%; background: linear-gradient(135deg, var(--jvg-teal-lt), #fff); border: 2px solid rgba(13,148,136,.2); display: flex; align-items: center; justify-content: center; font-size: 52px; }
.jvg-about__label { font-family: var(--jvg-head); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--jvg-muted); }
.jvg-about__title { font-family: var(--jvg-head); font-size: clamp(22px,3vw,36px); font-weight: 800; letter-spacing: -.025em; line-height: 1.15; color: var(--jvg-dark) !important; margin: 0 0 12px; }
.jvg-about__title em { font-style: normal; color: var(--jvg-teal); }
.jvg-about__text { font-size: 15px; color: var(--jvg-muted) !important; line-height: 1.8; margin-bottom: 10px; }

/* ══════════════════════════════════════════
   ÉQUIPE
══════════════════════════════════════════ */
.jvg-team-grid { display: grid; gap: 14px; }
.jvg-team-grid--2 { grid-template-columns: repeat(2,1fr); }
.jvg-team-grid--3 { grid-template-columns: repeat(3,1fr); }
.jvg-team-grid--4 { grid-template-columns: repeat(4,1fr); }
.jvg-team-card { background: #fff !important; border: 1.5px solid var(--jvg-border); border-radius: var(--jvg-r); padding: 24px 18px; text-align: center; transition: border-color .25s, transform .25s, box-shadow .25s; }
.jvg-team-card:hover { border-color: var(--jvg-teal); transform: translateY(-4px); box-shadow: var(--jvg-sh-lg); }
.jvg-team-card__photo { margin-bottom: 12px; }
.jvg-team-card__photo img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; margin: 0 auto; border: 3px solid var(--jvg-border); }
.jvg-team-card__avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 26px; color: #fff; }
.jvg-team-card__name { font-family: var(--jvg-head); font-size: 15px; font-weight: 700; color: var(--jvg-dark) !important; margin-bottom: 4px; }
.jvg-team-card__role { font-size: 13px; color: var(--jvg-teal); font-weight: 600; margin-bottom: 7px; }
.jvg-team-card__bio  { font-size: 13px; color: var(--jvg-muted) !important; line-height: 1.6; }
.jvg-team-card__email { font-size: 12px; color: var(--jvg-muted); display: block; margin-top: 8px; transition: color .2s; }
.jvg-team-card__email:hover { color: var(--jvg-teal); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.jvg-contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; }
.jvg-contact-item { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 18px; }
.jvg-contact-item__icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: var(--jvg-teal-lt); border: 1.5px solid rgba(13,148,136,.2); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.jvg-contact-item__label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--jvg-muted); font-weight: 600; margin-bottom: 2px; }
.jvg-contact-item a, .jvg-contact-item span { font-size: 14px; color: var(--jvg-dark) !important; transition: color .2s; }
.jvg-contact-item a:hover { color: var(--jvg-teal) !important; }
.jvg-social-btn { width: 40px; height: 40px; border-radius: 9px; background: var(--jvg-bg2); border: 1.5px solid var(--jvg-border); display: inline-flex; align-items: center; justify-content: center; color: var(--jvg-muted); transition: all .2s; text-decoration: none; }
.jvg-social-btn:hover { background: var(--jvg-teal-lt); color: var(--jvg-teal); border-color: rgba(13,148,136,.3); }
.jvg-form { display: flex; flex-direction: column; gap: 12px; }
.jvg-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.jvg-input { background: var(--jvg-bg2); border: 1.5px solid var(--jvg-border); border-radius: 10px; padding: 12px 16px; color: var(--jvg-dark); font-size: 14px; font-family: var(--jvg-body); outline: none; width: 100%; transition: border-color .2s, box-shadow .2s; }
.jvg-input:focus { border-color: var(--jvg-teal); box-shadow: 0 0 0 3px rgba(13,148,136,.1); }
.jvg-input::placeholder { color: var(--jvg-muted); }
.jvg-textarea { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════════════
   VERSET — dégradé clair
══════════════════════════════════════════ */
.jvg-verse { padding: 36px 20px; }
.jvg-verse--centered { text-align: center; max-width: 680px; margin: 0 auto; }
.jvg-verse--card { background: var(--jvg-bg2) !important; border: 1.5px solid var(--jvg-border); border-radius: 18px; padding: 44px; box-shadow: var(--jvg-sh); }
.jvg-verse--band { background: linear-gradient(135deg, #f0fdfa, #fff7ed) !important; border-top: 1px solid rgba(13,148,136,.15); border-bottom: 1px solid rgba(13,148,136,.15); text-align: center; padding: 44px 36px; }
.jvg-verse__mark { font-size: 52px; color: var(--jvg-teal); line-height: .8; margin-bottom: 12px; font-family: Georgia,serif; }
.jvg-verse__text { font-family: var(--jvg-head); font-size: clamp(16px,2.5vw,23px); font-weight: 600; line-height: 1.55; color: var(--jvg-dark) !important; font-style: italic; margin-bottom: 14px; max-width: 740px; margin-left: auto; margin-right: auto; }
.jvg-verse__ref { font-size: 13px; font-weight: 700; color: var(--jvg-teal); letter-spacing: .05em; }

/* ══════════════════════════════════════════
   COUNTDOWN
══════════════════════════════════════════ */
.jvg-countdown { text-align: center; padding: 36px 16px; }
.jvg-cd__label  { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--jvg-muted); margin-bottom: 8px; }
.jvg-cd__event  { font-family: var(--jvg-head); font-size: clamp(18px,3vw,30px); font-weight: 800; letter-spacing: -.02em; color: var(--jvg-dark); margin-bottom: 24px; }
.jvg-cd__blocks { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.jvg-cd__block  { background: #fff; border: 1.5px solid var(--jvg-border); border-radius: var(--jvg-r); padding: 18px 20px; min-width: 84px; text-align: center; box-shadow: var(--jvg-sh); }
.jvg-cd__num    { display: block; font-family: var(--jvg-head); font-size: clamp(28px,4.5vw,48px); font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--jvg-teal); }
.jvg-cd__unit   { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--jvg-muted); margin-top: 5px; }
.jvg-cd__sep    { font-family: var(--jvg-head); font-size: 30px; font-weight: 800; color: var(--jvg-border); line-height: 1; margin-bottom: 22px; }
.jvg-cd__expired { font-size: 18px; font-weight: 600; color: var(--jvg-teal); }

/* ══════════════════════════════════════════
   GALERIE
══════════════════════════════════════════ */
.jvg-gallery-grid { display: grid; gap: 8px; }
.jvg-gallery-grid--2 { grid-template-columns: repeat(2,1fr); }
.jvg-gallery-grid--3 { grid-template-columns: repeat(3,1fr); }
.jvg-gallery-grid--4 { grid-template-columns: repeat(4,1fr); }
.jvg-gallery-item { overflow: hidden; border-radius: 10px; }
.jvg-gallery-link { display: block; }
.jvg-gallery-img { position: relative; overflow: hidden; }
.jvg-gallery-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--jvg-ease); }
.jvg-gallery-item:hover .jvg-gallery-img img { transform: scale(1.06); }
.jvg-gallery-overlay { position: absolute; inset: 0; background: rgba(13,148,136,.35); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s; }
.jvg-gallery-item:hover .jvg-gallery-overlay { opacity: 1; }
.jvg-gallery-zoom { font-size: 28px; color: #fff; }
.jvg-lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.jvg-lightbox__overlay { position: absolute; inset: 0; background: rgba(15,23,42,.95); }
.jvg-lightbox__inner { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; gap: 14px; }
.jvg-lightbox__img { max-width: 80vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.jvg-lightbox__close { position: fixed; top: 18px; right: 20px; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 8px; opacity: .7; }
.jvg-lightbox__close:hover { opacity: 1; }
.jvg-lightbox__prev,.jvg-lightbox__next { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 26px; cursor: pointer; padding: 10px 14px; border-radius: 8px; flex-shrink: 0; }
.jvg-lightbox__counter { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); font-size: 13px; }

/* ══════════════════════════════════════════
   NOS ACTIONS
══════════════════════════════════════════ */
.jvg-action-grid { display: grid; gap: 14px; }
.jvg-action-grid--2 { grid-template-columns: repeat(2,1fr); }
.jvg-action-grid--3 { grid-template-columns: repeat(3,1fr); }
.jvg-action-grid--4 { grid-template-columns: repeat(4,1fr); }
.jvg-action-card { background: #fff !important; border: 1.5px solid var(--jvg-border); border-radius: var(--jvg-r); padding: 26px 22px; transition: border-color .25s, transform .25s, box-shadow .25s; display: block; color: inherit; text-decoration: none; }
.jvg-action-card:hover { border-color: var(--ac,var(--jvg-teal)); transform: translateY(-4px); box-shadow: var(--jvg-sh-lg); }
.jvg-action-card:hover .jvg-action-icon { background: var(--ac-rgba,rgba(13,148,136,.1)); }
.jvg-action-icon { font-size: 30px; margin-bottom: 12px; width: 54px; height: 54px; border-radius: 12px; background: var(--jvg-bg2); border: 1.5px solid var(--jvg-border); display: flex; align-items: center; justify-content: center; transition: background .25s; }
.jvg-action-title { font-family: var(--jvg-head); font-size: 17px; font-weight: 700; color: var(--jvg-dark) !important; margin: 0 0 7px; letter-spacing: -.01em; }
.jvg-action-desc { font-size: 13px; color: var(--jvg-muted) !important; line-height: 1.65; }

/* ══════════════════════════════════════════
   RESPONSIVE TABLETTE — ≤1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .jvg-prog-grid { grid-template-columns: repeat(2,1fr); }
  .jvg-prog-card--large { grid-column: span 2; }
  .jvg-act-grid--3,.jvg-act-grid--4 { grid-template-columns: repeat(2,1fr); }
  .jvg-act-card--featured { grid-column: span 2; }
  .jvg-testi-grid--3 { grid-template-columns: repeat(2,1fr); }
  .jvg-team-grid--4 { grid-template-columns: repeat(2,1fr); }
  .jvg-about { gap: 36px; }
  .jvg-contact-grid { grid-template-columns: 1fr 1.2fr; gap: 28px; }
  .jvg-stats-inner { grid-template-columns: repeat(2,1fr); }
  .jvg-stat:nth-child(2n) { border-right: none; }
  .jvg-stat:nth-child(-n+2) { border-bottom: 1px solid var(--jvg-border); }
  .jvg-action-grid--3,.jvg-action-grid--4 { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════
   RESPONSIVE MOBILE — ≤768px
   Optimisé touch, espacement généreux
══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Espacement */
  .jvg-section { padding: 48px 16px; }
  .jvg-sec-header { margin-bottom: 24px; }

  /* Hero */
  .jvg-hero { padding: 80px 20px 48px; min-height: auto; min-height: 85svh; }
  .jvg-hero-title { font-size: clamp(28px,7.5vw,40px); letter-spacing: -.025em; word-break: break-word; }
  .jvg-hero-sub { font-size: 15px; margin-bottom: 28px; }
  .jvg-hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .jvg-hero-btns .jvg-btn { width: 100%; max-width: 300px; font-size: 14px; padding: 13px 20px; }
  .jvg-hero-scroll { display: none; }
  .jvg-hs { display: none; }
  .jvg-hero-eyebrow { font-size: 10px; padding: 5px 12px; letter-spacing: .06em; white-space: normal; text-align: center; max-width: 90%; }
  .jvg-hero-inner { padding: 0; } /* cacher les blobs sur mobile */

  /* Stats */
  .jvg-stats-inner { grid-template-columns: repeat(2,1fr); }
  .jvg-stat { padding: 16px 12px; border-bottom: 1px solid var(--jvg-border); border-right: none !important; }
  .jvg-stat:nth-child(odd) { border-right: 1px solid var(--jvg-border) !important; }
  .jvg-stat:nth-last-child(-n+2) { border-bottom: none; }
  .jvg-stat-n { font-size: clamp(24px,5vw,32px); }

  /* Grilles → 1 colonne */
  .jvg-prog-grid { grid-template-columns: 1fr; gap: 10px; }
  .jvg-prog-card--large { grid-column: span 1; min-height: auto; }
  .jvg-prog-card { padding: 20px 18px; }
  .jvg-prog-card-num { font-size: 60px; }

  .jvg-act-grid--2,.jvg-act-grid--3,.jvg-act-grid--4 { grid-template-columns: 1fr; }
  .jvg-act-card--featured { grid-column: span 1; min-height: auto; padding: 22px 18px; }
  .jvg-act-card { padding: 20px 18px; }

  /* About */
  .jvg-about { grid-template-columns: 1fr; gap: 24px; }
  .jvg-about--reverse .jvg-about__visual, .jvg-about--reverse .jvg-about__content { order: unset; }
  .jvg-about__visual { max-width: 320px; margin: 0 auto; aspect-ratio: 1/1; }

  /* Témoignages */
  .jvg-testi-grid--2,.jvg-testi-grid--3 { grid-template-columns: 1fr; }

  /* Équipe */
  .jvg-team-grid--2,.jvg-team-grid--3,.jvg-team-grid--4 { grid-template-columns: repeat(2,1fr); }
  .jvg-team-card { padding: 20px 14px; }

  /* Événements */
  .jvg-events-header { flex-direction: column; align-items: flex-start; }
  .jvg-event-row { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
  .jvg-event__info h3 { font-size: 14px; }

  /* CTA */
  .jvg-cta-box { padding: 40px 20px; border-radius: 16px; }
  .jvg-cta__actions { flex-direction: column; align-items: center; gap: 10px; }
  .jvg-cta__actions .jvg-btn { width: 100%; max-width: 300px; font-size: 14px; }
  .jvg-cta__title { font-size: clamp(24px,6vw,36px); }

  /* Contact */
  .jvg-contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .jvg-form__row { grid-template-columns: 1fr; }

  /* Verset */
  .jvg-verse--card { padding: 24px 16px; }
  .jvg-verse--band { padding: 28px 16px; }
  .jvg-verse__text { font-size: 16px; }

  /* Countdown */
  .jvg-cd__block { padding: 14px 16px; min-width: 66px; }
  .jvg-cd__num   { font-size: clamp(24px,6vw,36px); }

  /* Actions */
  .jvg-action-grid--2,.jvg-action-grid--3,.jvg-action-grid--4 { grid-template-columns: 1fr; }

  /* Galerie */
  .jvg-gallery-grid--3,.jvg-gallery-grid--4 { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════
   RESPONSIVE PETIT MOBILE — ≤480px
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .jvg-section { padding: 40px 14px; }
  .jvg-hero { padding: 76px 16px 40px; }
  .jvg-hero-title { font-size: clamp(26px,8vw,36px); letter-spacing: -.02em; }
  .jvg-hero-sub { font-size: 14px; }
  .jvg-team-grid--2,.jvg-team-grid--3,.jvg-team-grid--4 { grid-template-columns: 1fr; }
  .jvg-gallery-grid--2,.jvg-gallery-grid--3,.jvg-gallery-grid--4 { grid-template-columns: 1fr; }
  .jvg-cd__blocks { gap: 6px; }
  .jvg-cd__block { min-width: 58px; padding: 12px 10px; }
  .jvg-sec-title { font-size: clamp(22px,7vw,30px); }
  .jvg-prog-card-title { font-size: 16px; }
  .jvg-event__date { width: 46px; }
  .jvg-event__day  { font-size: 18px; }
}

/* ══════════════════════════════════════════
   ELEMENTOR EDITOR — overrides spécifiques
══════════════════════════════════════════ */
.elementor-editor-active .jvg-hero,
.elementor-editor-preview .jvg-hero {
  min-height: 60vh !important;
}
.elementor-editor-active .jvg-hero-shapes,
.elementor-editor-preview .jvg-hero-shapes {
  display: none !important;
}
/* Force white backgrounds in editor */
.elementor-editor-active .jvg-act-card,
.elementor-editor-active .jvg-prog-card,
.elementor-editor-active .jvg-testi-card,
.elementor-editor-active .jvg-event-row,
.elementor-editor-active .jvg-team-card,
.elementor-editor-active .jvg-action-card,
.elementor-editor-preview .jvg-act-card,
.elementor-editor-preview .jvg-prog-card,
.elementor-editor-preview .jvg-testi-card,
.elementor-editor-preview .jvg-event-row,
.elementor-editor-preview .jvg-team-card,
.elementor-editor-preview .jvg-action-card {
  background: #ffffff !important;
  color: #334155 !important;
}
.elementor-editor-active .jvg-act-card h3,
.elementor-editor-active .jvg-prog-card-title,
.elementor-editor-active .jvg-testi__name,
.elementor-editor-active .jvg-event__info h3,
.elementor-editor-preview .jvg-act-card h3,
.elementor-editor-preview .jvg-prog-card-title,
.elementor-editor-preview .jvg-testi__name,
.elementor-editor-preview .jvg-event__info h3 {
  color: #0f172a !important;
}
.elementor-editor-active .jvg-act-card p,
.elementor-editor-active .jvg-prog-card-desc,
.elementor-editor-active .jvg-testi__text,
.elementor-editor-active .jvg-event__meta span,
.elementor-editor-preview .jvg-act-card p,
.elementor-editor-preview .jvg-prog-card-desc,
.elementor-editor-preview .jvg-testi__text,
.elementor-editor-preview .jvg-event__meta span {
  color: #64748b !important;
}

/* ══════════════════════════════════════════
   FOOTER JVG — fond gris très clair
══════════════════════════════════════════ */
.jvg-footer {
  background: #f8fafc;
  border-top: 2px solid #e2e8f0;
  font-family: var(--jvg-body);
  color: #334155;
}

.jvg-footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 48px 40px;
}

/* ── Colonne brand ── */
.jvg-footer__logo-wrap { margin-bottom: 14px; }
.jvg-footer__logo-placeholder { display: flex; flex-direction: column; gap: 2px; }
.jvg-footer__name {
  font-family: var(--jvg-head); font-size: 17px; font-weight: 800;
  letter-spacing: -.02em; color: #0d9488; line-height: 1.2;
}
.jvg-footer__tagline {
  font-size: 11px; text-transform: uppercase; letter-spacing: .1em;
  color: #94a3b8; font-weight: 500;
}
.jvg-footer__desc {
  font-size: 13px; color: #64748b; line-height: 1.7;
  max-width: 280px; margin: 0 0 20px;
}

/* ── Réseaux sociaux ── */
.jvg-footer__socials { display: flex; flex-direction: column; gap: 8px; }
.jvg-footer__social {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 10px;
  background: #fff; border: 1.5px solid #e2e8f0;
  font-size: 13px; font-weight: 500; color: #64748b;
  text-decoration: none; width: fit-content;
  transition: all .2s ease;
}
.jvg-footer__social:hover {
  background: #ccfbf1; color: #0d9488;
  border-color: rgba(13,148,136,.3);
  transform: translateX(3px);
}
.jvg-footer__social svg { flex-shrink: 0; }

/* ── Colonnes liens ── */
.jvg-footer__col {}
.jvg-footer__col-title {
  font-family: var(--jvg-head); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #94a3b8; margin: 0 0 16px;
}
.jvg-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.jvg-footer__link {
  font-size: 14px; color: #64748b; text-decoration: none;
  transition: color .2s;
}
.jvg-footer__link:hover { color: #0d9488; }

/* ── Contact list ── */
.jvg-footer__contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.jvg-footer__contact-list li { display: flex; align-items: center; gap: 8px; }
.jvg-footer__contact-icon { font-size: 14px; flex-shrink: 0; width: 20px; }
.jvg-footer__contact-list .jvg-footer__link { font-size: 13px; }
.jvg-footer__contact-list span:last-child { font-size: 13px; color: #64748b; }

/* ── Bottom bar ── */
.jvg-footer__bottom {
  border-top: 1px solid #e2e8f0;
  background: #f1f5f9;
}
.jvg-footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1160px; margin: 0 auto;
  padding: 18px 48px; flex-wrap: wrap; gap: 12px;
}
.jvg-footer__copy { font-size: 12px; color: #94a3b8; margin: 0; }
.jvg-footer__legal { display: flex; gap: 20px; }
.jvg-footer__legal .jvg-footer__link { font-size: 12px; color: #94a3b8; }
.jvg-footer__legal .jvg-footer__link:hover { color: #0d9488; }

/* ── Responsive tablette ── */
@media (max-width: 900px) {
  .jvg-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 44px 32px 32px;
  }
  .jvg-footer__brand { grid-column: span 2; }
  .jvg-footer__socials { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .jvg-footer__desc { max-width: 100%; }
}

/* ── Responsive mobile ── */
@media (max-width: 640px) {
  .jvg-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px 24px;
  }
  .jvg-footer__brand { grid-column: span 1; }
  .jvg-footer__socials { flex-direction: column; }
  .jvg-footer__social { width: 100%; }
  .jvg-footer__bottom-inner {
    flex-direction: column; align-items: flex-start;
    padding: 16px 20px; gap: 8px;
  }
  .jvg-footer__legal { gap: 16px; }
}

/* ══ PROGRAMME HEBDO v4 ═══════════════════ */
.jvg-ph-section { background: var(--jvg-bg); }
.jvg-ph-title   { font-family: var(--jvg-head); font-size: clamp(26px,4vw,44px); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; color: var(--jvg-dark); margin: 0 0 10px; }
.jvg-ph-title em { font-style: normal; color: var(--jvg-teal); }
.jvg-ph-sub     { font-size: 15px; color: var(--jvg-muted); max-width: 520px; line-height: 1.7; }
.jvg-ph-grid { display: grid; gap: 14px; }
.jvg-ph-grid--1 { grid-template-columns: 1fr; }
.jvg-ph-grid--2 { grid-template-columns: repeat(2,1fr); }
.jvg-ph-grid--3 { grid-template-columns: repeat(3,1fr); }
.jvg-ph-grid--4 { grid-template-columns: repeat(4,1fr); }
.jvg-ph-card { background: #ffffff; border: 1.5px solid var(--jvg-border); border-radius: 14px; padding: 24px; position: relative; overflow: hidden; transition: border-color .25s, transform .3s var(--jvg-ease), box-shadow .3s; color: inherit; text-decoration: none; display: block; }
.jvg-ph-card--shadow:hover { box-shadow: var(--jvg-sh-lg); }
.jvg-ph-card:hover { border-color: var(--day-color, var(--jvg-teal)); transform: translateY(-5px); }
.jvg-ph-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--day-color, var(--jvg-teal)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--jvg-ease); border-radius: 14px 14px 0 0; }
.jvg-ph-card:hover::before { transform: scaleX(1); }
.jvg-ph-card--large { grid-column: span 2; min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; }
.jvg-ph-card-bg { position: absolute; inset: 0; pointer-events: none; border-radius: inherit; }
.jvg-ph-card-num { position: absolute; bottom: -8px; right: 12px; font-family: var(--jvg-head); font-size: 80px; font-weight: 800; color: rgba(0,0,0,.04); pointer-events: none; user-select: none; line-height: 1; }
.jvg-ph-card-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 99px; border: 1px solid; margin-bottom: 12px; width: fit-content; position: relative; }
.jvg-ph-card-time { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--jvg-muted); margin-bottom: 6px; position: relative; }
.jvg-ph-card-title { font-family: var(--jvg-head); font-size: clamp(16px,2vw,22px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; color: var(--jvg-dark) !important; margin: 0 0 10px; position: relative; }
.jvg-ph-card-title em { font-style: normal; color: var(--em-color, var(--jvg-teal)); }
.jvg-ph-card-desc { font-size: 13px; color: var(--jvg-muted) !important; line-height: 1.65; position: relative; }
.jvg-ph-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; position: relative; }
.jvg-ph-card-tag { font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 6px; background: var(--jvg-bg2); color: var(--jvg-muted); border: 1px solid var(--jvg-border); }
.jvg-ph-card-arrow { position: absolute; top: 20px; right: 20px; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .25s var(--jvg-ease); }
.jvg-ph-card:hover .jvg-ph-card-arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) { .jvg-ph-grid--3,.jvg-ph-grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .jvg-ph-grid--2,.jvg-ph-grid--3,.jvg-ph-grid--4 { grid-template-columns: 1fr; } .jvg-ph-card--large { grid-column: span 1; min-height: auto; } }

/* ══════════════════════════════════════════
   HERO PAGE INTÉRIEURE (jvg-hi)
══════════════════════════════════════════ */
.jvg-hi {
  position: relative; overflow: hidden;
  padding: 80px 24px; text-align: center;
  width: 100%; box-sizing: border-box;
}
.jvg-hi__shapes {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.jvg-hi__shape {
  position: absolute; border-radius: 50%; filter: blur(48px); pointer-events: none;
}
.jvg-hi__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 680px;
  padding: 0 4px;
}

/* Fil d'ariane */
.jvg-hi__breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 18px;
}
.jvg-hi__crumb { font-size: 13px; color: #94a3b8; }
.jvg-hi__crumb-link {
  color: #94a3b8; text-decoration: none;
  transition: color .2s;
}
.jvg-hi__crumb-link:hover { color: #0d9488; }
.jvg-hi__crumb-current {
  color: #0d9488; font-weight: 600;
}
.jvg-hi__crumb-sep { color: #cbd5e1; font-size: 12px; }

/* Badge */
.jvg-hi__badge { margin-bottom: 16px; }
.jvg-hi__badge--dark {
  background: rgba(45,212,191,.1);
  color: #2dd4bf;
  border-color: rgba(45,212,191,.25);
}

/* Titre */
.jvg-hi__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.05;
  color: #0f172a; margin: 0 0 16px;
  word-break: break-word; overflow-wrap: break-word; hyphens: auto;
}
.jvg-hi__title em { font-style: normal; color: #0d9488; }

/* Sous-titre */
.jvg-hi__sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #64748b; line-height: 1.7;
  max-width: 560px; margin: 0 auto;
}

/* Texte clair sur fond sombre */
.jvg-hi[style*="#0f172a"] .jvg-hi__title,
.jvg-hi[style*="0f172a"] .jvg-hi__title { color: #f0f4f2; }
.jvg-hi[style*="#0f172a"] .jvg-hi__sub,
.jvg-hi[style*="0f172a"] .jvg-hi__sub   { color: rgba(255,255,255,.6); }

/* Alignement gauche */
.jvg-hi__inner[style*="text-align:left"] .jvg-hi__breadcrumb { justify-content: flex-start; }
.jvg-hi__inner[style*="text-align:left"] .jvg-hi__sub        { margin: 0; }

/* Mobile */
@media (max-width: 768px) {
  .jvg-hi { padding: 60px 20px; }
  .jvg-hi__title { font-size: clamp(26px, 7.5vw, 40px); }
  .jvg-hi__sub   { font-size: 15px; }
  .jvg-hi__breadcrumb { gap: 6px; }
  .jvg-hi__shape { display: none; }
}
@media (max-width: 480px) {
  .jvg-hi { padding: 48px 16px; }
  .jvg-hi__title { font-size: clamp(24px, 8vw, 32px); }
}

/* ══════════════════════════════════════════
   HERO — Image de fond
══════════════════════════════════════════ */
.jvg-hero--image,
.jvg-hero--image { background: #1e293b !important; }

/* Image plein fond */
.jvg-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform .6s ease;
}

/* Calque coloré par-dessus l'image */
.jvg-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.55);
  z-index: 1;
}

/* Le contenu passe devant */
.jvg-hero--image .jvg-hero-inner,
.jvg-hero--light .jvg-hero-inner { position: relative; z-index: 2; }

/* Textes blancs sur image */
.jvg-hero--light .jvg-hero-title       { color: #ffffff !important; }
.jvg-hero--light .jvg-hero-title em    { color: #2dd4bf !important; }
.jvg-hero--light .jvg-hero-sub         { color: rgba(255,255,255,.75) !important; }
.jvg-hero--light .jvg-hero-eyebrow     { background: rgba(45,212,191,.15); color: #2dd4bf; border-color: rgba(45,212,191,.3); }
.jvg-hero--light .jvg-hero-scroll      { color: rgba(255,255,255,.5); }
.jvg-hero--light .jvg-btn-outline      { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.8); }
.jvg-hero--light .jvg-btn-outline:hover { border-color: #fff; color: #fff; }

/* Scroll indicator sur image */
.jvg-hero--image .jvg-hero-scroll,
.jvg-hero--light .jvg-hero-scroll { z-index: 2; }

/* Léger zoom au survol de la section */
.jvg-hero--image:hover .jvg-hero-bg { transform: scale(1.02); }
