/* ╔═════════════════════════════════════════════════════════════╗
   ║  🚑 SCROLL FIX TOP — Override prioritaire (charge en 1er)    ║
   ║  Désactive tout ce qui pourrait bloquer le scroll            ║
   ╚═════════════════════════════════════════════════════════════╝ */

/* 1. Forcer html/body à toujours scroller verticalement */
html, body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  max-height: none !important;
  position: static !important;
  scroll-snap-type: none !important;
  touch-action: auto !important;
  overscroll-behavior: auto !important;
}

/* 2. Désactiver toute capture de scroll par les pseudo-éléments fullscreen */
body::before, body::after,
html::before, html::after {
  pointer-events: none !important;
  touch-action: none !important;
}

/* 3. Le body::before (grid pattern) NE DOIT PAS être en position:fixed */
body::before {
  position: absolute !important;
  z-index: -1 !important;
}

/* 4. Tous les overlays fixed qui couvrent l'écran : pointer-events none par défaut */

/* 🚨 FIX CRITIQUE : Le mobile-menu reste en position:fixed même hors-écran.
   Sans cela, il capture les clics et bloque le scroll même quand invisible. */
.mobile-menu {
  pointer-events: none !important;
  visibility: hidden !important;
  transition: transform .5s cubic-bezier(0.22, 0.61, 0.36, 1),
              visibility 0s linear .5s !important;
}
.mobile-menu.open {
  pointer-events: auto !important;
  visibility: visible !important;
  transition-delay: 0s !important;
}
/* 4. Tous les overlays fixed qui couvrent l'écran : pointer-events none par défaut */
.page-transition,
.intro,
.intro--cinematic {
  pointer-events: none !important;
}
.page-transition.is-active,
.page-transition.is-leaving {
  pointer-events: auto !important;
}

/* 5. Garantir que rien n'a touch-action: none qui empêche le scroll mobile */
*:not(input):not(textarea):not(select) {
  touch-action: pan-y pinch-zoom;
}

/* 6. Réafficher complètement le scroll natif si jamais désactivé */
* {
  -ms-overflow-style: auto;
}

/* ═════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   ▓▓▓  GM Multiservices — MAGIC PACK — Styles  ▓▓▓
   À charger APRÈS public.css
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   1. ANIMATION TYPOGRAPHIQUE DU HERO (révélation lettre par lettre)
   ════════════════════════════════════════════════════════════ */
.hero__title .magic-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(8deg);
  transition:
    opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.85s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: calc(var(--idx, 0) * 22ms);
  will-change: transform, opacity;
}
.hero__title.is-letters-in .magic-letter {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* Garde les lignes en clip pour l'effet "rideau" */
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hero__title .line__inner {
  display: inline-block;
}

/* Glow pulsant sur les italiques signature (em) */
.hero__title em,
.services__title em,
.about__heading em,
.director__title em,
.cta__title em,
.services-hero__title em,
.contact-hero__title em,
.blog-hero__title em,
.service-hero__title em,
.error-page__title em {
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: '';
  position: absolute;
  inset: -8% -4%;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 60%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
  animation: magicGlow 4s ease-in-out infinite;
}
@keyframes magicGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.08); }
}

/* ════════════════════════════════════════════════════════════
   2. INTRO LOADER CINÉMATIQUE (rideau qui s'ouvre)
   ════════════════════════════════════════════════════════════ */
.intro--cinematic {
  background: var(--text-strong) !important;
}
/* Pseudo-rideaux DÉSACTIVÉS : ils causaient un blocage du scroll
   car public.js utilise .done (et non .is-leaving) pour fermer l'intro.
   L'intro originale de public.css gère déjà le fondu de sortie. */
.intro--cinematic::before,
.intro--cinematic::after {
  display: none !important;
}

.intro__mark,
.intro__text {
  position: relative;
  z-index: 3;
  color: var(--bg);
}
.intro__mark {
  background: var(--accent);
  animation: introMarkPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes introMarkPop {
  0% { transform: scale(0) rotate(-20deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.intro__line {
  position: relative;
  z-index: 3;
  background: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   3. TRANSITIONS DE PAGE (overlay au clic)
   ════════════════════════════════════════════════════════════ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-transition__layer {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--text-strong);
  transform: translateY(-101%);
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
}
.page-transition__layer--1 {
  left: 0;
  transition-delay: 0s;
}
.page-transition__layer--2 {
  right: 0;
  transition-delay: 0.05s;
}

.page-transition__label {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.45s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
}
.page-transition__label span {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--bg);
  letter-spacing: -0.02em;
  text-transform: capitalize;
  white-space: nowrap;
  text-align: center;
}
.page-transition__label span::before {
  content: '— ';
  color: var(--accent);
}

/* État actif : entrée des rideaux */
.page-transition.is-active {
  pointer-events: all;
}
.page-transition.is-active .page-transition__layer {
  transform: translateY(0);
}
.page-transition.is-active .page-transition__label {
  opacity: 1;
  transform: translateY(0);
}

/* État sortie : sortie des rideaux (au pageshow) */
.page-transition.is-leaving .page-transition__layer {
  transform: translateY(0);
  animation: transitionExit 0.7s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
.page-transition.is-leaving .page-transition__layer--1 {
  animation-delay: 0.1s;
}
@keyframes transitionExit {
  to { transform: translateY(101%); }
}

/* ════════════════════════════════════════════════════════════
   4. MARQUEE INTERACTIF (déformation au survol)
   ════════════════════════════════════════════════════════════ */
.marquee__track span {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
  cursor: pointer;
}
.marquee__track span.marquee-hover {
  transform: scale(1.15);
  color: var(--accent);
}
.marquee__track {
  transition: animation-play-state 0.3s;
}

/* ════════════════════════════════════════════════════════════
   5. CURSEUR : LABEL CONTEXTUEL ("Voir", "Cliquer"…)
   ════════════════════════════════════════════════════════════ */
.cursor-ring__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-strong);
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cursor-ring.has-label {
  width: 80px !important;
  height: 80px !important;
  background: var(--bg);
  border-color: var(--text-strong);
  border-width: 1.5px;
}
.cursor-ring.has-label .cursor-ring__label {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ════════════════════════════════════════════════════════════
   6. REVEAL CASCADE — Animations d'apparition affinées
   ════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.12s; }
[data-reveal-delay="2"] { transition-delay: 0.24s; }
[data-reveal-delay="3"] { transition-delay: 0.36s; }
[data-reveal-delay="4"] { transition-delay: 0.48s; }
[data-reveal-delay="5"] { transition-delay: 0.60s; }

/* ════════════════════════════════════════════════════════════
   7. COMPTEURS — Styling pour les nombres animés
   ════════════════════════════════════════════════════════════ */
[data-count] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  min-width: 1.2em;
  text-align: left;
}

/* ════════════════════════════════════════════════════════════
   8. DIRECTOR VISUAL — Préparation au 3D parallax
   ════════════════════════════════════════════════════════════ */
.director__visual {
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-style: preserve-3d;
}

/* ════════════════════════════════════════════════════════════
   9. HERO — Préparation 3D pour parallax titre
   ════════════════════════════════════════════════════════════ */
.hero {
  perspective: 1000px;
}
.hero__title {
  transform-style: preserve-3d;
  transition: transform 0.5s ease-out;
}
.hero__shape {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* ════════════════════════════════════════════════════════════
   10. EFFET LIGHT-SWEEP sur les boutons primaires (magie subtile)
   ════════════════════════════════════════════════════════════ */
.btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 100%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  z-index: 1;
  pointer-events: none;
}
.btn--primary:hover::after {
  animation: btnSweep 0.85s ease-out;
}
@keyframes btnSweep {
  from { left: -150%; }
  to   { left: 150%; }
}

/* ════════════════════════════════════════════════════════════
   11. CARDS — Effet "lift" raffiné au scroll-into-view
   ════════════════════════════════════════════════════════════ */
.service-card,
.service-detail-card,
.article-card,
.channel-card,
.why__item,
.stat {
  transition:
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    box-shadow 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    border-color 0.4s ease;
}

/* ════════════════════════════════════════════════════════════
   12. CTA INNER — Léger flottement permanent (très subtil)
   ════════════════════════════════════════════════════════════ */
.cta__inner {
  animation: ctaFloat 6s ease-in-out infinite;
}
@keyframes ctaFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ════════════════════════════════════════════════════════════
   13. SCROLL PROGRESS — Plus visible et animé
   ════════════════════════════════════════════════════════════ */
.progress-bar {
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--gold) 50%,
    var(--accent) 100%
  );
  background-size: 200% 100%;
  animation: progressGlow 2.5s ease-in-out infinite;
}
@keyframes progressGlow {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 100% 0%; }
}

/* ════════════════════════════════════════════════════════════
   14. SCROLL HINT — Animation rebond
   ════════════════════════════════════════════════════════════ */
.scroll-hint {
  animation: scrollHintBounce 2.5s ease-in-out infinite;
}
@keyframes scrollHintBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(8px); opacity: 1; }
}

/* ════════════════════════════════════════════════════════════
   15. SECTIONS — Léger fade-in du fond au scroll (parallax)
   ════════════════════════════════════════════════════════════ */
.services,
.about,
.director,
.why,
.cta {
  will-change: transform;
}

/* ════════════════════════════════════════════════════════════
   16. SERVICE CARD ICON — Pulse subtil au repos
   ════════════════════════════════════════════════════════════ */
.service-card__icon,
.service-detail-card__icon {
  position: relative;
}
.service-card__icon::before,
.service-detail-card__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--accent);
  opacity: 0;
  transform: scale(1);
  transition: all 0.4s ease;
}
.service-card:hover .service-card__icon::before,
.service-detail-card:hover .service-detail-card__icon::before {
  animation: iconRipple 1.2s ease-out;
}
@keyframes iconRipple {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* ════════════════════════════════════════════════════════════
   17. ARTICLE COVER — Subtle Ken Burns au hover
   ════════════════════════════════════════════════════════════ */
.article-card__cover img {
  transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ════════════════════════════════════════════════════════════
   18. WHATSAPP FLOAT — Pulse animation
   ════════════════════════════════════════════════════════════ */
.whatsapp-float {
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-3px) scale(1.03); }
}

/* ════════════════════════════════════════════════════════════
   19. ACCESSIBILITÉ : respecter prefers-reduced-motion
   ════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title em::after,
  .progress-bar,
  .whatsapp-float,
  .scroll-hint,
  .cta__inner {
    animation: none !important;
  }
}

/* ════════════════════════════════════════════════════════════
   20. MOBILE : ajustements pour les effets magiques
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px), (pointer: coarse) {
  /* Désactiver le parallax 3D sur mobile (trop coûteux) */
  .hero__title {
    transform: none !important;
  }
  .director__visual {
    transform: none !important;
  }
  /* Le curseur custom n'est pas affiché sur tactile, donc no label */
  .cursor-ring__label { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   ▓▓▓  COMPTEURS PREMIUM v2 — Hero (tickets verticaux)  ▓▓▓
   ═══════════════════════════════════════════════════════════════ */
.hero-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.hero-counter {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 22px 18px 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: var(--shadow-sm);
}

.hero-counter::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

.hero-counter::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-counter:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.hero-counter:hover::after { opacity: 1; }
.hero-counter:hover .hero-counter__icon {
  transform: rotate(-8deg) scale(1.1);
  color: var(--accent);
}

[data-revealed] .hero-counter::before,
.is-revealed .hero-counter::before {
  transform: scaleX(1);
}

.hero-counter__icon {
  width: 38px; height: 38px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 50%;
  color: var(--accent);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-counter__icon svg { width: 20px; height: 20px; }

.hero-counter__num {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-strong);
  text-align: center;
  background: linear-gradient(135deg, var(--text-strong) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: block;
  font-variant-numeric: tabular-nums;
}

.hero-counter__num--text {
  background: linear-gradient(135deg, var(--text-strong) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-counter__sep {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  margin: 0 -2px;
  font-style: italic;
  font-weight: 400;
}

.hero-counter__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
  line-height: 1.35;
}

.hero-counter__bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--bg-2);
  overflow: hidden;
}
.hero-counter__bar::after {
  content: '';
  display: block;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  animation: barSweep 3.5s ease-in-out infinite;
  animation-delay: var(--bar-delay, 0s);
}
.hero-counter:nth-child(1) .hero-counter__bar::after { --bar-delay: 0s; }
.hero-counter:nth-child(2) .hero-counter__bar::after { --bar-delay: 0.5s; }
.hero-counter:nth-child(3) .hero-counter__bar::after { --bar-delay: 1s; }

@keyframes barSweep {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* ═══════════════════════════════════════════════════════════════
   ▓▓▓  COMPTEURS PREMIUM v2 — About (cards 3D animées)  ▓▓▓
   ═══════════════════════════════════════════════════════════════ */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; gap: 12px; }
}

.about-stat {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: var(--shadow-xs);
  text-align: center;
}

/* Effet de fond rotatif terracotta au hover */
.about-stat::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--accent-soft) 60deg,
    transparent 120deg,
    var(--gold-soft) 180deg,
    transparent 240deg,
    var(--accent-soft) 300deg,
    transparent 360deg
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: aboutStatRotate 8s linear infinite;
  pointer-events: none;
}

/* Layer blanc par-dessus pour cacher le gradient sauf bordure */
.about-stat::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--card);
  border-radius: 3px;
  z-index: 1;
  pointer-events: none;
}

.about-stat > * {
  position: relative;
  z-index: 2;
}

.about-stat:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.about-stat:hover::before {
  opacity: 1;
}
.about-stat:hover .about-stat__shape {
  background: var(--accent);
  color: var(--bg);
  transform: rotate(-15deg) scale(1.1);
}
.about-stat:hover .about-stat__num {
  transform: scale(1.05);
}
.about-stat:hover .about-stat__dot {
  background: var(--accent);
  transform: scale(1.4);
}

@keyframes aboutStatRotate {
  to { transform: rotate(360deg); }
}

/* Forme icône (cercle décoratif) */
.about-stat__shape {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-stat__shape svg { width: 26px; height: 26px; }

/* Chiffre principal */
.about-stat__num {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-strong);
  margin: 0 0 12px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, var(--text-strong) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.about-stat__num--text span {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  font-style: italic;
  font-size: 0.7em;
  font-weight: 400;
}

/* Label */
.about-stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1.35;
  margin-bottom: 14px;
}

/* Point décoratif animé en bas */
.about-stat__dot {
  width: 6px; height: 6px;
  margin: 0 auto;
  background: var(--gold);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: aboutStatDotPulse 2.5s ease-in-out infinite;
}
.about-stat:nth-child(1) .about-stat__dot { animation-delay: 0s; }
.about-stat:nth-child(2) .about-stat__dot { animation-delay: 0.4s; }
.about-stat:nth-child(3) .about-stat__dot { animation-delay: 0.8s; }
.about-stat:nth-child(4) .about-stat__dot { animation-delay: 1.2s; }

@keyframes aboutStatDotPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.3); box-shadow: 0 0 0 6px var(--accent-soft); }
}

/* ═══════════════════════════════════════════════════════════════
   ▓▓▓  ANIMATIONS BONUS NIVEAU 3  ▓▓▓
   ═══════════════════════════════════════════════════════════════ */

/* ─── Background shimmer subtil sur les sections ─────────── */
.about,
.services,
.director,
.why,
.cta {
  position: relative;
  overflow: hidden;
}

.about::after,
.director::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  animation: sectionShimmer 12s ease-in-out infinite;
}
.director::after { animation-delay: 6s; }

@keyframes sectionShimmer {
  0%, 100% { left: -50%; }
  50% { left: 150%; }
}

/* ─── Lignes décoratives qui se dessinent au scroll ──────── */
.about__heading::before,
.services__title::before,
.director__title::before,
.cta__title::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 14px;
  transition: width 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
.is-revealed .about__heading::before,
.is-revealed .services__title::before,
.is-revealed .director__title::before,
.is-revealed .cta__title::before,
[data-reveal].is-revealed .about__heading::before,
[data-reveal].is-revealed .services__title::before,
[data-reveal].is-revealed .director__title::before,
[data-reveal].is-revealed .cta__title::before {
  width: 40px;
}

/* ─── Service cards : effet flip 3D au survol ────────────── */
.service-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.service-card__icon {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-card__icon {
  transform: rotateY(180deg) scale(1.1);
}

/* ─── Curseur : trail effect (traînée orange) ────────────── */
.cursor-trail {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity 0.4s, transform 0.05s linear;
}
.cursor-trail.is-active { opacity: 0.6; }

/* ─── Footer : ondulation décorative au-dessus ──────────── */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 30px;
  background: var(--bg);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C300,0 900,0 1200,30 L1200,0 L0,0 Z' fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C300,0 900,0 1200,30 L1200,0 L0,0 Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: 2;
  background: linear-gradient(180deg, transparent, var(--bg-3));
}

/* ─── Hero shapes : flottement permanent (très subtil) ──── */
.hero__shape--1 {
  animation: heroShapeFloat1 14s ease-in-out infinite;
}
.hero__shape--2 {
  animation: heroShapeFloat2 18s ease-in-out infinite;
}
.hero__shape--3 {
  animation: heroShapeFloat3 16s ease-in-out infinite;
}
@keyframes heroShapeFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(20px, -30px) scale(1.05); }
  66%      { transform: translate(-15px, 20px) scale(0.95); }
}
@keyframes heroShapeFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-30px, 40px); }
}
@keyframes heroShapeFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50%      { transform: translate(25px, -20px) rotate(15deg); }
}

/* ─── Section CTA : background gradient animé renforcé ───── */
.cta__inner {
  background: linear-gradient(135deg, var(--text-strong) 0%, #1a1a1a 50%, var(--text-strong) 100%);
  background-size: 200% 200%;
  animation: ctaBgShift 8s ease-in-out infinite, ctaFloat 6s ease-in-out infinite;
}
@keyframes ctaBgShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ─── Particules orange flottantes (en arrière-plan du hero) ─── */
.hero {
  position: relative;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; transform: translateY(-30px) scale(1); }
  90%  { opacity: 0.4; transform: translateY(-300px) scale(0.6); }
  100% { opacity: 0; transform: translateY(-360px) scale(0); }
}

/* ─── Hero meta layout fallback ─── */
@media (max-width: 480px) {
  .hero-counters {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-counter { padding: 16px 14px 18px; }
}

/* ═══════════════════════════════════════════════════════════════
   ▓▓▓  COMPACT MODE + RESPONSIVE PRO v3  ▓▓▓
   ═══════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────
   1. COMPACTAGE GLOBAL DES SECTIONS
   ──────────────────────────────────────────────────────────── */
.hero { padding: clamp(110px, 14vw, 150px) 0 clamp(60px, 8vw, 90px); }
section.about,
section.services,
section.director,
section.why,
section.cta {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.marquee { padding: 14px 0; font-size: 0.95rem; }
.marquee__track { gap: 50px; }

/* Container plus large pour respirer */
.container { max-width: 1320px; padding-left: clamp(16px, 4vw, 40px); padding-right: clamp(16px, 4vw, 40px); }

/* ────────────────────────────────────────────────────────────
   2. HERO COMPACT — Texte serré, plus de densité
   ──────────────────────────────────────────────────────────── */
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem) !important;
  line-height: 1.0 !important;
  margin: 16px 0 18px !important;
}
.hero__lead {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem) !important;
  line-height: 1.55 !important;
  max-width: 540px;
  margin-bottom: 24px !important;
}
.hero__cta { gap: 12px !important; }
.hero__cta .btn { padding: 12px 22px !important; font-size: 0.88rem !important; }
.hero__quote { padding: 20px 24px !important; margin-bottom: 18px !important; }
.hero__quote p { font-size: 1rem !important; line-height: 1.5 !important; }

.hero__side { gap: 20px; }

/* Hero grid plus compact */
.hero__inner {
  gap: clamp(30px, 4vw, 60px) !important;
}

/* ────────────────────────────────────────────────────────────
   3. SECTION TITLES — Plus compacts
   ──────────────────────────────────────────────────────────── */
.about__heading,
.services__title,
.director__title,
.why__head h2,
.cta__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem) !important;
  line-height: 1.05 !important;
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}

.about__text p,
.services__intro,
.director__text,
.cta__text {
  font-size: clamp(0.95rem, 1.3vw, 1.08rem) !important;
  line-height: 1.6 !important;
}

.eyebrow { font-size: 0.7rem !important; }

/* ────────────────────────────────────────────────────────────
   4. SERVICES — Grille 4 colonnes au lieu de 3
   ──────────────────────────────────────────────────────────── */
@media (min-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
  }
  .service-card {
    padding: 26px 22px !important;
    min-height: 280px;
  }
  .service-card__title { font-size: 1.2rem !important; }
  .service-card__desc { font-size: 0.88rem !important; line-height: 1.55 !important; }
  .service-card__icon { width: 48px !important; height: 48px !important; }
  .service-card__icon svg { width: 24px !important; height: 24px !important; }
}

/* ────────────────────────────────────────────────────────────
   5. ABOUT — Plus compact, layout amélioré
   ──────────────────────────────────────────────────────────── */
.about__grid { gap: clamp(30px, 5vw, 60px) !important; }
.about__text { gap: 16px; }
.about__text p { margin-bottom: 12px !important; }

/* ────────────────────────────────────────────────────────────
   6. DIRECTOR — Compact
   ──────────────────────────────────────────────────────────── */
.director__grid { gap: clamp(30px, 5vw, 60px) !important; }
.director__visual { aspect-ratio: 1 !important; }
.director__quote { padding: 18px 24px !important; font-size: 1rem !important; margin: 20px 0 !important; }
.director__text { font-size: 0.96rem !important; }

/* ────────────────────────────────────────────────────────────
   7. WHY — Grille plus dense
   ──────────────────────────────────────────────────────────── */
.why__grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}
.why__item { padding: 28px 26px !important; }
.why__item h3 { font-size: 1.15rem !important; }
.why__item p { font-size: 0.92rem !important; line-height: 1.55 !important; }

/* ────────────────────────────────────────────────────────────
   8. CTA — Plus compact
   ──────────────────────────────────────────────────────────── */
.cta__inner { padding: clamp(40px, 6vw, 70px) clamp(28px, 4vw, 60px) !important; }
.cta__title { font-size: clamp(1.8rem, 4vw, 3rem) !important; }

/* ═══════════════════════════════════════════════════════════════
   ▓▓▓  NOUVELLES ANIMATIONS STYLÉES v3  ▓▓▓
   ═══════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────
   9. WORDS ROTATOR — Mot qui change dans le hero
   ──────────────────────────────────────────────────────────── */
.words-rotator {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  overflow: hidden;
  height: 1.05em;
}
.words-rotator__list {
  display: flex;
  flex-direction: column;
  animation: wordsRotate 9s cubic-bezier(0.77, 0, 0.18, 1) infinite;
}
.words-rotator__list span {
  display: block;
  line-height: 1.05em;
  height: 1.05em;
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}
@keyframes wordsRotate {
  0%, 28%   { transform: translateY(0); }
  33%, 61%  { transform: translateY(-1.05em); }
  66%, 94%  { transform: translateY(-2.1em); }
  100%      { transform: translateY(-3.15em); }
}

/* ────────────────────────────────────────────────────────────
   10. BACKGROUND GRID ANIMÉ très subtil
   ──────────────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  animation: gridShift 60s linear infinite;
}
@keyframes gridShift {
  to { background-position: 80px 80px; }
}

/* Empêcher la grille de couvrir le contenu */
.nav, main, header, section, footer { position: relative; z-index: 1; }

