/* =========================================================
   ABRACADABIA — Feuille de style principale
   Palette : encre profonde / or champagne / ivoire
   Approche mobile-first : tout est en 1 colonne par defaut,
   le multi-colonnes vit dans les @media (min-width).
   ========================================================= */

:root {
  --ink:        #0f0f1a;
  --ink-2:      #1a1a2e;
  --ink-3:      #1f1f35;
  --line:       #2b2b45;
  --gold:       #6c63ff;
  --gold-soft:  #8ab4ff;
  --gold-deep:  #4a7dff;
  --ivory:      #fbf6e9;
  --muted:      #a8a8bd;
  --muted-2:    #6e6e85;
  --white:      #ffffff;
  --danger:     #ef5f6b;
  --ok:         #10b981;

  --serif: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --sans:  'Inter', 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max: 1240px;
  --radius: 14px;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

/* ---------------------------------------------------------
   Reset
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.1rem, 7vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 5vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 3.4vw, 1.5rem); }

p { margin: 0 0 1.1em; }

::selection { background: var(--gold); color: var(--ink); }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 20px; }

.eyebrow {
  font-size: .68rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Titre de section : uppercase + trait decoratif */
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: clamp(1.35rem, 4.4vw, 2.1rem);
  margin-bottom: 1rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  margin: 1.4rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-title p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: .95rem; }

section { padding: 74px 0; }
@media (min-width: 900px) { section { padding: 108px 0; } }

/* ---------------------------------------------------------
   Boutons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all .45s var(--ease);
  background: none;
  color: var(--ivory);
  white-space: nowrap;
}
.btn-filled {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1a2e;
  box-shadow: 0 12px 34px -14px rgba(108, 99, 255, .85);
}
.btn-filled:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -14px rgba(108, 99, 255, .95); }
.btn-ghost { border-color: rgba(108, 99, 255, .5); color: var(--gold-soft); }
.btn-ghost:hover { background: rgba(108, 99, 255, .12); border-color: var(--gold); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

.link-underline {
  border-bottom: 1px solid rgba(108, 99, 255, .4);
  padding-bottom: 2px;
  transition: border-color .3s;
  color: var(--gold-soft);
}
.link-underline:hover { border-color: var(--gold); }

/* ---------------------------------------------------------
   Header / navigation transparente
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 20px 0;
  transition: background .45s var(--ease), padding .45s var(--ease), border-color .45s;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(15, 15, 26, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.logo svg { flex: 0 0 auto; }
.logo span { color: var(--gold); }

.nav-links { display: none; }
.nav-links a {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(251, 246, 233, .8);
  padding: 6px 0;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ivory); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  transition: all .35s var(--ease);
  color: var(--ivory);
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 19px; height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1a2e;
  font-size: .66rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.burger {
  width: 42px; height: 42px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.burger span {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--ivory);
  transition: transform .35s var(--ease), opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile plein ecran */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: rgba(15, 15, 26, .98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: .1em;
  padding: 12px 0;
  color: rgba(251, 246, 233, .78);
  transition: color .3s, letter-spacing .4s;
}
.mobile-nav a:hover { color: var(--gold); letter-spacing: .16em; }
.mobile-nav .sep { width: 40px; height: 1px; background: var(--line); margin: 12px 0; }

@media (min-width: 992px) {
  .nav-links { display: flex; align-items: center; gap: 34px; }
  .burger { display: none; }
}

