/*
Theme Name: SIMOES - Noe TONTALE
Description: Theme sur-mesure pour le cabinet de Maitre Marie Simoes
Template: simoesavocat
Version: 1.1
Author: Noe TONTALE
*/

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --c-dark:       #090714;
  --c-dark-2:     #090714;
  --c-gold:       #C9A14F;
  --c-gold-dk:    #A88538;
  --c-gold-lt:    #EFE0C0;
  --c-white:      #FFFFFF;
  --c-offwhite:   #F8F6F2;
  --c-text:       #1C1B2B;
  --c-muted:      #6E6E80;
  --c-border:     #E6DFD4;

  --ff-head: 'Poppins', system-ui, sans-serif;
  --ff-body: 'Poppins', system-ui, sans-serif;

  --ease:   cubic-bezier(.4,0,.2,1);
  --t-fast: .25s var(--ease);
  --t-base: .45s var(--ease);
  --t-slow: .9s  var(--ease);

  --section-py: clamp(3.5rem, 7vw, 6rem);
}

/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.75;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.row       { display: flex; flex-wrap: wrap; margin: 0 -.875rem; }
[class*="col-"] { padding: 0 .875rem; width: 100%; }

@media (min-width: 768px)  { .col-md-6 { width: 50%; } }
@media (min-width: 992px)  {
  .col-lg-4  { width: 33.333%; }
  .col-lg-5  { width: 41.666%; }
  .col-lg-6  { width: 50%; }
  .col-lg-7  { width: 58.333%; }
  .col-lg-8  { width: 66.666%; }
  .col-lg-9  { width: 75%; }
  .col-lg-12 { width: 100%; }
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }
  .d-lg-flex  { display: flex !important; }
}

.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.img-fluid { max-width: 100%; height: auto; }
.d-block { display: block; }

.py-5 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.pt-5 { padding-top: 3.5rem; }
.pb-5 { padding-bottom: 3.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: .5rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }
.ml-sm-3 { margin-left: 1rem; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHIE
═══════════════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-text);
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  color: #1c1b2b;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .875rem;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--c-gold); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   REVEAL — CSS Scroll-Driven Animations
   Visible sans animation si navigateur non compatible
═══════════════════════════════════════════════ */
/* Par defaut : elements visibles (accessibilite, SEO, vieux nav) */
.reveal, .reveal-l, .reveal-r { /* aucun masquage par defaut */ }

