
:root {
  --navy: #102347;
  --navy-soft: #1a3158;
  --gold: #b58b47;
  --gold-text: #8a672e;
  --ivory: #f7efe3;
  --ivory-light: #fffaf2;
  --champagne: #e8d5b7;
  --ink: #14233e;
  --muted: #6c6a66;
  --line: rgba(181, 139, 71, .28);
  --shadow: 0 20px 55px rgba(43, 34, 22, .12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory-light);
  font-family: var(--serif);
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

button,
input,
textarea,
select { font: inherit; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0 clamp(24px, 5vw, 84px);
  background: linear-gradient(to bottom, rgba(255,250,242,.94), rgba(255,250,242,.76), transparent);
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(255,250,242,.96);
  box-shadow: 0 8px 28px rgba(29, 24, 17, .08);
  backdrop-filter: blur(12px);
}

.brand-link {
  display: none;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
  transition: left .25s ease, right .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  left: 0;
  right: 0;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  margin: 6px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,250,242,.90) 0%, rgba(255,250,242,.62) 34%, rgba(255,250,242,.08) 63%, rgba(255,250,242,.04) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(650px, 88vw);
  margin-left: clamp(28px, 8vw, 145px);
  padding-top: 90px;
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .95s ease .3s forwards;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-text);
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.5rem, 5.4vw, 5.5rem);
  line-height: .98;
  font-weight: 500;
}

.hero .intro-text {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(16,35,71,.82);
  font-family: var(--sans);
  font-size: clamp(.98rem, 1.3vw, 1.15rem);
  line-height: 1.85;
}


.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: var(--navy);
  font-family: var(--sans);
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 10px auto 0;
  background: var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}

.universes {
  padding: clamp(76px, 9vw, 140px) clamp(22px, 6vw, 100px);
  background: var(--ivory-light);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto clamp(42px, 6vw, 78px);
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
}

.section-heading p {
  max-width: 590px;
  margin: 18px auto 0;
  color: var(--muted);
  font-family: var(--sans);
  line-height: 1.75;
}

.universe-grid {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 52px);
}

.universe-card {
  position: relative;
  min-height: clamp(510px, 55vw, 710px);
  overflow: hidden;
  text-decoration: none;
  background: var(--champagne);
  box-shadow: var(--shadow);
}

.universe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.universe-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(7,20,43,.85));
}

.universe-card:hover img { transform: scale(1.035); }

.universe-content {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 58px);
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(26px, 4vw, 52px);
  color: white;
}

.universe-content h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.2vw, 3.3rem);
  font-weight: 500;
}

.universe-content p {
  max-width: 500px;
  margin: 0;
  font-family: var(--sans);
  font-size: .96rem;
  line-height: 1.7;
}

.universe-link {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.page-hero {
  min-height: 54vh;
  display: grid;
  place-items: center;
  padding: 140px 24px 70px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, #fffdf8, #f2e4cf 70%);
}

.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 6vw, 6rem);
  font-weight: 500;
}

.page-hero p {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-family: var(--sans);
  line-height: 1.8;
}

.content-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) 24px;
}

.content-section h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
}

.content-section p,
.content-section li {
  color: #55534f;
  font-family: var(--sans);
  line-height: 1.85;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.placeholder-card {
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, white, #f1e3cd);
}

.placeholder-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 500;
}

.faq-list {
  max-width: 920px;
  margin: 46px auto 0;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  font-size: 1.12rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p { margin: 0 0 26px; }

.faq-item.open .faq-answer { max-height: 300px; }

.contact-form {
  max-width: 760px;
  margin: 42px auto 0;
  display: grid;
  gap: 18px;
}

.contact-form label {
  color: var(--navy);
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(16,35,71,.30);
  outline: none;
  background: transparent;
  color: var(--navy);
}

.contact-form textarea { min-height: 150px; resize: vertical; }

.btn {
  width: fit-content;
  padding: 15px 26px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: white;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-footer {
  padding: 58px clamp(24px, 6vw, 100px) 26px;
  background: var(--navy);
  color: white;
}

.footer-main {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.footer-brand h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 500;
}

.footer-brand p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.65);
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links a { text-decoration: none; }

.footer-bottom {
  max-width: 1420px;
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.52);
  font-family: var(--sans);
  font-size: .72rem;
  text-align: right;
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%,100% { transform: scaleY(.55); opacity: .45; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 0;
    margin: 0;
    padding: 110px 36px 50px;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(255,250,242,.98);
    transform: translateX(100%);
    transition: transform .35s ease;
    font-size: .95rem;
  }

  .main-nav.open { transform: translateX(0); }

  .menu-toggle { display: block; z-index: 2; }

  .universe-grid { grid-template-columns: 1fr; }

  .placeholder-grid { grid-template-columns: 1fr 1fr; }

  .footer-main { align-items: flex-start; flex-direction: column; }

  .footer-links { justify-content: flex-start; }

  .hero::after {
    background: linear-gradient(90deg, rgba(255,250,242,.93), rgba(255,250,242,.62) 70%, rgba(255,250,242,.20));
  }

}

@media (max-width: 640px) {
  .site-header { height: 72px; padding: 0 18px; }

  .brand-link { min-width: 0; }

  .brand-link img { width: 190px; }

  .hero {
    align-items: flex-end;
    padding-bottom: 85px;
  }

  .hero-bg { object-position: 62% center; }

  .hero::after {
    background: linear-gradient(to top, rgba(255,250,242,.96), rgba(255,250,242,.72) 55%, rgba(255,250,242,.08));
  }

  .hero-copy {
    margin: 0 24px;
    padding-top: 90px;
  }

  .hero h1 { font-size: clamp(2.4rem, 12vw, 4rem); }

  .scroll-cue { display: none; }

  .universe-card { min-height: 520px; }

  .placeholder-grid { grid-template-columns: 1fr; }

  .footer-bottom { text-align: left; }
}

/* V2 — navigation sans logo collé */
.site-header {
  justify-content: flex-end;
}

.global-music-toggle{position:fixed;z-index:80;right:22px;bottom:22px;width:44px;height:44px;border:1px solid rgba(181,139,71,.48);border-radius:50%;background:rgba(255,250,242,.93);color:var(--navy);box-shadow:0 8px 24px rgba(22,27,34,.12);cursor:pointer}.global-music-toggle.muted{opacity:.55}.global-music-toggle.muted span{text-decoration:line-through}


/* V8 — accueil finalisé */
.universe-kicker {
  margin: 0 0 12px !important;
  color: rgba(255,255,255,.72);
  font-family: var(--sans) !important;
  font-size: .68rem !important;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.universe-content h3 {
  max-width: 610px;
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.75vw, 3.05rem);
  line-height: 1.08;
}

.universe-content > p:not(.universe-kicker) {
  max-width: 570px;
  color: rgba(255,255,255,.86);
}

.creative-method {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 175px) 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.92), transparent 42%),
    linear-gradient(145deg, #f7efe3, #edddc5);
}

.creative-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 58px;
  background: var(--gold);
  opacity: .62;
}

.creative-method-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.creative-method h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1.02;
  font-weight: 500;
}

.method-copy {
  max-width: 720px;
  margin: 30px auto 0;
}

.method-copy p {
  margin: 0;
  color: #5e5a54;
  font-family: var(--sans);
  font-size: clamp(.98rem, 1.25vw, 1.12rem);
  line-height: 1.9;
}

.method-copy p + p { margin-top: 12px; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .9s ease,
    transform 1s cubic-bezier(.18,.72,.18,1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.universe-card:nth-child(2).reveal-on-scroll {
  transition-delay: .12s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 640px) {
  .universe-content h3 { font-size: 1.9rem; }
  .creative-method { padding: 95px 22px; }
}


/* V9 accueil */
.universe-kicker{
display:block;
text-align:center;
font-size:1.4rem;
letter-spacing:.12em;
margin-bottom:1rem;
}
.universe-content h3{
font-size:1.25rem;
max-width:80%;
margin:0 auto 1rem;
text-align:center;
}
.universe-content p{
max-width:78%;
margin:0 auto;
text-align:center;
}
.universe-link{
display:inline-block;
margin-top:1.4rem;
padding:.7rem 1.6rem;
border:1px solid #b79b5e;
border-radius:999px;
transition:.25s ease;
}
.universe-card:hover .universe-link{
background:#b79b5e;
color:white;
}

/* V10 exacte — corrections ciblées sur la V9, sans modifier le reste */

/* Les cartes conservent intégralement leur structure et leurs images V9. */
.universe-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  color: #fff;
  pointer-events: none;
}

/* Titres des univers centrés en haut. */
.universe-kicker {
  position: absolute;
  top: clamp(30px, 4vw, 52px);
  left: 24px;
  right: 24px;
  display: block;
  margin: 0 !important;
  color: #f8f1e5;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1.5rem, 2.3vw, 2.35rem) !important;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,.38);
}

.universe-kicker::after {
  content: "";
  display: block;
  width: 108px;
  height: 1px;
  margin: 17px auto 0;
  background: rgba(193,150,77,.9);
}

/* Textes plus petits, alignés à gauche, sans modifier leur contenu. */
.universe-content h3 {
  position: absolute;
  left: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 56px);
  bottom: 128px;
  max-width: 560px;
  margin: 0 !important;
  color: #fff;
  font-size: clamp(1.35rem, 1.9vw, 2rem) !important;
  line-height: 1.16;
  font-weight: 500;
  text-align: left !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.universe-content > p:not(.universe-kicker) {
  position: absolute;
  left: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 56px);
  bottom: 91px;
  max-width: 580px !important;
  margin: 0 !important;
  color: rgba(255,255,255,.88);
  font-family: var(--sans);
  font-size: clamp(.76rem, .9vw, .9rem) !important;
  line-height: 1.45;
  text-align: left !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.56);
}

/* Bouton visuellement centré en bas, avec effet au survol. */
.universe-link {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: block;
  min-width: 148px;
  margin: 0 !important;
  padding: 12px 24px 11px !important;
  border: 1px solid rgba(199,156,82,.94) !important;
  border-radius: 0 !important;
  color: #fff;
  background: rgba(10,22,44,.2);
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .17em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: background .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease;
}

.universe-card:hover .universe-link,
.universe-card:focus-visible .universe-link {
  background: #c59a50;
  color: #0e2347;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

@media (max-width: 640px) {
  .universe-content h3 {
    left: 26px;
    right: 26px;
    bottom: 136px;
    font-size: 1.55rem !important;
  }

  .universe-content > p:not(.universe-kicker) {
    left: 26px;
    right: 26px;
    bottom: 94px;
    font-size: .78rem !important;
  }
}


/* V11 définitive — composition validée des deux univers */
.universe-card > .universe-kicker {
  position: absolute;
  z-index: 4;
  top: clamp(30px, 4vw, 52px);
  left: 50%;
  right: auto;
  width: max-content;
  max-width: calc(100% - 48px);
  margin: 0;
  transform: translateX(-50%);
  color: #f8f1e5;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .14em;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,.38);
  pointer-events: none;
}

.universe-card > .universe-kicker::after {
  content: "";
  display: block;
  width: 108px;
  height: 1px;
  margin: 17px auto 0;
  background: rgba(193,150,77,.90);
}

.universe-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  color: #fff;
  pointer-events: none;
  text-align: left;
}

.universe-content h3 {
  position: absolute;
  left: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 56px);
  bottom: 128px;
  width: auto;
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1.16;
  font-weight: 500;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.universe-content > p {
  position: absolute;
  left: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 56px);
  bottom: 91px;
  width: auto;
  max-width: 580px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-family: var(--sans);
  font-size: clamp(.76rem, .9vw, .9rem);
  line-height: 1.45;
  text-align: left;
  text-shadow: 0 1px 8px rgba(0,0,0,.56);
}

.universe-link {
  position: absolute;
  z-index: 3;
  left: 50%;
  right: auto;
  bottom: 28px;
  display: block;
  min-width: 148px;
  margin: 0;
  padding: 12px 24px 11px;
  border: 1px solid rgba(199,156,82,.94);
  border-radius: 0;
  color: #fff;
  background: rgba(10,22,44,.2);
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .17em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: background .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease;
}

.universe-card:hover .universe-link,
.universe-card:focus-visible .universe-link {
  background: #c59a50;
  color: #0e2347;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

@media (max-width: 640px) {
  .universe-content h3 {
    left: 26px;
    right: 26px;
    bottom: 136px;
    font-size: 1.55rem;
  }
  .universe-content > p {
    left: 26px;
    right: 26px;
    bottom: 94px;
    font-size: .78rem;
  }
}


/* V12 — Les sept portes de l’univers Professionnels */
.professional-portals-section {
  max-width: 1320px;
}

.professional-portals-heading {
  margin-bottom: 46px;
  text-align: center;
}

.professional-portals-heading h2 {
  margin: 0;
}

.professional-portals-heading p {
  margin: 15px auto 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  font-style: italic;
  letter-spacing: .02em;
}

.professional-portals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.professional-portal {
  position: relative;
  min-height: clamp(520px, 56vw, 680px);
  overflow: hidden;
  display: block;
  color: #fff;
  text-decoration: none;
  background: #aa9476;
  box-shadow: 0 16px 36px rgba(20, 25, 34, .10);
  transform: translateY(0);
  transition:
    transform .42s cubic-bezier(.2,.75,.25,1),
    box-shadow .42s ease;
}

.professional-portal-wide {
  grid-column: 1 / -1;
  min-height: clamp(500px, 47vw, 660px);
}

.professional-portal img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: brightness(.88);
  transition:
    transform .65s cubic-bezier(.2,.75,.25,1),
    filter .55s ease;
}

.professional-portal-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10, 22, 43, .40) 0%,
      rgba(10, 22, 43, .04) 33%,
      rgba(10, 22, 43, .10) 55%,
      rgba(10, 22, 43, .82) 100%);
  transition: background .55s ease;
}

.professional-portal-title {
  position: absolute;
  z-index: 2;
  top: clamp(28px, 4vw, 52px);
  left: 26px;
  right: 26px;
  display: block;
  text-align: center;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: .11em;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,.32);
}

.professional-portal-title::after {
  content: "";
  display: block;
  width: 112px;
  height: 1px;
  margin: 18px auto 0;
  background: rgba(202, 161, 88, .95);
}

.professional-portal-copy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 5vw, 60px);
  right: clamp(28px, 5vw, 60px);
  bottom: 106px;
  display: block;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.professional-portal-copy strong {
  display: block;
  max-width: 620px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.2;
}

.professional-portal-copy small {
  display: block;
  max-width: 630px;
  margin-top: 10px;
  color: rgba(255,255,255,.88);
  font-family: var(--sans);
  font-size: clamp(.82rem, 1vw, 1rem);
  line-height: 1.65;
}

.professional-portal-button {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  min-width: 150px;
  padding: 13px 26px 12px;
  border: 1px solid rgba(202,161,88,.95);
  color: #fff;
  background: rgba(9, 22, 45, .18);
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition:
    background .35s ease,
    color .35s ease,
    box-shadow .35s ease,
    transform .35s ease;
}

.professional-portal:hover,
.professional-portal:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 25px 56px rgba(20, 25, 34, .20);
  outline: none;
}

.professional-portal:hover img,
.professional-portal:focus-visible img {
  transform: scale(1.038);
  filter: brightness(.98);
}

.professional-portal:hover .professional-portal-shade,
.professional-portal:focus-visible .professional-portal-shade {
  background:
    linear-gradient(to bottom,
      rgba(10, 22, 43, .30) 0%,
      rgba(10, 22, 43, .02) 38%,
      rgba(10, 22, 43, .06) 55%,
      rgba(10, 22, 43, .72) 100%);
}

.professional-portal:hover .professional-portal-button,
.professional-portal:focus-visible .professional-portal-button {
  color: var(--navy);
  background: #c9a15a;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  transform: translateX(-50%) translateY(-3px);
}

@media (max-width: 820px) {
  .professional-portals-grid {
    grid-template-columns: 1fr;
  }

  .professional-portal-wide {
    grid-column: auto;
  }

  .professional-portal,
  .professional-portal-wide {
    min-height: 580px;
  }
}

@media (max-width: 520px) {
  .professional-portal,
  .professional-portal-wide {
    min-height: 520px;
  }

  .professional-portal-title {
    font-size: 1.45rem;
    letter-spacing: .075em;
  }

  .professional-portal-copy {
    left: 24px;
    right: 24px;
  }
}


/* Raccord entrée → accueil : aucun rendu partiel.
   La page reste invisible jusqu’à la fin de son chargement puis apparaît
   par un fondu très court, sans zoom ni déplacement. */
html.from-intro body {
  opacity: 0;
}
html.from-intro.arrival-ready body {
  opacity: 1;
  transition: opacity .14s ease-out;
}