/* ---------------------------------------------------------
   Hero (en-tete texte / couleur, sans image)
   --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(108, 99, 255, .20), transparent 62%),
    radial-gradient(880px 540px at 14% -12%, rgba(60, 190, 255, .13), transparent 60%),
    radial-gradient(760px 520px at 6% 96%, rgba(108, 99, 255, .09), transparent 60%),
    linear-gradient(160deg, #12121f 0%, #0f0f1a 55%, #0b0b15 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 22%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 22%, transparent 76%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 850px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 8px 18px;
  border: 1px solid rgba(108, 99, 255, .34);
  border-radius: 999px;
  font-size: .66rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(108, 99, 255, .06);
  margin-bottom: 1.8rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(108, 99, 255, .7);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(108, 99, 255, .6); }
  70%  { box-shadow: 0 0 0 11px rgba(108, 99, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0); }
}

.hero h1 { margin-bottom: .5rem; }
.hero h1 em {
  color: var(--gold-soft);
  background: linear-gradient(120deg, #8ab4ff, #9464ff 48%, #3cbeff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sous {
  font-family: var(--serif);
  font-size: clamp(1rem, 3.2vw, 1.35rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(251, 246, 233, .74);
  max-width: 640px;
  border-left: 1px solid rgba(108, 99, 255, .35);
  padding-left: 1.1rem;
  margin-bottom: 2.2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 3.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-soft);
  line-height: 1;
}
.hero-stats .stat span {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ---------------------------------------------------------
   Bandes de confiance
   --------------------------------------------------------- */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  padding: 30px 0;
}
.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  text-align: center;
}
.trust-list li {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color .35s;
}
.trust-list li:hover { color: var(--gold); }
@media (min-width: 680px) { .trust-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .trust-list { grid-template-columns: repeat(4, 1fr); } }

/* ---------------------------------------------------------
   Collections dynamiques
   --------------------------------------------------------- */
.collections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.collection-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  transition: transform .6s var(--ease), border-color .5s;
}
.collection-card:hover { transform: translateY(-8px); border-color: rgba(108, 99, 255, .5); }
.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s;
  filter: brightness(.62) saturate(.9);
}
.collection-card:hover img { transform: scale(1.08); filter: brightness(.72) saturate(1.05); }
.collection-card .cc-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 26px;
  background: linear-gradient(to top, rgba(15, 15, 26, .96), rgba(15, 15, 26, .55) 55%, transparent);
  z-index: 2;
}
.collection-card .cc-body h3 {
  font-size: 1.5rem;
  margin: 0 0 .35rem;
  letter-spacing: .05em;
}
.collection-card .cc-body span {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (min-width: 780px) { .collections { grid-template-columns: repeat(3, 1fr); } }

/* ---------------------------------------------------------
   Carrousel des prestations vedettes
   --------------------------------------------------------- */
.featured-section { background: var(--ink-2); }

.carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.carousel .product-card { flex: 0 0 78%; }
@media (min-width: 700px) { .carousel .product-card { flex: 0 0 calc((100% - 40px) / 3); } }

.carousel-btn {
  display: none;
  position: absolute;
  top: 42%;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(15, 15, 26, .92);
  color: var(--gold);
  align-items: center;
  justify-content: center;
  transition: all .35s var(--ease);
  z-index: 5;
}
.carousel-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.carousel-btn.prev { left: 4px; }
.carousel-btn.next { right: 4px; }
@media (min-width: 900px) { .carousel-btn { display: flex; } }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  padding: 0;
  transition: all .35s;
}
.carousel-dots button.active { background: var(--gold); width: 26px; border-radius: 999px; }

/* Sur mobile : scroll natif, pas de transform JS */
.carousel-track.manual { transition: none; }

@media (max-width: 899px) {
  .carousel { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .carousel::-webkit-scrollbar { display: none; }
  .carousel-track { transform: none !important; }
  .carousel .product-card { scroll-snap-align: start; }
  .carousel-dots { display: none; }
}

/* ---------------------------------------------------------
   Cartes produit / prestation
   --------------------------------------------------------- */
.product-card {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .55s var(--ease), border-color .45s, box-shadow .55s;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 99, 255, .48);
  box-shadow: 0 26px 60px -30px rgba(0, 0, 0, .95);
}
.product-card .img-wrap {
  position: relative;
  display: block;
  height: 320px;
  overflow: hidden;
  background: var(--ink-2);
}
.product-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.product-card:hover .img-wrap img { transform: scale(1.07); }

.badge-promo {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: #1a1a2e;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 3;
}
.badge-vedette {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(15, 15, 26, .85);
  border: 1px solid rgba(108, 99, 255, .45);
  color: var(--gold-soft);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  z-index: 3;
}

