/* =========================================================
   Divin Concept — Thème public
   Palette logo (assets/images/logo.png) : bleu → cyan → mist
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Logo blue family (assets/images/logo.png) — electric cyan #00BFFF */
  --brand-blue: #00BFFF;
  --brand-blue-dark: #0090D9;
  --brand-blue-deep: #0A2E4D;
  --brand-blue-light: #55CCFF;
  --brand-sky: #55CCFF;
  --brand-mist: #E0F7FF;
  --brand-logo-blue: #00BFFF;
  --brand-cyan: #00BFFF;
  --brand-gradient: linear-gradient(135deg, #00BFFF 0%, #55CCFF 55%, #E0F7FF 100%);
  --brand-gradient-h: linear-gradient(to right, #00BFFF 0%, #55CCFF 55%, #E0F7FF 100%);

  --brand-dark: #0A2E4D;
  --brand-gold: #00BFFF;
  --brand-gold-dark: #0090D9;
  --brand-light: #F8FAFC;
  --brand-slate: #334155;
  --brand-muted: #64748b;

  /* Sync tokens existants */
  --primary-color: #0A2E4D;
  --primary-light: #00BFFF;
  --accent-color: #F8FAFC;
  --accent-light: #E0F7FF;
  --dark-color: #051A2E;
  --light-color: #F8FAFC;
  --text-color: #334155;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --warm-accent: #00BFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 10px rgba(5, 26, 46, 0.06);
  --shadow-md: 0 8px 28px rgba(5, 26, 46, 0.1);
  --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
  --radius-card: 1rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--brand-light);
  color: var(--brand-slate);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .section-title, .ux-h2 {
  font-family: var(--font-display);
}

::selection {
  background: var(--brand-blue);
  color: #fff;
}

/* Scrollbar prestige */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--brand-dark); }
::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-blue-dark); }

/* ---------- HEADER (nav fixe type mockup) ---------- */
body.site-public #header,
#header.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
  padding: .5rem 0;
}

body.site-public #header.nav-scrolled,
#header.site-nav.nav-scrolled {
  background: rgba(5, 26, 46, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: .4rem 0;
}

#header .site-nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: #fff;
  z-index: 50;
  flex-shrink: 0;
}

.site-brand img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: 70px;
  max-height: 74px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  border-radius: 0;
  background: transparent !important;
  padding: 0;
  filter: none;
  box-shadow: none;
}

/* Mobile / tablette : barre compacte (logo ~54px, pas 132px) */
@media (max-width: 900px) {
  #header .site-nav-inner {
    min-height: 60px;
    gap: .65rem;
    padding: 0 1rem;
  }
  .site-brand img {
    height: 54px;
    max-height: 56px;
    max-width: 220px;
  }
  body.site-public #header,
  #header.site-nav {
    padding: .45rem 0;
  }
  body.site-public #header.nav-scrolled,
  #header.site-nav.nav-scrolled {
    padding: .3rem 0;
  }
  .site-nav-actions {
    gap: .45rem;
  }
  .mobile-header-cta {
    min-height: 40px;
    padding: 0 .85rem;
    font-size: .74rem;
  }
}

/* Le PNG contient déjà « DIVIN CONCEPT » — éviter le doublon texte */
.site-brand-text {
  display: none;
}

.site-brand-text .name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  color: #fff;
}

.site-brand-text .tag {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-top: .3rem;
}

/* Desktop nav — liens clairs sur fond sombre */
.nav-desktop {
  display: none !important;
  align-items: center !important;
  gap: .15rem !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (min-width: 1100px) {
  .nav-desktop { display: flex !important; }
}

.nav-item {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: .55rem .7rem !important;
  font-size: .8rem !important;
  font-weight: 500 !important;
  font-family: var(--font-body) !important;
  border-radius: 0 !important;
  letter-spacing: .02em;
  position: relative;
}

.nav-item::before {
  display: none !important;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: .7rem;
  right: .7rem;
  height: 2px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.nav-item:hover,
.nav-item.active {
  color: var(--brand-blue) !important;
  background: transparent !important;
}

.nav-item:hover::after,
.nav-item.active::after {
  transform: scaleX(1);
}

.nav-item.active {
  color: var(--brand-blue) !important;
}

.dropdown-menu {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(5, 26, 46, 0.06);
  box-shadow: 0 20px 40px rgba(5, 26, 46, 0.18);
}

.dropdown-item {
  color: var(--brand-dark);
  font-family: var(--font-body);
}

.dropdown-item:hover {
  background: rgba(0, 156, 255, 0.1);
  color: var(--brand-dark);
}

.desktop-cta {
  display: none !important;
  background: var(--brand-blue) !important;
  color: #fff !important;
  padding: .75rem 1.5rem !important;
  border-radius: 9999px !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  letter-spacing: .04em;
  box-shadow: 0 0 20px rgba(0, 156, 255, 0.35);
  font-family: var(--font-body) !important;
}

.desktop-cta:hover {
  background: #fff !important;
  color: var(--brand-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
}

@media (min-width: 1100px) {
  .desktop-cta { display: inline-flex !important; }
}

#burger {
  background: rgba(255, 255, 255, 0.1) !important;
}

#burger span {
  background: #fff !important;
}

#burger:hover {
  background: rgba(0, 156, 255, 0.25) !important;
}

/* Mobile menu — plein écran prestige + blur (index1) */
#mobileMenuOverlay {
  background: rgba(5, 26, 46, 0.5) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  z-index: 990 !important;
}

#mobileMenu {
  background: rgba(5, 26, 46, 0.92) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  box-shadow: none !important;
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  z-index: 995 !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease !important;
}

#mobileMenu.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

#header.site-nav,
#header {
  z-index: 1000 !important;
}
.site-brand,
.site-nav-actions,
#burger {
  position: relative;
  z-index: 1002;
}

#closeMenuBtn {
  display: none !important;
}

.mobile-menu-logo {
  display: none !important;
}

.mobile-nav {
  align-items: center !important;
  text-align: center !important;
  max-width: 22rem;
  margin: 0 auto;
}

.mobile-nav a,
.mobile-dropdown-toggle {
  color: #fff !important;
  border-bottom: none !important;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 1.85rem) !important;
  font-weight: 500 !important;
  justify-content: center !important;
}

.mobile-nav a:hover,
.mobile-dropdown-toggle:hover {
  color: var(--brand-cyan, #00BFFF) !important;
  background: transparent !important;
}

.mobile-dropdown-toggle i { color: var(--brand-cyan, #00BFFF) !important; }

.mobile-dropdown-menu {
  border-left: none !important;
  align-items: center;
}

.mobile-dropdown-menu a {
  color: rgba(255, 255, 255, 0.65) !important;
  font-family: var(--font-body) !important;
  font-size: .95rem !important;
  justify-content: center !important;
}

.mobile-cta {
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.mobile-cta a {
  background: var(--brand-cyan, #00BFFF) !important;
  color: #051A2E !important;
  box-shadow: 0 8px 28px rgba(0, 191, 255, 0.35) !important;
}

.mobile-cta a:hover {
  background: #fff !important;
  color: var(--brand-dark) !important;
}

/* Offset contenu sous header fixe */
body.site-public main,
body.site-public .ux-page {
  /* hero gère son propre espace */
}

body.site-public:not(.page-home) main {
  padding-top: 5.5rem;
}
@media (max-width: 900px) {
  body.site-public:not(.page-home) main {
    padding-top: 5rem;
  }
}

/* ---------- HERO prestige ---------- */
.ux-hero,
.prestige-hero {
  min-height: 100vh !important;
  min-height: 100dvh !important;
  align-items: center !important;
  position: relative;
  overflow: hidden;
  background-color: var(--brand-dark);
}

.prestige-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,46,77,.82), rgba(10,46,77,.48) 45%, rgba(5,26,46,.95)),
              linear-gradient(to right, rgba(10,46,77,.78), rgba(0,156,255,.12));
  z-index: 1;
  pointer-events: none;
}

.prestige-hero .ux-hero-inner,
.prestige-hero .prestige-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  width: min(80rem, 92%);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.prestige-hero .ux-eyebrow,
.prestige-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--brand-blue) !important;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.prestige-pill .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-sky);
  animation: prestige-pulse 2s ease-in-out infinite;
}

