/*
 Theme Name:   Hello Elementor Child — AD-Créa
 Theme URI:    https://www.ad-crea.fr
 Description:  Thème enfant de Hello Elementor pour le site AD-Créa (Chatou, 78)
 Author:       AD-Créa / Alexis Duport
 Author URI:   https://www.ad-crea.fr
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 Text Domain:  hello-elementor-child
*/

/* ============================================================
   0. TOKENS GLOBAUX
   ============================================================
   Ces variables CSS servent de référence pour le CSS sur-mesure
   ci-dessous. Les couleurs et polices officielles sont déclarées
   dans Elementor > Réglages du site (couleurs et polices globales).
   Ne jamais modifier ces valeurs ici sans les répercuter dans Elementor.
   ============================================================ */
:root {
  --red:      #E0241B;
  --red-deep: #A81810;
  --paper:    #F6F2EB;
  --paper-2:  #EEE8DD;
  --ink:      #1A1512;
  --ink-soft: #6A5F54;
  --line:     rgba(26, 21, 18, .13);

  --font-display: 'Jost', sans-serif;
  --font-body:    'Hanken Grotesk', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --maxw: 1280px;
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   2. TYPOGRAPHIE SUR-MESURE
   ============================================================ */

/* Sur-titres / étiquettes en monospace rouge */
.eyebrow,
.e-con .eyebrow,
[class*="elementor"] .eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: none;        /* pas de majuscules forcées */
  color: var(--red);
  font-weight: 500;
  display: block;
  margin-bottom: .8rem;
}

/* Sur-titres dans les sections sombres */
.adcrea-dark .eyebrow,
.e-con.adcrea-dark .eyebrow {
  color: #ff6a5f;
}

/* Titres : Jost avec tracking serré */
h1, h2, h3, h4,
.elementor-heading-title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.01em;
}

/* ============================================================
   3. HEADER STICKY TRANSPARENT → SOLIDE
   Elementor Theme Builder génère le header avec id="site-header"
   ou la classe .e-header. Le JS du thème ajoute la classe .solid
   quand l'utilisateur a dépassé le hero.
   ============================================================ */
#site-header,
.e-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}

/* état transparent (par-dessus le hero) */
#site-header:not(.solid),
.e-header:not(.solid) {
  background: transparent !important;
  box-shadow: none;
}

/* liens de nav blancs sur fond transparent */
#site-header:not(.solid) .elementor-nav-menu a,
#site-header:not(.solid) .elementor-widget-navigation-menu a,
.e-header:not(.solid) .elementor-nav-menu a {
  color: rgba(255, 255, 255, .82) !important;
}

#site-header:not(.solid) .elementor-nav-menu a:hover,
.e-header:not(.solid) .elementor-nav-menu a:hover {
  color: #fff !important;
}

/* logo blanc sur fond transparent */
#site-header:not(.solid) .site-logo a,
#site-header:not(.solid) .adcrea-logo {
  color: #fff !important;
}

/* état solide (au scroll) */
#site-header.solid,
.e-header.solid {
  background: var(--paper) !important;
  box-shadow: 0 1px 0 var(--line);
}

/* espace pour compenser le header fixe sur les pages internes */
.adcrea-inner-page .e-container:first-child,
.adcrea-inner-page .elementor-section:first-child {
  padding-top: 80px;
}

/* ============================================================
   4. LOGO AD-CRÉA (stylé en CSS)
   ============================================================ */
.adcrea-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.03em;
  color: var(--ink);
  transition: color .35s ease;
}

.adcrea-logo .logo-c {
  color: var(--red);
}

/* ============================================================
   5. BOUTONS (complément aux tokens Elementor)
   ============================================================ */
.elementor-button,
.e-n-button {
  border-radius: 999px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  white-space: nowrap;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}

/* Bouton rouge plein */
.btn-red,
.elementor-button.btn-red {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
}
.btn-red:hover,
.elementor-button.btn-red:hover {
  background: var(--red-deep) !important;
  border-color: var(--red-deep) !important;
}

/* Bouton fantôme (bordure encre) */
.btn-ghost,
.elementor-button.btn-ghost {
  background: transparent !important;
  border: 1.5px solid currentColor !important;
  color: var(--ink) !important;
}
.btn-ghost:hover,
.elementor-button.btn-ghost:hover {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

/* Bouton clair (sur fond sombre) */
.btn-light,
.elementor-button.btn-light {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, .55) !important;
  color: #fff !important;
}
.btn-light:hover,
.elementor-button.btn-light:hover {
  background: #fff !important;
  color: var(--ink) !important;
}