.product-card .info {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card .cat {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .5rem;
}
.product-card h3 {
  font-size: 1.12rem;
  margin: 0 0 .5rem;
  line-height: 1.3;
}
.product-card .desc-excerpt {
  font-size: .84rem;
  color: var(--muted);
  margin: 0 0 1rem;
  flex: 1;
}
.product-card .price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: .55rem;
}
.product-card .price .old {
  font-size: .9rem;
  color: var(--muted-2);
  text-decoration: line-through;
}
.product-card .btns { margin-top: auto; display: flex; gap: 10px; }
.product-card .btns .btn { flex: 1; padding: 12px 18px; }

/* ---------------------------------------------------------
   Cartes de services — effet hover 3D
   --------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  perspective: 1300px;
}
.service-card {
  position: relative;
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 28px 30px;
  transform-style: preserve-3d;
  transition: transform .6s var(--ease), border-color .5s, box-shadow .6s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 220px at var(--mx, 50%) var(--my, 0%), rgba(108, 99, 255, .16), transparent 70%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.service-card:hover {
  transform: perspective(1000px) rotateX(6deg) rotateY(-7deg) translateY(-10px) scale(1.02);
  border-color: rgba(108, 99, 255, .55);
  box-shadow: 26px 30px 70px -34px rgba(0, 0, 0, 1);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: rgba(108, 99, 255, .22);
  line-height: 1;
  margin-bottom: .7rem;
  display: block;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.service-card p { color: var(--muted); font-size: .9rem; margin: 0; }
.service-ico {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(108, 99, 255, .1);
  border: 1px solid rgba(108, 99, 255, .28);
  color: var(--gold);
  margin-bottom: 1.2rem;
}
@media (min-width: 700px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------------------------------------------------------
   Réassurance
   --------------------------------------------------------- */
.reassurance {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reassurance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.reassurance-item {
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all .4s var(--ease);
}
.reassurance-item:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 99, 255, .45);
  background: rgba(108, 99, 255, .05);
  box-shadow: 0 22px 46px -28px rgba(0, 0, 0, .95);
}
.reassurance-item svg { color: var(--gold); margin-bottom: .9rem; }
.reassurance-item h3 { font-size: 1rem; margin: 0 0 .25rem; font-family: var(--sans); font-weight: 600; letter-spacing: .02em; }
.reassurance-item p { font-size: .8rem; color: var(--muted-2); margin: 0; }
@media (min-width: 620px)  { .reassurance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reassurance-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------------------------------------------------------
   Bloc éditorial (texte + image) — empilé sur mobile
   --------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 45%, rgba(15, 15, 26, .75));
}
.split-body h2 { margin-bottom: 1rem; }
.split-body p { color: rgba(251, 246, 233, .75); }
.split-list { margin-top: 1.6rem; display: grid; gap: 12px; }
.split-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .9rem;
  color: rgba(251, 246, 233, .82);
}
.split-list svg { color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 1fr; gap: 62px; }
  .split.reverse .split-media { order: 2; }
}