/* V13 — sous-titre Professionnels sur une ligne */
@media (min-width: 1050px) {
  .page-hero > div > p:last-child {
    max-width: none;
    white-space: nowrap;
  }
}

/* V13 — menu Portfolio déroulant */
.main-nav {
  align-items: center;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "⌄";
  margin-left: 6px;
  color: var(--gold);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 17px);
  left: 50%;
  min-width: 190px;
  padding: 10px 0;
  border: 1px solid rgba(194, 153, 80, .34);
  background: rgba(255, 251, 244, .98);
  box-shadow: 0 18px 40px rgba(20, 25, 34, .12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 22px;
  white-space: nowrap;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* V13 — univers Signature */
.signature-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 76px));
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.signature-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 51, .78) 0%, rgba(8, 24, 51, .39) 43%, rgba(8, 24, 51, .05) 76%),
    linear-gradient(to top, rgba(8, 24, 51, .40), transparent 48%);
}

.signature-hero-content {
  position: relative;
  z-index: 2;
  max-width: 770px;
  margin: 0 0 clamp(58px, 8vw, 108px) clamp(28px, 7vw, 112px);
  padding-right: 30px;
  color: #fff;
}

.signature-hero-content .eyebrow {
  color: #dab36b;
}

.signature-hero-content h1 {
  margin: 8px 0 24px;
  color: #fff;
  font-size: clamp(4rem, 9vw, 8.7rem);
  line-height: .9;
}

.signature-hero-content > p:last-child {
  max-width: 710px;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.85;
}

.signature-projects-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(86px, 10vw, 150px) clamp(24px, 5vw, 72px);
}

.signature-projects-heading {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.signature-projects-heading h2 {
  margin-top: 12px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.08;
}

.signature-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
}

.signature-project-card {
  position: relative;
  min-height: clamp(610px, 65vw, 820px);
  overflow: hidden;
  display: block;
  background: #d2c2ac;
  box-shadow: 0 18px 42px rgba(15, 24, 40, .11);
  transform: translateY(0);
  transition: transform .42s cubic-bezier(.2,.75,.25,1), box-shadow .42s ease;
}

.signature-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: brightness(.90);
  transition: transform .65s cubic-bezier(.2,.75,.25,1), filter .5s ease;
}

.signature-project-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,24,51,.06) 45%, rgba(8,24,51,.82) 100%);
  transition: background .5s ease;
}

.signature-project-title {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 112px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  text-shadow: 0 2px 14px rgba(0,0,0,.42);
}

.signature-project-button {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 38px;
  min-width: 145px;
  padding: 13px 25px 12px;
  border: 1px solid rgba(210,170,95,.95);
  color: #fff;
  background: rgba(8,24,51,.17);
  transform: translateX(-50%);
  text-align: center;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .32s ease, color .32s ease, transform .32s ease, box-shadow .32s ease;
}

.signature-project-card:hover,
.signature-project-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 28px 62px rgba(15, 24, 40, .22);
  outline: none;
}

.signature-project-card:hover img,
.signature-project-card:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1);
}

.signature-project-card:hover .signature-project-shade,
.signature-project-card:focus-visible .signature-project-shade {
  background: linear-gradient(to bottom, rgba(8,24,51,.02) 45%, rgba(8,24,51,.70) 100%);
}

.signature-project-card:hover .signature-project-button,
.signature-project-card:focus-visible .signature-project-button {
  color: var(--navy);
  background: #cda65f;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.return-portals-section {
  padding: 88px 24px 104px;
  text-align: center;
  background: #f1e5d0;
}

.return-portals-section p {
  margin-bottom: 26px;
  color: #685c4c;
}

.return-portals-button {
  display: inline-block;
  padding: 15px 26px;
  border: 1px solid var(--gold);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .75rem;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.return-portals-button:hover {
  color: var(--navy);
  background: #cda65f;
  transform: translateY(-3px);
}

/* V13 — pages projets */
.project-detail-hero {
  padding: clamp(110px, 14vw, 190px) 26px clamp(76px, 9vw, 125px);
  text-align: center;
  background: #f0e3cd;
}

.project-detail-hero h1 {
  margin: 14px auto 22px;
  max-width: 1100px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: .95;
}

.project-detail-hero > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

.project-boards {
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 125px) 24px;
}

.project-board {
  margin: 0 0 clamp(42px, 7vw, 86px);
  background: #fff;
  box-shadow: 0 20px 55px rgba(22, 28, 39, .10);
}

.project-board img {
  display: block;
  width: 100%;
  height: auto;
}

.project-navigation {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 48px clamp(24px, 7vw, 110px) 82px;
  border-top: 1px solid rgba(193,150,77,.28);
}

.project-navigation a {
  color: var(--navy);
  font-size: .83rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .signature-projects-grid {
    grid-template-columns: 1fr;
  }

  .signature-project-card {
    min-height: 680px;
  }

  .signature-hero {
    min-height: 720px;
  }

  .signature-hero-content {
    margin-left: 28px;
  }

  .project-navigation {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .signature-project-card {
    min-height: 560px;
  }

  .signature-project-title {
    left: 24px;
    right: 24px;
    bottom: 106px;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
}


/* V14 — rythme de lecture compact de l’univers Signature */

/* Hero moins haut et contenu légèrement remonté */
.signature-hero {
  min-height: clamp(540px, 70vh, 690px) !important;
}

.signature-hero-content {
  max-width: 735px !important;
  margin-bottom: clamp(38px, 5vw, 68px) !important;
}

.signature-hero-content h1 {
  margin-top: 5px !important;
  margin-bottom: 17px !important;
  font-size: clamp(3.6rem, 7.2vw, 7.2rem) !important;
}

.signature-hero-content > p:last-child {
  line-height: 1.68 !important;
}

/* Accès plus rapide aux portes-projets */
.signature-projects-section {
  padding-top: clamp(58px, 6vw, 82px) !important;
  padding-bottom: clamp(62px, 7vw, 92px) !important;
}

.signature-projects-heading {
  margin-bottom: clamp(32px, 4vw, 46px) !important;
}

.signature-projects-heading h2 {
  font-size: clamp(2rem, 4vw, 3.7rem) !important;
}

/* Portes moins monumentales tout en restant immersives */
.signature-projects-grid {
  gap: clamp(22px, 3vw, 36px) !important;
}

.signature-project-card {
  min-height: clamp(460px, 48vw, 610px) !important;
}

.signature-project-title {
  bottom: 96px !important;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem) !important;
}

.signature-project-button {
  bottom: 28px !important;
}

/* Pages projet : les planches arrivent beaucoup plus vite */
.project-detail-hero {
  padding-top: clamp(78px, 9vw, 118px) !important;
  padding-bottom: clamp(46px, 5vw, 68px) !important;
}

.project-detail-hero h1 {
  margin-top: 10px !important;
  margin-bottom: 16px !important;
  font-size: clamp(2.8rem, 6.5vw, 6.2rem) !important;
}

.project-detail-hero > p:last-child {
  max-width: 790px !important;
  line-height: 1.65 !important;
}

.project-boards {
  max-width: 960px !important;
  padding-top: clamp(38px, 4vw, 58px) !important;
  padding-bottom: clamp(46px, 5vw, 72px) !important;
}

.project-board {
  margin-bottom: clamp(28px, 4vw, 52px) !important;
}

.project-navigation {
  padding-top: 34px !important;
  padding-bottom: 54px !important;
}

.return-portals-section {
  padding-top: 58px !important;
  padding-bottom: 68px !important;
}

@media (max-width: 820px) {
  .signature-hero {
    min-height: 620px !important;
  }

  .signature-project-card {
    min-height: 540px !important;
  }

  .project-detail-hero {
    padding-top: 84px !important;
  }
}

@media (max-width: 560px) {
  .signature-hero {
    min-height: 590px !important;
  }

  .signature-project-card {
    min-height: 500px !important;
  }

  .signature-projects-section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}


/* V15 — présentation éditoriale des projets */

/* Les portes Signature utilisent désormais des couvertures sans "Projet 1 / 2..." */
.signature-project-card img {
  object-position: center center;
}

/* Projets doubles : deux identités avancent en parallèle */
.comparison-project-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 56px) clamp(20px, 4vw, 48px) clamp(46px, 5vw, 72px);
}

.comparison-columns-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 38px);
  margin-bottom: 20px;
}

.comparison-columns-head > div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(193,150,77,.55);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  text-align: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(20px, 3vw, 38px);
}

.comparison-board {
  margin: 0;
  background: #fff;
  box-shadow: 0 15px 38px rgba(22,28,39,.09);
}

.comparison-board img {
  display: block;
  width: 100%;
  height: auto;
}

.comparison-future-note,
.single-project-future-note {
  max-width: 720px;
  margin: 28px auto 0;
  color: #7a6f60;
  font-size: .9rem;
  line-height: 1.7;
  text-align: center;
  font-style: italic;
}

/* Projets simples : galerie horizontale évolutive */
.single-project-gallery {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 56px) clamp(20px, 4vw, 48px) clamp(46px, 5vw, 72px);
}

.single-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 32px);
  align-items: start;
}

.single-project-item {
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 38px rgba(22,28,39,.09);
}

.single-project-item-main {
  grid-column: span 2;
}

.single-project-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Les anciennes planches restantes sont encore plus contenues */
.project-boards {
  max-width: 820px !important;
}

.project-board {
  box-shadow: 0 14px 36px rgba(22,28,39,.08) !important;
}

/* Rythme compact supplémentaire */
.project-detail-hero {
  padding-bottom: clamp(34px, 4vw, 52px) !important;
}

.project-navigation {
  margin-top: 0 !important;
}

@media (max-width: 820px) {
  .comparison-columns-head,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-columns-head {
    display: none;
  }

  .comparison-board::before {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(193,150,77,.28);
    color: var(--navy);
    font-family: var(--font-display);
    text-align: center;
  }

  .comparison-board:first-child::before {
    content: "Première interprétation";
  }

  .comparison-board:nth-child(2)::before {
    content: "Seconde interprétation";
  }

  .single-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-project-item-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .single-project-grid {
    grid-template-columns: 1fr;
  }

  .single-project-item-main {
    grid-column: auto;
  }
}

/* V16 — portes et projets enrichis */
.signature-project-copy{position:absolute;z-index:2;left:30px;right:30px;bottom:91px;display:flex;flex-direction:column;gap:8px}.signature-project-title{position:static!important;display:block}.signature-project-subtitle{color:rgba(255,255,255,.88);font-size:clamp(.76rem,1vw,.94rem);line-height:1.35;letter-spacing:.06em;text-transform:uppercase;text-shadow:0 2px 10px rgba(0,0,0,.48)}.signature-project-shade{background:linear-gradient(to bottom,rgba(8,24,51,0) 48%,rgba(8,24,51,.78) 100%)!important}
.comparison-project-section{max-width:1080px!important;padding-top:28px!important;padding-bottom:54px!important}.comparison-columns-head{margin-bottom:14px!important}.comparison-row-labelled{position:relative;margin-bottom:clamp(34px,5vw,58px);padding-top:34px}.comparison-row-label{position:absolute;top:0;left:0;grid-column:1/-1;margin:0;color:#9b7538;font-size:.72rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase}.comparison-board{max-width:490px;justify-self:center}.comparison-board-logo{display:flex;align-items:center;min-height:260px}.comparison-board-logo img{max-height:430px;object-fit:contain}
.single-project-gallery{max-width:1320px!important;padding-top:34px!important}.single-project-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:clamp(16px,2vw,28px)!important;align-items:start}.single-project-item{grid-column:auto!important;box-shadow:0 12px 28px rgba(22,28,39,.08)!important}.single-project-item figcaption{padding:12px 14px;border-bottom:1px solid rgba(193,150,77,.23);color:var(--navy);background:#fffaf2;font-size:.69rem;font-weight:600;letter-spacing:.12em;text-align:center;text-transform:uppercase}.single-project-item img{width:100%;height:auto;object-fit:contain}.project-detail-hero{padding-bottom:38px!important}.project-navigation{padding-top:30px!important}
@media(max-width:980px){.single-project-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}@media(max-width:820px){.comparison-row-labelled{padding-top:30px}.comparison-row-label{position:static;margin-bottom:12px}.comparison-board{max-width:620px}.comparison-board-logo{min-height:auto}}@media(max-width:560px){.signature-project-copy{left:22px;right:22px}.single-project-grid{grid-template-columns:1fr!important}}


/* V17 — Supports imprimés */
.supports-intro {
  padding: clamp(105px, 13vw, 175px) 26px clamp(70px, 8vw, 110px);
  text-align: center;
  background: #f0e3cd;
}

.supports-intro h1 {
  margin: 12px auto 24px;
  max-width: 1180px;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: .98;
}

.supports-intro > p:last-child {
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
}

.supports-projects-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(64px, 7vw, 96px) clamp(24px, 5vw, 72px) clamp(72px, 8vw, 108px);
}

.supports-projects-heading {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.supports-projects-heading h2 {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.supports-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
}

.supports-project-card {
  position: relative;
  min-height: clamp(460px, 48vw, 610px);
  overflow: hidden;
  display: block;
  background: #d2c2ac;
  box-shadow: 0 18px 42px rgba(15, 24, 40, .11);
  transform: translateY(0);
  transition: transform .42s cubic-bezier(.2,.75,.25,1), box-shadow .42s ease;
}

.supports-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: brightness(.91);
  transition: transform .65s cubic-bezier(.2,.75,.25,1), filter .5s ease;
}

.supports-project-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,24,51,0) 48%, rgba(8,24,51,.78) 100%);
}

.supports-project-copy {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 91px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.supports-project-title {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.08;
  text-shadow: 0 2px 14px rgba(0,0,0,.42);
}

.supports-project-subtitle {
  color: rgba(255,255,255,.88);
  font-size: clamp(.76rem, 1vw, .94rem);
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.48);
}

.supports-project-button {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  min-width: 145px;
  padding: 13px 25px 12px;
  border: 1px solid rgba(210,170,95,.95);
  color: #fff;
  background: rgba(8,24,51,.17);
  transform: translateX(-50%);
  text-align: center;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .32s ease, color .32s ease, transform .32s ease, box-shadow .32s ease;
}

.supports-project-card:hover,
.supports-project-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 28px 62px rgba(15, 24, 40, .22);
  outline: none;
}

.supports-project-card:hover img,
.supports-project-card:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1);
}

.supports-project-card:hover .supports-project-button,
.supports-project-card:focus-visible .supports-project-button {
  color: var(--navy);
  background: #cda65f;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.supports-project-placeholder {
  min-height: calc(100vh - 190px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 820px) {
  .supports-projects-grid {
    grid-template-columns: 1fr;
  }

  .supports-project-card {
    min-height: 540px;
  }
}

@media (max-width: 560px) {
  .supports-project-card {
    min-height: 500px;
  }

  .supports-project-copy {
    left: 22px;
    right: 22px;
  }
}


/* V18 — Hero officiel Supports imprimés */
.supports-hero {
  position: relative;
  min-height: clamp(540px, 70vh, 690px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.supports-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supports-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,24,51,.76) 0%, rgba(8,24,51,.38) 42%, rgba(8,24,51,.05) 76%),
    linear-gradient(to top, rgba(8,24,51,.36), transparent 48%);
}

.supports-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 0 clamp(38px, 5vw, 68px) clamp(28px, 7vw, 112px);
  padding-right: 30px;
  color: #fff;
}

.supports-hero-content .eyebrow {
  color: #dab36b;
}

.supports-hero-content h1 {
  margin: 5px 0 17px;
  color: #fff;
  font-size: clamp(3.6rem, 7.2vw, 7.2rem);
  line-height: .92;
}

.supports-hero-content > p:last-child {
  max-width: 740px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.68;
}

@media (max-width: 820px) {
  .supports-hero {
    min-height: 620px;
  }

  .supports-hero-content {
    margin-left: 28px;
  }
}

@media (max-width: 560px) {
  .supports-hero {
    min-height: 590px;
  }
}