/* Bouton blanc (sur bande rouge) */
.btn-white,
.elementor-button.btn-white {
  background: #fff !important;
  border: 1.5px solid #fff !important;
  color: var(--red) !important;
}
.btn-white:hover,
.elementor-button.btn-white:hover {
  background: transparent !important;
  color: #fff !important;
}

/* ============================================================
   6. HERO VIDÉO (page d'accueil)
   ============================================================ */

/* Section hero vidéo Elementor */
.adcrea-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

/* Voile dégradé par-dessus la vidéo */
.adcrea-hero-scrim,
.adcrea-hero > .elementor-background-video-container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(20, 8, 6, .55) 0%,
    rgba(20, 8, 6, .15) 35%,
    rgba(20, 8, 6, .55) 100%
  );
  pointer-events: none;
}

/* Fallback animé si pas de vidéo (gradient rouge → brun) */
.adcrea-hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, #2a0c0a 0%, #7a140e 38%, #1c1512 100%);
  background-size: 200% 200%;
  animation: reelpan 18s ease-in-out infinite;
}
.adcrea-hero-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 55% at 18% 22%, rgba(224, 36, 27, .55), transparent 60%),
    radial-gradient(45% 50% at 82% 30%, rgba(255, 150, 90, .22), transparent 60%);
  mix-blend-mode: screen;
  animation: reelpan 22s ease-in-out infinite reverse;
}
@keyframes reelpan {
  0%   { background-position: 0% 30%; }
  50%  { background-position: 100% 70%; }
  100% { background-position: 0% 30%; }
}

/* Indicateur de défilement */
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .6);
  text-transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scrolldown .ln {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, .5);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .4; }
  50%       { transform: scaleY(1); opacity: 1; }
}

/* Étiquette vidéo bas gauche */
.vlabel {
  position: absolute;
  left: 40px;
  bottom: 26px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: .7rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .04em;
}

/* Badge lecture (haut droit du hero) */
.reel-badge {
  position: absolute;
  top: 108px;
  right: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .8);
}
.reel-badge .play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}
.reel-badge .play::after {
  content: "";
  border-left: 11px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

/* ============================================================
   7. HERO STATS LINE
   ============================================================ */
.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .78);
}
.hero-stats b { color: #fff; font-weight: 500; }
.hero-stats .sep { color: var(--red); }

/* ============================================================
   8. BANDE DE CONFIANCE (trust strip)
   ============================================================ */
.adcrea-trust {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.adcrea-trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 26px 40px;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 0 auto;
}
.adcrea-trust-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--ink-soft);
  max-width: 200px;
  line-height: 1.5;
}
.adcrea-trust-logos {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}
.adcrea-trust-logos span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  color: #9a8f82;
  opacity: .85;
}

/* ============================================================
   9. DEUX PORTES (TPE/PME + Nouvelles activités)
   ============================================================ */
.adcrea-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.adcrea-door {
  position: relative;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  text-decoration: none;
  color: var(--ink);
}
.adcrea-door:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -28px rgba(26, 21, 18, .4);
}

/* Numéro filigrane */
.adcrea-door .door-num {
  position: absolute;
  top: 30px;
  right: 36px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  color: var(--paper-2);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.adcrea-door.adcrea-door-dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.adcrea-door.adcrea-door-dark .door-num {
  color: rgba(255, 255, 255, .07);
}

.adcrea-door .door-arrow {
  color: var(--red);
  display: inline-block;
  transition: transform .25s;
  margin-left: .4em;
}
.adcrea-door:hover .door-arrow {
  transform: translateX(5px);
}

@media (max-width: 780px) {
  .adcrea-doors {
    grid-template-columns: 1fr;
  }
  .adcrea-door {
    min-height: 340px;
  }
}

/* ============================================================
   10. ÉTAPES / MÉTHODE (grille 4 colonnes avec filets)
   ============================================================ */
.adcrea-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.adcrea-steps.adcrea-steps-light {
  border-top-color: var(--line);
}

.adcrea-step {
  padding: 34px 26px 30px 0;
  border-right: 1px solid rgba(255, 255, 255, .14);
}
.adcrea-steps.adcrea-steps-light .adcrea-step {
  border-right-color: var(--line);
}
.adcrea-step:last-child {
  border-right: none;
  padding-right: 0;
}

.adcrea-step .step-num {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--red);
  letter-spacing: .1em;
}
.adcrea-step h3 {
  font-size: 1.5rem;
  margin-top: 18px;
}
.adcrea-step p {
  font-size: .98rem;
  margin-top: .6rem;
  color: rgba(246, 242, 235, .65);
}
.adcrea-steps.adcrea-steps-light .adcrea-step p {
  color: var(--ink-soft);
}
.adcrea-step .step-bar {
  height: 3px;
  background: var(--red);
  width: 38px;
  margin-top: 22px;
  border-radius: 2px;
}