/* Animation uniquement si le navigateur supporte les scroll-driven animations */
@supports (animation-timeline: view()) {

  /* ── Durée effective : range court = animation vive ── */
  /* Déclenchement : entry 5% = élément visible à ~30% bas d'écran  */
  /* Fin          : entry 22-28% = animation terminée en quelques px de scroll */

  .reveal {
    animation: snt-up linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 25%;
  }
  .reveal-l {
    animation: snt-left linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 25%;
  }
  .reveal-r {
    animation: snt-right linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 25%;
  }

  /* Stagger — décalage serré */
  .d1 { animation-range: entry  8% entry 28%; }
  .d2 { animation-range: entry 11% entry 31%; }
  .d3 { animation-range: entry 14% entry 34%; }
  .d4 { animation-range: entry 17% entry 37%; }
  .d5 { animation-range: entry 20% entry 40%; }
  .d6 { animation-range: entry 23% entry 43%; }
  .d7 { animation-range: entry 26% entry 46%; }
  .d8 { animation-range: entry 29% entry 49%; }

  /* Reveal scale */
  .reveal-scale {
    animation: snt-scale linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 26%;
  }

  /* Clip-path reveal — images */
  .reveal-clip {
    animation: snt-clip linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 28%;
  }

  /* Eyebrow hors hero */
  :not(.hero) .eyebrow {
    animation: snt-eyebrow linear both;
    animation-timeline: view();
    animation-range: entry 3% entry 20%;
  }

  @keyframes snt-scale {
    from { opacity: 0; transform: scale(.96) translateY(20px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes snt-clip {
    from { clip-path: inset(6% 0 6% 0 round 1.25rem); opacity: 0; }
    to   { clip-path: inset(0% 0 0% 0 round 1.25rem); opacity: 1; }
  }
  @keyframes snt-eyebrow {
    from { opacity: 0; transform: translateX(-14px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes snt-up {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes snt-left {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes snt-right {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes snt-luxury-up {
    from { opacity: 0; transform: translateY(55px) scale(.97); filter: blur(5px); }
    to   { opacity: 1; transform: none; filter: blur(0); }
  }
  @keyframes snt-luxury-left {
    from { opacity: 0; transform: translateX(-55px) scale(.97); filter: blur(4px); }
    to   { opacity: 1; transform: none; filter: blur(0); }
  }
  @keyframes snt-luxury-right {
    from { opacity: 0; transform: translateX(55px) scale(.97); filter: blur(4px); }
    to   { opacity: 1; transform: none; filter: blur(0); }
  }

  /* ── Titres de section ── */
  .block-ti .secondary__title,
  .block-pa-v2 .secondary__title,
  .block-geo h2,
  .block-testimonials .secondary__title,
  .block-articles .secondary__title,
  .section-cta-banner .cta-banner__title {
    animation: snt-luxury-up linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 28%;
  }

  /* ── Colonnes text+image ── */
  .block-ti .ti-col-img {
    animation: snt-luxury-left linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 30%;
  }
  .block-ti .ti-col-content {
    animation: snt-luxury-right linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 30%;
  }

  /* ── Practice area items — stagger serré ── */
  .block-pa-v2 .pa-item-wrap {
    animation: snt-luxury-up linear both;
    animation-timeline: view();
  }
  .block-pa-v2 .pa-item-wrap:nth-child(1) { animation-range: entry  5% entry 25%; }
  .block-pa-v2 .pa-item-wrap:nth-child(2) { animation-range: entry  9% entry 29%; }
  .block-pa-v2 .pa-item-wrap:nth-child(3) { animation-range: entry 13% entry 33%; }
  .block-pa-v2 .pa-item-wrap:nth-child(4) { animation-range: entry 17% entry 37%; }
  .block-pa-v2 .pa-item-wrap:nth-child(5) { animation-range: entry 21% entry 41%; }
  .block-pa-v2 .pa-item-wrap:nth-child(6) { animation-range: entry 25% entry 45%; }

  /* ── Image practice areas ── */
  .pa-img-wrap {
    animation: snt-luxury-right linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 28%;
  }

  /* ── Cartes blog ── */
  .blog-grid .art-card:nth-child(1),
  .single-related__grid .art-card:nth-child(1) { animation: snt-up linear both; animation-timeline: view(); animation-range: entry  5% entry 25%; }
  .blog-grid .art-card:nth-child(2),
  .single-related__grid .art-card:nth-child(2) { animation: snt-up linear both; animation-timeline: view(); animation-range: entry  9% entry 29%; }
  .blog-grid .art-card:nth-child(3),
  .single-related__grid .art-card:nth-child(3) { animation: snt-up linear both; animation-timeline: view(); animation-range: entry 13% entry 33%; }

  /* ── Testimonials ── */
  .testimonial__testimonials .testimonial:nth-child(1) { animation: snt-luxury-up linear both; animation-timeline: view(); animation-range: entry  5% entry 26%; }
  .testimonial__testimonials .testimonial:nth-child(2) { animation: snt-luxury-up linear both; animation-timeline: view(); animation-range: entry  9% entry 30%; }
  .testimonial__testimonials .testimonial:nth-child(3) { animation: snt-luxury-up linear both; animation-timeline: view(); animation-range: entry 13% entry 34%; }

  /* ── CTA banner ── */
  .cta-banner__content { animation: snt-luxury-up    linear both; animation-timeline: view(); animation-range: entry 5% entry 27%; }
  .cta-banner__img-col { animation: snt-luxury-left  linear both; animation-timeline: view(); animation-range: entry 5% entry 27%; }

  /* ── Articles carousel header ── */
  .art-header { animation: snt-luxury-up linear both; animation-timeline: view(); animation-range: entry 5% entry 25%; }

  /* ── Geo section ── */
  .block-geo .snt-geo-legend { animation: snt-up          linear both; animation-timeline: view(); animation-range: entry 5% entry 24%; }
  #snt-geo-map               { animation: snt-luxury-up   linear both; animation-timeline: view(); animation-range: entry 5% entry 28%; }
  .geo-visio                 { animation: snt-up          linear both; animation-timeline: view(); animation-range: entry 5% entry 24%; }
}

/* ═══════════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2.25rem;
  font-family: var(--ff-body);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  transition: all var(--t-base);
  line-height: 1;
}
.btn--gold { background: var(--c-gold); color: var(--c-dark); }
.btn--gold:hover { background: var(--c-gold-dk); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,161,79,.3); }
.btn--outline { background: transparent; color: var(--c-white); border: 1px solid rgba(255,255,255,.38); }
.btn--outline:hover { border-color: var(--c-white); background: rgba(255,255,255,.08); }
.btn-text { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 500; color: var(--c-gold); text-decoration: none; transition: gap var(--t-fast); }
.btn-text:hover { gap: .9rem; color: var(--c-gold-dk); }
.btn-text span { transition: transform var(--t-fast); display: inline-block; }
.btn-text:hover span { transform: translateX(4px); }
.btn--small { padding: .75rem 1.75rem; font-size: .75rem; }
.btn--secondary-fill { background: var(--c-gold); color: var(--c-dark); }
.btn--secondary-fill:hover { background: var(--c-gold-dk); }
.btn--white-fill { background: var(--c-white); color: var(--c-dark); }
.btn--white-fill:hover { background: var(--c-gold-lt); }

/* ═══════════════════════════════════════════════
   TRANSITION DE PAGE — rideau premium
═══════════════════════════════════════════════ */
#snt-curtain {
  position: fixed;
  inset: 0;
  z-index: 999998;
  background: var(--c-dark);
  transform: scaleY(1);
  transform-origin: top;
  animation: snt-curtain-reveal .75s cubic-bezier(.77,0,.18,1) forwards;
  pointer-events: none;
}
@keyframes snt-curtain-reveal {
  0%   { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}
#snt-curtain.is-leaving {
  animation: snt-curtain-cover .55s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes snt-curtain-cover {
  0%   { transform: scaleY(0); transform-origin: bottom; }
  100% { transform: scaleY(1); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════
   CHECKBOX HACK — interrupteur navigation
   Doit etre invisible mais fonctionnel
═══════════════════════════════════════════════ */
.nav-cb {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
  /* on utilise position fixed pour eviter tout impact layout */
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  padding: 1.25rem 0;
  transition: background var(--t-base), padding var(--t-base), box-shadow var(--t-base);
}

/* Header : fond blanc toujours sur pages sans hero */
@supports selector(:has(+ *)) {
  body:not(:has(.hero)) .site-header {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
  }
  body:not(:has(.hero)) .site-header .site-logo { color: var(--c-dark); }
  body:not(:has(.hero)) .site-header .burger__bar { background: var(--c-dark); }
}

/* Header : fond blanc au scroll sur pages avec hero (CSS scroll-driven) */
@supports (animation-timeline: scroll()) and selector(:has(+ *)) {
  body:has(.hero) .site-header {
    animation: snt-header-bg linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 80px;
  }
  body:has(.hero) .site-header .site-logo {
    animation: snt-header-logo linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 80px;
  }
  body:has(.hero) .site-header .burger__bar {
    animation: snt-header-bar linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 80px;
  }
  @keyframes snt-header-bg {
    from { background: transparent; box-shadow: none; }
    to   { background: #ffffff;     box-shadow: 0 2px 16px rgba(0,0,0,.08); }
  }
  @keyframes snt-header-logo {
    from { color: #ffffff; }
    to   { color: var(--c-dark); }
  }
  @keyframes snt-header-bar {
    from { background: #ffffff; }
    to   { background: var(--c-dark); }
  }
}

/* Fallback : navigateurs sans scroll-driven animations → fond blanc fixe */
@supports not (animation-timeline: scroll()) {
  .site-header { background: #ffffff; box-shadow: 0 2px 16px rgba(0,0,0,.08); }
  .site-header .site-logo { color: var(--c-dark); }
  .site-header .burger__bar { background: var(--c-dark); }
}

/* Quand le menu overlay est ouvert → header redevient sombre */
.nav-cb:checked ~ .site-header {
  background: #090714 !important;
  box-shadow: none !important;
  animation: none !important;
}
.nav-cb:checked ~ .site-header .site-logo {
  color: #ffffff !important;
  animation: none !important;
}
.nav-cb:checked ~ .site-header .burger__bar {
  background: #ffffff !important;
  animation: none !important;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; }

.site-logo {
  font-family: var(--ff-head);
  font-size: 2rem; font-weight: 600;
  color: var(--c-white);
  letter-spacing: .04em;
  text-decoration: none;
  z-index: 1;
}
.site-logo strong { color: var(--c-gold); }

/* ═══════════════════════════════════════════════
   BURGER   (label du checkbox)
   Visible sur TOUS les ecrans
═══════════════════════════════════════════════ */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
  z-index: 201;          /* au-dessus de l overlay */
  position: relative;
}
.burger__bar {
  display: block;
  width: 100%; height: 2px;
  background: var(--c-white);
  transform-origin: center;
  transition:
    transform .45s var(--ease),
    opacity   .3s  var(--ease),
    width     .3s  var(--ease);
}

/* Transformation hamburger → croix quand checkbox est coche */
.nav-cb:checked ~ .site-header .burger .burger__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-cb:checked ~ .site-header .burger .burger__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-cb:checked ~ .site-header .burger .burger__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   NAV OVERLAY   — plein ecran, CSS pur
═══════════════════════════════════════════════ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--c-dark);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;

  /* Etat ferme */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity    .55s var(--ease),
    visibility .55s var(--ease);
}

/* Etat ouvert */
.nav-cb:checked ~ .nav-overlay {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

/* Bouton fermeture — croix en haut a droite */
.nav-overlay__close {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  width: 40px; height: 40px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.nav-overlay__close span {
  position: absolute;
  display: block;
  width: 24px; height: 1.5px;
  background: rgba(255,255,255,.65);
  transition: background var(--t-fast);
}
.nav-overlay__close span:first-child  { transform: rotate(45deg); }
.nav-overlay__close span:last-child   { transform: rotate(-45deg); }
.nav-overlay__close:hover span        { background: var(--c-white); }

/* Logo dans l overlay */
.nav-overlay__logo {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--c-white);
  text-decoration: none;
  letter-spacing: .06em;
  text-align: center;

  /* Animation d entree : fade + leger deplacement */
  opacity: 0;
  transform: translateY(-16px);
  transition:
    opacity   .5s  var(--ease) .1s,
    transform .5s  var(--ease) .1s;
}
.nav-overlay__logo::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--c-gold);
  margin: .75rem auto 0;
  transition: width .5s var(--ease) .2s;
}

/* Logo visible quand ouvert */
.nav-cb:checked ~ .nav-overlay .nav-overlay__logo {
  opacity: 1;
  transform: none;
}
.nav-cb:checked ~ .nav-overlay .nav-overlay__logo::after {
  width: 64px;
}

/* Liste du menu */
.nav-overlay__menu {
  list-style: none;
  padding: 0; margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-overlay__menu li {
  overflow: hidden;
}

.nav-overlay__menu li a {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 500;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  padding: .45rem 1rem;
  letter-spacing: .03em;
  transition: color var(--t-fast), letter-spacing var(--t-base);
  position: relative;

  /* Animation d entree des items */
  opacity: 0;
  transform: translateY(24px);
  transition:
    color          var(--t-fast),
    letter-spacing var(--t-base),
    opacity   .55s var(--ease),
    transform .55s var(--ease);
}

.nav-overlay__menu li a:hover {
  color: var(--c-white);
  letter-spacing: .06em;
}

/* Stagger d apparition des liens (nieme enfant) */
.nav-cb:checked ~ .nav-overlay .nav-overlay__menu li:nth-child(1) a { opacity:1; transform:none; transition-delay: .18s; }
.nav-cb:checked ~ .nav-overlay .nav-overlay__menu li:nth-child(2) a { opacity:1; transform:none; transition-delay: .26s; }
.nav-cb:checked ~ .nav-overlay .nav-overlay__menu li:nth-child(3) a { opacity:1; transform:none; transition-delay: .34s; }
.nav-cb:checked ~ .nav-overlay .nav-overlay__menu li:nth-child(4) a { opacity:1; transform:none; transition-delay: .42s; }
.nav-cb:checked ~ .nav-overlay .nav-overlay__menu li:nth-child(5) a { opacity:1; transform:none; transition-delay: .50s; }
.nav-cb:checked ~ .nav-overlay .nav-overlay__menu li:nth-child(6) a { opacity:1; transform:none; transition-delay: .58s; }
.nav-cb:checked ~ .nav-overlay .nav-overlay__menu li:nth-child(7) a { opacity:1; transform:none; transition-delay: .66s; }

/* Ligne decorative sous chaque lien au hover */
.nav-overlay__menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--c-gold);
  transform: translateX(-50%);
  transition: width var(--t-base);
}
.nav-overlay__menu li a:hover::after { width: 60%; }

/* Telephone dans l overlay */
.nav-overlay__phone {
  font-size: 1.35rem;
  color: var(--c-gold);
  margin-top: 1.5rem;
  text-decoration: none;
  display: flex; align-items: center; gap: .5rem;
  transition: color var(--t-fast);
  opacity: 0;
  transition: color var(--t-fast), opacity .5s var(--ease) .6s;
}
.nav-overlay__phone i { color: var(--c-gold); font-size: 1.1rem; }
.nav-cb:checked ~ .nav-overlay .nav-overlay__phone { opacity: 1; }
.nav-overlay__phone:hover { color: var(--c-white); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--c-dark);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  /* Ken Burns : animation CSS pure */
  animation: snt-kb 18s ease-in-out infinite alternate;
}
@keyframes snt-kb {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(9,7,20,.9) 0%,
    rgba(9,7,20,.62) 55%,
    rgba(9,7,20,.22) 100%
  );
}
.hero__inner {
  position: relative; z-index: 2;
  padding: 9rem 0 6rem;
  width: 100%;
}
/* Animations hero : CSS pures (time-based, pas scroll-driven) */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .875rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  animation: snt-up-t .8s var(--ease) .3s both;
}
.hero__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--c-gold); }
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 600; line-height: 1.08;
  color: var(--c-white);
  margin-bottom: 1.25rem;
  animation: snt-up-t .9s var(--ease) .5s both;
}
.hero__title em { font-style: normal; color: var(--c-gold); }
.hero__subtitle {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400; color: rgba(255,255,255,.7);
  margin-bottom: 1.25rem;
  animation: snt-up-t .9s var(--ease) .65s both;
}
.hero__desc {
  font-size: 1rem; color: rgba(255,255,255,.58);
  max-width: 500px; margin-bottom: 2.5rem;
  animation: snt-up-t .9s var(--ease) .8s both;
}
.hero__btns {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: snt-up-t .9s var(--ease) .95s both;
}
/* ── Hero single post ── */
.hero--single {
  min-height: 55vh;
  padding-bottom: 0;
  overflow: visible;
}
.hero__overlay--single {
  background: linear-gradient(
    to bottom,
    rgba(9,7,20,.55) 0%,
    rgba(9,7,20,.70) 60%,
    rgba(9,7,20,.82) 100%
  );
}
.hero__inner--single {
  text-align: center;
  padding: 9rem 0 5rem;
}
.hero__title--single {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
}
/* Badge auteur centré qui chevauche le contenu suivant */
.hero__author-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 3;
}
.hero__author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  display: block;
}
/* Décale le contenu après le hero pour l'avatar qui dépasse */
.hero--single + * { padding-top: calc(40px + 2rem) !important; }

/* GIF Justitia colonne droite */
.hero__gif-col { display: flex; align-items: center; justify-content: center; padding-top: 2rem; }
.hero__gif {
  max-height: 72vh;
  width: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 0 18px rgba(201,161,79,.18));
  animation: snt-up-t .9s var(--ease) .3s both;
}
@media (max-width: 991px) { .hero__gif-col { display: none; } }

.hero__scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.35);
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  animation: snt-float 2.5s ease-in-out infinite 2s;
  z-index: 2;
}
.hero__scroll-hint span { width: 1px; height: 36px; background: linear-gradient(var(--c-gold), transparent); }
.hero__breadcrumb { font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; }
.hero__breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--t-fast); }
.hero__breadcrumb a:hover { color: var(--c-gold); }
.hero__breadcrumb .rank-math-breadcrumb p { margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; }
.hero__breadcrumb .rank-math-breadcrumb .separator { color: rgba(255,255,255,.25); }
#breadcrumb { font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; }
#breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--t-fast); }
#breadcrumb a:hover { color: var(--c-gold); }
@keyframes snt-up-t   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes snt-float  { 0%,100% { transform: translateX(-50%); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ═══════════════════════════════════════════════
   TITRES DE SECTION
═══════════════════════════════════════════════ */
.block-sh { padding: var(--section-py) 0; }
.secondary__title {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 600; line-height: 1.15;
  color: var(--c-text);
}
.secondary__title span {
  display: block;
  font-family: var(--ff-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .6rem;
}
.secondary__title--center { text-align: center; }

/* ═══════════════════════════════════════════════
   TEXT + IMAGE
═══════════════════════════════════════════════ */
.block-ti { padding: var(--section-py) 0; }

/* Grid 2 colonnes */
.ti-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 992px) {
  .ti-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
  .ti-grid--reverse .ti-col-img  { order: 2; }
  .ti-grid--reverse .ti-col-content { order: 1; }
  .ti-col-img { position: sticky; top: 100px; align-self: start; }
}

/* Image principale — coins arrondis */
.ti-main-img {
  width: 100%;
  height: clamp(340px, 48vw, 540px);
  object-fit: cover;
  object-position: top center;
  border-radius: 1.25rem;
  display: block;
}

/* Colonne contenu */
.ti-col-content { display: flex; flex-direction: column; gap: 2rem; }
.ti-content .secondary__title { margin-bottom: 1.25rem; }

/* Bloc CTA — image + carte superposée */
.ti-cta-block { position: relative; border-radius: 1.25rem; overflow: hidden; }
.ti-cta-img { width: 100%; height: 300px; object-fit: cover; display: block; }
.ti-cta-card {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  background: var(--c-white);
  border-radius: .875rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}
.ti-cta-card--flat {
  position: static;
  background: var(--c-offwhite);
  border: 1px solid var(--c-border);
  border-radius: .875rem;
  padding: 1.75rem;
  box-shadow: none;
}
.ti-cta-card__title { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; color: var(--c-text); margin-bottom: 1.25rem; line-height: 1.3; }
.ti-cta-card__btns { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

/* Variantes boutons */
.btn--dark  { background: var(--c-dark); color: var(--c-white); }
.btn--dark:hover  { background: #1a1a2e; color: var(--c-gold); }
.btn--white { background: var(--c-white); color: var(--c-dark); }
.btn--white:hover { background: var(--c-offwhite); color: var(--c-dark); }

.ti-content { padding: 0; }
.paragraph { font-size: 1rem; color: var(--c-text); line-height: 1.82; margin-bottom: 2rem; }
.paragraph a { color: var(--c-gold); }
.paragraph ul, .paragraph ol { margin: .75rem 0 1rem; }
.paragraph ul li, .paragraph ol li { position: relative; padding-left: 1.25rem; margin-bottom: .4rem; font-size: 1rem; color: var(--c-text); }
.paragraph ul li::before { content: '—'; position: absolute; left: 0; color: var(--c-gold); }
.paragraph ol { counter-reset: ol-cnt; }
.paragraph ol li { list-style: none; }
.paragraph ol li::before { content: counter(ol-cnt) '.'; counter-increment: ol-cnt; position: absolute; left: 0; color: var(--c-gold); font-weight: 600; font-size: .85rem; }

/* ═══════════════════════════════════════════════
   DOMAINES DE PRATIQUE
═══════════════════════════════════════════════ */
.block-pa {
  padding: var(--section-py) 0;
  background: var(--c-offwhite);
  position: relative;
}
.block-pa::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold) 0%, transparent 60%);
}
.block-pa .head-wrap { margin-bottom: 2.5rem; }
.practice-area { max-width: 820px; margin: 0 auto; }
.practice-area__item { border-bottom: 1px solid var(--c-border); }
.practice-area__item:first-child { border-top: 1px solid var(--c-border); }
.practice-area__cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 0;
  text-decoration: none; color: var(--c-text);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.practice-area__cta:hover { color: var(--c-gold); padding-left: .5rem; }
.practice-area__item:hover { border-color: var(--c-gold); }
.practice-area__title { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 500; margin: 0; }
.practice-area__btn .btn-text { font-size: .8rem; color: var(--c-gold); }

/* ═══════════════════════════════════════════════
   DOMAINES DE PRATIQUE v2  — 2 colonnes
═══════════════════════════════════════════════ */
.block-pa-v2 {
  padding: var(--section-py) 0;
  background: var(--c-offwhite);
  position: relative;
}
.block-pa-v2::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold) 0%, transparent 60%);
}
.pa-header { margin-bottom: 2rem; }
.pa-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}
.pa-list { display: flex; flex-direction: column; }
.pa-item-wrap { border-bottom: 1px solid var(--c-border); }
.pa-item-wrap:first-child { border-top: 1px solid var(--c-border); }
.pa-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 0;
  text-decoration: none;
  transition: padding-left var(--t-fast);
}
.pa-item:hover { padding-left: .375rem; }
.pa-item__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,161,79,.3);
  background: rgba(201,161,79,.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--c-gold);
  font-size: .9rem;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.pa-item:hover .pa-item__icon {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-white);
}
.pa-item__title {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-text);
  transition: color var(--t-fast);
}
.pa-item:hover .pa-item__title { color: var(--c-gold); }
.pa-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;
}
.pa-img {
  max-width: 100%;
  max-height: 600px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 2rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.13);
}
@media (max-width: 991px) { .pa-img-wrap { padding-left: 0; margin-top: 2.5rem; } }

