  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,600;1,300;1,600&family=DM+Sans:wght@300;400;700;900&display=swap');

  * { margin: 0; padding: 0; box-sizing: border-box; }

    @font-face {
    font-family: 'ScriptFont';
    src: url('/fonts/high-spirited.ttf');
    font-weight: normal;
    font-display: swap;
    }

  :root {
    --violet: #4a3082;
    --violet-dark: #32205a;
    --violet-light: #b9a9d2;
    --gold: #facc11;
    --creme: #f5f0eb;
    --dark: #4c5563;

  --font-title: "categories elegant demo", serif;
  --font-script: "High Spirited", cursive;
  --font-body: 'Elms Sans', sans-serif;
  }

  body {
    font-family: var(--font-body);
    /*font-family: 'categories elegant demo' !important;*/
    background: var(--creme);
    overflow-x: hidden;
  }

  body.menu-open {
    overflow: hidden;
  }

  html {
  scroll-behavior: smooth;
}

  /*SELECTION*/
  ::selection {
  background: #b9a9d2; /* violet clair */
  color: #4c5563;      /* texte foncé */
}

::-moz-selection {
  background: #b9a9d2;
  color: #4c5563;
}

  /* ══ FIXE ══ */
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }

  .nav-logo img {
    width: 28px; height: 28px;
    object-fit: contain;
    transition: filter 0.5s;
  }

  #navImg {
  transition: opacity 0.25s ease;
}

  .nav-logo-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: color 0.5s;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .nav-links a:hover,
  .nav-links a.active { color: var(--gold); }

  /* états après shrink */
  .nav-logo-text.light-mode { color: rgba(74,48,130,0.8); }
  .nav-links.light-mode a   { color: rgba(74,48,130,0.45); }
  .nav-links.light-mode a:hover { color: var(--violet); }


    .nav-logo-textcontact {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: color 0.5s;
  }

  .nav-linkscontact {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-linkscontact a {
    text-decoration: none;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    }

.nav-logo-textcontact { color: rgba(74,48,130,0.8); }
  .nav-linkscontact a   { color: rgba(74,48,130,0.45); }
  .nav-linkscontact a:hover { color: var(--violet); }
  .nav-linkscontact a.active { color: var(--gold); }

  /*burger*/
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .line {
    width: 28px;
    height: 1px;
    background: var(--violet-light);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .top.light-mode {
    background: var(--violet-dark);
  }
  .bottom.light-mode {
    background: var(--violet-dark);
  }

  /* asymétrie volontaire */
  .top {
    transform-origin: left center;
    width: 28px;
  }

  .bottom {
    transform-origin: right center;
    width: 20px;
  }
  /*activation burger*/

  .burger.mobile .top {
    transform: rotate(45deg) translateY(5px) translateX(6px);
    width: 28px;
  }

  .burger.mobile .bottom {
    transform: rotate(-45deg) translateY(-5px) translateX(-5px);
    width: 28px;
  }

  /* ══ HERO WRAPPER ══ */
  .hero-wrapper {
    height: 320vh;
    position: relative;
  }

  .hero-sticky {
    position: sticky;
    top: 0;
    height: 100dvh;
    overflow: hidden;
    background: var(--creme);
  }

  /* ══ CITATION BANDE (derrière) ══ */
  .quote-band {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
  }

  .quote-row {
    display: flex;
    white-space: nowrap;
    gap: 3rem;
    will-change: transform;
  }

  .quote-row span {
    font-family: var(--font-body);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight : 300;
    color: var(--violet-dark);
    opacity: 0.5;
    flex-shrink: 0;
  }

  .quote-row span em { 
    font-family: var(--font-script); 
    font-size: clamp(5rem, 8vw, 7.5rem);
  }

  @keyframes slideLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
  @keyframes slideRight { from { transform: translateX(-50%); } to { transform: translateX(0); }    }

  .row-left  { animation: slideLeft  22s linear infinite; }
  .row-right { animation: slideRight 22s linear infinite; }

  /* ══ LOGO SIGNATURE surimpression ══ */
  .logo-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
  }

.logo-overlay img {
  transform-origin: center;
  will-change: transform, opacity;
  filter: none;
  max-width: 25vw;
  height: auto;
}

  /* ══ HERO PANEL ══ */
  .hero-panel {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    will-change: transform, border-radius, filter;
    transform-origin: center center;
    overflow: hidden;

    /* Fond violet foncé */
    background-image: url("../images/texture-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


}

  /* ── spacer nav ── */
  .nav-spacer { height: 80px; flex-shrink: 0; position: relative; z-index: 1; }

  /* ══ BLOC HAUT : titre gauche + phrase droite ══ */
.hero-top {
  position: relative;
  z-index: 1;
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* bas */
  align-items: flex-end;     /* droite */

  padding: 2rem 3rem 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-bottom : 50px;
}

.hero-title-block h1 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: rgba(255,255,255,0.95);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: right;

  display: block;
  width: 100%;
}

  .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.7rem 1.2rem;

  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;

  color: rgba(255,255,255,0.85);

  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;

  background: transparent;

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  margin-top : 20px;
}

.hero-cta:hover {
  color: var(--violet);
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-2px);
}

.hero-cta .arrow {
  display: inline-block;
  transition: transform 0.35s ease;
}

.hero-cta:hover .arrow {
  transform: translateX(6px);
}

.hero-cta:hover {
  box-shadow: 0 8px 24px rgba(250, 204, 17, 0.25);
}

  /* ══ BAS : boutons chevauchant le nom ══ */
  .hero-bottom {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding: 0 2.5rem 2.5rem;
    /* les boutons débordent au-dessus du nom */
  }

  /* Boutons positionnés en absolu, chevauchant le dessus du nom */
  .float-btns {
    position: relative;
    height: 0; /* réduit à 0 pour que les boutons chevauchent le nom en-dessous */
    pointer-events: none;
  }

  .float-btn {
    position: absolute;
    padding: 0.5rem 1.4rem;
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-body);
    white-space: nowrap;
    user-select: none;
    /* chevauchent le nom = bottom positif */
    bottom: -10px;
  }

  .float-btn-1 {
    background: var(--gold);
    color: var(--violet-dark);
    left: 32px;
    transform: rotate(-2deg);
    z-index: 3;
    bottom: 6px;
  }

  /* btn-2 mord sur btn-1 */
  .float-btn-2 {
    background: rgba(185,169,210,0.18);
    border: 1px solid rgba(185,169,210,0.5);
    color: rgba(255,255,255,0.9);
    left: 106px;
    transform: rotate(1.5deg);
    z-index: 2;
    bottom: -26px;
  }

  /* ══ NOM GÉANT — pleine largeur ══ */
  .hero-name {
    font-family: var(--font-script);
    font-weight: 400;
    /* taille calculée pour remplir ~100% de la largeur */
    color: rgba(255,255,255,0.92);
  font-size: clamp(3.5rem, 18vw, 24rem);
  line-height: 0.9;
  white-space: normal; /* 🔥 autorise le retour à la ligne */
  word-break: break-word;
    display: block;
    /* déborde légèrement à droite comme sur Arrodz */
    margin-left: -0.04em;
  }

  .hero-name em {
    font-weight: 300;
    color: var(--gold);
    /* en Cormorant pour contraste typographique */
    font-family: var(--font-title);
    font-size: clamp(3.5rem, 13vw, 15rem);
    font-style: normal;
    letter-spacing: -0.02em;
  }

