/* ─── Hero Container — fond SVG clip-path (desktop uniquement) ─── */

@media (min-width: 901px) {

  /* Supprime le background Elementor existant */
  .elementor-22 .elementor-element.elementor-element-8c3f4b7:not(.elementor-motion-effects-element-type-background),
  .elementor-22 .elementor-element.elementor-element-8c3f4b7 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Fond découpé via pseudo-élément — le contenu n'est PAS clippé */
  .elementor-22 .elementor-element.elementor-element-8c3f4b7 {
    position: relative !important;
  }

  .elementor-22 .elementor-element.elementor-element-8c3f4b7::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #1D1E1C;
    -webkit-clip-path: url(#ps-hero-clip);
    clip-path: url(#ps-hero-clip);
    z-index: 0;
    pointer-events: none;
  }

  /* Le contenu reste au-dessus du fond découpé */
  .elementor-22 .elementor-element.elementor-element-8c3f4b7 > .elementor-container,
  .elementor-22 .elementor-element.elementor-element-8c3f4b7 > .elementor-motion-effects-container {
    position: relative;
    z-index: 1;
  }

}

/* ─── Hero Slider ─── */

#ps-hero,
#ps-hero *,
#ps-hero *::before,
#ps-hero *::after { box-sizing: border-box; margin: 0; padding: 0; }

#ps-hero {
  --teal:  #007780;
  --teal-l:#14A098;
  --gold:  #DEA500;
  --gold-d:#c89200;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 700px;
  font-family: 'Alumni Sans', sans-serif;
}

#ps-hero .ps-hero-viewport { width: 100%; height: 100%; }

#ps-hero .ps-hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform .65s cubic-bezier(.77, 0, .175, 1);
}

#ps-hero .ps-hero-slide { flex: 0 0 100%; width: 100%; height: 100%; }

#ps-hero .ps-hero-inner {
  width: 100%;
  height: 100%;
  padding: 0 90px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

#ps-hero .ps-hero-text {
  flex: 0 0 546px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

#ps-hero .ps-hero-title {
  font-family: 'Xirod', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#ps-hero .ps-hero-desc {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1.25px;
  color: #fff;
  text-align: left;
  margin-bottom: 36px;
}

#ps-hero .ps-hero-cta {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 14px 38px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
#ps-hero .ps-hero-cta:hover { background: var(--teal-l); transform: translateY(-2px); }

#ps-hero .ps-hero-visual {
  flex: 1 1 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ps-hero .ps-hero-visual img {
  display: block;
  max-width: 100%;
  max-height: 86%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
}


/* Flèches hero — desktop masqué, tablette & mobile visibles */
#ps-hero .ps-hero-arrow {
  display: none;
  position: absolute;
  z-index: 10;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: #fff;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,.35);
  transition: background .2s, transform .2s;
}

@media (max-width: 1100px) {
  #ps-hero .ps-hero-arrow {
    display: flex;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    font-size: 26px;
  }
  #ps-hero .ps-hero-arrow:hover { background: var(--gold-d); transform: translateY(-50%) scale(1.08); }
  #ps-hero .ps-hero-prev { left: 16px; }
  #ps-hero .ps-hero-next { right: 16px; }
}

@media (max-width: 768px) {
  #ps-hero .ps-hero-arrow {
    top: 130px;
    transform: none;
    width: 36px;
    height: 36px;
    font-size: 20px;
    background: rgba(222,165,0,.85);
    box-shadow: 0 2px 10px rgba(0,0,0,.4);
  }
  #ps-hero .ps-hero-arrow:hover { transform: scale(1.08); }
  #ps-hero .ps-hero-prev { left: 10px; }
  #ps-hero .ps-hero-next { right: 10px; }
}


@keyframes ps-text-in {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes ps-img-in {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}
#ps-hero .ps-hero-slide.is-active .ps-hero-text {
  animation: ps-text-in .5s cubic-bezier(.22,1,.36,1) both;
}
#ps-hero .ps-hero-slide.is-active .ps-hero-visual {
  animation: ps-img-in .5s cubic-bezier(.22,1,.36,1) .07s both;
}

