/* =====================================================================
   OLICUT — fondations de style du site public

   Ce fichier porte la charte : couleurs, typographie et niveaux de texte.
   Les gabarits PHP s'appuient dessus plutôt que de répéter des couleurs en
   dur, afin qu'un ajustement de charte se fasse à un seul endroit.

   Contrastes vérifiés selon la norme WCAG AA (rapport minimum 4,5 pour un
   texte courant). Voir la section « niveaux de texte » ci-dessous.
   ===================================================================== */

/* ---------------------------------------------------------------------
   Polices hébergées localement.
   Aucune requête vers Google ou Fontshare : les visiteurs ne sont pas
   exposés à un service tiers, et l'affichage ne dépend pas d'un CDN.
   « font-display: swap » affiche le texte immédiatement avec une police
   système, puis bascule dès que la police de marque est chargée.
   --------------------------------------------------------------------- */

@font-face {
  font-family: 'Tanker';
  src: url('/assets/polices/tanker-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Le jeu « latin-ext » couvre les caractères européens rares ; il n'est
   téléchargé que si la page en contient réellement, grâce à unicode-range. */
@font-face {
  font-family: 'Instrument Sans';
  src: url('/assets/polices/instrument-sans-latin-ext.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Instrument Sans';
  src: url('/assets/polices/instrument-sans-latin.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Mono';
  src: url('/assets/polices/space-mono-400-latin-ext.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Space Mono';
  src: url('/assets/polices/space-mono-400-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Mono';
  src: url('/assets/polices/space-mono-700-latin-ext.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Space Mono';
  src: url('/assets/polices/space-mono-700-latin.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* --- Couleurs de marque ------------------------------------------- */
  --marine:        #01060F;   /* fond principal */
  --marine-clair:  #070F27;   /* fond des sections alternées */
  --beige:         #FAF6F0;   /* texte principal */
  --indigo:        #948FFF;   /* accent, boutons */
  --indigo-clair:  #C6C5FF;   /* accent secondaire */
  --indigo-fonce:  #5B63FF;

  /* --- Niveaux de texte sur fond marine ------------------------------
     Chaque niveau indique son rapport de contraste mesuré.
     Ne pas descendre en dessous de --texte-tertiaire pour du texte lisible.
     ------------------------------------------------------------------- */
  --texte-principal:  rgba(250, 246, 240, 1);    /* 18,86 — titres, corps */
  --texte-courant:    rgba(250, 246, 240, .72);  /*  9,69 — paragraphes */
  --texte-secondaire: rgba(250, 246, 240, .66);  /*  8,17 — menu */
  --texte-doux:       rgba(250, 246, 240, .62);  /*  7,30 — texte discret */
  --texte-tertiaire:  rgba(250, 246, 240, .50);  /*  5,01 — mentions, légendes */

  /* Les valeurs .35 et .40 du prototype tombaient à 2,94 et 3,54, sous le
     seuil de 4,5 : le copyright et les titres de colonnes du pied de page
     étaient difficilement lisibles. Ils utilisent désormais
     --texte-tertiaire, sans changement perceptible de hiérarchie visuelle. */

  --bordure:      rgba(250, 246, 240, .10);
  --bordure-forte:rgba(250, 246, 240, .32);

  /* --- Typographie --------------------------------------------------- */
  --titre:    'Tanker', 'Arial Black', sans-serif;
  --courant:  'Instrument Sans', system-ui, -apple-system, sans-serif;
  --mono:     'Space Mono', ui-monospace, monospace;

  /* --- Rythme -------------------------------------------------------- */
  --marge-page:    5vw;
  --section-haute: 150px;
  --section:       120px;
  --section-basse: 72px;
}

/* --- Base ------------------------------------------------------------ */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: var(--marine);
  color: var(--texte-principal);
  font-family: var(--courant);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--titre);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

::selection { background: var(--indigo); color: var(--marine); }

/* Repère visuel au clavier : indispensable pour la navigation sans souris. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Niveaux de texte ------------------------------------------------ */

.olc-surtitre {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--indigo);
}

.olc-mention {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--texte-tertiaire);
}

/* Pied de page : titres de colonnes et copyright.
   Anciennement à .4 et .35 d'opacité, sous le seuil d'accessibilité. */
.olc-foot-titre {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--texte-tertiaire);
}

.olc-foot-legal {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--texte-tertiaire);
}

/* --- Respect des préférences système --------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =====================================================================
   COMPOSANTS PARTAGÉS
   ===================================================================== */

.olc-evitement {
  position: absolute;
  left: -9999px;
}
.olc-evitement:focus {
  left: 12px; top: 12px;
  z-index: 200;
  background: var(--beige);
  color: var(--marine);
  padding: 12px 18px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 13px;
}

/* --- Boutons --------------------------------------------------------- */

.olc-btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.olc-btn-principal { background: var(--indigo); color: var(--marine); }
.olc-btn-principal:hover { background: var(--indigo-clair); }
.olc-btn-fantome {
  background: transparent;
  color: var(--texte-principal);
  border-color: var(--bordure-forte);
}
.olc-btn-fantome:hover { border-color: var(--beige); }
.olc-btn-large { padding: 18px 30px; }

/* Bouton « Nous contacter » de la barre de navigation, cerné d'un dégradé
   animé. Le dégradé tourne via une propriété personnalisée animée. */
@property --olcAngle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
@keyframes olcRotation { to { --olcAngle: 360deg; } }
@keyframes olcRespire { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }

.olc-pastille {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--texte-principal);
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--marine);
  overflow: hidden;
  white-space: nowrap;
  isolation: isolate;
  animation: olcRespire 3.4s ease-in-out infinite;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1);
}
.olc-pastille::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: conic-gradient(from var(--olcAngle, 0deg),
    #5B63FF, #948FFF, #C6C5FF, #948FFF, #5B63FF, #7B6BFF, #948FFF, #C6C5FF, #5B63FF);
  animation: olcRotation 6s linear infinite;
}
.olc-pastille::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1.5px;
  border-radius: 999px;
  background: var(--marine);
}
.olc-pastille:hover { color: #fff; }
.olc-pastille:hover::before { animation-duration: 3s; }
.olc-pastille:active { transform: scale(.95); }

/* --- Titres et textes ------------------------------------------------ */

.olc-surtitre {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--indigo);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.olc-surtitre-clair { color: var(--indigo-clair); letter-spacing: .26em; }

.olc-titre-section {
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: .96;
  color: var(--texte-principal);
  margin: 0 0 24px;
}

.olc-texte-doux {
  font-size: 16px;
  line-height: 1.65;
  color: var(--texte-courant);
  max-width: 52ch;
}

.olc-accent { color: var(--indigo); }

@keyframes olcPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
.olc-point {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--indigo);
  animation: olcPulse 2s ease-in-out infinite;
  flex: 0 0 8px;
}