@media (max-width: 900px) {

.nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: var(--violet-dark);

  opacity: 0;
  pointer-events: none;

  transform: translateY(-30px) scale(1.02);
  filter: blur(8px);

  transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links.light-mode {
    background: var(--creme);
  }

  .nav-links a{
    font-size: 1.72rem;
  }

  .nav-links.mobile {
    opacity: 1;
    pointer-events: auto;

    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .nav-linkscontact {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: var(--creme);

  opacity: 0;
  pointer-events: none;

  transform: translateY(-30px) scale(1.02);
  filter: blur(8px);

  transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}


  .nav-linkscontact a{
    font-size: 1.72rem;
  }

  .nav-linkscontact.mobile {
    opacity: 1;
    pointer-events: auto;

    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .burger {
    display: flex;
    z-index: 1001;
  }



  .hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* pas space-between */
    gap: 2rem; /* 🔥 spacing moderne */
    padding: 2rem 1.5rem;
    width: 100%;
    height: 100%;
  }

  .hero-bottom {
    order: 1;
    align-items: center;     /* 🔥 centre horizontal */
    justify-content: center; /* 🔥 centre vertical si besoin */
    text-align: center;
    margin-left: 0;          /* 🔥 supprime le push à droite */
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero-top {
    align-items: flex-start;   /* 🔥 gauche */
    text-align: center;
    max-width: 100%;
    order: 2;
    margin-top: 0px;
  }

  .hero-title-block h1 {
    text-align: center;
    font-size: clamp(0.4rem, 3.5vw, 1.5rem);
  }

  .hero-name {
    line-height: 1.2;
    margin-top : 60px;
  }

  .hero-cta {
    font-size: 0.7rem;
    margin-left: auto;
    margin-right: auto; /* 🔥 centre horizontal */
  }

    .float-btns {
    margin-bottom: 10px;
    position: relative;
    height: auto;
    display: flex;
    gap: 0.6rem;       /* espace entre les boutons */
    flex-wrap: wrap;   /* évite le débordement si écran petit */
    pointer-events: auto;
    justify-content: center;
  }

  .float-btn {
    position: static; /* 🔥 FINI l’absolu */
    transform: none;
    bottom : auto;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

}







  /* ══ SECTION APRÈS ══ */
 .work-track {
  height: 300vh;
  background: var(--creme);
}

.work-camera {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.horizontal-track {
  display: flex;
  gap: 3rem;
  padding: 0 3rem;
  will-change: transform;
  align-items: flex-end;
}

/* base item */
.work-item {
  flex-shrink: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

/* MEDIA */
.media {
  width: 100%;
  height: 100%;
  background: #ddd;
  border-radius: 18px;
}

/* LABEL discret style editorial */
.label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--font-body);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.v-1920 {
  width: 320px;
  height: 568px;
}

.v-1440 {
  width: 375px;
  height: 500px;
}

.v-1350 {
  width: 368px;
  height: 460px;
}

.h-1920 {
  width: 520px;
  height: 293px;
}

.media iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*BOUTON PORTFOLIO*/
.work-cta {
  background: var(--creme);

  padding: 0 3rem 5rem; /* 👈 plus de padding en haut */

  display: flex;
  justify-content: center;
  align-items: flex-start;

  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.work-cta.is-visible {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

.work-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.9rem 1.6rem;

  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;

  color: var(--violet);

  border: 1px solid rgba(74,48,130,0.4);
  border-radius: 999px;

  background: transparent;

  transition: all 0.35s ease;
}

.work-cta-button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--violet);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(250, 204, 17, 0.25);
}

.work-cta-button .arrow {
  transition: transform 0.35s ease;
}

.work-cta-button:hover .arrow {
  transform: translateX(6px);
}

.work-cta2 {
  background: var(--creme);

  padding: 0 3rem 5rem; /* 👈 plus de padding en haut */

  display: flex;
  justify-content: center;
  align-items: flex-start;


  transform: translateY(20px);
  transition: all 0.6s ease;
}


.work-cta-button2 {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.9rem 1.6rem;

  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;

  color: var(--violet);

  border: 1px solid rgba(74,48,130,0.4);
  border-radius: 999px;

  background: transparent;

  transition: all 0.35s ease;
}

.work-cta-button2:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--violet);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(250, 204, 17, 0.25);
}

.work-cta-button2 .arrow {
  transition: transform 0.35s ease;
}

.work-cta-button2:hover .arrow {
  transform: translateX(6px);
}

/*A propos*/
.manifesto {
  background: var(--creme);
  padding: 10rem 3rem;

  display: flex;
  justify-content: center;   /* 👈 centre horizontalement */
  align-items: center;
  margin-top: -5em;
}

.manifesto p {
  max-width: 1200px;

  font-family: var(--font-body);
  font-weight: 700;

  color: var(--violet);
  text-align: center;

  font-size: clamp(3rem, 4.5vw, 4.8rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.highlight {
  color: var(--gold); /* #facc11 */
  font-family: var(--font-script);
  font-size: clamp(4.5rem, 7.5vw, 7.5rem);
  font-weight: 200; 
  line-height: 0.8;
  text-transform: none;
}


/* =========================
   SERVICES GRID (wrapper)
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 6rem 3rem;

  position: relative;
  z-index: 1;
  background: var(--creme);
}

/* =========================
   SERVICE CARD
========================= */

.service-card {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;

  background: var(--violet);

  transition: transform 0.4s ease;
}

/* léger effet profondeur global */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.5),
    0 10px 25px rgba(0,0,0,0.5);
}

/* overlay glow subtil */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card:hover::after {
  opacity: 0.12;
}

/* =========================
   CENTRAGE CONTENU BASE
========================= */

.base {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 1rem;
  text-align: center;

  z-index: 2;

  transition: opacity 0.4s ease;
}

/* image */
.media-icon {
  width: 104px;
  height: auto;
}

.media-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 12px;
}

/* titre */
.base h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.95);
}

/* =========================
   OVERLAY (hover)
========================= */

.overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;  /* vertical */
  align-items: center;      /* horizontal */

  text-align: center;

  background: var(--creme);
  z-index: 3;

  clip-path: inset(0 0 100% 0);

  transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