/* ────────────────────────────────────────────────────────────
   11. MOUSE-FOLLOW GRADIENT sous le hero
   ──────────────────────────────────────────────────────────── */
.hero {
  --mx: 50%;
  --my: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 400px at var(--mx) var(--my),
    var(--accent-soft) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
  transition: background 0.3s ease;
  opacity: 0;
}
.hero:hover::after { opacity: 1; }

/* ────────────────────────────────────────────────────────────
   12. STAGGER REVEAL services — apparition cascade
   ──────────────────────────────────────────────────────────── */
.services__grid .service-card {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.services__grid.is-visible .service-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.services__grid.is-visible .service-card:nth-child(1) { transition-delay: 0s; }
.services__grid.is-visible .service-card:nth-child(2) { transition-delay: 0.08s; }
.services__grid.is-visible .service-card:nth-child(3) { transition-delay: 0.16s; }
.services__grid.is-visible .service-card:nth-child(4) { transition-delay: 0.24s; }
.services__grid.is-visible .service-card:nth-child(5) { transition-delay: 0.32s; }
.services__grid.is-visible .service-card:nth-child(6) { transition-delay: 0.40s; }
.services__grid.is-visible .service-card:nth-child(7) { transition-delay: 0.48s; }
.services__grid.is-visible .service-card:nth-child(8) { transition-delay: 0.56s; }

/* ────────────────────────────────────────────────────────────
   13. TEXT REVEAL — Titre qui apparaît en s'assemblant
   ──────────────────────────────────────────────────────────── */
.text-shatter {
  display: inline-block;
}
.text-shatter span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) rotateX(-90deg);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center bottom;
}
.text-shatter.is-revealed span {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* ────────────────────────────────────────────────────────────
   14. SERVICE CARD : effet "lift" plus marqué + glow accent
   ──────────────────────────────────────────────────────────── */
.service-card {
  position: relative;
  transition: all 0.45s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px -10px var(--accent-glow), var(--shadow-lg) !important;
}

/* ────────────────────────────────────────────────────────────
   15. NAV : effet glassmorphism amélioré au scroll
   ──────────────────────────────────────────────────────────── */
.nav.is-scrolled {
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
}

/* ────────────────────────────────────────────────────────────
   16. BADGE "Nouveau" / "Best" sur cartes (utilisable)
   ──────────────────────────────────────────────────────────── */
.badge-new {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 3;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* ════════════════════════════════════════════════════════════
   ▓▓▓  RESPONSIVE PRO — 5 BREAKPOINTS PRÉCIS  ▓▓▓
   ════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────
   📱 BREAKPOINT 1 : Mobile petit (≤ 380px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 380px) {
  .hero { padding: 100px 0 50px; }
  .hero__title { font-size: 2rem !important; }
  .hero__lead { font-size: 0.92rem !important; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  .hero-counters { grid-template-columns: 1fr !important; gap: 8px; }
  .hero-counter { padding: 14px 14px 16px !important; }
  .hero-counter__num { font-size: 1.8rem !important; }

  .about-stats { grid-template-columns: 1fr !important; }

  section.about, section.services, section.director,
  section.why, section.cta { padding: 50px 0 !important; }

  .container { padding-left: 14px !important; padding-right: 14px !important; }
}

/* ────────────────────────────────────────────────────────────
   📱 BREAKPOINT 2 : Mobile (381px - 480px)
   ──────────────────────────────────────────────────────────── */
@media (min-width: 381px) and (max-width: 480px) {
  .hero { padding: 110px 0 60px; }
  .hero__title { font-size: 2.2rem !important; }
  .hero-counters { grid-template-columns: 1fr !important; }
  .about-stats { grid-template-columns: 1fr !important; }
  .services__grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .why__grid { grid-template-columns: 1fr !important; gap: 14px !important; }
}

/* ────────────────────────────────────────────────────────────
   📱 BREAKPOINT 3 : Mobile large / Tablette (481px - 640px)
   ──────────────────────────────────────────────────────────── */
@media (min-width: 481px) and (max-width: 640px) {
  .hero { padding: 120px 0 70px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__side { grid-row: 2; }
  .hero-counters { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .hero-counter { padding: 14px 10px 16px !important; }
  .hero-counter__num { font-size: 1.5rem !important; }
  .hero-counter__label { font-size: 0.6rem !important; }
  .hero-counter__icon { width: 30px !important; height: 30px !important; }
  .hero-counter__icon svg { width: 16px !important; height: 16px !important; }

  .about-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .services__grid { grid-template-columns: 1fr !important; }
  .why__grid { grid-template-columns: 1fr !important; }

  .director__grid { grid-template-columns: 1fr; }
  .director__visual { max-width: 320px; margin: 0 auto; }
}

/* ────────────────────────────────────────────────────────────
   📱 BREAKPOINT 4 : Tablette (641px - 900px)
   ──────────────────────────────────────────────────────────── */
@media (min-width: 641px) and (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr !important; gap: 30px !important; }
  .hero__side { grid-row: 2; }
  .hero__quote { max-width: 560px; }

  .hero-counters { grid-template-columns: repeat(3, 1fr); max-width: 560px; }

  .about-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .services__grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why__grid { grid-template-columns: repeat(2, 1fr) !important; }

  .director__grid { grid-template-columns: 1fr !important; }
  .director__visual { max-width: 400px; margin: 0 auto; }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ────────────────────────────────────────────────────────────
   💻 BREAKPOINT 5 : Desktop (901px - 1200px)
   ──────────────────────────────────────────────────────────── */
@media (min-width: 901px) and (max-width: 1200px) {
  .services__grid { grid-template-columns: repeat(3, 1fr) !important; }
  .why__grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ────────────────────────────────────────────────────────────
   🖥️ BREAKPOINT 6 : Large desktop (≥ 1201px)
   ──────────────────────────────────────────────────────────── */
@media (min-width: 1201px) {
  .services__grid { grid-template-columns: repeat(4, 1fr) !important; gap: 16px; }
  .why__grid { grid-template-columns: repeat(3, 1fr) !important; gap: 20px; }
}

/* ────────────────────────────────────────────────────────────
   📱 OPTIMISATIONS MOBILE GLOBALES (tactile)
   ──────────────────────────────────────────────────────────── */
@media (pointer: coarse) {
  /* Zones de clic minimum 44x44 (Apple HIG / WCAG) */
  .btn { min-height: 44px; padding-top: 12px; padding-bottom: 12px; }
  .nav__links a { padding: 8px 12px; min-height: 40px; }
  .mobile-menu a { padding: 16px 20px; min-height: 50px; }
  .service-card__arrow { min-width: 40px; min-height: 40px; }

  /* Désactiver effets coûteux */
  .cursor-dot, .cursor-ring, .cursor-trail { display: none !important; }
  .hero-particles { display: none; }
  body::before { display: none; } /* grille */
  .hero__title { transform: none !important; }
  .director__visual { transform: none !important; }
  .hero::after { display: none; } /* mouse-follow */

  /* Marquee plus fluide */
  .marquee__track { animation-duration: 25s; }

  /* Réduire blur (coûteux) */
  .nav { backdrop-filter: blur(12px) !important; }
}

/* ────────────────────────────────────────────────────────────
   🖼️ IMAGES RESPONSIVE
   ──────────────────────────────────────────────────────────── */
img { max-width: 100%; height: auto; }

/* ────────────────────────────────────────────────────────────
   🎯 ORIENTATION LANDSCAPE PETITE HAUTEUR
   ──────────────────────────────────────────────────────────── */
@media (max-height: 600px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 90px 0 50px; }
  .hero__title { font-size: 2rem !important; }
}

/* ────────────────────────────────────────────────────────────
   🌑 SCROLL FLUIDE PARTOUT
   ──────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overscroll-behavior-y: contain; }

/* ═══════════════════════════════════════════════════════════════
   ▓▓▓  BACK TO TOP — Bouton flèche pour remonter  ▓▓▓
   ═══════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text-strong);
  color: var(--bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(60px) scale(0.85);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(13, 41, 37, 0.20),
              0 2px 6px rgba(13, 41, 37, 0.12);
}

/* Petit anneau orange autour qui pulse */
.back-to-top::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  animation: backTopRing 2.2s ease-out infinite;
}
@keyframes backTopRing {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0;   }
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top.is-visible::before {
  opacity: 1;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(194, 65, 12, 0.30),
              0 4px 10px rgba(194, 65, 12, 0.20);
}

.back-to-top svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.back-to-top:hover svg {
  transform: translateY(-2px);
}

/* Mobile : position et taille ajustées */
@media (max-width: 640px) {
  .back-to-top {
    bottom: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
  }
  .back-to-top svg { width: 18px; height: 18px; }
}

/* ═══════════════════════════════════════════════════════════════
   ▓▓▓  GARANTIES ANTI-BLOCAGE DU SCROLL  ▓▓▓
   ═══════════════════════════════════════════════════════════════ */

/* Forcer le scroll partout — défensif */
html, body {
  overflow-x: hidden;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100%;
}

/* L'overlay de transition ne doit JAMAIS rester actif */
.page-transition:not(.is-active):not(.is-leaving) {
  pointer-events: none !important;
}
/* Même quand actif, on bloque seulement les clics, jamais le scroll du contenu en dessous */
.page-transition {
  touch-action: none;
  overscroll-behavior: contain;
}

/* La grille de fond ne doit jamais empêcher le scroll */
body::before {
  pointer-events: none !important;
  user-select: none;
  touch-action: none;
}

/* Les particles ne doivent jamais bloquer */
.hero-particles {
  pointer-events: none !important;
}

/* Les rideaux d'intro doivent rester non-cliquables — TOUJOURS */
.intro,
.intro--cinematic {
  pointer-events: none !important;
}
.intro::before,
.intro::after,
.intro--cinematic::before,
.intro--cinematic::after {
  pointer-events: none !important;
}

/* Quand public.js ajoute 'done', on fait disparaître complètement les rideaux */
.intro.done,
.intro--cinematic.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.intro.done::before,
.intro.done::after,
.intro--cinematic.done::before,
.intro--cinematic.done::after {
  transform: translateY(-101%) !important;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1) !important;
}

/* Trail cursor ne bloque jamais */
.cursor-trail, .cursor-dot, .cursor-ring {
  pointer-events: none !important;
}

/* Overlay de transition de page : ne doit jamais bloquer au repos */
.page-transition:not(.is-active):not(.is-leaving) {
  pointer-events: none !important;
  visibility: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   ╔═══════════════════════════════════════════════════════════╗
   ║  COMPACT MODE + RESPONSIVE PRO + SKYLEE ANIMATIONS v3.0  ║
   ╚═══════════════════════════════════════════════════════════╝
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   1. COMPACTAGE GLOBAL — Réduction des paddings sections
   ════════════════════════════════════════════════════════════ */
.hero {
  padding: clamp(100px, 14vw, 150px) 0 clamp(40px, 6vw, 60px);
  min-height: auto;
}

.about,
.services,
.director,
.why,
.cta,
section.about,
section.services,
section.director,
section.why,
section.cta {
  padding-top: clamp(50px, 7vw, 90px) !important;
  padding-bottom: clamp(50px, 7vw, 90px) !important;
}

.marquee {
  padding: 16px 0;
}

/* Réduire les marges entre composants */
.about__heading,
.services__title,
.director__title,
.why__head h2,
.cta__title {
  margin: 14px 0 18px;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem) !important;
}

.hero__title {
  font-size: clamp(2.2rem, 6.5vw, 4.5rem) !important;
  line-height: 1.0 !important;
  margin: 16px 0 18px !important;
}

.hero__lead {
  font-size: clamp(0.98rem, 1.4vw, 1.12rem) !important;
  line-height: 1.55 !important;
  margin-bottom: 24px !important;
}

/* ════════════════════════════════════════════════════════════
   2. HERO RESTRUCTURÉ — Compteurs intégrés à côté du quote
   ════════════════════════════════════════════════════════════ */
.hero__inner {
  grid-template-columns: 1.4fr 1fr !important;
  gap: clamp(28px, 4vw, 50px) !important;
  align-items: start !important;
}

.hero__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__quote {
  padding: 22px 24px !important;
  border-radius: 4px !important;
}
.hero__quote p {
  font-size: 0.98rem !important;
  line-height: 1.5 !important;
  margin-bottom: 10px;
}
.hero__quote cite {
  font-size: 0.8rem !important;
}

/* Compteurs hero : grille 3 cols dense */
.hero-counters {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px !important;
  margin-top: 0 !important;
}
.hero-counter {
  padding: 16px 12px 18px !important;
}
.hero-counter__icon {
  width: 32px !important;
  height: 32px !important;
  margin-bottom: 10px !important;
}
.hero-counter__icon svg { width: 16px !important; height: 16px !important; }
.hero-counter__num {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  margin-bottom: 6px !important;
}
.hero-counter__label {
  font-size: 0.62rem !important;
  letter-spacing: 0.1em !important;
}

/* ════════════════════════════════════════════════════════════
   3. CARTES SERVICES — Plus denses, plus stylées
   ════════════════════════════════════════════════════════════ */
.services__grid {
  gap: 12px !important;
}
.service-card {
  padding: 22px 20px !important;
  min-height: 280px !important;
}
.service-card__icon {
  width: 48px !important;
  height: 48px !important;
  margin-bottom: 14px !important;
}
.service-card__icon svg { width: 24px !important; height: 24px !important; }
.service-card__title {
  font-size: 1.2rem !important;
  margin-bottom: 8px !important;
}
.service-card__desc {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card__num {
  font-size: 0.78rem !important;
  margin-bottom: 6px !important;
}

/* ════════════════════════════════════════════════════════════
   4. SECTION DIRECTOR — Compacte
   ════════════════════════════════════════════════════════════ */
.director__grid {
  grid-template-columns: 0.85fr 1.4fr !important;
  gap: clamp(24px, 4vw, 50px) !important;
  align-items: center !important;
}
.director__visual {
  aspect-ratio: 1 !important;
  max-width: 360px !important;
}
.director__avatar {
  font-size: 4.5rem !important;
}
.director__text {
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
  margin-bottom: 14px !important;
}
.director__quote {
  font-size: 1.05rem !important;
  padding: 18px 22px !important;
  margin: 16px 0 !important;
}

/* ════════════════════════════════════════════════════════════
   5. WHY US — Grille compacte
   ════════════════════════════════════════════════════════════ */
.why__grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
}
.why__item {
  padding: 22px 20px !important;
}
.why__item__num {
  font-size: 0.88rem !important;
  margin-bottom: 12px !important;
}
.why__item h3 {
  font-size: 1.05rem !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}
.why__item p {
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
}

/* ════════════════════════════════════════════════════════════
   6. CTA INNER — Plus compact
   ════════════════════════════════════════════════════════════ */
.cta__inner {
  padding: clamp(36px, 6vw, 60px) clamp(28px, 5vw, 56px) !important;
  border-radius: 4px !important;
}
.cta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  margin-bottom: 12px !important;
}
.cta__text {
  font-size: 0.98rem !important;
  margin-bottom: 22px !important;
}

/* ════════════════════════════════════════════════════════════
   7. ABOUT-STATS — Compactées
   ════════════════════════════════════════════════════════════ */
.about-stats {
  margin-top: 28px !important;
  gap: 12px !important;
}
.about-stat {
  padding: 22px 16px !important;
}
.about-stat__shape {
  width: 44px !important;
  height: 44px !important;
  margin-bottom: 12px !important;
}
.about-stat__shape svg { width: 20px !important; height: 20px !important; }
.about-stat__num {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem) !important;
  margin-bottom: 8px !important;
}
.about-stat__label {
  font-size: 0.68rem !important;
  margin-bottom: 10px !important;
}

/* ════════════════════════════════════════════════════════════
   8. ANIMATIONS BONUS — Skylee Level
   ════════════════════════════════════════════════════════════ */

/* ─── Effet "split reveal" sur les titres ───────────────── */
.hero__title .line {
  overflow: hidden;
  position: relative;
}
.hero__title .line__inner {
  display: inline-block;
  transform: translateY(105%);
  animation: lineSlideUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.hero__title .line:nth-child(1) .line__inner { animation-delay: 2.1s; }
.hero__title .line:nth-child(2) .line__inner { animation-delay: 2.25s; }
.hero__title .line:nth-child(3) .line__inner { animation-delay: 2.4s; }
.hero__title .line:nth-child(4) .line__inner { animation-delay: 2.55s; }

@keyframes lineSlideUp {
  to { transform: translateY(0); }
}

/* Override de l'effet split letters (qui devient compatible) */
.hero__title.is-letters-in .line__inner .magic-letter {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* ─── Magnetic boutons renforcés ────────────────────────── */
[data-magnetic] {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-magnetic]::before {
  content: '';
  position: absolute;
  inset: -8px;
  z-index: -1;
  background: var(--accent-glow);
  border-radius: inherit;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.3s ease;
}
[data-magnetic]:hover::before {
  opacity: 0.6;
}

/* ─── Cursor blob (déformation) ─────────────────────────── */
.cursor-ring {
  transition:
    width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s ease,
    border-radius 0.3s ease,
    background 0.3s ease;
}
.cursor-ring.is-link {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: cursorBlobMorph 4s ease-in-out infinite;
}

@keyframes cursorBlobMorph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  33%      { border-radius: 70% 30% 50% 50% / 50% 70% 30% 50%; }
  66%      { border-radius: 50% 50% 30% 70% / 70% 50% 50% 30%; }
}

/* ─── Section divider animé (orange line entre sections) ─ */
section + section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
section + section.is-revealed::before,
section + section [data-reveal].is-revealed:first-child + ::before {
  width: 80px;
}

/* ─── Number ticker effet "slot machine" sur les compteurs ─ */
.hero-counter__num,
.about-stat__num {
  position: relative;
  display: inline-block;
}
.hero-counter__num::after,
.about-stat__num::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
}
.hero-counter.is-revealed .hero-counter__num::after,
.about-stat.is-revealed .about-stat__num::after {
  transform: scaleX(1);
}

/* ─── Image reveal mask (Director avatar) ──────────────── */
.director__visual {
  clip-path: inset(0 0 0 0);
  overflow: hidden;
}
.director__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text-strong);
  z-index: 3;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}
.director__visual.is-revealed::before,
.director__grid.is-revealed .director__visual::before,
[data-reveal].is-revealed.director__visual::before {
  transform: scaleX(0);
}

/* Active automatiquement quand la section est révélée */
.director.is-revealed .director__visual::before {
  transform: scaleX(0);
}