/* --- Apparition au défilement ---------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].visible { opacity: 1; transform: none; }

/* Sans JavaScript, ou si les animations sont désactivées, le contenu doit
   rester visible : on ne masque jamais durablement du texte. */
.olc-sans-js [data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   NAVIGATION
   ===================================================================== */

.olc-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--marge-page);
  background: rgba(1, 6, 15, .5);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bordure);
}
.olc-nav-logo img { height: 32px; width: auto; display: block; }

.olc-nav-liens {
  display: flex;
  gap: 34px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--texte-secondaire);
}
.olc-nav-liens a { color: var(--texte-secondaire); transition: color .2s ease; }
.olc-nav-liens a:hover,
.olc-nav-liens a[aria-current="page"] { color: var(--texte-principal); }

.olc-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.olc-burger span { display: block; width: 26px; height: 2px; background: var(--beige); }

.olc-menu-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--marine);
  display: flex;
  flex-direction: column;
  padding: 24px var(--marge-page);
  overflow-y: auto;
}
.olc-menu-mobile[hidden] { display: none; }
.olc-menu-tete {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.olc-menu-tete img { height: 22px; width: auto; }
.olc-menu-tete button {
  background: none;
  border: none;
  color: var(--beige);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
}
.olc-menu-mobile nav { display: flex; flex-direction: column; }
.olc-menu-mobile nav a {
  font-family: var(--titre);
  text-transform: uppercase;
  font-size: 44px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bordure);
}
.olc-menu-cta {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--marine);
  background: var(--indigo);
  padding: 16px 24px;
  border-radius: 999px;
  text-align: center;
}

@media (max-width: 920px) {
  .olc-nav-liens, .olc-nav-cta { display: none; }
  .olc-burger { display: flex; }
}

/* =====================================================================
   BANDEAU D'OUVERTURE
   ===================================================================== */

.olc-hero {
  position: relative;
  height: 100dvh;
  min-height: 620px;
  max-height: 1000px;
  overflow: hidden;
}
.olc-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.olc-hero-voile {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(1, 6, 15, .5) 0%, rgba(1, 6, 15, .12) 35%,
    rgba(1, 6, 15, .55) 70%, rgba(1, 6, 15, .97) 100%);
}
.olc-hero-contenu {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--marge-page) 7vh;
}
.olc-hero-titre {
  font-size: clamp(52px, 9.6vw, 150px);
  line-height: .88;
  color: var(--texte-principal);
  margin: 0 0 34px;
  letter-spacing: .01em;
}
.olc-hero-bas {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.olc-hero-texte {
  font-size: 17px;
  line-height: 1.55;
  color: var(--texte-courant);
  max-width: 44ch;
  margin: 0;
}

@keyframes olcDefile {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
.olc-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--texte-tertiaire);
}
.olc-hero-trait {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(250, 246, 240, .5), transparent);
  animation: olcDefile 1.8s ease-in-out infinite;
}

@media (max-width: 560px) {
  .olc-hero-bas .olc-btn { display: block; width: 100%; text-align: center; }
  /* Le bouton occupe toute la largeur et recouvre alors l'indicateur, qui
     est positionné en absolu au même endroit. Sur un écran tactile, inviter
     à faire défiler n'apprend de toute façon rien au visiteur. */
  .olc-hero-scroll { display: none; }
}

/* =====================================================================
   BANDEAU DES LOGOS
   ===================================================================== */

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

.olc-marque {
  background: var(--marine);
  border-top: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  padding: 40px 0;
  overflow: hidden;
}
.olc-marque-piste {
  display: flex;
  width: max-content;
  animation: olcMarquee 46s linear infinite;
}
.olc-marque-lot {
  display: flex;
  gap: 64px;
  padding: 0 32px;
  align-items: center;
}
.olc-marque img {
  width: 112px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
  /* Les logos sont fournis en noir : on les rend blancs pour le fond marine. */
  filter: brightness(0) invert(1);
  opacity: .5;
  transition: opacity .3s ease;
}
.olc-marque img:hover { opacity: 1; }
.olc-marque-piste:hover { animation-play-state: paused; }

/* =====================================================================
   SALLE DE PROJECTION
   ===================================================================== */

.olc-projection {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section) 0;
}
.olc-projection-fond {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.olc-projection-fond.actif { opacity: 1; }
.olc-projection-fond img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.olc-projection-voile {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(1, 6, 15, .9) 0%, rgba(1, 6, 15, .55) 42%, rgba(1, 6, 15, .2) 100%);
  pointer-events: none;
}
.olc-projection-contenu {
  position: relative;
  padding: 0 var(--marge-page);
}
.olc-projection .olc-surtitre { margin-bottom: 52px; }

.olc-projection-liste { list-style: none; margin: 0; padding: 0; }

.olc-projet {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bordure);
}
.olc-projet-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--texte-tertiaire);
  flex: 0 0 34px;
}
.olc-projet-nom {
  font-family: var(--titre);
  text-transform: uppercase;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.12;
  letter-spacing: .01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 246, 240, .32);
  transition: color .4s ease, padding-right .4s ease, -webkit-text-stroke .4s ease;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.olc-projet.actif .olc-projet-nom,