/* activation hover */
.service-card:hover .overlay {
  clip-path: inset(0 0 0 0);
}

.service-card:hover .base {
  opacity: 0;
}


/* =========================
   TYPO OVERLAY
========================= */

.overlay h3 {
  font-family: var(--font-script);
  font-size: 3.1rem;
  font-weight: 400;

  margin-bottom: 1rem;

  color: var(--violet-dark);
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;

  color: var(--violet-dark);
}

.overlay li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .service-card {
    height: 380px;
  }
}

/*photo*/
.avatar-separator {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  margin-top: -5em;
}

.avatar-separator img {
  width: 210px;
  height: 210px;

  border-radius: 50%;
  object-fit: cover;

  border: 3px solid rgba(74,48,130,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transition: transform 0.4s ease;
}

.avatar-separator img:hover {
  transform: scale(1.05);
}

/* ── CTA SECTION ── */
  .section-cta {
    background: var(--violet);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .section-cta::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(250, 204, 17, 0.08);
    top: -100px; right: -100px;
    pointer-events: none;
  }

  .cta-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
  }

  .cta-title em { 
    color: var(--gold); 
    font-family: var(--font-script);
    font-size: 6.5rem;
    font-weight: 400;
    font-style: normal; 
  }

  .cta-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-cta-primary {
    background: var(--gold);
    color: var(--noir);
    padding: 0.9rem 2.25rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.2s;
    cursor: pointer;
    border: none;
    display: inline-block;
  }

  .btn-cta-primary:hover { transform: translateY(-2px); }

  .btn-cta-wa {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.9rem 2.25rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    display: inline-block;
  }

  .btn-cta-wa:hover { background: rgba(255,255,255,0.18); }

 @media (max-width: 900px) {
    .cta-title {
    font-size: 1.5rem;
  }

  .cta-title em { 
    font-size: 4.5rem;

  }

}

  /* ── FOOTER ── */
  footer {
    background: var(--violet-dark);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
  }

  .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }

  .footer-links a {
    text-decoration: none;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
  }

  .footer-links a:hover { color: var(--gold); }