@media (max-width: 880px) {
  .adcrea-steps {
    grid-template-columns: 1fr 1fr;
  }
  .adcrea-step {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    padding: 26px 22px 26px 0;
  }
  .adcrea-steps.adcrea-steps-light .adcrea-step {
    border-bottom-color: var(--line);
  }
  .adcrea-step:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 520px) {
  .adcrea-steps {
    grid-template-columns: 1fr;
  }
  .adcrea-step {
    border-right: none;
    padding-right: 0;
  }
}

/* ============================================================
   11. FILTRES RÉALISATIONS
   ============================================================ */
.adcrea-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.adcrea-filter {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: none;
  cursor: pointer;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 8px 16px;
  transition: border-color .2s, color .2s, background .2s;
}
.adcrea-filter:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.adcrea-filter.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Grille portfolio */
.adcrea-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.adcrea-work {
  cursor: pointer;
  transition: opacity .3s, transform .3s;
}
.adcrea-work.hide {
  display: none;
}

/* Badge catégorie sur les vignettes */
.adcrea-work-cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .12em;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  padding: 3px 10px;
  margin-top: 10px;
}

@media (max-width: 880px) { .adcrea-work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .adcrea-work-grid { grid-template-columns: 1fr; } }

/* ============================================================
   12. FAQ ACCORDÉON
   ============================================================ */
.adcrea-faq {
  max-width: 820px;
  margin: 0 auto;
}

.adcrea-qa {
  border-bottom: 1px solid var(--line);
}

.adcrea-qa-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
}

.adcrea-qa-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
}
.adcrea-qa-icon::before,
.adcrea-qa-icon::after {
  content: "";
  position: absolute;
  background: var(--red);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.adcrea-qa-icon::before { width: 14px; height: 2px; }
.adcrea-qa-icon::after  { width: 2px; height: 14px; transition: transform .3s; }
.adcrea-qa.open .adcrea-qa-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.adcrea-qa-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.adcrea-qa-ans p {
  color: var(--ink-soft);
  padding-bottom: 24px;
  max-width: 680px;
}

/* ============================================================
   13. CHIPS DE PROFIL (formulaire contact)
   ============================================================ */
.adcrea-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.adcrea-chip {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  cursor: pointer;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  transition: background .2s, border-color .2s, color .2s;
}
.adcrea-chip:hover { border-color: var(--ink); }
.adcrea-chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ============================================================
   14. MENU MOBILE PLEIN ÉCRAN
   ============================================================ */
.adcrea-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ink);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.2, .7, .2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
}
.adcrea-mobile-nav.open {
  transform: none;
}
.adcrea-mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--paper);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  display: block;
}
.adcrea-mobile-nav a:last-of-type { border: none; }
.adcrea-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   15. SECTION SOMBRE (fond encre)
   ============================================================ */
.adcrea-dark,
.e-con.adcrea-dark,
.elementor-section.adcrea-dark {
  background: var(--ink) !important;
  color: var(--paper);
}
.adcrea-dark .elementor-heading-title,
.adcrea-dark h1, .adcrea-dark h2, .adcrea-dark h3 {
  color: var(--paper);
}
.adcrea-dark p { color: rgba(246, 242, 235, .7); }

/* ============================================================
   16. SECTION PAPIER 2 (fond alterné)
   ============================================================ */
.adcrea-alt,
.e-con.adcrea-alt {
  background: var(--paper-2) !important;
}

/* ============================================================
   17. BANDE CTA ROUGE (réutilisable en bas de chaque page)
   ============================================================ */
.adcrea-cta-band {
  background: var(--red);
  color: #fff;
  text-align: center;
}
.adcrea-cta-band .elementor-heading-title {
  color: #fff;
}