/* ─── Buttons hover : effet 3D push ─────────────────────── */
.btn--primary,
.btn--ghost {
  transform: translateY(0);
}
.btn--primary:active,
.btn--ghost:active {
  transform: translateY(2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ─── Hover lift sur les liens de la nav ────────────────── */
.nav__links a {
  position: relative;
  overflow: hidden;
}
.nav__links a::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: var(--accent);
  transition: top 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.nav__links a span {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.nav__links a:hover span {
  transform: translateY(-105%);
}

/* ─── Scroll snap doux sur les sections (optionnel) ─────── */
/* Désactivé par défaut, peut être activé en décommentant */
/*
html {
  scroll-snap-type: y proximity;
}
section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
*/

/* ─── Marquee : effet 3D au scroll ──────────────────────── */
.marquee {
  perspective: 1000px;
}
.marquee__track {
  transform-style: preserve-3d;
}

/* ─── Hero shapes : rotation lente ──────────────────────── */
.hero__shape--1 {
  animation: heroShape1Spin 25s linear infinite, heroShapeFloat1 14s ease-in-out infinite;
}
@keyframes heroShape1Spin {
  to { transform: rotate(360deg); }
}

/* ─── Hover ripple sur les cartes service ─────────────── */
.service-card,
.service-detail-card {
  position: relative;
}
.service-card::before,
.service-detail-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.8s ease, height 0.8s ease, opacity 0.4s ease;
  pointer-events: none;
  opacity: 0;
}
.service-card:hover::before,
.service-detail-card:hover::before {
  width: 600px;
  height: 600px;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════
   ▓▓▓  RESPONSIVE PRO — 4 BREAKPOINTS FINAUX  ▓▓▓
   ═══════════════════════════════════════════════════════════════ */

/* ═════════════════════════════════════════
   📱 Mobile petit (< 480px)
   ═════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 18px !important; }

  .nav__cta { display: none; }
  .nav__inner { padding: 12px 0 !important; }

  .hero {
    padding: 90px 0 30px !important;
    min-height: auto;
  }
  .hero__inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .hero__title {
    font-size: clamp(1.9rem, 9vw, 2.8rem) !important;
    line-height: 1.05 !important;
  }
  .hero__lead {
    font-size: 0.95rem !important;
  }
  .hero__cta { gap: 10px; flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__quote {
    padding: 18px 20px !important;
  }
  .hero__quote p { font-size: 0.92rem !important; }

  /* Compteurs hero : 1 colonne sur très petit */
  .hero-counters {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }
  .hero-counter {
    padding: 12px 6px 14px !important;
  }
  .hero-counter__icon {
    width: 26px !important;
    height: 26px !important;
    margin-bottom: 6px !important;
  }
  .hero-counter__icon svg { width: 12px !important; height: 12px !important; }
  .hero-counter__num {
    font-size: 1.1rem !important;
    margin-bottom: 4px !important;
  }
  .hero-counter__label {
    font-size: 0.52rem !important;
    letter-spacing: 0.06em !important;
    line-height: 1.2 !important;
  }

  /* About stats : 2 colonnes */
  .about-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .about-stat {
    padding: 18px 12px !important;
  }
  .about-stat__shape {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 10px !important;
  }
  .about-stat__num {
    font-size: 1.5rem !important;
  }
  .about-stat__label {
    font-size: 0.58rem !important;
    letter-spacing: 0.08em !important;
  }

  /* Services : 1 colonne */
  .services__grid,
  .services-list__grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Director : empilé */
  .director__grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .director__visual {
    max-width: 240px !important;
    margin: 0 auto;
  }

  /* Why us : 1 colonne */
  .why__grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* CTA */
  .cta__buttons { flex-direction: column; }
  .cta__buttons .btn { width: 100%; justify-content: center; }

  /* Page contact form */
  .contact-channels__grid {
    grid-template-columns: 1fr !important;
  }

  /* Désactiver les effets coûteux */
  .cursor-dot, .cursor-ring, .cursor-trail { display: none !important; }
  .hero-particles { display: none !important; }
  .hero__title { transform: none !important; }
  .director__visual { transform: none !important; }

  /* Réduire les paddings des sections */
  .about, .services, .director, .why, .cta,
  section.about, section.services, section.director, section.why, section.cta {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .marquee span { font-size: 0.9rem !important; padding: 0 24px !important; }
}

/* ═════════════════════════════════════════
   📱 Mobile (480px - 768px)
   ═════════════════════════════════════════ */
@media (min-width: 481px) and (max-width: 768px) {
  .container { padding: 0 24px !important; }

  .nav__inner { padding: 14px 0 !important; }
  .nav__cta { display: none; }

  .hero {
    padding: 110px 0 50px !important;
  }
  .hero__inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .hero__title {
    font-size: clamp(2.2rem, 7vw, 3.4rem) !important;
  }

  /* Compteurs hero : toujours 3 cols */
  .hero-counters {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .hero-counter {
    padding: 14px 10px 16px !important;
  }
  .hero-counter__num {
    font-size: 1.4rem !important;
  }
  .hero-counter__label {
    font-size: 0.58rem !important;
  }

  /* About stats : 2 cols */
  .about-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Services : 2 cols */
  .services__grid,
  .services-list__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Why : 2 cols */
  .why__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Director : empilé */
  .director__grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .director__visual {
    max-width: 320px !important;
    margin: 0 auto;
  }

  .cursor-dot, .cursor-ring, .cursor-trail { display: none !important; }
  .hero__title { transform: none !important; }
  .director__visual { transform: none !important; }
}

/* ═════════════════════════════════════════
   💻 Tablette (768px - 1024px)
   ═════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.3fr 1fr !important;
    gap: 32px !important;
  }
  .hero-counters {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .services__grid,
  .services-list__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .director__grid {
    grid-template-columns: 0.9fr 1.3fr !important;
  }
}

/* ═════════════════════════════════════════
   🖥️ Desktop (> 1024px)
   ═════════════════════════════════════════ */
@media (min-width: 1025px) {
  .services__grid,
  .services-list__grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 14px !important;
  }
}

/* ═════════════════════════════════════════
   🖥️ Large desktop (> 1440px)
   ═════════════════════════════════════════ */
@media (min-width: 1441px) {
  .container { max-width: 1320px !important; }
}

/* ════════════════════════════════════════════════════════════
   FINITIONS PRO
   ════════════════════════════════════════════════════════════ */

/* Sticky nav avec effet glass amplifié au scroll */
.nav.is-scrolled {
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
  background: rgba(250, 248, 243, 0.85) !important;
}

/* Smooth scroll natif amélioré */
html { scroll-behavior: smooth; }
section { scroll-margin-top: 80px; }

/* Selection orange premium */
::selection {
  background: var(--accent);
  color: #fff;
  text-shadow: none;
}

/* Focus visible accessible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* WhatsApp float plus petit et discret */
.whatsapp-float {
  width: 48px !important;
  height: 48px !important;
  bottom: 20px !important;
  right: 20px !important;
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 44px !important;
    height: 44px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
}


/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  🎯 CURSEUR PREMIUM v3 — Signature visible & classe         ║
   ╚════════════════════════════════════════════════════════════╝
   Override TOTAL des styles cursor existants
   ════════════════════════════════════════════════════════════════ */

@media (hover: hover) and (pointer: fine) {

  /* Désactiver le curseur natif partout */
  body, body * { cursor: none !important; }

  /* RESET du mix-blend-mode qui rendait le curseur invisible */
  .cursor-dot,
  .cursor-ring {
    mix-blend-mode: normal !important;
    z-index: 99999 !important;
    pointer-events: none !important;
  }

  /* ─── DOT central — Point orange visible ────────────────── */
  .cursor-dot {
    width: 8px !important;
    height: 8px !important;
    background: var(--accent) !important;
    border-radius: 50% !important;
    box-shadow:
      0 0 0 2px rgba(194, 65, 12, 0.20),
      0 0 12px rgba(194, 65, 12, 0.55);
    transition:
      width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
      height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
      opacity 0.3s ease,
      background 0.3s ease !important;
  }

  /* ─── RING — Cercle noir fin qui suit avec lag ─────────── */
  .cursor-ring {
    width: 36px !important;
    height: 36px !important;
    border: 1.5px solid var(--text-strong) !important;
    background: transparent !important;
    border-radius: 50% !important;
    transition:
      width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
      height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
      border-color 0.3s ease,
      background 0.3s ease,
      border-width 0.3s ease,
      border-radius 0.4s ease !important;
  }

  /* Petit halo orange pulsant autour du ring (signature) */
  .cursor-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    opacity: 0.35;
    animation: cursorRingPulse 2.2s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes cursorRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.25; }
    50%      { transform: scale(1.25); opacity: 0; }
  }

  /* ─── HOVER : sur les liens et boutons ──────────────────── */
  .cursor-ring.is-hover,
  .cursor-ring.is-link {
    width: 60px !important;
    height: 60px !important;
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    border-width: 1.5px !important;
  }
  .cursor-dot.is-hover {
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
  }

  /* ─── HOVER avec LABEL (sur les cards) ─────────────────── */
  .cursor-ring.has-label {
    width: 90px !important;
    height: 90px !important;
    background: var(--accent) !important;
    border-color: var(--accent) !important;
  }
  .cursor-ring.has-label::before {
    opacity: 0; /* on cache le halo pulsant quand le label est là */
  }

  .cursor-ring__label {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.7) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #fff !important;
    opacity: 0 !important;
    white-space: nowrap !important;
    pointer-events: none !important;
    transition:
      opacity 0.25s ease,
      transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  }
  .cursor-ring.has-label .cursor-ring__label {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  /* Petite flèche après le label (style éditorial) */
  .cursor-ring.has-label .cursor-ring__label::after {
    content: ' →';
    display: inline;
    margin-left: 2px;
    color: rgba(255,255,255,0.85);
  }

  /* ─── ÉTAT PRESSED (clic) ──────────────────────────────── */
  .cursor-ring.is-pressed {
    width: 28px !important;
    height: 28px !important;
    background: var(--accent) !important;
    border-color: var(--accent) !important;
  }
  .cursor-dot.is-pressed {
    width: 4px !important;
    height: 4px !important;
    background: #fff !important;
  }

  /* ─── BLOB MORPHING (quand on survole un lien) ─────────── */
  .cursor-ring.is-link:not(.has-label) {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% !important;
    animation: cursorBlobMorph 4s ease-in-out infinite !important;
  }
  @keyframes cursorBlobMorph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    33%      { border-radius: 70% 30% 50% 50% / 50% 70% 30% 50%; }
    66%      { border-radius: 50% 50% 30% 70% / 70% 50% 50% 30%; }
  }

  /* ─── Curseur sur texte input/textarea (mode édition) ── */
  input:hover ~ .cursor-ring,
  textarea:hover ~ .cursor-ring,
  .cursor-ring.is-text {
    width: 4px !important;
    height: 24px !important;
    border-radius: 1px !important;
    background: var(--text-strong) !important;
    border: none !important;
  }
  input:hover ~ .cursor-dot,
  textarea:hover ~ .cursor-dot {
    opacity: 0 !important;
  }

  /* ─── TRAIL CURSOR — Plus visible et stylé ──────────────── */
  .cursor-trail {
    background: var(--accent) !important;
    box-shadow: 0 0 6px rgba(194, 65, 12, 0.6);
    mix-blend-mode: normal !important;
    z-index: 99998 !important;
  }
}

/* ─── Cacher les curseurs sur tactile/mobile ───────────── */
@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring,
  .cursor-trail {
    display: none !important;
  }
  body, body * {
    cursor: auto !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  📸 PHOTO DG PREMIUM — Style portrait éditorial classe      ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

.director__visual--premium {
  position: relative;
  width: 100%;
  max-width: 420px !important;
  margin: 0 auto;
  aspect-ratio: 3 / 4 !important; /* Portrait classique pour une photo de personne */
  perspective: 1200px;
  z-index: 1;
}

/* Cadre extérieur : bordure or sable épaisse */
.director__frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: linear-gradient(135deg,
    var(--gold) 0%,
    var(--gold-deep) 50%,
    var(--gold) 100%);
  border-radius: 6px;
  box-shadow:
    0 30px 60px -20px rgba(13, 41, 37, 0.35),
    0 18px 30px -10px rgba(194, 65, 12, 0.20),
    0 0 0 1px rgba(212, 165, 116, 0.40);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
              box-shadow 0.5s ease;
  transform-style: preserve-3d;
  /* Respiration permanente très subtile */
  animation: portraitBreathe 6s ease-in-out infinite;
}

@keyframes portraitBreathe {
  0%, 100% { transform: translateY(0) rotateY(0); }
  50%      { transform: translateY(-4px) rotateY(-0.5deg); }
}

/* Cadre intérieur noir (style portrait classique) */
.director__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--text-strong);
  border: 2px solid var(--text-strong);
  border-radius: 3px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 60px rgba(0, 0, 0, 0.4);
}

/* La photo elle-même */
.director__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
              filter 0.5s ease;
}

/* Avatar de fallback (initiales) si pas de photo */
.director__avatar--premium {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(194, 65, 12, 0.20), transparent 70%),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}
.director__avatar--premium span {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(4rem, 9vw, 6rem);
  letter-spacing: -0.04em;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(194, 65, 12, 0.35);
}

/* Voile de révélation au scroll (rétractation) */
.director__reveal-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--text-strong) 0%,
    rgba(26, 26, 26, 0.92) 50%,
    var(--text-strong) 100%);
  z-index: 5;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}
.director__visual--premium.is-revealed .director__reveal-veil {
  transform: translateY(-100%);
}

/* Coins décoratifs orange (style timbre éditorial) */
.director__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 4;
  pointer-events: none;
}
.director__corner--tr {
  top: 12px;
  right: 12px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}
.director__corner--bl {
  bottom: 12px;
  left: 12px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

/* Numéro signature en bas (style édition limitée) */
.director__signature-num {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 4;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(212, 165, 116, 0.30);
}

/* Badge "Directeur Général" flottant en haut */
.director__badge {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 12px 24px -8px rgba(194, 65, 12, 0.45),
    0 4px 8px rgba(194, 65, 12, 0.25);
  transform: rotate(2deg);
  white-space: nowrap;
}
.director__badge svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* Caption sous la photo (nom + titre) — repositionné */
.director__visual--premium .director__caption {
  position: relative;
  margin-top: 22px;
  padding: 16px 20px;
  background: transparent;
  border-left: 2px solid var(--accent);
  text-align: left;
  display: block;
}
.director__visual--premium .director__caption strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--text-strong);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.director__visual--premium .director__caption small {
  display: block;
  color: var(--text-mute);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* HOVER : zoom photo + tilt 3D plus marqué */
.director__visual--premium:hover .director__frame {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 50px 100px -30px rgba(13, 41, 37, 0.50),
    0 25px 50px -15px rgba(194, 65, 12, 0.30),
    0 0 0 1px var(--gold);
}
.director__visual--premium:hover .director__photo {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.05);
}
.director__visual--premium:hover .director__badge {
  transform: rotate(-2deg) scale(1.05);
}
.director__visual--premium:hover .director__corner--tr {
  top: 18px;
  right: 18px;
}
.director__visual--premium:hover .director__corner--bl {
  bottom: 18px;
  left: 18px;
}

/* Petit halo orange qui apparaît derrière au hover */
.director__visual--premium::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse,
    var(--accent-glow) 0%,
    transparent 60%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.director__visual--premium:hover::before {
  opacity: 1;
}

/* ─── Mobile : version compactée mais toujours classe ────── */
@media (max-width: 768px) {
  .director__visual--premium {
    max-width: 280px;
  }
  .director__badge {
    top: -12px;
    right: -8px;
    font-size: 0.62rem;
    padding: 6px 12px;
  }
  .director__signature-num {
    font-size: 0.7rem;
  }
  .director__corner {
    width: 20px;
    height: 20px;
  }
  .director__visual--premium .director__caption {
    margin-top: 16px;
    padding: 12px 16px;
  }
  .director__visual--premium .director__caption strong {
    font-size: 1.1rem;
  }
}

/* Sur très petit écran : badge passe sur le côté pas dehors */
@media (max-width: 480px) {
  .director__badge {
    top: -10px;
    right: 8px;
  }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  📸 PHOTO DG — OVERRIDE PRIORITAIRE (fin de fichier)         ║
   ║  Bat toutes les règles précédentes avec !important           ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* Le cadre extérieur : portrait 3:4, plus grand */
.director__visual--premium {
  max-width: 420px !important;
  aspect-ratio: 3 / 4 !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* La photo elle-même : cadrage focus haut (visage) */
.director__visual--premium .director__photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 30% !important; /* Centre horizontal, vers le haut pour montrer le visage */
  display: block !important;
}

/* Les autres règles director ne doivent PAS affecter le visual--premium */
.director__visual--premium .director__inner {
  aspect-ratio: auto !important;
  width: 100% !important;
  height: 100% !important;
}

/* Section director : grille proportionnée */
.director__grid {
  grid-template-columns: 0.9fr 1.3fr !important;
  align-items: center !important;
  gap: clamp(30px, 5vw, 70px) !important;
}

/* ─── Responsive : tablette et mobile ─────────────────────── */
@media (max-width: 1024px) {
  .director__grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .director__visual--premium {
    max-width: 380px !important;
  }
}

@media (max-width: 640px) {
  .director__visual--premium {
    max-width: 320px !important;
    aspect-ratio: 3 / 4 !important;
  }
}

@media (max-width: 380px) {
  .director__visual--premium {
    max-width: 260px !important;
  }
  .director__badge {
    top: -10px !important;
    right: 6px !important;
    font-size: 0.6rem !important;
    padding: 5px 10px !important;
  }
  .director__corner {
    width: 18px !important;
    height: 18px !important;
  }
  .director__signature-num {
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
  }
}

/* Caption (nom + titre) propre et bien lisible */
.director__visual--premium .director__caption {
  position: relative !important;
  margin-top: 22px !important;
  padding: 14px 18px !important;
  background: var(--card) !important;
  border-left: 3px solid var(--accent) !important;
  border-radius: 0 4px 4px 0 !important;
  box-shadow: var(--shadow-xs) !important;
  text-align: left !important;
}
.director__visual--premium .director__caption strong {
  display: block !important;
  font-family: 'Fraunces', serif !important;
  font-weight: 500 !important;
  font-size: 1.2rem !important;
  color: var(--text-strong) !important;
  letter-spacing: -0.015em !important;
  margin-bottom: 3px !important;
}
.director__visual--premium .director__caption small {
  display: block !important;
  color: var(--text-mute) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

/* Badge "Directeur Général" — plus visible, pas coupé */
.director__badge {
  position: absolute !important;
  top: -14px !important;
  right: 16px !important;
  z-index: 6 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 7px 12px !important;
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 3px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.66rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  box-shadow:
    0 10px 22px -8px rgba(194, 65, 12, 0.45),
    0 3px 6px rgba(194, 65, 12, 0.25) !important;
  transform: rotate(2deg) !important;
  white-space: nowrap !important;
}

/* Coins décoratifs un peu plus discrets pour ne pas masquer la photo */
.director__corner {
  width: 22px !important;
  height: 22px !important;
}
.director__corner--tr {
  top: 14px !important;
  right: 14px !important;
}
.director__corner--bl {
  bottom: 14px !important;
  left: 14px !important;
}

/* Numéro signature un peu plus subtil */
.director__signature-num {
  bottom: 16px !important;
  right: 16px !important;
  font-size: 0.72rem !important;
  padding: 3px 9px !important;
}

/* Désactiver le voile de révélation qui pouvait masquer la photo */
.director__reveal-veil {
  display: none !important;
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  🎨 PAGE SERVICES V2 — Édito Skylee Premium                  ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── HERO V2 ───────────────────────────────────────────────── */
.services-hero-v2 {
  position: relative;
  min-height: 90vh;
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, var(--accent-soft) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, var(--gold-soft) 0%, transparent 60%),
    var(--bg);
}

/* Grands chiffres décoratifs en arrière-plan */
.services-hero-v2__bgdigits {
  position: absolute;
  top: 0; right: -3vw;
  display: flex;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20rem, 50vw, 50rem);
  line-height: 0.8;
  color: var(--text-strong);
  opacity: 0.03;
  letter-spacing: -0.06em;
}
.services-hero-v2__bgdigits span:nth-child(1) {
  animation: heroDigitFloat 8s ease-in-out infinite;
}
.services-hero-v2__bgdigits span:nth-child(2) {
  animation: heroDigitFloat 8s ease-in-out infinite 1s;
  color: var(--accent);
  opacity: 0.04;
}
@keyframes heroDigitFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-15px); }
}

/* Lignes SVG ondulantes */
.services-hero-v2__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}
.svc-line-anim {
  animation: svcLineDraw 4s ease-in-out forwards 0.5s;
}
.svc-line-anim--2 {
  animation-delay: 1.2s;
}
@keyframes svcLineDraw {
  to { stroke-dashoffset: 0; }
}

.services-hero-v2__container {
  position: relative;
  z-index: 2;
}
.services-hero-v2__inner {
  max-width: 900px;
}

/* Meta : eyebrow + count */
.services-hero-v2__meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: var(--shadow-xs);
}
.services-hero-v2__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.services-hero-v2__divider {
  width: 1px;
  height: 14px;
  background: var(--line-strong);
}
.services-hero-v2__count {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-mute);
  font-weight: 500;
}

/* Title */
.services-hero-v2__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 7.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--text-strong);
  margin: 0 0 32px;
}
.services-hero-v2__title .line {
  display: block;
  overflow: hidden;
}
.services-hero-v2__title .line__inner {
  display: inline-block;
  transform: translateY(105%);
  animation: lineUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.services-hero-v2__title .line:nth-child(1) .line__inner { animation-delay: 0.2s; }
.services-hero-v2__title .line:nth-child(2) .line__inner { animation-delay: 0.35s; }
.services-hero-v2__title .line:nth-child(3) .line__inner { animation-delay: 0.5s; }
@keyframes lineUp { to { transform: translateY(0); } }
.services-hero-v2__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.services-hero-v2__title em::after {
  content: '';
  position: absolute;
  inset: -8% -4%;
  background: radial-gradient(ellipse, var(--accent-soft), transparent 70%);
  z-index: -1;
  filter: blur(20px);
  animation: heroEmGlow 3s ease-in-out infinite;
}
@keyframes heroEmGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}

/* Lead */
.services-hero-v2__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 0 40px;
}

/* Mini stats horizontales */
.services-hero-v2__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
}
.svc-stat {
  position: relative;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: hidden;
}
.svc-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.svc-stat:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.svc-stat:hover::before { transform: translateX(100%); }
.svc-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--text-strong) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.svc-stat strong span { color: var(--accent); -webkit-text-fill-color: var(--accent); font-style: italic; }
.svc-stat small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* Scroll hint */
.services-hero-v2__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1.5px solid var(--text-mute);
  border-radius: 14px;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}
.services-hero-v2__scroll:hover {
  border-color: var(--accent);
  transform: translateX(-50%) translateY(-3px);
}
.services-hero-v2__scroll span {
  width: 2px;
  height: 8px;
  background: var(--text-mute);
  border-radius: 1px;
  animation: scrollHintMove 2s ease-in-out infinite;
}
.services-hero-v2__scroll:hover span { background: var(--accent); }
@keyframes scrollHintMove {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: 0.3; }
}

/* ─── PROCESS Section ───────────────────────────────────── */
.services-process {
  padding: clamp(70px, 10vw, 110px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-process__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.services-process__head .eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.services-process__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 18px 0 12px;
}
.services-process__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.services-process__head p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.6;
}

.services-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.services-process__line {
  position: absolute;
  top: 28px;
  left: 12%;
  width: 76%;
  height: 4px;
  z-index: 0;
}
.svc-process-line {
  animation: svcProcessLineDraw 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.4s;
}
@keyframes svcProcessLineDraw {
  to { stroke-dashoffset: 0; }
}

.svc-step {
  position: relative;
  text-align: center;
  padding: 0 12px;
  z-index: 1;
}
.svc-step__num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.svc-step__dot {
  width: 16px;
  height: 16px;
  margin: 0 auto 18px;
  background: var(--bg-2);
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}
.svc-step__dot::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: stepDotPulse 2s ease-in-out infinite;
}
.svc-step:nth-child(2) .svc-step__dot::before { animation-delay: 0.3s; }
.svc-step:nth-child(3) .svc-step__dot::before { animation-delay: 0.6s; }
.svc-step:nth-child(4) .svc-step__dot::before { animation-delay: 0.9s; }
@keyframes stepDotPulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  50%      { transform: scale(1.4); opacity: 0.4; }
}
.svc-step:hover .svc-step__dot {
  background: var(--accent);
  transform: scale(1.2);
}
.svc-step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--text-strong);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.svc-step p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* ─── MARQUEE secondaire ─────────────────────────────────── */
.services-marquee {
  background: var(--text-strong);
  color: var(--bg);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.services-marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: svcMarqueeScroll 30s linear infinite;
  gap: 0;
}
.services-marquee__track span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 0 40px;
  color: rgba(250, 248, 243, 0.9);
  letter-spacing: -0.005em;
}
@keyframes svcMarqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── GRID V2 (cards édito) ──────────────────────────────── */
.services-grid-v2 {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--bg);
}
.services-grid-v2__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.services-grid-v2__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 18px 0 0;
}
.services-grid-v2__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.services-grid-v2__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card V2 — Édito premium */
.svc-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow-xs);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-style: preserve-3d;
}

/* Numéro géant en background */
.svc-card-v2__bgnum {
  position: absolute;
  top: -30px;
  right: -10px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18rem;
  line-height: 1;
  color: var(--text-strong);
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  letter-spacing: -0.05em;
}

/* Top : numéro + flèche */
.svc-card-v2__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.svc-card-v2__num {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.svc-card-v2__num em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--accent);
  font-size: 0.95rem;
  margin-right: 2px;
}
.svc-card-v2__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text-mute);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Icône */
.svc-card-v2__icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-strong);
  margin-bottom: 20px;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.svc-card-v2__icon svg {
  width: 30px;
  height: 30px;
}
.svc-card-v2__halo {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.5s ease;
  z-index: -1;
}

/* Contenu */
.svc-card-v2__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--text-strong);
  margin: 0 0 6px;
  position: relative;
  z-index: 1;
}
.svc-card-v2__subtitle {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.svc-card-v2__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 24px;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Footer */
.svc-card-v2__footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.svc-card-v2__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
  transition: all 0.3s ease;
}
.svc-card-v2__cta svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Progress bar bottom */
.svc-card-v2__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 2;
}

/* ─── Hover Card V2 ─────────────────────────────────────── */
.svc-card-v2:hover {
  border-color: var(--accent);
  box-shadow:
    0 30px 60px -20px rgba(13, 41, 37, 0.18),
    0 15px 30px -10px rgba(194, 65, 12, 0.12);
  transform: translateY(-6px);
}
.svc-card-v2:hover .svc-card-v2__bgnum {
  opacity: 0.08;
  transform: translate(-10px, 5px);
  color: var(--accent);
}
.svc-card-v2:hover .svc-card-v2__arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(-45deg) scale(1.1);
}
.svc-card-v2:hover .svc-card-v2__icon {
  background: var(--text-strong);
  color: var(--bg);
  border-color: var(--text-strong);
  transform: rotate(-4deg) scale(1.05);
}
.svc-card-v2:hover .svc-card-v2__halo {
  opacity: 0.25;
}
.svc-card-v2:hover .svc-card-v2__title {
  color: var(--accent);
}
.svc-card-v2:hover .svc-card-v2__cta {
  color: var(--accent);
}
.svc-card-v2:hover .svc-card-v2__cta svg {
  transform: translateX(6px);
}
.svc-card-v2:hover .svc-card-v2__progress {
  width: 100%;
}