/* ---------------------------------------------------------
   Grille de valeurs / chiffres
   --------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  background: var(--ink-2);
  text-align: center;
  transition: all .45s var(--ease);
}
.stat-card:hover { border-color: rgba(108, 99, 255, .45); transform: translateY(-5px); }
.stat-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-card span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
@media (min-width: 620px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------------------------------------------------------
   Galerie
   --------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.gallery-grid a {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .5s;
  filter: grayscale(.35) brightness(.82);
}
.gallery-grid a:hover img { transform: scale(1.07); filter: grayscale(0) brightness(1); }
@media (min-width: 560px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------------------------------------------------------
   Témoignages
   --------------------------------------------------------- */
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.quote-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: all .45s var(--ease);
}
.quote-card:hover { border-color: rgba(108, 99, 255, .42); transform: translateY(-6px); }
.quote-card::before {
  content: '\201C';
  position: absolute;
  top: 6px; right: 20px;
  font-family: var(--serif);
  font-size: 4.5rem;
  color: rgba(108, 99, 255, .16);
  line-height: 1;
}
.quote-card p { font-family: var(--serif); font-size: 1.06rem; color: rgba(251, 246, 233, .88); }
.quote-author { display: flex; align-items: center; gap: .85rem; margin-top: 1.3rem; }
.quote-author .qa-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(108, 99, 255, .14);
  border: 1px solid rgba(108, 99, 255, .32);
  font-family: var(--serif);
  color: var(--gold-soft);
  font-size: 1.05rem;
}
.quote-author strong { display: block; font-size: .88rem; font-weight: 600; }
.quote-author small { color: var(--muted-2); font-size: .74rem; }
@media (min-width: 860px) { .quotes-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------------------------------------------------------
   FAQ accordéon
   --------------------------------------------------------- */
.faq-list { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--ink-2); overflow: hidden; transition: border-color .4s; }
.faq-item.open { border-color: rgba(108, 99, 255, .45); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.06rem;
  text-align: left;
}
.faq-q svg { flex: 0 0 auto; color: var(--gold); transition: transform .4s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq-a-inner { padding: 0 22px 22px; color: var(--muted); font-size: .9rem; }

/* ---------------------------------------------------------
   Formulaires
   --------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 400;
  transition: border-color .3s, background .3s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(108, 99, 255, .06);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select option { background: var(--ink-2); color: var(--ivory); }
.field.full { grid-column: 1 / -1; }
@media (min-width: 760px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }

.form-note { font-size: .78rem; color: var(--muted-2); }
.hint { font-size: .76rem; color: var(--gold-deep); }

.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .86rem;
  margin-bottom: 18px;
  display: none;
}
.alert.show { display: block; }
.alert.ok { background: rgba(16, 185, 129, .12); border: 1px solid rgba(16, 185, 129, .45); color: #6ee7b7; }
.alert.err { background: rgba(239, 95, 107, .12); border: 1px solid rgba(239, 95, 107, .45); color: #fca5a5; }

/* ---------------------------------------------------------
   Page hero interne
   --------------------------------------------------------- */
.page-hero {
  padding: 150px 0 60px;
  background:
    radial-gradient(760px 380px at 70% 0%, rgba(108, 99, 255, .14), transparent 65%),
    var(--ink);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 6vw, 3.1rem); margin-bottom: .6rem; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; }
.breadcrumb {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--gold); }

/* ---------------------------------------------------------
   Boutique : filtres + tri
   --------------------------------------------------------- */
.toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 34px;
}
.filters { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: none;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
}
.chip:hover { border-color: rgba(108, 99, 255, .5); color: var(--ivory); }
.chip.active { background: var(--gold); border-color: var(--gold); color: #1a1a2e; font-weight: 600; }

.toolbar select {
  padding: 12px 16px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ivory);
  font-size: .82rem;
  width: 100%;
}
@media (min-width: 820px) {
  .toolbar { grid-template-columns: 1fr auto; align-items: center; }
  .toolbar select { width: auto; min-width: 210px; }
}

.catalogue { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 620px)  { .catalogue { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .catalogue { grid-template-columns: repeat(3, 1fr); } }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted-2);
}

/* ---------------------------------------------------------
   Fiche produit
   --------------------------------------------------------- */
.product-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  aspect-ratio: 1 / 1;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(15, 15, 26, .55);
  color: #fff;
  display: none;
  align-items: center; justify-content: center;
  transition: all .3s;
  backdrop-filter: blur(6px);
}
.gallery-arrow:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }

.thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumbs img {
  width: 74px; height: 74px;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid var(--line);
  cursor: pointer;
  opacity: .62;
  transition: all .35s;
}
.thumbs img:hover, .thumbs img.active { opacity: 1; border-color: var(--gold); }

.product-info h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); margin-bottom: .7rem; }
.product-price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-soft);
  display: flex;
  align-items: baseline;
  gap: .7rem;
  margin-bottom: 1.2rem;
}
.product-price .old { font-size: 1.1rem; color: var(--muted-2); text-decoration: line-through; }
.product-desc { color: rgba(251, 246, 233, .78); }
.product-long { color: var(--muted); font-size: .9rem; white-space: pre-line; }