.ps-hero-bottom-nav {
  width: 100%;
  box-sizing: border-box;
  padding: 14px clamp(16px,4vw,60px) 0;
}
.ps-hero-bottom-nav *,
.ps-hero-bottom-nav *::before,
.ps-hero-bottom-nav *::after { box-sizing: border-box; }

.ps-hero-bottom-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(0.5rem, 3.5vw, 4.5rem);
}

.ps-hero-bottom-nav .ps-nav-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.4rem, 0.8vw, 0.75rem);
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.ps-hero-bottom-nav .ps-nav-btn:hover,
.ps-hero-bottom-nav .ps-nav-btn.active { transform: translateY(-5px); }

.ps-hero-bottom-nav .ps-nav-img {
  width: clamp(3.25rem, 7.5vw, 7.8125rem);
  height: clamp(3.25rem, 7.5vw, 7.8125rem);
  object-fit: contain;
  display: block;
  transition: opacity .25s;
}
.ps-hero-bottom-nav .ps-nav-btn:not(.active) .ps-nav-img { opacity: .55; }
.ps-hero-bottom-nav .ps-nav-btn:hover .ps-nav-img,
.ps-hero-bottom-nav .ps-nav-btn.active .ps-nav-img { opacity: 1; }

.ps-hero-bottom-nav .ps-nav-label {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(0.6rem, 1.3vw, 1.375rem);
  line-height: 1.2;
  letter-spacing: .3px;
  text-align: center;
  color: #1D1E1C;
  text-transform: uppercase;
  transition: color .25s;
}
.ps-hero-bottom-nav .ps-nav-btn.active .ps-nav-label { color: #007780; }

@media (max-width: 1100px) {
  #ps-hero { height: clamp(500px, 58vw, 700px); }
  #ps-hero .ps-hero-inner { padding: 0 clamp(28px, 5vw, 90px); gap: clamp(20px, 3vw, 60px); }
  #ps-hero .ps-hero-text  { flex: 0 0 clamp(260px, 40%, 480px); }
  #ps-hero .ps-hero-title { font-size: clamp(1.4rem, 2.8vw, 2.25rem); }
  #ps-hero .ps-hero-desc  { font-size: clamp(0.9rem, 1.5vw, 1.25rem); line-height: 1.5; margin-bottom: clamp(20px, 2.5vw, 36px); }
  #ps-hero .ps-hero-cta   { font-size: clamp(0.875rem, 1.2vw, 1rem); padding: 12px clamp(20px, 2.5vw, 38px); }
}

/* ── Tablette (layout empilé dès 900px) ── */
@media (max-width: 900px) {
  #ps-hero { height: auto; overflow: visible; }
  #ps-hero .ps-hero-viewport { overflow: hidden; }
  #ps-hero .ps-hero-track,
  #ps-hero .ps-hero-slide { height: auto; }
  #ps-hero .ps-hero-inner { flex-direction: column; padding: 0; gap: 0; height: auto; }
  #ps-hero .ps-hero-visual {
    order: -1;
    width: 100%;
    height: 400px;
    flex: none;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }
  #ps-hero .ps-hero-visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,.5));
  }
  #ps-hero .ps-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(29,30,28,0) 50%, rgba(29,30,28,.7) 80%, rgba(29,30,28,1) 100%);
    pointer-events: none;
  }
  #ps-hero .ps-hero-text {
    order: 1;
    flex: none;
    width: 100%;
    padding: 28px 40px 40px;
    margin-top: -32px;
    position: relative;
    z-index: 2;
  }
  #ps-hero .ps-hero-title { font-size: 34px; margin-bottom: 16px; }
  #ps-hero .ps-hero-desc  { font-size: 18px; line-height: 1.6; letter-spacing: .5px; margin-bottom: 28px; opacity: .9; }
  #ps-hero .ps-hero-cta   { font-size: 17px; padding: 14px 34px; }
  /* Flèches tablette */
  #ps-hero .ps-hero-arrow { top: 200px; transform: none; }
  #ps-hero .ps-hero-arrow:hover { transform: scale(1.08); }
  #ps-hero .ps-hero-prev { left: 14px; }
  #ps-hero .ps-hero-next { right: 14px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  #ps-hero .ps-hero-visual { height: 300px; }
  #ps-hero .ps-hero-text { padding: 20px 24px 32px; margin-top: -24px; }
  #ps-hero .ps-hero-title { font-size: 28px; margin-bottom: 12px; }
  #ps-hero .ps-hero-desc  { font-size: 16px; margin-bottom: 22px; }
  #ps-hero .ps-hero-cta   { font-size: 16px; padding: 12px 28px; }
  #ps-hero .ps-hero-arrow { top: 150px; width: 36px; height: 36px; font-size: 20px; background: rgba(222,165,0,.85); }
  #ps-hero .ps-hero-prev { left: 10px; }
  #ps-hero .ps-hero-next { right: 10px; }
  .ps-hero-bottom-nav { padding: 10px 8px 0; }
}