.olc-projet:hover .olc-projet-nom {
  color: var(--texte-principal);
  -webkit-text-stroke: 0;
  padding-right: 150px;
}
.olc-projet-cue, .olc-projet-format {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .4s ease;
  font-family: var(--mono);
  text-transform: uppercase;
  white-space: nowrap;
}
.olc-projet-cue {
  right: 0;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--marine);
  background: var(--indigo);
  padding: 7px 12px;
  border-radius: 2px;
}
.olc-projet-format {
  right: 140px;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--indigo-clair);
}
.olc-projet.actif .olc-projet-cue,
.olc-projet:hover .olc-projet-cue,
.olc-projet.actif .olc-projet-format,
.olc-projet:hover .olc-projet-format { opacity: 1; }

@media (max-width: 1200px) {
  .olc-projet-format { display: none; }
  .olc-projet.actif .olc-projet-nom,
  .olc-projet:hover .olc-projet-nom { padding-right: 0; }
}
@media (max-width: 760px) {
  .olc-projet-cue { display: none; }
  .olc-projet-nom { color: var(--texte-principal); -webkit-text-stroke: 0; }
}

/* =====================================================================
   MANIFESTE
   ===================================================================== */

.olc-manifeste { padding: var(--section-haute) var(--marge-page); }
.olc-manifeste-contenu { max-width: 1000px; margin: 0 auto; text-align: center; }
.olc-manifeste .olc-surtitre { justify-content: center; margin-bottom: 28px; }
.olc-manifeste-photo {
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 32px;
  border: 1px solid rgba(148, 143, 255, .4);
}
.olc-manifeste-titre {
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: .98;
  color: var(--texte-principal);
  margin: 0;
}
.olc-manifeste-texte {
  font-size: 18px;
  line-height: 1.65;
  color: var(--texte-courant);
  margin: 40px auto 0;
  max-width: 52ch;
}
.olc-manifeste-signature {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--texte-tertiaire);
  margin-top: 22px;
}

/* =====================================================================
   OFFRES (carrousel de l'accueil)
   ===================================================================== */

.olc-offres-accueil { padding: 0 0 var(--section); }
.olc-offres-tete {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 var(--marge-page);
  margin-bottom: 44px;
}
.olc-offres-tete .olc-titre-section { max-width: 16ch; margin: 0; }

.olc-bande {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 var(--marge-page) 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.olc-bande::-webkit-scrollbar { display: none; }

.olc-carte-offre {
  flex: 0 0 min(420px, 82vw);
  scroll-snap-align: start;
  position: relative;
  height: 540px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--marine-clair);
  display: block;
}
.olc-carte-fond, .olc-carte-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* La vidéo recouvre l'image d'attente : tant qu'elle n'a pas décodé sa
   première image, elle afficherait un rectangle noir. On ne la révèle donc
   qu'une fois la lecture réellement commencée. */
.olc-carte-video { opacity: 0; transition: opacity .6s ease; }
.olc-carte-video.prete { opacity: 1; }
.olc-carte-voile {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(1, 6, 15, .95) 0%, rgba(1, 6, 15, .45) 45%, rgba(1, 6, 15, .15) 100%);
}
.olc-carte-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--texte-courant);
}
.olc-carte-fleche {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--marine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: all .45s ease;
}
.olc-carte-offre:hover .olc-carte-fleche { opacity: 1; transform: none; }
.olc-carte-bas { position: absolute; left: 24px; right: 24px; bottom: 24px; }
.olc-carte-bas h3 {
  font-size: 34px;
  line-height: .98;
  color: var(--texte-principal);
  margin-bottom: 12px;
}
.olc-carte-bas p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--texte-courant);
  margin: 0 0 18px;
}

.olc-puces { display: flex; flex-wrap: wrap; gap: 8px; }
.olc-puces span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--indigo-clair);
  border: 1px solid rgba(198, 197, 255, .35);
  padding: 6px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

/* =====================================================================
   APPROCHE
   ===================================================================== */

.olc-approche {
  padding: var(--section) var(--marge-page);
  background: var(--marine-clair);
  border-top: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
}
.olc-approche-grille {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  /* Les deux colonnes partagent la même hauteur : la photo s'étire pour
     rejoindre le bas des étapes, au lieu de les dépasser. */
  align-items: stretch;
}
.olc-approche-colonne {
  display: flex;
  flex-direction: column;
}
.olc-approche-image {
  position: relative;
  margin: 32px 0 0;
  border-radius: 6px;
  overflow: hidden;
  /* Occupe la hauteur restante de la colonne, dans des limites raisonnables :
     en deçà elle serait écrasée, au-delà elle allongerait toute la section. */
  flex: 1;
  min-height: 340px;
  max-height: 560px;
}
.olc-approche-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.olc-approche-image figcaption {
  position: absolute;
  left: 20px; bottom: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--texte-principal);
  text-shadow: 0 1px 6px rgba(1, 6, 15, .9);
}

.olc-etapes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.olc-etapes li {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 32px;
  background: rgba(1, 6, 15, .45);
  border: 1px solid var(--bordure);
  border-radius: 6px;
}
.olc-etape-num {
  font-family: var(--titre);
  font-size: 22px;
  color: var(--marine);
  background: var(--indigo);
  flex: 0 0 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.olc-etapes h3 { font-size: 24px; line-height: 1; margin-bottom: 12px; }
.olc-etapes p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--texte-courant);
  margin: 0;
  max-width: 52ch;
}

@media (max-width: 920px) {
  .olc-approche-grille { grid-template-columns: 1fr; gap: 40px; }
}

/* =====================================================================
   TÉMOIGNAGES
   ===================================================================== */

.olc-temoignages {
  padding: 130px var(--marge-page);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.olc-temoignages .olc-surtitre { justify-content: center; margin-bottom: 44px; }
.olc-temoignage { margin: 0; }
.olc-temoignage[hidden] { display: none; }
.olc-temoignage img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 30px;
  display: block;
  border: 1px solid rgba(148, 143, 255, .4);
}
.olc-temoignage p {
  font-family: var(--titre);
  text-transform: uppercase;
  font-size: clamp(26px, 3.8vw, 52px);
  line-height: 1.06;
  color: var(--texte-principal);
  margin: 0 0 36px;
}
.olc-temoignage footer {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .12em;
}
.olc-temoignage-nom { color: var(--indigo-clair); }
.olc-temoignage-role { color: var(--texte-tertiaire); margin-left: 8px; }