.variants { margin: 1.6rem 0; }
.variants-label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .7rem;
  display: block;
}
.variant-options { display: flex; flex-wrap: wrap; gap: 10px; }
.variant-btn {
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: none;
  color: var(--ivory);
  font-size: .8rem;
  letter-spacing: .04em;
  transition: all .3s var(--ease);
}
.variant-btn:hover:not(:disabled) { border-color: var(--gold); }
.variant-btn.selected { background: var(--gold); border-color: var(--gold); color: #1a1a2e; font-weight: 600; }
.variant-btn:disabled, .variant-btn.sold-out {
  opacity: .34;
  cursor: not-allowed;
  text-decoration: line-through;
}

.qty-row { display: flex; align-items: center; gap: 14px; margin: 1.4rem 0; flex-wrap: wrap; }
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.qty-control button {
  width: 44px; height: 46px;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.1rem;
  transition: background .3s;
}
.qty-control button:hover { background: rgba(108, 99, 255, .12); }
.qty-control input {
  width: 54px; height: 46px;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: none;
  color: var(--ivory);
  text-align: center;
  font-size: .95rem;
}
.stock-info { font-size: .8rem; color: var(--muted-2); }
.stock-info strong { color: var(--ok); font-weight: 600; }

.product-reassure {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.product-reassure div { display: flex; gap: .8rem; align-items: flex-start; font-size: .84rem; color: var(--muted); }
.product-reassure svg { color: var(--gold); flex: 0 0 auto; margin-top: 2px; }

@media (min-width: 940px) {
  .product-layout { grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; }
  .gallery-arrow { display: flex; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 16, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity .35s;
  padding: 24px;
}
.lightbox.active { opacity: 1; }
.lightbox img { max-width: 94%; max-height: 90%; object-fit: contain; border-radius: 6px; }
.lightbox-close {
  position: absolute;
  top: 18px; right: 24px;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------------------------------------------------------
   Panier
   --------------------------------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.cart-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cart-table th {
  text-align: left;
  padding: 15px 16px;
  background: var(--ink-3);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  white-space: nowrap;
}
.cart-table td { padding: 15px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: .88rem; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-thumb { width: 66px; height: 66px; object-fit: cover; border-radius: 9px; border: 1px solid var(--line); }
.cart-prod-name { font-family: var(--serif); font-size: 1rem; display: block; }
.cart-sku { font-size: .72rem; color: var(--muted-2); }
.cart-remove { background: none; border: none; color: var(--muted-2); font-size: 1.2rem; transition: color .3s; }
.cart-remove:hover { color: var(--danger); }

.summary {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.summary h3 { font-size: 1.15rem; margin-bottom: 1.2rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .88rem;
  padding: 9px 0;
  color: var(--muted);
}
.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: .7rem;
  padding-top: 1.1rem;
  color: var(--ivory);
  font-size: 1.12rem;
  font-family: var(--serif);
}
.summary-row.total strong { color: var(--gold-soft); font-size: 1.4rem; font-weight: 400; }

@media (min-width: 940px) {
  .cart-layout { grid-template-columns: 1fr 350px; gap: 44px; }
}

/* Sur petit ecran : le tableau panier devient un empilement de cartes */
@media (max-width: 720px) {
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr {
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 14px;
  }
  .cart-table td { border: none; padding: 6px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .cart-table td::before {
    content: attr(data-label);
    font-size: .66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-2);
  }
  .cart-table td.cell-prod { display: block; }
  .cart-table td.cell-prod::before { display: none; }
  .cart-thumb { width: 100%; height: 170px; margin-bottom: 10px; }
}

/* Adresse / suggestions */
.suggest-box {
  position: relative;
}
.suggestions {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--ink-3);
  border: 1px solid var(--gold);
  border-radius: 0 0 10px 10px;
  max-height: 230px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}
.suggestions.show { display: block; }
.suggestions button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 11px 16px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-size: .85rem;
}
.suggestions button:last-child { border-bottom: none; }
.suggestions button:hover { background: rgba(108, 99, 255, .1); }

.choice-cards { display: grid; gap: 12px; margin-top: 1.4rem; }
@media (min-width: 620px) { .choice-cards { grid-template-columns: repeat(3, 1fr); } }
.choice-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 16px;
  background: var(--ink-2);
  text-align: center;
  transition: all .35s var(--ease);
  color: var(--ivory);
  font-size: .82rem;
}
.choice-card:hover { border-color: var(--gold); transform: translateY(-4px); background: rgba(108, 99, 255, .06); }
.choice-card strong { display: block; font-family: var(--serif); font-size: 1.05rem; margin-bottom: .3rem; }

/* ---------------------------------------------------------
   Auth / Compte
   --------------------------------------------------------- */
.auth-tabs {
  display: flex;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 26px;
}
.auth-tabs button {
  flex: 1;
  padding: 11px 16px;
  border: none;
  background: none;
  color: var(--muted);
  border-radius: 999px;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
}
.auth-tabs button.active { background: var(--gold); color: #1a1a2e; font-weight: 600; }

.account-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.account-tabs::-webkit-scrollbar { display: none; }
.account-tabs button {
  flex-shrink: 0;
  padding: 13px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .35s;
}
.account-tabs button.active { color: var(--gold); border-bottom-color: var(--gold); }

.order-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  overflow: hidden;
  margin-bottom: 18px;
}
.order-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
.order-head strong { font-family: var(--serif); font-size: 1.05rem; }
.order-body { padding: 20px; overflow-x: auto; }
.order-info-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
@media (min-width: 760px) { .order-info-grid { grid-template-columns: repeat(3, 1fr); } }
.order-info-grid h4 {
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: .5rem;
}
.order-info-grid p { font-size: .86rem; color: rgba(251, 246, 233, .8); margin: 0; }

.badge-statut {
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.badge-statut.en_attente { background: rgba(108, 99, 255, .16); color: var(--gold-soft); border: 1px solid rgba(108, 99, 255, .4); }
.badge-statut.payee     { background: rgba(16, 185, 129, .14); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, .4); }
.badge-statut.expediee  { background: rgba(74, 125, 255, .14); color: #93c5fd; border: 1px solid rgba(74, 125, 255, .4); }
.badge-statut.livree    { background: rgba(16, 185, 129, .2); color: #a7f3d0; border: 1px solid rgba(16, 185, 129, .5); }
.badge-statut.annulee   { background: rgba(239, 95, 107, .14); color: #fca5a5; border: 1px solid rgba(239, 95, 107, .4); }

.track-box {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px dashed rgba(108, 99, 255, .4);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.track-box span { font-size: .84rem; color: var(--muted); }

.detail-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.detail-table th, .detail-table td {
  text-align: left;
  padding: 9px 10px;
  font-size: .82rem;
  border-bottom: 1px solid var(--line);
}
.detail-table th { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; }
.taille-tag {
  display: inline-block;
  font-size: .66rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(108, 99, 255, .14);
  color: var(--gold-soft);
  border: 1px solid rgba(108, 99, 255, .3);
  margin-left: 6px;
}

/* ---------------------------------------------------------
   Pages legales / contenu
   --------------------------------------------------------- */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 {
  font-size: 1.28rem;
  margin-top: 2.4rem;
  color: var(--gold-soft);
  letter-spacing: .02em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--muted); font-size: .92rem; }
.legal-body ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1.1rem; }
.legal-body li { margin-bottom: .4rem; }

/* ---------------------------------------------------------
   Contact
   --------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink-2);
  transition: all .4s var(--ease);
}
.contact-item:hover { border-color: rgba(108, 99, 255, .45); transform: translateX(4px); }
.contact-item svg { color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.contact-item h4 {
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-family: var(--sans);
  font-weight: 500;
  margin: 0 0 .25rem;
}
.contact-item p { margin: 0; font-size: .92rem; color: rgba(251, 246, 233, .85); }
@media (min-width: 940px) { .contact-layout { grid-template-columns: 1fr 1.15fr; gap: 54px; } }

.map-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 34px;
  height: 340px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.4) invert(.9) hue-rotate(180deg); }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
  background: #0a0a12;
  border-top: 1px solid var(--line);
  padding: 66px 0 26px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer-grid p, .footer-grid li { font-size: .86rem; color: var(--muted); }
.footer-grid li { margin-bottom: .6rem; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 1.2rem; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all .35s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #1a1a2e; transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: .76rem;
  color: var(--muted-2);
  text-align: center;
}
.footer-bottom a:hover { color: var(--gold-soft); }
@media (min-width: 600px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

/* ---------------------------------------------------------
   Cookies
   --------------------------------------------------------- */
.cookie-bar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 950;
  background: rgba(26, 26, 46, .97);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  display: none;
  gap: 14px;
  flex-direction: column;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px -22px rgba(0, 0, 0, 1);
}
.cookie-bar.show { display: flex; }
.cookie-bar p { margin: 0; font-size: .82rem; color: var(--muted); }
.cookie-bar .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-bar .btn { padding: 11px 22px; font-size: .68rem; }
@media (min-width: 860px) {
  .cookie-bar { left: auto; right: 24px; bottom: 24px; max-width: 460px; }
}

/* ---------------------------------------------------------
   Toast
   --------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 130%);
  z-index: 10000;
  background: var(--ink-3);
  border: 1px solid var(--gold);
  color: var(--ivory);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: .84rem;
  transition: transform .5s var(--ease);
  max-width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 1);
}
.toast.show { transform: translate(-50%, 0); }
.toast.error { border-color: var(--danger); }

/* ---------------------------------------------------------
   Animations d'apparition + repli CSS obligatoire
   --------------------------------------------------------- */
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  animation: revealFallback .9s var(--ease) .35s forwards;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none; transition: none; }
  html { scroll-behavior: auto; }
  .service-card:hover { transform: none; }
}

/* Delais echelonnes */
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .22s; }
.d3 { animation-delay: .34s; }
.d4 { animation-delay: .46s; }