@media (max-width: 420px) {
  #ps-hero .ps-hero-visual { height: 260px; }
  #ps-hero .ps-hero-title  { font-size: clamp(1.1rem, 5.5vw, 1.4rem); }
  #ps-hero .ps-hero-text   { padding: 16px 18px 28px; }
}

/* ─── Expertises ─── */

#ps-expertises,
#ps-expertises *,
#ps-expertises *::before,
#ps-expertises *::after { box-sizing: border-box; }

#ps-expertises {
  --ps-black:   #1D1E1C;
  --ps-teal:    #007780;
  --ps-teal-d:  #005f66;
  --ps-gold:    #DEA500;
  --ps-gold-d:  #c89200;
  --ps-white:   #ffffff;
  font-family: 'Alumni Sans', sans-serif;
  width: 100%;
  position: relative;
}

#ps-expertises .exp-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 70px);
  padding: 0 24px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 3;
  max-width: 1440px;
  margin: 0 auto;
}

#ps-expertises .exp-pic-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  transition: transform .25s;
  flex-shrink: 0;
  border-radius: 50%;
}
#ps-expertises .exp-pic-btn:focus-visible { outline: 3px solid var(--ps-gold); outline-offset: 4px; }
#ps-expertises .exp-pic-btn:hover,
#ps-expertises .exp-pic-btn.active { transform: translateY(-3px); }
#ps-expertises .exp-pic-btn img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  border: 4px solid var(--ps-teal);
  border-radius: 50%;
  background: #fff;
  transition: box-shadow .25s;
  box-sizing: border-box;
}
#ps-expertises .exp-pic-btn:hover img { box-shadow: 0 6px 18px rgba(0,0,0,.18); }
#ps-expertises .exp-pic-btn.active img { border-color: transparent; background: transparent; box-shadow: none; }

#ps-expertises .exp-stage {
  position: relative;
  margin: 100px auto 0;
  max-width: 1568px;
  padding: 0 64px;
}
#ps-expertises .exp-stage:focus { outline: none; }

#ps-expertises .exp-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  transition: height .5s cubic-bezier(.77, 0, .175, 1);
}

#ps-expertises .exp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ps-gold);
  border: none;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, transform .2s;
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
}
#ps-expertises .exp-arrow:hover { background: var(--ps-gold-d); transform: translateY(-50%) scale(1.08); }
#ps-expertises .exp-prev { left: 6px; }
#ps-expertises .exp-next { right: 6px; }

#ps-expertises .exp-track {
  display: flex;
  align-items: flex-start;
  width: 100%;
  will-change: transform;
  transition: transform .75s cubic-bezier(.77, 0, .175, 1);
}
#ps-expertises .exp-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 clamp(10px, 2vw, 40px);
}

#ps-expertises .exp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 50px);
  align-items: stretch;
  margin-bottom: 28px;
}
#ps-expertises .exp-textblock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-right: 20px;
}
#ps-expertises .exp-title {
  font-family: 'Xirod', sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: .5px;
  margin: 0 0 22px;
  font-weight: 400;
}
#ps-expertises .exp-desc {
  font-family: 'Alumni Sans', sans-serif;
  font-size: clamp(17px, 1.05vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  margin: 0 0 14px;
}
#ps-expertises .exp-desc strong { font-weight: 700; color: #fff; }
#ps-expertises .exp-desc em { font-style: italic; }