/* ═══════════════════════════════════════════════
   WYSIWYG
═══════════════════════════════════════════════ */
.block-wy { padding: var(--section-py) 0; }
.post { max-width: 820px; margin: 0 auto; }
.post h2 { color: #1c1b2b !important; margin-bottom: .875rem; margin-top: 1.5rem; }
.post img { display: block; margin: 2rem auto; max-width: 100%; width: 100%; height: auto; border-radius: 1rem; object-fit: cover; }
.post h3,.post h4,.post h5,.post h6 { color: var(--c-gold) !important; margin-bottom: .875rem; margin-top: 1.5rem; }
.post p { font-size: 1rem; color: var(--c-text); line-height: 1.82; margin-bottom: 1.1rem; }
.post a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 3px; }
.post ul li,.post ol li { font-size: 1rem; color: var(--c-text); padding-left: 1.25rem; position: relative; margin-bottom: .4rem; }
.post ul li::before { content: '—'; position: absolute; left: 0; color: var(--c-gold); }

/* ═══════════════════════════════════════════════
   ARTICLES
═══════════════════════════════════════════════ */
.block-articles { padding: var(--section-py) 0; }
.section-blog__post-cat { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--c-gold); text-decoration: none; margin-bottom: .75rem; display: inline-block; }
.section-blog__post-title a { font-family: var(--ff-head); font-size: 1.35rem; color: var(--c-text); transition: color var(--t-fast); text-decoration: none; }
.section-blog__post-title a:hover { color: var(--c-gold); }
.section-blog__post-excerpt { font-size: .92rem; color: var(--c-muted); line-height: 1.78; }
.section-blog__post { background: var(--c-white); border: 1px solid var(--c-border); overflow: hidden; transition: box-shadow var(--t-base), transform var(--t-base); }
.section-blog__post:hover { box-shadow: 0 12px 36px rgba(0,0,0,.08); transform: translateY(-4px); }
.section-blog__post-header { overflow: hidden; }
.section-blog__post-header img { width: 100%; transition: transform var(--t-slow); }
.section-blog__post:hover .section-blog__post-header img { transform: scale(1.04); }
.section-blog__post-body { padding: 1.5rem; }
.section-blog__post--small .section-blog__post-body { padding: 1rem; }
.section-blog__post--small .section-blog__post-title a { font-size: 1.05rem; }