/*-----------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------PAGE PORTFOLIO---------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------*/

  /* ══ HERO PORTFOLIO ══ */
  .portfolio-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 3rem 4rem;
    position: relative;
    overflow: hidden;
    background-image: url("../images/texture-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .portfolio-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(0,0,0,0.15) 0%, transparent 55%),
      linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.08) 100%);
    pointer-events: none;
  }

  .hero-nav-spacer { height: 80px; }

  .hero-meta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s 0.3s ease forwards;
  }



  .hero-title-wrap {
    position: relative;
    z-index: 2;
    overflow: hidden;
  }

  .portfolio-big-title {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(3rem, 11vw, 9rem);
    color: rgba(255,255,255,0.92);
    /*line-height: 0.84;*/
    letter-spacing: -0.03em;
    text-transform: uppercase;
    display: block;
    margin-left: -0.04em;
    opacity: 0;
    transform: translateY(60px);
    animation: fadeUp 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  /*.portfolio-big-title em {
    font-style: none;
    /*font-weight: 300;
    color: var(--gold);
    letter-spacing: -0.02em;
  }*/

  .hero-sub-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s 0.55s ease forwards;
  }

  .hero-sub-row a {
    text-decoration: none;
    }


  .hero-descriptor {
    font-family: var(--font-script);
    font-size: clamp(3rem, 3.5vw, 3.3rem);
    color: var(--violet-light);
    font-style: italic;
    max-width: 1040px;
  }

  .hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
  }

  .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--gold);
    animation: scanLineVertical 2s 1.5s ease-in-out infinite;
  }

  @keyframes scanLineVertical {
    0%   { top: -100%; }
    50%  { top: 0; }
    100% { top: 100%; }
  }

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

  /*responsive*/

  @media (max-width: 900px) {

  .portfolio-hero {
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .hero-meta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .portfolio-big-title {
    font-size: clamp(2.2rem, 10vw, 4rem);
    line-height: 1.25;
    text-align: center;
    margin-left: 0;
  }

  .hero-sub-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .hero-descriptor {
    font-size: clamp(2rem, 6.5vw, 2.7rem);
    max-width: 90%;
    text-align: center;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

}




  /* ══ FILTRES ══ */
  .filter-bar {
    background: var(--creme);
    padding: 2.5rem 3rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    position: sticky;
    top: 72px;
    z-index: 50;
    border-bottom: 1px solid rgba(74,48,130,0.08);
    padding-bottom: 1.5rem;
  }

  .filter-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--violet-light);
    margin-right: 0.8rem;
  }

  .filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(74,48,130,0.2);
    background: transparent;
    color: rgba(74,48,130,0.5);
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .filter-btn:hover {
    border-color: var(--violet);
    color: var(--violet);
  }

  .filter-btn.active {
    background: var(--violet);
    border-color: var(--violet);
    color: #fff;
  }

  .filter-btn.gold-active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--violet-dark);
  }

  /* ══ GRILLE PORTFOLIO ══ */
  .portfolio-grid {
    padding: 4rem 3rem 6rem;
    columns: 3;
    column-gap: 1.5rem;
  }

  .portfolio-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--violet);
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
  }

  .portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .portfolio-item:hover {
    box-shadow: 0 30px 70px rgba(50,32,90,0.4);
    transform: translateY(-6px);
  }

  /* Placeholder visuel pour les médias */
  .item-media {
    width: 100%;
    display: block;
    position: relative;
    background: var(--violet);
    overflow: hidden;
  }

  .item-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      rgba(255,255,255,0.04) 0%,
      rgba(0,0,0,0.25) 100%
    );
    pointer-events: none;
  }

  /* Placeholder couleur variée */
  .item-media.cm     { background: linear-gradient(135deg, #4a3082 0%, #7c5cbf 100%); }
  .item-media.graph  { background: linear-gradient(135deg, #32205a 0%, #4a3082 60%, #7c5cbf 100%); }
  .item-media.video  { background: linear-gradient(135deg, #1a1030 0%, #4a3082 100%); }
  .item-media.brand  { background: linear-gradient(135deg, #3d2870 0%, #6344a8 100%); }

  /* Icône type dans le placeholder */
  .item-media-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.12);
    letter-spacing: -0.02em;
    user-select: none;
  }

  .item-media-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* VIDEO iframe (IMPORTANT) */
.item-media-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* vidéo = fill container */
.item-media video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* IMPORTANT */
  display: block;
}

  /* Overlay hover */
  .item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(50,32,90,0.88);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
  }

  .portfolio-item:hover .item-overlay { opacity: 1; }

  .item-overlay-tag {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }

  .item-overlay-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
  }

  .item-overlay-desc {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-style: italic;
    font-size: 0.65rem;
    color: var(--creme);
    line-height: 1.5;
  }

  .item-overlay-cta {
    margin-top: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(250,204,17,0.6);
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
  }

  .item-overlay-cta:hover {
    background: var(--gold);
    color: var(--violet-dark);
  }

  /* Étiquette en bas à gauche */
  .item-label {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 0.6rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    mix-blend-mode: overlay;
    z-index: 2;
    transition: opacity 0.3s;
  }

  .portfolio-item:hover .item-label { opacity: 0; }

  /* Badge catégorie */
  .item-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(250,204,17,0.9);
    color: var(--violet-dark);
    z-index: 2;
    backdrop-filter: blur(4px);
  }

  .item-badge.cm    { background: rgba(185,169,210,0.25); color: #fff; border: 1px solid rgba(185,169,210,0.4); }
  .item-badge.graph { background: rgba(250,204,17,0.9); color: var(--violet-dark); }
  .item-badge.video { background: rgba(50,32,90,0.7); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
  .item-badge.brand { background: rgba(74,48,130,0.8); color: #fff; }

  /* ══ SECTION STATISTIQUES ══ */
  .stats-band {
    background: var(--violet-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cdefs%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='800' height='800' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .stat-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .stat-number {
    font-family: var(--font-script);
    font-size: clamp(7rem, 9vw, 9rem);
    color: rgba(255,255,255,0.9);
    line-height: 1;
  }

  .stat-number em {
    color: var(--gold);
    font-style: normal;
  }

  .stat-label {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  /*responsive*/
  @media (max-width: 900px) {

  stats-band {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3em 0em;
  }

  .stat-item {
    flex: 1 1 40%;
    text-align: center;
  }

  .stat-item:last-child {
    flex: 1 1 100%;
    max-width: 300px;
  }

  .stat-number {
    font-size: clamp(3.5rem, 12vw, 5.5rem);
  }

  .stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
  }

}


  /* ══ PROJET FEATURED ══ */
  .featured-section {
    padding: 6rem 3rem;
    background: var(--creme);
  }

  .featured-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--violet-light);
    margin-bottom: 1rem;
    display: block;
  }

  .featured-heading {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--violet-dark);
    line-height: 1.1;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .featured-heading em {
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
  }

  .featured-case {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .featured-case.reverse { direction: rtl; }
  .featured-case.reverse > * { direction: ltr; }

  .featured-case.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .case-visual {
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
  }

  .case-visual-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.1);
  }

    .case-visual-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* VIDEO iframe (IMPORTANT) */
.case-visual-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

  .case-visual.purple { background: linear-gradient(135deg, #32205a, #4a3082 60%, #7c5cbf); }
  .case-visual.deep   { background: linear-gradient(135deg, #1a1030, #32205a 50%, #4a3082); }
  .case-visual.mid    { background: linear-gradient(135deg, #4a3082, #6344a8, #32205a); }

  .case-visual-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    gap: 0.5rem;
  }

  .tag-pill {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .tag-pill.gold { background: var(--gold); color: var(--violet-dark); }
  .tag-pill.ghost { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); }

  .case-content { padding: 1rem 0; }

  .case-number {
    font-family: var(--font-script);
    font-size: 4.5rem;
    font-weight: 300;
    color: rgba(74,48,130,0.08);
    line-height: 1;
    margin-bottom: -1rem;
  }

  .case-title {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: var(--violet-dark);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .case-desc {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.8rem;
  }

  .case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .case-tag {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(74,48,130,0.08);
    color: var(--violet);
    border: 1px solid rgba(74,48,130,0.15);
  }

  .case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(74,48,130,0.3);
    color: var(--violet);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s ease;
  }

  .case-link .arrow { transition: transform 0.35s ease; }

  .case-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--violet-dark);
    box-shadow: 0 8px 24px rgba(250,204,17,0.25);
    transform: translateY(-2px);
  }

  .case-link:hover .arrow { transform: translateX(6px); }

  /* ══ CITATION INSPIRANTE ══ */
  .manifesto-band {
    background: var(--creme);
    padding: 8rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .manifesto-band p {
    max-width: 1100px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--violet);
    text-align: center;
    font-size: clamp(2.5rem, 3vw, 3rem);
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }

  .manifesto-band p.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .manifesto-band .highlight {
    color: var(--gold);
    font-weight: 100;
  }


  /* ══ LIGHTBOX ══ */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20,10,40,0.95);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
  }

  .lightbox.open {
    opacity: 1;
    pointer-events: all;
  }

  .lightbox-inner {
    position: relative;
    max-width: 800px;
    width: 80%;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .lightbox.open .lightbox-inner { transform: scale(1); }

  .lightbox-visual {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 6rem;
    font-weight: 300;
    color: rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
  }

  .lightbox-visual img {
      max-width: 100%;
      width: auto;
      height: auto;
      max-height: 80vh;
      object-fit: contain;
    }

    .lightbox-visual iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

  .lightbox-info {
    text-align: center;
  }

  .lightbox-tag {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
  }

  .lightbox-title {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.6rem;
  }

  .lightbox-desc {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
  }

  .lightbox-close {
    position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;

  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s;
  }

  .lightbox-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
  }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 900px) {
    .manifesto p {
      font-size: clamp(1.5rem, 3vw, 3rem);
    }
    .portfolio-grid { columns: 2; padding: 2rem 1.5rem 4rem; }
    .filter-bar { padding: 1.5rem 1.5rem 1rem; }
    .featured-case { grid-template-columns: 1fr; gap: 2rem; }
    .featured-case.reverse { direction: ltr; }
    .featured-section { padding: 4rem 1.5rem; }
    .site-nav { padding: 1.2rem 1.5rem; }
    .portfolio-hero { padding: 0 1.5rem 3rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
    .manifesto p .highlight {
      font-size: clamp(2.5rem, 5.5vw, 5.5rem);
    }

      /* ══ CITATION INSPIRANTE ══ */
  .manifesto-band {

    display : none;
  }

  
  }

    

  @media (max-width: 600px) {
    .portfolio-grid { columns: 1; }  }







/*-----------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------PAGE SERVICES---------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------*/


  /* ══ BANDE DÉFILANTE ══ */
  .ticker-band {
    background: var(--creme);
    padding: 1.8rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(74,48,130,0.08);
    position: relative;
  }

  .ticker-track {
    display: flex;
    white-space: nowrap;
    gap: 0;
    will-change: transform;
    animation: ticker 30s linear infinite;
  }

  .ticker-track:hover { animation-play-state: paused; }

  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1.8rem;
    padding: 0 1.8rem;
    flex-shrink: 0;
  }

  .ticker-text {
    font-family: var(--font-title);
    font-size: clamp(0.85rem, 1.1vw, 1.05rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.06em;
    color: rgba(74,48,130,0.35);
    text-transform: uppercase;
  }

  .ticker-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
  }

  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ══ INTRO STATEMENT ══ */
  .statement-section {
    background: var(--creme);
    padding: 7rem 3rem 5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .statement-label {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--violet-light); padding-top: 0.4rem;
    display: flex; flex-direction: column; gap: 0.5rem;
  }

  .statement-label::after {
    content: '';
    width: 40px; height: 1px;
    background: var(--violet-light); display: block;
    margin-top: 0.3rem;
  }

  .statement-text {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    color: var(--violet-dark);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.01em;
  }

  .statement-text em {
    font-style: italic; color: var(--violet); font-weight: 600;
  }

  .statement-text .underline-gold {
    position: relative; display: inline-block;
  }

  .statement-text .underline-gold::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 3px;
    background: var(--gold);
    border-radius: 2px;
  }

  /* ══ EXPERTISE SECTIONS (style Arrodz) ══ */
  .expertise-section { background: var(--creme); }

  .expertise-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    border-top: 1px solid rgba(74,48,130,0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }

  .expertise-block.visible {
    opacity: 1; transform: translateY(0);
  }

  .expertise-block.reverse { direction: rtl; }
  .expertise-block.reverse > * { direction: ltr; }

  /* Panneau texte */
  .expertise-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem 5rem 3rem;
  }

  .expertise-block.reverse .expertise-content {
    padding: 5rem 3rem 5rem 4rem;
  }

  .expertise-number {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 6rem;
    color: rgba(74,48,130,0.06);
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: -1.5rem;
    user-select: none;
  }

  .expertise-tag {
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; display: block;
  }

  .expertise-title {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--violet-dark);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 1.8rem;
  }

  .expertise-title em {
    font-family: var(--font-script);
    font-style: italic; font-weight: 300;
    color: var(--violet); font-size: 2.08em;
    line-height: 0.4;
    text-transform: none;
  }

  .expertise-desc {
    font-family: var(--font-body);
    font-style: italic; font-size: 1rem;
    color: var(--dark); line-height: 1.8;
    font-weight: 300; margin-bottom: 2.5rem;
  }

  /* Liste de prestations */
  .expertise-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.7rem;
    margin-bottom: 2.5rem;
  }

  .expertise-list li {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--violet);
  }

  .expertise-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* CTA de l'expertise */
  .expertise-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(74,48,130,0.3);
    color: var(--violet);
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; align-self: flex-start;
    transition: all 0.35s ease;
  }

  .expertise-cta .arrow { transition: transform 0.35s ease; }

  .expertise-cta:hover {
    background: var(--gold); border-color: var(--gold);
    color: var(--violet-dark);
    box-shadow: 0 8px 24px rgba(250,204,17,0.25);
    transform: translateY(-2px);
  }

  .expertise-cta:hover .arrow { transform: translateX(6px); }

  /* Panneau visuel */
  .expertise-visual {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .expertise-visual-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.6s ease;
  }

  .expertise-block:hover .expertise-visual-bg {
    transform: scale(1.03);
  }

  .expertise-visual-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, transparent 40%, rgba(20,10,40,0.3) 100%);
    pointer-events: none;
  }

  /* Placeholder visuel avec grand texte et texture */
  .visual-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 0.5rem;
  }

    .visual-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .visual-big-letter {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: clamp(8rem, 14vw, 14rem);
    font-weight: 300; line-height: 1;
    color: rgba(255,255,255,0.07);
    user-select: none;
  }

  /* Badge flottant sur le visuel */
  .visual-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    display: flex; flex-direction: column; gap: 0.3rem;
    z-index: 2;
  }

  .visual-badge-pill {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    backdrop-filter: blur(8px);
  }

  .visual-badge-pill.gold {
    background: rgba(250,204,17,0.9);
    color: var(--violet-dark);
  }

  .visual-badge-pill.ghost {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
  }

  /* Couleurs de fond */
  .visual-cm    { background: linear-gradient(135deg, #4a3082 0%, #7c5cbf 100%); }
  .visual-graph { background: linear-gradient(135deg, #32205a 0%, #4a3082 60%, #6344a8 100%); }
  .visual-video { background: linear-gradient(135deg, #1a1030 0%, #32205a 50%, #4a3082 100%); }
  .visual-brand { background: linear-gradient(135deg, #3d2870 0%, #6344a8 60%, #7c5cbf 100%); }

  /* ══ SECTION TARIFS / FORMULES ══ */
  .pricing-section {
    background: var(--violet-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cdefs%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='800' height='800' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    padding: 7rem 3rem;
    position: relative; overflow: hidden;
  }

  .pricing-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgba(250,204,17,0.04);
    top: -150px; right: -100px;
  }

  .pricing-eyebrow {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 1rem;
  }

  .pricing-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 300; color: rgba(255,255,255,0.9);
    text-transform: uppercase; letter-spacing: 0.02em;
    line-height: 1.1; margin-bottom: 1rem;
  }

  .pricing-heading em { font-style: italic; color: var(--gold); font-weight: 600; }

  .pricing-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 1.1rem;
    color: rgba(255,255,255,0.4); font-weight: 300;
    margin-bottom: 4rem; max-width: 500px; line-height: 1.7;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .pricing-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 0; transform: translateY(30px);
  }

  .pricing-card.visible {
    opacity: 1; transform: translateY(0);
  }

  .pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(250,204,17,0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  }

  .pricing-card.featured {
    background: rgba(250,204,17,0.06);
    border-color: rgba(250,204,17,0.25);
  }

  .pricing-card.featured:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(250,204,17,0.15);
  }

  .pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--violet-dark);
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.35rem 1rem; border-radius: 999px;
    white-space: nowrap;
  }

  .pricing-type {
    font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 1rem;
  }

  .pricing-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900; font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase; letter-spacing: -0.01em;
    margin-bottom: 1rem;
  }

  .pricing-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 0.95rem;
    color: rgba(255,255,255,0.4); font-weight: 300;
    line-height: 1.6; margin-bottom: 1.8rem;
  }

  .pricing-includes {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.6rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
  }

  .pricing-includes li {
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.78rem; font-weight: 400;
    color: rgba(255,255,255,0.6); letter-spacing: 0.02em;
  }

  .pricing-includes li .check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(250,204,17,0.15);
    border: 1px solid rgba(250,204,17,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.6rem; color: var(--gold);
  }

  .pricing-cta {
    display: block; text-align: center;
    padding: 0.8rem 1.5rem; border-radius: 999px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
  }

  .pricing-cta:hover {
    background: rgba(255,255,255,0.08);
    color: #fff; border-color: rgba(255,255,255,0.4);
  }

  .pricing-card.featured .pricing-cta {
    background: var(--gold); border-color: var(--gold);
    color: var(--violet-dark);
  }

  .pricing-card.featured .pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250,204,17,0.35);
  }

  .pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 1rem;
    color: rgba(255,255,255,0.25); font-weight: 300;
  }

  /* ══ FAQ ══ */
  .faq-section {
    background: var(--creme);
    padding: 7rem 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }

  .faq-left { position: sticky; top: 100px; }

  .faq-eyebrow {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--violet-light); display: block; margin-bottom: 1rem;
  }

  .faq-heading {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem); font-weight: 300;
    color: var(--violet-dark); text-transform: uppercase;
    letter-spacing: 0.02em; line-height: 1.2; margin-bottom: 2rem;
  }

  .faq-heading em { font-family: var(--font-script); font-style: none; color: var(--violet); font-weight: 300; text-transform: none; font-size :clamp(6rem, 7vw, 8rem); line-height: 0.5;}

  .faq-contact-hint {
    font-family: var(--font-body);
    font-style: italic; font-size: 1rem;
    color: var(--dark); font-weight: 300; line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .faq-contact-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--violet); text-decoration: none;
    border-bottom: 1px solid rgba(74,48,130,0.25);
    padding-bottom: 2px;
    transition: border-color 0.3s, color 0.3s;
  }

  .faq-contact-link:hover { color: var(--gold); border-color: var(--gold); }

  .faq-list { display: flex; flex-direction: column; gap: 0; }

  .faq-item {
    border-top: 1px solid rgba(74,48,130,0.1);
    overflow: hidden;
  }

  .faq-item:last-child { border-bottom: 1px solid rgba(74,48,130,0.1); }

  .faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 0; cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700; font-size: 0.9rem;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--violet-dark);
    gap: 1rem; user-select: none;
    transition: color 0.3s;
  }

  .faq-question:hover { color: var(--violet); }

  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid rgba(74,48,130,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1rem; color: var(--violet-light);
    transition: transform 0.4s ease, background 0.3s, border-color 0.3s;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold); border-color: var(--gold);
    color: var(--violet-dark);
  }

  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
  }

  .faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.5rem; }

  .faq-answer p {
    font-family: var(--font-body);
    font-style: italic; font-size: 1.05rem;
    color: var(--dark); line-height: 1.75;
    font-weight: 300;
  }