/* ---------------------------------------------------------
   Divers
   --------------------------------------------------------- */
.divider { height: 1px; background: var(--line); margin: 0; border: 0; }
.center { text-align: center; }
.mt-2 { margin-top: 1.4rem; }
.mt-3 { margin-top: 2.4rem; }
.hidden { display: none !important; }
.skeleton {
  background: linear-gradient(90deg, var(--ink-3) 25%, #232342 50%, var(--ink-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 10px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.loader {
  width: 34px; height: 34px;
  border: 2px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Bloc "outil interne" (delai indicatif) */
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: .78rem;
  color: var(--muted-2);
  margin-bottom: 1.1rem;
}
.meta-row span { display: flex; align-items: center; gap: .4rem; }

/* =========================================================
   LES DEUX POLES DE L'ATELIER
   Un pole = une carte 3D sur l'accueil + une page dediee.
   Mobile-first : 1 colonne par defaut, 2 colonnes des 860px.
   ========================================================= */

/* --- Grille des deux poles (accueil) --- */
.poles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  perspective: 1500px;
}

.pole-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(168deg, var(--ink-3) 0%, var(--ink-2) 62%, var(--ink) 100%);
  transform-style: preserve-3d;
  transition: transform .75s var(--ease), border-color .55s, box-shadow .75s var(--ease);
  will-change: transform;
}
.pole-card:hover {
  border-color: rgba(108, 99, 255, .55);
  box-shadow: 0 34px 70px -30px rgba(108, 99, 255, .6);
  transform: translateY(-8px) rotateX(2.4deg) rotateY(-2.4deg);
}
.pole-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -25%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(108, 99, 255, .3), transparent 68%);
  opacity: 0;
  transition: opacity .7s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.pole-card:hover::before { opacity: 1; }