@keyframes prestige-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.prestige-hero h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem) !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #fff;
}

.prestige-hero h1 .gold-italic {
  font-style: italic;
  background: var(--brand-gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.prestige-hero .ux-lead {
  color: #cbd5e1;
  font-weight: 300;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.prestige-hero .ux-cta-row {
  justify-content: center;
  align-items: center;
}

.prestige-hero .prestige-hero-links {
  justify-content: center;
  text-align: center;
}

.ux-btn--primary,
.prestige-hero .ux-btn--primary {
  background: var(--brand-blue) !important;
  color: #fff !important;
  box-shadow: 0 10px 40px -10px rgba(0, 156, 255, 0.55) !important;
  border-color: transparent !important;
}

.ux-btn--primary:hover {
  background: var(--brand-blue-dark) !important;
  color: #fff !important;
}

.ux-btn--ghost {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(8px);
}

.ux-btn--outline:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.prestige-hero .home-specialties { display: none; }
.home-specialties--after-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: min(72rem, calc(100% - 3rem));
  margin: 2.5rem auto 0;
}
.home-specialties--after-stats .home-specialty {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  color: var(--brand-dark);
}
.home-specialties--after-stats .home-specialty i {
  color: var(--brand-blue);
}
.home-specialties--after-stats .home-specialty h3 {
  color: var(--brand-dark);
  font-family: var(--font-display);
}
.home-specialties--after-stats .home-specialty p {
  color: var(--brand-muted);
}
@media (max-width: 768px) {
  .home-specialties--after-stats { grid-template-columns: 1fr; }
}

/* Ancres visibles sous la nav fixe */
#accueil,
#stats,
#agence,
#expertise,
#portfolio,
#realisations,
#temoignages,
#processus,
#evenements,
#contact,
#faq {
  scroll-margin-top: 5.5rem;
}

/* ---------- AGENCE / Excellence (index1.html #agence) ---------- */
.prestige-agence {
  position: relative;
  padding: 7rem 1.5rem;
  overflow: hidden;
  background: #fff;
  z-index: 1;
  display: block !important;
  visibility: visible !important;
}

.prestige-agence-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}
.prestige-agence-blob--gold {
  top: 0;
  right: 0;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  background: radial-gradient(circle, rgba(85, 204, 255, 0.16), rgba(0, 139, 255, 0.06) 55%, transparent 70%);
}
.prestige-agence-blob--blue {
  bottom: 0;
  left: 0;
  width: min(500px, 70vw);
  height: min(500px, 70vw);
  background: radial-gradient(circle, rgba(0, 139, 255, 0.14), rgba(10, 46, 77, 0.08) 60%, transparent 72%);
  filter: blur(80px);
}

.prestige-agence-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.prestige-agence-collage {
  position: relative;
  height: 600px;
  width: 100%;
}

.prestige-agence-img {
  position: absolute;
  overflow: hidden;
  border-radius: 1.5rem;
}
.prestige-agence-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}
.prestige-agence-img:hover img {
  transform: scale(1.08);
}

.prestige-agence-img--main {
  top: 0;
  right: 0;
  width: 80%;
  height: 75%;
  box-shadow: var(--shadow-lg);
}
.prestige-agence-img--main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 26, 46, 0.1);
  transition: background .5s ease;
  pointer-events: none;
}
.prestige-agence-img--main:hover::after {
  background: transparent;
}

.prestige-agence-img--overlap {
  bottom: 2.5rem;
  left: 0;
  width: 55%;
  height: 45%;
  z-index: 10;
  border: 8px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: prestige-agence-float 6s ease-in-out infinite;
}

@keyframes prestige-agence-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.prestige-agence-badge {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}
.prestige-agence-badge-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(0, 156, 255, 0.12);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.prestige-agence-badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brand-dark);
  line-height: 1.1;
}
.prestige-agence-badge-label {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #94a3b8;
  font-weight: 600;
}

.prestige-agence-content {
  padding-left: 2.5rem;
  text-align: left;
}

.prestige-agence-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.prestige-agence-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--brand-blue);
}
.prestige-agence-eyebrow > span:last-child {
  color: var(--brand-blue);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.prestige-agence-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem) !important;
  font-weight: 700 !important;
  color: var(--brand-dark) !important;
  margin: 0 0 2rem !important;
  line-height: 1.15 !important;
}
.prestige-agence-title span {
  font-style: italic;
  font-weight: 300;
  color: #64748b;
}

.prestige-agence-lead {
  color: #475569;
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 2rem;
  max-width: 36rem;
}

.prestige-agence-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.prestige-agence-feature {
  border-left: 2px solid rgba(0, 156, 255, 0.35);
  padding-left: 1rem;
  transition: border-color .3s ease;
}
.prestige-agence-feature:hover {
  border-left-color: var(--brand-blue);
}
.prestige-agence-feature h3,
.prestige-agence-feature h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.prestige-agence-feature p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

.prestige-agence-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color .25s ease;
}
.prestige-agence-cta:hover {
  color: var(--brand-blue);
}
.prestige-agence-cta-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  box-shadow: var(--shadow-sm);
  transition: background .25s ease, transform .25s ease;
}
.prestige-agence-cta:hover .prestige-agence-cta-icon {
  background: var(--brand-blue);
  transform: translateX(6px);
}