/* ─── CTA V2 ─────────────────────────────────────────────── */
.services-cta-v2 {
  padding: clamp(80px, 11vw, 120px) 0;
  background: var(--bg);
}
.services-cta-v2__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(40px, 6vw, 70px);
  background: var(--text-strong);
  color: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.services-cta-v2__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(194, 65, 12, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(212, 165, 116, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.services-cta-v2__left { position: relative; z-index: 1; }
.services-cta-v2__eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 16px;
}
.services-cta-v2__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--bg);
  margin: 0 0 18px;
}
.services-cta-v2__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.services-cta-v2__text {
  color: rgba(250, 248, 243, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 520px;
}
.services-cta-v2__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.services-cta-v2__buttons .btn--primary {
  background: var(--accent);
}
.services-cta-v2__buttons .btn--ghost {
  border-color: rgba(250, 248, 243, 0.3);
  color: var(--bg);
}
.services-cta-v2__buttons .btn--ghost:hover {
  background: var(--bg);
  color: var(--text-strong);
}

.services-cta-v2__right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.services-cta-v2__sigil {
  width: 200px;
  height: 200px;
  animation: ctaSigilRotate 30s linear infinite;
}
.services-cta-v2__sigil svg { width: 100%; height: 100%; }
@keyframes ctaSigilRotate {
  to { transform: rotate(360deg); }
}

/* ─── RESPONSIVE Services V2 ─────────────────────────────── */
@media (max-width: 900px) {
  .services-hero-v2__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .services-process__line { display: none; }
  .services-grid-v2__list {
    grid-template-columns: 1fr;
  }
  .services-cta-v2__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .services-cta-v2__buttons { justify-content: center; }
  .services-cta-v2__right { display: none; }
}
@media (max-width: 480px) {
  .services-hero-v2__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .svc-stat { padding: 14px 12px; }
  .services-process__steps {
    grid-template-columns: 1fr;
  }
  .svc-card-v2 {
    padding: 28px 24px;
    min-height: auto;
  }
  .svc-card-v2__bgnum { font-size: 12rem; }
  .services-marquee__track span { font-size: 1.1rem; padding: 0 24px; }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  🎨 PAGE SERVICES — Refonte Premium Magazine                 ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── HERO XL ─────────────────────────────────────────────── */
.services-hero--xl {
  position: relative;
  padding: clamp(140px, 18vw, 200px) 0 clamp(80px, 10vw, 120px);
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

/* Chiffre géant en arrière-plan */
.services-hero__bg-num {
  position: absolute;
  bottom: -10%;
  right: -3%;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20rem, 50vw, 42rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(194, 65, 12, 0.10);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: bgNumFloat 16s ease-in-out infinite;
}
@keyframes bgNumFloat {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50%      { transform: translate(-20px, -15px) rotate(-1.5deg); }
}

/* Formes décoratives */
.services-hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}
.services-hero__shape--1 {
  top: 15%;
  left: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.22), transparent 70%);
  animation: heroShape1Float 14s ease-in-out infinite;
}
.services-hero__shape--2 {
  top: 40%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.30), transparent 70%);
  animation: heroShape2Float 18s ease-in-out infinite;
}
@keyframes heroShape1Float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(30px, -40px); }
}
@keyframes heroShape2Float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-40px, 30px); }
}

.services-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

/* Eyebrow décoré avec ligne */
.eyebrow--decorated {
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
}
.eyebrow__line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--accent);
  transform-origin: left;
  animation: eyebrowLineGrow 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s both;
}
@keyframes eyebrowLineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.services-hero__title {
  font-family: 'Fraunces', serif !important;
  font-weight: 400 !important;
  font-size: clamp(2.8rem, 8vw, 5.5rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.035em !important;
  color: var(--text-strong) !important;
  margin: 24px 0 28px !important;
}
.services-hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.services-hero__title em::after {
  content: '';
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(ellipse, rgba(194, 65, 12, 0.15) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  animation: titleGlow 3.5s ease-in-out infinite;
}
@keyframes titleGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}

.services-hero__lead {
  color: var(--text-dim);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  max-width: 660px;
  margin-bottom: 36px;
}

.services-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Scroll indicator */
.services-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.6;
  animation: scrollHintBounce 2.5s ease-in-out infinite;
}
.services-hero__scroll span {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--accent));
}
.services-hero__scroll small {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}

/* ─── MARQUEE DES EXPERTISES ─────────────────────────────── */
.services-marquee {
  background: var(--text-strong);
  color: var(--bg);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.services-marquee::before,
.services-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.services-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--text-strong), transparent);
}
.services-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--text-strong), transparent);
}
.services-marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.services-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  letter-spacing: -0.01em;
}
.services-marquee__item svg {
  color: var(--accent);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.33%); }
}

/* ─── GRILLE EXPERTISES — Layout magazine ─────────────────── */
.services-list {
  padding: clamp(80px, 11vw, 130px) 0 clamp(60px, 9vw, 100px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.services-list__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(50px, 7vw, 80px);
}
.services-list__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 18px 0 16px;
}
.services-list__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.services-list__lead {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Layout magazine : grille auto */
.services-magazine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) {
  .services-magazine { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-magazine { grid-template-columns: 1fr; }
}

/* ─── Carte expertise ─────────────────────────────────────── */
.expertise-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  isolation: isolate;
  min-height: 340px;
  box-shadow: var(--shadow-xs);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Numéro géant en arrière-plan */
.expertise-card__bg-num {
  position: absolute;
  bottom: -25px;
  right: -10px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 11rem;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(26, 26, 26, 0.06);
  letter-spacing: -0.04em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Background effect au hover */
.expertise-card__bg-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    transparent 0%,
    var(--accent-soft) 60%,
    rgba(212, 165, 116, 0.20) 100%);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Tag numéroté */
.expertise-card__tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.expertise-card__tag-num {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
}
.expertise-card__tag-sep {
  color: var(--text-faint);
  margin: 0 2px;
}

/* Icône */
.expertise-card__icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-strong);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 4px;
}
.expertise-card__icon svg {
  width: 26px;
  height: 26px;
}

/* Body : titre + desc */
.expertise-card__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.expertise-card__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 0;
}
.expertise-card__subtitle {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin: 0;
}
.expertise-card__desc {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 4px 0 0;
  /* Limite 3 lignes */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer avec CTA */
.expertise-card__footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.expertise-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.expertise-card__cta svg {
  transition: transform 0.4s ease;
}

/* HOVER */
.expertise-card:hover {
  border-color: var(--text-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.expertise-card:hover .expertise-card__bg-effect { opacity: 1; }
.expertise-card:hover .expertise-card__bg-num {
  bottom: -15px;
  right: -5px;
  -webkit-text-stroke: 1.5px rgba(194, 65, 12, 0.18);
  transform: rotate(-3deg);
}
.expertise-card:hover .expertise-card__icon {
  background: var(--text-strong);
  border-color: var(--text-strong);
  color: var(--bg);
  transform: rotate(-6deg) scale(1.05);
}
.expertise-card:hover .expertise-card__title { color: var(--accent); }
.expertise-card:hover .expertise-card__cta { gap: 14px; color: var(--accent); }
.expertise-card:hover .expertise-card__cta svg { transform: translateX(6px); }
.expertise-card:hover .expertise-card__footer { border-color: rgba(194, 65, 12, 0.20); }

/* Carte FEATURED (la 1ère, sur 2 colonnes en desktop) */
.expertise-card--featured {
  grid-column: span 2;
  min-height: 380px;
  background: linear-gradient(135deg, var(--text-strong) 0%, #1a1a1a 100%);
  color: var(--bg);
  border-color: var(--text-strong);
}
@media (max-width: 1024px) {
  .expertise-card--featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .expertise-card--featured { grid-column: span 1; min-height: 320px; }
}

.expertise-card--featured .expertise-card__bg-num {
  font-size: 16rem;
  bottom: -45px;
  right: -20px;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.07);
}
.expertise-card--featured .expertise-card__tag {
  color: rgba(250, 248, 243, 0.55);
}
.expertise-card--featured .expertise-card__tag-num {
  color: var(--gold);
}
.expertise-card--featured .expertise-card__icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--gold);
  width: 64px;
  height: 64px;
}
.expertise-card--featured .expertise-card__icon svg {
  width: 32px;
  height: 32px;
}
.expertise-card--featured .expertise-card__title {
  color: #fff;
  font-size: 1.85rem;
}
.expertise-card--featured .expertise-card__subtitle {
  color: var(--gold);
}
.expertise-card--featured .expertise-card__desc {
  color: rgba(250, 248, 243, 0.75);
  font-size: 1rem;
  -webkit-line-clamp: 4;
}
.expertise-card--featured .expertise-card__footer {
  border-color: rgba(255, 255, 255, 0.10);
}
.expertise-card--featured .expertise-card__cta {
  color: var(--gold);
}
.expertise-card--featured:hover {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  transform: translateY(-10px);
}
.expertise-card--featured:hover .expertise-card__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.expertise-card--featured:hover .expertise-card__title {
  color: var(--gold);
}

/* Carte CTA (la dernière "besoin spécifique ?") */
.expertise-card--cta {
  background: var(--bg-2);
  border: 2px dashed var(--line-strong);
  align-items: center;
  text-align: center;
  justify-content: center;
}
.expertise-card--cta .expertise-card__icon--cta {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 4px;
}
.expertise-card--cta .expertise-card__icon--cta svg {
  width: 32px;
  height: 32px;
}
.expertise-card--cta:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  border-style: solid;
}
.expertise-card--cta:hover .expertise-card__icon--cta {
  transform: rotate(90deg) scale(1.1);
}
.expertise-card--cta .expertise-card__footer {
  border: none;
  padding-top: 0;
}

/* ─── QUOTE DG ───────────────────────────────────────────── */
.services-quote {
  padding: clamp(80px, 12vw, 130px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.services-quote::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.services-quote__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.services-quote__mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(8rem, 16vw, 14rem);
  line-height: 0.85;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: -40px;
  user-select: none;
}

.services-quote__text {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 0 0 28px;
}
.services-quote__text em {
  color: var(--accent);
  font-style: italic;
}
.services-quote__text strong {
  font-weight: 500;
  font-style: normal;
  color: var(--text-strong);
  position: relative;
  display: inline-block;
}
.services-quote__text strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.services-quote__inner.is-revealed .services-quote__text strong::after,
[data-reveal].is-revealed .services-quote__text strong::after {
  transform: scaleX(1);
}

.services-quote__author {
  display: inline-block;
  text-align: left;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
}
.services-quote__author strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.services-quote__author small {
  display: block;
  color: var(--text-mute);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

/* ─── PROCESS — Timeline ──────────────────────────────────── */
.services-process {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--bg-2);
  position: relative;
}

.services-process__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(50px, 7vw, 80px);
}
.services-process__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 18px 0 16px;
}
.services-process__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.services-process__lead {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.65;
}

.services-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
@media (max-width: 1024px) {
  .services-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-process__steps { grid-template-columns: 1fr; }
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-right: -1px; /* fusionne les bordures */
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
}
.process-step:hover {
  z-index: 2;
  border-color: var(--accent);
  background: var(--card);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-step__num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.process-step:hover .process-step__num {
  transform: scale(1.1) rotate(-3deg);
}

.process-step__body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin: 0 0 8px;
}
.process-step__body p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* Ligne de connexion entre les étapes */
.process-step__line {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 20px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), transparent);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .process-step__line { display: none; }
}

/* ─── RESPONSIVE FINAL ────────────────────────────────────── */
@media (max-width: 640px) {
  .services-hero--xl {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
  }
  .services-hero__bg-num { font-size: 18rem; bottom: -5%; right: -5%; }
  .services-hero__cta { flex-direction: column; }
  .services-hero__cta .btn { width: 100%; justify-content: center; }
  .services-hero__scroll { display: none; }

  .services-marquee { padding: 14px 0; }
  .services-marquee__item { font-size: 1.05rem; gap: 8px; }

  .expertise-card { padding: 22px 20px; min-height: 280px; }
  .expertise-card__bg-num { font-size: 8rem; bottom: -15px; right: -5px; }
  .expertise-card--featured .expertise-card__bg-num { font-size: 12rem; }
  .expertise-card--featured .expertise-card__title { font-size: 1.5rem; }
  .expertise-card__title { font-size: 1.25rem; }

  .services-quote__text { font-size: 1.2rem; }
  .services-quote__mark { font-size: 6rem; margin-bottom: -20px; }

  .process-step { padding: 20px 18px; }
  .process-step__num { font-size: 2.3rem; }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  📞 PAGE CONTACT — Refonte Premium Magazine                  ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── HERO CONTACT ────────────────────────────────────────── */
.contact-hero--xl {
  position: relative;
  padding: clamp(140px, 18vw, 200px) 0 clamp(70px, 9vw, 110px);
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

/* Chiffre géant 24H en arrière-plan */
.contact-hero__bg-num {
  position: absolute;
  bottom: -8%;
  right: -2%;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18rem, 45vw, 40rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(194, 65, 12, 0.10);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: bgNumFloat 16s ease-in-out infinite;
  white-space: nowrap;
}
.contact-hero__bg-num span {
  -webkit-text-stroke: 1.5px rgba(212, 165, 116, 0.18);
  font-size: 0.7em;
}

/* Formes décoratives */
.contact-hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}
.contact-hero__shape--1 {
  top: 12%;
  left: -10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.22), transparent 70%);
  animation: heroShape1Float 14s ease-in-out infinite;
}
.contact-hero__shape--2 {
  top: 35%;
  right: 8%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(17, 94, 89, 0.18), transparent 70%);
  animation: heroShape2Float 18s ease-in-out infinite;
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.contact-hero__title {
  font-family: 'Fraunces', serif !important;
  font-weight: 400 !important;
  font-size: clamp(2.8rem, 8vw, 5.5rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.035em !important;
  color: var(--text-strong) !important;
  margin: 24px 0 28px !important;
}
.contact-hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.contact-hero__title em::after {
  content: '';
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(ellipse, rgba(194, 65, 12, 0.15) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  animation: titleGlow 3.5s ease-in-out infinite;
}

.contact-hero__lead {
  color: var(--text-dim);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  max-width: 660px;
  margin-bottom: 36px;
}

/* Stats hero */
.contact-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  max-width: 580px;
}
@media (max-width: 480px) {
  .contact-hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
.contact-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-stat strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--text-strong);
  line-height: 1;
  background: linear-gradient(135deg, var(--text-strong) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-stat small {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1.35;
}

/* Scroll indicator */
.contact-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.6;
  animation: scrollHintBounce 2.5s ease-in-out infinite;
}
.contact-hero__scroll span {
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, var(--accent));
}
.contact-hero__scroll small {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}

/* ─── MAIN : Formulaire + Sidebar ─────────────────────────── */
.contact-main {
  padding: clamp(70px, 10vw, 110px) 0 clamp(60px, 9vw, 100px);
  background: var(--bg);
  position: relative;
}

/* Flash messages */
.contact-flash {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 6px;
  margin-bottom: 36px;
  border-left: 4px solid;
  background: var(--card);
}
.contact-flash--success {
  border-color: #10b981;
  background: #ecfdf5;
}
.contact-flash--success .contact-flash__icon {
  background: #10b981;
}
.contact-flash--error {
  border-color: #b91c1c;
  background: #fef2f2;
}
.contact-flash--error .contact-flash__icon {
  background: #b91c1c;
}
.contact-flash__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
}
.contact-flash strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--text-strong);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.contact-flash p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin: 0;
}

/* Grille principale */
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ─── FORMULAIRE ────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  background-size: 200% 100%;
  animation: progressGlow 4s ease-in-out infinite;
}

.contact-form__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-form__num {
  flex-shrink: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.contact-form__head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0 0 6px;
}
.contact-form__head h2 em {
  color: var(--accent);
  font-style: italic;
}
.contact-form__head p {
  color: var(--text-mute);
  font-size: 0.92rem;
  margin: 0;
}

/* Sections du formulaire */
.form-section {
  margin-bottom: 32px;
}
.form-section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.form-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row--2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .form-row--2 { grid-template-columns: 1fr; }
}

/* Champs */
.contact-form-premium .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-premium .field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: 0.02em;
}
.contact-form-premium .field label span {
  color: var(--accent);
  margin-left: 2px;
}
.contact-form-premium .field label small {
  color: var(--text-mute);
  font-weight: 400;
  font-style: italic;
  margin-left: 4px;
}

.contact-form-premium input[type="text"],
.contact-form-premium input[type="email"],
.contact-form-premium input[type="tel"],
.contact-form-premium select,
.contact-form-premium textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-strong);
  transition: all 0.3s ease;
  font-weight: 500;
}
.contact-form-premium textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
  line-height: 1.5;
}
.contact-form-premium select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c2410c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form-premium input:focus,
.contact-form-premium select:focus,
.contact-form-premium textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--card);
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.10);
}
.contact-form-premium input::placeholder,
.contact-form-premium textarea::placeholder {
  color: var(--text-faint);
  font-weight: 400;
}

/* Erreurs */
.field--error input,
.field--error select,
.field--error textarea {
  border-color: #b91c1c !important;
  background: #fef2f2 !important;
}
.field__error {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 2px;
}
.field__error::before {
  content: '⚠';
  font-size: 0.9rem;
}
.field__hint {
  color: var(--text-mute);
  font-size: 0.78rem;
  text-align: right;
  margin-top: 2px;
}

/* Bouton submit XL */
.form-submit {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.btn--xl {
  padding: 18px 36px !important;
  font-size: 1rem !important;
  letter-spacing: 0.06em !important;
  font-weight: 600 !important;
  min-width: 280px;
  justify-content: center;
}
@media (max-width: 480px) {
  .btn--xl { width: 100%; min-width: 0; }
}
.form-submit__hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-mute);
  font-size: 0.82rem;
}

/* ─── SIDEBAR : Canaux de contact ───────────────────────────── */
.contact-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 960px) {
  .contact-aside { position: static; }
}

.contact-aside__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 6px;
}
.contact-aside__num {
  flex-shrink: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.contact-aside__head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 0;
}

/* Canaux (boutons WhatsApp, Phone, Email) */
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: var(--shadow-xs);
}
.channel:hover {
  transform: translateY(-3px);
  border-color: var(--text-strong);
  box-shadow: var(--shadow-md);
}

.channel__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border-radius: 50%;
  color: var(--text-strong);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.channel__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}
.channel__body strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--text-strong);
}
.channel__body small {
  font-size: 0.84rem;
  color: var(--text-dim);
}
.channel__arrow {
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--text-mute);
  transition: all 0.3s ease;
}
.channel:hover .channel__arrow {
  right: -10px;
  color: var(--accent);
}

/* WhatsApp en vedette */
.channel--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
  border-color: transparent;
  color: #fff;
  padding: 22px 24px;
}
.channel--whatsapp .channel__icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  width: 56px;
  height: 56px;
}
.channel--whatsapp .channel__body strong {
  color: #fff;
  font-size: 1.25rem;
}
.channel--whatsapp .channel__body small {
  color: rgba(255, 255, 255, 0.85);
}
.channel--whatsapp .channel__arrow {
  color: rgba(255, 255, 255, 0.7);
}
.channel--whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 32px -8px rgba(37, 211, 102, 0.45);
}
.channel--whatsapp:hover .channel__icon {
  transform: rotate(-8deg) scale(1.05);
  background: rgba(255, 255, 255, 0.28);
}

/* Variantes phone & email */
.channel--phone:hover .channel__icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.channel--email:hover .channel__icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.channel--phone:hover,
.channel--email:hover {
  border-color: var(--accent);
}

/* Info (horaires, adresse — non-cliquables) */
.channel-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.channel-info__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
}
.channel-info__body strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.channel-info__body small {
  color: var(--text-dim);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* ─── POURQUOI NOUS CONTACTER ───────────────────────────────── */
.contact-why {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.contact-why__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(50px, 7vw, 70px);
}
.contact-why__head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 18px 0 0;
}
.contact-why__head h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.contact-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) {
  .contact-why__grid { grid-template-columns: 1fr; }
}

.contact-why-card {
  position: relative;
  padding: 36px 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.contact-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.contact-why-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.contact-why-card:hover::before {
  transform: scaleX(1);
}
.contact-why-card:hover .contact-why-card__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.contact-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  margin: 0 auto 22px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-why-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 0 0 10px;
}

.contact-why-card p {
  color: var(--text-dim);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── FAQ rapide ────────────────────────────────────────────── */
.contact-faq {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--bg);
}

.contact-faq__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 60px);
}
.contact-faq__head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 18px 0 0;
}
.contact-faq__head h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.contact-faq__list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-faq__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-xs);
  transition: all 0.3s ease;
  overflow: hidden;
}
.contact-faq__item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.contact-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  transition: color 0.25s;
}
.contact-faq__item summary::-webkit-details-marker { display: none; }
.contact-faq__item summary:hover { color: var(--accent); }
.contact-faq__item summary svg {
  flex-shrink: 0;
  color: var(--text-mute);
  transition: all 0.4s ease;
}
.contact-faq__item[open] summary svg {
  transform: rotate(180deg);
  color: var(--accent);
}
.contact-faq__item p {
  padding: 0 26px 22px;
  margin: 0;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ─── VISITE — Plutôt en personne ───────────────────────────── */
.contact-visit {
  padding: clamp(70px, 10vw, 110px) 0;
  background: linear-gradient(135deg, var(--text-strong) 0%, #1a1a1a 100%);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.contact-visit::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.contact-visit__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
  z-index: 1;
}
@media (max-width: 800px) {
  .contact-visit__inner { grid-template-columns: 1fr; gap: 40px; }
}

.contact-visit__text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 14px 0 18px;
}
.contact-visit__text h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.contact-visit__text p {
  color: rgba(250, 248, 243, 0.75);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 28px;
}
.eyebrow--light {
  color: var(--gold) !important;
}

.contact-visit__actions .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
}
.contact-visit__actions .btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-strong);
}

/* Map mock (design abstrait) */
.contact-visit__map {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin-left: auto;
}
@media (max-width: 800px) {
  .contact-visit__map {
    margin: 0 auto;
    max-width: 320px;
  }
}

.map-mock {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(212, 165, 116, 0.20);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

/* Grille de fond style map */
.map-mock__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 165, 116, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 165, 116, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: mapGridShift 30s linear infinite;
}
@keyframes mapGridShift {
  to { transform: translate(40px, 40px); }
}

/* Pin orange au centre */
.map-mock__pin {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent);
  filter: drop-shadow(0 8px 16px rgba(194, 65, 12, 0.6));
  animation: pinBounce 2.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -65%) scale(1.08); }
}

/* Cercles décoratifs autour du pin */
.map-mock__pin::before,
.map-mock__pin::after {
  content: '';
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: pinRipple 2.5s ease-out infinite;
}
.map-mock__pin::after {
  animation-delay: 1.25s;
}
@keyframes pinRipple {
  0%   { width: 10px; height: 10px; opacity: 0.8; }
  100% { width: 80px; height: 80px; opacity: 0; }
}