.supports-gallery-section{max-width:1320px;margin:0 auto;padding:40px 28px 88px}
.supports-gallery-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:30px;align-items:start}
.supports-gallery-grid-2{max-width:980px;margin:0 auto}
.supports-gallery-item{margin:0;overflow:hidden;background:#fff;box-shadow:0 14px 34px rgba(14,25,42,.09);transition:.36s}
.supports-gallery-item:hover{transform:translateY(-5px);box-shadow:0 24px 48px rgba(14,25,42,.16)}
.supports-gallery-item figcaption{padding:13px 16px;border-bottom:1px solid rgba(193,150,77,.25);color:var(--navy);background:#fffaf3;font-size:.7rem;font-weight:600;letter-spacing:.13em;text-align:center;text-transform:uppercase}
.supports-gallery-item img{display:block;width:100%;height:auto;transition:.55s}
.supports-gallery-item:hover img{transform:scale(1.018)}
@media(max-width:760px){.supports-gallery-grid{grid-template-columns:1fr}}


/* V20 — Galeries premium uniformisées */

/* Aucun cadre blanc artificiel autour des créations */
.comparison-board,
.single-project-item,
.supports-gallery-item {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.comparison-board-logo {
  min-height: 0 !important;
  display: block !important;
}

.comparison-board img,
.single-project-item img,
.supports-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  background: transparent;
  box-shadow: 0 14px 34px rgba(14,25,42,.11);
  cursor: zoom-in;
  transform-origin: center;
  transition:
    transform .42s cubic-bezier(.2,.75,.25,1),
    filter .42s ease,
    box-shadow .42s ease;
}

.comparison-board img:hover,
.single-project-item img:hover,
.supports-gallery-item img:hover,
.lightbox-trigger:focus-visible {
  transform: translateY(-4px) scale(1.012);
  filter: brightness(1.025);
  box-shadow: 0 24px 48px rgba(14,25,42,.18);
  outline: none;
}

.single-project-item figcaption,
.supports-gallery-item figcaption {
  margin: 0 0 10px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #9b7538;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

/* Les respirations se font entre les œuvres, jamais autour d'elles */
.comparison-row {
  gap: clamp(18px, 2.6vw, 32px) !important;
}

.supports-gallery-grid {
  gap: clamp(24px, 3vw, 42px) !important;
}

.single-project-grid {
  gap: clamp(20px, 2.6vw, 34px) !important;
}

/* Lightbox */
body.lightbox-open {
  overflow: hidden;
}

.site-lightbox {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 38px);
  background: rgba(4, 10, 20, .94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.site-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.site-lightbox-dialog {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  grid-template-rows: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
}

.site-lightbox-stage {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: grid;
  place-items: center;
  overscroll-behavior: contain;
  scrollbar-color: rgba(205,166,95,.75) transparent;
}

.site-lightbox-image {
  display: block;
  max-width: min(92vw, 1500px);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(1);
  transform-origin: center;
  transition: transform .18s ease;
  box-shadow: 0 28px 80px rgba(0,0,0,.52);
  user-select: none;
}

.site-lightbox-stage.is-zoomed {
  place-items: start center;
  padding: 38px;
}

.site-lightbox-close,
.site-lightbox-prev,
.site-lightbox-next,
.site-lightbox-toolbar button {
  border: 1px solid rgba(218,179,107,.52);
  color: #fff;
  background: rgba(13,35,71,.68);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.site-lightbox-close:hover,
.site-lightbox-prev:hover,
.site-lightbox-next:hover,
.site-lightbox-toolbar button:hover,
.site-lightbox-close:focus-visible,
.site-lightbox-prev:focus-visible,
.site-lightbox-next:focus-visible,
.site-lightbox-toolbar button:focus-visible {
  color: #0d2347;
  background: #dab36b;
  outline: none;
}

.site-lightbox-close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.site-lightbox-prev,
.site-lightbox-next {
  width: 48px;
  height: 72px;
  font-size: 2.7rem;
  line-height: 1;
}

.site-lightbox-prev {
  grid-column: 1;
  grid-row: 1;
}

.site-lightbox-next {
  grid-column: 3;
  grid-row: 1;
}

.site-lightbox-toolbar {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-lightbox-toolbar button {
  min-width: 44px;
  height: 38px;
  padding: 0 13px;
  font-size: .82rem;
  letter-spacing: .04em;
}

.site-lightbox-caption {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .76rem;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .site-lightbox {
    padding: 10px;
  }

  .site-lightbox-dialog {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 5px;
  }

  .site-lightbox-prev,
  .site-lightbox-next {
    width: 38px;
    height: 58px;
    font-size: 2rem;
  }

  .site-lightbox-image {
    max-width: 88vw;
    max-height: 72vh;
  }

  .site-lightbox-close {
    width: 40px;
    height: 40px;
  }
}


/* V21 — corrections ciblées des galeries */

/* Couverture Hôtel des Dunes volontairement plus petite */
.hotel-cover-item {
  width: min(72%, 520px);
  justify-self: center;
}

/* Les galeries impaires gardent un rythme équilibré */
.supports-gallery-grid-5,
.supports-gallery-grid-7 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.supports-gallery-grid-5 > :last-child,
.supports-gallery-grid-7 > :last-child {
  width: min(72%, 560px);
  justify-self: center;
  grid-column: 1 / -1;
}

/* Les logos Signature recadrés remplissent mieux leur espace */
.comparison-board-logo img {
  width: auto !important;
  max-width: 100%;
  max-height: 440px !important;
  margin-inline: auto;
  object-fit: contain;
}

.single-project-item img[src*="v16-page-14"],
.single-project-item img[src*="v16-page-17"] {
  width: auto !important;
  max-width: 100%;
  max-height: 470px;
  margin-inline: auto;
  object-fit: contain;
}

/* La planche de détails La Broche est désormais présentée en A4 */
.single-project-item img[src*="v16-page-08"] {
  aspect-ratio: 1 / 1.414;
  object-fit: contain;
  background: #f7f2ea;
}

@media (max-width: 760px) {
  .hotel-cover-item,
  .supports-gallery-grid-5 > :last-child,
  .supports-gallery-grid-7 > :last-child {
    width: 100%;
    grid-column: auto;
  }
}


/* V22 — organisation éditoriale finale */

/* SIGNATURE : grandes créations sur la première ligne, petites sur la seconde */
.single-project-gallery-v22 {
  display: flex;
  flex-direction: column;
  gap: clamp(46px, 6vw, 76px);
}

.single-project-grid-large,
.single-project-grid-small {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(24px, 3vw, 44px) !important;
  align-items: start;
}

.single-project-item-large img {
  max-height: 650px;
  object-fit: contain;
}

.single-project-item-small {
  width: min(88%, 520px);
  justify-self: center;
}

.single-project-item-small img {
  max-height: 360px;
  object-fit: contain;
}

/* Les images Construction du concept / Recherches graphiques sont affichées sans grand vide */
.single-project-item-small img[src*="v16-page-09"],
.single-project-item-small img[src*="v16-page-19"] {
  max-height: 330px;
  object-fit: cover;
  object-position: center;
}

/* Hôtel des Dunes */
.hotel-cover-item-v22 {
  width: min(62%, 450px) !important;
  align-self: center;
}

.hotel-open-item {
  align-self: center;
}

.hotel-open-item img {
  margin-top: clamp(38px, 6vw, 86px);
}

/* Magnolias */
.magnolias-gallery-v22,
.domaine-gallery-v22 {
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 5vw, 64px);
}

.magnolias-row,
.domaine-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.magnolias-row-covers .supports-gallery-item img,
.domaine-row-covers .supports-gallery-item img {
  max-height: 760px;
  object-fit: contain;
}

.magnolias-row-third-spread {
  align-items: stretch;
}

.magnolias-empty-space {
  min-height: 120px;
}

.magnolias-row-mockups {
  margin-top: clamp(24px, 4vw, 52px);
}

.domaine-row-final {
  grid-template-columns: minmax(0, 1fr);
}

.domaine-row-final .supports-gallery-item {
  width: min(72%, 820px);
  justify-self: center;
}

@media (max-width: 760px) {
  .single-project-grid-large,
  .single-project-grid-small,
  .magnolias-row,
  .domaine-row {
    grid-template-columns: 1fr !important;
  }

  .single-project-item-small,
  .hotel-cover-item-v22,
  .domaine-row-final .supports-gallery-item {
    width: 100% !important;
  }

  .hotel-open-item img {
    margin-top: 0;
  }

  .magnolias-empty-space {
    display: none;
  }
}


/* V23 — finition La Broche et Diamant Brut */

/* LA BROCHE : première ligne double, puis recherches et logo uniquement à gauche */
.broche-gallery-v23 {
  max-width: 1180px !important;
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 5vw, 60px);
}

.broche-top-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}

.broche-top-row .single-project-item img {
  width: 100% !important;
  max-height: none !important;
  object-fit: contain;
}

.broche-detail-board img {
  aspect-ratio: 1 / 1.414;
  object-fit: contain !important;
}

.broche-left-column {
  width: calc(50% - clamp(12px, 1.5vw, 22px));
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 48px);
}

.broche-research-board img {
  width: 100% !important;
  max-height: 440px;
  object-fit: cover !important;
  object-position: center;
}

.broche-logo-board {
  width: min(78%, 430px);
  align-self: center;
}

.broche-logo-board img {
  width: 100% !important;
  max-height: 260px !important;
  object-fit: contain !important;
}

/* DIAMANT BRUT */
.diamant-gallery-v23 {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 64px);
}

.diamant-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.diamant-row-covers .supports-gallery-item img {
  max-height: 720px;
  object-fit: contain;
}

.diamant-row-brochure .supports-gallery-item img {
  width: 100%;
  object-fit: contain;
}

.diamant-row-relief {
  grid-template-columns: minmax(0, 1fr);
}

.diamant-row-relief .supports-gallery-item {
  width: min(58%, 690px);
  justify-self: center;
}

@media (max-width: 760px) {
  .broche-top-row,
  .diamant-row {
    grid-template-columns: 1fr;
  }

  .broche-left-column,
  .broche-logo-board,
  .diamant-row-relief .supports-gallery-item {
    width: 100%;
  }
}


/* V24 — Chapitre Présence */
.presence-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 720px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.presence-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}

.presence-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,24,51,.76) 0%, rgba(8,24,51,.38) 42%, rgba(8,24,51,.04) 78%),
    linear-gradient(to top, rgba(8,24,51,.36), transparent 48%);
}

.presence-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 0 clamp(40px, 5vw, 72px) clamp(28px, 7vw, 112px);
  padding-right: 30px;
  color: #fff;
}

.presence-hero-content .eyebrow {
  color: #dab36b;
}

.presence-hero-content h1 {
  margin: 6px 0 18px;
  color: #fff;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .92;
}

.presence-hero-content > p:last-child {
  max-width: 780px;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.72;
}

.presence-projects-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(68px, 8vw, 108px) clamp(24px, 5vw, 72px) clamp(82px, 9vw, 124px);
}

.presence-projects-heading {
  max-width: 850px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
}

.presence-projects-heading h2 {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.presence-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.presence-project-card {
  margin: 0;
  background: transparent;
}

.presence-project-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
  text-align: center;
}

.presence-project-title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1.08;
}

.presence-project-subtitle {
  color: #a77d3b;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.presence-project-card img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  cursor: zoom-in;
  box-shadow: 0 16px 38px rgba(14,25,42,.11);
  transition:
    transform .42s cubic-bezier(.2,.75,.25,1),
    filter .42s ease,
    box-shadow .42s ease;
}

.presence-project-card:hover img,
.presence-project-card img:focus-visible {
  transform: translateY(-5px) scale(1.015);
  filter: brightness(1.025);
  box-shadow: 0 26px 54px rgba(14,25,42,.18);
  outline: none;
}

@media (max-width: 820px) {
  .presence-projects-grid {
    grid-template-columns: 1fr;
  }

  .presence-hero {
    min-height: 630px;
  }

  .presence-hero-content {
    margin-left: 28px;
  }
}


/* V25 — zoom natif global */
.native-lightbox .site-lightbox-stage {
  align-items: start;
  justify-items: center;
  padding: 12px;
}

.native-lightbox .site-lightbox-image {
  max-width: none !important;
  max-height: none !important;
  transform: none !important;
  image-rendering: auto;
}

.native-lightbox .site-lightbox-stage.is-zoomed {
  place-items: start center;
  padding: 18px;
}

.native-lightbox .site-lightbox-toolbar button:disabled {
  opacity: .35;
  cursor: default;
  color: rgba(255,255,255,.62);
  background: rgba(13,35,71,.4);
}

.native-lightbox .site-lightbox-toolbar button:disabled:hover {
  color: rgba(255,255,255,.62);
  background: rgba(13,35,71,.4);
}

/* Les images utilisent toujours leur fichier original comme source
   dans la visionneuse, sur toutes les sections actuelles et futures. */
.lightbox-trigger {
  image-rendering: auto;
}


/* V28 — Communication */
.communication-hero,
.numerique-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 720px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.communication-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.communication-hero-overlay,
.numerique-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,24,51,.76) 0%, rgba(8,24,51,.38) 42%, rgba(8,24,51,.03) 78%),
    linear-gradient(to top, rgba(8,24,51,.35), transparent 50%);
}

.communication-hero-content,
.numerique-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 0 clamp(40px, 5vw, 72px) clamp(28px, 7vw, 112px);
  padding-right: 30px;
  color: #fff;
}

.communication-hero-content .eyebrow,
.numerique-hero-content .eyebrow {
  color: #dab36b;
}

.communication-hero-content h1,
.numerique-hero-content h1 {
  margin: 6px 0 18px;
  color: #fff;
  font-size: clamp(3.8rem, 7vw, 7.4rem);
  line-height: .94;
}

.communication-hero-content > p:last-child,
.numerique-hero-content > p:last-child {
  max-width: 820px;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.72;
}

.communication-projects-section,
.numerique-projects-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(68px, 8vw, 108px) clamp(24px, 5vw, 72px) clamp(76px, 8vw, 110px);
}

.communication-projects-heading,
.numerique-projects-heading {
  max-width: 900px;
  margin: 0 auto clamp(36px, 5vw, 58px);
  text-align: center;
}

.communication-projects-heading h2,
.numerique-projects-heading h2 {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.08;
}

.communication-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.communication-project-card {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.communication-project-card figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  min-height: 76px;
  margin-bottom: 14px;
  text-align: center;
}

.communication-project-title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.9vw, 2rem);
}

.communication-project-subtitle {
  color: #a77d3b;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.communication-project-card img {
  display: block;
  width: 100%;
  height: clamp(300px, 30vw, 470px);
  object-fit: contain;
  cursor: zoom-in;
  box-shadow: 0 16px 38px rgba(14,25,42,.11);
  transition: transform .42s cubic-bezier(.2,.75,.25,1), filter .42s ease, box-shadow .42s ease;
}

.communication-project-card:hover img {
  transform: translateY(-5px) scale(1.015);
  filter: brightness(1.025);
  box-shadow: 0 26px 54px rgba(14,25,42,.18);
}

/* Temporary visual structure for the approved Numérique concept.
   It will be replaced by the final generated Hero image. */
.numerique-hero-placeholder {
  background:
    radial-gradient(circle at 72% 25%, rgba(255,255,255,.82), transparent 24%),
    linear-gradient(135deg, #d8c4a5 0%, #b99368 38%, #6f4c35 100%);
}

.numerique-hero-placeholder-scene {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.12), transparent 45%),
    repeating-linear-gradient(90deg, transparent 0 11%, rgba(255,255,255,.06) 11% 11.3%);
}

.digital-screen {
  position: absolute;
  border: 8px solid #d8b879;
  background: #f5efe5;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.digital-screen-desktop {
  width: 38%;
  height: 42%;
  top: 18%;
  right: 12%;
}

.digital-screen-tablet {
  width: 18%;
  height: 28%;
  top: 45%;
  right: 39%;
  transform: rotate(-3deg);
}

.digital-screen-phone {
  width: 7%;
  height: 20%;
  top: 52%;
  right: 29%;
  border-width: 5px;
  border-radius: 12px;
}

.numerique-projects-grid {
  min-height: 90px;
}

@media (max-width: 820px) {
  .communication-projects-grid {
    grid-template-columns: 1fr;
  }
  .communication-project-card img {
    height: auto;
    max-height: 520px;
  }
}


/* V29 — Numérique */
.numerique-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 720px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.numerique-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.numerique-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,24,51,.78), rgba(8,24,51,.35) 46%, transparent 78%);
}
.numerique-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 0 clamp(40px,5vw,72px) clamp(28px,7vw,112px);
  padding-right: 30px;
  color: #fff;
}
.numerique-hero-content .eyebrow { color:#dab36b; }
.numerique-hero-content h1 {
  margin: 6px 0 18px;
  color:#fff;
  font-size:clamp(4rem,8vw,8rem);
  line-height:.92;
}
.numerique-hero-content > p:last-child { max-width:820px; line-height:1.72; }

.digital-portals-section,
.digital-gallery-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(70px,8vw,110px) clamp(24px,5vw,72px);
}
.digital-portals-heading { max-width:900px; margin:0 auto 50px; text-align:center; }
.digital-portals-heading h2 { color:var(--navy); font-size:clamp(2rem,4vw,3.7rem); line-height:1.08; }
.digital-portals-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(24px,3vw,42px);
}
.digital-portal-card { display:block; overflow:hidden; box-shadow:0 18px 40px rgba(14,25,42,.12); }
.digital-portal-card img {
  display:block;
  width:100%;
  aspect-ratio: 3 / 2;
  object-fit:cover;
  transition:transform .45s ease, filter .45s ease;
}
.digital-portal-card:hover img { transform:scale(1.025); filter:brightness(1.03); }