.olc-puces-nav { display: flex; justify-content: center; gap: 12px; margin-top: 48px; }
.olc-puces-nav button {
  width: 34px; height: 4px;
  border: none;
  border-radius: 2px;
  background: rgba(250, 246, 240, .2);
  cursor: pointer;
  padding: 0;
  transition: background .3s ease;
}
.olc-puces-nav button.actif { background: var(--indigo); }

/* =====================================================================
   BLOC DE RAPPEL
   ===================================================================== */

.olc-rappel {
  position: relative;
  padding: var(--section-haute) var(--marge-page);
  overflow: hidden;
  border-top: 1px solid var(--bordure);
  text-align: center;
}
.olc-rappel-fond {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}
.olc-rappel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 6, 15, .7), rgba(1, 6, 15, .92));
}
.olc-rappel-contenu { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.olc-rappel .olc-surtitre { justify-content: center; margin-bottom: 26px; }
.olc-rappel-titre {
  font-size: clamp(40px, 7vw, 110px);
  line-height: .9;
  color: var(--texte-principal);
  margin: 0 0 38px;
}
.olc-rappel-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.olc-mention {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--texte-tertiaire);
  margin: 0;
}

@media (max-width: 560px) {
  .olc-rappel-actions .olc-btn { display: block; width: 100%; }
}

/* =====================================================================
   PIED DE PAGE
   ===================================================================== */

.olc-pied {
  padding: 76px var(--marge-page) 40px;
  border-top: 1px solid var(--bordure);
}
.olc-pied-grille {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--bordure);
}
.olc-pied-grille img { height: 26px; width: auto; display: block; margin-bottom: 18px; }
.olc-pied-grille p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--texte-courant);
  margin: 0;
  max-width: 300px;
}
.olc-foot-titre { margin-bottom: 18px; }
.olc-pied-liens {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--texte-courant);
}
.olc-pied-liens a:hover { color: var(--texte-principal); }

.olc-pied-bas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
}
.olc-pied-legal { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.olc-pied-legal button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.olc-pied-legal a:hover, .olc-pied-legal button:hover { color: var(--texte-principal); }

@media (max-width: 920px) {
  .olc-pied-grille { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .olc-pied-grille { grid-template-columns: 1fr; gap: 32px; }
}

/* =====================================================================
   LECTEUR VIDÉO DIFFÉRÉ
   ===================================================================== */

.olc-video { margin: 0; }
.olc-video-cadre {
  position: relative;
  aspect-ratio: var(--olc-ratio, 16 / 9);
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: var(--marine-clair);
}
.olc-video-cadre img,
.olc-video-cadre iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.olc-video-lire {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(1, 6, 15, .45);
  border: none;
  cursor: pointer;
  color: var(--texte-principal);
  transition: background .3s ease;
  padding: 24px;
}
.olc-video-lire:hover { background: rgba(1, 6, 15, .25); }
.olc-video-triangle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--indigo);
  display: flex;
  position: relative;
  flex: 0 0 64px;
}
.olc-video-triangle::after {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-left: 18px solid var(--marine);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
.olc-video-libelle {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
/* Cette mention se superpose à une miniature dont on ne maîtrise pas la
   luminosité : sur une image claire, le blanc à 50 % devenait illisible.
   Elle porte donc son propre fond sombre, ce qui rétablit le contraste
   quelle que soit la photo derrière. */
.olc-video-mention {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  color: var(--texte-courant);
  max-width: 36ch;
  text-align: center;
  background: rgba(1, 6, 15, .82);
  padding: 7px 12px;
  border-radius: 4px;
}

/* Le visiteur qui a déjà accepté les contenus tiers n'a pas à être
   réaverti devant chaque film : la classe est posée par le script. */
.olc-video-cadre.consenti .olc-video-mention { display: none; }
.olc-video figcaption {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--texte-tertiaire);
  margin-top: 14px;
}

/* =====================================================================
   CONSENTEMENT
   ===================================================================== */

.olc-consentement {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  max-width: 720px;
  margin: 0 auto;
  background: var(--marine-clair);
  border: 1px solid var(--bordure-forte);
  border-radius: 8px;
  padding: 22px 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.olc-consentement[hidden] { display: none; }
.olc-consentement-texte { flex: 1; min-width: 260px; }
.olc-consentement h2 {
  font-family: var(--courant);
  text-transform: none;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
}
.olc-consentement p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--texte-courant);
  margin: 0;
}
.olc-consentement a { text-decoration: underline; }
.olc-consentement-boutons { display: flex; gap: 10px; flex-wrap: wrap; }
.olc-consentement .olc-btn { font-size: 12px; padding: 12px 20px; }

@media (max-width: 560px) {
  .olc-consentement-boutons { width: 100%; }
  .olc-consentement .olc-btn { flex: 1; text-align: center; }
}

/* =====================================================================
   PAGE 404
   ===================================================================== */

.olc-erreur {
  padding: 140px var(--marge-page) var(--section);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.olc-erreur .olc-surtitre { justify-content: center; }
.olc-erreur h1 {
  font-size: clamp(40px, 7vw, 88px);
  line-height: .94;
  margin: 0 0 24px;
}
.olc-erreur .olc-texte-doux { margin: 0 auto 32px; }
.olc-erreur-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.olc-erreur-suggestions { margin-top: 80px; }
.olc-erreur-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.olc-erreur-grille a { display: block; }
.olc-erreur-grille img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
}
.olc-erreur-grille span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--texte-tertiaire);
}
@media (max-width: 620px) {
  .olc-erreur-grille { grid-template-columns: 1fr; }
}

/* =====================================================================
   EN-TÊTE DE PAGE INTÉRIEURE
   ===================================================================== */