#ps-expertises .exp-imgblock { border-radius: 18px; overflow: hidden; min-height: 320px; max-height: 420px; }
#ps-expertises .exp-imgblock img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }

#ps-expertises .exp-row-bottom { margin-bottom: 0; align-items: stretch; }
#ps-expertises .exp-thumbs { display: flex; flex-direction: column; gap: 16px; }
#ps-expertises .exp-thumbs img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 260px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  flex: 1;
}

#ps-expertises .exp-card {
  background: #fff;
  border-radius: 28px;
  padding: clamp(28px, 3vw, 40px) clamp(28px, 3vw, 44px);
  box-shadow: 0 12px 35px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
}
#ps-expertises .exp-card-title {
  font-family: 'Xirod', sans-serif;
  font-size: clamp(26px, 2.1vw, 36px);
  color: var(--ps-black);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: .5px;
  font-weight: 400;
  margin: 0 0 22px;
}
#ps-expertises .exp-gold { color: var(--ps-gold); }

#ps-expertises .exp-list { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
#ps-expertises .exp-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 9px;
  font-family: 'Alumni Sans', sans-serif;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ps-black);
}
#ps-expertises .exp-list li::before { content: '•'; position: absolute; left: 2px; top: 0; color: var(--ps-black); font-weight: 700; }
#ps-expertises .exp-list strong { font-weight: 700; }
#ps-expertises .exp-list--white li,
#ps-expertises .exp-list--white li::before { color: rgba(255,255,255,.88); }
#ps-expertises .exp-list--white li::before { color: var(--ps-gold); }
#ps-expertises .exp-list--white strong { color: #fff; font-weight: 700; }

#ps-expertises .exp-cta {
  display: inline-block;
  align-self: flex-start;
  background: var(--ps-gold);
  color: #fff;
  padding: 13px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Alumni Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background .25s, transform .2s;
  cursor: pointer;
  border: none;
}
#ps-expertises .exp-cta:hover { background: var(--ps-gold-d); transform: translateY(-2px); }

/* ─── Montres Personnalisées ─── */

#ps-expertises .exp-extra { margin-top: 36px; padding: 0; }

#ps-expertises .extra-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
}

/* Image — entière visible, ancrée en bas de la colonne */
#ps-expertises .extra-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  min-height: 300px;
}
#ps-expertises .extra-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.4));
}