.digital-category-hero {
  padding: clamp(70px,9vw,120px) 28px clamp(50px,6vw,80px);
  text-align:center;
  background:#efe1c7;
}
.digital-category-hero h1 { color:var(--navy); font-size:clamp(3rem,6vw,6rem); margin:10px 0 16px; }
.digital-category-hero > p:last-child { max-width:780px; margin:0 auto; line-height:1.7; }

.digital-gallery-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(28px,4vw,56px);
  align-items:start;
}
.digital-project-card { margin:0; text-align:center; }
.digital-project-card figcaption {
  min-height:72px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:6px;
  margin-bottom:14px;
}
.digital-project-title { font-family:Georgia,serif; font-size:clamp(1.4rem,2vw,2.1rem); color:var(--navy); }
.digital-project-subtitle { color:#a77d3b; text-transform:uppercase; letter-spacing:.13em; font-size:.7rem; font-weight:600; }
.digital-project-card img {
  display:block;
  width:100%;
  background:transparent;
  cursor:zoom-in;
  box-shadow:0 16px 38px rgba(14,25,42,.11);
  transition:transform .4s ease, box-shadow .4s ease;
}
.digital-project-card:hover img { transform:translateY(-4px) scale(1.01); box-shadow:0 24px 50px rgba(14,25,42,.17); }
.digital-project-card.story img { height:620px; object-fit:contain; }
.digital-project-card.portrait img { height:620px; object-fit:contain; }
.digital-project-card.banner img { height:330px; object-fit:contain; }
.digital-project-card.support img { height:520px; object-fit:contain; }

.return-portals-section {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
}

/* Communication : supprimer l'effet de grand cadre blanc */
.communication-project-card img {
  height:auto !important;
  aspect-ratio:auto !important;
  object-fit:contain !important;
  background:transparent !important;
}
.communication-project-card {
  background:transparent !important;
}

/* Lightbox V29 */
.v29-lightbox {
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  place-items:center;
  background:rgba(4,10,20,.94);
  padding:70px 40px 35px;
}
.v29-lightbox.is-open { display:grid; }
.v29-lightbox-stage {
  width:100%;
  height:100%;
  overflow:auto;
  display:grid;
  place-items:center;
}
.v29-lightbox-stage img {
  max-width:92vw;
  max-height:82vh;
  transform-origin:center;
  transition:transform .12s ease-out;
}
.v29-lightbox-close {
  position:fixed;
  top:18px;
  right:24px;
  z-index:2;
  border:0;
  background:transparent;
  color:white;
  font-size:3rem;
  cursor:pointer;
}
.lightbox-open { overflow:hidden; }

@media(max-width:850px){
  .digital-portals-grid,.digital-gallery-grid{grid-template-columns:1fr;}
  .digital-project-card.story img,.digital-project-card.portrait img,.digital-project-card.banner img,.digital-project-card.support img{height:auto;max-height:620px;}
}


/* V30 - galeries numériques définitives */
.social-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-publication img {
  width: 100%;
  height: 650px;
  object-fit: contain;
  background: transparent;
}

.story-phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-phone {
  position: relative;
  width: min(330px, 82vw);
  aspect-ratio: 9 / 19.5;
  padding: 18px 11px 22px;
  border: 7px solid #111;
  border-radius: 44px;
  background: #111;
  box-shadow:
    0 28px 55px rgba(9, 16, 29, .22),
    inset 0 0 0 1px rgba(255,255,255,.14);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform .38s ease, box-shadow .38s ease;
}

.story-phone:hover,
.story-phone:focus-visible {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 36px 70px rgba(9, 16, 29, .29);
  outline: none;
}

.story-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.story-phone-speaker {
  position: absolute;
  z-index: 3;
  top: 9px;
  left: 50%;
  width: 92px;
  height: 21px;
  transform: translateX(-50%);
  border-radius: 0 0 15px 15px;
  background: #111;
}

.story-phone-home {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 8px;
  width: 82px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
}

.banner-gallery-grid .digital-project-card img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: transparent;
}

.supports-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.supports-gallery-grid .digital-project-card img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  background: transparent;
}

/* La lightbox doit également reconnaître les images placées dans les smartphones. */
.story-phone img {
  cursor: zoom-in;
}

@media (max-width: 900px) {
  .social-gallery-grid,
  .supports-gallery-grid {
    grid-template-columns: 1fr;
  }

  .social-publication img,
  .supports-gallery-grid .digital-project-card img,
  .banner-gallery-grid .digital-project-card img {
    height: auto;
    max-height: 650px;
  }
}


/* V31 — Réseaux sociaux : six smartphones identiques */
.social-gallery-v31 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 78px) clamp(24px, 4vw, 54px);
  align-items: start;
}

.social-phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-phone-card figcaption {
  width: 100%;
  min-height: 74px;
}

.social-phone-card img {
  display: block;
  width: min(100%, 390px);
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: zoom-in;
  transition: transform .4s ease, filter .4s ease;
}

.social-phone-card:hover img {
  transform: translateY(-6px) scale(1.012);
  filter: drop-shadow(0 24px 28px rgba(12, 25, 43, .18));
}

/* V31 — Bannières web : une bannière par ligne */
.banner-gallery-v31 {
  display: flex;
  flex-direction: column;
  gap: clamp(58px, 7vw, 94px);
  width: 100%;
}

.banner-wide {
  width: 100%;
  margin: 0;
}

.banner-wide figcaption {
  min-height: 0;
  margin-bottom: 18px;
  text-align: center;
}

.banner-wide img {
  display: block;
  width: min(100%, 1180px);
  height: auto !important;
  max-height: none !important;
  margin: 0 auto;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: 0 18px 42px rgba(14, 25, 42, .12);
  cursor: zoom-in;
  transition: transform .4s ease, box-shadow .4s ease;
}

.banner-wide:hover img {
  transform: translateY(-4px) scale(1.006);
  box-shadow: 0 26px 58px rgba(14, 25, 42, .18);
}

@media (max-width: 980px) {
  .social-gallery-v31 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .social-gallery-v31 {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   V32 — Création de sites internet
   ========================================================= */
.website-hero {
  position: relative;
  min-height: clamp(580px, 76vh, 790px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.website-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.website-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,20,42,.82) 0%, rgba(7,20,42,.52) 42%, rgba(7,20,42,.05) 78%),
    linear-gradient(0deg, rgba(7,20,42,.42), transparent 50%);
}
.website-hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100% - 56px));
  margin: 0 0 clamp(42px,6vw,82px) clamp(28px,7vw,112px);
  color: #fff;
}
.website-hero-content .eyebrow { color: #d9ae63; }
.website-hero-content h1 {
  margin: 8px 0 20px;
  color: #fff;
  font-size: clamp(3.5rem,7vw,7rem);
  line-height: .94;
}
.website-hero-content > p:last-child {
  max-width: 790px;
  font-size: clamp(1rem,1.4vw,1.18rem);
  line-height: 1.75;
}

.website-services {
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(72px,9vw,128px) clamp(24px,5vw,72px);
}
.website-service {
  display: grid;
  grid-template-columns: minmax(0,1.32fr) minmax(300px,.68fr);
  gap: clamp(34px,6vw,88px);
  align-items: center;
  margin-bottom: clamp(76px,10vw,145px);
}
.website-service-reverse .website-service-image { order: 2; }
.website-service-reverse .website-service-copy { order: 1; }

.website-service-image {
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(12,25,43,.15);
  background: transparent;
}
.website-service-image img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: transform .55s ease, filter .55s ease;
}
.website-service-image:hover img {
  transform: scale(1.018);
  filter: brightness(1.025);
}
.website-service-copy h2 {
  margin: 8px 0 22px;
  color: var(--navy);
  font-size: clamp(2.25rem,4vw,4.35rem);
  line-height: 1.02;
}
.website-service-copy > p:last-child {
  font-size: clamp(1rem,1.25vw,1.15rem);
  line-height: 1.82;
}

.website-contact-cta {
  max-width: 1000px;
  margin: 0 auto clamp(70px,9vw,120px);
  padding: clamp(55px,7vw,88px) clamp(28px,6vw,80px);
  text-align: center;
  background: #efe1c7;
}
.website-contact-cta h2 {
  margin: 10px auto 30px;
  color: var(--navy);
  font-size: clamp(2rem,4vw,3.7rem);
  line-height: 1.08;
}

/* Supports numériques : aucun cadre blanc artificiel */
.supports-gallery-grid .digital-project-card,
.supports-gallery-grid .digital-project-card img {
  background: transparent !important;
}
.supports-gallery-grid .digital-project-card img {
  height: auto !important;
  max-height: 600px;
  object-fit: contain !important;
  box-shadow: 0 16px 38px rgba(14,25,42,.10);
}

/* La dernière carte Professionnels occupe naturellement sa place :
   aucune ligne "Sur mesure" vide. */
.professional-portals-grid {
  align-items: stretch;
}

@media (max-width: 900px) {
  .website-service,
  .website-service-reverse {
    grid-template-columns: 1fr;
  }
  .website-service-reverse .website-service-image,
  .website-service-reverse .website-service-copy {
    order: initial;
  }
  .website-hero-content {
    margin-left: 28px;
  }
}


/* V33 — Page provisoire L'Expérience */
.experience-placeholder {
  min-height: calc(100vh - 150px);
  display: grid;
  place-items: center;
  padding: 120px 28px 90px;
  background:
    radial-gradient(circle at 50% 25%, rgba(219,184,119,.14), transparent 34%),
    #fbf7ef;
}
.experience-placeholder-inner {
  width: min(920px, 100%);
  text-align: center;
}
.experience-placeholder-inner h1 {
  margin: 12px auto 28px;
  max-width: 880px;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .98;
}
.experience-placeholder-inner > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}


/* V34 — Hero d'accueil Professionnels & Célébrations */
.universe-home-hero {
  position: relative;
  min-height: clamp(580px, 76vh, 800px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.universe-home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.universe-home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,21,43,.76) 0%, rgba(8,21,43,.40) 42%, rgba(8,21,43,.03) 76%),
    linear-gradient(0deg, rgba(8,21,43,.42), transparent 52%);
}
.universe-home-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 56px));
  margin: 0 0 clamp(44px,6vw,82px) clamp(28px,7vw,112px);
  color: white;
}
.universe-home-hero-content .eyebrow { color: #ddb66e; }
.universe-home-hero-content h1 {
  margin: 8px 0 20px;
  color: white;
  font-size: clamp(3rem,6vw,6.4rem);
  line-height: .98;
  max-width: 900px;
}
.universe-home-hero-content > p:last-child {
  max-width: 780px;
  font-size: clamp(1rem,1.4vw,1.18rem);
  line-height: 1.75;
}
.universe-home-hero-celebrations .universe-home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(67,40,32,.66) 0%, rgba(67,40,32,.28) 44%, rgba(67,40,32,.02) 76%),
    linear-gradient(0deg, rgba(40,22,18,.36), transparent 52%);
}
.project-return-double {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.professional-return-section,
.project-return-section {
  padding-top: 18px;
  padding-bottom: clamp(52px,7vw,90px);
}
@media (max-width: 760px) {
  .universe-home-hero { min-height: 680px; }
  .universe-home-hero-content {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}


/* =========================================================
   V35 — Stabilisation des grands univers
   ========================================================= */

/* Bandeau beige sous les Hero : beaucoup plus compact */
body:has(.universe-home-hero-professionnels) .page-hero,
body:has(.universe-home-hero-celebrations) .page-hero {
  min-height: 0 !important;
  padding-top: clamp(30px, 4vw, 54px) !important;
  padding-bottom: clamp(30px, 4vw, 54px) !important;
}

body:has(.universe-home-hero-professionnels) .page-hero > div,
body:has(.universe-home-hero-celebrations) .page-hero > div {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body:has(.universe-home-hero-professionnels) .page-hero h1,
body:has(.universe-home-hero-celebrations) .page-hero h1 {
  margin-top: 8px;
  margin-bottom: 12px;
}

/* Une seule zone de navigation au bas des projets */
.project-navigation {
  display: none !important;
}

.project-return-section,
.professional-return-section {
  margin-top: 0 !important;
}

.project-return-double {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Conclusions des deux grands parcours */
.universe-conclusion {
  padding: clamp(66px, 8vw, 110px) clamp(24px, 6vw, 72px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,.55), transparent 34%),
    #efe1c7;
}

.universe-conclusion-celebrations {
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,.50), transparent 34%),
    #f1e1d2;
}

.universe-conclusion-inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.universe-conclusion h2 {
  margin: 10px auto 22px;
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  line-height: 1.04;
}

.universe-conclusion-inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.78;
}

/* Le bloc de conclusion propre à Création de sites n'existe plus */
.website-contact-cta {
  display: none !important;
}

@media (max-width: 760px) {
  body:has(.universe-home-hero-professionnels) .page-hero,
  body:has(.universe-home-hero-celebrations) .page-hero {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
}


/* =========================================================
   V36 — Page L'Expérience + derniers ajustements validés
   ========================================================= */

/* Professionnels : zone des savoir-faire moins haute et mieux centrée */
.professional-portals-section {
  padding-top: clamp(52px, 6vw, 82px) !important;
  padding-bottom: clamp(58px, 6.5vw, 88px) !important;
}

.professional-portals-heading {
  margin-bottom: clamp(32px, 4vw, 52px) !important;
}

/* Bloc final Professionnels : même design, plus compact */
.universe-conclusion {
  padding-top: clamp(46px, 5vw, 72px) !important;
  padding-bottom: clamp(46px, 5vw, 72px) !important;
}

.universe-conclusion h2 {
  margin-top: 8px !important;
  margin-bottom: 16px !important;
}

.universe-conclusion-inner > p:not(.eyebrow) {
  margin-bottom: 24px !important;
}

/* -------------------- HERO EXPÉRIENCE -------------------- */
.experience-page {
  background: #fbf7ef;
}

.experience-hero {
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.experience-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.experience-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 28, 61, .64), rgba(8, 28, 61, .22) 47%, rgba(8, 28, 61, .08)),
    linear-gradient(0deg, rgba(13, 25, 46, .28), transparent 45%);
}

.experience-hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

.experience-hero-content .eyebrow {
  color: #e0b85a;
  letter-spacing: .28em;
}

.experience-hero-content h1 {
  max-width: 900px;
  margin: 12px 0 22px;
  font-size: clamp(3.4rem, 7.2vw, 7.7rem);
  line-height: .9;
  font-weight: 500;
}

.experience-hero-content h1 span {
  display: inline-block;
  margin-top: 18px;
  font-size: .38em;
  letter-spacing: .04em;
  line-height: 1.05;
}

.experience-hero-content > p:last-child {
  max-width: 690px;
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
  line-height: 1.7;
}

/* -------------------- INTRODUCTION -------------------- */
.experience-intro {
  padding: clamp(74px, 9vw, 132px) 24px;
  background: #fbf7ef;
  text-align: center;
}

.experience-intro-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.experience-intro h2 {
  margin: 12px auto 24px;
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.06;
  font-weight: 500;
}

.experience-intro-inner > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.85;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

/* -------------------- ÉTAPES -------------------- */
.experience-steps {
  padding: 0 24px clamp(82px, 10vw, 150px);
  background: #fbf7ef;
}

.experience-step {
  width: min(1180px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(183, 133, 45, .28);
}

.experience-step-text-only {
  display: grid;
  grid-template-columns: 120px minmax(0, 760px);
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 7vw, 96px) 0;
}

.experience-step-with-image {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
  padding: clamp(76px, 9vw, 126px) 0;
}

.experience-step-number {
  color: #b8862c;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: .03em;
}

.experience-step-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 500;
}

.experience-step-copy p {
  margin: 0;
  max-width: 680px;
  line-height: 1.88;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.experience-step-with-image .experience-step-number {
  margin-bottom: 16px;
}

.experience-step-media {
  position: relative;
  padding: clamp(10px, 1vw, 14px);
  background: #fffaf1;
  border: 1px solid rgba(183, 133, 45, .58);
  box-shadow: 0 24px 54px rgba(49, 36, 18, .12);
}

.experience-step-media::before,
.experience-step-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.experience-step-media::before {
  inset: 6px;
  border: 1px solid rgba(183, 133, 45, .22);
}

.experience-step-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.experience-step.image-right {
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
}

/* -------------------- CONCLUSION -------------------- */
.experience-conclusion {
  padding: clamp(72px, 8vw, 112px) 24px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.62), transparent 35%),
    #efe1c7;
  text-align: center;
}