.pole-visual {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.pole-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(.85);
  transition: transform 1.2s var(--ease), filter .7s;
}
.pole-card:hover .pole-visual img { transform: scale(1.07); filter: brightness(.68) saturate(1.05); }
.pole-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink-2) 2%, rgba(26, 26, 46, .35) 55%, transparent);
}
.pole-num {
  position: absolute;
  top: 18px; left: 22px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(251, 246, 233, .2);
  letter-spacing: -.03em;
}
.pole-audience {
  position: absolute;
  bottom: 16px; left: 22px; right: 22px;
  z-index: 2;
  font-size: .63rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.pole-body {
  position: relative;
  z-index: 2;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  transform: translateZ(28px);
}
.pole-body h3 {
  font-size: 1.42rem;
  line-height: 1.25;
  margin: 0 0 .55rem;
  letter-spacing: .01em;
}
.pole-baseline {
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pole-desc {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.pole-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-bottom: 1.8rem;
}
.pole-points li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .86rem;
  color: rgba(251, 246, 233, .82);
}
.pole-points li::before {
  content: '';
  width: 5px; height: 5px;
  margin-top: .58em;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.pole-cta { margin-top: auto; }
.pole-cta .btn { width: 100%; }

@media (min-width: 860px) {
  .poles-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .pole-visual { height: 250px; }
  .pole-body { padding: 32px 32px 34px; }
  .pole-points { grid-template-columns: repeat(2, 1fr); }
  .pole-cta .btn { width: auto; }
}

/* --- Bandeau d'entree d'un pole (pages dediees) --- */
.pole-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 66px;
  border-bottom: 1px solid var(--line);
}
.pole-hero-bg { position: absolute; inset: 0; z-index: 0; }
.pole-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.pole-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 460px at 12% 0%, rgba(108, 99, 255, .22), transparent 65%),
    linear-gradient(115deg, rgba(15, 15, 26, .96) 26%, rgba(15, 15, 26, .68) 78%);
}
.pole-hero .wrap { position: relative; z-index: 1; }
.pole-hero h1 {
  font-size: clamp(1.9rem, 6vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.pole-hero .lead {
  color: rgba(251, 246, 233, .84);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 660px;
  margin-bottom: 1.8rem;
}
.pole-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.pole-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 2rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.pole-hero-meta span { display: flex; align-items: center; gap: .5rem; }
.pole-hero-meta span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
@media (min-width: 900px) { .pole-hero { padding: 132px 0 92px; } }

/* --- Bloc de chiffres / arguments d'un pole --- */
.pole-facts { display: grid; grid-template-columns: 1fr; gap: 20px; }
.pole-fact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  background: var(--ink-2);
  transition: transform .5s var(--ease), border-color .45s;
}
.pole-fact:hover { transform: translateY(-5px); border-color: rgba(108, 99, 255, .45); }
.pole-fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--gold);
  margin-bottom: .35rem;
  letter-spacing: -.01em;
}
.pole-fact span { font-size: .84rem; color: var(--muted); line-height: 1.65; }
@media (min-width: 780px) { .pole-facts { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* --- Etapes numerotees (methode d'accompagnement) --- */
.pole-steps { display: grid; grid-template-columns: 1fr; gap: 22px; }
.pole-step {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
  transition: transform .5s var(--ease), border-color .45s;
}
.pole-step:hover { transform: translateY(-6px); border-color: rgba(108, 99, 255, .45); }
.pole-step .num {
  font-family: var(--serif);
  font-size: .78rem;
  letter-spacing: .2em;
  color: var(--gold);
  display: block;
  margin-bottom: .8rem;
}
.pole-step h4 { font-size: 1.06rem; margin-bottom: .5rem; }
.pole-step p { font-size: .87rem; color: var(--muted); margin: 0; line-height: 1.7; }
@media (min-width: 780px) { .pole-steps { grid-template-columns: repeat(3, 1fr); gap: 26px; } }

/* --- Selecteur de pole dans la boutique --- */
.pole-switch { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
.pole-switch-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  transition: transform .5s var(--ease), border-color .45s, background .45s;
}
.pole-switch-item:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 99, 255, .55);
  background: var(--ink-3);
}
.pole-switch-item .ps-tag {
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}
.pole-switch-item .ps-name { font-family: var(--serif); font-size: 1.14rem; line-height: 1.3; }
.pole-switch-item .ps-count { font-size: .78rem; color: var(--muted-2); }
.pole-switch-item .ps-arrow {
  position: absolute;
  top: 22px; right: 22px;
  color: var(--gold);
  transition: transform .45s var(--ease);
}
.pole-switch-item:hover .ps-arrow { transform: translateX(5px); }
@media (min-width: 820px) { .pole-switch { grid-template-columns: repeat(2, 1fr); gap: 22px; } }

/* --- Etiquette de pole sur les fiches --- */
.pole-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(108, 99, 255, .4);
  border-radius: 6px;
  padding: 4px 11px;
  margin-bottom: .7rem;
}
