/* ============================================================
   VistaNova — Thème global v19 (palette inversée)
   Fond vert profond + halos dorés + header doré clair
   Appliqué sur : index, portfolio, offre, pages légales
   (Boutique a son propre inline équivalent)
   IMPORTANT : NE touche PAS au hero (.hero, .hero-v13) qui
   a son propre style inline anti-cache.
   ============================================================ */

/* ---------- BODY : fond vert profond + halos dorés dans les coins ---------- */
html body:not(.page-boutique) {
  background:
    /* Halos DORÉS dans les 4 coins (fixés au scroll = effet écrin) */
    radial-gradient(circle 700px at 0% 0%,
      rgba(224, 180, 128, 0.4) 0%,
      rgba(224, 180, 128, 0.15) 35%,
      transparent 70%),
    radial-gradient(circle 700px at 100% 0%,
      rgba(224, 180, 128, 0.4) 0%,
      rgba(224, 180, 128, 0.15) 35%,
      transparent 70%),
    radial-gradient(circle 700px at 0% 100%,
      rgba(224, 180, 128, 0.45) 0%,
      rgba(224, 180, 128, 0.18) 35%,
      transparent 70%),
    radial-gradient(circle 700px at 100% 100%,
      rgba(224, 180, 128, 0.45) 0%,
      rgba(224, 180, 128, 0.18) 35%,
      transparent 70%),
    /* Fond vert profond principal */
    linear-gradient(180deg,
      #0c221c 0%,
      #14302a 25%,
      #1a3a31 50%,
      #14302a 75%,
      #0c221c 100%) !important;
  background-attachment: fixed, fixed, fixed, fixed, fixed !important;
  color: #fdebd6 !important;
}

/* Vignette interne dorée pour renforcer l'effet écrin */
html body:not(.page-boutique)::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  box-shadow: inset 0 0 120px 30px rgba(224, 180, 128, 0.15);
}

/* ---------- HEADER : doré clair avec texte vert profond ---------- */
/* IMPORTANT : ne s'applique pas si .hero-v13 est en haut de page,
   car le hero a son propre header transparent. On bascule en
   doré uniquement quand le header est .scrolled OU sur les pages
   sans hero plein écran. */

/* Sur les pages SANS hero plein écran (portfolio, offre, légales) :
   header doré clair en permanence */