/* ═══════════════════════════════════════════════
   ARTICLES CAROUSEL — cartes
═══════════════════════════════════════════════ */
.art-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.art-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.08); transform: translateY(-4px); }
.art-card__img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.art-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); display: block; }
.art-card:hover .art-card__img { transform: scale(1.04); }
.art-card__img-placeholder { width: 100%; height: 100%; background: var(--c-offwhite); }
.art-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.art-card__cat { font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--c-gold); text-decoration: none; }
.art-card__title { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; line-height: 1.3; margin: 0; }
.art-card__title a { color: var(--c-text); text-decoration: none; transition: color var(--t-fast); }
.art-card__title a:hover { color: var(--c-gold); }
.art-card__excerpt { font-size: .85rem; color: var(--c-muted); line-height: 1.7; margin: 0; flex: 1; }
.art-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.art-header__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--c-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t-fast), gap var(--t-fast);
}
.art-header__cta span { font-size: 1.1rem; transition: transform var(--t-fast); display: inline-block; }
.art-header__cta:hover { color: var(--c-gold); gap: .7rem; }
.art-header__cta:hover span { transform: translateX(3px); }

/* ═══════════════════════════════════════════════
   TEMOIGNAGES
═══════════════════════════════════════════════ */
.block-testimonials {
  padding: var(--section-py) 0;
  background: var(--c-dark-2);
  position: relative; overflow: hidden;
}
.block-testimonials::before {
  content: '"';
  position: absolute; top: -4rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-head); font-size: 22rem;
  color: rgba(255,255,255,.025);
  line-height: 1; pointer-events: none; user-select: none;
}
.block-testimonials .secondary__title--center { color: var(--c-white); }
.block-testimonials .secondary__title span { color: var(--c-gold-lt); }
.testimonial__testimonials {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem;
}
@media (min-width: 768px)  { .testimonial__testimonials { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1100px) { .testimonial__testimonials { grid-template-columns: repeat(3,1fr); } }
.testimonial {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color var(--t-base), transform var(--t-base);
}
.testimonial:hover { border-color: var(--c-gold); transform: translateY(-4px); }
.testimonial__quote { font-family: var(--ff-head); font-size: 3rem; color: var(--c-gold); line-height: 1; opacity: .6; }
.testimonial__text { font-size: .93rem; color: #ffffff; line-height: 1.82; flex: 1; }
.testimonial__footer { display: flex; align-items: center; gap: 1rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem; }
.testimonial__img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c-gold); }
.testimonial__name { font-size: .88rem; font-weight: 600; color: var(--c-white); }
.testimonial__position { font-size: .76rem; color: rgba(255,255,255,.4); }
.testimonial__body { display: flex; align-items: center; gap: 1rem; }