.experience-conclusion-inner {
  width: min(880px, 100%);
  margin: 0 auto;
}

.experience-conclusion-ornament {
  display: block;
  width: 110px;
  height: 1px;
  margin: 0 auto 28px;
  background: #b8862c;
  position: relative;
}

.experience-conclusion-ornament::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  background: #b8862c;
  transform: translate(-50%, -50%) rotate(45deg);
}

.experience-conclusion h2 {
  margin: 10px auto 20px;
  color: var(--navy);
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  line-height: 1.04;
  font-weight: 500;
}

.experience-conclusion-inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.8;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

@media (max-width: 900px) {
  .experience-step-with-image,
  .experience-step.image-right {
    grid-template-columns: 1fr;
  }

  .experience-step.image-right .experience-step-copy {
    order: 2;
  }

  .experience-step.image-right .experience-step-media {
    order: 1;
  }

  .experience-step-text-only {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 26px;
  }
}

@media (max-width: 620px) {
  .experience-hero {
    min-height: 620px;
  }

  .experience-hero-content {
    width: min(100% - 32px, 1180px);
    padding-top: 90px;
  }

  .experience-hero-content h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .experience-step-text-only {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .experience-step-text-only .experience-step-number {
    font-size: 2.7rem;
  }

  .experience-step-with-image {
    gap: 30px;
  }
}


/* =========================================================
   V37 — Rythme éditorial + page La Maison
   ========================================================= */

/* L'Expérience : Hero inchangé, introduction et chapitres compactés */
.experience-intro {
  padding-top: clamp(48px, 5.8vw, 82px) !important;
  padding-bottom: clamp(50px, 6vw, 86px) !important;
}

.experience-step-text-only {
  padding-top: clamp(48px, 5.9vw, 82px) !important;
  padding-bottom: clamp(48px, 5.9vw, 82px) !important;
}

.experience-step-with-image {
  padding-top: clamp(64px, 7.7vw, 108px) !important;
  padding-bottom: clamp(64px, 7.7vw, 108px) !important;
}

/* -------------------- HERO LA MAISON -------------------- */
.maison-page {
  background: #fbf7ef;
}

.maison-hero .experience-hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 24, 52, .62), rgba(6, 24, 52, .22) 48%, rgba(6, 24, 52, .06)),
    linear-gradient(0deg, rgba(11, 24, 45, .22), transparent 48%);
}

.maison-hero > img {
  object-position: center 55%;
}

.maison-hero-content h1 {
  max-width: 950px;
  margin-bottom: 24px;
}

/* -------------------- INTRO LA MAISON -------------------- */
.maison-intro {
  padding: clamp(48px, 5.8vw, 82px) 24px clamp(50px, 6vw, 86px);
  background: #fbf7ef;
  text-align: center;
}

.maison-intro-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.maison-intro h2 {
  margin: 12px auto 22px;
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.06;
  font-weight: 500;
}

.maison-intro-inner > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.8;
}

/* -------------------- SECTIONS ÉDITORIALES -------------------- */
.maison-editorial {
  padding: clamp(68px, 8vw, 112px) 24px;
  border-top: 1px solid rgba(183, 133, 45, .24);
}

.maison-origin {
  background: #fdf9f2;
}

.maison-essential {
  background: #f3eddf;
}

.maison-editorial-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.maison-section-heading {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  margin-bottom: clamp(38px, 5vw, 68px);
}

.maison-section-number {
  color: #b8862c;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
}

.maison-section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.7rem, 7vw, 7.4rem);
  font-weight: 500;
  line-height: .95;
}

.maison-gold-divider {
  display: flex;
  align-items: center;
  width: min(500px, 90%);
  margin-top: 28px;
}

.maison-gold-divider::before,
.maison-gold-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #b8862c;
}

.maison-gold-divider i {
  width: 11px;
  height: 11px;
  margin: 0 20px;
  background: #b8862c;
  transform: rotate(45deg);
}

.maison-origin-copy {
  max-width: 800px;
  margin-left: 102px;
}

.maison-origin-copy p {
  margin: 0 0 clamp(34px, 4vw, 58px);
  color: #112c57;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.68;
}