/* Adresse en bas */
.map-mock__address {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  padding: 12px 16px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 165, 116, 0.20);
  border-radius: 4px;
  z-index: 2;
}
.map-mock__address strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.map-mock__address small {
  display: block;
  color: rgba(212, 165, 116, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ─── RESPONSIVE FINAL ──────────────────────────────────────── */
@media (max-width: 640px) {
  .contact-hero--xl {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
  }
  .contact-hero__bg-num { font-size: 18rem; bottom: -5%; right: -5%; }
  .contact-hero__scroll { display: none; }

  .contact-form__head { flex-direction: column; gap: 10px; }
  .contact-form__num { font-size: 2rem; }

  .channel { padding: 16px 18px; gap: 14px; }
  .channel--whatsapp { padding: 18px 20px; }
  .channel__icon { width: 42px; height: 42px; }
  .channel--whatsapp .channel__icon { width: 48px; height: 48px; }

  .contact-why-card { padding: 28px 24px; }

  .contact-faq__item summary { padding: 16px 20px; font-size: 1rem; }
  .contact-faq__item p { padding: 0 20px 18px; font-size: 0.92rem; }

  .map-mock__address { padding: 10px 14px; }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  🗺️ CARTE LEAFLET — Style premium intégré                    ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* Conteneur carte */
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin-left: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 165, 116, 0.20);
  isolation: isolate;
}
@media (max-width: 800px) {
  .map-frame { margin: 0 auto; max-width: 100%; aspect-ratio: 4 / 3; }
}

.map-leaflet {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  filter: hue-rotate(-15deg) saturate(0.85) brightness(0.95);
  cursor: grab;
}
.map-leaflet:active { cursor: grabbing; }

/* Badge "GM Multiservices" en bas de la carte (style glass) */
.map-frame__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(10, 10, 10, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: 6px;
  z-index: 500;
  pointer-events: none; /* laisser le scroll passer à travers */
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.map-frame__pin {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(194, 65, 12, 0.5);
  animation: badgePinPulse 2.5s ease-in-out infinite;
}
@keyframes badgePinPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(194, 65, 12, 0.5); }
  50%      { transform: scale(1.08); box-shadow: 0 6px 18px rgba(194, 65, 12, 0.7); }
}

.map-frame__badge strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.map-frame__badge small {
  display: block;
  color: rgba(212, 165, 116, 0.90);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ─── Marker custom orange ──────────────────────────────── */
.gm-custom-marker {
  position: relative !important;
  background: none !important;
  border: none !important;
}
.gm-marker-pin {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 56px;
  color: var(--accent);
  filter: drop-shadow(0 6px 12px rgba(194, 65, 12, 0.55));
  z-index: 2;
  animation: markerBounce 2s ease-in-out infinite;
}
.gm-marker-pin svg {
  width: 100%;
  height: 100%;
}
@keyframes markerBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* Cercles concentriques qui pulsent autour du marker */
.gm-marker-pulse {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  border-radius: 50%;
  background: rgba(194, 65, 12, 0.35);
  z-index: 1;
}
.gm-marker-pulse::before,
.gm-marker-pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: markerRipple 2.2s ease-out infinite;
}
.gm-marker-pulse::after {
  animation-delay: 1.1s;
}
@keyframes markerRipple {
  0%   { width: 14px; height: 7px; opacity: 0.8; }
  100% { width: 60px; height: 30px; opacity: 0; }
}

/* ─── Popup Leaflet stylé ──────────────────────────────────── */
.leaflet-popup-content-wrapper {
  background: #fff !important;
  border-radius: 6px !important;
  padding: 0 !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06) !important;
  border-left: 3px solid var(--accent) !important;
}
.leaflet-popup-content {
  margin: 0 !important;
  padding: 14px 18px !important;
  min-width: 180px;
}
.leaflet-popup-tip {
  background: #fff !important;
}
.gm-popup strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-strong);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.gm-popup small {
  display: block;
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.gm-popup-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}
.gm-popup-link:hover {
  gap: 8px;
}

/* ─── Contrôles Leaflet (boutons +/-) restylés ────────────── */
.leaflet-control-zoom {
  border: none !important;
  border-radius: 6px !important;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
  margin: 16px !important;
}
.leaflet-control-zoom a {
  background: rgba(10, 10, 10, 0.85) !important;
  color: #fff !important;
  border: none !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: background 0.2s !important;
}
.leaflet-control-zoom a:hover {
  background: var(--accent) !important;
  color: #fff !important;
}
.leaflet-control-zoom-in {
  border-radius: 6px 6px 0 0 !important;
}
.leaflet-control-zoom-out {
  border-radius: 0 0 6px 6px !important;
  border-bottom: none !important;
}

/* Adresse détaillée dans la colonne texte */
.contact-visit__address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(212, 165, 116, 0.10);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  margin-bottom: 24px;
}
.contact-visit__address svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.contact-visit__address strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.contact-visit__address small {
  display: block;
  color: rgba(250, 248, 243, 0.80);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Bouton ghost adapté au fond sombre */
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--gold);
  color: var(--gold);
}

.contact-visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── Mobile : carte plus petite ───────────────────────────── */
@media (max-width: 640px) {
  .map-frame {
    aspect-ratio: 4 / 3;
  }
  .map-frame__badge {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px 12px;
    gap: 10px;
  }
  .map-frame__pin { width: 28px; height: 28px; }
  .map-frame__badge strong { font-size: 0.88rem; }
  .map-frame__badge small { font-size: 0.7rem; }

  .gm-marker-pin { width: 36px; height: 46px; }
  .leaflet-control-zoom a { width: 32px !important; height: 32px !important; line-height: 32px !important; }

  .contact-visit__actions { flex-direction: column; }
  .contact-visit__actions .btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  📰 PAGE BLOG — Refonte Premium Magazine Dynamique           ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── HERO BLOG XL ────────────────────────────────────────── */
.blog-hero--xl {
  position: relative;
  padding: clamp(140px, 18vw, 200px) 0 clamp(40px, 6vw, 70px);
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

/* Chiffre géant en arrière-plan */
.blog-hero__bg-num {
  position: absolute;
  bottom: -8%;
  right: -3%;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20rem, 50vw, 42rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(194, 65, 12, 0.10);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: bgNumFloat 16s ease-in-out infinite;
}

/* Formes décoratives */
.blog-hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}
.blog-hero__shape--1 {
  top: 15%;
  left: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.20), transparent 70%);
  animation: heroShape1Float 14s ease-in-out infinite;
}
.blog-hero__shape--2 {
  top: 40%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.28), transparent 70%);
  animation: heroShape2Float 18s ease-in-out infinite;
}

.blog-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.blog-hero__title {
  font-family: 'Fraunces', serif !important;
  font-weight: 400 !important;
  font-size: clamp(2.8rem, 8vw, 5.5rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.035em !important;
  color: var(--text-strong) !important;
  margin: 24px 0 26px !important;
}
.blog-hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.blog-hero__title em::after {
  content: '';
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(ellipse, rgba(194, 65, 12, 0.15) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  animation: titleGlow 3.5s ease-in-out infinite;
}

.blog-hero__lead {
  color: var(--text-dim);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  max-width: 660px;
  margin: 0 0 32px;
}
.blog-hero__lead strong {
  color: var(--text-strong);
  font-weight: 600;
}

/* Search bar premium */
.blog-search-premium {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: 6px;
  padding: 6px 6px 6px 20px;
  max-width: 620px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.blog-search-premium:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(194, 65, 12, 0.10), var(--shadow-md);
}
.blog-search-premium > svg {
  color: var(--text-mute);
  flex-shrink: 0;
  transition: color 0.3s;
}
.blog-search-premium:focus-within > svg { color: var(--accent); }
.blog-search-premium input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 0;
  color: var(--text-strong);
  outline: none;
  font-weight: 500;
}
.blog-search-premium input::placeholder { color: var(--text-faint); }
.blog-search-premium button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--text-strong);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.blog-search-premium button:hover {
  background: var(--accent);
  gap: 12px;
}
.blog-search-premium button svg { transition: transform 0.3s ease; }
.blog-search-premium button:hover svg { transform: translateX(2px); }
.blog-search-premium__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--bg-2);
  color: var(--text-mute);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: all 0.2s;
}
.blog-search-premium__clear:hover { background: var(--text-strong); color: var(--bg); }

/* Stats hero blog */
.blog-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(24px, 4vw, 50px);
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: 620px;
}
@media (max-width: 480px) {
  .blog-hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
.blog-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-strong);
  background: linear-gradient(135deg, var(--text-strong) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-stat small {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1.3;
}

/* ─── PILLS catégories rapides ────────────────────────────── */
.blog-category-pills {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.category-pill small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--bg-2);
  color: var(--text-mute);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
}
.category-pill:hover {
  border-color: var(--text-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.category-pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.category-pill.is-active small {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* ─── ÉTAT VIDE PREMIUM ───────────────────────────────────── */
.blog-empty-section {
  padding: clamp(60px, 9vw, 100px) 0 clamp(80px, 12vw, 130px);
  background: var(--bg);
}
.blog-empty-premium {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.blog-empty-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  background-size: 200% 100%;
  animation: progressGlow 4s ease-in-out infinite;
}
.blog-empty-premium__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  margin-bottom: 24px;
}
.blog-empty-premium h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 0 0 14px;
}
.blog-empty-premium h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.blog-empty-premium p {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 auto 28px;
  max-width: 480px;
}
.blog-empty-premium__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.blog-empty-premium--filter {
  padding: clamp(40px, 6vw, 60px) 30px;
}

/* ─── SECTION HEAD réutilisable ───────────────────────────── */
.blog-section-head {
  text-align: left;
  margin-bottom: clamp(28px, 5vw, 50px);
}
.blog-section-head__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 16px 0 0;
}
.blog-section-head__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

/* ─── ARTICLE FEATURED ────────────────────────────────────── */
.blog-featured {
  padding: clamp(50px, 8vw, 80px) 0 clamp(40px, 6vw, 60px);
  background: var(--bg);
  position: relative;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-md);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
}
@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; }
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--text-strong);
}
.featured-card:hover .featured-card__cover img {
  transform: scale(1.05);
}
.featured-card:hover .featured-card__title { color: var(--accent); }
.featured-card:hover .featured-card__cta { gap: 14px; color: var(--accent); }
.featured-card:hover .featured-card__cta svg { transform: translateX(6px); }

.featured-card__cover {
  position: relative;
  aspect-ratio: 16 / 11;
  background: var(--bg-2);
  overflow: hidden;
}
@media (max-width: 900px) {
  .featured-card__cover { aspect-ratio: 16 / 9; }
}
.featured-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.featured-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg,
      var(--bg-2) 0px,
      var(--bg-2) 14px,
      var(--bg) 14px,
      var(--bg) 28px);
  color: var(--text-faint);
}

.featured-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px -4px rgba(194, 65, 12, 0.5);
}
.featured-card__badge svg {
  color: var(--gold);
}

.featured-card__body {
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.featured-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
}
.featured-card__category {
  display: inline-block;
  padding: 5px 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.featured-card__meta time {
  color: var(--text-mute);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.featured-card__reading {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-mute);
  font-size: 0.78rem;
  font-weight: 500;
}

.featured-card__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0;
  transition: color 0.4s ease;
}

.featured-card__excerpt {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.featured-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.featured-card__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mute);
  font-size: 0.88rem;
  font-weight: 500;
}
.featured-card__author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--text-strong);
  color: var(--bg);
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.8rem;
}
.featured-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.featured-card__cta svg { transition: transform 0.4s ease; }

/* ─── MAIN GRID — Articles + sidebar ──────────────────────── */
.blog-main {
  padding: clamp(40px, 6vw, 70px) 0 clamp(80px, 12vw, 130px);
  background: var(--bg);
}

.blog-main__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 1024px) {
  .blog-main__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ─── ARTICLE GRID PREMIUM ────────────────────────────────── */
.article-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 720px) {
  .article-grid-premium { grid-template-columns: 1fr; }
}

.article-card-premium {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.article-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--text-strong);
}
.article-card-premium:hover .article-card-premium__cover img {
  transform: scale(1.05);
}
.article-card-premium:hover .article-card-premium__title {
  color: var(--accent);
}
.article-card-premium:hover .article-card-premium__cta {
  gap: 10px;
  color: var(--accent);
}
.article-card-premium:hover .article-card-premium__cta svg {
  transform: translateX(4px);
}

.article-card-premium__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.article-card-premium__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  overflow: hidden;
}
.article-card-premium__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.article-card-premium__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--text-strong) 0%, #1a1a1a 100%);
}
.article-card-premium__placeholder span {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 3rem;
  color: var(--accent);
  letter-spacing: -0.04em;
  opacity: 0.7;
}
.article-card-premium__cat-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 11px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card-premium__body {
  padding: 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.article-card-premium__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-mute);
}
.article-card-premium__meta time {
  font-weight: 500;
  letter-spacing: 0.04em;
}
.article-card-premium__views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.article-card-premium__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 0;
  transition: color 0.3s ease;
}

.article-card-premium__excerpt {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-premium__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}
.article-card-premium__author {
  color: var(--text-mute);
  font-weight: 500;
}
.article-card-premium__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: all 0.3s ease;
}
.article-card-premium__cta svg { transition: transform 0.3s ease; }

/* ─── PAGINATION PREMIUM ──────────────────────────────────── */
.pagination-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) {
  .pagination-premium {
    flex-direction: column;
    gap: 16px;
  }
}

.pagination-premium__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.pagination-premium__nav:hover:not(.is-disabled) {
  background: var(--text-strong);
  color: var(--bg);
  border-color: var(--text-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.pagination-premium__nav.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-premium__info {
  font-size: 0.92rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.pagination-premium__info strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

/* ─── SIDEBAR PREMIUM ─────────────────────────────────────── */
.blog-sidebar-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .blog-sidebar-premium { position: static; }
}

.sidebar-block-premium {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 22px;
  box-shadow: var(--shadow-xs);
}

.sidebar-block-premium__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.sidebar-block-premium__num {
  flex-shrink: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.sidebar-block-premium__head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 0;
}

/* Liste populaires */
.sidebar-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.sidebar-popular-list li + li {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.sidebar-popular-list a {
  display: flex;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}
.sidebar-popular-list a:hover h4 {
  color: var(--accent);
}
.sidebar-popular-list__num {
  flex-shrink: 0;
  width: 30px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.sidebar-popular-list__body {
  flex: 1;
}
.sidebar-popular-list h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  color: var(--text-strong);
  margin: 0 0 4px;
  line-height: 1.3;
  transition: color 0.25s ease;
}
.sidebar-popular-list small {
  color: var(--text-mute);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

/* Liste catégories */
.sidebar-cats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-cats-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}
.sidebar-cats-list a:hover {
  background: var(--bg-2);
  color: var(--accent);
}
.sidebar-cats-list a.is-active {
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.sidebar-cats-list small {
  color: var(--text-mute);
  font-weight: 700;
  font-size: 0.74rem;
  background: var(--bg-2);
  padding: 2px 8px;
  border-radius: 100px;
  min-width: 28px;
  text-align: center;
}
.sidebar-cats-list a.is-active small {
  background: var(--accent);
  color: #fff;
}

/* CTA sidebar */
.sidebar-block-premium--cta {
  background: linear-gradient(135deg, var(--text-strong) 0%, #1a1a1a 100%);
  color: var(--bg);
  border-color: var(--text-strong);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.sidebar-block-premium--cta::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.30), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.sidebar-block-premium--cta > * { position: relative; z-index: 1; }
.sidebar-block-premium--cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 14px;
}
.sidebar-block-premium--cta h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.sidebar-block-premium--cta p {
  color: rgba(250, 248, 243, 0.75);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 18px;
}
.sidebar-block-premium--cta .btn--primary {
  background: var(--accent);
  width: 100%;
  justify-content: center;
}
.sidebar-block-premium--cta .btn--primary:hover {
  background: var(--gold);
  color: var(--text-strong);
}

/* ─── RESPONSIVE FINAL ────────────────────────────────────── */
@media (max-width: 640px) {
  .blog-hero--xl {
    padding-top: 110px !important;
    padding-bottom: 30px !important;
  }
  .blog-hero__bg-num { font-size: 18rem; bottom: -5%; right: -5%; }
  .blog-search-premium { padding: 4px 4px 4px 14px; }
  .blog-search-premium button {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  .blog-search-premium button span { display: none; }
  .blog-category-pills { gap: 6px; margin-top: 24px; }
  .category-pill {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .featured-card__body { padding: 22px 20px !important; }
  .featured-card__footer { flex-direction: column; align-items: flex-start; }

  .article-card-premium__body { padding: 20px 22px; }
  .article-card-premium__title { font-size: 1.18rem; }

  .pagination-premium__nav { padding: 10px 18px; font-size: 0.78rem; }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  📖 PAGE ARTICLE DÉTAIL — Style éditorial premium           ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── HERO ARTICLE ────────────────────────────────────────── */
.article-hero {
  position: relative;
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 90px);
  background: var(--text-strong);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.article-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.article-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.9) blur(2px);
}
.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.65) 0%,
    rgba(10, 10, 10, 0.85) 70%,
    rgba(10, 10, 10, 0.95) 100%);
}
.article-hero__bg--gradient {
  background: linear-gradient(135deg, var(--text-strong) 0%, #1a1a1a 50%, #0a0a0a 100%);
}
.article-hero__bg--gradient::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.30), transparent 60%);
  filter: blur(60px);
}
.article-hero__bg--gradient::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.25), transparent 60%);
  filter: blur(60px);
}

.article-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* Fil d'Ariane */
.article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}
.article-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.article-breadcrumb a:hover {
  color: var(--gold);
}
.article-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* Catégorie pill */
.article-hero__category {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  margin-bottom: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px -4px rgba(194, 65, 12, 0.5);
}
.article-hero__category:hover {
  background: var(--gold);
  color: var(--text-strong);
  transform: translateY(-2px);
}

/* Titre */
.article-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 24px;
}

/* Lead */
.article-hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px;
  max-width: 720px;
  font-weight: 400;
}

/* Meta */
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-meta-item strong {
  color: #fff;
  font-weight: 600;
}
.article-meta-sep {
  color: rgba(255, 255, 255, 0.3);
}
.article-meta-item svg {
  color: var(--gold);
  opacity: 0.8;
}
.article-author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.78rem;
  margin-right: 4px;
}

/* ─── CONTENU ARTICLE ─────────────────────────────────────── */
.article-content {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}

.article-content__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .article-content__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Prose éditoriale */
.article-prose {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text);
}

.article-prose h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 56px 0 18px;
  position: relative;
  padding-left: 24px;
}
.article-prose h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 12px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.article-prose h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 40px 0 14px;
}

.article-prose p {
  margin: 0 0 22px;
}

/* Premier paragraphe : drop cap */
.article-prose > p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.12em 0 0;
  color: var(--accent);
  font-style: italic;
}

.article-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(194, 65, 12, 0.4);
  transition: text-decoration-color 0.25s ease;
}
.article-prose a:hover {
  text-decoration-color: var(--accent);
}

.article-prose strong {
  color: var(--text-strong);
  font-weight: 600;
}

.article-prose em {
  font-style: italic;
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 24px;
  padding-left: 1.5em;
}
.article-prose li {
  margin-bottom: 10px;
  padding-left: 6px;
}
.article-prose ul li::marker {
  color: var(--accent);
}
.article-prose ol li::marker {
  color: var(--accent);
  font-family: 'Fraunces', serif;
  font-weight: 500;
}

/* Citation éditoriale */
.article-prose blockquote {
  position: relative;
  margin: 36px 0;
  padding: 24px 30px;
  background: var(--card);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--text-strong);
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-xs);
}
.article-prose blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
}
.article-prose blockquote p { margin: 0; }
.article-prose blockquote p + p { margin-top: 10px; }

/* Images dans l'article */
.article-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 24px 0;
  box-shadow: var(--shadow-md);
}

/* Code inline */
.article-prose code {
  background: var(--accent-soft);
  border: 1px solid rgba(194, 65, 12, 0.2);
  color: var(--accent-deep);
  padding: 1px 8px;
  border-radius: 3px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.88em;
}

.article-prose pre {
  background: var(--text-strong);
  color: var(--bg);
  padding: 18px 22px;
  border-radius: 6px;
  margin: 24px 0;
  overflow-x: auto;
}
.article-prose pre code {
  background: transparent;
  border: none;
  color: inherit;
  padding: 0;
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.article-tags strong {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  margin-right: 6px;
}
.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text);
  transition: all 0.25s ease;
}
.article-tag:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

/* Partage */
.article-share {
  margin-top: 36px;
  padding: 24px;
  background: var(--bg-2);
  border-radius: 6px;
  border: 1px solid var(--line);
}
.article-share strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin-bottom: 14px;
}
.article-share__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.article-share__btn:hover {
  border-color: var(--text-strong);
  background: var(--text-strong);
  color: var(--bg);
  transform: translateY(-2px);
}
.article-share__btn--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.article-share__btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}
.article-share__btn--copy {
  margin-left: auto;
}

/* ─── SIDEBAR ARTICLE ─────────────────────────────────────── */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .article-sidebar { position: static; }
}

.article-side-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-xs);
}
.article-side-block__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.article-side-block__num {
  flex-shrink: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.article-side-block__head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 0;
}

/* Auteur card */
.article-author-card {
  display: flex;
  align-items: center;
  gap: 14px;
}
.article-author-card__avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--text-strong) 0%, var(--accent) 100%);
  color: #fff;
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.2rem;
}
.article-author-card strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text-strong);
}
.article-author-card small {
  color: var(--text-mute);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

/* Info list */
.article-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.article-info-list svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* CTA sidebar */
.article-side-block--cta {
  background: linear-gradient(135deg, var(--text-strong) 0%, #1a1a1a 100%);
  color: var(--bg);
  border-color: var(--text-strong);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.article-side-block--cta::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.30), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.article-side-block--cta > * { position: relative; z-index: 1; }
.article-side-block--cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 14px;
}
.article-side-block--cta h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.article-side-block--cta p {
  color: rgba(250, 248, 243, 0.75);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 18px;
}
.article-side-block--cta .btn--primary {
  background: var(--accent);
  width: 100%;
  justify-content: center;
}
.article-side-block--cta .btn--primary:hover {
  background: var(--gold);
  color: var(--text-strong);
}

/* ─── ARTICLES SIMILAIRES ─────────────────────────────────── */
.article-similar {
  padding: clamp(60px, 9vw, 100px) 0 clamp(80px, 12vw, 130px);
  background: var(--bg-2);
}

.article-similar__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 60px);
}
.article-similar__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 16px 0 0;
}
.article-similar__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.article-similar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .article-similar__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .article-similar__grid { grid-template-columns: 1fr; } }

/* ─── RESPONSIVE FINAL ────────────────────────────────────── */
@media (max-width: 640px) {
  .article-hero {
    padding-top: 110px !important;
  }
  .article-hero__title {
    font-size: 1.8rem !important;
  }
  .article-hero__lead {
    font-size: 1rem !important;
  }
  .article-hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .article-meta-sep { display: none; }

  .article-prose {
    font-size: 1rem;
  }
  .article-prose > p:first-of-type::first-letter {
    font-size: 3.2em;
  }
  .article-prose blockquote {
    padding: 18px 22px;
    font-size: 1.05rem;
  }

  .article-share__btn--copy { margin-left: 0; }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  🎯 MENU NAVIGATION — Upgrade Premium                        ║
   ║   Polices plus grandes + style éditorial raffiné            ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── NAV : plus de présence ──────────────────────────────── */
.nav {
  padding: 24px 0 !important;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}
.nav.scrolled {
  padding: 14px 0 !important;
  background: rgba(10, 10, 10, 0.85) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  border-bottom: 1px solid rgba(212, 165, 116, 0.15) !important;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3) !important;
}

.nav__inner {
  gap: clamp(28px, 4vw, 48px) !important;
}