/*responsive*/

@media (max-width: 900px) {

  section {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .ticker-band {
    padding: 1rem 0;
  }

  .ticker-text {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .ticker-item {
    gap: 1rem;
    padding: 0 1rem;
  }

  .statement-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .statement-text {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .expertise-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .expertise-content {
    padding: 3rem 0.5rem;
    text-align: center;
    align-items: center;
  }

  .expertise-block.reverse .expertise-content {
    padding: 3rem 0.5rem;
}

  .expertise-number {
    font-size: 4rem;
    margin-bottom: -0.5rem;
  }

  .expertise-desc {
    font-size: 0.95rem;
  }

  .expertise-list {
    align-items: center;
  }

  .expertise-cta {
    align-self: center;
  }

  .expertise-visual {
    min-height: 300px;
  }

  .expertise-title {
    font-size: 1.8rem;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem;
  }

  .faq-left {
    position: relative;
    top: auto;
    text-align: center;
  }

  .faq-heading em {
    font-size: 3rem;
  }

  .faq-question {
    font-size: 0.85rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }



}











/*-----------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------PAGE A PROPOS---------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------*/


  /* ══ INTRO SECTION ══ */
  .intro-section {
    background: var(--creme);
    padding: 8rem 3rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .intro-portrait {
    aspect-ratio: 4/5;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--violet-dark) 0%, var(--violet) 60%, #7c5cbf 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .intro-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(250,204,17,0.08), transparent 60%);
  }

  .portrait-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.1);
    text-align: center;
    user-select: none;
  }

  .portrait-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

  .portrait-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--violet-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
  }

  .intro-content {}

  .intro-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--violet-light);
    margin-bottom: 1.5rem;
    display: block;
  }

  .intro-heading {
    font-family: var(--font-title);
    font-size: clamp(1.2rem, 2.5vw, 2.5rem);
    font-weight: 300;
    color: var(--violet-dark);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
  }

  .intro-heading em {
    font-style: italic;
    color: var(--violet);
    font-weight: 300;
    text-transform: none;
    font-family: var(--font-script);
    font-size: clamp(6.2rem, 7.5vw, 7.5rem);
    line-height: 0.8;
  }

  .intro-body {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--dark);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }

  .intro-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .value-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    border-radius: 14px;
    background: rgba(74,48,130,0.06);
    border: 1px solid rgba(74,48,130,0.1);
  }

  .value-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  .value-text {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--violet);
  }

  /* ══ SECTION FRISE CHRONOLOGIQUE ══ */
  .timeline-section {
    height: 500vh; /* espace pour le scroll */
    position: relative;
    background: var(--creme);
  }

  .timeline-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }

  /* Header frise */
  .timeline-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 10;
    padding: 2rem 3rem 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background: linear-gradient(to bottom, var(--creme) 60%, transparent);
  }

  .timeline-title-block {}

  .timeline-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--violet-light);
    display: block;
    margin-bottom: 0.3rem;
  }

  .timeline-heading {
    font-family: var(--font-title);
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 300;
    color: var(--violet-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .timeline-heading em {
    font-style: italic;
    color: var(--violet);
    font-weight: 600;
  }

  /* Indicateur de progression */
  .timeline-progress-wrap {
    display: none;
    align-items: center;
    gap: 1rem;
  }

  .timeline-progress-bar {
    width: 120px;
    height: 2px;
    background: rgba(74,48,130,0.12);
    border-radius: 999px;
    overflow: hidden;
    opacity : 0;
  }

  .timeline-progress-fill {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 999px;
    opacity : 0;
  }

  .timeline-progress-label {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    color: rgba(74,48,130,0.35);
    text-transform: uppercase;
    opacity : 0;
  }

  /* Ligne de temps centrale */
  .timeline-line {
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    height: 1px;
    background: rgba(74,48,130,0.1);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
  }

  /* Track horizontal */
  .timeline-camera {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
  }

  .timeline-track {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 6rem 3rem 0 3rem;
    will-change: transform;
  }

  /* ── Cartes de la frise ── */
  .timeline-card {
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    margin-right: 3rem;
  }

  /* Connecteur à la ligne centrale */
  .card-connector {
    position: absolute;
    left: 50%;
    width: 1px;
    background: rgba(74,48,130,0.2);
    transform: translateX(-50%);
  }

  .card-connector.up {
    bottom: -60px;
    height: 60px;
  }

  .card-connector.down {
    top: -60px;
    height: 60px;
  }

  /* Point sur la ligne */
  .card-dot {
    position: absolute;
    left: 50%;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--creme);
    transform: translateX(-50%);
    z-index: 2;
  }

  .card-connector.up  + .card-dot { bottom: -65px; }
  .card-connector.down ~ .card-dot { top: -65px; }

  /* ── Types de cartes ── */

  /* Carte ANNÉE (grand texte) */
  .card-year {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
  }

  .card-year .year-number {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 5rem;
    color: rgba(74,48,130,0.1);
    letter-spacing: -0.05em;
    line-height: 1;
    user-select: none;
  }

  .card-year .year-label {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--violet-light);
    margin-top: 0.3rem;
  }

  /* Carte ÉVÉNEMENT classique (au-dessus de la ligne) */
  .card-event-up {
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--violet);
    margin-bottom: 100px; /* repousse sous la ligne */
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  }

  .card-event-up:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(50,32,90,0.35);
  }

  /* Carte ÉVÉNEMENT (en dessous de la ligne) */
  .card-event-down {
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--violet);
    margin-top: 120px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  }

  .card-event-down:hover {
    transform: translateY(8px);
    box-shadow: 0 30px 60px rgba(50,32,90,0.35);
  }

  /* Carte LARGE photo */
  .card-wide {
    width: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--violet-dark);
    margin-bottom: 100px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  }

  .card-wide:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(50,32,90,0.35);
  }

  /* Carte PORTRAIT vertical */
  .card-portrait {
    width: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--violet);
    margin-top: 80px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  }

  .card-portrait:hover {
    transform: translateY(6px);
    box-shadow: 0 30px 60px rgba(50,32,90,0.35);
  }

  /* Carte CITATION */
  .card-quote {
    width: 320px;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: var(--gold);
    margin-bottom: 100px;
    transition: transform 0.4s ease;
  }

  .card-quote:hover { transform: translateY(-6px) rotate(-1deg); }

  .card-quote blockquote {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1rem;
    font-weight: 300;
    color: var(--violet-dark);
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .card-quote cite {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(50,32,90,0.5);
    font-style: normal;
  }

  /* Carte STAT */
  .card-stat {
    width: 180px;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: var(--violet-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    transition: transform 0.4s ease;
  }

  .card-stat:hover { transform: translateY(6px); }

  .stat-big {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .stat-big em { color: var(--gold); font-style: normal; }

  .stat-small {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.4rem;
    font-weight: 300;
  }

  /* Contenu commun des cartes visuelles */
  .card-media {
    width: 100%;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }

  .card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(20,10,40,0.5) 100%);
    pointer-events: none;
  }

  .card-media-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.1);
    user-select: none;
    line-height: 1;
    position: absolute;
    inset: 0;
  }

  .card-media-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: top;
  }

  .card-body {
    padding: 1.2rem 1.4rem 1.4rem;
  }

  .card-date {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.4rem;
  }

  .card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.92);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .card-desc {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
    font-weight: 300;
  }

  /* Couleurs de fonds variées */
  .bg-violet      { background: linear-gradient(135deg, #4a3082, #7c5cbf); }
  .bg-violet-dark { background: linear-gradient(135deg, #32205a, #4a3082); }
  .bg-deep        { background: linear-gradient(135deg, #1a1030, #32205a 60%, #4a3082); }
  .bg-gold-tint   { background: linear-gradient(135deg, #4a3082 0%, #6344a8 60%, rgba(250,204,17,0.15) 100%); }

  /* Fin de piste */
  .card-end {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
  }

  .card-end-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .card-end-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--violet);
  }

  /* ══ SECTION SAVOIR-FAIRE ══ */
  .skills-section {
    background: var(--violet-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cdefs%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='800' height='800' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    padding: 7rem 3rem;
    position: relative;
    overflow: hidden;
  }

  .skills-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(250,204,17,0.04);
    top: -150px; right: -100px;
  }

  .skills-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
  }

  .skills-heading {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 3.5vw, 3.5rem);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 4rem;
  }

  .skills-heading em {
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
  }

  .skills-magazine {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

/* CARD MAGAZINE */
.mag-card {
  display: grid;
  grid-template-columns: 2fr 0.5fr;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  align-items: center;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.mag-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250,204,17,0.35);
  background: rgba(255,255,255,0.05);
}

/* TITRE */
.mag-content h3 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

/* TEXTE */
.mag-content p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

/* ICONE */
.mag-visual {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

/* OUTILS */
.tools-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.tools-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 1.5rem;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tool-tag {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: all 0.25s;
}

.tool-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

  /* Outils */
  .tools-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .tools-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    display: block;
    margin-bottom: 1.5rem;
  }

  .tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .tool-tag {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    transition: all 0.25s;
  }

  .tool-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ══ SECTION UNIVERS / PASSIONS ══ */
  .universe-section {
    background: var(--creme);
    padding: 7rem 3rem;
  }

  .universe-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--violet-light);
    display: block;
    margin-bottom: 1rem;
  }

  .universe-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--violet-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 4rem;
  }

  .universe-heading em {
    font-style: italic;
    color: var(--violet);
    font-weight: 600;
  }

  .universe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .universe-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--violet);
    position: relative;
    aspect-ratio: 3/4;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
    opacity: 0;
    transform: translateY(30px);
  }

  .universe-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .universe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(50,32,90,0.3);
  }

  .universe-card-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
  }

  .universe-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(20,10,40,0.85));
  }

  .universe-card-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
  }

  .universe-card-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    font-weight: 300;
  }

  .uc1 { background: linear-gradient(135deg, #4a3082, #7c5cbf); }
  .uc2 { background: linear-gradient(135deg, #32205a, #4a3082 60%, #6344a8); }
  .uc3 { background: linear-gradient(135deg, #1a1030, #32205a); }
  .uc4 { background: linear-gradient(135deg, #3d2870, #7c5cbf); }



@media (max-width: 900px) {

  .intro-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
    text-align: center;
  }

  .intro-portrait {
    max-width: 320px;
    margin: 0 auto;
  }

  .intro-heading {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .intro-heading em {
    font-size: 4rem;
  }

  .intro-body {
    font-size: 1rem;
  }

  .intro-values {
    grid-template-columns: 1fr;
  }

  .timeline-header {
    padding: 0.5rem 0.5rem;
    }

  .timeline-heading {
    font-size: clamp(1.5rem, 2vw, 2rem);
  }

  .skills-section {
    padding: 5rem 1.5rem;
  }

  .skills-heading {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .mag-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .mag-visual {
    font-size: 2.5rem;
  }

  .universe-section {
    padding: 5rem 1.5rem;
  }

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

  .universe-heading {
    font-size: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .universe-grid {
    grid-template-columns: 1fr;
  }


}






/*-----------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------PAGE CONTACT---------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------*/

.contact-luxe-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  padding: 10rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--creme);
}

/* COLONNE GAUCHE */
.contact-main {
  display: flex;
  flex-direction: column;
}

.contact-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 2rem;
}

.contact-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--violet-dark);
  margin-bottom: 3rem;
}

/* FORM */
.contact-form-luxe {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-form-luxe input,
.contact-form-luxe textarea {
  border: none;
  border-bottom: 1px solid rgba(74,48,130,0.2);
  background: transparent;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.contact-form-luxe input:focus,
.contact-form-luxe textarea:focus {
  border-bottom: 1px solid var(--gold);
}

/* CHECKBOX FIX ALIGNEMENT */
.contact-consent {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: rgba(74,48,130,0.6);
}

.contact-consent input {
  margin: 0;
}

/* BUTTON */
.contact-form-luxe button {
  align-self: flex-start;
  background: transparent;
  border: none;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 3.4rem;
  color: #32205a;
  cursor: pointer;
  position: relative;
}

.contact-form-luxe button::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-form-luxe button:hover::after {
  transform: scaleX(1);
}

/* COLONNE DROITE */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 6rem;
}

.contact-block h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.5rem;
}

.contact-block p {
  font-size: 0.85rem;
  color: rgba(74,48,130,0.6);
  line-height: 1.5;
}

.contact-link {
  display: block;
  padding: 1.2rem;
  border: 1px solid rgba(74,48,130,0.15);
  text-decoration: none;
  color: var(--violet-dark);
  transition: all 0.3s ease;
}

.contact-link span {
  display: block;
  font-size: 0.8rem;
  color: rgba(74,48,130,0.5);
  margin-top: 0.3rem;
}

.contact-link:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-link.whatsapp:hover {
  background: rgba(37, 211, 102, 0.05);
}

.contact-link.instagram:hover {
  background: rgba(131, 58, 180, 0.05);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.icon {
  width: 18px;
  height: 18px;
  color: var(--violet-dark);
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-link:hover .icon {
  opacity: 1;
  transform: scale(1.05);
}




  /*responsive*/

  @media (max-width: 900px) {

    .contact-luxe-grid {
    grid-template-columns: 1fr; /* 👈 UNE seule colonne */
    gap: 3rem;
    padding: 6rem 1.5rem;
  }
  .contact-side {
  padding-top: 0;
  align-items: center;
  text-align: center;
}

  .contact-title {
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: center;
  }

  .contact-eyebrow {
    text-align: center;
  }

  .contact-main {
    align-items: center;
  }

  .contact-form-luxe {
    width: 100%;
  }

  .contact-form-luxe input,
  .contact-form-luxe textarea {
    font-size: 0.9rem;
  }

  .contact-form-luxe button {
    font-size: 2.2rem;
    align-self: center;
  }

  .contact-side {
    padding-top: 0;
    align-items: center;
    text-align: center;
  }

  .contact-link {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .icon-row {
    justify-content: center;
  }


  .nav-logo-textcontact {
    text-align: center;
    display: block;
    width: 100%;
  }

}



/*-----------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------PAGE MENTIONS---------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------*/




  /* ══ HEADER PAGE ══ */
  .page-header {
    padding: 9rem 3rem 4rem;
    border-bottom: 1px solid rgba(74,48,130,0.1);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }

  .header-left {}

  .header-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--violet-light);
    display: block;
    margin-bottom: 0.8rem;
  }

  .header-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--violet-dark);
    text-transform: uppercase;
    line-height: 1.5;
  }


  .header-title em {
    font-style: italic;
    color: var(--violet);
    font-weight: 600;
  }

  .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .header-date {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(74,48,130,0.3);
  }

  .header-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--violet-light);
    text-decoration: none;
    transition: color 0.3s;
  }

  .header-back:hover { color: var(--violet); }

  /* ══ LAYOUT PRINCIPAL ══ */
  .legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 3rem 8rem;
  }

  /* ── SOMMAIRE ── */
  .legal-toc {
    position: sticky;
    top: 96px;
    align-self: start;
    padding-right: 3rem;
  }

  .toc-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--violet-light);
    display: block;
    margin-bottom: 1.2rem;
  }

  .toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }

  .toc-list a {
    display: block;
    padding: 0.45rem 0.6rem;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: rgba(74,48,130,0.4);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color 0.25s, border-color 0.25s, padding-left 0.25s;
    line-height: 1.4;
  }

  .toc-list a:hover,
  .toc-list a.active {
    color: var(--violet);
    border-left-color: var(--gold);
    padding-left: 1rem;
  }

  /* ── CONTENU ── */
  .legal-content {
    border-left: 1px solid rgba(74,48,130,0.1);
    padding-left: 4rem;
  }

  /* Section légale */
  .legal-section {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(74,48,130,0.07);
    scroll-margin-top: 110px;
  }

  .legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .section-number {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 3.5rem;
    color: rgba(74,48,130,0.05);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: -0.8rem;
    user-select: none;
  }

  .section-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(74,48,130,0.1);
    display: block;
  }

  /* Texte du contenu */
  .legal-text {
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.85;
    font-style: italic;
  }

  .legal-text p { margin-bottom: 1rem; }
  .legal-text p:last-child { margin-bottom: 0; }

  .legal-text strong {
    font-style: normal;
    font-weight: 600;
    color: var(--violet-dark);
  }

  .legal-text a {
    color: var(--violet);
    text-decoration: none;
    border-bottom: 1px solid rgba(74,48,130,0.25);
    transition: border-color 0.3s, color 0.3s;
    font-style: normal;
  }

  .legal-text a:hover {
    color: var(--gold);
    border-color: var(--gold);
  }


  /* Bloc info encadré */
  .legal-info-block {
    background: rgba(74,48,130,0.04);
    border: 1px solid rgba(74,48,130,0.1);
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 1.4rem 1.6rem;
    margin: 1.5rem 0;
  }

  .legal-info-block .legal-text {
    font-size: 1rem;
  }

    @media (max-width: 900px) {
      .header-title {
      font-size: clamp(1rem, 3vw, 3rem);
    }

    .legal-info-block .legal-text {
    font-size: 0.7rem;
  }

  .legal-text {
    font-size: 1rem;
  }



  }

  /* ══ FOOTER ══ */
  footer {
    background: var(--violet-dark);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
  .footer-links { display: flex; gap: 1.5rem; list-style: none; }
  .footer-links a { text-decoration: none; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
  .footer-links a:hover { color: var(--gold); }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; padding: 3rem 1.5rem 5rem; }
    .legal-toc { display: none; }
    .legal-content { border-left: none; padding-left: 0; }
    .page-header { flex-direction: column; align-items: flex-start; padding: 8rem 1.5rem 3rem; }
    .header-right { align-items: flex-start; }
    .site-nav { padding: 1.2rem 1.5rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
  }