.olc-entete { padding: 90px var(--marge-page) 40px; }
.olc-entete .olc-surtitre { margin-bottom: 24px; }
.olc-entete-titre {
  font-size: clamp(48px, 8vw, 120px);
  line-height: .9;
  margin: 0;
}
.olc-entete-texte {
  font-size: 18px;
  line-height: 1.6;
  color: var(--texte-doux);
  max-width: 56ch;
  margin: 30px 0 0;
}

/* =====================================================================
   FILTRES — barre collante sous la navigation
   ===================================================================== */

.olc-filtres {
  position: sticky;
  top: 73px;
  z-index: 50;
  background: rgba(1, 6, 15, .85);
  backdrop-filter: blur(12px);
  padding: 20px var(--marge-page);
  border-top: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.olc-filtre {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--texte-courant);
  background: transparent;
  border: 1px solid var(--bordure-forte);
  padding: 9px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s ease;
}
.olc-filtre:hover { color: var(--texte-principal); border-color: var(--beige); }
.olc-filtre.actif {
  color: var(--marine);
  background: var(--indigo);
  border-color: var(--indigo);
}

/* =====================================================================
   GRILLE DES CRÉATIONS
   Le texte est posé sur l'image, dans une carte au format 4/3.
   ===================================================================== */

.olc-grille-creations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 36px var(--marge-page) 100px;
}

.olc-carte-creation {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  background: #0A1330;
  aspect-ratio: 4 / 3;
}
.olc-carte-creation[hidden] { display: none; }

.olc-carte-creation-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}
.olc-carte-creation:hover .olc-carte-creation-image { transform: scale(1.06); }

.olc-carte-creation-voile {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(1, 6, 15, .9) 0%, rgba(1, 6, 15, .05) 60%);
}

.olc-carte-creation-fleche {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C6C5FF, #948FFF 45%, #5B63FF);
  color: var(--marine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  box-shadow: 0 8px 24px rgba(91, 99, 255, .4);
  opacity: 0;
  transform: translate(-8px, 8px) scale(.7);
  transition: opacity .45s ease, transform .5s cubic-bezier(.2, .7, .2, 1);
}
.olc-carte-creation:hover .olc-carte-creation-fleche,
.olc-carte-creation:focus-visible .olc-carte-creation-fleche {
  opacity: 1;
  transform: none;
}

.olc-carte-creation-texte {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: block;
}
.olc-carte-creation-meta {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--indigo-clair);
  margin-bottom: 10px;
}
.olc-carte-creation-client {
  display: block;
  font-family: var(--titre);
  text-transform: uppercase;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  color: var(--texte-principal);
  margin-bottom: 6px;
}
.olc-carte-creation-titre {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--texte-courant);
}

.olc-vide {
  padding: 60px var(--marge-page) var(--section);
  color: var(--texte-tertiaire);
  font-family: var(--mono);
}

@media (max-width: 1100px) { .olc-grille-creations { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  {
  .olc-grille-creations { grid-template-columns: 1fr; }
  .olc-filtres { top: 65px; overflow-x: auto; flex-wrap: nowrap; }
  .olc-filtre { white-space: nowrap; }
}

/* =====================================================================
   FICHE D'UNE CRÉATION
   ===================================================================== */

.olc-fiche-hero {
  position: relative;
  height: 82vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.olc-fiche-hero-jouable { cursor: pointer; }

.olc-fiche-fond {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.olc-fiche-voile {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(1, 6, 15, .4) 0%, rgba(1, 6, 15, .15) 40%, rgba(1, 6, 15, .9) 100%);
}

/* Bouton de lecture centré, comme dans le prototype. */
.olc-fiche-lire {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--texte-principal);
  /* Décalé vers le haut : le bas du bandeau est occupé par le nom du client
     et le fil de retour, qu'il ne doit pas chevaucher. */
  padding: 24px 24px 190px;
}
.olc-fiche-triangle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--indigo);
  position: relative;
  flex: 0 0 84px;
  transition: transform .3s ease, background .3s ease;
}
.olc-fiche-triangle::after {
  content: "";
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  border-left: 24px solid var(--marine);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
.olc-fiche-lire:hover .olc-fiche-triangle { transform: scale(1.08); background: var(--indigo-clair); }
/* Une iframe insérée occupe tout le bandeau. */
.olc-fiche-hero iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.olc-fiche-hero-contenu {
  position: relative;
  width: 100%;
  padding: 0 var(--marge-page) 44px;
  pointer-events: none;
}
.olc-fiche-hero-contenu a { pointer-events: auto; }

.olc-retour {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--texte-courant);
  margin-bottom: 22px;
}
.olc-retour:hover { color: var(--texte-principal); }

.olc-fiche-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--indigo-clair);
  margin: 0 0 16px;
}
.olc-fiche-client {
  font-size: clamp(40px, 7vw, 104px);
  line-height: .9;
  max-width: 18ch;
  margin: 0;
}

/* --- Introduction ---------------------------------------------------- */

.olc-fiche-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 90px var(--marge-page);
}
.olc-fiche-titre {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
  margin: 0 0 28px;
}
.olc-fiche-chapo {
  font-size: 19px;
  line-height: 1.6;
  color: var(--texte-courant);
  margin: 0;
  max-width: 52ch;
}
.olc-fiche-services {
  border-top: 1px solid rgba(250, 246, 240, .15);
  padding-top: 26px;
}
.olc-fiche-services-titre {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--texte-tertiaire);
  margin: 0 0 20px;
}
.olc-services { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.olc-services li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--indigo-clair);
  border: 1px solid rgba(198, 197, 255, .35);
  padding: 8px 12px;
  border-radius: 2px;
}

/* --- Les deux films -------------------------------------------------- */

.olc-fiche-films { padding: 20px var(--marge-page) 90px; }
.olc-fiche-films .olc-surtitre { margin-bottom: 24px; }
.olc-diptyque { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* --- Galerie --------------------------------------------------------- */

.olc-galerie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 20px var(--marge-page) 90px;
}
.olc-galerie figure { margin: 0; }
/* La première photo tient toute la largeur, en 16/9. */
.olc-galerie-large { grid-column: 1 / 3; }
.olc-galerie img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  background: #0A1330;
}
.olc-galerie-large img { aspect-ratio: 16 / 9; }
.olc-galerie figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--texte-tertiaire);
  margin-top: 10px;
}