/* ═══════════════════════════════════════════════
   FAQ — HTML natif <details>/<summary>  (aucun JS)
═══════════════════════════════════════════════ */
.block-faq { padding: var(--section-py) 0; }
.faq-title { font-family: var(--ff-head); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 2rem; }
.faq { max-width: 820px; margin: 0 auto; }

.faq details {
  border-bottom: 1px solid var(--c-border);
}
.faq details:first-child { border-top: 1px solid var(--c-border); }

.faq details summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  font-family: var(--ff-head);
  font-size: 1.2rem; font-weight: 500;
  color: var(--c-text);
  cursor: pointer;
  transition: color var(--t-fast);
  user-select: none;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::marker { display: none; }
.faq details summary:hover { color: var(--c-gold); }

/* Icone +  qui pivote en x quand ouvert */
.faq details summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--c-border);
  display: inline-flex; align-items: center; justify-content: center;
  font-style: normal; font-family: var(--ff-body);
  font-size: 1.3rem; font-weight: 300; line-height: 1;
  color: var(--c-gold);
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.faq details[open] summary::after {
  content: '+';
  transform: rotate(45deg);
  background: var(--c-gold);
  color: var(--c-white);
  border-color: var(--c-gold);
}
.faq details[open] summary { color: var(--c-gold); }
.faq details[open] { border-color: var(--c-gold); }