/* ============================================================
   18. HERO DES PAGES INTERNES
   ============================================================ */
.adcrea-page-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 190px 0 90px;
  overflow: hidden;
}
.adcrea-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 70% at 80% 0%, rgba(224, 36, 27, .35), transparent 60%);
  pointer-events: none;
}
.adcrea-page-hero .elementor-heading-title {
  color: var(--paper);
}
.adcrea-page-hero em,
.adcrea-page-hero .em-red {
  font-style: normal;
  color: var(--red);
}
.adcrea-page-hero p {
  color: rgba(246, 242, 235, .82);
}

/* Fil d'Ariane */
.adcrea-crumbs {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: rgba(246, 242, 235, .5);
  margin-bottom: 26px;
}

/* ============================================================
   19. CARTE CAS CLIENT
   ============================================================ */
.adcrea-case {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
}
@media (max-width: 780px) {
  .adcrea-case { grid-template-columns: 1fr; }
}

/* ============================================================
   20. TABLEAU COMPARATIF TARIFS
   ============================================================ */
.adcrea-cmp {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.adcrea-cmp th,
.adcrea-cmp td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
}
.adcrea-cmp thead th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.adcrea-cmp thead th.c,
.adcrea-cmp td.c {
  text-align: center;
}
.adcrea-cmp td.c { color: var(--red); font-weight: 700; }
.adcrea-cmp td.no { color: #c9c2b6; text-align: center; }
.adcrea-cmp tr:last-child td { border-bottom: none; }
.adcrea-cmp .feat { background: rgba(224, 36, 27, .04); }

@media (max-width: 680px) {
  .adcrea-cmp { font-size: .85rem; }
  .adcrea-cmp th,
  .adcrea-cmp td { padding: 11px 10px; }
}

/* ============================================================
   21. PLAN TARIFAIRE (badge "le plus demandé")
   ============================================================ */
.adcrea-plan-featured {
  border-color: var(--red) !important;
  box-shadow: 0 24px 50px -30px rgba(224, 36, 27, .5);
  position: relative;
}

.adcrea-plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============================================================
   22. ANIMATIONS AU SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Entrée en cascade sur le hero */
.rise {
  opacity: 0;
  transform: translateY(26px);
  animation: rise .9s cubic-bezier(.2, .7, .2, 1) forwards;
}
.d1 { animation-delay: .15s; }
.d2 { animation-delay: .30s; }
.d3 { animation-delay: .45s; }
.d4 { animation-delay: .60s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ============================================================
   23. ACCESSIBILITÉ — RESPECT DE prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .rise,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .adcrea-hero-fallback,
  .adcrea-hero-fallback::before {
    animation: none;
  }
  .scrolldown .ln {
    animation: none;
    opacity: .6;
  }
}

/* ============================================================
   24. FOOTER
   ============================================================ */
.adcrea-footer {
  background: var(--ink);
  color: rgba(246, 242, 235, .7);
}
.adcrea-footer .adcrea-logo {
  color: var(--paper);
}
.adcrea-footer-col h4 {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 16px;
}
.adcrea-footer a:hover {
  color: var(--red) !important;
}
.adcrea-footer-legal {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .05em;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 24px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   25. OVERRIDE ELEMENTOR — corrections globales
   ============================================================ */

/* Supprimer les marges parasites Elementor sur le premier bloc */
.elementor-section:first-child,
.e-con:first-child {
  margin-top: 0;
}

/* Empêcher les images de déborder des conteneurs Elementor */
.elementor-widget-image img {
  max-width: 100%;
  height: auto;
}

/* Conteneur max-width AD-Créa dans les sections Elementor */
.adcrea-maxw > .elementor-container,
.adcrea-maxw > .e-con-inner {
  max-width: var(--maxw);
}

/* ============================================================
   26. UTILITAIRES
   ============================================================ */
.text-red   { color: var(--red) !important; }
.text-ink   { color: var(--ink) !important; }
.text-white { color: #fff !important; }
.text-mono  {
  font-family: var(--font-mono) !important;
  font-size: .72rem;
  letter-spacing: .18em;
}
.fw-700 { font-weight: 700 !important; }
.fw-600 { font-weight: 600 !important; }

/* Ombres */
.shadow-card { box-shadow: 0 24px 50px -28px rgba(26, 21, 18, .4); }
.shadow-red  { box-shadow: 0 24px 50px -30px rgba(224, 36, 27, .5); }