.maison-origin-copy .maison-lead {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.maison-origin-copy p:last-child {
  margin-bottom: 0;
}

.maison-essential-intro {
  max-width: 620px;
  margin: 0 0 clamp(34px, 4vw, 56px) 102px;
  color: #112c57;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.55vw, 1.38rem);
  line-height: 1.65;
}

.maison-values {
  display: grid;
  gap: 0;
  max-width: 860px;
  margin-left: 102px;
}

.maison-value {
  display: grid;
  grid-template-columns: 2px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
}

.maison-value > span {
  display: block;
  width: 1px;
  min-height: 56px;
  background: #b8862c;
}

.maison-value h3 {
  margin: 0 0 7px;
  color: #112c57;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .025em;
}

.maison-value p {
  margin: 0;
  color: #40516a;
  font-family: var(--font-display);
  font-size: clamp(.98rem, 1.2vw, 1.1rem);
  font-style: italic;
  line-height: 1.5;
}

/* -------------------- TRANSITION -------------------- */
.maison-transition {
  padding: clamp(54px, 6vw, 82px) 24px;
  background: #fbf7ef;
  text-align: center;
}

.maison-transition-inner {
  width: min(790px, 100%);
  margin: 0 auto;
}

.maison-transition p {
  margin: 0;
  color: #112c57;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.55;
}

/* -------------------- PASSERELLES -------------------- */
.maison-pathways {
  padding: clamp(62px, 7vw, 96px) 24px;
  background: #efe1c7;
}

.maison-pathways-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.maison-pathway-card {
  min-height: 360px;
  padding: clamp(34px, 3.8vw, 54px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(183, 133, 45, .52);
  background: rgba(255, 250, 241, .64);
}

.maison-pathway-contact {
  background: #102b55;
  color: #fff;
}

.maison-pathway-card h2 {
  margin: 12px 0 18px;
  color: #102b55;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 500;
  line-height: 1.08;
}

.maison-pathway-contact h2,
.maison-pathway-contact > p:not(.eyebrow) {
  color: #fff;
}

.maison-pathway-card > p:not(.eyebrow) {
  margin: 0 0 32px;
  line-height: 1.7;
}

.maison-pathway-card a {
  margin-top: auto;
  align-self: flex-start;
  color: #102b55;
  border-bottom: 1px solid #b8862c;
  padding-bottom: 5px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.maison-pathway-contact a {
  color: #fff;
}

@media (max-width: 900px) {
  .maison-pathways-inner {
    grid-template-columns: 1fr;
  }

  .maison-pathway-card {
    min-height: auto;
  }

  .maison-origin-copy,
  .maison-essential-intro,
  .maison-values {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .maison-section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .maison-section-heading h2 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .maison-gold-divider {
    width: 100%;
  }

  .maison-origin-copy p br,
  .maison-transition p br {
    display: none;
  }
}

/* =========================================================
   V38 — FAQ + raffinements L'Expérience et La Maison
   ========================================================= */
.experience-intro{padding-top:clamp(34px,4.2vw,62px)!important;padding-bottom:clamp(36px,4.5vw,66px)!important}
.experience-step-text-only{padding-top:clamp(42px,5.1vw,72px)!important;padding-bottom:clamp(42px,5.1vw,72px)!important}
.experience-step-with-image{padding-top:clamp(56px,6.8vw,94px)!important;padding-bottom:clamp(56px,6.8vw,94px)!important}
.experience-conclusion{padding-top:clamp(48px,5.5vw,76px)!important;padding-bottom:clamp(44px,5vw,68px)!important}

.maison-pathways{padding:clamp(52px,6vw,82px) 24px!important;background:#f4ecdd!important}
.maison-pathways-inner{width:min(1040px,100%)!important;gap:clamp(16px,2vw,24px)!important}
.maison-pathway-card{aspect-ratio:1/1;min-height:0!important;padding:clamp(28px,3vw,42px)!important;justify-content:flex-start;background:rgba(255,252,246,.78)!important;border:1px solid rgba(183,133,45,.5)!important;color:#102b55!important}
.maison-pathway-card>p:not(.eyebrow){margin:18px 0 30px!important;color:#102b55!important;font-family:var(--font-display);font-size:clamp(1.05rem,1.45vw,1.28rem);line-height:1.62}
.maison-pathway-card a{margin-top:auto!important;color:#102b55!important}

.faq-page{background:#fbf7ef}
.faq-hero>img{object-position:center}
.faq-hero-overlay{background:linear-gradient(90deg,rgba(7,25,54,.64),rgba(7,25,54,.22) 48%,rgba(7,25,54,.05)),linear-gradient(0deg,rgba(8,24,48,.22),transparent 48%)}
.faq-hero-content h1{margin-bottom:22px;font-size:clamp(4rem,9vw,9rem)}
.faq-intro{padding:clamp(54px,6.2vw,90px) 24px clamp(48px,5.7vw,82px);text-align:center;background:#fbf7ef}
.faq-intro-inner{width:min(920px,100%);margin:0 auto}
.faq-intro h2{margin:10px auto 20px;color:var(--navy);font-size:clamp(2.5rem,5vw,4.7rem);font-weight:500;line-height:1.07}
.faq-intro-inner>p{max-width:720px;margin:8px auto 0;line-height:1.78;font-size:clamp(1rem,1.2vw,1.12rem)}

.faq-search-section{padding:0 24px clamp(48px,5vw,72px);background:#fbf7ef}
.faq-search-inner{width:min(780px,100%);margin:0 auto}
.faq-search-inner>label{display:block;margin-bottom:14px;color:var(--navy);font-family:var(--font-display);font-size:clamp(1.3rem,2vw,1.75rem);text-align:center}
.faq-search-field{display:grid;grid-template-columns:42px minmax(0,1fr);align-items:center;min-height:62px;border:1px solid rgba(183,133,45,.58);background:#fffdfa}
.faq-search-field>span{color:#b8862c;font-size:1.45rem;text-align:center}
.faq-search-field input{width:100%;height:60px;border:0;outline:0;background:transparent;color:#102b55;font:inherit;font-size:1rem}
.faq-search-field input::placeholder{color:#7c8490}
.faq-count{min-height:24px;margin:12px 0 0;color:#687283;text-align:center;font-size:.9rem}

.faq-content{padding:0 24px clamp(72px,8vw,112px);background:#fbf7ef}
.faq-content-inner{width:min(1000px,100%);margin:0 auto}
.faq-group{margin-bottom:clamp(52px,6vw,82px)}
.faq-group>h2{margin:0 0 18px;color:#b8862c;font-family:var(--font-display);font-size:clamp(1.3rem,2vw,1.8rem);font-weight:500}
.faq-item{border-top:1px solid rgba(183,133,45,.38)}
.faq-item:last-child{border-bottom:1px solid rgba(183,133,45,.38)}
.faq-question{width:100%;min-height:86px;display:flex;align-items:center;justify-content:space-between;gap:24px;padding:20px 2px;border:0;background:transparent;color:#102b55;cursor:pointer;text-align:left;font-family:var(--font-display);font-size:clamp(1.1rem,1.7vw,1.45rem)}
.faq-question i{position:relative;flex:0 0 22px;width:22px;height:22px}
.faq-question i::before,.faq-question i::after{content:"";position:absolute;left:50%;top:50%;width:18px;height:1px;background:#b8862c;transform:translate(-50%,-50%);transition:transform .25s ease,opacity .25s ease}
.faq-question i::after{transform:translate(-50%,-50%) rotate(90deg)}
.faq-item.is-open .faq-question i::after{opacity:0;transform:translate(-50%,-50%) rotate(0)}
.faq-answer{display:grid;grid-template-rows:0fr;transition:grid-template-rows .35s ease}
.faq-answer>div{overflow:hidden;padding:0 42px 0 2px}
.faq-item.is-open .faq-answer{grid-template-rows:1fr}
.faq-item.is-open .faq-answer>div{padding-bottom:28px}
.faq-answer p,.faq-answer li{line-height:1.78}
.faq-answer p{margin:0 0 10px}
.faq-answer ul{margin:10px 0 14px;padding-left:20px}
.faq-answer a,.faq-empty a{color:#102b55;border-bottom:1px solid #b8862c;padding-bottom:4px}
.faq-item[hidden],.faq-group[hidden]{display:none!important}
.faq-empty{padding:clamp(54px,6vw,82px) 24px;border:1px solid rgba(183,133,45,.48);background:#f4ecdd;text-align:center}
.faq-empty h2{margin:0 0 16px;color:#102b55;font-size:clamp(2rem,4vw,3.4rem);font-weight:500}
.faq-empty p{margin:0 0 22px}

@media(max-width:900px){.maison-pathways-inner{grid-template-columns:repeat(3,minmax(0,1fr))!important}}
@media(max-width:760px){
.maison-pathways-inner{grid-template-columns:1fr!important}
.maison-pathway-card{aspect-ratio:auto;min-height:250px!important}
.faq-question{min-height:74px}
}


/* =========================================================
   V39 — Pages juridiques, cookies et mesure d’audience
   ========================================================= */
.legal-page{background:#fbf7ef;color:#28384f}.legal-hero{padding:clamp(150px,16vw,230px) 24px clamp(70px,8vw,116px);background:linear-gradient(135deg,#102b55 0%,#18365e 58%,#a3772b 160%);color:#fff}.legal-hero-inner{width:min(1120px,100%);margin:auto}.legal-hero .eyebrow{color:#d5b46f}.legal-hero h1{max-width:900px;margin:12px 0 24px;font-size:clamp(3.2rem,7.6vw,7rem);font-weight:500;line-height:1}.legal-hero-inner>p:last-child{max-width:760px;font-size:clamp(1.05rem,1.5vw,1.3rem);line-height:1.75;color:rgba(255,255,255,.86)}
.legal-content{padding:clamp(62px,8vw,118px) 24px}.legal-layout{display:grid;grid-template-columns:270px minmax(0,780px);gap:clamp(46px,7vw,110px);width:min(1180px,100%);margin:auto;align-items:start}.legal-toc{position:sticky;top:110px;padding:28px;border:1px solid rgba(183,133,45,.4);background:#f5eddf}.legal-toc>p{margin:0 0 16px;color:#b07d25;font-family:var(--font-display);font-size:1.18rem}.legal-toc a{display:block;padding:8px 0;color:#233b5e;font-size:.9rem;line-height:1.35;border-bottom:1px solid rgba(183,133,45,.16)}.legal-toc a:last-child{border:0}.legal-article section{padding:0 0 clamp(44px,5vw,70px);margin:0 0 clamp(44px,5vw,70px);border-bottom:1px solid rgba(183,133,45,.28);scroll-margin-top:120px}.legal-article section:last-of-type{border-bottom:0}.legal-number{margin:0 0 6px;color:#b07d25;text-transform:uppercase;letter-spacing:.16em;font-size:.74rem}.legal-article h2{margin:0 0 22px;color:#102b55;font-size:clamp(2rem,3.5vw,3.25rem);font-weight:500;line-height:1.1}.legal-article h3{margin:30px 0 12px;color:#102b55;font-size:1.38rem;font-weight:500}.legal-article p,.legal-article section>div{font-size:1rem;line-height:1.85}.legal-note{padding:26px 30px;border-left:3px solid #b8862c;background:#f4ecdd;line-height:1.65}.legal-action{padding:13px 22px;border:1px solid #b8862c;background:transparent;color:#102b55;cursor:pointer;text-transform:uppercase;letter-spacing:.12em;font-size:.75rem}
.footer-links button{border:0;background:transparent;padding:0;color:inherit;font:inherit;cursor:pointer;text-align:left}.cookie-notice{position:fixed;z-index:10000;left:24px;right:24px;bottom:24px;display:flex;align-items:center;justify-content:space-between;gap:24px;max-width:1060px;margin:auto;padding:20px 22px;background:#102b55;color:#fff;box-shadow:0 18px 54px rgba(0,0,0,.28);border:1px solid rgba(213,180,111,.55)}.cookie-notice p{margin:0;line-height:1.55}.cookie-notice a{color:#e7c87f;text-decoration:underline}.cookie-notice>div{display:flex;gap:10px}.cookie-notice button,.cookie-actions button{padding:11px 16px;border:1px solid #d5b46f;background:transparent;color:#fff;cursor:pointer}.cookie-notice button:last-child{background:#d5b46f;color:#102b55}.cookie-modal[hidden]{display:none}.cookie-modal{position:fixed;z-index:11000;inset:0}.cookie-backdrop{position:absolute;inset:0;background:rgba(5,17,34,.72);backdrop-filter:blur(5px)}.cookie-dialog{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:min(590px,calc(100% - 32px));max-height:calc(100vh - 40px);overflow:auto;padding:clamp(28px,5vw,52px);background:#fbf7ef;color:#233b5e;box-shadow:0 28px 90px rgba(0,0,0,.35)}.cookie-dialog h2{margin:8px 0 18px;color:#102b55;font-size:clamp(2rem,4vw,3.4rem);font-weight:500}.cookie-close{position:absolute;right:18px;top:12px;border:0;background:transparent;color:#102b55;font-size:2rem;cursor:pointer}.cookie-choice{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:20px 0;border-top:1px solid rgba(183,133,45,.35)}.cookie-choice div{display:grid;gap:4px}.cookie-choice span{font-size:.85rem;color:#6d7580}.cookie-choice input{width:22px;height:22px;accent-color:#b8862c}.cookie-actions{display:flex;justify-content:flex-end;gap:10px;margin-top:24px}.cookie-actions .button-secondary{color:#102b55}.cookie-actions .button-primary{background:#102b55;border-color:#102b55}.cookie-more{text-align:right}.cookie-more a{color:#102b55;border-bottom:1px solid #b8862c}.cookie-modal-open{overflow:hidden}
@media(max-width:850px){.legal-layout{grid-template-columns:1fr}.legal-toc{position:static}.cookie-notice{align-items:flex-start;flex-direction:column}.cookie-notice>div{width:100%}.cookie-notice button{flex:1}}


/* =========================================================
   V41 — Contact, Offres & Tarifs et stabilisation FAQ
   ========================================================= */
.contact-page,.pricing-page{background:#fbf7ef;color:#28384f}
.contact-hero>img,.pricing-hero>img{object-position:center}
.contact-hero-overlay{background:linear-gradient(90deg,rgba(7,25,54,.72),rgba(7,25,54,.28) 52%,rgba(7,25,54,.08)),linear-gradient(0deg,rgba(8,24,48,.22),transparent 48%)}
.pricing-hero-overlay{background:linear-gradient(90deg,rgba(7,25,54,.68),rgba(7,25,54,.24) 48%,rgba(7,25,54,.06)),linear-gradient(0deg,rgba(8,24,48,.18),transparent 48%)}
.contact-hero-content h1,.pricing-hero-content h1{font-size:clamp(3.8rem,8vw,8rem);line-height:1.02;margin-bottom:22px}
.contact-intro,.pricing-intro{padding:clamp(62px,7vw,100px) 24px;text-align:center}
.contact-intro-inner,.pricing-intro-inner{width:min(900px,100%);margin:auto}
.contact-intro h2,.pricing-intro h2{margin:12px auto 22px;color:#102b55;font-size:clamp(2.7rem,5vw,4.8rem);font-weight:500;line-height:1.08}
.contact-intro p,.pricing-intro p{max-width:760px;margin:0 auto;line-height:1.82}
.pricing-signature{margin-top:28px!important;color:#a77625;font-family:var(--font-display);font-style:italic;font-size:clamp(1.05rem,1.5vw,1.25rem)}
.contact-form-section{padding:0 24px clamp(80px,9vw,130px)}
.contact-form-shell{width:min(900px,100%);margin:auto;padding:clamp(34px,5vw,64px);border:1px solid rgba(183,133,45,.48);background:#fffdfa;box-shadow:0 22px 60px rgba(27,39,56,.08)}
.contact-form{max-width:none;margin:0;padding:0;background:transparent;box-shadow:none}
.contact-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.contact-form label{display:grid;gap:10px;margin:0 0 23px;color:#102b55;font-family:var(--font-display);font-size:1.05rem}
.contact-form label>span[aria-hidden="true"]{display:inline;color:#b8862c}
.contact-form label small{font-family:Arial,sans-serif;font-size:.76rem;font-weight:400;color:#77808c}
.contact-form input,.contact-form textarea,.contact-form select{width:100%;border:1px solid rgba(183,133,45,.42);background:#fbf7ef;color:#213753;padding:15px 16px;font:inherit;font-family:Arial,sans-serif;transition:border-color .2s ease,box-shadow .2s ease}
.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus{outline:0;border-color:#b8862c;box-shadow:0 0 0 3px rgba(184,134,44,.12)}
.contact-form textarea{min-height:210px}
.contact-consent{grid-template-columns:22px minmax(0,1fr)!important;align-items:start;gap:13px!important;font-family:Arial,sans-serif!important;font-size:.9rem!important;line-height:1.55;color:#526074!important}
.contact-consent input{width:19px;height:19px;margin-top:2px;padding:0;accent-color:#b8862c}
.contact-consent a{color:#102b55;border-bottom:1px solid #b8862c}
.contact-submit{display:block;margin:32px auto 0}
.contact-privacy-note{max-width:650px;margin:18px auto 0;text-align:center;color:#77808c;font-size:.82rem;line-height:1.55}

.pricing-universe{padding:clamp(72px,8vw,118px) 24px}
.pricing-professionals{background:#f4ecdd}
.pricing-celebrations{background:#fbf7ef}
.pricing-container{width:min(1220px,100%);margin:auto}
.pricing-heading{max-width:820px;margin:0 auto clamp(42px,5vw,70px);text-align:center}
.pricing-heading h2{margin:12px 0 0;color:#102b55;font-size:clamp(2.5rem,4.8vw,4.6rem);font-weight:500;line-height:1.08}
.pricing-grid{display:grid;gap:20px;align-items:stretch}
.pricing-grid-four{grid-template-columns:repeat(4,minmax(0,1fr))}
.pricing-grid-five{grid-template-columns:repeat(5,minmax(0,1fr))}
.pricing-card{display:flex;flex-direction:column;min-height:430px;padding:clamp(26px,2.7vw,38px);border:1px solid rgba(183,133,45,.48);background:rgba(255,253,249,.82)}
.pricing-index{color:#b8862c;font-size:.72rem;letter-spacing:.16em}
.pricing-card h3{margin:22px 0 18px;color:#102b55;font-size:clamp(1.55rem,2.1vw,2.25rem);font-weight:500;line-height:1.12}
.pricing-card>p{margin:0 0 28px;line-height:1.72;color:#4a586c}
.pricing-price{margin-top:auto;padding-top:24px;border-top:1px solid rgba(183,133,45,.3)}
.pricing-price small{display:block;margin-bottom:6px;color:#7a8490;font-size:.76rem;text-transform:uppercase;letter-spacing:.12em}
.pricing-price strong{display:block;color:#102b55;font-family:var(--font-display);font-size:clamp(2rem,3vw,3.1rem);font-weight:500}
.pricing-card>a{margin-top:24px;align-self:flex-start;color:#102b55;border-bottom:1px solid #b8862c;padding-bottom:5px;font-size:.76rem;text-transform:uppercase;letter-spacing:.09em}
.pricing-note{padding:34px 24px;background:#102b55;color:#fff;text-align:center}
.pricing-note-inner{width:min(920px,100%);margin:auto}
.pricing-note p{margin:0;line-height:1.75;color:rgba(255,255,255,.88)}
.pricing-custom{padding:clamp(76px,9vw,130px) 24px;background:#efe1c7;text-align:center}
.pricing-custom-inner{width:min(840px,100%);margin:auto}
.pricing-custom h2{margin:12px 0 22px;color:#102b55;font-size:clamp(2.8rem,5vw,5rem);font-weight:500;line-height:1.05}
.pricing-custom p{max-width:690px;margin:0 auto 34px;line-height:1.8}

/* FAQ: la classe unique is-open pilote l'ouverture et évite tout conflit avec l'ancien script. */
.faq-item.open{ /* neutralise les anciennes règles V1 */ }
.faq-answer{overflow:hidden}
.faq-item.is-open .faq-answer{grid-template-rows:1fr}
.faq-item.is-open .faq-question i{transform:rotate(180deg)}
.faq-question i{transition:transform .35s ease}

@media(max-width:1080px){.pricing-grid-four{grid-template-columns:repeat(2,minmax(0,1fr))}.pricing-grid-five{grid-template-columns:repeat(2,minmax(0,1fr))}.pricing-grid-five .pricing-card:last-child{grid-column:1/-1;max-width:590px;width:100%;justify-self:center}}
@media(max-width:700px){.contact-grid{grid-template-columns:1fr}.pricing-grid-four,.pricing-grid-five{grid-template-columns:1fr}.pricing-grid-five .pricing-card:last-child{grid-column:auto;max-width:none}.pricing-card{min-height:auto}.contact-form-shell{padding:28px 20px}}

/* V42 — resserrement des pages Offres & Tarifs et grille symétrique 6 cartes. */
.pricing-intro{padding-top:clamp(44px,5vw,68px)!important;padding-bottom:clamp(42px,4.8vw,66px)!important}
.pricing-universe{padding-top:clamp(54px,6vw,82px)!important;padding-bottom:clamp(54px,6vw,82px)!important}
.pricing-heading{margin-bottom:clamp(30px,3.7vw,48px)!important}
.pricing-grid-six{grid-template-columns:repeat(3,minmax(0,1fr))}
.pricing-card{min-height:390px}
.pricing-custom{padding-top:clamp(54px,6vw,84px)!important;padding-bottom:clamp(54px,6vw,84px)!important}

/* FAQ V42 : l'attribut hidden est la source de vérité, sans animation fragile. */
.faq-answer[hidden]{display:none!important}
.faq-answer:not([hidden]){display:block!important;overflow:visible!important}
.faq-answer:not([hidden])>div{padding-bottom:28px}
.faq-item.is-open .faq-question i::after{opacity:0}

@media(max-width:1080px){.pricing-grid-six{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:700px){.pricing-grid-six{grid-template-columns:1fr}}


/* V43 — accordéon FAQ définitif */
.faq-answer{display:block!important;max-height:0;overflow:hidden!important;opacity:0;visibility:hidden;transition:max-height .42s ease,opacity .3s ease,visibility 0s linear .42s}
.faq-answer>div{overflow:visible!important;padding:0 42px 0 2px!important}
.faq-item.is-open .faq-answer{opacity:1;visibility:visible;transition:max-height .42s ease,opacity .3s ease,visibility 0s}
.faq-item.is-open .faq-answer>div{padding-bottom:28px!important}
.faq-item.is-open .faq-question i{transform:none!important}
.faq-item.is-open .faq-question i::after{opacity:0!important}

/* V43 — portes d’entrée Célébrations */
.celebrations-portals-intro{padding:88px 7vw 58px;background:#f8f2e8;text-align:center}
.celebrations-portals-intro-inner{max-width:920px;margin:0 auto}
.celebrations-portals-intro h2{margin:10px 0 22px;color:#102b55;font:400 clamp(2.4rem,5vw,5rem)/1.03 Georgia,"Times New Roman",serif}
.celebrations-portals-intro p:last-child{max-width:760px;margin:0 auto;color:#40516c;font:400 1.08rem/1.8 Arial,sans-serif}
.celebrations-portals{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;padding:0 3.5vw 78px;background:#f8f2e8}
.celebration-portal{position:relative;min-height:660px;overflow:hidden;text-decoration:none;background:#102b55;isolation:isolate}
.celebration-portal img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.2,.65,.3,1)}
.celebration-portal-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(9,27,52,.08) 20%,rgba(9,27,52,.86) 100%);z-index:1;transition:background .45s ease}
.celebration-portal-content{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:46px 48px 44px;color:#fff;display:flex;flex-direction:column;align-items:flex-start}
.celebration-portal-number{font:600 .72rem/1 Arial,sans-serif;letter-spacing:.28em;color:#e3bb6f;margin-bottom:16px}
.celebration-portal strong{font:400 clamp(2.7rem,4vw,4.6rem)/1 Georgia,"Times New Roman",serif;margin-bottom:18px}
.celebration-portal em{max-width:590px;font:italic 1.08rem/1.6 Georgia,"Times New Roman",serif;margin-bottom:18px}
.celebration-portal small{font:400 .85rem/1.7 Arial,sans-serif;letter-spacing:.04em;color:#f1e8d9}
.celebration-portal-link{margin-top:24px;padding-bottom:7px;border-bottom:1px solid #d9a94f;font:600 .72rem/1 Arial,sans-serif;letter-spacing:.2em;text-transform:uppercase}
.celebration-portal:hover img{transform:scale(1.035)}
.celebration-portal:hover .celebration-portal-overlay{background:linear-gradient(180deg,rgba(9,27,52,.03) 10%,rgba(9,27,52,.78) 100%)}
@media(max-width:900px){.celebrations-portals{grid-template-columns:1fr;padding-left:20px;padding-right:20px}.celebration-portal{min-height:580px}.celebration-portal-content{padding:34px 30px}}


/* ===== V44 — FAQ définitive ===== */
.faq-answer{
  height:0;
  max-height:none !important;
  overflow:hidden;
  opacity:0;
  transition:height .38s cubic-bezier(.22,.7,.25,1), opacity .26s ease;
}
.faq-answer>div{
  padding:0 0 30px;
  color:#40516c;
  font:400 1rem/1.75 Arial,sans-serif;
}
.faq-answer>div p{margin:0 0 14px}
.faq-answer>div p:last-child{margin-bottom:0}
.faq-answer a{color:#b98531;text-underline-offset:5px}
.faq-item.open .faq-answer{opacity:1}
.faq-question i{
  position:relative;
  width:18px;height:18px;flex:0 0 18px;margin-top:3px;
}
.faq-question i::before,.faq-question i::after{
  content:"";position:absolute;left:0;top:8px;width:18px;height:1px;background:#c4933e;
  transition:transform .3s ease;
}
.faq-question i::after{transform:rotate(90deg)}
.faq-item.open .faq-question i::after{transform:rotate(0deg)}
.faq-question:hover{color:#b98531}

/* ===== V44 — Professionnels harmonisé avec Célébrations ===== */
.professional-celebrations-style{background:#f8f2e8}
.professional-portals-unified{padding-top:0}
.professional-portals-unified .celebration-portal{min-height:660px}

/* ===== V44 — Chapitre Mariage et collection Élégance ===== */
.collection-chapter-intro{
  padding:90px 7vw 66px;
  background:#f8f2e8;
  text-align:center;
}
.collection-chapter-intro h2{
  max-width:960px;margin:10px auto 24px;
  color:#102b55;font:400 clamp(2.6rem,5vw,5.2rem)/1.03 Georgia,"Times New Roman",serif;
}
.collection-chapter-intro>p:last-child{
  max-width:790px;margin:0 auto;color:#40516c;font:400 1.1rem/1.85 Arial,sans-serif;
}
.collections-doors{
  padding:0 3.5vw 78px;background:#f8f2e8;
  display:grid;grid-template-columns:minmax(0,1fr);gap:28px;
}
.collection-door{
  position:relative;min-height:min(78vh,820px);overflow:hidden;display:block;
  color:#fff;text-decoration:none;background:#102b55;
}
.collection-door img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  transition:transform .8s cubic-bezier(.2,.65,.3,1);
}
.collection-door-overlay{
  position:absolute;inset:0;background:linear-gradient(180deg,rgba(9,27,52,.02) 25%,rgba(9,27,52,.82) 100%);
}
.collection-door-content{
  position:absolute;z-index:2;left:0;right:0;bottom:0;padding:54px 58px;color:#fff;
  display:flex;flex-direction:column;align-items:flex-start;
}
.collection-door-content small{color:#e3bb6f;font:600 .72rem/1 Arial,sans-serif;letter-spacing:.28em;text-transform:uppercase}
.collection-door-content strong{margin:16px 0;font:400 clamp(3.2rem,6vw,6.8rem)/.96 Georgia,"Times New Roman",serif}
.collection-door-content em{max-width:700px;font:italic 1.12rem/1.65 Georgia,"Times New Roman",serif}
.collection-door-content span{
  margin-top:28px;padding-bottom:8px;border-bottom:1px solid #d9a94f;
  font:600 .72rem/1 Arial,sans-serif;letter-spacing:.2em;text-transform:uppercase;
  transition:color .3s ease,border-color .3s ease;
}
.collection-door:hover img{transform:scale(1.035)}
.collection-door:hover .collection-door-content span{color:#e3bb6f;border-color:#e3bb6f}

.collection-detail-hero{
  position:relative;min-height:78vh;overflow:hidden;background:#102b55;
}
.collection-detail-hero>img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
}
.collection-detail-hero-overlay{
  position:absolute;inset:0;background:linear-gradient(90deg,rgba(9,27,52,.76),rgba(9,27,52,.10) 72%);
}
.collection-detail-hero-content{
  position:relative;z-index:2;max-width:760px;padding:clamp(150px,18vh,230px) 7vw 110px;color:#fff;
}
.collection-detail-hero-content h1{
  margin:12px 0 22px;font:400 clamp(4.2rem,9vw,9rem)/.9 Georgia,"Times New Roman",serif;
}
.collection-detail-hero-content>p:last-child{
  max-width:650px;font:italic clamp(1.05rem,1.5vw,1.3rem)/1.7 Georgia,"Times New Roman",serif;
}
.collection-products{
  padding:94px 3.5vw 80px;background:#f8f2e8;
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:42px 28px;
}
.collection-product{
  min-width:0;
}
.collection-product-heading{
  min-height:184px;padding:0 10px 26px;
}
.collection-product-heading h2{
  margin:8px 0 14px;color:#102b55;font:400 clamp(2.2rem,4vw,4rem)/1 Georgia,"Times New Roman",serif;
}
.collection-product-heading>p:last-child{
  max-width:620px;margin:0;color:#40516c;font:400 1rem/1.72 Arial,sans-serif;
}
.collection-product-image{
  overflow:hidden;background:#e8dfd1;
}
.collection-product-image img{
  display:block;width:100%;height:auto;
  transition:transform .72s cubic-bezier(.2,.65,.3,1);
}
.collection-product:hover .collection-product-image img{transform:scale(1.018)}
.collection-product:last-child{grid-column:1 / -1;max-width:760px;width:100%;margin:0 auto}
.collection-navigation{
  padding:34px 7vw 64px;background:#f8f2e8;
  display:flex;justify-content:center;gap:18px;flex-wrap:wrap;
}
.collection-navigation a{
  padding:14px 22px;border:1px solid rgba(16,43,85,.28);color:#102b55;text-decoration:none;
  font:600 .72rem/1 Arial,sans-serif;letter-spacing:.15em;text-transform:uppercase;
  transition:background .3s ease,color .3s ease,border-color .3s ease;
}
.collection-navigation a:hover{background:#b98531;border-color:#b98531;color:#fff}

@media(max-width:900px){
  .collection-products{grid-template-columns:1fr;padding-left:20px;padding-right:20px}
  .collection-product:last-child{grid-column:auto;max-width:none}
  .collection-product-heading{min-height:0}
  .collection-door{min-height:620px}
  .collection-door-content{padding:38px 30px}
}


/* ===== V47 — Mariage : grands bandeaux immersifs ===== */

/* Hero du chapitre Mariage */
.marriage-chapter-hero{
  min-height: clamp(500px, 68vh, 760px);
}
.marriage-chapter-hero > img{
  object-fit: cover;
  object-position: center;
}

/* Une porte = un grand bandeau presque pleine largeur */
.collections-doors{
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  max-width: none;
  margin: 0;
}
.collection-door,
.collection-door:nth-child(3){
  min-height: clamp(500px, 68vh, 760px);
  aspect-ratio: auto;
  max-width: none;
  width: 100%;
  grid-column: auto;
  justify-self: stretch;
  background: #102b55;
}
.collection-door img{
  object-fit: cover;
  object-position: center;
  background: transparent;
}
.collection-door-content{
  padding: 54px 58px;
}
.collection-door-content strong{
  font-size: clamp(3.2rem, 6vw, 6.8rem);
}
.collection-door-content em{
  max-width: 700px;
}
.collection-door-overlay{
  background: linear-gradient(180deg,rgba(9,27,52,.02) 25%,rgba(9,27,52,.82) 100%);
}

/* Dans chaque collection, la même image devient le hero immersif */
.collection-detail-hero{
  position: relative;
  min-height: 78vh;
  height: auto;
  display: block;
  overflow: hidden;
  background: #102b55;
}
.collection-detail-hero > img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}
.collection-detail-hero-overlay{
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(9,27,52,.76),rgba(9,27,52,.10) 72%);
}
.collection-detail-hero-content{
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(150px,18vh,230px) 7vw 110px;
  color: #fff;
  display: block;
}
.collection-detail-hero-content h1{
  color: #fff;
  font-size: clamp(4.2rem,9vw,9rem);
}
.collection-detail-hero-content > p:last-child{
  color: #fff;
}

/* La vue d’ensemble ouvre la galerie de chaque collection */
.collection-product-overview{
  grid-column: 1 / -1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
.collection-overview-image img{
  width: 100%;
}

@media(max-width:900px){
  .collection-door,
  .collection-door:nth-child(3){min-height:620px}
  .collection-door-content{padding:38px 30px}
  .collection-detail-hero{min-height:680px}
  .collection-product-overview{grid-column:auto;max-width:none}
}

.collection-product-overview:last-child{
  max-width:1120px;
}

/* ===== V48 — Mariage : proportions raffinées et collections complètes ===== */
.marriage-chapter-hero{
  min-height:clamp(420px,54vh,610px);
}
.collections-doors{
  gap:22px;
  padding-left:4.5vw;
  padding-right:4.5vw;
}
.collection-door,
.collection-door:nth-child(3){
  min-height:clamp(330px,42vw,470px);
}
.collection-door-content{padding:34px 42px}
.collection-door-content strong{font-size:clamp(2.6rem,4.8vw,5.2rem)}
.collection-door-content em{font-size:1rem;line-height:1.55}
.collection-door-content span{margin-top:18px}

.collection-detail-hero{
  min-height:clamp(420px,56vh,610px);
}
.collection-detail-hero-content{
  padding:clamp(118px,15vh,170px) 7vw 72px;
}
.collection-detail-hero-content h1{
  font-size:clamp(3.5rem,7vw,7rem);
}
.collection-products{
  max-width:1180px;
  margin:0 auto;
  padding:74px 28px 70px;
  gap:34px 26px;
}
.collection-product-heading{
  min-height:150px;
  padding:0 8px 20px;
}
.collection-product-heading h2{
  font-size:clamp(2rem,3vw,3.2rem);
}
.collection-product-overview,
.collection-product-overview:last-child{
  max-width:760px;
}
.collection-product-image img{width:100%;height:auto}

@media(max-width:900px){
  .marriage-chapter-hero{min-height:440px}
  .collection-door,
  .collection-door:nth-child(3){min-height:390px}
  .collection-door-content{padding:28px 24px}
  .collection-detail-hero{min-height:500px}
  .collection-detail-hero-content{padding:130px 24px 54px}
  .collection-products{padding:58px 20px 60px}
  .collection-product-heading{min-height:0}
}
@media(max-width:560px){
  .collection-door,
  .collection-door:nth-child(3){min-height:330px}
  .collection-door-content em{display:none}
  .collection-door-content strong{margin:8px 0}
  .collection-detail-hero{min-height:440px}
}

/* ===== V49 — Naissance complète + galeries plus compactes ===== */
.birth-chapter-hero{min-height:clamp(420px,54vh,610px)}
.birth-chapter-hero>img,.birth-collection-hero>img{object-position:center center}
.birth-collections-doors .collection-door{min-height:clamp(330px,42vw,470px)}
.birth-products .collection-product-image{
  height:clamp(560px,58vw,720px);
  display:flex;align-items:center;justify-content:center;
  background:#eee5d8;
}
.birth-products .collection-product-image img{
  width:100%;height:100%;object-fit:cover;object-position:center;
}
.birth-products .collection-product-overview .collection-product-image{height:clamp(600px,62vw,760px)}

/* Toutes les galeries collections sont moins hautes sans réduire leur largeur. */
.collection-products:not(.birth-products) .collection-product-image{
  max-height:720px;
  overflow:hidden;
}
.collection-products:not(.birth-products) .collection-product-image img{
  width:100%;height:720px;object-fit:cover;object-position:center;
}
.collection-products:not(.birth-products) .collection-product-overview .collection-product-image img{
  height:760px;
}
@media(max-width:900px){
  .birth-products .collection-product-image,
  .birth-products .collection-product-overview .collection-product-image{height:auto}
  .birth-products .collection-product-image img{height:auto;object-fit:contain}
  .collection-products:not(.birth-products) .collection-product-image{max-height:none}
  .collection-products:not(.birth-products) .collection-product-image img,
  .collection-products:not(.birth-products) .collection-product-overview .collection-product-image img{height:auto}
}

/* ===== V50 — Baptême ===== */
.baptism-chapter-hero{min-height:clamp(420px,54vh,610px)}
.baptism-chapter-hero>img,.baptism-collection-hero>img{object-position:center center}
.baptism-collections-doors .collection-door{min-height:clamp(330px,42vw,470px)}
.baptism-products .collection-product-image{height:clamp(560px,58vw,720px);display:flex;align-items:center;justify-content:center;background:#eee5d8}
.baptism-products .collection-product-image img{width:100%;height:100%;object-fit:cover;object-position:center}
.baptism-products .collection-product-overview .collection-product-image{height:clamp(600px,62vw,760px)}
@media(max-width:900px){.baptism-products .collection-product-image,.baptism-products .collection-product-overview .collection-product-image{height:auto}.baptism-products .collection-product-image img{height:auto;object-fit:contain}.image-lightbox{padding:12px}.image-lightbox-dialog{width:100%;height:96vh}.image-lightbox-close{top:0;right:0}}

/* ===== V51 — visionneuse avancée + Anniversaire + corrections ciblées ===== */
html.lightbox-active,
body.lightbox-active { overflow: hidden !important; }

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 28px);
  background: rgba(4, 10, 20, .95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.image-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.image-lightbox-dialog {
  position: relative;
  width: min(98vw, 1680px);
  height: min(96vh, 1080px);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  grid-template-rows: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 10px;
}
.image-lightbox-stage {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  cursor: default;
}
.image-lightbox-stage.is-draggable { cursor: grab; }
.image-lightbox-stage.is-dragging { cursor: grabbing; }
.image-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform-origin: center;
  user-select: none;
  will-change: transform;
  box-shadow: 0 22px 80px rgba(0,0,0,.5);
}
.image-lightbox.image-ready .image-lightbox-image { opacity: 1; }
.image-lightbox-close,
.image-lightbox-arrow {
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(7,19,38,.78);
  color: #fff;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.image-lightbox-close:hover,
.image-lightbox-arrow:hover,
.image-lightbox-close:focus-visible,
.image-lightbox-arrow:focus-visible {
  background: #d6ae68;
  color: #102b55;
  outline: none;
}
.image-lightbox-close {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font: 300 2rem/1 Arial, sans-serif;
}
.image-lightbox-arrow {
  width: 52px;
  height: 78px;
  border-radius: 3px;
  font: 300 3rem/1 Arial, sans-serif;
}
.image-lightbox-prev { grid-column: 1; grid-row: 1; }
.image-lightbox-next { grid-column: 3; grid-row: 1; }
.image-lightbox-meta {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255,255,255,.82);
  font: 500 .72rem/1.3 Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.image-lightbox-counter {
  min-width: 54px;
  color: #d6ae68;
  text-align: center;
}
.zoomable-image { cursor: zoom-in; }

/* Épure : suppression définitive des marges blanches intégrées aux images. */
.birth-products .collection-product-image { overflow: hidden; }
.birth-products .collection-product-image img[src*="/naissance/epure/"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Anniversaire */
.anniversary-chapter-hero { min-height: clamp(420px, 54vh, 610px); }
.anniversary-chapter-hero > img,
.anniversary-collection-hero > img { object-position: center center; }
.anniversary-collections-doors .collection-door { min-height: clamp(360px, 46vw, 520px); }
.anniversary-products .collection-product-image {
  height: clamp(560px, 58vw, 740px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #eee5d8;
}
.anniversary-products .collection-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.anniversary-products .collection-product-overview .collection-product-image {
  height: clamp(620px, 64vw, 790px);
}

@media (max-width: 900px) {
  .image-lightbox-dialog {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 4px;
  }
  .image-lightbox-arrow {
    width: 40px;
    height: 62px;
    font-size: 2.2rem;
  }
  .image-lightbox-close { top: 2px; right: 2px; }
  .anniversary-products .collection-product-image,
  .anniversary-products .collection-product-overview .collection-product-image { height: auto; }
  .anniversary-products .collection-product-image img { height: auto; object-fit: contain; }
}

/* ===== V51.2 — heroes validés + galeries visibles en entier ===== */
/* Les visuels de collection restent entièrement visibles dans la page.
   Le plein écran sert désormais à examiner les détails, pas à découvrir l'image entière. */
.collection-products .collection-product-image,
.birth-products .collection-product-image,
.baptism-products .collection-product-image,
.anniversary-products .collection-product-image,
.collection-products .collection-product-overview .collection-product-image,
.birth-products .collection-product-overview .collection-product-image,
.baptism-products .collection-product-overview .collection-product-image,
.anniversary-products .collection-product-overview .collection-product-image {
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-products .collection-product-image img,
.birth-products .collection-product-image img,
.baptism-products .collection-product-image img,
.anniversary-products .collection-product-image img,
.collection-products .collection-product-overview .collection-product-image img,
.birth-products .collection-product-overview .collection-product-image img,
.baptism-products .collection-product-overview .collection-product-image img,
.anniversary-products .collection-product-overview .collection-product-image img {
  display: block;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: min(78vh, 820px) !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 auto;
}
/* Les vues d'ensemble, plus importantes, peuvent être légèrement plus hautes. */
.collection-products .collection-product-overview .collection-product-image img {
  max-height: min(84vh, 920px) !important;
}
/* Les héros utilisent les images validées sans recadrage agressif. */
.baptism-chapter-hero > img,
.anniversary-chapter-hero > img,
.anniversary-collection-hero > img {
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 900px) {
  .collection-products .collection-product-image img,
  .collection-products .collection-product-overview .collection-product-image img {
    width: 100% !important;
    max-height: none !important;
  }
}


/* ===== V51.4 — finitions Naissance et Anniversaire ===== */
@media (min-width: 901px) {
  .anniversary-product--center-image {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .anniversary-product--center-image .collection-product-image {
    flex: 1 1 auto;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}


/* ===== V51.5 — dernières paires Anniversaire ===== */
@media (min-width: 901px) {
  /* La vue d’ensemble ouvre la collection sur une ligne complète.
     Les quatre créations suivantes se répartissent ensuite en deux lignes équilibrées. */
  .anniversary-products--balanced .collection-product-overview {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }
  .anniversary-products--balanced .collection-product:last-child {
    grid-column: auto;
    width: auto;
    max-width: none;
    margin: 0;
  }
}


/* ===== V51.6 — alignement final des paires Anniversaire ===== */
@media (min-width: 901px) {
  /* Chaque carte d’une même ligne partage la même structure :
     en-tête de hauteur commune, puis image centrée verticalement. */
  .anniversary-products--final-pairs .collection-product:not(.collection-product-overview) {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .anniversary-products--final-pairs .collection-product-heading {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .anniversary-products--final-pairs .collection-product-image {
    flex: 1 1 auto;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .anniversary-products--final-pairs .collection-product-image img {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}

/* Communion — V52 */
.communion-chapter-hero>img,.communion-collection-hero>img{object-position:center center}
.communion-collections-doors .collection-door{min-height:clamp(360px,46vw,520px)}
.communion-products .collection-product-image{display:flex;align-items:center;justify-content:center;background:#eee5d8;overflow:hidden}
.communion-products .collection-product-image img{width:100%;height:auto;object-fit:contain;object-position:center}
.communion-products .collection-product-overview .collection-product-image{height:auto}
@media(max-width:900px){.communion-products .collection-product-image,.communion-products .collection-product-overview .collection-product-image{height:auto}.communion-products .collection-product-image img{height:auto;object-fit:contain}}


/* V55 — Types de sites et intertitre qualité */
.website-quality-heading {
  max-width: 980px;
  margin: clamp(20px, 3vw, 44px) auto clamp(78px, 10vw, 138px);
  padding: clamp(42px, 6vw, 70px) clamp(20px, 4vw, 50px);
  text-align: center;
  border-top: 1px solid rgba(190,145,73,.45);
  border-bottom: 1px solid rgba(190,145,73,.45);
}
.website-quality-heading h2 {
  max-width: 900px;
  margin: 10px auto 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 1.08;
}
@media (max-width: 760px) {
  .website-quality-heading {
    margin-bottom: 74px;
  }
}


/* ===== V63 — Notes sur mesure et galeries d’inspiration ===== */
.celebration-visual-note,
.chapter-custom-note{
  width:min(900px,calc(100% - 40px));
  margin:0 auto clamp(34px,4vw,54px);
  padding:18px 24px;
  border-top:1px solid rgba(170,132,61,.48);
  border-bottom:1px solid rgba(170,132,61,.48);
  color:#183250;
  text-align:center;
  font-family:var(--font-display);
  font-size:clamp(.96rem,1.4vw,1.08rem);
  line-height:1.7;
}
.celebration-visual-note{margin-top:-8px}
.chapter-custom-note{margin-top:clamp(-14px,-1vw,-4px)}
.chapter-custom-note p{margin:0}

.inspiration-gallery{
  padding:clamp(58px,7vw,92px) clamp(20px,5vw,72px) clamp(62px,8vw,104px);
  background:#f7f1e8;
}
.inspiration-gallery-heading{
  width:min(840px,100%);
  margin:0 auto clamp(34px,4.5vw,56px);
  text-align:center;
}
.inspiration-gallery-heading h2{
  margin:0 0 16px;
  color:#0d2d50;
  font-family:var(--font-display);
  font-size:clamp(2.1rem,4.2vw,4.6rem);
  font-weight:400;
  line-height:1.08;
}
.inspiration-gallery-heading p{
  max-width:720px;
  margin:0 auto;
  color:#233b55;
  font-size:clamp(.96rem,1.45vw,1.12rem);
  line-height:1.72;
}
.inspiration-gallery-grid{
  width:min(1180px,100%);
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(16px,2.3vw,30px);
}
.inspiration-gallery-item{
  margin:0;
  aspect-ratio:7 / 5;
  overflow:hidden;
  background:#e8dfd1;
  box-shadow:0 14px 34px rgba(41,30,18,.12);
  cursor:zoom-in;
}
.inspiration-gallery-item img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s cubic-bezier(.2,.7,.2,1),filter .45s ease;
}
.inspiration-gallery-item:hover img{transform:scale(1.035);filter:brightness(1.02)}
.inspiration-gallery + .collection-navigation{margin-top:0}
@media(max-width:720px){
  .celebration-visual-note,.chapter-custom-note{width:calc(100% - 32px);padding:16px 14px;margin-bottom:32px}
  .inspiration-gallery{padding:48px 16px 58px}
  .inspiration-gallery-grid{grid-template-columns:1fr;gap:16px}
  .inspiration-gallery-item{aspect-ratio:7 / 5}
}


/* ===== Ajustements ciblés galeries Célébrations ===== */
@media (min-width: 1180px){
  .celebration-visual-note,
  .chapter-custom-note{
    width:calc(100% - 48px);
    max-width:1600px;
    padding-left:12px;
    padding-right:12px;
    white-space:nowrap;
    font-size:clamp(.86rem,1.05vw,1rem);
  }
}
.chapter-contact-cta{
  padding:clamp(28px,4vw,48px) 20px clamp(54px,6vw,78px);
  background:#f7f1e8;
  text-align:center;
}
.chapter-contact-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:170px;
  padding:13px 28px;
  border:1px solid #b58a3c;
  color:#102f52;
  background:rgba(255,255,255,.42);
  font-family:var(--font-display);
  font-size:1rem;
  letter-spacing:.035em;
  transition:background .25s ease,color .25s ease,transform .25s ease,box-shadow .25s ease;
}
.chapter-contact-button:hover{
  background:#102f52;
  color:#fffaf0;
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(16,47,82,.14);
}
.chapter-contact-cta + .collection-navigation{margin-top:0}
@media(max-width:720px){
  .chapter-contact-cta{padding:24px 16px 48px}
}

/* V56 — Communication / campagne complète KYNOVA */
.communication-campaign-section {
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) clamp(22px, 4vw, 64px) clamp(88px, 9vw, 132px);
}
.communication-campaign-intro {
  max-width: 980px;
  margin: 0 auto clamp(76px, 9vw, 124px);
  text-align: center;
}
.communication-campaign-intro h2 {
  margin: 10px 0 22px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.1vw, 5rem);
  line-height: 1;
}
.communication-campaign-lead {
  max-width: 920px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  line-height: 1.8;
}
.kynova-chapter + .kynova-chapter {
  margin-top: clamp(92px, 11vw, 158px);
}
.kynova-chapter-heading {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 28px);
  max-width: 1220px;
  margin: 0 auto clamp(30px, 4vw, 52px);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(176,132,53,.45);
}
.kynova-chapter-number {
  flex: 0 0 auto;
  color: #b08435;
  font-family: var(--font-sans);
  font-size: clamp(.8rem, .95vw, 1rem);
  font-weight: 600;
  letter-spacing: .14em;
  padding-top: .65em;
}
.kynova-chapter-heading h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  line-height: 1.02;
}
.kynova-chapter-heading p {
  margin: 10px 0 0;
  color: #6d7582;
  font-size: clamp(.9rem, 1vw, 1.02rem);
  line-height: 1.6;
}
.kynova-media {
  margin: 0;
}
.kynova-media img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  box-shadow: 0 22px 55px rgba(14,25,42,.10);
}
.kynova-media img.zoomable-image { cursor: zoom-in; }
.kynova-media-wide {
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}
.kynova-subsection {
  max-width: 1380px;
  margin: 0 auto;
}
.kynova-subsection + .kynova-subsection {
  margin-top: clamp(78px, 9vw, 126px);
}
.kynova-subheading {
  max-width: 900px;
  margin: 0 auto clamp(26px, 3vw, 40px);
  text-align: center;
}
.kynova-subheading h4 {
  margin: 0 0 9px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 500;
}
.kynova-subheading p {
  margin: 0;
  color: #6d7582;
  line-height: 1.65;
}
.kynova-context-image { margin-top: clamp(28px, 4vw, 54px); }
.kynova-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}
.kynova-two-up .kynova-media {
  display: flex;
  flex-direction: column;
}
.kynova-two-up .kynova-media img {
  flex: 1 1 auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.kynova-media figcaption {
  margin-top: 14px;
  color: #a77d3b;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 820px) {
  .communication-campaign-section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .kynova-chapter-heading {
    gap: 12px;
    padding-bottom: 14px;
  }
  .kynova-two-up { grid-template-columns: 1fr; }
  .kynova-two-up .kynova-media img { aspect-ratio: auto; }
  .kynova-media img { box-shadow: 0 14px 34px rgba(14,25,42,.10); }
}


/* V62 — Communication : créations unitaires */
.communication-unitary-section{padding:clamp(64px,8vw,118px) clamp(24px,5vw,78px);background:#f8f4ed}
.communication-unitary-intro{width:min(900px,100%);margin:0 auto clamp(42px,5vw,70px);text-align:center}
.communication-unitary-intro h2{margin:10px 0 16px;font-family:var(--font-display,Georgia,serif);font-size:clamp(2rem,4vw,3.7rem);font-weight:500;line-height:1.06;color:var(--navy)}
.communication-unitary-intro>p:last-child{max-width:760px;margin:0 auto;color:#3b485c;font-size:clamp(.88rem,1vw,.98rem);line-height:1.7}
.communication-unitary-grid{width:min(1420px,100%);margin:0 auto;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(26px,3.4vw,54px);align-items:start}
.communication-unitary-column h3{margin:0 0 22px;padding-bottom:12px;border-bottom:1px solid rgba(184,142,66,.42);font-family:Montserrat,Arial,sans-serif;font-size:.82rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--navy)}
.communication-unitary-card{margin:0 0 clamp(30px,4vw,50px)}
.communication-unitary-card img{display:block;width:100%;height:auto;background:#eee7da;box-shadow:0 14px 36px rgba(14,25,42,.10);cursor:zoom-in}
.communication-unitary-card figcaption{padding-top:10px;color:#6d7480;font-size:.72rem;letter-spacing:.08em;text-align:center;text-transform:uppercase}
@media(max-width:900px){.communication-unitary-grid{grid-template-columns:1fr;max-width:650px}.communication-unitary-column+ .communication-unitary-column{margin-top:22px}}
@media(max-width:560px){.communication-unitary-section{padding-inline:18px}.communication-unitary-intro{margin-bottom:34px}.communication-unitary-card{margin-bottom:30px}}


/* Numérique — page unifiée */
.digital-overview-section { padding: clamp(70px,8vw,110px) 0 0; }
.digital-overview-intro, .digital-showcase-heading { max-width: 900px; margin: 0 auto; padding: 0 clamp(24px,5vw,72px); text-align: center; }
.digital-overview-intro { margin-bottom: clamp(60px,7vw,90px); }
.digital-overview-intro h2, .digital-showcase-heading h2 { color: var(--navy); font-size: clamp(2rem,4vw,3.7rem); line-height: 1.08; margin: 8px 0 16px; }
.digital-overview-intro p:last-child, .digital-showcase-heading p:last-child { max-width: 780px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.digital-showcase-block { padding: clamp(70px,8vw,105px) clamp(24px,5vw,72px); }
.digital-showcase-alt { background: #f7f2e9; }
.digital-showcase-heading { margin-bottom: clamp(38px,5vw,58px); padding: 0; }
.digital-showcase-block .digital-gallery-grid { max-width: 1320px; margin: 0 auto; }
.digital-social-pair { max-width: 980px !important; }
.digital-social-pair .digital-project-card img { max-height: 720px; width: 100%; object-fit: contain; box-shadow: none; }
.digital-supports-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.digital-supports-grid .digital-project-card img { height: 500px; object-fit: contain; }
.digital-banners-grid .digital-project-card img { height: 330px; object-fit: contain; }
@media (max-width: 900px) {
  .digital-supports-grid { grid-template-columns: 1fr; }
  .digital-supports-grid .digital-project-card img, .digital-banners-grid .digital-project-card img { height: auto; max-height: 620px; }
}

/* V63 — Numérique enrichi + Supports imprimés harmonisés */
.digital-social-pair{
  max-width:760px!important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(26px,4vw,52px);
}
.digital-social-pair .digital-project-card img{
  width:100%;
  height:520px;
  max-height:520px;
  object-fit:contain;
  box-shadow:none;
}
.digital-newsletters-grid,
.digital-linkedin-grid,
.digital-signatures-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  max-width:1180px!important;
}
.digital-newsletters-grid .digital-project-card img{
  height:520px;
  object-fit:contain;
}
.digital-linkedin-grid .digital-project-card img{
  height:500px;
  object-fit:contain;
}
.digital-signatures-grid .digital-project-card img{
  height:330px;
  object-fit:contain;
}
.digital-email-grid{
  width:min(1240px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(220px,.44fr) minmax(0,1fr);
  gap:clamp(24px,3vw,44px);
  align-items:start;
}
.digital-email-grid .digital-project-card img{
  width:100%;
  height:700px;
  object-fit:contain;
  box-shadow:0 16px 38px rgba(14,25,42,.11);
}
.digital-email-grid .email-mobile img{
  height:700px;
}

/* Même image d’entrée reprise en héro pour les projets Supports imprimés */
.supports-detail-hero-visual{
  position:relative;
  min-height:clamp(470px,58vw,760px);
  padding:0!important;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  overflow:hidden;
  background:#0b1726;
}
.supports-detail-hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.supports-detail-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(5,20,40,.08) 25%,rgba(5,20,40,.82) 100%);
}
.supports-detail-hero-content{
  position:relative;
  z-index:2;
  width:min(980px,calc(100% - 44px));
  padding:clamp(54px,7vw,92px) 0;
  text-align:center;
  color:#fff;
}
.supports-detail-hero-content .eyebrow{color:#e2bd74}
.supports-detail-hero-content h1{
  color:#fff!important;
  margin:10px auto 16px!important;
  text-shadow:0 3px 18px rgba(0,0,0,.38);
}
.supports-detail-hero-content>p:last-child{
  max-width:790px!important;
  margin:0 auto;
  color:rgba(255,255,255,.94);
  line-height:1.7!important;
  text-shadow:0 2px 12px rgba(0,0,0,.35);
}
.supports-project-card-single{
  grid-column:1 / -1;
  width:48%;
  justify-self:center;
}

/* La Table des Embruns */
.table-embruns-section{padding-top:clamp(48px,6vw,82px)}
.table-embruns-gallery{
  width:min(1260px,calc(100% - 40px));
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:clamp(34px,5vw,64px);
}
.table-embruns-gallery .supports-gallery-item{
  margin:0;
  background:#f6f0e8;
  box-shadow:0 16px 42px rgba(16,31,49,.11);
}
.table-embruns-gallery .supports-gallery-item figcaption{
  padding:13px 16px;
  border-bottom:1px solid rgba(183,143,74,.28);
  background:#fffaf3;
  color:var(--navy);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.13em;
  text-align:center;
  text-transform:uppercase;
}
.table-embruns-gallery .supports-gallery-item img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}
.table-embruns-wide{width:100%}
.table-embruns-pair{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(24px,3vw,40px);
  align-items:start;
}
.table-embruns-pair .supports-gallery-item img{
  width:100%;
  aspect-ratio:1.08 / 1;
  object-fit:contain;
  background:#efe7db;
}

@media(max-width:900px){
  .digital-social-pair,
  .digital-newsletters-grid,
  .digital-linkedin-grid,
  .digital-signatures-grid,
  .digital-email-grid{grid-template-columns:1fr!important;max-width:650px!important}
  .digital-social-pair .digital-project-card img{height:460px;max-height:460px}
  .digital-newsletters-grid .digital-project-card img,
  .digital-linkedin-grid .digital-project-card img,
  .digital-signatures-grid .digital-project-card img,
  .digital-email-grid .digital-project-card img,
  .digital-email-grid .email-mobile img{height:auto;max-height:680px}
  .supports-project-card-single{grid-column:auto;width:100%}
  .table-embruns-pair{grid-template-columns:1fr}
  .table-embruns-pair .supports-gallery-item img{aspect-ratio:auto}
}
@media(max-width:560px){
  .digital-social-pair .digital-project-card img{height:390px;max-height:390px}
  .supports-detail-hero-visual{min-height:500px}
  .supports-detail-hero-content{width:calc(100% - 32px);padding:44px 0}
  .table-embruns-gallery{width:calc(100% - 28px)}
}


/* Contact — état d'envoi et champ anti-robot */
.contact-hp{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important;}
.contact-form-status{min-height:1.5em;margin:.8rem 0 0;font-size:.92rem;text-align:center;}
.contact-form-status.is-success{color:#2f6b4f;}
.contact-form-status.is-error{color:#8a3030;}
.contact-submit:disabled{opacity:.65;cursor:wait;}


/* =========================================================
   V51 — Correctifs de recette en production
   ========================================================= */
.website-service-image img { cursor: default; }

.numerique-no-lightbox .digital-project-card img,
.numerique-no-lightbox .story-phone,
.numerique-no-lightbox .story-phone img {
  cursor: default !important;
}

/* Petit libellé à côté du pictogramme hamburger, sans changer
   la structure HTML de toutes les pages. */
.menu-toggle { position: relative; }
.menu-toggle .menu-toggle-label {
  display: none;
  position: absolute;
  top: 50%;
  right: 52px;
  transform: translateY(-50%);
  color: var(--navy);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

/* Menu mobile : lorsqu'il est ouvert après défilement, le header
   devient un véritable calque plein écran, opaque et ancré au viewport. */
@media (max-width: 980px) {
  .menu-toggle { z-index: 10002; }
  .menu-toggle .menu-toggle-label { display: block; }

  .site-header.menu-active {
    z-index: 10000;
    height: 100svh !important;
    inset: 0;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }
  .site-header.menu-active .main-nav {
    position: fixed;
    z-index: 10001;
    inset: 0;
    width: 100vw;
    height: 100svh;
    margin: 0;
    padding: max(96px, env(safe-area-inset-top)) 28px max(42px, env(safe-area-inset-bottom));
    overflow-y: auto;
    justify-content: center;
    background: rgba(255,250,242,.995);
    transform: translateX(0);
    overscroll-behavior: contain;
  }
  .site-header.menu-active .menu-toggle {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: 18px;
  }
}
@media (max-width: 640px) {
  .site-header.menu-active .main-nav {
    padding-left: 24px;
    padding-right: 24px;
    gap: 24px;
  }
}


/* V55 — Correctif anti-débordement du pied de page
   Autorise la rangée principale à revenir proprement à la ligne
   quand la largeur disponible devient insuffisante, sans modifier
   la mise en page aux grandes largeurs. */
.footer-main {
  flex-wrap: wrap;
}
.footer-brand,
.footer-links {
  min-width: 0;
}

/* V43 — Réseaux sociaux dans le footer */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(213,180,111,.48);
  border-radius: 50%;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
}
.footer-social-link svg path {
  fill: currentColor;
  stroke: none;
}
.footer-social-link .social-dot { fill: currentColor; stroke: none; }
.footer-social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: #d5b46f;
  background: rgba(213,180,111,.12);
  color: #f1d89e;
  outline: none;
}
@media (max-width: 980px) {
  .footer-socials { margin-left: 0; }
}


/* ===== V56 — Stabilisation accessibilité =====
   Le doré décoratif reste inchangé ; les petits libellés utilisent
   --gold-text afin de conserver un contraste lisible sur fond clair. */