/* ─── LOGO : plus grand + plus de personnalité ────────────── */
.logo {
  font-size: clamp(1.4rem, 2vw, 1.6rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  gap: 14px !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.logo:hover {
  transform: translateY(-1px);
}

.logo__mark {
  width: 44px !important;
  height: 44px !important;
  font-size: 1.25rem !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%) !important;
  box-shadow:
    0 8px 24px -4px rgba(194, 65, 12, 0.45),
    0 0 0 1px rgba(212, 165, 116, 0.30) !important;
  position: relative !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.logo:hover .logo__mark {
  transform: rotate(-6deg) scale(1.05);
  box-shadow:
    0 12px 32px -4px rgba(194, 65, 12, 0.55),
    0 0 0 1px var(--gold) !important;
}
.logo__mark::after {
  content: '' !important;
  position: absolute !important;
  inset: 3px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.logo__text {
  font-family: 'Fraunces', serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: -0.015em !important;
}
.logo__text b {
  font-style: normal !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav.scrolled .logo__text b {
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── LINKS : plus grandes, plus de style ─────────────────── */
.nav__links {
  gap: clamp(28px, 3.5vw, 44px) !important;
  align-items: center !important;
}

.nav__links a {
  position: relative !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.005em !important;
  color: var(--text) !important;
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  padding: 6px 2px !important;
  font-family: 'Outfit', sans-serif !important;
}

/* Style en mode scrolled (fond sombre) */
.nav.scrolled .nav__links a {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Underline animé sous chaque lien */
.nav__links a::after {
  content: '' !important;
  position: absolute !important;
  bottom: -2px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--accent), var(--gold)) !important;
  border-radius: 2px !important;
  transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}
.nav__links a:hover {
  color: var(--accent) !important;
  letter-spacing: 0.02em !important;
}
.nav.scrolled .nav__links a:hover {
  color: var(--gold) !important;
}
.nav__links a:hover::after {
  width: 100% !important;
}

/* Indicateur "page active" : point orange devant + underline persistant */
.nav__links a.is-active,
.nav__links li.is-active a {
  color: var(--accent) !important;
  font-weight: 600 !important;
}
.nav.scrolled .nav__links a.is-active {
  color: var(--gold) !important;
}
.nav__links a.is-active::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: -14px !important;
  transform: translateY(-50%) !important;
  width: 5px !important;
  height: 5px !important;
  background: var(--accent) !important;
  border-radius: 50% !important;
  box-shadow: 0 0 8px var(--accent);
  animation: navDotPulse 2s ease-in-out infinite;
}
.nav.scrolled .nav__links a.is-active::before {
  background: var(--gold) !important;
  box-shadow: 0 0 8px var(--gold);
}
@keyframes navDotPulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50%      { opacity: 0.6; transform: translateY(-50%) scale(1.3); }
}
.nav__links a.is-active::after {
  width: 100% !important;
}

/* Effet "magnétique" hover : translation très légère */
.nav__links li {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav__links li:hover {
  transform: translateY(-2px);
}

/* ─── CTA "Nous contacter" plus marqué ────────────────────── */
.nav__cta {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  padding: 12px 22px !important;
  letter-spacing: 0.02em !important;
  background: var(--accent) !important;
  color: #fff !important;
  border: 1.5px solid var(--accent) !important;
  border-radius: 100px !important;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  box-shadow: 0 8px 20px -4px rgba(194, 65, 12, 0.40) !important;
}
.nav__cta:hover {
  background: var(--text-strong) !important;
  border-color: var(--text-strong) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px -4px rgba(194, 65, 12, 0.50) !important;
}
.nav.scrolled .nav__cta {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}
.nav.scrolled .nav__cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--text-strong) !important;
}
.nav__cta svg {
  transition: transform 0.3s ease !important;
}
.nav__cta:hover svg {
  transform: translateX(4px) !important;
}

/* ─── BURGER (mobile) restylé ─────────────────────────────── */
.nav__burger {
  width: 40px !important;
  height: 40px !important;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  transition: all 0.3s ease;
}
.nav.scrolled .nav__burger {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.nav__burger:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}
.nav__burger:hover span,
.nav__burger:hover span::before,
.nav__burger:hover span::after {
  background: #fff !important;
}

/* ─── MOBILE MENU restylé ──────────────────────────────────── */
.mobile-menu {
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(15, 14, 13, 1) 100%) !important;
  backdrop-filter: blur(20px) !important;
  padding: 100px 28px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  isolation: isolate;
}

/* Forme décorative en arrière-plan du mobile menu */
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.20), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
.mobile-menu::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.mobile-menu a {
  font-family: 'Fraunces', serif !important;
  font-weight: 400 !important;
  font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  position: relative;
  text-decoration: none !important;
}
.mobile-menu a:not(.btn)::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(20px, -50%);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--accent);
  opacity: 0;
  transition: all 0.4s ease;
}
.mobile-menu a:not(.btn):hover {
  color: var(--gold) !important;
  padding-left: 18px !important;
  font-style: italic !important;
}
.mobile-menu a:not(.btn):hover::after {
  transform: translate(0, -50%);
  opacity: 1;
  color: var(--gold);
}

/* Indicateur page active mobile */
.mobile-menu a.is-active {
  color: var(--accent) !important;
  font-style: italic !important;
}
.mobile-menu a.is-active::before {
  content: '— ';
  color: var(--gold);
  font-style: normal;
}

/* CTA mobile menu */
.mobile-menu .btn {
  margin-top: 24px !important;
  padding: 16px 24px !important;
  font-size: 1rem !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  justify-content: center !important;
  background: var(--accent) !important;
  border-radius: 100px !important;
}
.mobile-menu .btn::after {
  display: none !important;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav__links { display: none !important; }
  .nav__burger { display: inline-flex !important; }
}

@media (min-width: 981px) {
  .nav__burger { display: none !important; }
}

/* Petits écrans : logo plus compact */
@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem !important;
    gap: 10px !important;
  }
  .logo__mark {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.1rem !important;
  }
  .mobile-menu {
    padding: 90px 22px 30px !important;
  }
  .mobile-menu a {
    font-size: 1.6rem !important;
    padding: 14px 0 !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  🎩 MENU PREMIUM MAGAZINE — Override prioritaire             ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── NAV CONTAINER ───────────────────────────────────────── */
.nav {
  padding: 18px 0 !important;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(250, 248, 243, 0.85) !important;
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.nav.is-scrolled {
  padding: 12px 0 !important;
  background: rgba(250, 248, 243, 0.94) !important;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -8px rgba(74, 60, 35, 0.08);
}

.nav__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px;
}

/* ─── LOGO PREMIUM ────────────────────────────────────────── */
.nav .logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.nav .logo:hover {
  transform: translateY(-1px);
}

.nav .logo__mark {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  background: var(--text-strong) !important;
  color: var(--bg) !important;
  border-radius: 5px !important;
  font-family: 'Fraunces', serif !important;
  font-weight: 700 !important;
  font-size: 1.35rem !important;
  letter-spacing: -0.02em !important;
  position: relative;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: 0 4px 12px -2px rgba(26, 26, 26, 0.2);
}
.nav .logo__mark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nav .logo:hover .logo__mark {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 8px 20px -4px rgba(194, 65, 12, 0.45);
}
.nav .logo:hover .logo__mark::after {
  opacity: 1;
}
.nav .logo__mark span,
.nav .logo__mark {
  position: relative;
  z-index: 1;
}

.nav .logo__text {
  font-family: 'Fraunces', serif !important;
  font-weight: 400 !important;
  font-size: 1.18rem !important;
  letter-spacing: -0.015em !important;
  color: var(--text-strong) !important;
  line-height: 1 !important;
  transition: color 0.3s ease;
}
.nav .logo__text b {
  font-weight: 600;
  font-style: normal;
}

/* ─── LINKS PREMIUM ───────────────────────────────────────── */
.nav .nav__links {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav .nav__links li {
  position: relative;
}

/* Séparateur subtil entre items */
.nav .nav__links li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--line-strong);
  opacity: 0.6;
}

.nav .nav__links a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  padding: 10px 22px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em !important;
  color: var(--text) !important;
  text-decoration: none !important;
  position: relative !important;
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}

/* Numéro discret devant chaque item (style éditorial) */
.nav .nav__links li:nth-child(1) a::before { content: '01'; }
.nav .nav__links li:nth-child(2) a::before { content: '02'; }
.nav .nav__links li:nth-child(3) a::before { content: '03'; }
.nav .nav__links li:nth-child(4) a::before { content: '04'; }
.nav .nav__links li:nth-child(5) a::before { content: '05'; }
.nav .nav__links li:nth-child(6) a::before { content: '06'; }
.nav .nav__links a::before {
  font-family: 'Fraunces', serif !important;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  opacity: 0.55;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

/* Soulignement animé sophistiqué */
.nav .nav__links a::after {
  content: '' !important;
  position: absolute !important;
  left: 22px !important;
  right: 22px !important;
  bottom: 4px !important;
  height: 2px !important;
  background: var(--accent) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  width: auto !important;
}

/* HOVER */
.nav .nav__links a:hover {
  color: var(--text-strong) !important;
}
.nav .nav__links a:hover::before {
  opacity: 1;
  transform: translateX(-3px);
}
.nav .nav__links a:hover::after {
  transform: scaleX(1) !important;
}

/* Active state (page courante) */
.nav .nav__links a.is-active,
.nav .nav__links a[aria-current="page"] {
  color: var(--accent) !important;
}
.nav .nav__links a.is-active::before,
.nav .nav__links a[aria-current="page"]::before {
  opacity: 1;
  color: var(--accent);
}
.nav .nav__links a.is-active::after,
.nav .nav__links a[aria-current="page"]::after {
  transform: scaleX(1) !important;
  background: var(--accent) !important;
}

/* ─── CTA BUTTON ─────────────────────────────────────────── */
.nav .nav__cta {
  padding: 12px 22px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  background: var(--text-strong) !important;
  color: var(--bg) !important;
  border-radius: 4px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  box-shadow: 0 4px 14px -2px rgba(26, 26, 26, 0.20);
}
.nav .nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.nav .nav__cta > * {
  position: relative;
  z-index: 1;
}
.nav .nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(194, 65, 12, 0.45);
}
.nav .nav__cta:hover::before {
  opacity: 1;
}
.nav .nav__cta .arrow {
  transition: transform 0.3s ease;
}
.nav .nav__cta:hover .arrow {
  transform: translateX(3px);
}

/* ─── BURGER (Mobile) ────────────────────────────────────── */
.nav .nav__burger {
  display: none !important;
  width: 42px !important;
  height: 42px !important;
  background: var(--text-strong) !important;
  border: none;
  border-radius: 4px !important;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.nav .nav__burger span,
.nav .nav__burger span::before,
.nav .nav__burger span::after {
  display: block;
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--bg);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.nav .nav__burger span {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav .nav__burger span::before {
  content: '';
  top: -6px;
  left: 0;
}
.nav .nav__burger span::after {
  content: '';
  top: 6px;
  left: 0;
}
.nav .nav__burger:hover {
  background: var(--accent) !important;
  transform: scale(1.05);
}
.nav .nav__burger.is-open span { background: transparent; }
.nav .nav__burger.is-open span::before { transform: rotate(45deg); top: 0; }
.nav .nav__burger.is-open span::after  { transform: rotate(-45deg); top: 0; }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  .nav .nav__links {
    display: none !important;
  }
  .nav .nav__cta {
    display: none !important;
  }
  .nav .nav__burger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav .logo__text {
    font-size: 1.05rem !important;
  }
  .nav .logo__mark {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.2rem !important;
  }
}

/* ─── MOBILE MENU (override) ───────────────────────────── */
.mobile-menu__list a,
#mobileMenu a {
  font-family: 'Fraunces', serif !important;
  font-size: clamp(2rem, 6vw, 3.2rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
  color: var(--bg) !important;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 8px 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mobile-menu__list a::before {
  content: attr(data-num);
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 500;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mobile-menu__list a:hover {
  color: var(--accent) !important;
  padding-left: 30px;
}
.mobile-menu__list a:hover::before {
  opacity: 1;
  left: -30px;
}

/* ════════════════════════════════════════════════════════════════
   🔧 FIX : neutraliser l'ancien effet letter-swap du menu
   ════════════════════════════════════════════════════════════════ */

/* L'ancien effet faisait monter le texte de 105% au hover → invisible.
   On le désactive en gardant juste l'effet de couleur + soulignement. */
.nav .nav__links a span,
.nav__links a span {
  transform: none !important;
  display: inline !important;
}

.nav .nav__links a:hover span,
.nav__links a:hover span {
  transform: none !important;
}

/* Au cas où d'autres règles ajouteraient un translateY au hover */
.nav .nav__links a,
.nav__links a {
  transform: none !important;
}
.nav .nav__links a:hover,
.nav__links a:hover {
  transform: none !important;
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  🦶 FOOTER PREMIUM MAGAZINE                                  ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── DÉSACTIVATION de l'ancien footer ───────────────────── */
/* Si l'ancien footer existe encore avec class .footer, on le masque */
footer.footer:not(.footer-premium) {
  display: none !important;
}

/* ─── CTA PREMIUM AVANT FOOTER ─────────────────────────── */
.footer-cta {
  position: relative;
  padding: clamp(80px, 12vw, 130px) 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0e0d 100%);
  color: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

.footer-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.footer-cta__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.footer-cta__shape--1 {
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.30), transparent 60%);
  animation: heroShape1Float 14s ease-in-out infinite;
}
.footer-cta__shape--2 {
  bottom: -15%;
  right: -8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.25), transparent 60%);
  animation: heroShape2Float 18s ease-in-out infinite;
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.footer-cta__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 22px 0 24px;
}
.footer-cta__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.footer-cta__title em::after {
  content: '';
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(ellipse, rgba(212, 165, 116, 0.30) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  animation: titleGlow 3.5s ease-in-out infinite;
}

.footer-cta__lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
  color: rgba(250, 248, 243, 0.75);
  margin: 0 auto 36px;
  max-width: 620px;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ─── FOOTER PREMIUM ───────────────────────────────────── */
.footer-premium {
  position: relative;
  background: #050505;
  color: rgba(250, 248, 243, 0.7);
  padding-top: 0;
  overflow: hidden;
}

/* Marquee décoratif */
.footer-marquee {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.footer-marquee::before,
.footer-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.footer-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #050505, transparent);
}
.footer-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #050505, transparent);
}
.footer-marquee__track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  width: max-content;
  animation: footerMarquee 40s linear infinite;
}
.footer-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.01em;
  color: rgba(212, 165, 116, 0.55);
  transition: color 0.4s ease;
}
.footer-marquee__item:hover {
  color: var(--gold);
}
.footer-marquee__item svg {
  color: var(--accent);
  opacity: 0.6;
}
@keyframes footerMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.33%); }
}

/* ─── GRILLE 4 COLONNES ──────────────────────────────── */
.footer-premium__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding: clamp(60px, 8vw, 90px) 0 50px;
}
@media (max-width: 1024px) {
  .footer-premium__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }
  .footer-col--contact { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .footer-premium__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-col--contact { grid-column: auto; }
}

/* ─── COLONNE BRAND ──────────────────────────────────── */
.footer-col--brand {
  max-width: 380px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}
.footer-logo:hover {
  transform: translateY(-2px);
}
.footer-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  color: #fff;
  border-radius: 5px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 24px -4px rgba(194, 65, 12, 0.5);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-logo:hover .footer-logo__mark {
  transform: rotate(-6deg) scale(1.05);
}
.footer-logo__text {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.015em;
}
.footer-logo__text b {
  font-weight: 600;
}

.footer-col__desc {
  color: rgba(250, 248, 243, 0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 24px;
}

/* Signature */
.footer-signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(212, 165, 116, 0.08);
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gold);
  margin-bottom: 26px;
}
.footer-signature em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-size: 1.15em;
}

/* ─── SOCIAL ICONS ──────────────────────────────────── */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: rgba(250, 248, 243, 0.7);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -4px rgba(194, 65, 12, 0.45);
}
.footer-social svg {
  flex-shrink: 0;
}
.footer-social--whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.5);
}

/* ─── TITRES COLONNES ──────────────────────────────── */
.footer-col__title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.footer-col__title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.footer-col__num {
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: -0.04em;
}

/* ─── LISTES ────────────────────────────────────────── */
.footer-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-col__list a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px 0;
  color: rgba(250, 248, 243, 0.65);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
}
.footer-link-arrow {
  display: inline-block;
  width: 0;
  overflow: hidden;
  color: var(--accent);
  transition: width 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
              margin-right 0.3s ease;
  font-weight: 600;
}
.footer-col__list a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-col__list a:hover .footer-link-arrow {
  width: 18px;
  margin-right: 6px;
}

/* ─── CONTACT ITEMS ─────────────────────────────────── */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(250, 248, 243, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-contact-item + .footer-contact-item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-contact-item--link:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(194, 65, 12, 0.10);
  border: 1px solid rgba(194, 65, 12, 0.25);
  border-radius: 50%;
  color: var(--accent);
  transition: all 0.3s ease;
  margin-top: 2px;
}
.footer-contact-item--link:hover .footer-contact-item__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(-8deg);
}

.footer-contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212, 165, 116, 0.7);
  margin-bottom: 2px;
}
.footer-contact-item small {
  display: block;
  font-size: 0.88rem;
  color: rgba(250, 248, 243, 0.85);
  line-height: 1.4;
}
.footer-contact-item--link:hover small {
  color: #fff;
}

/* ─── BOTTOM BAR ────────────────────────────────────── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
}
@media (max-width: 720px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

.footer-bottom__copy {
  color: rgba(250, 248, 243, 0.55);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom__copy strong {
  color: rgba(250, 248, 243, 0.85);
  font-weight: 600;
}
.footer-bottom__copy a {
  color: rgba(250, 248, 243, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-bottom__copy a:hover {
  color: var(--accent);
}
.footer-bottom__sep {
  color: rgba(255, 255, 255, 0.15);
}

.footer-bottom__made {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(250, 248, 243, 0.55);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-size: 0.86rem;
}
.footer-heart {
  display: inline-block;
  color: var(--accent);
  font-style: normal;
  animation: heartBeat 1.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes heartBeat {
  0%, 100%   { transform: scale(1); }
  50%        { transform: scale(1.25); color: #ef4444; }
}

/* ─── BOUTON RETOUR EN HAUT ─────────────────────────── */
.footer-back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 12px 28px -6px rgba(194, 65, 12, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.8);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.footer-back-top:hover {
  background: var(--gold);
  color: var(--text-strong);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 36px -8px rgba(212, 165, 116, 0.55);
}
.footer-back-top svg {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-back-top:hover svg {
  transform: translateY(-3px);
}

/* Anneau pulsant autour du bouton */
.footer-back-top__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: backTopPulse 2.5s ease-out infinite;
}
@keyframes backTopPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 640px) {
  .footer-back-top {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
}

/* ─── RESPONSIVE FINAL ──────────────────────────────── */
@media (max-width: 640px) {
  .footer-cta__title {
    font-size: 2.2rem !important;
  }
  .footer-cta__actions {
    flex-direction: column;
  }
  .footer-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-marquee { padding: 18px 0; }
  .footer-marquee__item { font-size: 1.1rem; gap: 10px; }

  .footer-socials {
    gap: 6px;
  }
  .footer-social {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
}

/* ════════════════════════════════════════════════════════════════
   🔧 FIX : Empiler le retour-en-haut AU-DESSUS du WhatsApp float
   ════════════════════════════════════════════════════════════════ */

/* Bouton retour en haut placé au-dessus du WhatsApp (qui est à bottom:24px) */
.footer-back-top {
  bottom: 96px !important;  /* 24 (whatsapp) + 58 (sa hauteur) + 14 (espace) */
  right: 27px !important;   /* aligné centré avec WhatsApp (qui est 58, moi 52 → +3) */
  z-index: 49 !important;   /* en-dessous du whatsapp z=50 */
}

/* Mobile : WhatsApp passe à 54px et bottom 20px, donc on ajuste */
@media (max-width: 640px) {
  .footer-back-top {
    bottom: 88px !important;  /* 20 + 54 + 14 */
    right: 25px !important;   /* (54-44)/2 = 5 → 20+5 = 25 */
    width: 44px !important;
    height: 44px !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   🔧 FIX : Badge "Directeur Général" qui cachait la photo
   ════════════════════════════════════════════════════════════════ */

/* Masquer l'ancien badge envahissant (toutes ses règles) */
.director__visual--premium .director__badge,
.director__visual .director__badge {
  display: none !important;
}

/* Petit label or DISCRET intégré dans le cadre or supérieur (ne mange pas la photo) */
.director__visual--premium .director__frame::after {
  content: '★ DIRECTEUR GÉNÉRAL';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-strong);
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 16px 4px;
  border-radius: 0 0 4px 4px;
  white-space: nowrap;
  z-index: 7;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 165, 116, 0.30);
  border-top: none;
}

/* Mobile : label encore plus discret */
@media (max-width: 640px) {
  .director__visual--premium .director__frame::after {
    font-size: 0.55rem;
    padding: 4px 12px 3px;
    letter-spacing: 0.14em;
  }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  📸 GALERIE PHOTOS PREMIUM — Mosaïque + Lightbox             ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── HERO GALERIE ───────────────────────────────────────── */
.galerie-hero {
  position: relative;
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 90px);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
  isolation: isolate;
}

.galerie-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.galerie-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.galerie-hero__shape--1 {
  top: 5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.18), transparent 70%);
  animation: heroShape1Float 18s ease-in-out infinite;
}
.galerie-hero__shape--2 {
  top: 20%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.25), transparent 70%);
  animation: heroShape2Float 22s ease-in-out infinite;
}
.galerie-hero__shape--3 {
  bottom: -10%;
  left: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(17, 94, 89, 0.12), transparent 70%);
  filter: blur(80px);
}

.galerie-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.galerie-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin: 22px 0 24px;
}
.galerie-hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.galerie-hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 36px;
  max-width: 620px;
}

.galerie-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.galerie-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.galerie-hero__stat strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.galerie-hero__stat span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}

/* ─── FILTRES (Pills) ────────────────────────────────────── */
.galerie-filters {
  padding: 0 0 30px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 70px;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(250, 248, 243, 0.94);
}
.galerie-filters__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.galerie-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.galerie-filter:hover {
  border-color: var(--text-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.galerie-filter.is-active {
  background: var(--text-strong);
  border-color: var(--text-strong);
  color: var(--bg);
}
.galerie-filter__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
}
.galerie-filter.is-active .galerie-filter__count {
  background: var(--accent);
  color: #fff;
}

/* ─── MOSAÏQUE ────────────────────────────────────────────── */
.galerie-grid-section {
  padding: clamp(40px, 6vw, 70px) 0 clamp(80px, 12vw, 120px);
}

.galerie-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 14px;
}
@media (max-width: 1024px) {
  .galerie-mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; }
}
@media (max-width: 720px) {
  .galerie-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 10px; }
}
@media (max-width: 480px) {
  .galerie-mosaic { grid-template-columns: 1fr; grid-auto-rows: 280px; }
}

/* Items normaux */
.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-2);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(74, 60, 35, 0.06);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.galerie-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -10px rgba(74, 60, 35, 0.25);
}