/* Bloc texte */
#ps-expertises .extra-textblock {
  padding: clamp(28px, 3vw, 44px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#ps-expertises .extra-headline { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; gap: 16px; }
#ps-expertises .extra-title {
  font-family: 'Xirod', sans-serif;
  font-size: clamp(28px, 2.4vw, 40px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: .5px;
  font-weight: 400;
  margin: 0;
}
#ps-expertises .extra-flag { display: inline-flex; align-items: center; flex-shrink: 0; margin-top: 4px; }
#ps-expertises .extra-flag svg { border-radius: 3px; box-shadow: 0 1px 4px rgba(0,0,0,.25); }
#ps-expertises .extra-desc { font-size: clamp(17px, 1.05vw, 19px); line-height: 1.55; color: rgba(255,255,255,.92); margin: 0 0 18px; }
#ps-expertises .extra-desc strong { color: #fff; font-weight: 700; }
#ps-expertises .extra-desc em { font-style: italic; }

#ps-expertises .exp-accordion { display: none; }

@media (max-width: 1024px) {
  #ps-expertises .exp-stage { padding: 0 56px; }
  #ps-expertises .exp-pic-btn img { width: 85px; height: 85px; }
  #ps-expertises .exp-row { gap: 24px; }
  #ps-expertises .exp-imgblock { min-height: 260px; max-height: 360px; }
  #ps-expertises .exp-imgblock img { min-height: 260px; }
  #ps-expertises .exp-thumbs img { min-height: 160px; }
}

@media (max-width: 768px) {
  #ps-expertises { padding-bottom: 40px; }
  #ps-expertises .exp-nav { gap: 12px; padding: 0 12px; }
  #ps-expertises .exp-pic-btn img { width: 70px; height: 70px; }
  #ps-expertises .exp-stage { margin-top: 20px; padding: 0 12px; }
  #ps-expertises .exp-arrow { width: 42px; height: 42px; font-size: 22px; top: auto; bottom: -54px; transform: none; }
  #ps-expertises .exp-arrow:hover { transform: scale(1.08); }
  #ps-expertises .exp-prev { left: 35%; }
  #ps-expertises .exp-next { right: 35%; }
  #ps-expertises .exp-slide { padding: 0 8px 60px; }
  #ps-expertises .exp-row { grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
  #ps-expertises .exp-textblock { padding-right: 0; }
  #ps-expertises .exp-title { font-size: 34px; margin-bottom: 16px; }
  #ps-expertises .exp-imgblock { min-height: 220px; max-height: 280px; }
  #ps-expertises .exp-imgblock img { min-height: 220px; }
  #ps-expertises .exp-thumbs { flex-direction: row; gap: 12px; }
  #ps-expertises .exp-thumbs img { min-height: 140px; max-height: 180px; }
  #ps-expertises .exp-card { border-radius: 22px; padding: 26px 22px; }
  #ps-expertises .exp-card-title { font-size: 26px; margin-bottom: 16px; }
  #ps-expertises .exp-list li { font-size: 16px; }
  /* Montres — tablette (layout empilé) */
  #ps-expertises .extra-card { grid-template-columns: 1fr; border-radius: 20px; }
  #ps-expertises .extra-img { padding: 24px 20px 0; min-height: unset; }
  #ps-expertises .extra-img img { flex: none; width: 100%; height: auto; }
  #ps-expertises .extra-textblock { padding: 28px 24px 32px; }
  #ps-expertises .extra-title { font-size: 26px; margin-bottom: 10px; }
  #ps-expertises .extra-desc { font-size: 16px; }
}

@media (max-width: 480px) {
  #ps-expertises .exp-pic-btn img { width: 55px; height: 55px; }
  #ps-expertises .exp-nav { gap: 6px; }
}

@media (max-width: 640px) {
  #ps-expertises .exp-nav   { display: none; }
  #ps-expertises .exp-stage { display: none; }
  #ps-expertises .exp-accordion { display: block; width: 100%; padding: 0; margin: 0; box-sizing: border-box; }
  #ps-expertises .acc-item { border-radius: 0; overflow: hidden; margin-bottom: 14px; border: none; background: transparent; }
  #ps-expertises .acc-item:last-child { margin-bottom: 0; }
  #ps-expertises .acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
    transition: background .2s;
  }
  #ps-expertises .acc-header:hover { background: rgba(255,255,255,.06); }
  #ps-expertises .acc-header--open { background: transparent; border: none; }
  #ps-expertises .acc-picto {
    width: 42px; height: 42px;
    object-fit: contain; border-radius: 50%;
    border: 2px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.1);
    flex-shrink: 0; transition: border-color .2s;
  }
  #ps-expertises .acc-header--open .acc-picto { border-color: var(--ps-gold); }
  #ps-expertises .acc-label-wrap { flex: 1; min-width: 0; }
  #ps-expertises .acc-label {
    display: block;
    font-family: 'Xirod', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .4px;
    line-height: 1.3;
    transition: color .2s;
  }
  #ps-expertises .acc-header--open .acc-label { color: var(--ps-gold); }
  #ps-expertises .acc-sublabel { display: block; font-family: 'Alumni Sans', sans-serif; font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; line-height: 1.3; }
  #ps-expertises .acc-chevron { font-size: 18px; color: rgba(255,255,255,.4); transition: transform .3s, color .2s; flex-shrink: 0; line-height: 1; }
  #ps-expertises .acc-header--open .acc-chevron { transform: rotate(180deg); color: var(--ps-gold); }
  #ps-expertises .acc-body { max-height: 0; overflow: hidden; transition: max-height .42s cubic-bezier(.77,0,.175,1); }
  #ps-expertises .acc-body--open { max-height: 3000px; }
  #ps-expertises .acc-body-inner { padding: 14px 14px 18px; overflow-wrap: break-word; word-break: break-word; min-width: 0; max-width: 100%; }
  #ps-expertises .acc-img-main { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; display: block; margin-bottom: 12px; }
  #ps-expertises .acc-body .exp-desc { font-size: 14px; line-height: 1.5; margin-bottom: 10px; overflow-wrap: break-word; word-break: break-word; max-width: 100%; }
  #ps-expertises .acc-thumbs { display: flex; gap: 8px; margin-bottom: 14px; }
  #ps-expertises .acc-thumbs img { flex: 1; height: 95px; object-fit: cover; border-radius: 10px; display: block; }
  #ps-expertises .acc-body .exp-card { border-radius: 16px; padding: 16px 14px; margin-bottom: 0; max-width: 100%; overflow: hidden; }
  #ps-expertises .acc-body .exp-card-title { font-family: 'Xirod', sans-serif; font-size: 15px !important; line-height: 1.2; margin-bottom: 12px; letter-spacing: .3px; word-break: break-word; }
  #ps-expertises .acc-body .exp-list { margin-bottom: 16px; }
  #ps-expertises .acc-body .exp-list li { font-size: 13px; line-height: 1.4; margin-bottom: 7px; overflow-wrap: break-word; word-break: break-word; }
  #ps-expertises .acc-body .exp-cta { font-size: 14px; padding: 10px 20px; }
  #ps-expertises .acc-extra { margin-top: 14px; }
  /* Montres — accordéon mobile */
  #ps-expertises .acc-extra .extra-card { grid-template-columns: 1fr; border-radius: 16px; }
  #ps-expertises .acc-extra .extra-img { padding: 16px 12px 0; min-height: unset; }
  #ps-expertises .acc-extra .extra-img img { width: 100%; height: auto; }
  #ps-expertises .acc-extra .extra-textblock { padding: 16px 16px 22px; }
  #ps-expertises .acc-extra .extra-headline { margin-bottom: 0; }
  #ps-expertises .acc-extra .extra-title { font-family: 'Xirod', sans-serif; font-size: 18px !important; line-height: 1.2; word-break: break-word; }
  #ps-expertises .acc-extra .extra-desc { font-size: 13px; margin-bottom: 10px; }
  #ps-expertises .acc-extra .exp-list li { font-size: 13px; }
}