.faq-answer {
  padding: 0 0 1.5rem 0;
  font-size: .95rem; color: var(--c-text); line-height: 1.82;
}

/* Animation ouverture/fermeture — CSS uniquement */
@supports (interpolate-size: allow-keywords) {
  .faq details { interpolate-size: allow-keywords; }
  .faq-answer {
    height: 0; overflow: hidden;
    transition: height .35s var(--ease);
  }
  details[open] .faq-answer { height: auto; }
}

/* ═══════════════════════════════════════════════
   GEO MAP  (Leaflet)
═══════════════════════════════════════════════ */
.block-geo { padding: var(--section-py) 0; background: var(--c-offwhite); }
.block-geo h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
#snt-geo-map {
  height: 520px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.snt-geo-tip {
  background: var(--c-dark) !important;
  color: var(--c-white) !important;
  border: none !important;
  font-family: var(--ff-body) !important;
  font-size: .82rem !important;
  padding: .45rem .85rem !important;
  border-radius: 3px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.25) !important;
}
.snt-geo-tip::before { display: none !important; }
.snt-geo-popup .leaflet-popup-content-wrapper {
  background: var(--c-dark);
  color: var(--c-white);
  border-radius: 4px;
  border: 1px solid rgba(201,161,79,.3);
  font-family: var(--ff-body);
  font-size: .88rem;
  line-height: 1.6;
}
.snt-geo-popup .leaflet-popup-content strong { color: var(--c-gold); display: block; margin-bottom: .3rem; }
.snt-geo-popup .leaflet-popup-tip { background: var(--c-dark); }
.snt-geo-popup .leaflet-popup-close-button { color: rgba(255,255,255,.5) !important; }
@media (max-width: 767px) { #snt-geo-map { height: 360px; } }

/* Bandeau visio */
.geo-visio {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.1rem 1.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-gold);
  border-radius: 4px;
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.6;
}
.geo-visio__icon { font-size: 1.4rem; flex-shrink: 0; }
.geo-visio p { margin: 0; }
.geo-visio strong { color: var(--c-text); }
.geo-visio__btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .75rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--c-gold);
  text-decoration: none;
  transition: gap var(--t-fast), color var(--t-fast);
}
.geo-visio__btn span { transition: transform var(--t-fast); display: inline-block; }
.geo-visio__btn:hover { color: var(--c-gold-dk); gap: .7rem; }
.geo-visio__btn:hover span { transform: translateX(3px); }

/* Grille SEO statique sous la carte */
.geo-seo-grid {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
}
.geo-seo-grid__intro {
  font-size: .82rem;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
}
.geo-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  /* override display:block from the margin/padding rules above */
}
.geo-seo-grid__intro {
  grid-column: 1 / -1;
}
.geo-seo-grid__group {}
.geo-seo-grid__dept {
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.geo-seo-grid__dept a {
  color: var(--c-text);
  text-decoration: none;
  transition: color var(--t-fast);
}
.geo-seo-grid__dept a:hover { color: var(--c-gold); }
.geo-seo-grid__dept span { color: var(--c-muted); }
.geo-seo-grid__villes {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.geo-seo-grid__villes li { font-size: .78rem; }
.geo-seo-grid__villes li a {
  color: var(--c-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}
.geo-seo-grid__villes li a:hover { color: var(--c-gold); }
.geo-seo-grid__villes li span { color: var(--c-border); }
.snt-geo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: .75rem;
}
.snt-geo-legend__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--c-muted);
}
.snt-geo-legend__dot {
  width: 16px; height: 16px;
  border-radius: 3px;
  background: rgba(201,161,79,.12);
  border: 1.5px solid rgba(201,161,79,.4);
  flex-shrink: 0;
}
.snt-geo-legend__dot--active {
  background: rgba(201,161,79,.30);
  border-color: var(--c-gold);
}

/* ═══════════════════════════════════════════════
   IMAGES
═══════════════════════════════════════════════ */
.block-images { padding: var(--section-py) 0; }
.component-images img { margin: 0 auto; }

/* ═══════════════════════════════════════════════
   BANNER CTA "ÊTRE RAPPELÉ" + FOOTER
═══════════════════════════════════════════════ */

/* (toggle géré en JS vanilla inline) */

/* Banner */
.section-cta-banner { background: var(--c-dark-2); overflow: hidden; }
.cta-banner__inner  { display: flex; align-items: stretch; min-height: 220px; }

/* Image diagonale gauche */
.cta-banner__img-col {
  flex: 0 0 40%;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
  overflow: hidden;
}
.cta-banner__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* Contenu droit */
.cta-banner__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Décor lauriers */
.cta-banner__deco {
  position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  color: var(--c-gold); opacity: .15; pointer-events: none;
}

/* Texte + actions */
.cta-banner__text { position: relative; z-index: 1; }
.cta-banner__actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; justify-content: center; margin-top: .25rem; }
.cta-banner__call   { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.cta-banner__title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 600; color: var(--c-white);
  line-height: 1.2; margin: .5rem 0 1.5rem;
}