/* --- Citation -------------------------------------------------------- */

.olc-fiche-citation {
  padding: var(--section-basse) var(--marge-page);
  border-top: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  background: var(--marine-clair);
}
.olc-fiche-citation blockquote { margin: 0 auto; max-width: 1000px; text-align: center; }
.olc-fiche-citation p {
  font-family: var(--titre);
  text-transform: uppercase;
  font-size: clamp(24px, 3.4vw, 46px);
  line-height: 1.1;
  margin: 0 0 26px;
}
.olc-fiche-citation footer {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--indigo-clair);
}

/* --- Création suivante ----------------------------------------------- */

.olc-suivant {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--marge-page);
}
.olc-suivant-fond {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  transition: opacity .5s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}
.olc-suivant:hover .olc-suivant-fond { opacity: .5; transform: scale(1.03); }
.olc-suivant-contenu { position: relative; display: block; }
.olc-suivant-client {
  display: block;
  font-family: var(--titre);
  text-transform: uppercase;
  font-size: clamp(34px, 6vw, 82px);
  line-height: 1;
  margin-top: 14px;
}

@media (max-width: 920px) {
  .olc-fiche-intro { grid-template-columns: 1fr; gap: 36px; padding: 60px var(--marge-page); }
  .olc-diptyque { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .olc-galerie { grid-template-columns: 1fr; }
  .olc-galerie-large { grid-column: auto; }
}

/* --- Variante sobre du bloc de rappel (pages listes) ------------------ */
.olc-rappel-sobre {
  padding: 100px var(--marge-page) 120px;
  background: var(--marine-clair);
}
.olc-rappel-sobre::after { display: none; }
.olc-rappel-sobre .olc-rappel-titre {
  font-size: clamp(34px, 5vw, 72px);
  line-height: .94;
  margin-bottom: 30px;
}

@media (max-width: 700px) {
  .olc-fiche-lire { padding-bottom: 220px; }
  .olc-fiche-triangle { width: 66px; height: 66px; flex-basis: 66px; }
  .olc-fiche-triangle::after { border-left-width: 19px; border-top-width: 11px; border-bottom-width: 11px; }
}

/* =====================================================================
   PAGE OFFRES
   ===================================================================== */

.olc-offre-ligne {
  border-top: 1px solid rgba(250, 246, 240, .12);
  padding: 70px var(--marge-page);
}
.olc-offre-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
/* Une ligne sur deux inverse l'ordre : le visuel passe à droite. */
.olc-offre-inverse .olc-offre-media { order: 2; }

.olc-offre-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #0A1330;
  aspect-ratio: 16 / 10;
}
.olc-offre-media img,
.olc-offre-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.olc-offre-video { opacity: 0; transition: opacity .6s ease; }
.olc-offre-video.prete { opacity: 1; }

.olc-offre-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--texte-tertiaire);
  margin: 0 0 18px;
}
.olc-offre-titre {
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: .96;
  margin: 0 0 18px;
}
.olc-offre-benefice {
  font-size: 19px;
  line-height: 1.4;
  color: var(--indigo-clair);
  font-weight: 500;
  margin: 0 0 20px;
}
.olc-offre-corps {
  font-size: 16px;
  line-height: 1.6;
  color: var(--texte-doux);
  margin: 0 0 26px;
  max-width: 52ch;
}
.olc-offre-livrables-titre {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--texte-tertiaire);
  margin: 0 0 14px;
}
.olc-offre-livrables { display: flex; flex-wrap: wrap; gap: 8px; }
.olc-offre-livrables span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--texte-principal);
  border: 1px solid rgba(250, 246, 240, .2);
  padding: 8px 12px;
  border-radius: 2px;
}
.olc-offre-lien {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo);
  border-bottom: 1px solid rgba(148, 143, 255, .4);
  padding-bottom: 6px;
}
.olc-offre-lien span { transition: transform .3s ease; }
.olc-offre-lien:hover span { transform: translateX(5px); }

/* =====================================================================
   QUESTIONS FRÉQUENTES
   ===================================================================== */

.olc-faq {
  padding: 100px var(--marge-page);
  border-top: 1px solid rgba(250, 246, 240, .12);
}
.olc-faq-grille {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.olc-faq-titre { font-size: clamp(30px, 3.8vw, 52px); line-height: .96; margin: 0; }

.olc-faq-item { border-bottom: 1px solid rgba(250, 246, 240, .12); }
.olc-faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  text-align: left;
  font-family: var(--courant);
  font-size: 17px;
  font-weight: 600;
  color: var(--texte-principal);
}
/* Repère d'ouverture dessiné en CSS : + fermé, − ouvert. */
.olc-faq-icone {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.olc-faq-icone::before,
.olc-faq-icone::after {
  content: "";
  position: absolute;
  background: var(--indigo);
  transition: transform .3s ease, opacity .3s ease;
}
.olc-faq-icone::before { top: 7px; left: 0; width: 16px; height: 2px; }
.olc-faq-icone::after  { left: 7px; top: 0; width: 2px; height: 16px; }
.olc-faq-item button[aria-expanded="true"] .olc-faq-icone::after {
  transform: rotate(90deg);
  opacity: 0;
}
.olc-faq-reponse p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--texte-doux);
  margin: 0;
  padding: 0 0 24px;
  max-width: 62ch;
}

@media (max-width: 920px) {
  .olc-offre-grille { grid-template-columns: 1fr; gap: 24px; }
  .olc-offre-inverse .olc-offre-media { order: 0; }
  .olc-faq-grille { grid-template-columns: 1fr; gap: 32px; }
}

/* =====================================================================
   PAGE AGENCE
   ===================================================================== */