/* Variantes : tall, wide, span-2x2 */
.galerie-item--tall   { grid-row: span 2; }
.galerie-item--wide   { grid-column: span 2; }
.galerie-item--span-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 480px) {
  .galerie-item--tall, .galerie-item--wide, .galerie-item--span-2x2 {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

.galerie-item__btn {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.galerie-item__btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.galerie-item:hover .galerie-item__btn img {
  transform: scale(1.06);
}

/* Overlay info au hover */
.galerie-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 40%,
    rgba(10, 10, 10, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  gap: 12px;
}
.galerie-item:hover .galerie-item__overlay {
  opacity: 1;
}

.galerie-item__info {
  flex: 1;
  text-align: left;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.05s;
}
.galerie-item:hover .galerie-item__info {
  transform: translateY(0);
}
.galerie-item__cat {
  display: inline-block;
  padding: 3px 9px;
  background: var(--accent);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.galerie-item__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}

.galerie-item__zoom {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--bg);
  color: var(--text-strong);
  border-radius: 50%;
  transform: scale(0) rotate(-90deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}
.galerie-item:hover .galerie-item__zoom {
  transform: scale(1) rotate(0deg);
}

/* Tag Featured */
.galerie-item__featured-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--text-strong);
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px -2px rgba(212, 165, 116, 0.5);
}

/* Empty state */
.galerie-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-mute);
}
.galerie-empty svg {
  color: var(--text-faint);
  margin-bottom: 18px;
}
.galerie-empty h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--text-strong);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.galerie-empty p { max-width: 480px; margin: 0 auto; }
.galerie-empty a { color: var(--accent); font-weight: 600; }

/* ─── CTA FIN GALERIE ────────────────────────────────────── */
.galerie-cta {
  padding: clamp(60px, 9vw, 100px) 0;
  background: linear-gradient(135deg, var(--text-strong) 0%, #1a1a1a 100%);
  color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.galerie-cta::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.18), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.galerie-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.galerie-cta__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px;
}
.galerie-cta__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.galerie-cta p {
  color: rgba(250, 248, 243, 0.75);
  font-size: 1rem;
  margin: 0 0 28px;
}
.galerie-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════════
   LIGHTBOX PREMIUM
   ════════════════════════════════════════════════════════════════ */
.galerie-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.galerie-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.galerie-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.galerie-lightbox__close:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(90deg);
}

.galerie-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.galerie-lightbox__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.galerie-lightbox__nav--prev { left: 20px; }
.galerie-lightbox__nav--next { right: 20px; }
.galerie-lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-4px); }
.galerie-lightbox__nav--next:hover { transform: translateY(-50%) translateX(4px); }

.galerie-lightbox__content {
  max-width: 1200px;
  max-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.galerie-lightbox__img-wrap {
  position: relative;
  max-width: 100%;
  max-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.galerie-lightbox__img-wrap img {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.galerie-lightbox__loader {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: lightboxLoad 0.8s linear infinite;
}
@keyframes lightboxLoad { to { transform: rotate(360deg); } }

.galerie-lightbox__info {
  text-align: center;
  color: #fff;
  max-width: 720px;
}
.galerie-lightbox__cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.galerie-lightbox__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 6px;
}
.galerie-lightbox__desc {
  color: rgba(250, 248, 243, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 12px;
}
.galerie-lightbox__counter {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile lightbox */
@media (max-width: 640px) {
  .galerie-lightbox { padding: 50px 12px 80px; }
  .galerie-lightbox__nav {
    width: 44px;
    height: 44px;
    bottom: 16px;
    top: auto;
    transform: none;
  }
  .galerie-lightbox__nav--prev { left: calc(50% - 60px); }
  .galerie-lightbox__nav--next { right: calc(50% - 60px); }
  .galerie-lightbox__img-wrap img { max-height: calc(100vh - 280px); }
  .galerie-lightbox__title { font-size: 1.2rem; }
}

/* ════════════════════════════════════════════════════════════════
   ADMIN MEDIAS (back-office)
   ════════════════════════════════════════════════════════════════ */

.medias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.media-card {
  background: var(--admin-card);
  border: 1px solid var(--admin-line);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.media-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--admin-shadow-md);
  border-color: var(--admin-line-strong);
}
.media-card--inactive {
  opacity: 0.55;
}
.media-card--inactive:hover { opacity: 1; }

.media-card__preview {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--admin-bg);
}
.media-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card__featured {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  background: var(--admin-gold);
  color: var(--admin-text-strong);
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.media-card__inactive-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
}

.media-card__body {
  padding: 12px;
}
.media-card__body h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--admin-text-strong);
  margin: 0 0 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.media-card__body small {
  display: block;
  color: var(--admin-text-mute);
  font-size: 0.74rem;
  margin-bottom: 10px;
}

.media-card__actions {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-admin--xs {
  padding: 4px 9px !important;
  font-size: 0.74rem !important;
}
.btn-admin--danger-text {
  color: var(--admin-danger) !important;
  font-weight: 700;
  font-size: 1rem !important;
  padding: 2px 8px !important;
}

/* Upload preview multi-fichiers */
.admin-upload-zone--multi {
  padding: 30px 20px !important;
  min-height: 180px;
}
.upload-preview {
  width: 100%;
  margin-top: 14px;
}
.upload-preview__counter {
  background: var(--admin-success);
  color: #fff;
  padding: 6px 12px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 10px;
  display: inline-block;
}
.upload-preview__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}
.upload-preview__item {
  background: var(--admin-card);
  border: 1px solid var(--admin-line);
  border-radius: 4px;
  padding: 6px;
  text-align: center;
}
.upload-preview__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  margin-bottom: 4px;
}
.upload-preview__item small {
  display: block;
  font-size: 0.7rem;
  color: var(--admin-text-mute);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-edit-preview {
  text-align: center;
  padding: 16px;
  background: var(--admin-bg);
  border-radius: 6px;
  border: 1px solid var(--admin-line);
}
.media-edit-preview img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.media-edit-preview small {
  color: var(--admin-text-mute);
  font-size: 0.82rem;
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  📸 GALERIE PHOTOS PREMIUM                                   ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── HERO GALERIE ─────────────────────────────────────── */
.galerie-hero {
  position: relative;
  padding: clamp(140px, 18vw, 200px) 0 clamp(50px, 8vw, 80px);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0e0d 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.galerie-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.galerie-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.galerie-hero__shape--1 {
  top: -10%;
  right: -5%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.30), transparent 60%);
  animation: heroShape1Float 14s ease-in-out infinite;
}
.galerie-hero__shape--2 {
  bottom: -15%;
  left: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.28), transparent 60%);
  animation: heroShape2Float 18s ease-in-out infinite;
}
.galerie-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.galerie-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 22px 0 24px;
}
.galerie-hero__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.galerie-hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
  margin: 0 0 32px;
  max-width: 680px;
}

.galerie-hero__stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.galerie-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}
.galerie-stat small {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 165, 116, 0.85);
}

/* ─── PILLS FILTRES ─────────────────────────────────────── */
.galerie-filters {
  position: sticky;
  top: 76px;
  z-index: 30;
  padding: 18px 0;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.galerie-filters__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.galerie-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--card);
  border: 1.5px solid var(--line-strong);
  border-radius: 100px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.galerie-pill__icon {
  font-size: 1.1em;
  line-height: 1;
}
.galerie-pill span:not(.galerie-pill__icon) {
  display: inline-block;
  padding: 1px 8px;
  background: var(--bg-2);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-mute);
}
.galerie-pill:hover {
  border-color: var(--text-strong);
  background: var(--bg);
  transform: translateY(-2px);
}
.galerie-pill.is-active {
  background: var(--text-strong);
  border-color: var(--text-strong);
  color: var(--bg);
}
.galerie-pill.is-active span:not(.galerie-pill__icon) {
  background: var(--accent);
  color: #fff;
}

/* ─── MOSAÏQUE ─────────────────────────────────────────── */
.galerie-grid-wrap {
  padding: clamp(50px, 7vw, 80px) 0 clamp(80px, 12vw, 130px);
  background: var(--bg);
}

.galerie-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 14px;
}
@media (max-width: 1100px) { .galerie-mosaic { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .galerie-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; } }
@media (max-width: 500px)  { .galerie-mosaic { grid-template-columns: 1fr; grid-auto-rows: 280px; } }

.galerie-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--text-strong);
  cursor: zoom-in;
  transform: translateZ(0);
}

/* Span pour featured / portrait / landscape (mosaïque magazine) */
.galerie-card--featured  { grid-column: span 2; grid-row: span 2; }
.galerie-card--tall      { grid-row: span 2; }
.galerie-card--wide      { grid-column: span 2; }

@media (max-width: 720px) {
  .galerie-card--featured { grid-column: span 2; }
  .galerie-card--wide     { grid-column: span 2; }
}
@media (max-width: 500px) {
  .galerie-card--featured,
  .galerie-card--wide,
  .galerie-card--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.galerie-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.galerie-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
              filter 0.6s ease;
  filter: saturate(0.95);
}

/* Overlay info */
.galerie-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0) 30%,
    rgba(10, 10, 10, 0.30) 60%,
    rgba(10, 10, 10, 0.90) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}

.galerie-card__cat {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 3px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  transform: translateY(8px);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}

.galerie-card__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 10px;
  transform: translateY(8px);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
}

.galerie-card__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  align-self: flex-start;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  transform: translateY(8px);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
              background 0.3s ease;
}

/* Featured plus gros */
.galerie-card--featured .galerie-card__title {
  font-size: 1.6rem;
  line-height: 1.1;
}

.galerie-card__star {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--text-strong);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 14px -3px rgba(212, 165, 116, 0.6);
  z-index: 2;
}

/* HOVER */
.galerie-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.05);
}
.galerie-card:hover .galerie-card__overlay {
  opacity: 1;
}
.galerie-card:hover .galerie-card__cat,
.galerie-card:hover .galerie-card__title,
.galerie-card:hover .galerie-card__view-btn {
  transform: translateY(0);
}
.galerie-card:hover .galerie-card__view-btn {
  background: var(--accent);
  border-color: var(--accent);
}

/* ─── EMPTY STATE ──────────────────────────────────────── */
.galerie-empty {
  text-align: center;
  padding: 80px 20px;
  background: var(--bg-2);
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
}
.galerie-empty__icon {
  color: var(--text-faint);
  margin-bottom: 18px;
}
.galerie-empty h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--text-strong);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.galerie-empty p {
  color: var(--text-mute);
  margin: 0 0 22px;
}

/* ─── CTA fin ──────────────────────────────────────────── */
.galerie-cta-end {
  padding: clamp(60px, 9vw, 90px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.galerie-cta-end__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.galerie-cta-end h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0 0 12px;
}
.galerie-cta-end p {
  color: var(--text-mute);
  margin: 0 0 22px;
}
.galerie-cta-end__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.gm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gm-lightbox.is-open {
  display: flex;
  flex-direction: column;
  opacity: 1;
}

.gm-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.gm-lightbox__close:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05) rotate(90deg);
}

.gm-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.gm-lightbox__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}
.gm-lightbox__nav--prev { left: 18px; }
.gm-lightbox__nav--next { right: 18px; }

.gm-lightbox__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 70px 0;
  overflow: hidden;
}
.gm-lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
  transition: opacity 0.3s ease;
}

.gm-lightbox__caption {
  flex-shrink: 0;
  padding: 22px 60px 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
.gm-lightbox__cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 3px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gm-lightbox__caption h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.gm-lightbox__caption p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
}
.gm-lightbox__caption small {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .gm-lightbox__stage { padding: 70px 16px 0; }
  .gm-lightbox__caption { padding: 16px 18px 24px; }
  .gm-lightbox__caption h3 { font-size: 1.1rem; }
  .gm-lightbox__nav { width: 40px; height: 40px; }
  .gm-lightbox__nav--prev { left: 8px; }
  .gm-lightbox__nav--next { right: 8px; }
}

/* ════════════════════════════════════════════════════════════════
   📸 SECTION GALERIE PREVIEW SUR LA HOME
   ════════════════════════════════════════════════════════════════ */
.home-galerie {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--bg);
}
.home-galerie__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(40px, 6vw, 60px);
}
.home-galerie__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 16px 0 16px;
}
.home-galerie__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.home-galerie__lead {
  color: var(--text-mute);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}

.home-galerie__mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 12px;
}
@media (max-width: 900px) { .home-galerie__mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
@media (max-width: 520px) { .home-galerie__mosaic { grid-template-columns: 1fr; grid-auto-rows: 240px; } }

.home-galerie__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--text-strong);
  text-decoration: none;
  transform: translateZ(0);
}
.home-galerie__item--wide { grid-column: span 2; }
.home-galerie__item--tall { grid-row: span 2; }
@media (max-width: 900px) {
  .home-galerie__item--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .home-galerie__item--wide,
  .home-galerie__item--tall { grid-column: span 1; grid-row: span 1; }
}

.home-galerie__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1),
              filter 0.5s ease;
  filter: saturate(0.92);
}
.home-galerie__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0) 40%,
    rgba(10, 10, 10, 0.85) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.home-galerie__overlay h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.home-galerie__item:hover img {
  transform: scale(1.08);
  filter: saturate(1.05);
}
.home-galerie__item:hover .home-galerie__overlay {
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════════
   ADMIN — Galerie photos (grille + upload)
   ════════════════════════════════════════════════════════════════ */
.admin-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.admin-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: var(--admin-card);
  border: 1.5px solid var(--admin-line);
  border-radius: 100px;
  color: var(--admin-text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.admin-cat-pill:hover {
  border-color: var(--admin-text-strong);
}
.admin-cat-pill.is-active {
  background: var(--admin-text-strong);
  border-color: var(--admin-text-strong);
  color: var(--admin-bg-2);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.media-card {
  background: var(--admin-card);
  border: 1px solid var(--admin-line);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--admin-shadow-xs);
}
.media-card:hover {
  border-color: var(--admin-line-strong);
  transform: translateY(-2px);
  box-shadow: var(--admin-shadow-sm);
}
.media-card.is-inactive {
  opacity: 0.55;
}

.media-card__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--admin-bg);
  overflow: hidden;
}
.media-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card__star {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--admin-gold);
  color: var(--admin-text-strong);
  border-radius: 50%;
  font-weight: 700;
  z-index: 2;
}
.media-card__hidden {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
}

.media-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(10, 10, 10, 0.7);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.media-card:hover .media-card__overlay {
  opacity: 1;
}
.media-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.media-card__btn:hover {
  background: var(--admin-accent);
  border-color: var(--admin-accent);
}
.media-card__btn--danger:hover {
  background: var(--admin-danger);
  border-color: var(--admin-danger);
}

.media-card__info {
  padding: 10px 12px;
}
.media-card__info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--admin-text-strong);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-card__info small {
  display: block;
  margin-top: 4px;
  color: var(--admin-text-mute);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Upload zone multi */
.admin-upload-zone--multi {
  padding: 40px 20px;
}

.files-preview {
  margin-top: 14px;
}
.files-preview:not(.has-files) { display: none; }

.files-preview__header {
  padding: 10px 14px;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.files-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
}
.files-preview__tile {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--admin-bg);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--admin-line);
}
.files-preview__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.files-preview__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 8px;
  font-size: 0.68rem;
}
.files-preview__info small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  🖼️  GALERIE PHOTOS PREMIUM — Mosaïque magazine             ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── HERO GALERIE ─────────────────────────────────────── */
.galerie-hero {
  position: relative;
  padding: clamp(120px, 16vw, 180px) 0 clamp(50px, 7vw, 80px);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
  isolation: isolate;
}

.galerie-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.galerie-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.galerie-hero__shape--1 {
  top: -10%;
  right: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.18), transparent 60%);
  animation: heroShape1Float 16s ease-in-out infinite;
}
.galerie-hero__shape--2 {
  bottom: -15%;
  left: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.25), transparent 60%);
  animation: heroShape2Float 20s ease-in-out infinite;
}

.galerie-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.galerie-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin: 22px 0 22px;
}
.galerie-hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  position: relative;
}
.galerie-hero__title em::after {
  content: '';
  position: absolute;
  inset: -10% -6%;
  background: radial-gradient(ellipse, rgba(194, 65, 12, 0.20) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  animation: titleGlow 4s ease-in-out infinite;
}

.galerie-hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0 0 36px;
  max-width: 620px;
}

/* Stats animées */
.galerie-stats {
  display: flex;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.galerie-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.galerie-stat strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-strong) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.galerie-stat small {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 4px;
}

/* ─── FILTRES CATÉGORIES (pills) ──────────────────────── */
.galerie-filters {
  padding: 24px 0 36px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.galerie-filters__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.galerie-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  --cat-color: var(--accent);
}
.galerie-pill:hover {
  border-color: var(--cat-color);
  color: var(--cat-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -2px rgba(0, 0, 0, 0.1);
}
.galerie-pill.is-active {
  background: var(--cat-color);
  border-color: var(--cat-color);
  color: #fff;
}
.galerie-pill__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
}
.galerie-pill.is-active .galerie-pill__count {
  background: rgba(255, 255, 255, 0.25);
}

/* ─── MOSAÏQUE ASYMÉTRIQUE ──────────────────────────── */
.galerie-grid-section {
  padding: 20px 0 clamp(60px, 9vw, 100px);
  background: var(--bg);
}

.galerie-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 14px;
}
@media (max-width: 1024px) {
  .galerie-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
}
@media (max-width: 600px) {
  .galerie-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
}

/* Items avec tailles asymétriques */
.galerie-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-2);
  cursor: zoom-in;
}
.galerie-item--wide {
  grid-column: span 2;
}
.galerie-item--portrait {
  grid-row: span 2;
}
@media (max-width: 600px) {
  .galerie-item--wide,
  .galerie-item--portrait {
    grid-column: auto;
    grid-row: auto;
  }
}

.galerie-item__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.galerie-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1),
              filter 0.5s ease;
  display: block;
}
.galerie-item:hover .galerie-item__img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.galerie-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg,
    transparent 30%,
    rgba(10, 10, 10, 0) 50%,
    rgba(10, 10, 10, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.galerie-item:hover .galerie-item__overlay {
  opacity: 1;
}

.galerie-item__cat {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 8px;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s;
}
.galerie-item:hover .galerie-item__cat {
  transform: translateY(0);
}

.galerie-item__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.1s;
}
.galerie-item:hover .galerie-item__title {
  transform: translateY(0);
}

.galerie-item__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  border-radius: 50%;
  transform: scale(0.7) rotate(-90deg);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}
.galerie-item:hover .galerie-item__zoom {
  transform: scale(1) rotate(0);
  opacity: 1;
}

/* ─── EMPTY STATE ─────────────────────────────────────── */
.galerie-empty {
  text-align: center;
  padding: 80px 20px;
  background: var(--card);
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  max-width: 580px;
  margin: 0 auto;
}
.galerie-empty__icon {
  color: var(--text-faint);
  margin-bottom: 20px;
}
.galerie-empty h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--text-strong);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.galerie-empty p {
  color: var(--text-mute);
  margin: 0 0 20px;
}

/* ─── CTA FINAL ───────────────────────────────────────── */
.galerie-cta {
  padding: clamp(60px, 9vw, 100px) 0;
  background: var(--bg-2);
  text-align: center;
}
.galerie-cta__inner {
  max-width: 620px;
  margin: 0 auto;
}
.galerie-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 0 0 14px;
}
.galerie-cta h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.galerie-cta p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   LIGHTBOX MODAL — Plein écran avec navigation
   ════════════════════════════════════════════════════════════════ */

.galerie-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.galerie-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.galerie-lightbox__inner {
  max-width: 1200px;
  max-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.galerie-lightbox.is-open .galerie-lightbox__inner {
  transform: scale(1);
}

.galerie-lightbox__image-wrap {
  position: relative;
  max-width: 100%;
  max-height: 75vh;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.6);
}
.galerie-lightbox__image {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}
.galerie-lightbox__image.is-loading {
  opacity: 0.3;
}

.galerie-lightbox__caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
}
.galerie-lightbox__cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 10px;
}
.galerie-lightbox__caption h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 8px;
}
.galerie-lightbox__caption p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Boutons navigation */
.galerie-lightbox__close,
.galerie-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1010;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.galerie-lightbox__close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
}
.galerie-lightbox__close:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(90deg);
}

.galerie-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
}
.galerie-lightbox__nav--prev { left: 24px; }
.galerie-lightbox__nav--next { right: 24px; }
.galerie-lightbox__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.galerie-lightbox__nav--prev:hover {
  transform: translateY(-50%) translateX(-3px);
}
.galerie-lightbox__nav--next:hover {
  transform: translateY(-50%) translateX(3px);
}

/* Compteur */
.galerie-lightbox__counter {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

@media (max-width: 640px) {
  .galerie-lightbox__close,
  .galerie-lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .galerie-lightbox__close { top: 16px; right: 16px; }
  .galerie-lightbox__nav--prev { left: 12px; }
  .galerie-lightbox__nav--next { right: 12px; }
  .galerie-lightbox__counter {
    top: 22px;
    font-size: 0.74rem;
  }
  .galerie-lightbox__caption h3 { font-size: 1.15rem; }
}

/* ════════════════════════════════════════════════════════════════
   ADMIN MEDIAS — Grille upload
   ════════════════════════════════════════════════════════════════ */

/* Filtres catégories admin */
.admin-cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.admin-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--admin-card);
  border: 1px solid var(--admin-line);
  border-radius: 100px;
  color: var(--admin-text);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}
.admin-cat-pill:hover {
  border-color: var(--admin-text-strong);
  background: var(--admin-bg);
}
.admin-cat-pill.is-active {
  background: var(--admin-accent);
  border-color: var(--admin-accent);
  color: #fff;
}
.admin-cat-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
}
.admin-cat-pill.is-active span {
  background: rgba(255, 255, 255, 0.2);
}

/* Grille admin */
.admin-medias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.admin-media-card {
  position: relative;
  background: var(--admin-card);
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--admin-shadow-xs);
  transition: all 0.3s ease;
}
.admin-media-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--admin-shadow-md);
  border-color: var(--admin-line-strong);
}
.admin-media-card.is-inactive {
  opacity: 0.55;
}

.admin-media-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.admin-media-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--admin-bg);
}
.admin-media-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.admin-media-card:hover .admin-media-card__img img {
  transform: scale(1.05);
}

.admin-media-card__star {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--admin-gold);
  color: #fff;
  border-radius: 50%;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px -2px rgba(212, 165, 116, 0.5);
}
.admin-media-card__inactive {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 9px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

.admin-media-card__body {
  padding: 12px 14px;
}
.admin-media-card__body strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--admin-text-strong);
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-media-card__body small {
  display: block;
  color: var(--admin-text-mute);
  font-size: 0.74rem;
}

.admin-media-card__actions {
  display: flex;
  gap: 6px;
  padding: 0 14px 12px;
  justify-content: flex-end;
}

/* ─── UPLOAD MULTI ────────────────────────────────────── */
.admin-multi-upload {
  position: relative;
  min-height: 280px;
  background: var(--admin-bg);
  border: 2px dashed var(--admin-line-strong);
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.admin-multi-upload.is-dragover {
  border-color: var(--admin-accent);
  background: var(--admin-accent-soft);
}

.admin-multi-upload__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  text-align: center;
  color: var(--admin-text-mute);
  cursor: pointer;
}
.admin-multi-upload__placeholder svg {
  color: var(--admin-text-faint);
  margin-bottom: 14px;
}
.admin-multi-upload__placeholder h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--admin-text-strong);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.admin-multi-upload__placeholder p {
  margin: 0 0 12px;
  font-size: 0.95rem;
}
.admin-multi-upload__placeholder small {
  font-size: 0.8rem;
  color: var(--admin-text-faint);
}