.scale-in,
.fade-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in.visible,
.fade-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.fade-opacity {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-opacity.visible { opacity: 1; }

/* data-animate aliases */
[data-animate="left"] { opacity: 0; transform: translateX(-40px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
[data-animate="left"].visible,
[data-animate="left"].is-in { opacity: 1; transform: translateX(0); }
[data-animate="right"] { opacity: 0; transform: translateX(40px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
[data-animate="right"].visible,
[data-animate="right"].is-in { opacity: 1; transform: translateX(0); }
[data-animate="zoom"] { opacity: 0; transform: scale(0.92); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
[data-animate="zoom"].visible,
[data-animate="zoom"].is-in { opacity: 1; transform: scale(1); }
[data-animate="opacity"],
[data-animate="fade"] { opacity: 0; transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1); }
[data-animate="opacity"].visible,
[data-animate="opacity"].is-in,
[data-animate="fade"].visible,
[data-animate="fade"].is-in { opacity: 1; }
[data-animate="up"] { opacity: 0; transform: translateY(28px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
[data-animate="up"].visible,
[data-animate="up"].is-in { opacity: 1; transform: translateY(0); }

/* Stagger children */
.anim-stagger > *:nth-child(1) { transition-delay: 0ms; }
.anim-stagger > *:nth-child(2) { transition-delay: 80ms; }
.anim-stagger > *:nth-child(3) { transition-delay: 160ms; }
.anim-stagger > *:nth-child(4) { transition-delay: 240ms; }
.anim-stagger > *:nth-child(5) { transition-delay: 320ms; }
.anim-stagger > *:nth-child(6) { transition-delay: 400ms; }

@media (max-width: 768px) {
  .fade-left { transform: translateX(-24px); }
  .fade-right { transform: translateX(24px); }
  [data-animate="left"] { transform: translateX(-24px); }
  [data-animate="right"] { transform: translateX(24px); }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .scale-in,
  .fade-zoom,
  .fade-left,
  .fade-right,
  .fade-opacity,
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .prestige-agence { padding: 4.5rem 1.25rem; }
  .prestige-agence-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .prestige-agence-collage {
    height: 420px;
    max-width: 36rem;
    margin: 0 auto;
  }
  .prestige-agence-badge { left: 0; }
  .prestige-agence-content {
    padding-left: 0;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .prestige-agence { padding: 3.5rem 1rem; }
  .prestige-agence-collage {
    height: 320px;
    max-width: 100%;
  }
  .prestige-agence-img--main {
    width: 78%;
    height: 72%;
  }
  .prestige-agence-img--overlap {
    width: 52%;
    height: 42%;
    bottom: 1.25rem;
    border-width: 5px;
  }
  .prestige-agence-badge {
    padding: 0.85rem 1rem;
    gap: 0.65rem;
    left: 0;
  }
  .prestige-agence-badge-icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.1rem;
  }
  .prestige-agence-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .prestige-agence-lead { font-size: 1rem; }
}

.prestige-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: prestige-bounce 2s infinite;
}

.prestige-scroll:hover { color: var(--brand-blue); }

@keyframes prestige-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- STATS band (carte flottante) ---------- */
.ux-stats,
.prestige-stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 72rem;
  margin: -4rem auto 0 !important;
  padding: 2.5rem 1.5rem !important;
  background: #fff !important;
  color: var(--brand-dark) !important;
  border-radius: 1rem;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.12);
  border: 1px solid #f1f5f9;
  position: relative;
  z-index: 5;
  width: calc(100% - 3rem);
}

.ux-stats .ux-stat,
.prestige-stats .ux-stat {
  text-align: center;
  padding: .5rem 1rem;
  border-right: 1px solid #f1f5f9;
}

.ux-stats .ux-stat:last-child,
.prestige-stats .ux-stat:last-child {
  border-right: none;
}

.ux-stat strong {
  color: var(--brand-dark) !important;
  font-family: var(--font-display) !important;
}

.ux-stat strong .gold {
  color: var(--brand-blue);
}

.ux-stat span {
  color: #94a3b8 !important;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .ux-stats, .prestige-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -2.5rem !important;
    gap: 1rem;
  }
  .ux-stats .ux-stat,
  .prestige-stats .ux-stat {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }
}

/* ---------- UX tokens overrides ---------- */
.ux-page {
  --ux-blue: var(--brand-blue);
  --ux-blue-dark: var(--brand-blue-deep);
  --ux-sky: var(--brand-sky);
  --ux-mist: var(--brand-mist);
  --ux-ink: var(--brand-blue-deep);
  --ux-ink-soft: var(--brand-blue-dark);
  --ux-navy: #051A2E;
  --ux-soft: #F8FAFC;
  --ux-muted: #64748b;
  --ux-warm: #00BFFF;
  --ux-warm-dark: #0090D9;
  --ux-gold: #00BFFF;
  --ux-sand: #F8FAFC;
  --ux-font-display: 'Playfair Display', Georgia, serif;
  --ux-font-body: 'Inter', 'Segoe UI', sans-serif;
  --ux-shadow: 0 8px 28px rgba(10, 46, 77, 0.08);
  --ux-shadow-hover: 0 16px 40px rgba(0, 156, 255, 0.18);
}

.ux-link { color: var(--brand-blue); }
.ux-link:hover { color: var(--brand-blue-dark); }
.ux-stars { color: var(--brand-gold) !important; }
.ux-badge { background: var(--brand-blue) !important; color: #fff !important; }
.ux-quote { border-left-color: var(--brand-blue) !important; background: #fff; }

.ux-section--mist,
.ux-band--mist {
  background:
    radial-gradient(ellipse 85% 65% at 8% 15%, rgba(0, 156, 255, 0.1), transparent 58%),
    radial-gradient(ellipse 70% 55% at 92% 85%, rgba(85, 204, 255, 0.12), transparent 52%),
    linear-gradient(180deg, var(--brand-mist) 0%, #F0F7FC 100%) !important;
}
.ux-section--ink,
.ux-band--ink {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(0, 156, 255, 0.28), transparent 55%),
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-sky) 55%, var(--brand-blue-dark) 100%) !important;
  color: #fff;
}
.ux-section--warm .ux-stars { color: var(--brand-gold) !important; }
.ux-section--warm .ux-quote { border-left-color: var(--brand-blue) !important; }

/* Services / cards dark section feel */
.services-section {
  background: var(--brand-dark) !important;
  color: #fff;
}
.services-section .section-header h2,
.services-section .section-header p { color: #fff; }
.services-section .section-header p { color: #94a3b8; }
.service-card-modern {
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 1rem !important;
  color: #e2e8f0;
}
.service-card-modern h3 { color: #fff !important; font-family: var(--font-display); }
.service-card-modern:hover {
  border-color: rgba(0, 156, 255, 0.45) !important;
  box-shadow: 0 0 40px rgba(0, 156, 255, 0.12);
}
.service-icon-modern {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.1);
  color: var(--brand-sky) !important;
}
.service-link { color: var(--brand-sky) !important; }

/* Process steps */
.how-section { background: var(--brand-light) !important; }
.step-card {
  background: #fff !important;
  border-radius: 1rem !important;
  box-shadow: var(--shadow-md);
}
.step-number {
  color: var(--brand-dark) !important;
  font-family: var(--font-display) !important;
}
.step-icon { color: var(--brand-blue) !important; }

/* Portfolio home */
.home-portfolio-album-head h3 { color: var(--brand-dark) !important; font-family: var(--font-display); }
.home-portfolio-album-head a { color: var(--brand-blue) !important; }
.home-portfolio-album-head a:hover { color: var(--brand-blue-dark) !important; }
.home-portfolio-item {
  border-radius: 1rem !important;
  overflow: hidden;
  border: none !important;
  box-shadow: var(--shadow-md);
}

/* Frames / about */
.frames-badge, .what-badge {
  color: var(--brand-blue) !important;
  background: rgba(0, 156, 255, 0.1) !important;
}
.frames-content h2, .what-content h2 {
  color: var(--brand-dark) !important;
  font-family: var(--font-display);
}
.frames-link, .what-link {
  color: var(--brand-dark) !important;
  font-weight: 700;
}
.frames-link:hover, .what-link:hover { color: var(--brand-blue) !important; }
.feature-icon { color: var(--brand-blue) !important; background: rgba(0,156,255,.1) !important; }
.highlight i { color: var(--brand-blue) !important; }

/* CTA bandeau bas */
.prestige-cta,
.cta-section.prestige-cta {
  position: relative;
  padding: 6rem 1.5rem !important;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-blue-dark) 50%, var(--brand-blue-deep) 100%) !important;
  color: #fff;
}
.prestige-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,139,255,.22), transparent 60%);
  pointer-events: none;
}
.prestige-cta h2,
.prestige-cta .cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem) !important;
  color: #fff !important;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.prestige-cta p,