.olc-agence-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 80px var(--marge-page) 70px;
  max-width: 1600px;
}
.olc-agence-hero .olc-surtitre { margin-bottom: 30px; }
.olc-agence-titre {
  font-size: clamp(52px, 7.5vw, 128px);
  line-height: .86;
  letter-spacing: .01em;
  margin: 0;
}
.olc-agence-chapo {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--texte-courant);
  margin: 36px 0 0;
  max-width: 52ch;
}
.olc-agence-portrait {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #0A1330;
  aspect-ratio: 4 / 5;
  margin: 0;
}
.olc-agence-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.olc-agence-portrait figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--indigo-clair);
  text-shadow: 0 1px 8px rgba(1, 6, 15, .9);
}

/* --- Bandeau de chiffres, en indigo plein ---------------------------- */

.olc-chiffres {
  background: var(--indigo);
  color: var(--marine);
  padding: 64px var(--marge-page);
}
.olc-chiffres-grille {
  display: grid;
  grid-template-columns: repeat(var(--olc-colonnes, 5), 1fr);
  gap: 32px;
  max-width: 1600px;
}
.olc-chiffre { display: flex; flex-direction: column; }
.olc-chiffre-valeur {
  font-family: var(--titre);
  text-transform: uppercase;
  font-size: clamp(44px, 4.2vw, 78px);
  line-height: .82;
}
.olc-chiffre-libelle {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(1, 6, 15, .72);
  margin-top: 16px;
  line-height: 1.4;
}

/* --- Parcours --------------------------------------------------------- */

.olc-parcours {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding: 120px var(--marge-page);
  max-width: 1500px;
}
.olc-parcours-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #0A1330;
  aspect-ratio: 1 / 1;
  max-width: 520px;
}
.olc-parcours-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.olc-parcours-titre {
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: .98;
  margin: 0 0 30px;
  max-width: 18ch;
}
.olc-parcours-texte {
  font-size: 18px;
  line-height: 1.65;
  color: var(--texte-courant);
  margin: 0 0 20px;
  max-width: 56ch;
}
.olc-parcours-texte:last-child { margin-bottom: 0; }

/* --- Réseau ----------------------------------------------------------- */

.olc-reseau {
  padding: 110px var(--marge-page);
  background: var(--marine-clair);
  border-top: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
}
.olc-reseau-intro { max-width: 780px; margin-bottom: 64px; }
.olc-reseau-titre {
  font-size: clamp(32px, 5vw, 72px);
  line-height: .92;
  margin: 0 0 28px;
}

.olc-metiers { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid rgba(250, 246, 240, .14); }
.olc-metier {
  display: grid;
  grid-template-columns: 56px 1fr auto 40px;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid rgba(250, 246, 240, .08);
  transition: background .35s ease;
}
.olc-metier:hover { background: rgba(148, 143, 255, .06); }
.olc-metier-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--texte-tertiaire);
  transition: color .35s ease;
}
.olc-metier:hover .olc-metier-num { color: var(--indigo); }
.olc-metier h3 { font-size: clamp(24px, 3.2vw, 44px); line-height: 1; }
.olc-metier-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--texte-tertiaire);
  text-align: right;
}
.olc-metier-fleche {
  opacity: .3;
  transform: translateX(-8px);
  transition: opacity .35s ease, transform .35s ease;
  font-size: 20px;
  color: var(--indigo);
  text-align: right;
}
.olc-metier:hover .olc-metier-fleche { opacity: 1; transform: none; }

/* --- Coulisses -------------------------------------------------------- */

/* La piste est bien plus large que l'écran : sans découpe ici, elle déborde
   du document. Safari mobile gère mal ce débordement — il déclenche un
   défilement horizontal parasite et finit par ne plus peindre la piste du
   tout. Le bandeau de logos, bâti sur le même principe, découpe déjà. */
.olc-coulisses { padding: 120px 0; overflow: hidden; }
.olc-coulisses-tete {
  padding: 0 var(--marge-page);
  max-width: 1500px;
  margin-bottom: 44px;
}
.olc-coulisses-titre {
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: .96;
  max-width: 18ch;
  margin: 0;
}
.olc-coulisses-piste {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 0 8px;
  animation: olcMarquee 60s linear infinite;
  /* Fondu sur les bords, pour que les photos n'apparaissent pas coupées net. */
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.olc-coulisses-piste:hover { animation-play-state: paused; }
.olc-coulisses-lot { display: flex; gap: 16px; }
.olc-coulisses-lot img {
  height: clamp(240px, 30vw, 380px);
  width: auto;
  display: block;
  border-radius: 8px;
  background: #0A1330;
}

.olc-marque-agence { border-bottom: none; padding-top: 0; }
.olc-marque-titre { padding: 50px var(--marge-page) 26px; margin: 0; }

@media (max-width: 1000px) {
  .olc-agence-hero { grid-template-columns: 1fr; gap: 40px; }
  /* Le format 16/11 ne laissait voir l'image qu'à partir de 17 % de sa
     hauteur, alors que le sommet du crâne se trouve à 4 % : la tête était
     coupée. Le carré ne rogne presque plus, et le cadrage remonte. */
  .olc-agence-portrait { order: 2; aspect-ratio: 1 / 1; }
  .olc-agence-portrait img { object-position: center 22%; }
  .olc-parcours { grid-template-columns: 1fr; gap: 44px; padding: 80px var(--marge-page); }
  .olc-chiffres-grille { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .olc-metier { grid-template-columns: 34px 1fr 20px; gap: 14px; padding: 20px 0; }
  .olc-metier-tag { display: none; }
}

/* =====================================================================
   PAGE CONTACT
   ===================================================================== */

.olc-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px var(--marge-page) var(--section);
  align-items: start;
  max-width: 1500px;
}
.olc-contact-titre {
  font-size: clamp(44px, 6vw, 96px);
  line-height: .92;
  margin: 0 0 28px;
}
.olc-contact-chapo {
  font-size: 18px;
  line-height: 1.6;
  color: var(--texte-courant);
  margin: 0 0 56px;
  max-width: 46ch;
}
.olc-contact-coordonnees { display: flex; flex-direction: column; gap: 26px; }
.olc-contact-duo { display: flex; gap: 40px; flex-wrap: wrap; }
.olc-contact-email {
  font-family: var(--titre);
  text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 34px);
}
.olc-contact-email:hover { color: var(--indigo); }
.olc-contact-valeur { font-size: 16px; color: var(--texte-courant); margin: 0; }
.olc-contact-reseaux { display: flex; gap: 16px; flex-wrap: wrap; }
.olc-contact-reseaux a:hover { color: var(--indigo); }