.admin-link-btn {
  background: none;
  border: none;
  color: var(--admin-accent);
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.admin-link-btn:hover {
  color: var(--admin-accent-deep);
}
.admin-link-btn--danger {
  color: var(--admin-danger);
  margin-left: auto;
}

.admin-multi-upload__preview {
  padding: 20px;
}
.admin-multi-upload__count {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--admin-line);
  color: var(--admin-text);
}
.admin-multi-upload__count strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--admin-accent);
}

.admin-multi-upload__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
.admin-multi-upload__thumb {
  position: relative;
  background: var(--admin-card);
  border: 1px solid var(--admin-line);
  border-radius: 4px;
  overflow: hidden;
}
.admin-multi-upload__thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.admin-multi-upload__thumb button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.admin-multi-upload__thumb button:hover {
  background: var(--admin-danger);
}
.admin-multi-upload__thumb small {
  display: block;
  padding: 6px 8px;
  font-size: 0.72rem;
  color: var(--admin-text-mute);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Preview édition */
.admin-edit-preview {
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--admin-line);
}
.admin-edit-preview img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  background: var(--admin-bg);
}
.admin-edit-preview__info {
  padding: 10px 14px;
  background: var(--admin-bg);
  border-top: 1px solid var(--admin-line);
}
.admin-edit-preview__info small {
  color: var(--admin-text-mute);
  font-size: 0.8rem;
}

/* ─── PATTERNS AUTOMATIQUES POUR LA MOSAÏQUE ──────────── */
/* Sans avoir besoin de marquer manuellement chaque photo */
@media (min-width: 1025px) {
  .galerie-mosaic .galerie-item:nth-child(7n+1):not(.galerie-item--wide):not(.galerie-item--portrait) {
    grid-row: span 2;
  }
  .galerie-mosaic .galerie-item:nth-child(11n+5):not(.galerie-item--wide):not(.galerie-item--portrait) {
    grid-column: span 2;
  }
}

/* ════════════════════════════════════════════════════════════════
   🔧 FIX : Photos rognées dans la galerie (voiture coupée, etc.)
   ════════════════════════════════════════════════════════════════ */

/* On passe en object-fit: contain pour TOUJOURS voir toute l'image,
   avec un beau fond magazine "cadre photo" */
.galerie-item {
  background: linear-gradient(135deg, #faf8f3 0%, #f0ece2 100%) !important;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.03) !important;
}

.galerie-item__inner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galerie-item__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* On garde cover par défaut */
  display: block;
}

/* Pour les paysages, on ajuste la cellule à 1 colonne mais 2 col span (wide) */
.galerie-item--landscape {
  grid-column: span 2;
}
@media (max-width: 600px) {
  .galerie-item--landscape {
    grid-column: auto;
  }
}

/* Pour les featured très importants, on garde cover (mise en avant) */
.galerie-item--wide {
  grid-column: span 2;
}

/* On garde 1 col 2 rows pour les portraits */
.galerie-item--portrait {
  grid-row: span 2;
}

/* ─── Mode "contain" : si l'utilisateur active le toggle dans l'admin ─── */
/* OU si l'image a un ratio extrême qui rendrait cover trop agressif */
.galerie-item__inner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #faf8f3 0%, #f4f0e6 100%);
}

/* AUTO : si l'image a ratio extrême (très large ou très haute),
   on bascule en contain via aspect-ratio CSS */
@media (min-width: 1025px) {
  .galerie-item--landscape .galerie-item__img,
  .galerie-item--portrait .galerie-item__img {
    object-fit: cover !important; /* Cover OK quand cellule adaptée */
  }
}

/* Si une seule photo dans la mosaïque (cas du user actuel) → centrer + contain */
.galerie-mosaic .galerie-item:only-child {
  max-width: 600px;
  margin: 0 auto;
}
.galerie-mosaic .galerie-item:only-child .galerie-item__img {
  object-fit: contain !important;
  padding: 14px;
  background: linear-gradient(135deg, #faf8f3 0%, #f0ece2 100%);
}

/* Quand peu de photos (2-3), on force aussi contain pour mieux voir */
.galerie-mosaic:has(> .galerie-item:nth-child(-n+3):last-child) .galerie-item__img {
  object-fit: contain;
  padding: 12px;
  background: linear-gradient(135deg, #faf8f3 0%, #f0ece2 100%);
}

/* Mais si y'en a plein, on garde cover pour le côté mosaïque dense */
.galerie-mosaic:has(> .galerie-item:nth-child(4)) .galerie-item__img {
  object-fit: cover !important;
  padding: 0;
}

/* Hover : zoom seulement si cover */
.galerie-item:hover .galerie-item__img {
  transform: scale(1.05);
}
.galerie-mosaic .galerie-item:only-child:hover .galerie-item__img {
  transform: scale(1.02);
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  🏠 SECTION GALERIE PREVIEW (HOME) — Style magazine          ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

.home-galerie {
  position: relative;
  padding: clamp(70px, 10vw, 110px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
  isolation: isolate;
}

.home-galerie__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.home-galerie__shape {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18), transparent 65%);
  border-radius: 50%;
  filter: blur(70px);
  animation: heroShape2Float 22s ease-in-out infinite;
}

.home-galerie > .container {
  position: relative;
  z-index: 1;
}

/* ─── HEADER MAGAZINE 2 COLONNES ──────────────────────── */
.home-galerie__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 60px);
  padding-bottom: clamp(30px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .home-galerie__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.home-galerie__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin: 18px 0 0;
}
.home-galerie__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  position: relative;
}
.home-galerie__title em::after {
  content: '';
  position: absolute;
  inset: -10% -4%;
  background: radial-gradient(ellipse, rgba(194, 65, 12, 0.18) 0%, transparent 70%);
  z-index: -1;
  filter: blur(18px);
  animation: titleGlow 4s ease-in-out infinite;
}

.home-galerie__lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0 0 24px;
}

/* Stats discrètes */
.home-galerie__meta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 16px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-xs);
}
.home-galerie__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-galerie__stat strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-strong) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-galerie__stat small {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 4px;
}
.home-galerie__stat-sep {
  width: 1px;
  height: 30px;
  background: var(--line-strong);
}

/* ─── MOSAÏQUE MAGAZINE ASYMÉTRIQUE ────────────────── */
.home-galerie__mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 14px;
}

@media (max-width: 900px) {
  .home-galerie__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
}
@media (max-width: 560px) {
  .home-galerie__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }
}

/* Cards */
.home-gal-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #faf8f3 0%, #f0ece2 100%);
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  isolation: isolate;
}
.home-gal-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 28px -6px rgba(74, 60, 35, 0.18),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* Hero (1ère photo, prend 2 lignes à gauche) */
.home-gal-card--hero {
  grid-row: span 2;
}
@media (max-width: 900px) {
  .home-gal-card--hero {
    grid-row: auto;
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .home-gal-card--hero {
    grid-column: auto;
  }
}

/* Landscape : 2 colonnes 1 ligne */
.home-gal-card--landscape {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .home-gal-card--landscape { grid-column: span 2; }
}
@media (max-width: 560px) {
  .home-gal-card--landscape { grid-column: auto; }
}

/* Portrait : 1 colonne 2 lignes */
.home-gal-card--portrait {
  grid-row: span 2;
}
@media (max-width: 900px) {
  .home-gal-card--portrait { grid-row: auto; }
}

/* Image wrap */
.home-gal-card__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.home-gal-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1),
              filter 0.5s ease;
  display: block;
}
.home-gal-card:hover .home-gal-card__img {
  transform: scale(1.08);
  filter: brightness(0.65);
}

/* Si peu de photos OU image très différente du ratio cellule → contain */
.home-galerie__mosaic:has(> .home-gal-card:nth-child(-n+2):last-child) .home-gal-card__img {
  object-fit: contain;
  padding: 14px;
}

/* Overlay info */
.home-gal-card__overlay {
  position: absolute;
  inset: 0;
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg,
    transparent 40%,
    rgba(10, 10, 10, 0) 55%,
    rgba(10, 10, 10, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 2;
}
.home-gal-card:hover .home-gal-card__overlay {
  opacity: 1;
}

/* Numéro éditorial en haut à gauche */
.home-gal-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.03em;
  transform: translateX(-8px);
  transition: transform 0.4s ease 0.05s, opacity 0.4s ease;
  opacity: 0;
}
.home-gal-card:hover .home-gal-card__num {
  transform: translateX(0);
  opacity: 1;
}

/* Catégorie pill */
.home-gal-card__cat {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 8px;
  transform: translateY(12px);
  transition: transform 0.4s ease 0.05s;
}
.home-gal-card:hover .home-gal-card__cat {
  transform: translateY(0);
}

/* Titre */
.home-gal-card__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
  transform: translateY(12px);
  transition: transform 0.4s ease 0.1s;
}
.home-gal-card:hover .home-gal-card__title {
  transform: translateY(0);
}

/* Flèche d'action */
.home-gal-card__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  border-radius: 50%;
  transform: scale(0.6) rotate(-45deg);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}
.home-gal-card:hover .home-gal-card__arrow {
  transform: scale(1) rotate(0);
  opacity: 1;
}

/* ─── CTA AVEC LIGNES ÉDITORIALES ────────────────── */
.home-galerie__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: clamp(40px, 5vw, 56px);
}
.home-galerie__cta-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line-strong) 50%, transparent 100%);
}
.home-galerie__cta .btn {
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .home-galerie__cta-line { display: none; }
  .home-galerie__cta {
    justify-content: center;
  }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  🎬 HOME GALLERY V2 — Carrousel + Marquee animé              ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* Désactiver l'ancienne section .home-galerie pour ne pas la dupliquer */
.home-galerie:not(.home-gallery-v2) {
  display: none !important;
}

.home-gallery-v2 {
  position: relative;
  padding: clamp(70px, 10vw, 110px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
  isolation: isolate;
}

/* ─── BACKGROUND DÉCORATIF ────────────────────────── */
.hg2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hg2-bg__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hg2-bg__shape--1 {
  top: 5%;
  right: -8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.18), transparent 65%);
  animation: heroShape1Float 18s ease-in-out infinite;
}
.hg2-bg__shape--2 {
  bottom: 10%;
  left: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.22), transparent 65%);
  animation: heroShape2Float 24s ease-in-out infinite;
}

.home-gallery-v2 > .container,
.home-gallery-v2 > .hg2-marquee {
  position: relative;
  z-index: 1;
}

/* ─── HEADER ──────────────────────────────────────── */
.hg2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}
.hg2-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin: 18px 0 18px;
}
.hg2-title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.hg2-title em::after {
  content: '';
  position: absolute;
  inset: -10% -5%;
  background: radial-gradient(ellipse, rgba(194, 65, 12, 0.22) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  animation: titleGlow 3.5s ease-in-out infinite;
}
.hg2-lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0;
}
.hg2-stats-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  font-weight: 600;
  color: var(--text-strong);
}
.hg2-stats-inline strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--accent);
  font-size: 1.1em;
}
.hg2-stats-inline .hg2-dot {
  color: var(--text-faint);
}

/* ════════════════════════════════════════════════════════════════
   MARQUEE — Bande de photos qui défilent
   ════════════════════════════════════════════════════════════════ */
.hg2-marquee {
  position: relative;
  padding: 26px 0;
  margin-bottom: clamp(40px, 6vw, 60px);
  overflow: hidden;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 165, 116, 0.06) 50%,
    transparent 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hg2-marquee::before,
.hg2-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}
.hg2-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.hg2-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.hg2-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: hg2MarqueeScroll 45s linear infinite;
}
.hg2-marquee:hover .hg2-marquee__track {
  animation-play-state: paused;
}

@keyframes hg2MarqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hg2-marquee__card {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-2);
  text-decoration: none;
  box-shadow: 0 4px 12px -2px rgba(74, 60, 35, 0.08);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
              box-shadow 0.4s ease;
  cursor: pointer;
}
.hg2-marquee__card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px -8px rgba(74, 60, 35, 0.20);
}
.hg2-marquee__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hg2-marquee__card:hover img {
  transform: scale(1.1);
}
.hg2-marquee__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.hg2-marquee__card:hover .hg2-marquee__overlay {
  opacity: 1;
}
.hg2-marquee__cat {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 9px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 5px;
}
.hg2-marquee__label {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: #fff;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .hg2-marquee__card {
    width: 220px;
    height: 160px;
  }
}

/* ════════════════════════════════════════════════════════════════
   CARROUSEL PRINCIPAL
   ════════════════════════════════════════════════════════════════ */
.hg2-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--text-strong);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 60px -16px rgba(74, 60, 35, 0.22);
}

.hg2-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hg2-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hg2-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.08);
  transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 6s linear;
}
.hg2-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.hg2-slide__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hg2-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s linear;
  display: block;
}
/* Ken Burns effect — zoom lent quand active */
.hg2-slide.is-active .hg2-slide__img {
  transform: scale(1.15);
}

.hg2-slide__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(10, 10, 10, 0) 40%,
    rgba(10, 10, 10, 0.65) 75%,
    rgba(10, 10, 10, 0.85) 100%);
  z-index: 1;
}

/* Slide info (caption) */
.hg2-slide__info {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 4vw, 50px);
  max-width: 700px;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
.hg2-slide.is-active .hg2-slide__info {
  transform: translateY(0);
  opacity: 1;
}

.hg2-slide__num {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  opacity: 0.85;
}

.hg2-slide__cat {
  display: inline-block;
  padding: 5px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 14px;
}

.hg2-slide__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
}

.hg2-slide__desc {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 580px;
}

/* ─── Boutons navigation ─────────────────────────── */
.hg2-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hg2-carousel__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 20px -4px rgba(194, 65, 12, 0.45);
}
.hg2-carousel__btn--prev { left: 18px; }
.hg2-carousel__btn--next { right: 18px; }
.hg2-carousel__btn--prev:hover { transform: translateY(-50%) scale(1.08) translateX(-2px); }
.hg2-carousel__btn--next:hover { transform: translateY(-50%) scale(1.08) translateX(2px); }

/* ─── Progress bar autoplay ─────────────────────── */
.hg2-carousel__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.10);
  z-index: 4;
  overflow: hidden;
}
.hg2-carousel__progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
  box-shadow: 0 0 8px rgba(194, 65, 12, 0.6);
}

/* ─── Dots indicators ────────────────────────────── */
.hg2-carousel__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hg2-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hg2-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}
.hg2-dot.is-active {
  width: 28px;
  border-radius: 5px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(194, 65, 12, 0.6);
}

/* ─── Counter "01 / 06" ──────────────────────────── */
.hg2-carousel__counter {
  position: absolute;
  top: 20px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
}
.hg2-carousel__counter strong {
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}
.hg2-carousel__counter em {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ─── CTA final ─────────────────────────────────── */
.hg2-cta {
  text-align: center;
  margin-top: clamp(40px, 5vw, 56px);
}

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 768px) {
  .hg2-carousel__viewport {
    aspect-ratio: 4 / 3;
  }
  .hg2-carousel__btn {
    width: 42px;
    height: 42px;
  }
  .hg2-carousel__btn--prev { left: 12px; }
  .hg2-carousel__btn--next { right: 12px; }
  .hg2-carousel__counter {
    top: 14px;
    right: 14px;
    font-size: 0.78rem;
    padding: 5px 10px;
  }
  .hg2-slide__info {
    padding: 20px;
  }
  .hg2-slide__title {
    font-size: 1.2rem;
  }
  .hg2-slide__desc {
    display: none;
  }
}

@media (max-width: 480px) {
  .hg2-marquee__track {
    animation-duration: 30s;
  }
  .hg2-carousel__viewport {
    aspect-ratio: 1 / 1;
  }
}

/* ════════════════════════════════════════════════════════════════
   🔧 FIX PERFORMANCE — Galerie home (curseur qui lag)
   ════════════════════════════════════════════════════════════════ */

/* ─── Forcer le compositing GPU sur les éléments animés ─── */
.hg2-marquee__track,
.hg2-marquee__card,
.hg2-marquee__card img,
.hg2-slide,
.hg2-slide__img,
.hg2-carousel__btn,
.hg2-carousel__progress-bar,
.hg2-dot {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ─── Désactiver le Ken Burns (trop lourd) ─── */
/* Le double zoom + opacity + transition rendait le rendu très coûteux */
.hg2-slide {
  transition: opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  transform: none !important;
}
.hg2-slide.is-active {
  transform: none !important;
}
.hg2-slide__img {
  transform: none !important;
  transition: none !important;
}
.hg2-slide.is-active .hg2-slide__img {
  transform: none !important;
}

/* ─── Alléger le backdrop-filter (très coûteux) ─── */
.hg2-carousel__btn,
.hg2-carousel__counter {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(0, 0, 0, 0.45) !important;
}
.hg2-carousel__btn:hover {
  background: var(--accent) !important;
}

/* ─── Simplifier les transitions sur les marquee cards ─── */
.hg2-marquee__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.hg2-marquee__card:hover {
  transform: translateY(-3px) translateZ(0) !important;
}
.hg2-marquee__card img {
  transition: transform 0.5s ease !important;
}
.hg2-marquee__card:hover img {
  transform: scale(1.06) translateZ(0) !important;
}

/* ─── Désactiver le filter brightness au hover (très coûteux) ─── */
.hg2-marquee__card:hover img,
.hg2-slide__img {
  filter: none !important;
}

/* ─── Réduire les animations background (halos) sur la section ─── */
.hg2-bg__shape--1,
.hg2-bg__shape--2 {
  animation: none !important;
  opacity: 0.7;
}

/* ─── Désactiver pause-on-hover du marquee (cause de re-layout) ─── */
/* Le marquee continue de défiler, plus stable visuellement */
.hg2-marquee:hover .hg2-marquee__track {
  animation-play-state: running !important;
}

/* ─── Mobile : encore plus léger ─── */
@media (max-width: 768px) {
  .hg2-marquee__track {
    animation-duration: 50s !important;
  }
  .hg2-bg__shape--1,
  .hg2-bg__shape--2 {
    display: none;
  }
}

/* ─── Si l'utilisateur préfère moins d'animations (a11y) ─── */
@media (prefers-reduced-motion: reduce) {
  .hg2-marquee__track {
    animation: none !important;
  }
  .hg2-slide,
  .hg2-slide__img,
  .hg2-slide__info {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   ╔════════════════════════════════════════════════════════════╗
   ║  📜 PAGES LÉGALES — Mentions + Confidentialité              ║
   ╚════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* ─── HERO LÉGAL ──────────────────────────────────────── */
.legal-hero {
  position: relative;
  padding: clamp(120px, 16vw, 180px) 0 clamp(50px, 7vw, 80px);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
  isolation: isolate;
}
.legal-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.legal-hero__shape {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.18), transparent 65%);
  border-radius: 50%;
  filter: blur(70px);
  animation: heroShape1Float 18s ease-in-out infinite;
}

.legal-hero > .container {
  position: relative;
  z-index: 1;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-bottom: 30px;
}
.legal-breadcrumb a {
  color: var(--text-mute);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-breadcrumb a:hover {
  color: var(--accent);
}
.legal-breadcrumb span[aria-hidden] {
  color: var(--text-faint);
}

.legal-hero__inner {
  max-width: 760px;
}
.legal-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin: 22px 0 22px;
}
.legal-hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  position: relative;
}
.legal-hero__title em::after {
  content: '';
  position: absolute;
  inset: -10% -5%;
  background: radial-gradient(ellipse, rgba(194, 65, 12, 0.20) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
}
.legal-hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0 0 22px;
  max-width: 680px;
}
.legal-hero__lead strong {
  color: var(--text-strong);
  font-weight: 600;
}
.legal-hero__update {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-mute);
  margin: 0;
}
.legal-hero__update em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

/* ─── SECTION CONTENU ─────────────────────────────────── */
.legal-section {
  padding: clamp(50px, 7vw, 80px) 0 clamp(80px, 12vw, 130px);
  background: var(--bg);
}

.legal-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ─── TOC SIDEBAR STICKY ──────────────────────────── */
.legal-toc {
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) {
  .legal-toc { position: relative; top: 0; }
}

.legal-toc__inner {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-xs);
}
.legal-toc h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.legal-toc li {
  counter-increment: toc;
  margin: 2px 0;
}
.legal-toc__link {
  display: block;
  padding: 8px 0 8px 28px;
  font-size: 0.88rem;
  color: var(--text-dim);
  text-decoration: none;
  position: relative;
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-left: 2px solid transparent;
  margin-left: -2px;
}
.legal-toc__link::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--text-faint);
  font-weight: 500;
  transition: color 0.25s ease;
}
.legal-toc__link:hover {
  color: var(--text-strong);
  padding-left: 32px;
}
.legal-toc__link:hover::before {
  color: var(--accent);
}
.legal-toc__link.is-active {
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 600;
  padding-left: 32px;
}
.legal-toc__link.is-active::before {
  color: var(--accent);
  font-weight: 600;
}

/* ─── PROSE PRINCIPALE ───────────────────────────── */
.legal-prose {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.legal-prose section {
  position: relative;
  padding-top: clamp(36px, 5vw, 50px);
  margin-bottom: clamp(36px, 5vw, 50px);
  scroll-margin-top: 100px;
  border-top: 1px solid var(--line);
}
.legal-prose section:first-child {
  border-top: none;
  padding-top: 0;
}

.legal-section__num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.legal-prose h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 4px 0 22px;
}

.legal-prose h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 26px 0 12px;
}

.legal-prose p {
  margin: 0 0 18px;
}

.legal-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(194, 65, 12, 0.4);
  transition: text-decoration-color 0.25s ease;
}
.legal-prose a:hover {
  text-decoration-color: var(--accent);
}

.legal-prose strong {
  color: var(--text-strong);
  font-weight: 600;
}

.legal-prose ul {
  margin: 0 0 22px;
  padding-left: 1.5em;
}
.legal-prose li {
  margin-bottom: 8px;
  padding-left: 6px;
}
.legal-prose ul li::marker {
  color: var(--accent);
}

.legal-prose blockquote {
  position: relative;
  margin: 24px 0;
  padding: 18px 24px;
  background: var(--card);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text-strong);
  box-shadow: var(--shadow-xs);
}
.legal-prose blockquote p { margin: 0; }

/* ─── INFO CARDS ──────────────────────────────────── */
.legal-info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 22px 0;
  box-shadow: var(--shadow-xs);
}
.legal-info-card > strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text-strong);
}

.legal-info-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.legal-info-list li {
  padding: 8px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
.legal-info-list li:last-child {
  border-bottom: none;
}
.legal-info-list strong {
  display: inline-block;
  min-width: 140px;
  color: var(--text-mute);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 540px) {
  .legal-info-list strong { display: block; min-width: 0; margin-bottom: 2px; }
}

/* ─── DROITS RGPD (cards) ─────────────────────────── */
.legal-rights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}
@media (max-width: 560px) {
  .legal-rights { grid-template-columns: 1fr; }
}
.legal-right {
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: default;
}
.legal-right:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -4px rgba(194, 65, 12, 0.15);
}
.legal-right strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-strong);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.legal-right small {
  display: block;
  font-size: 0.82rem;
  color: var(--text-mute);
  line-height: 1.4;
}

/* ─── CTA contact en bas de page ──────────────────── */
.legal-contact-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .legal-contact-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