.prestige-cta .cta-content p {
  color: #cbd5e1 !important;
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-weight: 300;
}
.prestige-cta .ux-cta-row,
.prestige-cta .cta-buttons { justify-content: center; position: relative; z-index: 1; }
.prestige-cta .cta-content { position: relative; z-index: 1; }

/* ---------- FOOTER ---------- */
.footer-modern {
  background: #030e1a !important;
  color: #fff !important;
  padding: 5rem 1.25rem 2.5rem !important;
  margin-top: 0 !important;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-modern-grid {
  gap: 3rem !important;
}

.footer-section-links h3,
.footer-section-programs h3,
.footer-section-contact h3 {
  font-family: var(--font-display) !important;
  letter-spacing: .04em;
}

.footer-section-links a:hover,
.footer-section-programs a:hover,
.contact-list a:hover {
  color: var(--brand-sky) !important;
}

.social-link {
  background: rgba(255,255,255,.05) !important;
  color: #cbd5e1 !important;
}

.social-link:hover {
  background: var(--brand-blue) !important;
  color: #fff !important;
}

.footer-divider {
  background: rgba(255,255,255,.1) !important;
}

/* WhatsApp flottant — style mockup */
.chat-float {
  bottom: 2rem !important;
  right: 2rem !important;
  gap: 14px !important;
}

.whatsapp-button {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-button .whatsapp-text { display: none !important; }

/* Animations légères */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Preloader plein écran — overlay navy + blur du contenu derrière */
body.is-preloading {
  overflow: hidden;
}
#prestige-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 46, 77, 0.72) 0%,
    rgba(5, 22, 42, 0.88) 70%
  );
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .75s ease, visibility .75s ease;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  #prestige-preloader {
    background: radial-gradient(ellipse at center, #0a2e4d 0%, var(--brand-dark) 70%);
  }
}
#prestige-preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#prestige-preloader .prestige-preloader-mark,
#prestige-preloader .label {
  position: relative;
  z-index: 2;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: translateZ(0);
}
#prestige-preloader .prestige-preloader-mark {
  /* Anneau ~152px — nettement plus grand que le logo */
  width: min(9.5rem, 36vw);
  height: min(9.5rem, 36vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
#prestige-preloader .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 191, 255, .12);
  border-top-color: var(--brand-logo-blue, #008BFF);
  border-right-color: rgba(85, 204, 255, .85);
  animation: prestige-spin 1.15s linear infinite;
}
#prestige-preloader .preloader-logo {
  position: relative;
  z-index: 1;
  /* Bien plus petit que le logo header (70/54px) — ~55% du diamètre intérieur */
  height: clamp(40px, 11vw, 48px);
  width: auto;
  max-width: 55%;
  max-height: 55%;
  object-fit: contain;
  background: transparent;
  animation: prestige-logo-pulse 1.6s ease-in-out infinite;
}
@keyframes prestige-spin {
  to { transform: rotate(360deg); }
}
@keyframes prestige-logo-pulse {
  0%, 100% { opacity: .88; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
#prestige-preloader .label {
  margin-top: 1.35rem;
  color: var(--brand-logo-blue, #008BFF);
  font-size: .68rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  font-weight: 300;
}
@media (prefers-reduced-motion: reduce) {
  #prestige-preloader .ring,
  #prestige-preloader .preloader-logo {
    animation: none;
  }
}

/* Pages internes : hero compact */
.ux-hero--compact,
.ux-hero--detail {
  min-height: 42vh !important;
  background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-blue) 55%, var(--brand-sky) 100%) !important;
  color: #fff;
}

@media (max-width: 640px) {
  .site-brand-text { display: none; }
  .prestige-hero h1 { max-width: none; }
}

/* ---------- Hero links ---------- */
.prestige-hero-links {
  margin-top: 1.1rem;
  opacity: .85;
  font-size: .92rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  align-items: center;
  justify-content: center;
}
.prestige-hero-links a {
  color: rgba(255,255,255,.9);
  font-weight: 600;
  text-decoration: none;
}
.prestige-hero-links a:first-child { color: var(--brand-blue); }
.prestige-hero-links a:hover { color: var(--brand-blue); text-decoration: underline; }
.prestige-hero-links span { opacity: .5; }

/* ---------- EXPERTISE / Nos Signatures ---------- */
.prestige-expertise {
  position: relative;
  padding: 7rem 1.5rem;
  background: var(--brand-dark);
  color: #fff;
  overflow: hidden;
}
.prestige-expertise-dots {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: radial-gradient(rgba(255,255,255,.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}
.prestige-expertise-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}
.prestige-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 4rem;
}
.prestige-section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}
.prestige-section-head h2.dark { color: var(--brand-dark); }
.prestige-section-head p {
  color: #94a3b8;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}
.prestige-section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--brand-blue);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .8rem;
}
.prestige-section-eyebrow .line {
  width: 2rem;
  height: 1px;
  background: rgba(0, 156, 255, .5);
}
.prestige-gold-label {
  display: block;
  color: var(--brand-blue);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 1rem;
}
.prestige-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.prestige-service-card {
  position: relative;
  display: block;
  padding: 1px;
  border-radius: 1rem;
  background: linear-gradient(to bottom, rgba(255,255,255,.1), transparent);
  transition: background .5s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.prestige-service-card:hover,
.prestige-service-card:focus-visible {
  background: linear-gradient(to bottom, rgba(0,139,255,.55), transparent);
}
.prestige-service-card:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.prestige-service-card-inner {
  height: 100%;
  background: var(--brand-dark);
  padding: 2rem;
  border-radius: .9rem;
  border: 1px solid rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .5s ease;
}
.prestige-service-card:hover .prestige-service-card-inner {
  border-color: transparent;
}
.prestige-service-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(0,156,255,.1);
  border-radius: 50%;
  filter: blur(2rem);
  transform: translate(40%, -40%);
  transition: background .5s ease;
  pointer-events: none;
}
.prestige-service-card:hover .prestige-service-glow {
  background: rgba(0,156,255,.3);
}
.prestige-service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  transition: all .5s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.prestige-service-card:hover .prestige-service-icon {
  transform: scale(1.1);
  background: var(--brand-blue);
  color: var(--brand-dark);
}
.prestige-service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--font-display);
}
.prestige-service-card p {
  color: #94a3b8;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  flex-grow: 1;
}
.prestige-service-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  margin-top: auto;
  transition: color .3s ease;
}
.prestige-service-link i {
  font-size: .7rem;
  transition: transform .3s ease;
}
.prestige-service-card:hover .prestige-service-link {
  color: var(--brand-blue);
}
.prestige-service-card:hover .prestige-service-link i {
  transform: translateX(4px);
}
.prestige-section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