.olc-contact-droite {
  background: var(--marine-clair);
  border: 1px solid var(--bordure);
  border-radius: 6px;
  padding: 32px 30px;
}

/* --- Onglets ---------------------------------------------------------- */

.olc-onglets {
  display: flex;
  gap: 6px;
  background: rgba(1, 6, 15, .5);
  padding: 5px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.olc-onglet {
  flex: 1;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--texte-courant);
  background: transparent;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.olc-onglet.actif { background: var(--indigo); color: var(--marine); font-weight: 700; }

.olc-volet[hidden] { display: none; }
.olc-volet-titre { font-size: 24px; margin: 0 0 12px; }
.olc-volet-texte { font-size: 15px; line-height: 1.6; color: var(--texte-courant); margin: 0 0 24px; }

/* --- Calendly --------------------------------------------------------- */

.olc-calendly { min-height: 320px; }
.olc-calendly-invite {
  border: 1px dashed var(--bordure-forte);
  border-radius: 6px;
  padding: 30px 24px;
  text-align: center;
}
.olc-calendly-invite p { font-size: 14px; line-height: 1.6; color: var(--texte-courant); margin: 0 0 18px; }
.olc-calendly-invite .olc-mention { margin-top: 18px; }
.olc-lien-bouton {
  background: none;
  border: none;
  color: var(--indigo);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

/* --- Formulaire ------------------------------------------------------- */

.olc-formulaire { display: block; }
.olc-types { border: none; margin: 0 0 24px; padding: 0; }
.olc-types legend {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--texte-tertiaire);
  padding: 0;
  margin-bottom: 12px;
}
.olc-type { display: inline-block; margin: 0 8px 8px 0; }
.olc-type input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.olc-type span {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--texte-courant);
  border: 1px solid var(--bordure-forte);
  padding: 9px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s ease;
}
.olc-type input:checked + span {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--marine);
  font-weight: 700;
}
.olc-type input:focus-visible + span { outline: 2px solid var(--indigo); outline-offset: 3px; }

.olc-champ { margin: 0 0 18px; }
.olc-champ-duo { display: flex; gap: 24px; }
.olc-champ-duo .olc-champ { flex: 1; min-width: 0; }
.olc-champ label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--texte-tertiaire);
  margin-bottom: 8px;
}
.olc-champ input,
.olc-champ textarea {
  width: 100%;
  background: rgba(1, 6, 15, .6);
  border: 1px solid var(--bordure-forte);
  border-radius: 4px;
  color: var(--texte-principal);
  font-family: var(--courant);
  font-size: 15px;
  padding: 13px 15px;
  transition: border-color .2s ease;
}
.olc-champ textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.olc-champ input:focus,
.olc-champ textarea:focus { outline: none; border-color: var(--indigo); }
.olc-champ input::placeholder,
.olc-champ textarea::placeholder { color: rgba(250, 246, 240, .35); }

.olc-consentement-champ { margin: 20px 0 24px; }
.olc-consentement-champ label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--texte-courant);
  cursor: pointer;
}
.olc-consentement-champ input { margin-top: 3px; accent-color: var(--indigo); width: 16px; height: 16px; }
.olc-consentement-champ a { text-decoration: underline; }

.olc-formulaire .olc-btn { width: 100%; text-align: center; }
.olc-formulaire .olc-mention { display: block; text-align: center; margin-top: 14px; }

/* Champ leurre : masqué visuellement, mais rempli par les robots. */
.olc-leurre {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.olc-erreurs {
  background: rgba(180, 35, 24, .16);
  border: 1px solid rgba(255, 120, 110, .4);
  border-radius: 4px;
  padding: 16px 18px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
}
.olc-erreurs p { margin: 0 0 8px; font-weight: 600; }
.olc-erreurs ul { margin: 0; padding-left: 20px; color: var(--texte-courant); }

.olc-succes {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.olc-succes-marque {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--marine);
  font-size: 26px;
}
.olc-succes h2 { font-size: 28px; margin: 0 0 12px; }
.olc-succes p { font-size: 15px; line-height: 1.6; color: var(--texte-courant); margin: 0; }

@media (max-width: 1000px) {
  .olc-contact { grid-template-columns: 1fr; gap: 48px; padding-top: 90px; }
}
@media (max-width: 560px) {
  /* Ces deux blocs sont en flex : c'est la direction qu'il faut changer,
     « grid-template-columns » n'aurait plus aucun effet sur eux. */
  .olc-champ-duo, .olc-contact-duo { flex-direction: column; gap: 18px; }
  .olc-contact-droite { padding: 22px 18px; }
}

/* =====================================================================
   PAGES LÉGALES
   ===================================================================== */

.olc-legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 120px var(--marge-page) var(--section);
}
.olc-legal header { margin-bottom: 56px; }
.olc-legal h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: .96;
  margin: 0;
}
.olc-legal-maj {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--texte-tertiaire);
  margin: 18px 0 0;
}
.olc-legal section { margin-bottom: 44px; }
.olc-legal h2 {
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bordure);
}
.olc-legal p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--texte-courant);
  margin: 0 0 16px;
}
.olc-legal a { color: var(--indigo); text-decoration: underline; }
.olc-legal a:hover { color: var(--indigo-clair); }

.olc-legal-liste { margin: 0; }
.olc-legal-ligne {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(250, 246, 240, .07);
}
.olc-legal-ligne dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--texte-tertiaire);
  padding-top: 3px;
}
.olc-legal-ligne dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--texte-principal);
}

.olc-legal-liens { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.olc-legal-liens a { font-family: var(--mono); font-size: 13px; }

@media (max-width: 620px) {
  .olc-legal-ligne { grid-template-columns: 1fr; gap: 4px; }
}