/* Bouton */
.cta-banner__btn {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .8rem 1.75rem; font-size: .8rem;
  cursor: pointer; border: none; width: fit-content;
}
.cta-banner__btn-plus {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: rgba(255,255,255,.25); font-size: 1.1rem; line-height: 1;
  transition: transform var(--t-fast);
}
/* rotation du + en × gérée en JS */

/* Formulaire de rappel — hidden par défaut, .is-open révèle */
.cta-banner__form-wrap { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .5s var(--ease), opacity .4s var(--ease); position: relative; z-index: 1; }
.cta-banner__form-wrap.is-open { max-height: 400px; opacity: 1; }
.cta-banner__form { padding-top: .5rem; }

/* WPForms inline dans le banner */
.cta-banner__form .wpforms-form .wpforms-field-container { display: flex; flex-wrap: wrap; gap: .75rem; }
.cta-banner__form .wpforms-form .wpforms-field { margin: 0 !important; flex: 1 1 200px; }
.cta-banner__form .wpforms-form .wpforms-field-label { color: rgba(255,255,255,.65); font-size: .78rem; margin-bottom: .3rem; }
.cta-banner__form .wpforms-form input { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: var(--c-white); padding: .7rem 1rem; width: 100%; font-family: var(--ff-body); font-size: .9rem; outline: none; transition: border-color var(--t-fast); }
.cta-banner__form .wpforms-form input::placeholder { color: rgba(255,255,255,.35); }
.cta-banner__form .wpforms-form input:focus { border-color: var(--c-gold); }
.cta-banner__form .wpforms-submit-container { margin-top: .75rem; }
.cta-banner__form .wpforms-form button[type="submit"] { background: var(--c-gold); color: var(--c-dark); padding: .75rem 2rem; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; border: none; cursor: pointer; transition: background var(--t-fast); white-space: nowrap; }
.cta-banner__form .wpforms-form button[type="submit"]:hover { background: var(--c-gold-dk); }
.cta-banner__form .wpforms-confirmation-container { color: var(--c-gold); font-weight: 500; padding: 1rem 0; }

/* WPForms styles globaux (hors banner) */
.wpforms-container input,.wpforms-container textarea,.wpforms-container select { width: 100%; padding: .75rem 1rem; border: 1px solid var(--c-border); font-family: var(--ff-body); font-size: .9rem; color: var(--c-text); background: var(--c-white); transition: border-color var(--t-fast); outline: none; }
.wpforms-container input:focus,.wpforms-container textarea:focus { border-color: var(--c-gold); }
.wpforms-container button[type="submit"] { background: var(--c-gold); color: var(--c-dark); padding: .875rem 2.25rem; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; border: none; cursor: pointer; transition: all var(--t-base); }
.wpforms-container button[type="submit"]:hover { background: var(--c-gold-dk); }

/* Responsive */
@media (max-width: 767px) {
  .cta-banner__img-col { display: none; }
  .cta-banner__content { padding: 2.5rem 1.5rem; }
  .cta-banner__form .wpforms-form .wpforms-field-container { flex-direction: column; }
}

.site-footer { background: var(--c-dark); color: var(--c-white); }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
@media (min-width: 768px)  { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 2rem 2.5rem; } }
.footer-brand-name { font-family: var(--ff-head); font-size: 1.3rem; color: var(--c-white); margin-bottom: 1rem; }
.footer-brand-name strong { color: var(--c-gold); }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.42); line-height: 1.75; }
.footer-head { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 1.25rem; }
.footer__nav { display: flex; flex-direction: column; gap: .65rem; list-style: none; }
.footer__nav li a, .footer__nav li span { font-size: .875rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color var(--t-fast); }
.footer__nav li a:hover { color: var(--c-white); }
.footer__nav li span { cursor: default; }
.footer-contact-list { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: rgba(255,255,255,.45); }
.footer-contact-list i { color: var(--c-gold); flex-shrink: 0; margin-top: .15rem; font-size: .85rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1.5rem 0; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-copy a { color: rgba(255,255,255,.38); text-decoration: underline; }
.footer-copy a:hover { color: var(--c-gold); }

/* ═══════════════════════════════════════════════
   BLOG ARCHIVE — en-tête + grille + pagination
═══════════════════════════════════════════════ */

/* En-tête */
.blog-header {
  padding: 7rem 0 3.5rem;
  background: var(--c-dark);
  text-align: center;
}
.blog-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-white);
  margin: .5rem 0 .875rem;
}
.blog-header__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  max-width: 560px;
  margin: 0 auto;
}

/* Grille */
.blog-grid-section { padding: 3.5rem 0 5rem; background: var(--c-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Pagination */
.blog-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.blog-pagination .page-numbers {
  display: inline-flex;
  list-style: none;
  gap: .5rem;
  padding: 0; margin: 0;
}
.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .75rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--c-text);
  border: 1px solid var(--c-border);
  text-decoration: none;
  transition: all var(--t-fast);
}
.blog-pagination .page-numbers li a:hover { border-color: var(--c-gold); color: var(--c-gold); }
.blog-pagination .page-numbers li .current { background: var(--c-gold); color: var(--c-dark); border-color: var(--c-gold); font-weight: 600; }

/* ═══════════════════════════════════════════════
   SINGLE POST — contenu + auteur + similaires
═══════════════════════════════════════════════ */
.single-body { padding: 3.5rem 0 4rem; }
.single-body__inner { max-width: 780px; margin: 0 auto; }

/* Méta */
.single-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-border);
}
.single-meta__cat {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-gold);
  text-decoration: none;
  background: rgba(201,161,79,.08);
  border: 1px solid rgba(201,161,79,.25);
  padding: .3rem .75rem;
  border-radius: 2px;
}
.single-meta__date { font-size: .82rem; color: var(--c-muted); }

/* Bloc auteur */
.single-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 1.75rem;
  background: var(--c-offwhite);
  border-left: 3px solid var(--c-gold);
}
.single-author__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-gold);
}
.single-author__name {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: .3rem;
}
.single-author__bio { font-size: .85rem; color: var(--c-muted); line-height: 1.65; margin: 0; }

/* Articles similaires */
.single-related { padding: 3rem 0 4rem; background: var(--c-offwhite); }
.single-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ═══════════════════════════════════════════════
   DÉCORS DE FOND — profondeur et luxe
═══════════════════════════════════════════════ */

/* Text+image : halo doré arrière-droit */
.block-ti { overflow: hidden; }
.block-ti::after {
  content: '';
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,79,.07) 0%, transparent 65%);
  top: 50%; right: -22%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Domaines de pratique : § en filigrane */