/* ---------- PORTFOLIO Archives Visuelles ---------- */
.prestige-portfolio {
  padding: 7rem 1.5rem;
  background: #fff;
}
.prestige-portfolio-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.prestige-portfolio-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.prestige-portfolio-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand-dark);
  margin: .5rem 0 0;
  font-weight: 700;
}
.prestige-portfolio-all {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .25rem;
  border-bottom: 2px solid var(--brand-dark);
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  text-decoration: none;
  transition: color .3s ease, border-color .3s ease;
}
.prestige-portfolio-all:hover {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}
.prestige-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.prestige-portfolio-card {
  position: relative;
  display: block;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.prestige-portfolio-card--wide {
  grid-column: span 2;
}
.prestige-portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.prestige-portfolio-card:hover img {
  transform: scale(1.1);
}
.prestige-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,46,77,.92) 0%, rgba(10,46,77,.35) 50%, transparent 100%);
  opacity: .85;
  transition: opacity .5s ease;
}
.prestige-portfolio-card:hover .prestige-portfolio-overlay {
  opacity: 1;
}
.prestige-portfolio-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  transform: translateY(1rem);
  transition: transform .5s ease;
}
.prestige-portfolio-card:hover .prestige-portfolio-caption {
  transform: translateY(0);
}
.prestige-portfolio-caption span {
  display: block;
  color: var(--brand-blue);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.prestige-portfolio-caption h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  color: #fff;
}
.prestige-portfolio-caption p {
  margin: 0;
  font-size: .875rem;
  font-weight: 300;
  color: transparent;
  transition: color .5s ease;
}
.prestige-portfolio-card:hover .prestige-portfolio-caption p {
  color: rgba(255,255,255,.8);
}
.prestige-empty {
  text-align: center;
  color: #64748b;
  padding: 2rem;
}
.prestige-empty a { color: var(--brand-blue); font-weight: 600; }

/* ---------- TÉMOIGNAGES ---------- */
.prestige-testimonials {
  position: relative;
  padding: 5.5rem 1.5rem;
  background: var(--brand-dark);
  overflow: hidden;
}
.prestige-testimonials-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,139,255,.16), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(85,204,255,.14), transparent 45%);
  opacity: 1;
  pointer-events: none;
}
.prestige-testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}
.prestige-testimonials-head {
  text-align: center;
  margin-bottom: 3rem;
}
.prestige-testimonials-head i {
  color: var(--brand-blue);
  font-size: 2.25rem;
  opacity: .5;
  margin-bottom: 1.25rem;
  display: inline-block;
}
.prestige-testimonials-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #fff;
  margin: 0;
  font-weight: 700;
}
.prestige-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.prestige-testimonial-card {
  margin: 0;
  padding: 2.5rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color .3s ease;
}
.prestige-testimonial-card:hover {
  border-color: rgba(0,156,255,.5);
}
.prestige-stars {
  display: flex;
  gap: .2rem;
  color: var(--brand-blue);
  font-size: .85rem;
  margin-bottom: 1.25rem;
}
.prestige-testimonial-card > p {
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.75;
  margin: 0 0 1.75rem;
  font-weight: 300;
}
.prestige-testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.prestige-testimonial-card strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.prestige-testimonial-card footer span {
  color: var(--brand-blue);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.prestige-logos {
  margin-top: 2.5rem;
  justify-content: center;
}

/* ---------- PROCESSUS ---------- */
.prestige-process {
  padding: 7rem 1.5rem;
  background: var(--brand-light);
  position: relative;
}
.prestige-process-inner {
  max-width: 80rem;
  margin: 0 auto;
}
.prestige-process .prestige-section-head {
  margin-bottom: 5rem;
}
.prestige-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.prestige-process-line {
  display: none;
}
@media (min-width: 768px) {
  .prestige-process-line {
    display: block;
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,139,255,.45), transparent);
    z-index: 0;
  }
}
.prestige-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.prestige-process-num {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(5,26,46,.1);
  position: relative;
  transition: transform .5s ease;
}
.prestige-process-step:hover .prestige-process-num {
  transform: translateY(-8px);
}
.prestige-process-num::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(0,156,255,.3);
  border-radius: 50%;
  transition: border-color .5s ease;
}
.prestige-process-step:hover .prestige-process-num::after {
  border-color: var(--brand-blue);
}
.prestige-process-num span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-dark);
}
.prestige-process-num--final {
  background: var(--brand-dark);
  box-shadow: 0 10px 30px rgba(0,156,255,.4);
}
.prestige-process-num--final::after {
  border-color: var(--brand-blue);
}
.prestige-process-num--final span {
  color: var(--brand-blue);
}
.prestige-process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 .75rem;
  font-family: var(--font-display);
}
.prestige-process-step p {
  color: #64748b;
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  padding: 0 1rem;
}

/* ---------- CTA polish ---------- */
.prestige-cta-icon {
  color: var(--brand-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: prestige-pulse 2s ease-in-out infinite;
}
.prestige-cta {
  background-image:
    linear-gradient(135deg, rgba(10,46,77,.92), rgba(0,102,194,.78) 55%, rgba(10,46,77,.94)),
    url('../assets/images/background.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed;
}

/* ---------- App sections polish ---------- */
.prestige-events .section-header h2,
.prestige-faq .section-header h2 {
  font-family: var(--font-display);
  color: var(--brand-dark);
}
.prestige-events .section-header p,
.prestige-faq .section-header p {
  color: var(--brand-muted);
}

/* Pourquoi : fond navy/cyan → texte clair */
.why-section.prestige-why .section-header h2,
.prestige-why .section-header h2 {
  font-family: var(--font-display);
  color: #fff !important;
}
.why-section.prestige-why .section-header p,
.prestige-why .section-header p {
  color: var(--brand-mist) !important;
  opacity: .92;
}
.prestige-why .why-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-blue-deep);
}
.prestige-why .why-card h3 {
  color: var(--brand-blue-deep);
  font-family: var(--font-display);
}
.prestige-why .why-card p {
  color: var(--brand-muted);
}
.prestige-why .why-icon {
  background: rgba(0, 191, 255, 0.14);
  color: var(--brand-blue);
}
.prestige-faq .faq-item {
  border-left: 3px solid var(--brand-blue);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.prestige-faq .faq-item h3,
.prestige-faq .faq-item h4 {
  color: var(--brand-dark);
  font-family: var(--font-display);
}
.prestige-faq .faq-item p {
  color: var(--brand-muted);
}

/* Sections claires : texte navy ; sections sombres : texte blanc/mist */
.prestige-agence,
.prestige-portfolio,
.prestige-process,
.ux-section--mist,
.events-section.prestige-events,
.faq-section.prestige-faq {
  color: var(--brand-slate);
}
.prestige-expertise,
.prestige-testimonials,
.prestige-cta,
.cta-section.prestige-cta {
  color: #fff;
}
.prestige-expertise .ux-btn--ghost,
.prestige-cta .ux-btn--ghost {
  color: #fff !important;
}
.prestige-process .ux-btn--outline,
.ux-section--mist .ux-btn--outline {
  color: var(--brand-blue-deep) !important;
  border-color: var(--brand-blue-deep) !important;
}
.ux-section--mist .ux-h2,
.ux-section--mist .ux-eyebrow {
  color: var(--brand-blue-deep);
}
.ux-section--mist p {
  color: var(--brand-muted);
}
.ux-section--mist .ux-case-body h3,
.ux-section--mist .ux-case-body h3 a {
  color: var(--brand-blue-deep);
}
.event-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 250px;
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
  color: var(--brand-sky);
  font-size: 3rem;
}
.event-date-badge {
  background: var(--brand-blue) !important;
  color: #fff !important;
}
.footer-modern-container {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-modern-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-description {
  font-size: .95rem;
  line-height: 1.7;
  color: #94a3b8;
  font-weight: 300;
}
.footer-section-links ul,
.footer-section-programs ul,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section-links li,
.footer-section-programs li {
  margin-bottom: .5rem;
}
.footer-section-links a,
.footer-section-programs a {
  color: #94a3b8;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 300;
  transition: color .3s ease;
}
.contact-list a {
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  margin-bottom: .85rem;
  transition: color .3s ease;
}
.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.footer-bottom-modern {
  text-align: center;
  color: #64748b;
  font-size: .85rem;
}
.footer-bottom-modern p { margin: .25rem 0; }

@media (max-width: 1024px) {
  .prestige-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prestige-portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prestige-portfolio-card--wide {
    grid-column: span 1;
  }
  .prestige-process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .footer-modern-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-section-brand { grid-column: 1 / -1; }
}

/* Footer mobile : centré + 2 colonnes pour les blocs liens */
@media (max-width: 900px) {
  .footer-modern {
    text-align: center !important;
    padding: 3rem 1.15rem 2rem !important;
  }
  .footer-modern-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.75rem 1rem !important;
    justify-items: center;
  }
  .footer-section-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer-logo img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .footer-description {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .footer-section-links,
  .footer-section-programs,
  .footer-section-contact {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer-section-contact {
    grid-column: 1 / -1;
  }
  .footer-section-links ul,
  .footer-section-programs ul,
  .contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-section-links a,
  .footer-section-programs a {
    text-align: center;
  }
  .footer-section-links a:hover,
  .footer-section-programs a:hover {
    transform: none;
  }
  .contact-list a {
    justify-content: center;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
    width: 100%;
  }
  .footer-bottom-modern {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .prestige-expertise { padding: 2.5rem 1.25rem; }
  .prestige-expertise-grid {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }
  .prestige-portfolio { padding: 2.5rem 1.25rem; }
  .prestige-portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }
  .prestige-portfolio-card { height: 180px; }
  .prestige-testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }
  .prestige-process { padding: 2.5rem 1.25rem; }
  .prestige-process-track {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem .75rem;
  }
  .prestige-cta { background-attachment: scroll; }
}

/* ========== Mobile declutter (homepage) ========== */
.site-nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  margin-left: auto;
}