/* ─── Réalisations ─── */

.real-section { background: #fff; overflow: hidden; }
.real-section .container { max-width: 1400px; margin: 0 auto; width: 100%; padding: 0 clamp(20px,4vw,60px); }
.real-section .xtitle { font-family: 'Xirod', sans-serif; font-size: clamp(26px,3.2vw,42px); text-transform: uppercase; letter-spacing: 1.5px; text-align: center; margin-bottom: 10px; color: var(--black); }
.real-section .u-gold { display: block; width: 80px; height: 3px; background: var(--gold); margin: 0 auto 44px; }

.real-wrap { display: flex; flex-direction: column; gap: 10px; }
.real-row { overflow: hidden; position: relative; }
.real-row::before,
.real-row::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.real-row::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.real-row::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }

.real-track { display: flex; gap: 10px; width: max-content; }
.real-track.go-left  { animation: ml 38s linear infinite; }
.real-track.go-right { animation: mr 38s linear infinite; }
.real-wrap:hover .real-track { animation-play-state: paused; }

@keyframes ml { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes mr { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.real-item { width: 300px; height: 300px; flex-shrink: 0; border-radius: 18px; overflow: hidden; position: relative; cursor: pointer; }
.real-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.real-item:hover img { transform: scale(1.07); }

.real-ov { position: absolute; inset: 0; background: rgba(0,119,128,.78); display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity .4s; }
.real-item:hover .real-ov { opacity: 1; }
.real-ov span { font-family: 'Xirod', sans-serif; font-size: 12px; color: #fff; text-transform: uppercase; letter-spacing: .5px; }

@media (max-width: 1100px) {
  .real-item { width: 260px; height: 260px; }
}

@media (max-width: 768px) {
  .real-section { padding: 60px 0; }
  .real-item { width: 180px; height: 180px; }
  .real-row::before,
  .real-row::after { width: 40px; }
}