.block-pa-v2 { overflow: hidden; }
.block-pa-v2::after {
  content: ' A7';
  position: absolute;
  font-family: var(--ff-head);
  font-size: 34rem;
  font-weight: 700;
  color: rgba(201,161,79,.045);
  right: 1%; bottom: -8rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Témoignages : anneaux concentriques décoratifs */
.block-testimonials::after {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(201,161,79,.07);
  bottom: -18%; right: -6%;
  pointer-events: none;
}
.block-testimonials .testimonial__inner-ring {
  /* ring 2 via box-shadow de ::after */
}

/* FAQ : grand point d'interrogation en filigrane */
.block-faq { overflow: hidden; }
.block-faq::before {
  content: '?';
  position: absolute;
  font-family: var(--ff-head);
  font-size: 32rem;
  font-weight: 700;
  color: rgba(201,161,79,.035);
  right: -1rem; top: -6rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* CTA banner : réseau de lignes diagonales */
.section-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 58px,
    rgba(201,161,79,.03) 58px,
    rgba(201,161,79,.03) 59px
  );
  pointer-events: none;
}

/* Section geo : grille de points en fond */
.block-geo { position: relative; overflow: hidden; }
.block-geo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,161,79,.20) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: .3;
}

/* ═══════════════════════════════════════════════
   MICRO-INTERACTIONS AU SURVOL
═══════════════════════════════════════════════ */

/* Shimmer sweep sur bouton doré */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::before {
  content: '';
  position: absolute;
  top: 0; left: -110%;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transition: left .6s cubic-bezier(.4,0,.2,1);
}
.btn--gold:hover::before { left: 190%; }

/* Bouton dark : bordure or au survol */
.btn--dark { transition: background var(--t-base), color var(--t-base), box-shadow var(--t-base); }
.btn--dark:hover { box-shadow: inset 0 0 0 1px var(--c-gold); }

/* Items practice area : fond léger au survol */
.pa-item-wrap { transition: background var(--t-fast); }
.pa-item-wrap:hover { background: rgba(201,161,79,.04); padding-left: .375rem; }

/* Témoignage : lueur or subtile */
.testimonial { transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base); }
.testimonial:hover { box-shadow: 0 20px 50px rgba(201,161,79,.10); }

/* Lien footer : décalage à droite */
.footer__nav li a { display: inline-block; transition: color var(--t-fast), transform var(--t-fast); }
.footer__nav li a:hover { transform: translateX(4px); }

/* FAQ : léger fond doré sur la ligne survolée */
.faq details summary { transition: color var(--t-fast), background var(--t-fast); border-radius: 4px; padding-left: .25rem; padding-right: .25rem; }
.faq details summary:hover { background: rgba(201,161,79,.04); }

/* btn-text : flèche plus dynamique */
.btn-text:hover { letter-spacing: .02em; }

/* ═══════════════════════════════════════════════
   ANIMATIONS SCROLL — éléments supplémentaires
═══════════════════════════════════════════════ */
@supports (animation-timeline: view()) {

  /* Paragraphes de contenu */
  .paragraph {
    animation: snt-luxury-up linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 26%;
  }

  /* Blocs CTA card (text+image) */
  .ti-cta-block {
    animation: snt-luxury-up linear both;
    animation-timeline: view();
    animation-range: entry 8% entry 28%;
  }

  /* FAQ items — stagger serré */
  .faq details:nth-child(1)  { animation: snt-up linear both; animation-timeline: view(); animation-range: entry  5% entry 24%; }
  .faq details:nth-child(2)  { animation: snt-up linear both; animation-timeline: view(); animation-range: entry  8% entry 27%; }
  .faq details:nth-child(3)  { animation: snt-up linear both; animation-timeline: view(); animation-range: entry 11% entry 30%; }
  .faq details:nth-child(4)  { animation: snt-up linear both; animation-timeline: view(); animation-range: entry 14% entry 33%; }
  .faq details:nth-child(5)  { animation: snt-up linear both; animation-timeline: view(); animation-range: entry 17% entry 36%; }
  .faq details:nth-child(n+6){ animation: snt-up linear both; animation-timeline: view(); animation-range: entry 20% entry 39%; }

  /* Groupes géo grid — stagger serré */
  .geo-seo-grid__group:nth-child(1) { animation: snt-up linear both; animation-timeline: view(); animation-range: entry  5% entry 24%; }
  .geo-seo-grid__group:nth-child(2) { animation: snt-up linear both; animation-timeline: view(); animation-range: entry  8% entry 27%; }
  .geo-seo-grid__group:nth-child(3) { animation: snt-up linear both; animation-timeline: view(); animation-range: entry 11% entry 30%; }
  .geo-seo-grid__group:nth-child(4) { animation: snt-up linear both; animation-timeline: view(); animation-range: entry 14% entry 33%; }
  .geo-seo-grid__group:nth-child(n+5){ animation: snt-up linear both; animation-timeline: view(); animation-range: entry 17% entry 36%; }

  /* Colonnes footer */
  .footer-inner > div:nth-child(1) { animation: snt-luxury-up linear both; animation-timeline: view(); animation-range: entry  5% entry 24%; }
  .footer-inner > div:nth-child(2) { animation: snt-luxury-up linear both; animation-timeline: view(); animation-range: entry  9% entry 28%; }
  .footer-inner > div:nth-child(3) { animation: snt-luxury-up linear both; animation-timeline: view(); animation-range: entry 13% entry 32%; }
  .footer-inner > div:nth-child(4) { animation: snt-luxury-up linear both; animation-timeline: view(); animation-range: entry 17% entry 36%; }

  /* Auteur post single */
  .single-author {
    animation: snt-luxury-up linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 26%;
  }
}

/* ═══════════════════════════════════════════════
   UTILITAIRES / RESPONSIVE
═══════════════════════════════════════════════ */
/* lazysizes supprime — le lazy loading natif du navigateur n a pas besoin de CSS */

@media (max-width: 767px) {
  .site-logo   { font-size: 1.2rem; }
  .hero__title { font-size: 2.2rem; }
  .hero__desc  { max-width: 100%; }
  .hero__btns  { flex-direction: column; }
  .btn         { justify-content: center; }
  .ti-main-img { height: clamp(260px, 60vw, 420px); }
  .ti-cta-img  { height: 220px; }
}