.mobile-header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  text-decoration: none;
  padding: 0 .95rem;
  min-height: 44px;
  border-radius: 9999px;
  font-family: var(--font-body);
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(0, 156, 255, 0.35);
}

.mobile-header-cta:hover {
  background: #fff;
  color: var(--brand-dark);
}

.show-mobile-only { display: none !important; }
.show-mobile-inline { display: none !important; }
.show-mobile-flex { display: none !important; }

@media (max-width: 900px) {
  .hide-mobile { display: none !important; }
  .show-mobile-only { display: block !important; }
  .show-mobile-inline { display: inline !important; }
  .show-mobile-flex { display: flex !important; }

  .mobile-header-cta {
    display: inline-flex;
  }

  /* Hero: compact above-the-fold */
  .prestige-hero,
  .page-home .ux-hero.prestige-hero {
    min-height: min(68vh, 520px) !important;
    min-height: min(68dvh, 520px) !important;
  }
  .prestige-hero .ux-hero-inner,
  .prestige-hero .prestige-hero-inner {
    padding: 5.25rem 1.1rem 1.75rem !important;
    width: min(100%, 94%);
  }
  .prestige-hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.65rem) !important;
    margin-bottom: .65rem !important;
  }
  .prestige-hero .ux-lead {
    font-size: .92rem !important;
    margin-bottom: 1rem !important;
    max-width: 34rem;
    line-height: 1.55;
  }
  .prestige-hero .ux-eyebrow,
  .prestige-pill {
    font-size: .52rem !important;
    padding: .22rem .55rem !important;
    gap: .3rem !important;
    margin-bottom: .65rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(3px) !important;
    -webkit-backdrop-filter: blur(3px) !important;
  }
  .prestige-hero .ux-hero-inner,
  .prestige-hero .prestige-hero-inner {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .prestige-hero h1,
  .prestige-hero .ux-lead {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .prestige-hero .ux-cta-row {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: .55rem;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
  .prestige-hero .ux-cta-row .ux-btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: .8rem 1.05rem;
    font-size: .92rem;
  }
  .prestige-hero .ux-btn--lg {
    padding: .85rem 1.1rem;
    font-size: .95rem;
  }

  /* Stats: compact 2×2 */
  .ux-stats,
  .prestige-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
    padding: .85rem .55rem !important;
    margin-top: -1.5rem !important;
    width: calc(100% - 1.5rem);
    border-radius: .85rem;
  }
  .ux-stats .ux-stat,
  .prestige-stats .ux-stat {
    padding: .45rem .35rem !important;
    border-right: none !important;
    border-bottom: 1px solid #f1f5f9;
  }
  .ux-stats .ux-stat:nth-child(odd),
  .prestige-stats .ux-stat:nth-child(odd) {
    border-right: 1px solid #f1f5f9 !important;
  }
  .ux-stats .ux-stat:nth-last-child(-n+2),
  .prestige-stats .ux-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .ux-stat strong {
    font-size: 1.35rem !important;
    line-height: 1.15;
  }
  .ux-stat span {
    font-size: .58rem !important;
    letter-spacing: .08em !important;
  }

  /* One clear CTA per prestige section */
  .prestige-section-cta {
    margin-top: 1.35rem;
    gap: .55rem;
  }
  .prestige-section-cta .ux-btn {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
    min-height: 44px;
  }

  /* Agence: collage mockup (2 photos), texte aligné à gauche */
  .prestige-agence { padding: 2rem 1rem !important; }
  .prestige-agence-inner {
    grid-template-columns: 1fr !important;
    gap: 1.35rem !important;
  }
  .prestige-agence-title {
    font-size: clamp(1.55rem, 6.5vw, 2rem) !important;
    margin-bottom: .75rem !important;
  }
  .prestige-agence-lead {
    margin-bottom: .9rem !important;
    font-size: .92rem !important;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
  .prestige-agence-features {
    grid-template-columns: 1fr 1fr;
    gap: .65rem .7rem;
    margin-bottom: 1.1rem;
    justify-items: stretch;
  }
  .prestige-agence-content {
    text-align: left;
    padding-left: 0;
  }
  .prestige-agence-eyebrow {
    justify-content: flex-start;
  }
  .prestige-agence-feature {
    border-left: 2px solid rgba(0, 156, 255, 0.35);
    border-top: none;
    padding-left: .75rem;
    padding-top: 0;
    text-align: left;
    width: 100%;
  }
  .prestige-agence-feature h3 { font-size: .88rem !important; margin-bottom: .25rem; }
  .prestige-agence-feature p {
    font-size: .72rem !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .prestige-agence-cta {
    justify-content: flex-start;
  }
  /* Collage absolu compact : les 2 photos restent visibles */
  .prestige-agence-collage {
    position: relative;
    display: block;
    height: 280px !important;
    max-width: 22rem;
    margin: 0 auto;
    padding-bottom: 0;
  }
  .prestige-agence-img,
  .prestige-agence-img--main,
  .prestige-agence-img--overlap {
    position: absolute !important;
    display: block !important;
    animation: none !important;
  }
  .prestige-agence-img--main {
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    width: 78% !important;
    height: 72% !important;
    border: none !important;
    box-shadow: var(--shadow-md);
  }
  .prestige-agence-img--overlap {
    top: auto !important;
    right: auto !important;
    bottom: 1rem !important;
    left: 0 !important;
    width: 52% !important;
    height: 44% !important;
    border: 5px solid #fff !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    z-index: 10;
  }
  .prestige-agence-img--main::after {
    background: rgba(5, 26, 46, 0.06);
  }
  .prestige-agence-badge {
    left: 0 !important;
    top: 42% !important;
    bottom: auto;
    transform: translateY(-50%) scale(0.82);
  }

  /* Expertise — 2 cols */
  .prestige-expertise { padding: 2rem 1rem !important; }
  .prestige-section-head {
    margin-bottom: 1.15rem;
    width: 100%;
    grid-column: 1 / -1;
  }
  .prestige-section-head h2 { font-size: clamp(1.45rem, 6vw, 1.9rem); margin-bottom: .5rem; }
  .prestige-expertise-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: .7rem !important;
  }
  .prestige-service-card-inner { padding: .9rem .75rem !important; }
  .prestige-service-card h3 {
    font-size: .95rem !important;
    margin-bottom: .4rem !important;
    line-height: 1.25;
  }
  .prestige-service-card p {
    font-size: .75rem !important;
    line-height: 1.45 !important;
    margin-bottom: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .prestige-service-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: .65rem;
    font-size: 1rem;
  }

  /* Portfolio / Galerie — 2 cols */
  .prestige-portfolio { padding: 2rem 1rem !important; }
  .prestige-portfolio-head {
    margin-bottom: 1.1rem;
    gap: .75rem;
    width: 100%;
  }
  .prestige-portfolio-head h2 { font-size: clamp(1.45rem, 6vw, 1.9rem); }
  .prestige-portfolio-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: .55rem !important;
  }
  .prestige-portfolio-card--wide { grid-column: span 1 !important; }
  .prestige-portfolio-card { height: 140px !important; }
  .prestige-portfolio-caption { padding: .75rem !important; transform: none !important; }
  .prestige-portfolio-caption span { font-size: .62rem !important; }
  .prestige-portfolio-caption h3 {
    font-size: .88rem !important;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .prestige-portfolio-caption p { display: none !important; }
  .prestige-portfolio-card:nth-child(n+5) { display: none; }
  .prestige-portfolio-all { font-size: .82rem; }

  /* Réalisations + Actualités — 2 cols */
  .page-home .ux-section--mist { padding: 1.85rem 0 !important; }
  .page-home .ux-section--mist .ux-eyebrow,
  .page-home .ux-section--mist .ux-h2 {
    width: 100%;
  }
  .page-home .ux-section--mist .ux-h2 { font-size: 1.4rem !important; margin-bottom: .55rem !important; }
  .page-home .ux-cases-grid,
  .page-home .ux-cases-grid--3 {
    grid-template-columns: 1fr 1fr !important;
    gap: .55rem !important;
  }
  .page-home .ux-case-body { padding: .75rem .7rem 0 !important; }
  .page-home .ux-case-body h3 {
    font-size: .92rem !important;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .page-home .ux-case-body .ux-meta { font-size: .72rem !important; }
  .page-home .ux-case-body > p { display: none !important; }
  .page-home .ux-case-body .ux-link { font-size: .8rem !important; }
  .page-home #realisations .ux-case:nth-child(n+5),
  .page-home #actualites .ux-case:nth-child(n+5) { display: none; }

  /* Témoignages — 2 cols */
  .prestige-testimonials { padding: 2rem 1rem !important; }
  .prestige-testimonials-head {
    margin-bottom: 1.1rem;
    width: 100%;
  }
  .prestige-testimonials-head h2 { font-size: clamp(1.4rem, 5.5vw, 1.85rem); }
  .prestige-testimonials-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: .7rem !important;
  }
  .prestige-testimonial-card { padding: .85rem .7rem !important; }
  .prestige-stars { font-size: .7rem; margin-bottom: .45rem; }
  .prestige-testimonial-card > p {
    font-size: .72rem !important;
    line-height: 1.45 !important;
    margin-bottom: .65rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .prestige-testimonial-card strong { font-size: .82rem; }
  .prestige-testimonial-card footer span { font-size: .68rem; }
  .prestige-logos { margin-top: 1.25rem; gap: .5rem; }
  .prestige-logos .ux-logo-pill:nth-child(n+5) { display: none; }

  /* Process / Notre méthode — 2 cols */
  .prestige-process { padding: 2rem 1rem !important; }
  .prestige-process-track {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.15rem .7rem !important;
  }
  .prestige-process-step h3 { font-size: .95rem !important; margin-bottom: .35rem; }
  .prestige-process-step p {
    font-size: .72rem !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .prestige-process-num {
    width: 2.75rem !important;
    height: 2.75rem !important;
    margin: 0 auto .55rem !important;
  }
  .prestige-process-num::after { inset: 4px; }
  .prestige-process-num span { font-size: 1.05rem !important; }
  .prestige-process-step { margin-bottom: 0; }

  /* Events — 2 cols */
  .events-section.prestige-events { padding: 1.85rem 1rem !important; }
  .events-section .events-grid-modern {
    grid-template-columns: 1fr 1fr !important;
    gap: .65rem !important;
  }
  .events-section .event-card-modern:nth-child(n+3) { display: none; }
  .events-section .event-card-modern { padding: .75rem !important; }
  .event-content-modern h3 { font-size: .9rem !important; }
  .event-content-modern p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .event-content-modern .event-meta { font-size: .8rem; }

  /* Pourquoi nous choisir — 2 cols */
  .why-section.prestige-why { padding: 1.85rem 1rem !important; }
  .why-section .section-header { width: 100%; }
  .why-section .why-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: .7rem !important;
  }
  .why-section .why-card {
    padding: .85rem .7rem !important;
    min-width: 0;
  }
  .why-section .why-card h3 {
    font-size: .9rem !important;
    margin-bottom: .35rem !important;
    line-height: 1.25;
  }
  .why-section .why-icon {
    width: 2.5rem !important;
    height: 2.5rem !important;
    font-size: 1rem !important;
    margin: 0 auto .55rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: .65rem;
  }
  .why-section .why-card:nth-child(n+5) { display: none; }
  .why-card p {
    font-size: .72rem !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* CTA */
  .prestige-cta,
  .cta-section.prestige-cta {
    padding: 2.75rem 1.1rem !important;
  }
  .prestige-cta h2 { font-size: clamp(1.55rem, 6vw, 2rem) !important; margin-bottom: .65rem !important; }
  .prestige-cta p,
  .prestige-cta .cta-content p {
    font-size: .92rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.55;
  }
  .prestige-cta .ux-cta-row,
  .prestige-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: .55rem;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
  .prestige-cta .ux-btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
  .prestige-cta-icon { font-size: 1.5rem !important; margin-bottom: .65rem !important; }

  /* FAQ — 3 items */
  .faq-section.prestige-faq { padding: 1.85rem 1rem !important; }
  .faq-section .faq-item:nth-child(n+4) { display: none; }
  .faq-item { padding: 1rem !important; }
  .faq-item h3, .faq-item h4 { font-size: .95rem !important; margin-bottom: .4rem !important; }
  .faq-item p { font-size: .85rem; line-height: 1.5; }

  .section-header { margin-bottom: 1.1rem !important; }

  /* Secteurs d'activité (services) — compact 2 cols */
  .secteurs-activite-section { padding: 2rem 1rem !important; }
  .secteurs-header { margin-bottom: 1.15rem !important; }
  .secteurs-header h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem) !important;
    margin-bottom: .4rem !important;
  }
  .secteurs-header p { font-size: .88rem !important; }
  .secteurs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .65rem !important;
    margin-top: 1.1rem !important;
  }
  .secteur-card {
    padding: .8rem .65rem !important;
    min-width: 0;
  }
  .secteur-icon {
    width: 46px !important;
    height: 46px !important;
    margin: 0 auto .55rem !important;
  }
  .secteur-icon svg { width: 26px; height: 26px; }
  .secteur-card h3 {
    font-size: .9rem !important;
    margin-bottom: .3rem !important;
    line-height: 1.25;
  }
  .secteur-description {
    font-size: .72rem !important;
    line-height: 1.4 !important;
    margin-bottom: .5rem !important;
  }

  /* À propos — secteurs + sections compactes */
  #valeur-ajoutee.section-spacing { padding: 2.1rem 0 !important; }
  .about-sectors-title { font-size: 1.25rem !important; margin-bottom: 1rem !important; }
  .about-sectors-grid { gap: .65rem !important; }
  .about-sector-card { min-width: 0; }
  .about-sector-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
  }
  .section-cta {
    margin-top: 1.1rem;
  }
  .section-cta .btn,
  .section-cta .btn-outline {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* WhatsApp: keep floating button */
  .page-home .chat-float {
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    right: max(14px, env(safe-area-inset-right)) !important;
    z-index: 850 !important;
  }
  .page-home .whatsapp-button {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  .mobile-cta a {
    min-height: 48px;
  }

  /* Footer compact */
  .page-home .footer-modern {
    padding: 2.5rem 1rem 1.5rem !important;
  }
  .page-home .footer-description {
    font-size: .88rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Homepage mobile: centrer titres, textes, cartes, CTAs */
  .page-home .section-header,
  .page-home .prestige-section-head,
  .page-home .prestige-testimonials-head,
  .page-home .prestige-portfolio-head,
  .page-home .cta-content,
  .page-home .prestige-cta .cta-content {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .page-home .prestige-section-eyebrow,
  .page-home .ux-eyebrow {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .page-home .ux-h2,
  .page-home .section-header h2,
  .page-home .prestige-section-head h2,
  .page-home .prestige-testimonials-head h2,
  .page-home .prestige-portfolio-head h2,
  .page-home .prestige-cta h2 {
    text-align: center !important;
  }
  .page-home .section-header p,
  .page-home .prestige-section-head p,
  .page-home .ux-container > p,
  .page-home .cta-content p,
  .page-home .prestige-cta p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-home .prestige-service-card-inner,
  .page-home .prestige-testimonial-card,
  .page-home .why-card,
  .page-home .faq-item,
  .page-home .event-content-modern,
  .page-home .ux-case-body,
  .page-home .prestige-process-step {
    text-align: center;
  }
  .page-home .prestige-service-icon,
  .page-home .why-icon,
  .page-home .prestige-process-num {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .page-home .prestige-service-link,
  .page-home .ux-case-body .ux-link {
    justify-content: center;
    display: inline-flex;
    width: 100%;
  }
  .page-home .prestige-testimonial-card footer {
    justify-content: center;
    text-align: center;
  }
  .page-home .prestige-section-cta,
  .page-home .section-cta,
  .page-home .ux-cta-row {
    justify-content: center;
    align-items: center;
  }
  .page-home .prestige-portfolio-all {
    justify-content: center;
  }
  .page-home .prestige-expertise-grid,
  .page-home .prestige-testimonials-grid,
  .page-home .prestige-process-track,
  .page-home .why-grid,
  .page-home .ux-cases-grid,
  .page-home .ux-cases-grid--3,
  .page-home .prestige-portfolio-grid {
    justify-items: stretch;
  }
  .page-home .ux-stat {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .mobile-header-cta {
    padding: 0 .8rem;
    font-size: .72rem;
  }
  .prestige-hero .ux-cta-row {
    max-width: none;
  }
  .ux-stats,
  .prestige-stats {
    padding: .85rem .4rem !important;
  }
  .ux-stat strong {
    font-size: 1.3rem !important;
  }

  /* Compact renforcé — sections + grilles 2 cols */
  .prestige-agence,
  .prestige-expertise,
  .prestige-portfolio,
  .prestige-testimonials,
  .prestige-process,
  .events-section.prestige-events,
  .why-section.prestige-why,
  .faq-section.prestige-faq,
  .secteurs-activite-section {
    padding: 1.65rem .85rem !important;
  }
  .page-home .ux-section--mist { padding: 1.55rem 0 !important; }
  .prestige-portfolio-card { height: 120px !important; }
  .prestige-agence-collage { height: 240px !important; }
  .secteurs-grid,
  .about-sectors-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .5rem !important;
  }
  .secteur-card { padding: .65rem .5rem !important; }
  .secteur-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .secteur-card h3 { font-size: .82rem !important; }
  .secteur-features .feature-item:nth-child(n+3) { display: none; }
  #valeur-ajoutee.section-spacing { padding: 1.75rem 0 !important; }
  .about-sectors-title { font-size: 1.15rem !important; }
}

/* ---------- Pages publiques — héros prestige partagés ---------- */
.prestige-page-hero.ux-hero {
  background-size: cover !important;
  background-position: center !important;
  background-color: var(--brand-dark);
  align-items: center !important;
}
.prestige-page-hero .ux-hero-inner {
  padding-top: 6.5rem;
  padding-bottom: 3.5rem;
}
.prestige-page-hero.ux-hero--compact .ux-hero-inner {
  padding-top: 6rem;
  padding-bottom: 2.75rem;
}
.prestige-page-hero .ux-eyebrow {
  color: var(--brand-cyan) !important;
}
.prestige-page-hero h1 {
  font-family: var(--font-display);
  color: #fff;
}
.prestige-page-hero .ux-lead {
  color: #cbd5e1;
}

/* Contenu legacy → palette navy / cyan */
body.site-public .secteurs-activite-section,
body.site-public .events-section,
body.site-public .reservation-section,
body.site-public .contact-info-section,
body.site-public .portfolio-page,
body.site-public .blog-tabs-wrapper,
body.site-public .blog-content-wrapper {
  font-family: var(--font-body);
}
body.site-public .secteurs-header h2,
body.site-public .reservation-header h2,
body.site-public .section-title,
body.site-public .event-content h3,
body.site-public .blog-detail-header h1,
body.site-public .blog-detail-header h2,
body.site-public .event-detail-header h1,
body.site-public .event-detail-header h2,
body.site-public .event-detail-title {
  font-family: var(--font-display);
  color: var(--brand-dark);
}
body.site-public .filter-btn.active,
body.site-public .blog-tab.active,
body.site-public .album-chip.active,
body.site-public .submit-btn,
body.site-public .secteur-card:hover .secteur-icon {
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
  color: #fff !important;
}
body.site-public .event-card,
body.site-public .secteur-card,
body.site-public .info-card,
body.site-public .sidebar-card,
body.site-public .event-detail-main,
body.site-public .blog-detail-main {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}
body.site-public .event-detail-page .detail-container {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}
body.site-public .event-hero-image,
body.site-public .blog-hero-image {
  background: linear-gradient(135deg, #0A2E4D 0%, #00BFFF 100%) !important;
}
body.site-public a[style*="color:#008BFF"],
body.site-public a[style*="color:#0077cc"] {
  color: var(--brand-blue) !important;
}

@media (max-width: 900px) {
  .prestige-page-hero .ux-hero-inner {
    padding-top: 5.5rem;
  }
  .prestige-page-hero.ux-hero--compact .ux-hero-inner {
    padding-top: 5rem;
  }
}