body.page-portfolio .site-header,
body.page-offre .site-header,
body.page-legal .site-header {
  background: rgba(245, 226, 196, 0.94) !important;
  backdrop-filter: saturate(140%) blur(14px) !important;
  -webkit-backdrop-filter: saturate(140%) blur(14px) !important;
  border-bottom: 1px solid rgba(20, 48, 42, 0.2) !important;
}
body.page-portfolio .site-header .nav a,
body.page-offre .site-header .nav a,
body.page-legal .site-header .nav a {
  color: #14302a !important;
  opacity: 0.82;
}
body.page-portfolio .site-header .nav a:hover,
body.page-portfolio .site-header .nav a.active,
body.page-offre .site-header .nav a:hover,
body.page-offre .site-header .nav a.active,
body.page-legal .site-header .nav a:hover {
  opacity: 1;
  color: #c69968 !important;
}
body.page-portfolio .site-header .nav a::after,
body.page-offre .site-header .nav a::after,
body.page-legal .site-header .nav a::after {
  background: linear-gradient(90deg, #244d43 0%, #14302a 50%, #244d43 100%) !important;
}
body.page-portfolio .brand-logo,
body.page-offre .brand-logo,
body.page-legal .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(20, 48, 42, 0.25)) !important;
}
body.page-portfolio .site-header .btn-pill,
body.page-offre .site-header .btn-pill,
body.page-legal .site-header .btn-pill {
  color: #14302a !important;
  border: 1px solid #14302a !important;
  background: transparent !important;
}
body.page-portfolio .site-header .btn-pill span,
body.page-offre .site-header .btn-pill span,
body.page-legal .site-header .btn-pill span { color: #14302a !important; }
body.page-portfolio .site-header .btn-pill::before,
body.page-offre .site-header .btn-pill::before,
body.page-legal .site-header .btn-pill::before {
  background: linear-gradient(135deg, #14302a 0%, #244d43 50%, #14302a 100%) !important;
  background-size: 200% 200% !important;
}
body.page-portfolio .site-header .btn-pill:hover,
body.page-offre .site-header .btn-pill:hover,
body.page-legal .site-header .btn-pill:hover { color: #fdebd6 !important; }
body.page-portfolio .site-header .btn-pill:hover span,
body.page-offre .site-header .btn-pill:hover span,
body.page-legal .site-header .btn-pill:hover span { color: #fdebd6 !important; }
body.page-portfolio .site-header .cart-btn,
body.page-offre .site-header .cart-btn,
body.page-legal .site-header .cart-btn { color: #14302a !important; }
body.page-portfolio .site-header .burger span,
body.page-offre .site-header .burger span,
body.page-legal .site-header .burger span {
  background: #14302a !important;
}

/* Sur l'index : header transparent en haut, devient doré clair au scroll */
.site-header.scrolled {
  background: rgba(245, 226, 196, 0.94) !important;
  border-bottom: 1px solid rgba(20, 48, 42, 0.2) !important;
}
.site-header.scrolled .nav a { color: #14302a !important; opacity: 0.82; }
.site-header.scrolled .nav a:hover,
.site-header.scrolled .nav a.active { opacity: 1; color: #c69968 !important; }
.site-header.scrolled .nav a::after {
  background: linear-gradient(90deg, #244d43 0%, #14302a 50%, #244d43 100%) !important;
}
.site-header.scrolled .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(20, 48, 42, 0.25)) !important;
}
.site-header.scrolled .btn-pill {
  color: #14302a !important;
  border: 1px solid #14302a !important;
  background: transparent !important;
}
.site-header.scrolled .btn-pill span { color: #14302a !important; }
.site-header.scrolled .btn-pill::before {
  background: linear-gradient(135deg, #14302a 0%, #244d43 50%, #14302a 100%) !important;
}
.site-header.scrolled .btn-pill:hover { color: #fdebd6 !important; }
.site-header.scrolled .btn-pill:hover span { color: #fdebd6 !important; }
.site-header.scrolled .cart-btn { color: #14302a !important; }
.site-header.scrolled .burger span { background: #14302a !important; }

/* ---------- SECTIONS sur fond vert : adapter texte et accents ---------- */
/* On retire le fond clair des sections home v14 pour qu'elles reprennent
   le fond vert profond du body (avec halos visibles). */
body:not(.page-boutique) .audience,
body:not(.page-boutique) .process,
body:not(.page-boutique) .faq,
body:not(.page-boutique) .lead-magnet,
body:not(.page-boutique) .contact {
  background: transparent !important;
  color: #fdebd6 !important;
  position: relative;
  z-index: 1;
}

/* Eyebrows : doré sur fond vert */
body:not(.page-boutique) .audience .eyebrow,
body:not(.page-boutique) .process .eyebrow,
body:not(.page-boutique) .faq .eyebrow,
body:not(.page-boutique) .lead-magnet-text .eyebrow,
body:not(.page-boutique) .contact .eyebrow,
body:not(.page-boutique) .section-head .eyebrow {
  color: #e0b480 !important;
}

/* Titres de sections : crème lumineux */
body:not(.page-boutique) .audience .section-title,
body:not(.page-boutique) .audience .section-title span,
body:not(.page-boutique) .process .section-title,
body:not(.page-boutique) .process .section-title span,
body:not(.page-boutique) .faq .section-title,
body:not(.page-boutique) .faq .section-title span,
body:not(.page-boutique) .lead-magnet-title,
body:not(.page-boutique) .contact-title {
  color: #fdebd6 !important;
}

/* Section ledes (sous-titres italiques) : doré clair */
body:not(.page-boutique) .audience .section-lede,
body:not(.page-boutique) .process .section-lede,
body:not(.page-boutique) .faq .section-lede,
body:not(.page-boutique) .lead-magnet-lede,
body:not(.page-boutique) .contact .contact-info p {
  color: #ecc89e !important;
  opacity: 1 !important;
}

/* ---------- AUDIENCE — cards en doré clair sur fond vert + halos verts ---------- */
body:not(.page-boutique) .audience-card {
  background:
    radial-gradient(circle 220px at 0% 0%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    radial-gradient(circle 220px at 100% 100%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%) !important;
  border: 1px solid rgba(20, 48, 42, 0.3) !important;
  border-left: 4px solid #14302a !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35) !important;
}
body:not(.page-boutique) .audience-card:hover {
  background:
    radial-gradient(circle 260px at 0% 0%, rgba(20, 48, 42, 0.3) 0%, transparent 65%),
    radial-gradient(circle 260px at 100% 100%, rgba(20, 48, 42, 0.3) 0%, transparent 65%),
    linear-gradient(180deg, #faf0d9 0%, #f0d9b5 100%) !important;
  border-left-color: #244d43 !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(20, 48, 42, 0.5) !important;
}
body:not(.page-boutique) .audience-card h3 { color: #14302a !important; }
body:not(.page-boutique) .audience-card { text-decoration: none !important; display: block !important; cursor: pointer; }
body:not(.page-boutique) .audience-cta {
  display: inline-flex !important;
  margin-top: 1.2rem !important;
  padding-top: 1rem !important;
  border-top: 1px dashed rgba(20, 48, 42, 0.25) !important;
  font-family: var(--serif) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #14302a !important;
  font-weight: 500 !important;
  transition: transform .35s var(--ease-out), color .35s ease !important;
}
body:not(.page-boutique) .audience-card:hover .audience-cta {
  color: #c69968 !important;
  transform: translateX(6px) !important;
}

/* Services cliquables : lien étendu sur toute la surface du <li> */
body:not(.page-boutique) .srv {
  position: relative !important;
  cursor: pointer;
  transition: background .35s ease;
}
body:not(.page-boutique) .srv:hover {
  background: rgba(224, 180, 128, 0.06) !important;
}
body:not(.page-boutique) .srv .srv-link {
  display: flex !important;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.6rem);
  width: 100%;
  padding: inherit;
  text-decoration: none !important;
  color: inherit;
}
/* Pseudo-overlay qui couvre tout le <li>, rend toute la surface cliquable */
body:not(.page-boutique) .srv .srv-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Couvre tout le li parent */
}
/* On s'assure que le contenu interne reste interactif visuellement mais sous l'overlay */
body:not(.page-boutique) .srv > * { position: relative; }
body:not(.page-boutique) .srv .srv-link > * { position: relative; z-index: 2; }
body:not(.page-boutique) .audience-card p { color: #244d43 !important; opacity: 0.92 !important; }
body:not(.page-boutique) .audience-num {
  background: linear-gradient(135deg, #14302a 0%, #244d43 100%) !important;
  color: #ecc89e !important;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(224, 180, 128, 0.3) !important;
}

/* ---------- PROCESS — cards dorées sur fond vert + halos verts ---------- */
body:not(.page-boutique) .process-step {
  background:
    radial-gradient(circle 200px at 100% 0%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    radial-gradient(circle 200px at 0% 100%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%) !important;
  border: 1px solid rgba(20, 48, 42, 0.3) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35) !important;
}
body:not(.page-boutique) .process-step:hover {
  background:
    radial-gradient(circle 240px at 100% 0%, rgba(20, 48, 42, 0.3) 0%, transparent 65%),
    radial-gradient(circle 240px at 0% 100%, rgba(20, 48, 42, 0.3) 0%, transparent 65%),
    linear-gradient(180deg, #faf0d9 0%, #f0d9b5 100%) !important;
  border-color: #14302a !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(20, 48, 42, 0.45) !important;
}
body:not(.page-boutique) .process-step h3 { color: #14302a !important; }
body:not(.page-boutique) .process-step p { color: #244d43 !important; opacity: 0.92; }
/* Ligne pointillée entre étapes : passer en doré pour rester visible sur fond vert */
@media (min-width: 800px) {
  body:not(.page-boutique) .process-grid::before {
    background: repeating-linear-gradient(90deg,
      #e0b480 0,
      #e0b480 6px,
      transparent 6px,
      transparent 14px) !important;
  }
}

/* ---------- FAQ — items dorés clairs sur fond vert + halos verts ---------- */
body:not(.page-boutique) .faq-item {
  background:
    radial-gradient(circle 180px at 0% 0%, rgba(20, 48, 42, 0.2) 0%, transparent 65%),
    radial-gradient(circle 180px at 100% 100%, rgba(20, 48, 42, 0.2) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%) !important;
  border: 1px solid rgba(20, 48, 42, 0.25) !important;
  border-left: 3px solid transparent !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
}
body:not(.page-boutique) .faq-item[open] {
  background:
    radial-gradient(circle 220px at 0% 0%, rgba(20, 48, 42, 0.28) 0%, transparent 65%),
    radial-gradient(circle 220px at 100% 100%, rgba(20, 48, 42, 0.28) 0%, transparent 65%),
    linear-gradient(180deg, #faf0d9 0%, #f0d9b5 100%) !important;
  border-left-color: #14302a !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4) !important;
}
body:not(.page-boutique) .faq-item summary { color: #14302a !important; }
body:not(.page-boutique) .faq-item summary:hover { color: #244d43 !important; }
body:not(.page-boutique) .faq-item summary::after {
  border: 1px solid #14302a !important;
  color: #14302a !important;
}
body:not(.page-boutique) .faq-item[open] summary::after {
  background: #14302a !important;
  color: #ecc89e !important;
  border-color: #14302a !important;
}
body:not(.page-boutique) .faq-item-body {
  color: #244d43 !important;
  opacity: 1 !important;
}

/* ---------- LEAD MAGNET — form sur fond doré + halos verts ---------- */
body:not(.page-boutique) .lead-magnet-form-inner {
  background:
    radial-gradient(circle 280px at 0% 0%, rgba(20, 48, 42, 0.25) 0%, transparent 65%),
    radial-gradient(circle 280px at 100% 100%, rgba(20, 48, 42, 0.25) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%) !important;
  border: 1px solid rgba(20, 48, 42, 0.3) !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4) !important;
}
body:not(.page-boutique) .lead-magnet-form-inner h3 { color: #14302a !important; }
body:not(.page-boutique) .lead-magnet-form-inner > p { color: #244d43 !important; opacity: 0.9 !important; }
body:not(.page-boutique) .lead-magnet-form-inner .field input {
  color: #14302a !important;
  border-color: rgba(20, 48, 42, 0.4) !important;
}
body:not(.page-boutique) .lead-magnet-form-inner .field label { color: #244d43 !important; }
body:not(.page-boutique) .lead-magnet-mention { color: #244d43 !important; opacity: 0.8 !important; }
body:not(.page-boutique) .lead-magnet-bullets li { color: #ecc89e !important; opacity: 0.95 !important; }
body:not(.page-boutique) .lead-magnet-bullets li::before { color: #e0b480 !important; }
body:not(.page-boutique) .lead-magnet-lede strong { color: #e0b480 !important; }

/* Mockup PDF du Lead Magnet : ajouter halo vert pour cohérence */
body:not(.page-boutique) .lead-magnet-mockup {
  background:
    radial-gradient(circle 200px at 0% 0%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    radial-gradient(circle 200px at 100% 100%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    linear-gradient(135deg, #fdebd6 0%, #f5e2c4 100%) !important;
}

/* ---------- CONTACT — sur fond vert ---------- */
body:not(.page-boutique) .contact .kicker { color: #e0b480 !important; }
body:not(.page-boutique) .contact .contact-info p,
body:not(.page-boutique) .contact .contact-info a { color: #fdebd6 !important; }
body:not(.page-boutique) .contact .field input {
  color: #fdebd6 !important;
  border-color: rgba(224, 180, 128, 0.4) !important;
  background: transparent !important;
}
body:not(.page-boutique) .contact .field label { color: #ecc89e !important; }
body:not(.page-boutique) .contact .chip {
  color: #fdebd6 !important;
  border-color: rgba(224, 180, 128, 0.3) !important;
}
body:not(.page-boutique) .contact .chip.is-active {
  background: #e0b480 !important;
  color: #0c221c !important;
}

/* ---------- PAGE OFFRE — cards en doré clair sur fond vert ---------- */
body.page-offre main {
  background: transparent !important;
  position: relative;
  z-index: 1;
}
body.page-offre .offre-title { color: #fdebd6 !important; }
body.page-offre .offre-lede { color: #ecc89e !important; opacity: 1 !important; }
body.page-offre .offre-meta span { color: #e0b480 !important; }
body.page-offre .offre-meta strong { color: #fdebd6 !important; }
body.page-offre .offre-meta {
  border-top-color: rgba(224, 180, 128, 0.3) !important;
  border-bottom-color: rgba(224, 180, 128, 0.3) !important;
}
body.page-offre .offre-card {
  background:
    radial-gradient(circle 240px at 100% 0%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    radial-gradient(circle 240px at 0% 100%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%) !important;
  border: 1px solid rgba(20, 48, 42, 0.3) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35) !important;
}
body.page-offre .offre-card:hover {
  background:
    radial-gradient(circle 280px at 100% 0%, rgba(20, 48, 42, 0.3) 0%, transparent 65%),
    radial-gradient(circle 280px at 0% 100%, rgba(20, 48, 42, 0.3) 0%, transparent 65%),
    linear-gradient(180deg, #faf0d9 0%, #f0d9b5 100%) !important;
  border-color: #14302a !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(20, 48, 42, 0.5) !important;
}
body.page-offre .offre-card-feature {
  background:
    radial-gradient(circle 300px at 0% 0%, rgba(20, 48, 42, 0.28) 0%, transparent 65%),
    radial-gradient(circle 300px at 100% 100%, rgba(20, 48, 42, 0.28) 0%, transparent 65%),
    linear-gradient(135deg, #faf0d9 0%, #ecd5af 100%) !important;
  border: 1px solid #14302a !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(20, 48, 42, 0.4) !important;
}
body.page-offre .offre-card h2 { color: #14302a !important; }
body.page-offre .offre-pitch { color: #244d43 !important; opacity: 1 !important; }
body.page-offre .offre-includes li { color: #244d43 !important; opacity: 0.95 !important; }
body.page-offre .offre-includes li::before { color: #14302a !important; }
body.page-offre .offre-price { border-top-color: rgba(20, 48, 42, 0.3) !important; }
body.page-offre .offre-price-tag {
  background: #14302a !important;
  color: #ecc89e !important;
  border-color: #14302a !important;
}
body.page-offre .offre-cta-band {
  background:
    radial-gradient(circle 350px at 0% 0%, rgba(20, 48, 42, 0.25) 0%, transparent 65%),
    radial-gradient(circle 350px at 100% 100%, rgba(20, 48, 42, 0.25) 0%, transparent 65%),
    linear-gradient(135deg, #f5e2c4 0%, #ecd5af 100%) !important;
  border: 1px solid #14302a !important;
}
body.page-offre .offre-cta-band h2 { color: #14302a !important; }
body.page-offre .offre-cta-band p { color: #244d43 !important; opacity: 1 !important; }
body.page-offre .btn-ghost {
  color: #fdebd6 !important;
  border-color: rgba(224, 180, 128, 0.5) !important;
}
body.page-offre .btn-ghost:hover {
  background: rgba(224, 180, 128, 0.15) !important;
  color: #fdebd6 !important;
  border-color: #e0b480 !important;
}

/* ---------- PORTFOLIO — adapter pour fond vert ---------- */
body.page-portfolio main {
  background: transparent !important;
  position: relative;
  z-index: 1;
}
body.page-portfolio .portfolio-title { color: #fdebd6 !important; }
body.page-portfolio .portfolio-lede { color: #ecc89e !important; opacity: 1 !important; }
body.page-portfolio .filter-chip {
  color: #fdebd6 !important;
  border: 1px solid rgba(224, 180, 128, 0.35) !important;
  background: transparent !important;
}
body.page-portfolio .filter-chip span { color: #e0b480 !important; }
body.page-portfolio .filter-chip:hover {
  background: rgba(224, 180, 128, 0.1) !important;
  border-color: #e0b480 !important;
}
body.page-portfolio .filter-chip.is-active {
  background: #e0b480 !important;
  color: #0c221c !important;
  border-color: #e0b480 !important;
}
body.page-portfolio .filter-chip.is-active span { color: #14302a !important; }

/* ---------- PAGES LÉGALES — palette inversée ---------- */
body.page-legal main {
  background: transparent !important;
  position: relative;
  z-index: 1;
}
body.page-legal .legal-eyebrow { color: #e0b480 !important; }
body.page-legal h1 { color: #fdebd6 !important; }
body.page-legal h2 { color: #e0b480 !important; }
body.page-legal h3 { color: #ecc89e !important; }
body.page-legal p,
body.page-legal li,
body.page-legal strong { color: #fdebd6 !important; opacity: 0.92; }
body.page-legal .legal-lede {
  color: #ecc89e !important;
  opacity: 1 !important;
  border-bottom-color: rgba(224, 180, 128, 0.3) !important;
}
body.page-legal a { color: #e0b480 !important; }
body.page-legal a:hover { color: #fdebd6 !important; }
body.page-legal .legal-back {
  border-top-color: rgba(224, 180, 128, 0.3) !important;
  color: #e0b480 !important;
}
body.page-legal .legal-back:hover { color: #fdebd6 !important; }
body.page-legal .legal-placeholder {
  background: rgba(224, 180, 128, 0.15) !important;
  border-color: #e0b480 !important;
  color: #ecc89e !important;
}

/* ---------- SHOP sur la home : style boutique (cards dorées + halos verts) ---------- */
body:not(.page-boutique) .shop {
  background: transparent !important;
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
body:not(.page-boutique) .shop .section-title,
body:not(.page-boutique) .shop .section-title span {
  color: #fdebd6 !important;
}
body:not(.page-boutique) .shop .eyebrow { color: #e0b480 !important; }
body:not(.page-boutique) .shop .section-lede {
  color: #ecc89e !important;
  opacity: 1 !important;
}
/* Cards Shop refondues comme la boutique : fond doré clair + halos verts */
body:not(.page-boutique) .shop-card {
  background:
    radial-gradient(circle 220px at 0% 0%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    radial-gradient(circle 220px at 100% 100%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%) !important;
  border: 1px solid rgba(20, 48, 42, 0.35) !important;
  border-radius: 4px !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35) !important;
  padding: 14px !important;
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s var(--ease-out), box-shadow .4s ease, border-color .35s ease;
}
body:not(.page-boutique) .shop-card:hover {
  transform: translateY(-8px) !important;
  border-color: #14302a !important;
  background:
    radial-gradient(circle 260px at 0% 0%, rgba(20, 48, 42, 0.3) 0%, transparent 65%),
    radial-gradient(circle 260px at 100% 100%, rgba(20, 48, 42, 0.3) 0%, transparent 65%),
    linear-gradient(180deg, #faf0d9 0%, #f0d9b5 100%) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(20, 48, 42, 0.5) !important;
}
body:not(.page-boutique) .shop-card-media {
  aspect-ratio: 4/5 !important;
  overflow: hidden;
  border-radius: 3px;
  background: #f5e2c4;
}
body:not(.page-boutique) .shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
body:not(.page-boutique) .shop-card:hover .shop-card-media img { transform: scale(1.04); }
body:not(.page-boutique) .shop-card-body {
  padding: 1rem 0.5rem 0.6rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
body:not(.page-boutique) .shop-card-body h3 {
  color: #14302a !important;
  font-family: var(--serif) !important;
  font-weight: 500 !important;
}
body:not(.page-boutique) .shop-num {
  color: #244d43 !important;
  font-family: var(--serif) !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
}
body:not(.page-boutique) .shop-meta {
  color: #244d43 !important;
  opacity: 0.85;
  font-size: 0.85rem;
}
body:not(.page-boutique) .shop-price {
  color: #14302a !important;
  font-weight: 600 !important;
}
body:not(.page-boutique) .shop-price .was-tag {
  color: rgba(20, 48, 42, 0.5) !important;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.5rem;
}

/* ============================================================
   v20 — PROCESS Stepper horizontal interactif
   ============================================================ */
.process-v20 { padding: clamp(5rem, 9vw, 8rem) var(--pad-x) !important; }
.process-v20 .process-grid::before { display: none !important; }

/* Stepper : tabs en ligne */
.stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1vw, 1rem);
  max-width: 1000px;
  margin: clamp(2rem, 4vw, 3rem) auto;
  padding: 0;
}
.stepper .step-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.4rem 1rem 1.6rem;
  background: transparent;
  border: 1px solid rgba(224, 180, 128, 0.25);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--serif);
  color: #ecc89e;
  transition: all .4s var(--ease-out);
}
.stepper .step-tab:hover {
  background: rgba(224, 180, 128, 0.06);
  border-color: rgba(224, 180, 128, 0.5);
  transform: translateY(-3px);
}
.stepper .step-tab.is-active {
  background:
    radial-gradient(circle 220px at 0% 0%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    radial-gradient(circle 220px at 100% 100%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%);
  border-color: #14302a;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px #14302a;
  transform: translateY(-3px);
}
.stepper .step-tab.is-active .step-num,
.stepper .step-tab.is-active .step-label,
.stepper .step-tab.is-active .step-dur { color: #14302a; }
.step-num {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #e0b480;
  line-height: 1;
}
.step-label {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1rem;
  color: #fdebd6;
}
.step-dur {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e0b480;
  opacity: 0.85;
}
/* Barre de progression sous le stepper */
.step-progress {
  grid-column: 1 / -1;
  height: 2px;
  background: rgba(224, 180, 128, 0.2);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 0.6rem;
}
.step-progress span {
  display: block;
  height: 100%;
  width: 33.3333%;
  background: linear-gradient(90deg, #c69968 0%, #f0d9b5 50%, #c69968 100%);
  transition: width .5s var(--ease-out), transform .5s var(--ease-out);
  transform-origin: left;
}
.stepper[data-active="2"] + .step-progress span,
.stepper .step-progress span.at-2 { width: 66.6666%; }

/* Panneaux : affichage selon le tab actif */
.step-panels {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.step-panel {
  display: none;
  grid-template-columns: 200px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle 280px at 100% 0%, rgba(20, 48, 42, 0.25) 0%, transparent 65%),
    radial-gradient(circle 280px at 0% 100%, rgba(20, 48, 42, 0.25) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%);
  border: 1px solid rgba(20, 48, 42, 0.3);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}
.step-panel.is-active {
  display: grid;
  animation: stepFadeIn .5s var(--ease-out);
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.step-panel-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-panel-icon {
  width: clamp(120px, 14vw, 160px);
  height: clamp(120px, 14vw, 160px);
  border-radius: 50%;
  background: linear-gradient(135deg, #14302a 0%, #244d43 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecc89e;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(224, 180, 128, 0.25);
}
.step-panel-icon svg { width: 60%; height: 60%; }
.step-panel-eyebrow {
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c69968;
  margin: 0 0 0.6rem;
}
.step-panel-text h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
  color: #14302a;
  margin: 0 0 1rem;
}
.step-panel-text p {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #244d43;
  margin: 0 0 1rem;
}
.step-panel-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.step-panel-list li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: #244d43;
}
.step-panel-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #c69968;
  font-weight: 600;
}
.step-panel-text .btn-line {
  color: #14302a !important;
  border: 1px solid #14302a !important;
  background: transparent !important;
}
.step-panel-text .btn-line:hover {
  background: #14302a !important;
  color: #ecc89e !important;
}
.step-panel-text .btn-line span { color: inherit !important; }

@media (max-width: 700px) {
  .step-panel { grid-template-columns: 1fr; text-align: center; }
  .step-panel-list li { text-align: left; }
  .stepper { grid-template-columns: 1fr; }
  .step-tab { flex-direction: row; justify-content: flex-start; padding: 1rem 1.2rem; }
}

/* ============================================================
   v20 — FAQ recherche + filtres
   ============================================================ */
.faq-v20 .faq-controls {
  max-width: 1100px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.faq-search {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: rgba(20, 48, 42, 0.5);
  border: 1px solid rgba(224, 180, 128, 0.3);
  border-radius: 999px;
  transition: border-color .25s ease, background .25s ease;
}
.faq-search:focus-within {
  border-color: #e0b480;
  background: rgba(20, 48, 42, 0.7);
}
.faq-search svg { color: #e0b480; flex-shrink: 0; }
.faq-search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--serif-2);
  font-size: 0.98rem;
  color: #fdebd6;
}
.faq-search input::placeholder { color: rgba(253, 235, 214, 0.5); }
.faq-search-clear {
  background: transparent;
  border: 0;
  color: #ecc89e;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 0.4rem;
  line-height: 1;
}
.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.faq-chip {
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1px solid rgba(224, 180, 128, 0.3);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ecc89e;
  cursor: pointer;
  transition: all .25s ease;
}
.faq-chip:hover {
  background: rgba(224, 180, 128, 0.1);
  border-color: #e0b480;
  color: #fdebd6;
  transform: translateY(-1px);
}
.faq-chip.is-active {
  background: #e0b480;
  color: #0c221c;
  border-color: #e0b480;
}
.faq-count {
  max-width: 1100px;
  margin: 0 auto 1rem;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c69968;
  text-align: right;
  opacity: 0.85;
}
.faq-empty {
  text-align: center;
  font-family: var(--serif-2);
  font-style: italic;
  color: #ecc89e;
  padding: 2rem 0;
}
.faq-reset {
  margin-left: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: transparent;
  border: 1px solid #e0b480;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e0b480;
  cursor: pointer;
  transition: all .25s ease;
}
.faq-reset:hover { background: #e0b480; color: #0c221c; }

/* Item caché par filtre/recherche */
.faq-item.is-hidden { display: none !important; }

/* ============================================================
   v20 — LEAD MAGNET mockup feuilletable + form en étapes
   ============================================================ */
.lead-magnet-v20 .lead-magnet-inner {
  display: grid !important;
  grid-template-columns: 380px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1200px !important;
}
@media (max-width: 880px) {
  .lead-magnet-v20 .lead-magnet-inner { grid-template-columns: 1fr; }
  .lm-mockup-stage { justify-self: center; }
}

/* Mockup PDF feuilletable (stack 3D) */
.lm-mockup-stage {
  perspective: 1200px;
  display: flex;
  justify-content: center;
}
.lm-stack {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1.41;
  transform-style: preserve-3d;
  transition: transform .8s var(--ease-out);
}
.lm-mockup-stage:hover .lm-stack { transform: rotateY(-6deg) rotateX(2deg); }
.lm-page {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: linear-gradient(135deg, #fdebd6 0%, #f5e2c4 100%);
  border: 1px solid rgba(224, 180, 128, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transform-origin: left center;
  transition: transform .8s var(--ease-out);
}
.lm-page-back-2 {
  transform: translateX(14px) translateY(14px) rotate(2deg);
  background: linear-gradient(135deg, #f5e2c4 0%, #ecd5af 100%);
  opacity: 0.65;
}
.lm-page-back-1 {
  transform: translateX(7px) translateY(7px) rotate(1deg);
  background: linear-gradient(135deg, #faf0d9 0%, #f0d9b5 100%);
  opacity: 0.85;
}
.lm-page-front {
  background:
    radial-gradient(circle 180px at 0% 0%, rgba(20, 48, 42, 0.18) 0%, transparent 65%),
    radial-gradient(circle 180px at 100% 100%, rgba(20, 48, 42, 0.18) 0%, transparent 65%),
    linear-gradient(135deg, #fdebd6 0%, #f5e2c4 100%);
  transform: rotate(-2deg);
}
.lm-mockup-stage:hover .lm-page-front { transform: rotate(0deg) translateY(-4px); }
.lm-mockup-stage:hover .lm-page-back-1 { transform: translateX(10px) translateY(10px) rotate(1.5deg); }
.lm-mockup-stage:hover .lm-page-back-2 { transform: translateX(20px) translateY(20px) rotate(3deg); }

.lm-page-num {
  position: absolute;
  bottom: 1.2rem;
  right: 1.4rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: rgba(20, 48, 42, 0.35);
  margin: 0;
}
.lm-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}
.lm-page-logo {
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: #14302a;
  font-weight: 600;
}
.lm-page-stamp {
  padding: 0.25rem 0.6rem;
  background: #14302a;
  color: #ecc89e;
  font-family: var(--serif);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  transform: rotate(4deg);
}
.lm-page-eyebrow {
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c69968;
  margin: 0 0 0.6rem;
}
.lm-page-front h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.05;
  color: #14302a;
  margin: 0 0 1.4rem;
  letter-spacing: 0.01em;
}
.lm-page-front h4 em { font-style: italic; color: #c69968; }
.lm-page-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  padding: 0.9rem 0;
  border-top: 1px dashed rgba(20, 48, 42, 0.3);
  border-bottom: 1px dashed rgba(20, 48, 42, 0.3);
  margin-bottom: 1.2rem;
}
.lm-page-meta > div { display: flex; flex-direction: column; gap: 0.1rem; align-items: center; }
.lm-meta-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: #14302a;
}
.lm-meta-lab {
  font-family: var(--serif);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #244d43;
  opacity: 0.85;
}
.lm-page-foot {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.85rem;
  color: #244d43;
  margin: 0;
  text-align: center;
}

/* Texte + form */
.lm-content .eyebrow { color: #e0b480 !important; margin-bottom: 1rem; }
.lm-content .lead-magnet-title { color: #fdebd6 !important; }
.lm-content .lead-magnet-lede { color: #ecc89e !important; opacity: 1 !important; }
.lm-content .lead-magnet-lede strong { color: #e0b480 !important; font-style: normal; }
.lm-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lm-bullets li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: #ecc89e;
}
.lm-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #c69968 0%, #f0d9b5 50%, #c69968 100%);
  color: #0c221c;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Form en 2 étapes */
.lm-form {
  background:
    radial-gradient(circle 220px at 0% 0%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    radial-gradient(circle 220px at 100% 100%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%);
  border: 1px solid rgba(20, 48, 42, 0.3);
  border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}
.lm-form-steps {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.lm-step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(20, 48, 42, 0.15);
  border: 1px solid rgba(20, 48, 42, 0.35);
  color: #244d43;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all .35s ease;
}
.lm-step.is-active {
  background: linear-gradient(135deg, #14302a 0%, #244d43 100%);
  color: #ecc89e;
  border-color: #14302a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.lm-step-line {
  flex: 1;
  height: 1px;
  background: rgba(20, 48, 42, 0.25);
  position: relative;
}
.lm-step-line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, #14302a 0%, #244d43 100%);
  transition: width .5s var(--ease-out);
}
.lm-form.is-success .lm-step-line::after { width: 100%; }
.lm-form.is-success .lm-step[data-step="2"] {
  background: linear-gradient(135deg, #14302a 0%, #244d43 100%);
  color: #ecc89e;
  border-color: #14302a;
}
.lm-form-step { animation: stepFadeIn .5s var(--ease-out); }
.lm-form-label {
  display: block;
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #244d43;
  margin-bottom: 0.6rem;
}
.lm-form-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.lm-form-row input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(20, 48, 42, 0.3);
  border-radius: 999px;
  font-family: var(--serif-2);
  font-size: 1rem;
  color: #14302a;
  outline: none;
  min-width: 0;
}
.lm-form-row input:focus { border-color: #14302a; background: rgba(255, 255, 255, 0.85); }
.lm-form-row .big-cta { white-space: nowrap; padding: 0.85rem 1.4rem; }
.lm-mention {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: #244d43;
  opacity: 0.85;
  margin: 0;
}
.lm-mention a { color: #14302a; text-decoration: underline; text-underline-offset: 3px; }

.lm-form-success {
  text-align: center;
  padding: 1rem 0;
}
.lm-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  color: #14302a;
}
.lm-form-success h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: #14302a;
  margin: 0 0 0.5rem;
}
.lm-form-success p {
  font-family: var(--serif-2);
  font-style: italic;
  color: #244d43;
  margin: 0;
}

/* ============================================================
   v21 — Audience SPLIT (tabs verticaux + panneau dynamique)
   Annule le flex column de v15
   ============================================================ */
body:not(.page-boutique) .audience-split {
  display: grid !important;
  grid-template-columns: minmax(280px, 380px) 1fr !important;
  gap: clamp(1.5rem, 3vw, 2.5rem) !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}
/* Annule le flex column hérité */
body:not(.page-boutique) .audience-grid { display: none !important; }
body:not(.page-boutique) .audience .audience-card { display: none !important; }

@media (max-width: 900px) {
  body:not(.page-boutique) .audience-split { grid-template-columns: 1fr !important; }
}

/* Tabs verticaux à gauche */
.audience-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.audience-tab {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  padding: 1.2rem 1.4rem;
  background: rgba(20, 48, 42, 0.4);
  border: 1px solid rgba(224, 180, 128, 0.2);
  border-left: 3px solid transparent;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
  transition: all .35s var(--ease-out);
  color: inherit;
  font-family: var(--serif);
}
.audience-tab:hover {
  background: rgba(20, 48, 42, 0.6);
  border-color: rgba(224, 180, 128, 0.4);
  transform: translateX(4px);
}
.audience-tab.is-active {
  background:
    radial-gradient(circle 200px at 0% 0%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    radial-gradient(circle 200px at 100% 100%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%);
  border: 1px solid #14302a;
  border-left: 3px solid #14302a;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}
.audience-tab.is-active .aud-num,
.audience-tab.is-active .aud-tab-text h3,
.audience-tab.is-active .aud-tab-hint,
.audience-tab.is-active .aud-tab-arrow {
  color: #14302a !important;
}
.audience-tab.is-active .aud-num {
  background: linear-gradient(135deg, #14302a 0%, #244d43 100%);
  color: #ecc89e !important;
}
.aud-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #14302a 0%, #244d43 100%);
  color: #ecc89e;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.aud-tab-text { display: flex; flex-direction: column; gap: 0.2rem; }
.aud-tab-text h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
  color: #fdebd6;
  letter-spacing: 0.01em;
}
.aud-tab-hint {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.85rem;
  color: #ecc89e;
  opacity: 0.85;
}
.aud-tab-arrow {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #e0b480;
  transition: transform .35s var(--ease-out);
  opacity: 0.7;
}
.audience-tab.is-active .aud-tab-arrow { opacity: 1; transform: translateX(4px); }

/* Panneau dynamique à droite */
.audience-panels {
  position: relative;
  min-height: 480px;
}
.audience-panel {
  display: none;
  background:
    radial-gradient(circle 280px at 100% 0%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    radial-gradient(circle 280px at 0% 100%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%);
  border: 1px solid rgba(20, 48, 42, 0.3);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}
.audience-panel.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: audFadeIn .5s var(--ease-out);
}
@keyframes audFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
  .audience-panel.is-active { grid-template-columns: 1fr; }
}
.aud-panel-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 320px;
}
.aud-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.audience-panel:hover .aud-panel-media img { transform: scale(1.04); }
.aud-panel-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, #c69968 0%, #f0d9b5 50%, #c69968 100%);
  color: #0c221c;
  font-family: var(--serif);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.aud-panel-body {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
}
.aud-panel-eyebrow {
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c69968;
  margin: 0 0 0.6rem;
}
.aud-panel-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.15;
  color: #14302a;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}
.aud-panel-body p {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: #244d43;
  margin: 0 0 1.2rem;
}
.aud-panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.aud-panel-list li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--sans);
  font-size: 0.94rem;
  color: #244d43;
}
.aud-panel-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #c69968;
}
.aud-panel-body .big-cta {
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================================
   v21 — FAQ documentation 2 colonnes (questions ↔ réponse)
   Annule l'ancien faq-list
   ============================================================ */
body:not(.page-boutique) .faq-doc {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  body:not(.page-boutique) .faq-doc { grid-template-columns: 1fr; }
}
.faq-doc-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-q {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.2rem 0.9rem;
  padding: 1rem 1.2rem;
  background: rgba(20, 48, 42, 0.4);
  border: 1px solid rgba(224, 180, 128, 0.18);
  border-left: 3px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  outline: none;
}
.faq-q:hover {
  background: rgba(20, 48, 42, 0.6);
  border-color: rgba(224, 180, 128, 0.4);
  transform: translateX(3px);
}
.faq-q.is-active {
  background:
    radial-gradient(circle 200px at 0% 0%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    radial-gradient(circle 200px at 100% 100%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%);
  border-color: #14302a;
  border-left-color: #14302a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.faq-q-num {
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #e0b480;
  font-weight: 500;
}
.faq-q.is-active .faq-q-num { color: #c69968; }
.faq-q-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: #fdebd6;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.faq-q.is-active .faq-q-title { color: #14302a; }
.faq-q-cat {
  font-family: var(--serif);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ecc89e;
  opacity: 0.7;
}
.faq-q.is-active .faq-q-cat { color: #244d43; opacity: 0.95; }
.faq-q.is-hidden { display: none; }

.faq-doc-answers {
  position: relative;
  min-height: 320px;
}
.faq-a {
  display: none;
  padding: clamp(2rem, 4vw, 2.8rem);
  background:
    radial-gradient(circle 260px at 100% 0%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    radial-gradient(circle 260px at 0% 100%, rgba(20, 48, 42, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, #f5e2c4 0%, #ecd5af 100%);
  border: 1px solid rgba(20, 48, 42, 0.3);
  border-radius: 6px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}
.faq-a.is-active {
  display: block;
  animation: audFadeIn .5s var(--ease-out);
}
.faq-a-cat {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: #14302a;
  color: #ecc89e;
  font-family: var(--serif);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.faq-a h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: #14302a;
  margin: 0 0 1.2rem;
  line-height: 1.15;
}
.faq-a p {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #244d43;
  margin: 0 0 1rem;
}
.faq-a p strong { color: #14302a; font-style: normal; }
.faq-a-tip {
  margin-top: 1.4rem !important;
  padding: 0.9rem 1.1rem;
  background: rgba(20, 48, 42, 0.08);
  border-left: 3px solid #c69968;
  border-radius: 3px;
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: 0.9rem !important;
  color: #244d43;
}

/* On désactive l'ancien faq-list / faq-item s'il est encore là */
body:not(.page-boutique) .faq-doc .faq-list,
body:not(.page-boutique) .faq-doc + .faq-list,
body:not(.page-boutique) .faq .faq-item { /* legacy */ }

/* ============================================================
   v24-fix — OFFRE Hero : centrage et padding corrects
   ============================================================ */
body.page-offre main {
  background: transparent !important;
  position: relative;
  z-index: 1;
  padding-top: 100px !important;
}
body.page-offre .offre-hero {
  text-align: center !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 4vw, 3rem) !important;
  display: block !important;
}
body.page-offre .offre-hero .eyebrow {
  display: inline-block !important;
  color: #e0b480 !important;
  margin-bottom: 1.2rem !important;
}
body.page-offre .offre-hero .offre-title {
  text-align: center !important;
  margin: 0 auto 1.5rem !important;
  color: #fdebd6 !important;
  font-family: 'Cinzel', serif !important;
  font-weight: 500 !important;
  font-size: clamp(2.4rem, 6vw, 4.5rem) !important;
  line-height: 1.05 !important;
  letter-spacing: 0.02em !important;
}
body.page-offre .offre-hero .offre-lede {
  text-align: center !important;
  margin: 0 auto 2.5rem !important;
  color: #ecc89e !important;
  opacity: 1 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 1.1rem !important;
  max-width: 60ch !important;
  line-height: 1.55 !important;
}
body.page-offre .offre-hero .offre-meta {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: clamp(1.5rem, 3vw, 3rem) !important;
  padding: 1.4rem 0 !important;
  margin: 0 auto !important;
  max-width: 900px !important;
  border-top: 1px solid rgba(224, 180, 128, 0.3) !important;
  border-bottom: 1px solid rgba(224, 180, 128, 0.3) !important;
}
body.page-offre .offre-hero .offre-meta > div {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.3rem !important;
  text-align: center !important;
}
body.page-offre .offre-hero .offre-meta span {
  color: #e0b480 !important;
  font-family: 'Cinzel', serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
}
body.page-offre .offre-hero .offre-meta strong {
  color: #fdebd6 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
}

/* ============================================================
   v22 — OFFRE refondue en grille de cards visuelles
   (style identique aux services de la home)
   ============================================================ */
body.page-offre .offre-grid-v2 {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: clamp(1.4rem, 2.5vw, 2rem) !important;
  max-width: var(--max) !important;
  margin: 0 auto !important;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x) !important;
}
/* Card feature occupe 2 colonnes sur desktop large */
@media (min-width: 1100px) {
  body.page-offre .offre-grid-v2 .svc-card-feature {
    grid-column: span 2;
  }
  body.page-offre .offre-grid-v2 .svc-card-feature .svc-card-media {
    aspect-ratio: 16 / 9;
  }
}

/* Card link reste un lien complet, halos verts sur fond vert profond */
body.page-offre .svc-card {
  background: var(--green-deep) !important;
  border: 1px solid rgba(224, 180, 128, 0.4) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4) !important;
}
body.page-offre .svc-card:hover {
  border-color: var(--gold-light) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(224, 180, 128, 0.5) !important;
}
body.page-offre .svc-card-body h3 {
  color: var(--cream) !important;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem) !important;
}
body.page-offre .svc-card-body p {
  color: var(--cream) !important;
  opacity: 0.78 !important;
}
body.page-offre .svc-card-meta {
  display: block;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(224, 180, 128, 0.25);
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e0b480;
}
body.page-offre .svc-card-link {
  margin-top: 0.8rem;
  color: var(--gold-light);
}

/* ============================================================
   v21 — WhatsApp FAB plus petit et moins envahissant
   ============================================================ */
.whatsapp-fab {
  width: 44px !important;
  height: 44px !important;
  bottom: 1.2rem !important;
  right: 1.2rem !important;
  opacity: 0.85 !important;
  transition: opacity .25s ease, transform .35s var(--ease-out), box-shadow .35s ease !important;
}
.whatsapp-fab:hover {
  opacity: 1 !important;
  transform: translateY(-2px) scale(1.06) !important;
}
.whatsapp-fab svg {
  width: 22px !important;
  height: 22px !important;
}
.whatsapp-fab::before {
  inset: -3px !important;
}
@media (max-width: 600px) {
  .whatsapp-fab {
    width: 42px !important;
    height: 42px !important;
    bottom: 0.9rem !important;
    right: 0.9rem !important;
  }
  .whatsapp-fab svg { width: 20px !important; height: 20px !important; }
}

/* ============================================================
   v23 — SELECTED WORK Mosaïque magazine asymétrique
   ============================================================ */
.work-v23 {
  padding: clamp(5rem, 9vw, 8rem) var(--pad-x) !important;
  background: transparent !important;
  position: relative;
  z-index: 1;
}
.work-v23 .work-stars,
.work-v23 .work-glow,
.work-v23 .work-scroll,
.work-v23 .work-nav,
.work-v23 .work-track,
.work-v23 .work-item,
.work-v23 .work-progress { display: none !important; }

.work-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
  max-width: var(--max);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
}

/* Layout asymétrique : hero 4x2, tall 2x2, etc. */
.work-card-hero {
  grid-column: span 4;
  grid-row: span 2;
}
.work-card-tall {
  grid-column: span 2;
  grid-row: span 2;
}
.work-card-wide {
  grid-column: span 4;
  grid-row: span 1;
}
.work-card:not(.work-card-hero):not(.work-card-tall):not(.work-card-wide) {
  grid-column: span 2;
  grid-row: span 1;
}
@media (max-width: 900px) {
  .work-mosaic { grid-template-columns: repeat(2, 1fr); }
  .work-card-hero,
  .work-card-wide { grid-column: span 2; }
  .work-card-tall { grid-column: span 1; grid-row: span 2; }
  .work-card:not(.work-card-hero):not(.work-card-tall):not(.work-card-wide) { grid-column: span 1; }
}
@media (max-width: 600px) {
  .work-mosaic { grid-template-columns: 1fr; }
  .work-card-hero,
  .work-card-wide,
  .work-card-tall,
  .work-card:not(.work-card-hero):not(.work-card-tall):not(.work-card-wide) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Card premium : image plein cadre + Ken Burns + bordure dorée animée */
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(224, 180, 128, 0.25);
  background: #0c221c;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .55s var(--ease-out), box-shadow .55s ease, border-color .4s ease;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  isolation: isolate;
}
/* Bordure dorée animée au hover (gradient running) */
.work-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(224, 180, 128, 0) 40%,
    rgba(240, 217, 181, 0.9) 50%,
    rgba(224, 180, 128, 0) 60%,
    transparent 100%);
  background-size: 250% 250%;
  background-position: 0% 0%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  z-index: 3;
}
.work-card:hover::before {
  opacity: 1;
  animation: workBorderShimmer 2.4s linear infinite;
}
@keyframes workBorderShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 250% 250%; }
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 180, 128, 0.7);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(224, 180, 128, 0.25),
    inset 0 0 0 1px rgba(255, 244, 214, 0.3);
}

.work-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* Effet Ken Burns : zoom lent permanent + dérive subtile */
.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), filter .6s ease;
  filter: brightness(0.74) saturate(1.06);
  animation: kenBurns 22s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1.5%); }
}
.work-card:hover .work-card-img img {
  animation-play-state: paused;
  transform: scale(1.10);
  filter: brightness(0.95) saturate(1.18) contrast(1.05);
}

/* Spotlight doré qui suit la souris au hover */
.work-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(224, 180, 128, 0.22) 0%,
    transparent 30%
  );
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  z-index: 2;
}
.work-card:hover .work-card-img::after { opacity: 1; }

/* Overlay éditorial : titre en bas, fade gradient pour la lisibilité */
.work-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  background: linear-gradient(180deg,
    transparent 30%,
    rgba(12, 34, 28, 0.4) 60%,
    rgba(12, 34, 28, 0.92) 100%);
  z-index: 2;
}
.work-card-num {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  background: rgba(12, 34, 28, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(224, 180, 128, 0.35);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #e0b480;
  margin-bottom: auto;
}
.work-card-overlay h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  color: var(--cream);
  margin: 0 0 0.4rem;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.work-card-hero .work-card-overlay h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.work-card-overlay p {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: clamp(0.85rem, 1vw, 1.05rem);
  color: var(--cream);
  opacity: 0.88;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.work-card-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease .15s, transform .5s var(--ease-out) .15s;
}
.work-card:hover .work-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* Cascade au hover : titre + pitch montent en escalade */
.work-card-overlay h3 {
  transition: transform .55s var(--ease-out);
}
.work-card-overlay p {
  transition: transform .55s var(--ease-out) .05s, opacity .4s ease .05s;
}
.work-card:hover .work-card-overlay h3 { transform: translateY(-4px); }
.work-card:hover .work-card-overlay p  { transform: translateY(-3px); opacity: 1; }
.work-card-num { transition: transform .4s var(--ease-out), border-color .35s ease; }
.work-card:hover .work-card-num {
  transform: translateY(-3px);
  border-color: var(--gold-light);
}

/* ============================================================
   v23 — OFFRE Cards 3D parallax tilt (ultra premium)
   ============================================================ */
body.page-offre .offre-grid-v2 {
  perspective: 1400px;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
  gap: clamp(2rem, 3vw, 2.8rem) !important;
}
body.page-offre .svc-card {
  transform-style: preserve-3d !important;
  transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .55s ease, border-color .4s ease !important;
  will-change: transform;
  background: linear-gradient(180deg, #0c221c 0%, #14302a 100%) !important;
  border: 1px solid rgba(224, 180, 128, 0.35) !important;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(224, 180, 128, 0.18) !important;
  position: relative;
  isolation: isolate;
  /* Animation d'apparition cascade */
  opacity: 0;
  transform: translateY(40px) scale(0.96);
}
body.page-offre .svc-card.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow .55s ease,
    border-color .4s ease;
}
body.page-offre .svc-card.is-revealed:nth-child(1) { transition-delay: 0s; }
body.page-offre .svc-card.is-revealed:nth-child(2) { transition-delay: .12s; }
body.page-offre .svc-card.is-revealed:nth-child(3) { transition-delay: .24s; }
body.page-offre .svc-card.is-revealed:nth-child(4) { transition-delay: .36s; }
body.page-offre .svc-card.is-revealed:nth-child(5) { transition-delay: .48s; }
body.page-offre .svc-card.is-revealed:nth-child(6) { transition-delay: .60s; }

/* Ambient glow doré pulsant — animation infinie subtile */
body.page-offre .svc-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(224, 180, 128, 0) 35%,
    rgba(240, 217, 181, 0.95) 50%,
    rgba(224, 180, 128, 0) 65%,
    transparent 100%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
  z-index: 4;
}
body.page-offre .svc-card:hover::after {
  opacity: 1;
  animation: offreNeon 3.5s linear infinite;
}
@keyframes offreNeon {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 300%; }
}

/* Ambient glow externe pulsant (à côté de la card, halo doré subtil) */
body.page-offre .svc-card-feature {
  animation: featurePulse 4s ease-in-out infinite;
}
@keyframes featurePulse {
  0%, 100% {
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(224, 180, 128, 0.4),
      0 0 30px rgba(224, 180, 128, 0.18);
  }
  50% {
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(240, 217, 181, 0.55),
      0 0 60px rgba(224, 180, 128, 0.35);
  }
}
/* Reflet doré qui suit le curseur (via variable CSS définie par JS) */
body.page-offre .svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(224, 180, 128, 0.22) 0%,
    transparent 40%
  );
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 3;
}
body.page-offre .svc-card:hover::before { opacity: 1; }

/* Card interne : transform Z pour effet de profondeur */
body.page-offre .svc-card:hover {
  border-color: var(--gold-light) !important;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 244, 214, 0.3),
    0 0 0 1px rgba(224, 180, 128, 0.55) !important;
}
body.page-offre .svc-card-media {
  transform: translateZ(20px);
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}
body.page-offre .svc-card-body {
  transform: translateZ(30px);
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.6rem 1.6rem 1.8rem;
}
body.page-offre .svc-card:hover .svc-card-media { transform: translateZ(40px); }
body.page-offre .svc-card:hover .svc-card-body { transform: translateZ(60px); }

/* Numéro badge en haut, sur fond doré métal flottant */
body.page-offre .svc-card-num {
  background: linear-gradient(135deg, #8c6a3d 0%, #c69968 30%, #f0d9b5 50%, #ecc89e 70%, #c69968 100%) !important;
  color: #0c221c !important;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(140, 106, 61, 0.5);
  transform: translateZ(50px);
}

/* Image plus large + ratio adapté */
body.page-offre .svc-card-media {
  aspect-ratio: 16 / 11;
  position: relative;
  overflow: hidden;
}
body.page-offre .svc-card-feature .svc-card-media {
  aspect-ratio: 21 / 9 !important;
}
body.page-offre .svc-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12, 34, 28, 0.7) 100%);
  pointer-events: none;
}

/* Titre plus généreux */
body.page-offre .svc-card-body h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.7rem) !important;
  margin-bottom: 0.6rem !important;
}
body.page-offre .svc-card-feature .svc-card-body h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem) !important;
}
body.page-offre .svc-card-meta {
  font-size: 0.65rem !important;
  color: var(--gold-light) !important;
}
body.page-offre .svc-card-link {
  margin-top: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(224, 180, 128, 0.18);
  color: var(--gold-light) !important;
  font-weight: 500;
  transition: color .3s ease, padding-left .3s ease;
}
body.page-offre .svc-card:hover .svc-card-link {
  color: var(--cream) !important;
  padding-left: 0.3rem;
}

/* Sur écrans tactiles : pas de tilt 3D, juste hover simple */
@media (hover: none) {
  body.page-offre .svc-card { transform: none !important; }
  body.page-offre .svc-card-media,
  body.page-offre .svc-card-body { transform: none !important; }
}

/* ============================================================
   v28 — OPTIMISATIONS MOBILE GLOBALES (≤ 700 px)
   Audit complet : padding, font-size, overflow, touch targets
   ============================================================ */
@media (max-width: 700px) {
  /* Anti-débordement horizontal global */
  html, body { overflow-x: hidden !important; }

  /* Padding horizontal réduit mais constant */
  :root {
    --pad-x: 1.1rem !important;
  }

  /* HEADER mobile : nav cachée, burger visible */
  .site-header {
    padding: 0.8rem 1.1rem !important;
    gap: 0.6rem !important;
  }
  .site-header .brand-logo {
    height: 38px !important;
  }
  .site-header .nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: min(85vw, 320px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(12, 34, 28, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(224, 180, 128, 0.3) !important;
    padding: 5rem 2rem 2rem !important;
    transition: right .4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 49 !important;
    margin: 0 !important;
  }
  .site-header .nav.is-open {
    right: 0 !important;
  }
  .site-header .nav ul {
    flex-direction: column !important;
    gap: 1.6rem !important;
    align-items: flex-start !important;
  }
  .site-header .nav a {
    font-size: 1.1rem !important;
    opacity: 1 !important;
  }
  .burger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    z-index: 50;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    transition: transform .3s ease, opacity .3s ease;
  }
  .burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.is-active span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }
  body.page-portfolio .burger span,
  body.page-offre .burger span,
  body.page-legal .burger span {
    background: #14302a !important;
  }
  /* Bouton Devis : un peu plus compact sur mobile */
  .site-header .header-actions .btn-pill {
    padding: 0.55em 1em !important;
    font-size: 0.72rem !important;
  }
  /* On masque le panier sur mobile (sauf boutique) */
  body:not(.page-boutique) .site-header .cart-btn { display: none !important; }

  /* HERO TRIPTYQUE : 1 seule vidéo plein écran sur mobile */
  .hero.hero-v13 .hero-triptych {
    grid-template-columns: 1fr !important;
    display: flex !important;
  }
  .hero.hero-v13 .hero-triptych > .clip {
    flex: 1 !important;
    width: 100% !important;
  }
  .hero.hero-v13 .hero-triptych > .clip:not(:first-child) {
    display: none !important;
  }
  .hero.hero-v13 .hero-logo-mark img {
    width: clamp(56px, 16vw, 80px) !important;
  }
  .hero-title-big {
    font-size: clamp(2.2rem, 11vw, 3.4rem) !important;
    line-height: 1 !important;
  }
  .hero-overline span:not(.dot) {
    font-size: 0.62rem !important;
    letter-spacing: 0.18em !important;
  }
  .hero-sub {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    padding: 0 0.5rem !important;
  }
  .hero-cta-row {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.6rem !important;
    padding: 0 0.5rem !important;
  }
  .hero-cta-row > a {
    width: 100% !important;
    justify-content: center !important;
  }

  /* STATS : 2 colonnes mobile au lieu de 4 */
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
  .stat-num { font-size: 1.8rem !important; }
  .stat-label { font-size: 0.7rem !important; }

  /* SECTION TITLES : tailles réduites */
  .section-title.big {
    font-size: clamp(1.8rem, 9vw, 2.8rem) !important;
    line-height: 1.05 !important;
  }
  .section-title.big span { display: block !important; }
  .section-head {
    padding: 0 0.5rem !important;
    text-align: center !important;
  }
  .section-head .eyebrow {
    font-size: 0.65rem !important;
    letter-spacing: 0.2em !important;
  }
  .section-lede {
    font-size: 0.95rem !important;
    padding: 0 0.5rem !important;
  }

  /* WORK MOSAÏQUE : passe en 1 colonne propre */
  .work-mosaic {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 220px !important;
    gap: 0.8rem !important;
  }
  .work-card-hero,
  .work-card-wide,
  .work-card-tall,
  .work-card:not(.work-card-hero):not(.work-card-tall):not(.work-card-wide) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .work-card-hero {
    grid-row: span 2 !important;
  }
  .work-card-hero .work-card-overlay h3 {
    font-size: 1.5rem !important;
  }

  /* AUDIENCE SPLIT mobile : tabs au-dessus du panel */
  .audience .audience-split,
  .audience-split {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .audience-tab {
    padding: 1rem 1rem !important;
  }
  .aud-tab-text h3 { font-size: 0.92rem !important; }
  .aud-tab-hint { display: none !important; }
  .aud-num { width: 38px !important; height: 38px !important; font-size: 0.78rem !important; }
  .audience-panels { min-height: auto !important; }
  .audience-panel.is-active {
    grid-template-columns: 1fr !important;
  }
  .aud-panel-media {
    aspect-ratio: 16 / 9 !important;
    min-height: 220px !important;
  }
  .aud-panel-body { padding: 1.2rem !important; }
  .aud-panel-body h3 { font-size: 1.2rem !important; }
  .aud-panel-body p { font-size: 0.92rem !important; }

  /* SERVICES : padding réduit */
  .services-layout { grid-template-columns: 1fr !important; }
  .services-list { padding: 0 !important; }
  .srv { padding: 1.2rem 1rem !important; }
  .srv-title { font-size: 1.05rem !important; }
  .srv-desc { font-size: 0.88rem !important; }
  .services-visual { display: none !important; }

  /* PROCESS stepper : déjà en 1 col, on resserre */
  .process-v20 .stepper { grid-template-columns: 1fr !important; }
  .process-v20 .step-tab {
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding: 1rem 1.2rem !important;
    text-align: left !important;
  }
  .process-v20 .step-num { font-size: 1.4rem !important; }
  .process-v20 .step-panel.is-active {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .step-panel-icon { width: 80px !important; height: 80px !important; margin: 0 auto !important; }
  .step-panel-text h3 { font-size: 1.3rem !important; }

  /* FAQ doc : déjà en 1 col, on resserre */
  body:not(.page-boutique) .faq-doc { grid-template-columns: 1fr !important; }
  .faq-search { flex: 1 1 100% !important; }
  .faq-filters { justify-content: flex-start !important; overflow-x: auto !important; flex-wrap: nowrap !important; padding-bottom: 0.5rem !important; }
  .faq-chip { white-space: nowrap !important; flex-shrink: 0 !important; }
  .faq-q { padding: 0.9rem 1rem !important; }
  .faq-q-title { font-size: 0.88rem !important; }
  .faq-a { padding: 1.4rem 1.2rem !important; }
  .faq-a h3 { font-size: 1.2rem !important; }
  .faq-a p { font-size: 0.95rem !important; }

  /* LEAD MAGNET : passe en 1 col, mockup réduit */
  .lead-magnet-v20 .lead-magnet-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .lm-mockup-stage { transform: scale(0.85); }
  .lm-form-row { flex-direction: column !important; gap: 0.6rem !important; }
  .lm-form-row .big-cta { width: 100% !important; justify-content: center !important; }

  /* CONTACT : padding réduit */
  .contact-inner { padding: 0 !important; }
  .contact-info {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .contact-form { padding: 0 !important; }
  .field { margin-bottom: 1rem !important; }
  .contact-tags { gap: 0.4rem !important; }
  .chip {
    padding: 0.55em 0.9em !important;
    font-size: 0.72rem !important;
  }
  .big-cta {
    padding: 0.95rem 1.4rem !important;
    font-size: 0.85rem !important;
    width: 100% !important;
    justify-content: center !important;
  }

  /* FOOTER : 1 colonne sur mobile */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    text-align: center !important;
  }
  .footer-grid > div { text-align: center !important; }
  .footer-bottom {
    flex-direction: column !important;
    gap: 0.6rem !important;
    text-align: center !important;
    font-size: 0.75rem !important;
  }

  /* OFFRE mobile : grille 1 col */
  body.page-offre .offre-grid-v2,
  body.page-offre .offre-grid {
    grid-template-columns: 1fr !important;
    gap: 1.4rem !important;
    padding: 1.5rem 1.1rem !important;
  }
  body.page-offre .offre-card,
  body.page-offre .svc-card {
    grid-column: auto !important;
  }
  body.page-offre .svc-card-media,
  body.page-offre .svc-card-feature .svc-card-media {
    aspect-ratio: 16 / 11 !important;
  }
  body.page-offre .offre-hero .offre-title {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }
  body.page-offre .offre-meta {
    gap: 0.8rem !important;
    padding: 1rem 0 !important;
    flex-direction: column !important;
  }
  body.page-offre .offre-cta-band {
    padding: 2rem 1.2rem !important;
    width: calc(100% - 2rem) !important;
  }
  body.page-offre .offre-cta-band h2 {
    font-size: 1.4rem !important;
  }
  body.page-offre .offre-cta-row {
    flex-direction: column !important;
    width: 100% !important;
  }
  body.page-offre .offre-cta-row > a {
    width: 100% !important;
    justify-content: center !important;
  }

  /* PORTFOLIO mobile : déjà en 1 col, stage en haut */
  body.page-portfolio .portfolio-index {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1rem 1.1rem 3rem !important;
  }
  body.page-portfolio .pf-stage {
    position: static !important;
    order: -1;
  }
  body.page-portfolio .pf-row {
    padding: 0.9rem 0 !important;
    gap: 0.8rem !important;
  }
  body.page-portfolio .pf-title {
    font-size: clamp(1.05rem, 5vw, 1.4rem) !important;
  }
  body.page-portfolio .portfolio-filters {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    padding-bottom: 0.5rem !important;
    -webkit-overflow-scrolling: touch !important;
  }
  body.page-portfolio .filter-chip {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 0.7rem !important;
    padding: 0.5em 1em !important;
  }
  body.page-portfolio .portfolio-stats {
    flex-direction: column !important;
    gap: 0.8rem !important;
  }

  /* BOUTIQUE mobile : grid 2 cols */
  html body.page-boutique .shop-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
  }
  html body.page-boutique .shop-item-body h3 { font-size: 0.92rem !important; }
  html body.page-boutique .shop-cat { font-size: 0.56rem !important; }
  html body.page-boutique .shop-toolbar-row {
    flex-direction: column !important;
    gap: 0.8rem !important;
    align-items: stretch !important;
  }
  html body.page-boutique .shop-toolbar-row .shop-count { margin-right: 0 !important; }
  html body.page-boutique .shop-toolbar-row .search-input { width: 100% !important; }
  html body.page-boutique .boutique-title {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }

  /* PAGES PACKS mobile */
  .pack-hero {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.5rem 1.1rem !important;
  }
  .pack-hero-media { aspect-ratio: 16 / 11 !important; }
  .pack-title { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .pack-includes-grid { grid-template-columns: 1fr !important; }
  .pack-cta-row {
    flex-direction: column !important;
    width: 100% !important;
  }
  .pack-cta-row > a {
    width: 100% !important;
    justify-content: center !important;
  }
  .pack-quick {
    flex-direction: column !important;
    gap: 0.7rem !important;
  }

  /* PAGES LÉGALES mobile */
  body.page-legal main {
    padding: 6rem 1.1rem 3rem !important;
  }
  body.page-legal h1 { font-size: 1.8rem !important; }
  body.page-legal h2 { font-size: 1.05rem !important; }

  /* TOUCH TARGETS : 44px min partout */
  button, .btn, .btn-pill, .btn-line, .btn-ghost, .big-cta,
  .filter-chip, .cat-chip, .faq-chip, .chip,
  .footer-list a, .nav a {
    min-height: 44px !important;
    display: inline-flex;
    align-items: center;
  }

  /* WhatsApp FAB mobile : positionné pour ne pas masquer */
  .whatsapp-fab {
    width: 48px !important;
    height: 48px !important;
    bottom: 0.9rem !important;
    right: 0.9rem !important;
  }
  .scroll-top {
    width: 44px !important;
    height: 44px !important;
    left: 0.9rem !important;
  }

  /* Cookie banner mobile : compact */
  .cookie-banner {
    padding: 0.9rem 1rem !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .cookie-banner p { font-size: 0.85rem !important; }
  .cookie-banner-actions {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }
}

/* ============================================================
   v28 — Petits écrans (≤ 380 px) : encore plus serré
   ============================================================ */
@media (max-width: 380px) {
  .hero-title-big { font-size: 1.9rem !important; }
  .section-title.big { font-size: 1.6rem !important; }
  .stats-grid { gap: 0.6rem !important; }
  .stat-num { font-size: 1.5rem !important; }
  html body.page-boutique .shop-grid { grid-template-columns: 1fr !important; }
}

/* ---------- FOOTER : reste en vert profond pour cohérence ---------- */
.site-footer {
  background: #0c221c !important;
  color: #fdebd6 !important;
  position: relative;
  z-index: 1;
}
.site-footer a:hover { color: #ecc89e !important; }
