/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

/*
 Theme Name:   Bricks Child
 Template:     bricks
*/

/* ==========================================================================
   SONACOM — Redesign 2026 · "Dark studio premium"
   Design system partagé — toutes pages
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {

  --noir-studio: #0c0c0f;
  --surface: #1d1d1d;
  --surface-2: #242424;
  --blanc-chaud: #f5f3ee;
  --gris: #8a8a8a;
  --cyan: #04a5dd;
  --cyan-2: #45c4f0;
  --ligne: rgba(245, 243, 238, 0.12);

  --font-display: 'Chillax', 'Chillax fallback', sans-serif;
  --font-body: 'Darker Grotesque', 'Darker Grotesque fallback', sans-serif;
  --font-mono: 'Space Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --step-hero: clamp(3rem, 9vw, 7.5rem);
  --step-1: clamp(2.2rem, 5vw, 4rem);
  --step-2: clamp(1.6rem, 3vw, 2.4rem);
  --step-body: clamp(1.25rem, 1.5vw, 1.45rem);

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-gap: clamp(5rem, 10vw, 9rem);
  --radius: 14px;
}

@font-face {
  font-family: 'Chillax fallback';
  src: local('Arial'), local('Roboto'), local('Helvetica Neue'), local('Liberation Sans');
  size-adjust: 99.7%;
  ascent-override: 98.3%;
  descent-override: 33.1%;
  line-gap-override: 9.0%;
}

@font-face {
  font-family: 'Darker Grotesque fallback';
  src: local('Arial'), local('Roboto'), local('Helvetica Neue'), local('Liberation Sans');
  size-adjust: 80.2%;
  ascent-override: 132.2%;
  descent-override: 36.9%;
  line-gap-override: 0%;
}

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

html { scroll-behavior: smooth; font-size: 100%; }

body {
  margin: 0;

  background-color: var(--noir-studio);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 90% 55% at 50% 108%,
                    rgba(69, 196, 240, 0.16) 0%,
                    rgba(69, 196, 240, 0.10) 32%,
                    rgba(69, 196, 240, 0.05) 50%,
                    rgba(69, 196, 240, 0.02) 62%,
                    rgba(69, 196, 240, 0) 72%),
    radial-gradient(ellipse 130% 85% at 50% -15%,
                    rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 55%);
  background-size: 140px 140px, auto, auto;
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: 0 0, center, center;
  background-attachment: fixed, fixed, fixed;
  color: var(--blanc-chaud);
  font-family: var(--font-body);
  font-size: var(--step-body);
  font-weight: 400;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 2px solid var(--cyan-2);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--cyan); color: var(--noir-studio); }

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.05; }
p { margin: 0 0 1em; }

.wrap {
  width: min(1280px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}

section { padding-block: calc(var(--section-gap) / 2); }

.display {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
}

.display .ghost {
  -webkit-text-stroke: 1.5px var(--blanc-chaud);
  color: transparent;
}

.lead { font-size: var(--step-body); color: var(--blanc-chaud); max-width: 62ch; }
.muted { color: var(--gris); }

.rich-intro a { color: var(--cyan); }
.rich-intro a:hover { color: var(--cyan-2); }

.rich-intro a,
.link-inline,
.crosslink a,
.voix-content a,
.article-content a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.tape {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 1.4rem;
}
.tape::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: rec-pulse 2.4s ease-in-out infinite;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.55em 1.6em 0.7em;
  border-radius: 999px;
  border: 1px solid var(--cyan);
  background: var(--cyan);
  color: #06222d;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.btn:hover { background: var(--cyan-2); border-color: var(--cyan-2); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--blanc-chaud);
  border-color: var(--ligne);
}
.btn--ghost:hover {
  background: transparent;
  color: var(--cyan-2);
  border-color: var(--cyan-2);
  transform: translateY(-2px);
}

.btn-group { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(12, 12, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.nav.is-scrolled::before { opacity: 1; }
.nav.is-scrolled { border-bottom-color: var(--ligne); }
.nav__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 0.9rem;
}

.site-logo { display: inline-flex; align-items: center; color: var(--blanc-chaud); }
.site-logo img, .site-logo svg { width: auto; display: block; }
.nav__logo img, .nav__logo svg { height: 34px; }
.footer__logo img, .footer__logo svg { height: 42px; }
.site-logo:hover { color: var(--cyan-2); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  list-style: none;
  margin: 0; padding: 0;
}

.nav__links a {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--blanc-chaud);
  padding-block: 0.3em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav__links a:hover { color: var(--cyan); }
.nav__links a[aria-current="page"] { color: var(--cyan); border-bottom-color: var(--cyan); }
.nav__links .nav__cta {
  border: 1px solid var(--ligne);
  border-radius: 999px;
  padding: 0.35em 1.1em 0.45em;
}
.nav__links .nav__cta:hover { border-color: var(--cyan-2); color: var(--cyan-2); }

.nav__links .nav__cta[aria-current="page"] {
  color: var(--noir-studio);
  background: var(--cyan);
  border-color: var(--cyan);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: var(--blanc-chaud);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 1100px) {
  .nav__burger { display: flex; }

  .nav__logo, .nav__burger { position: relative; z-index: 120; }
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(17, 17, 17, 0.99);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav__links a { font-size: 1.6rem; }
  .nav.is-open .nav__links { opacity: 1; pointer-events: auto; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

.hero-video {
  position: relative;
  height: 100svh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: 0;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 15,0.28) 0%, rgba(12, 12, 15,0.05) 45%, rgba(12, 12, 15,0.55) 100%);
}
.hero-video__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(3rem, 8vh, 6rem);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
}

.hero-video__content::before {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  inset: -16rem 0 0;
  background: linear-gradient(to top,
    rgba(12, 12, 15, 0.72) 0%,
    rgba(12, 12, 15, 0.58) 58%,
    rgba(12, 12, 15, 0.26) 78%,
    rgba(12, 12, 15, 0) 100%);
}
@media (min-width: 641px) {
  .hero-video__content::before {
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 45%, transparent 95%);
            mask-image: linear-gradient(to right, #000 0%, #000 45%, transparent 95%);
  }
}
.hero-video__content h1 {
  font-family: var(--font-display);

  font-size: clamp(2.5rem, 5.3vw, 5.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.hero-video__content h1 .accent { color: var(--cyan); }

.hero-video__content .btn-group { margin-top: clamp(1.5rem, 3.5vh, 2.4rem); }
.hero-video__content .btn { text-shadow: none; }
.hero-video__content .btn--ghost {
  border-color: rgba(245, 243, 238, 0.5);
  background: rgba(12, 12, 15, 0.35);
}
.hero-video__content .btn--ghost:hover {
  border-color: var(--cyan-2);
  background: rgba(12, 12, 15, 0.55);
}

.hero-video__content > .tape {
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--blanc-chaud);
  letter-spacing: 0.24em;
}

@media (max-width: 640px) {
  .hero-video__content > .tape {
    font-size: 0.63rem;
    letter-spacing: 0.14em;
    gap: 0.5em;
  }
}

.hero-video--page { height: min(86svh, 760px); }
.hero-video--page .hero-video__content h1 {
  font-size: var(--step-1);
  max-width: 20ch;
  text-wrap: balance;
}
.hero-video--page .hero-video__content .lead {
  margin: 1.2rem 0 0;
  max-width: 55ch;
}
.hero-video--page .hero-video__content .btn { margin-top: 1.6rem; }

.hero-page {
  padding-top: clamp(8rem, 18vh, 12rem);
  padding-bottom: clamp(2rem, 5vh, 4rem);
}
.hero-page h1 {
  font-family: var(--font-display);
  font-size: var(--step-hero);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.015em;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-page h1 .accent { color: var(--cyan); }

.hero-page h1.article-title {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  max-width: 26ch;
}

.hero-page .lead { margin-top: 1.6rem; }
.hero-page .btn { margin-top: 1.8rem; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
}
.bento__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: 1.8rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--ligne);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.bento__cell:hover { border-color: var(--cyan); transform: translateY(-4px); }
.bento__cell img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.35s, transform 0.6s;
}
.bento__cell:hover img { opacity: 0.75; transform: scale(1.04); }

.bento__cell > .bento__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.45;
  transition: opacity 0.35s, transform 0.6s;
}
.bento__cell:hover > .bento__art { opacity: 0.7; transform: scale(1.04); }

.bento__art--plateau {
  background-image:
    radial-gradient(circle at 72% 18%, rgba(69, 196, 240, 0.45), transparent 62%),
    radial-gradient(circle, var(--cyan) 1.2px, transparent 1.6px);
  background-size: 100% 100%, 13px 13px;
}

.bento__art--regie {
  background-image:
    radial-gradient(circle at 50% 10%, rgba(69, 196, 240, 0.4), transparent 65%),
    repeating-linear-gradient(90deg, var(--cyan) 0 2px, transparent 2px 11px);
  background-size: 100% 100%, 100% 58%;
  background-position: center, bottom;
  background-repeat: no-repeat, repeat-x;
}

.bento__art--acces {
  background-image:
    radial-gradient(circle at 50% 55%, rgba(69, 196, 240, 0.4), transparent 60%),
    repeating-radial-gradient(circle at 50% 55%, transparent 0 15px, rgba(4, 165, 221, 0.55) 15px 16px);
}

.bento__art--equipe {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(69, 196, 240, 0.38), transparent 62%),
    radial-gradient(circle, rgba(69, 196, 240, 0.75) 1.8px, transparent 2.2px),
    radial-gradient(circle, rgba(4, 165, 221, 0.4) 1.4px, transparent 1.8px);
  background-size: 100% 100%, 34px 34px, 34px 34px;
  background-position: center, 0 0, 17px 17px;
}

.bento__art--diffusion {
  background-image:
    radial-gradient(circle at 6% 50%, rgba(69, 196, 240, 0.45), transparent 55%),
    repeating-radial-gradient(circle at 6% 50%, transparent 0 21px, rgba(4, 165, 221, 0.5) 21px 22px);
}

.bento__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(12, 12, 15,0.92) 100%);
}
.bento__cell > * { position: relative; z-index: 2; }
.bento__cell h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  text-transform: uppercase;
}
.bento__cell p { color: var(--blanc-chaud); opacity: 0.85; margin: 0.4em 0 0; font-size: 1.15rem; }

.bento__tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: auto;
  padding: 0.42em 0.9em 0.48em;
  border-radius: 999px;
  background: rgba(12, 12, 15, 0.88);
}
.span-3 { grid-column: span 3; }
.span-7 { grid-column: span 7; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

@media (max-width: 900px) {
  .bento__cell { grid-column: span 12; min-height: 260px; }
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.4rem);
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--ligne);
  aspect-ratio: 4 / 3;
  transition: border-color 0.3s, transform 0.3s;
}
.work-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s, opacity 0.35s;
  opacity: 0.85;
}
.work-card:hover img { transform: scale(1.05); opacity: 1; }
.work-card__meta {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 2.4rem 1.2rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(12, 12, 15,0.95));
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.work-card__meta strong,
.work-card__meta > :last-child {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.work-card__meta span,
.work-card__meta > :first-child {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.work-card.is-hidden { display: none; }

.work-card--cover { aspect-ratio: 1; }
.work-card--cover .work-card__meta {
  background: linear-gradient(180deg, transparent, rgba(12, 12, 15, 0.72) 38%, rgba(12, 12, 15, 0.97));
}

.works-grid--showcase {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 230px;
  grid-auto-flow: dense;
}
.works-grid--showcase .work-card { aspect-ratio: auto; height: 100%; }
.works-grid--showcase .work-card--lg {
  grid-column: span 2;
  grid-row: span 2;
}
.works-grid--showcase .work-card--wide { grid-column: span 2; }

.works-grid--showcase .work-card:nth-child(7n + 5),
.works-grid--showcase .work-card:nth-child(11n + 9) { grid-column: span 2; }

.works-grid--showcase .work-card video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.work-card__hover {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--noir-studio);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(6px) scale(0.85);
  transition: opacity 0.3s, transform 0.3s;
}
.work-card:hover .work-card__hover { opacity: 1; transform: none; }
.work-card:hover { box-shadow: 0 12px 40px rgba(4, 165, 221, 0.22); }

@keyframes card-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.js .works-grid--showcase .work-card { opacity: 0; }
.works-grid--showcase.is-visible .work-card {
  animation: card-in 0.6s ease both;
  animation-delay: calc(var(--i, 0) * 45ms);
}

@keyframes card-pop {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.works-grid .work-card.pop { animation: card-pop 0.4s ease both; animation-delay: calc(var(--j, 0) * 35ms); }

@media (max-width: 640px) {
  .works-grid--showcase { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .works-grid--showcase .work-card--lg { grid-column: span 2; grid-row: span 2; }
  .works-grid--showcase .work-card--wide { grid-column: span 2; }
  .work-card__meta strong { font-size: 1.05rem; }
}

.works-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 30vw, 380px);
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-2) transparent;
}
.works-strip .work-card { scroll-snap-align: start; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 2.5rem;
}
.filters button {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gris);
  background: transparent;
  border: 1px solid var(--ligne);
  border-radius: 999px;
  padding: 0.35em 1.1em 0.45em;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.filters button:hover { color: var(--blanc-chaud); border-color: var(--gris); }
.filters button[aria-pressed="true"] {
  color: var(--noir-studio);
  background: var(--cyan-2);
  border-color: var(--cyan-2);
}

.works-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin: 2rem 0 1rem;
}
.works-toolbar .filters { margin: 0; flex: 1 1 30rem; }

.works-search { display: none; }
.js .works-search { display: block; flex: 0 1 20rem; }
.works-search__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--blanc-chaud);
  background: var(--surface);
  border: 1px solid var(--ligne);
  border-radius: 999px;
  padding: 0.5em 1.2em 0.6em;
  transition: border-color 0.2s, background 0.2s;
}
.works-search__input::placeholder { color: var(--gris); }
.works-search__input:hover { border-color: var(--gris); }
.works-search__input:focus-visible {
  outline: none;
  border-color: var(--cyan-2);
  background: var(--surface-2);
}

.works-status { display: none; }
.js .works-status {
  display: block;

  min-height: 1.6em;
  margin-bottom: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gris);
}
.works-empty { margin-top: 2.5rem; text-align: center; }
.works-empty__reset {
  font-family: var(--font-body);
  font-size: inherit;
  color: var(--cyan-2);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}

.post-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 2rem;
  border: 1px solid var(--ligne);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.post-feature:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(4, 165, 221, 0.22);
}
.post-feature__media { position: relative; overflow: hidden; min-height: 300px; }
.post-feature__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.post-feature:hover .post-feature__media img { transform: scale(1.05); }
.post-feature__body {
  display: flex; flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.6rem, 3vw, 2.8rem);
}
.post-feature__flag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris);
}
.post-feature__flag::first-letter { color: var(--cyan); }
.post-feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.03;
  letter-spacing: -0.01em;
  color: var(--blanc-chaud);
}
.post-feature__excerpt {
  color: var(--gris);
  font-size: 1.15rem;
  line-height: 1.45;
  max-width: 52ch;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 780px) {
  .post-feature { grid-template-columns: 1fr; }
  .post-feature__media { min-height: 220px; position: relative; }
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1rem, 1.8vw, 1.6rem);
  margin-top: 1rem;
}
.post-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--ligne);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.post-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(4, 165, 221, 0.22);
}
.post-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body {
  display: flex; flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  padding: 1.2rem 1.3rem 1.3rem;
}
.post-card__cat {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}
.post-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  line-height: 1.1;
  color: var(--blanc-chaud);
}
.post-card__excerpt {
  color: var(--gris);
  font-size: 1.05rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__foot {
  margin-top: auto;
  padding-top: 0.6rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gris);
}
.post-card__more { color: var(--cyan); transition: color 0.2s; white-space: nowrap; }
.post-card:hover .post-card__more,
.post-feature:hover .post-card__more { color: var(--cyan-2); }
.post-card.is-hidden { display: none; }

.js .post-grid.reveal .post-card { opacity: 0; }
.post-grid.reveal.is-visible .post-card {
  animation: card-in 0.6s ease both;
  animation-delay: calc(var(--i, 0) * 45ms);
}
.post-grid .post-card.pop { animation: card-pop 0.4s ease both; animation-delay: calc(var(--j, 0) * 35ms); }

.newsletter {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 3.6rem);
  text-align: center;
  border: 1px solid rgba(4, 165, 221, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(4, 165, 221, 0.16), rgba(69, 196, 240, 0.08));
}
.newsletter__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--blanc-chaud);
}
.newsletter p { margin: 0.8rem auto 0; max-width: 46ch; color: var(--blanc-chaud); }
.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  max-width: 32rem;
  margin: 1.8rem auto 0;
}
.newsletter__input {
  flex: 1 1 16rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--blanc-chaud);
  background: var(--surface);
  border: 1px solid var(--ligne);
  border-radius: 999px;
  padding: 0.55em 1.3em 0.65em;
  transition: border-color 0.2s, background 0.2s;
}
.newsletter__input::placeholder { color: var(--gris); }
.newsletter__input:focus-visible {
  outline: none;
  border-color: var(--cyan-2);
  background: var(--surface-2);
}
@media (max-width: 480px) {
  .newsletter__input, .newsletter__form .btn { flex: 1 1 100%; }
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gris);
}
.article-meta__sep { color: var(--surface-2); }

.article-cover {

  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ligne);
}
.article-cover img {
  display: block;
  width: 100%;

  height: auto;
  aspect-ratio: 16 / 9;

  max-height: 60vh;
  object-fit: cover;
}

.article-body { padding-top: 0; }

.hero-page:has(h1.article-title) { padding-bottom: clamp(0.8rem, 1.5vw, 1.2rem); }

.article-content {
  max-width: 68ch;
  margin-top: 0;
  font-size: var(--step-body);
  color: var(--blanc-chaud);
}

.article-content > :first-child { margin-top: 0; }
.article-content > p:first-child img:only-child { margin-top: 0; }
.article-content p {
  line-height: 1.5;
  margin: 0 0 0.9em;
}

.article-content > p:first-child {
  font-size: 1.2em;
  line-height: 1.4;
  color: var(--blanc-chaud);
}
.article-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 2.2em 0 0.7em;
  color: var(--blanc-chaud);
}
.article-content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  line-height: 1.2;
  margin: 1.8em 0 0.5em;
  color: var(--cyan-2);
}
.article-content ul,
.article-content ol { margin: 0 0 1.3em; padding-left: 1.3em; }
.article-content li { margin-bottom: 0.5em; line-height: 1.5; }
.article-content li::marker { color: var(--cyan); }

.article-content a { color: var(--cyan); }
.article-content a:hover { color: var(--cyan-2); }
.article-content strong, .article-content b { font-weight: 700; }

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2em 0;
  border-radius: var(--radius);
  border: 1px solid var(--ligne);
}
.article-content figure { margin: 2em 0; }
.article-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 2em 0;
  border-radius: var(--radius);
  border: 1px solid var(--ligne);
}
@media (min-width: 1100px) {

  .article-content img { max-width: 122%; }
}

.article-foot {
  max-width: 68ch;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--ligne);
}

.voice-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--ligne);
  transition: border-color 0.3s, transform 0.3s;
}
.voice-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.voice-card__photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.voice-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(35%);
  transition: filter 0.4s, transform 0.6s;
}
.voice-card:hover .voice-card__photo img { filter: grayscale(0%); transform: scale(1.03); }
.voice-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.voice-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.voice-card__body .muted { font-size: 1.05rem; display: block; margin-top: 0.1rem; }

.voice-card__memoriam {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.65;
  margin-top: 0.55rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--ligne);
}

.player {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.9rem;
}
.player__btn {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  background: transparent;
  color: var(--cyan);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.player__btn:hover { background: var(--cyan); color: var(--noir-studio); }
.player__btn svg { width: 16px; height: 16px; fill: currentColor; }
.player.is-playing .player__btn {
  border-color: var(--cyan-2);
  color: var(--noir-studio);
  background: var(--cyan-2);
}
.player__wave {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 34px;
  overflow: hidden;
}

.player__wave i {
  flex: 1;
  height: var(--h, 30%);
  min-height: 3px;
  border-radius: 2px;
  background: rgba(245, 243, 238, 0.38);
  transition: background 0.3s;
}
.voice-card:hover .player__wave i { background: rgba(245, 243, 238, 0.52); }
.player.is-playing .player__wave i {
  background: var(--cyan-2);
  animation: wave-dance 0.9s ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 0) * 60ms);
}
@keyframes wave-dance {
  from { transform: scaleY(0.5); }
  to { transform: scaleY(1.15); }
}

.player__time {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: var(--gris);
  flex: none;
  min-width: 9ch;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.player.is-playing .player__time { color: var(--cyan-2); }

.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.4rem);
}

.voices-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 25vw, 290px);
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-2) transparent;
}
.voices-strip .voice-card { scroll-snap-align: start; }

.stats {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1rem;
  margin-block: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--ligne);
}

.stat__num,
.stat strong,
.stat > :first-child {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin: 0;
}

.stat__label,
.stat span,
.stat > :last-child {
  color: #a5a5a5;
  font-size: var(--step-body);
  line-height: 1.35;

  margin: auto 0 0;
}

.plan-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
}
.plan-mosaic figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ligne);
  background: var(--surface);
}
.plan-mosaic figure:nth-child(1) { grid-column: span 5; }
.plan-mosaic figure:nth-child(2) { grid-column: span 7; }
.plan-mosaic figure:nth-child(n + 3) { grid-column: span 4; }

.plan-mosaic__plan img {
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 687;
  object-fit: contain;
}

.plan-mosaic figure:not(.plan-mosaic__plan) img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform 0.6s, opacity 0.35s;
  opacity: 0.9;
}
.plan-mosaic figure:hover img { transform: scale(1.04); opacity: 1; }

.plan-mosaic figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  padding: 0.35em 0.9em;
  border-radius: 999px;
  background: rgba(12, 12, 15, 0.82);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blanc-chaud);
}

@media (max-width: 900px) {
  .plan-mosaic figure:nth-child(1),
  .plan-mosaic figure:nth-child(2) { grid-column: span 12; }
  .plan-mosaic figure:nth-child(n + 3) { grid-column: span 6; }
}
@media (max-width: 560px) {
  .plan-mosaic figure:nth-child(n) { grid-column: span 12; }
}

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: 1rem;
}
.logos img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(2.2);
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
}
.logos img:hover { filter: grayscale(0%) brightness(1); opacity: 1; }

.logo-marquee {

  --bw: clamp(92px, 4rem + 6vw, 150px);

  --bh: calc(var(--bw) / 2.344);
  --gap: clamp(1.5rem, 4vw, 3.5rem);
  --dwell: 2.65s;
  --n: 12;

  position: relative;
  overflow: hidden;
  padding-block: 0.6rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);

  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-scroll calc(var(--n) * var(--dwell)) linear infinite;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }

.logo-marquee__group {
  display: flex;
  align-items: center;
  gap: var(--gap);
  margin: 0;
  padding: 0 var(--gap) 0 0;
  list-style: none;
}

.logo-marquee__group li {
  flex: none;
  display: grid;
  place-items: center;

  grid-template: 100% / 100%;
  width: var(--bw);
  height: var(--bh);
}

.logo-marquee__group img {
  width:  calc(var(--bw) * var(--s, 1));
  height: calc(var(--bh) * var(--s, 1));

  max-width: none;
  object-fit: contain;

  filter: var(--f, brightness(0) invert(1));
  opacity: 0.55;
  transition: opacity 0.3s;
}
.logo-marquee__group img:hover { opacity: 1; }

[data-logo="m6"]                 { --s: 0.59 }
[data-logo="lenovo"]             { --s: 1.21 }
[data-logo="lexpress"]           { --s: 0.95 }
[data-logo="ibm"]                { --s: 0.87 }
[data-logo="schneider-electric"] { --s: 1.02 }
[data-logo="saint-gobain"]       { --s: 0.78 }
[data-logo="sanofi"]             { --s: 0.77 }
[data-logo="generali"]           { --s: 0.62 }
[data-logo="nestle"]             { --s: 1.03 }
[data-logo="lactalis"]           { --s: 0.69 }
[data-logo="kelloggs"]           { --s: 0.94 }
[data-logo="suez"]               { --s: 1.10 }
[data-logo="shiseido"]           { --s: 0.95 }
[data-logo="chanel"]             { --s: 0.95 }

[data-logo="astrazeneca"]        { --s: 1.31 }
[data-logo="atos"]               { --s: 0.96 }
[data-logo="bayer"]              { --s: 0.59 }
[data-logo="bfm-business"]       { --s: 0.60 }
[data-logo="cnews"]              { --s: 1.09 }
[data-logo="hp"]                 { --s: 0.59 }
[data-logo="ikea"]               { --s: 0.86 }
[data-logo="macif"]              { --s: 0.59 }
[data-logo="psa"]                { --s: 0.64 }

[data-logo="arval"]              { --s: 1.25 }
[data-logo="gallia"]             { --s: 0.70 }
[data-logo="labeyrie"]           { --s: 1.43 }

[data-logo="cnews"],
[data-logo="bfm-business"],
[data-logo="ikea"],
[data-logo="macif"],
[data-logo="arval"]              { --f: grayscale(1) invert(1) contrast(1.35) }

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

@media (max-width: 1100px) { .logo-marquee { --dwell: 3.1s; } }
@media (max-width:  700px) { .logo-marquee { --dwell: 4.0s; } }

@media (prefers-reduced-motion: reduce) {
  .logo-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .logo-marquee__track { animation: none; }
}

.sister-site {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: center;
  padding: clamp(2rem, 4.5vw, 3.4rem);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--ligne);
  border-left: 3px solid var(--cyan);
}
.sister-site__intro,
.sister-site__links { position: relative; z-index: 2; }

.sister-site__logo {
  width: min(240px, 70%);
  height: auto;
  margin-bottom: 1.4rem;
}
.sister-site h2 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.4em;
}

.sister-site__intro p {
  color: rgba(245, 243, 238, 0.78);
  font-size: 1.1rem;
  max-width: 46ch;
  margin-bottom: 1.6rem;
}

.sister-site__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sister-site__links a {
  display: block;
  height: 100%;
  padding: 1.1rem 1.2rem;
  border-radius: 10px;
  background: rgba(12, 12, 15, 0.78);
  border: 1px solid var(--ligne);
  transition: border-color 0.25s, transform 0.25s, background-color 0.25s;
}
.sister-site__links a:hover {
  border-color: var(--cyan);
  background: rgba(12, 12, 15, 0.92);
  transform: translateY(-3px);
}
.sister-site__link-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-2);
  margin-bottom: 0.5em;
}

.sister-site__link-title::after { content: ' ↗'; }

.sister-site__link-desc {
  display: block;
  color: var(--blanc-chaud);
  font-size: 1.05rem;
  line-height: 1.25;
}

@media (max-width: 860px) {
  .sister-site { grid-template-columns: 1fr; align-items: start; }
  .sister-site__logo { margin-bottom: 1rem; }
}

.intro-copy { max-width: 68ch; margin-bottom: 2.4rem; }
.intro-copy p:last-child { margin-bottom: 0; }

.link-inline { color: var(--cyan); transition: color 0.2s; }
.link-inline:hover { color: var(--cyan-2); }

.chain {
  --chain-gap: clamp(1rem, 2.5vw, 2rem);
  --chain-badge: 44px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--chain-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}
.chain__step { position: relative; }

.chain__step::before,
.chain__step::after {
  content: '';
  position: absolute;
  top: calc(var(--chain-badge) / 2 - 1px);
  left: calc(var(--chain-badge) + 0.8rem);
  right: calc(var(--chain-gap) * -1);
  height: 2px;
}

.chain__step:last-child::before,
.chain__step:last-child::after { content: none; }

.chain__step::before { background: var(--surface-2); }
.chain__step::after {
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
  transform-origin: left;
  transition: transform 0.9s ease;
}

.js .reveal .chain__step::after { transform: scaleX(0); }
.js .reveal.is-visible .chain__step::after { transform: scaleX(1); }
.chain__step:nth-child(2)::after { transition-delay: 0.3s; }

.chain__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--chain-badge);
  height: var(--chain-badge);
  border-radius: 50%;
  background: var(--noir-studio);
  border: 1px solid var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--cyan-2);
}
.chain__step h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 1.3rem 0 0.4em;
}
.chain__step p { color: var(--gris); font-size: 1.1rem; margin: 0; }

.chain__gear {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}
.chain__gear li {
  padding: 0.45em 0.85em 0.5em;
  border: 1px solid var(--ligne);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gris);
}

.chain__also {
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  padding-top: clamp(1.8rem, 4vw, 2.6rem);
  border-top: 1px solid var(--ligne);
}
.chain__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.2rem, 3vw, 2.4rem);
}
.chain__option { padding-left: 1.4rem; border-left: 2px solid var(--cyan); }
.chain__option h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 0.35em;
}
.chain__option p { color: var(--gris); font-size: 1.1rem; margin: 0; }

@media (max-width: 800px) {
  .chain { grid-template-columns: 1fr; --chain-gap: 2.2rem; }
  .chain__step { padding-left: calc(var(--chain-badge) + 1.2rem); }
  .chain__num { position: absolute; left: 0; top: 0; }
  .chain__step h3 { margin-top: 0.2rem; }
  .chain__step::before,
  .chain__step::after {
    top: calc(var(--chain-badge) + 0.6rem);
    bottom: calc(var(--chain-gap) * -1);
    left: calc(var(--chain-badge) / 2 - 1px);
    right: auto;
    width: 2px;
    height: auto;
    transform-origin: top;
  }

  .js .reveal .chain__step::after { transform: scaleY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal .chain__step::after,
  .js .reveal.is-visible .chain__step::after { transform: none; transition: none; }
}

.studio-shots {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.9rem, 2vw, 1.6rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.studio-shots figure { margin: 0; }
.shot__frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--ligne);
  transition: border-color 0.3s;
  aspect-ratio: 4 / 3;
}

.studio-shots .span-7 .shot__frame { aspect-ratio: 16 / 9; }
.studio-shots .span-5 .shot__frame { aspect-ratio: 5 / 4; }

.studio-shots .shot--tall {
  grid-column: 4 / 13;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
}
.studio-shots .shot--tall .shot__frame {
  flex: 1;
  aspect-ratio: auto;
}

.studio-shots .span-3 .shot__frame { aspect-ratio: 2 / 1; }

.studio-shots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.studio-shots figure:hover .shot__frame { border-color: var(--cyan); }
.studio-shots figure:hover img { transform: scale(1.04); }
.studio-shots figcaption {
  display: flex;
  gap: 0.8em;

  text-align: left;
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--gris);
  transition: color 0.3s;
}
.shot__idx { flex: none; color: var(--cyan); }
.studio-shots figure:hover figcaption { color: var(--blanc-chaud); }

.crosslink {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding: 1.2rem 1.4rem 1.3rem;
  border: 1px solid var(--ligne);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--surface);
}
.crosslink .tape { margin-bottom: 0.5rem; }
.crosslink p { margin: 0; max-width: 70ch; }
.crosslink a { color: var(--cyan); }
.crosslink a:hover { color: var(--cyan-2); }

@media (max-width: 800px) {
  .studio-shots > * { grid-column: span 6; }
  .studio-shots .shot__frame,
  .studio-shots .span-7 .shot__frame,
  .studio-shots .span-5 .shot__frame { aspect-ratio: 4 / 3; }

  .studio-shots .shot--tall {
    grid-column: span 12;
    grid-row: auto;
    display: block;
  }
  .studio-shots .shot--tall .shot__frame { flex: none; aspect-ratio: 16 / 9; }

  .studio-shots .span-3 .shot__frame { aspect-ratio: 4 / 3; }

  .studio-shots > :last-child { grid-column: span 12; }
  .studio-shots > :last-child .shot__frame { aspect-ratio: 16 / 9; }
}
@media (max-width: 520px) {
  .studio-shots > * { grid-column: span 12; }
}

@media (prefers-reduced-motion: reduce) {
  .studio-shots figure:hover img { transform: none; }
}

.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
}
.offer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--ligne);
  transition: border-color 0.3s, transform 0.3s;
}
.offer:hover { border-color: var(--cyan); transform: translateY(-4px); }
.offer h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
}
.offer .offer__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--blanc-chaud);
}
.offer .offer__price small { font-size: 0.45em; color: var(--cyan); font-weight: 600; }
.offer p { color: var(--gris); font-size: 1.1rem; margin: 0; }
.offer .btn { margin-top: auto; align-self: flex-start; }

.offer__media {
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  margin: 0 0 0.4rem;
  aspect-ratio: 16 / 9;
}
.offer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.offer:hover .offer__media img { transform: scale(1.04); }

.checklist { list-style: none; margin: 0.5rem 0 0; padding: 0; display: grid; gap: 0.55rem; }
.checklist li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--blanc-chaud);
  font-size: 1.08rem;
  line-height: 1.35;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 700;
}
.checklist--cols { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0.55rem 1.8rem; }

.compare {
  overflow-x: auto;
  margin-top: 2.4rem;
  margin-bottom: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--ligne);
  border-radius: var(--radius);
}

.compare table { display: table; }
.compare caption { display: table-caption; }
.compare thead { display: table-header-group; }
.compare tbody { display: table-row-group; }
.compare tr { display: table-row; }
.compare th,
.compare td { display: table-cell; }

.compare table {
  width: 100%;
  border-collapse: collapse;
}
.compare caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
  padding: 1.4rem 1.4rem 0;
}
.compare th,
.compare td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--ligne);
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }

.compare thead tr { border-bottom: 1px solid var(--ligne); }

.compare thead th:first-child {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris);
  vertical-align: bottom;
  padding-bottom: 1.8rem;

  width: 22%;
}

.compare thead th.offer {
  border: 0;
  border-radius: 0;
  padding: 1.6rem 1.1rem 1.8rem;
  vertical-align: top;
  width: 39%;

  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.compare thead th.offer:hover { transform: none; }

.compare thead th.offer .offer__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  width: 100%;
}
.compare thead th.offer .offer__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.compare thead th.offer > * + * { margin-top: 0.5rem; }
.compare thead th.offer .btn { margin-top: 1.2rem; }

.compare tbody th {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--gris);
}
.compare td {
  color: var(--blanc-chaud);
  font-size: 1.02rem;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .compare th,
  .compare td { padding: 0.7rem 0.65rem; }
  .compare td { font-size: 0.95rem; }
  .compare tbody th { font-size: 0.9rem; }
  .compare caption { padding: 1rem 0.9rem 0; font-size: 0.68rem; letter-spacing: 0.14em; }
  .compare thead th:first-child { font-size: 0.66rem; letter-spacing: 0.1em; padding-bottom: 1.2rem; }
  .compare thead th.offer { padding: 1rem 0.65rem 1.2rem; }

  .compare thead th.offer .offer__price { font-size: 1.45rem; }

  .compare thead th.offer .offer__price small { display: block; font-size: 0.8rem; margin-top: 0.2rem; }
  .compare thead th.offer h3 { font-size: 0.68rem; letter-spacing: 0.12em; }
  .compare thead th.offer .btn {
    margin-top: 0.9rem;
    font-size: 0.82rem;
    padding: 0.55em 0.9em 0.7em;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .compare th,
  .compare td { padding: 0.6rem 0.45rem; }
  .compare td { font-size: 0.88rem; }
  .compare tbody th { font-size: 0.84rem; }
  .compare thead th.offer .offer__price { font-size: 1.2rem; }
  .compare thead th.offer .btn { font-size: 0.72rem; padding: 0.5em 0.7em 0.62em; }
}

.bento__cell h3 a { color: inherit; text-decoration: none; }
.bento__cell:hover h3 a { color: var(--cyan-2); }
.bento__cell > .bento__link { position: absolute; inset: 0; z-index: 3; }

.services { display: flex; flex-direction: column; }
.service {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--ligne);
}
.service:last-child { border-bottom: 1px solid var(--ligne); }
.service:nth-child(even) .service__media { order: 2; }
.service__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service:hover .service__media img { transform: scale(1.03); }
.service h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.service p { color: var(--gris); }

@media (max-width: 800px) {
  .service { grid-template-columns: 1fr; }
  .service:nth-child(even) .service__media { order: 0; }
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline;
  padding-block: clamp(1.5rem, 3vw, 2.4rem);
  border-top: 1px solid var(--ligne);
}
.step:last-child { border-bottom: 1px solid var(--ligne); }
.step__num {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--cyan);
}
.step h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  text-transform: uppercase;
  margin: 0;
}

.step h3::after { content: "."; color: var(--cyan); }
.step p { color: var(--gris); margin: 0; }

@media (max-width: 800px) {
  .step { grid-template-columns: auto 1fr; row-gap: 0.5rem; }
  .step p { grid-column: 1 / -1; }
}

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.quote {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--ligne);

  font-family: var(--font-body);
  font-size: 1rem;
}
.quote p { font-size: 1.15rem; color: var(--blanc-chaud); }
.quote footer {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.faq { max-width: 860px; }
.faq details {
  border-top: 1px solid var(--ligne);
  padding-block: 0.4rem;
}
.faq details:last-child { border-bottom: 1px solid var(--ligne); }
.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cyan);
  transition: transform 0.3s;
  flex: none;
}
.faq details[open] summary { color: var(--cyan); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0 1.4rem; color: var(--gris); max-width: 68ch; }
.faq details ul { margin: 0.4em 0; padding-left: 1.2em; }

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

.brxe-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}
.brxe-form .form-group { width: auto !important; }
.brxe-form .form-group:has(textarea),
.brxe-form .form-group:has(.options-wrapper),
.brxe-form .form-group.captcha,
.brxe-form .submit-button-wrapper { grid-column: 1 / -1; }

.brxe-form > div:has(> input[type="hidden"]) { display: contents; }

.brxe-form .form-group.captcha { display: block; min-width: 0; }
.brxe-form .form-group.captcha .cf-turnstile { width: 100%; max-width: 100%; }
.brxe-form .form-group.captcha iframe { display: block; max-width: 100%; }

@media (max-width: 339px) {
  .brxe-form .form-group.captcha .cf-turnstile {
    transform: scale(0.93);
    transform-origin: left center;
  }
}

.form label,
.brxe-form .form-group > label,
.brxe-form .form-group > .label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris);
}
.brxe-form .form-group > label,
.brxe-form .form-group > .label { margin-bottom: 0.35rem; }

.form input, .form textarea, .form select,
.brxe-form input:not([type="checkbox"]):not([type="radio"]),
.brxe-form textarea,
.brxe-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--blanc-chaud);
  background: var(--surface);
  border: 1px solid var(--ligne);
  border-radius: 10px;
  padding: 0.7em 0.9em;
  transition: border-color 0.2s;
}
.form input:focus, .form textarea:focus,
.brxe-form input:focus, .brxe-form textarea:focus {
  border-color: var(--cyan);
  outline: none;
}
.form .full { grid-column: 1 / -1; }
.form textarea,
.brxe-form textarea { min-height: 140px; resize: vertical; }
@media (max-width: 640px) {
  .form,
  .brxe-form { grid-template-columns: 1fr; }
}

.brxe-form .bricks-button {
  justify-self: start;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--noir-studio);
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 999px;
  padding: 0.85em 1.9em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.brxe-form .bricks-button:hover {
  background: var(--cyan-2);
  border-color: var(--cyan-2);
  transform: translateY(-2px);
}

.pills,
.brxe-form .options-wrapper { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.brxe-form .options-wrapper { list-style: none; margin: 0; padding: 0; }

.brxe-form .options-wrapper li { position: relative; display: flex; }
.pills input,
.brxe-form .options-wrapper input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.pills label,
.brxe-form .options-wrapper label {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gris);
  border: 1px solid var(--ligne);
  border-radius: 999px;
  padding: 0.4em 1.2em 0.5em;
  cursor: pointer;
  transition: all 0.2s;
}
.pills input:checked + label,
.brxe-form .options-wrapper input:checked + label {
  color: var(--noir-studio);
  background: var(--cyan-2);
  border-color: var(--cyan-2);
}
.pills input:focus-visible + label,
.brxe-form .options-wrapper input:focus-visible + label {
  outline: 2px solid var(--cyan-2);
  outline-offset: 3px;
}

.brxe-form .message {
  grid-column: 1 / -1;
  align-items: center;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(4, 165, 221, 0.20), rgba(69, 196, 240, 0.06));
  border: 1px solid rgba(4, 165, 221, 0.55);
  color: var(--blanc-chaud);
  font-size: 1.1rem;
  line-height: 1.45;
}
.brxe-form .message .text { padding: 1.1rem 1.3rem; }
.brxe-form .message .close { padding: 1.1rem 1.3rem; color: var(--cyan-2); }

.brxe-form .message.error {
  background: linear-gradient(120deg, rgba(224, 138, 40, 0.20), rgba(224, 138, 40, 0.05));
  border-color: rgba(224, 138, 40, 0.6);
}
.brxe-form .message.error .close { color: #e8a763; }

.contact-cols {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 800px) { .contact-cols { grid-template-columns: 1fr; } }

.phone-cta {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 2rem 0;
  padding: 1.4rem 2rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(4, 165, 221, 0.55);
  background:
    radial-gradient(circle at 90% 0%, rgba(69, 196, 240, 0.22), transparent 60%),
    linear-gradient(120deg, rgba(4, 165, 221, 0.22), rgba(69, 196, 240, 0.06));
  color: var(--blanc-chaud);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.phone-cta:hover {
  border-color: var(--cyan-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(4, 165, 221, 0.2);
}
.phone-cta__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-2);
}
.phone-cta__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.phone-cta__note { font-size: 1.05rem; color: rgba(245, 243, 238, 0.75); }

.addr-link { color: inherit; text-decoration: none; transition: color 0.2s; }

.addr-link:hover,
.addr-link.addr-link:hover { color: var(--cyan-2); text-decoration: underline; }

.calendly-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.calendly-intro h2 { margin: 0.6rem 0 1rem; }
.calendly-intro p { max-width: 40ch; }
.calendly-intro__list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  color: var(--blanc-chaud);
}
.calendly-intro__list li { padding-left: 1.6rem; position: relative; }
.calendly-intro__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
.calendly-embed { overflow: hidden; }
.calendly-embed .calendly-inline-widget { min-width: 320px; height: 700px; }
@media (max-width: 1100px) {

  .calendly-layout { grid-template-columns: 1fr; }
  .calendly-intro p { max-width: 62ch; }
  .calendly-embed .calendly-inline-widget { height: 700px; }
}
@media (max-width: 780px) {
  .calendly-embed .calendly-inline-widget { height: 720px; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.4rem);
  max-width: 900px;
}

@media (max-width: 559px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.team-card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--ligne);
  overflow: hidden;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: var(--cyan); transform: translateY(-4px); }

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: bottom;
  background: var(--surface-2);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.team-card:hover img { transform: scale(1.05); filter: brightness(1.08); }
.team-card__name {
  font-family: var(--font-display);

  font-size: clamp(1.2rem, 5.6vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0.8rem 0 0;
}
.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gris);
  margin: 0.3em 0 1.1rem;
}

.cta-band {
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 0%, rgba(69, 196, 240, 0.25), transparent 55%),
    linear-gradient(120deg, rgba(4, 165, 221, 0.28), rgba(69, 196, 240, 0.10));
  border: 1px solid rgba(4, 165, 221, 0.55);
  box-shadow: 0 18px 60px rgba(4, 165, 221, 0.14);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band__access {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem 2rem;
  margin: 0;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(4, 165, 221, 0.3);
  list-style: none;
  font-size: 1.05rem;
  line-height: 1.35;
  color: rgba(245, 243, 238, 0.78);
}
.cta-band__access strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-2);
  margin-bottom: 0.4em;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  text-transform: uppercase;
  max-width: 22ch;
}

.video-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ligne);
}
.video-panel video { width: 100%; height: auto; }
.video-panel iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }

.video-panel:has(iframe[src*="/maps"]) { height: clamp(210px, 62vw, 320px); }
@media (min-width: 760px) {
  .video-panel:has(iframe[src*="/maps"]) { height: auto; aspect-ratio: 21 / 9; }
}

.video-facade {
  position: relative;
  display: block;
  cursor: pointer;
}
.video-facade img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s;
}
.video-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 15, 0.1), rgba(12, 12, 15, 0.45));
  transition: background 0.35s;
}
.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(62px, 8vw, 84px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(4, 165, 221, 0.55);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.video-facade__play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.62em 0 0.62em 1.05em;
  border-color: transparent transparent transparent var(--noir-studio);
  font-size: clamp(15px, 2vw, 20px);
}
.video-facade:hover .video-facade__play,
.video-facade:focus-visible .video-facade__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--cyan-2);
  box-shadow: 0 0 0 14px rgba(4, 165, 221, 0.16);
}
.video-facade:hover img { opacity: 0.85; }

.footer {
  margin-top: var(--section-gap);
  border-top: 1px solid var(--ligne);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  font-size: 1.1rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer__brand p { color: var(--gris); margin-top: 0.8rem; max-width: 30ch; }
.footer .footer__h {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.footer a:hover { color: var(--cyan); }

.footer address { font-style: normal; color: var(--gris); line-height: 1.5; }
.footer address p { margin: 0; }
.footer__addr + .footer__addr { margin-top: 1rem; }
.footer__addr-title,
.footer address strong { color: var(--blanc-chaud); display: block; }
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ligne);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gris);
  font-size: 0.95rem;
}
.footer__bottom nav { display: flex; gap: 1.5rem; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}
.section-head .display { max-width: 20ch; }

.crumb {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gris);
  display: flex;
  gap: 0.7em;
  align-items: center;
}
.crumb a:hover { color: var(--cyan); }
.crumb span[aria-hidden] { color: var(--surface-2); }

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags li {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(4, 165, 221, 0.4);
  border-radius: 999px;
  padding: 0.35em 1em;
}
.tags { margin: 0; padding: 0; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.7em 1.2em;
  background: var(--cyan);
  color: #06222d;
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.interview { max-width: 860px; }
.interview .qa { padding-block: 1.4rem; border-top: 1px solid var(--ligne); }
.interview .qa:last-child { border-bottom: 1px solid var(--ligne); }
.interview .qa h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.interview .qa p { color: var(--gris); max-width: 68ch; margin: 0; }

.artist-hero {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 3.5vw, 2.6rem);
}
.artist-hero__photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 12 / 5;
}
.artist-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.artist-hero h1 { font-size: var(--step-1); }
.artist-hero__accroche {
  font-size: var(--step-body);
  color: var(--gris);
  margin-top: 0.6rem;
}
.artist-hero .player { max-width: 460px; margin-top: 1.6rem; }
.artist-hero .btn { margin-top: 1.8rem; }

.artist-hero__memoriam {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.65;
  margin-top: 0.9rem;
}
.hero-page .crumb { margin-bottom: 1.6rem; }

.voix-content { max-width: 860px; }
.voix-content p { max-width: 68ch; }
.voix-content > p:first-child {
  font-size: var(--step-body);
  max-width: 62ch;
}
.voix-content b, .voix-content strong { font-weight: 600; }
.voix-content a { color: var(--cyan); }
.voix-content a:hover { color: var(--cyan-2); }

.voix-content .interview-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
  margin: clamp(2.6rem, 6vw, 4rem) 0 0.4rem;
}
.voix-content .interview-label strong { color: inherit; font-weight: 400; }

.voix-content .qa-fold {
  border-top: 1px solid var(--ligne);
  padding-block: 0.4rem;
}
.voix-content .qa-fold:last-of-type { border-bottom: 1px solid var(--ligne); }
.voix-content .qa-fold summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.voix-content .qa-fold summary::-webkit-details-marker { display: none; }
.voix-content .qa-fold summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cyan);
  transition: transform 0.3s;
  flex: none;
}
.voix-content .qa-fold[open] summary { color: var(--cyan); }
.voix-content .qa-fold[open] summary::after { transform: rotate(45deg); }
.voix-content .qa-fold > div { padding: 0 0 1.4rem; }
.voix-content .qa-fold > div p { color: var(--gris); }
.voix-content .qa-fold > div p:last-child { margin-bottom: 0; }

.voix-content .wp-block-group h2 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  border-top: 1px solid var(--ligne);
  padding-top: 1.4rem;
  margin: 1.4rem 0 0.5rem;
}
.voix-content .wp-block-group p { color: var(--gris); }

.project-head { padding-bottom: clamp(1.6rem, 4vh, 2.6rem); }
.project-head .crumb { margin-bottom: 1.6rem; }
.project-head__cats { margin-top: 1.6rem; }

.project-head__cats a { color: inherit; }
.project-head__cats li:hover { border-color: var(--cyan); background: rgba(4, 165, 221, 0.08); }

.project-media {
  width: min(1580px, 100% - 2 * var(--gutter));
  margin-inline: auto;
  padding-block: 0;
}

.project-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 3rem;
  margin: 0;
  padding: 1.6rem 0;
  border-top: 1px solid var(--ligne);
  border-bottom: 1px solid var(--ligne);
}
.project-facts__item { display: flex; flex-direction: column; gap: 0.35rem; }
.project-facts__item dt { margin: 0; }

.project-facts .tape::before { display: none; }
.project-facts__item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  max-width: 34ch;
}

.project-facts__item--mentions dd { white-space: pre-line; font-weight: 500; }

.project-extra {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.project-extra:empty { display: none; }
.video-facade--bare {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(4, 165, 221, 0.12), transparent 65%),
    var(--surface);
  border: 1px solid var(--ligne);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-facade--bare::after { content: none; }
.video-facade--bare:hover { border-color: var(--cyan); }

.video-facade--bare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
.video-facade--bare.has-poster::after { content: ''; }
.video-facade__label {
  position: absolute;
  left: 1.2rem;
  bottom: 0.9rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gris);
}
.video-facade--bare.has-poster .video-facade__label { color: var(--blanc-chaud); }

.project-extra iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--radius); }

.project-audio-section { padding-block: clamp(1.2rem, 3vh, 2rem); }

.project-facts-section { padding-block: clamp(1.2rem, 3vh, 2rem); }
.project-copy-section { padding-top: clamp(1.2rem, 3vh, 2rem); }
.project-audio { max-width: 640px; }
.project-audio .tape { margin-bottom: 1rem; }

.project-copy { max-width: 64ch; }
.project-copy .tape { margin-bottom: 1rem; }
.project-copy p {
  font-size: var(--step-body);
  color: var(--blanc-chaud);
  margin-bottom: 1.2rem;
}
.project-copy p:last-child { margin-bottom: 0; }

.project-nav {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--ligne);
  border-bottom: 1px solid var(--ligne);
  padding-block: 1.6rem;
}
.project-nav__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 45%;
}

.project-nav__item--next { margin-inline-start: auto; text-align: right; }
.project-nav__dir {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gris);
}
.project-nav__item strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.15;
}
.project-nav__item:hover strong { color: var(--cyan); }

@media (max-width: 640px) {
  .project-nav { gap: 1.1rem; }
  .project-nav__item { max-width: 100%; }
}

@media (max-width: 640px) {
  .cta-band { padding: 2rem 1.4rem; }

  .btn-group { width: 100%; }
  .btn-group .btn { flex: 1 1 auto; justify-content: center; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .hero-page { padding-top: 7rem; }
  .hero-page h1, .hero-video--page .hero-video__content h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer .btn { align-self: stretch; justify-content: center; }
  .logos img { height: 32px; }
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .tape::before, .player.is-playing .player__wave i { animation: none; }
  .js .works-grid--showcase .work-card { opacity: 1; animation: none !important; }
  * { transition-duration: 0.01ms !important; }
}

:where(.brxe-section, .brxe-container, .brxe-block, .brxe-div) {
  display: block;
  flex-direction: initial;
  align-items: initial;
  justify-content: initial;
  width: auto;
  max-width: none;
  padding: 0;
}

:where(a.brxe-text-link) {
  display: block;
  align-items: initial;
  justify-content: initial;
}
:where(a.brxe-text-link span) {
  display: inline;
  align-items: initial;
  justify-content: initial;
}

#brx-content img { max-width: 100%; }

#brx-content .logo-marquee__group img { max-width: none; }
#brx-content :is(.bento__cell, .work-card, .voice-card__photo, .service__media) img {
  width: 100%;
  height: 100%;
}

#brx-content .plan-mosaic__plan img {
  width: 100%;
  height: auto;
}

:where(#brx-header) {
  position: static;
  width: auto;
  background: transparent;
}

.hero-video .brxe-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding-top: 0;
  aspect-ratio: auto;
  overflow: hidden;
}

.brxe-svg { display: block; line-height: 0; }
.site-logo .brxe-svg svg  { width: auto; display: block; }
.nav__logo .brxe-svg svg     { height: 34px; }
.footer__logo .brxe-svg svg  { height: 42px; }

@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:has(:focus-visible),
.voice-card:has(:focus-visible),
.team-card:has(:focus-visible),
.bento__cell:has(:focus-visible),
.offer:has(:focus-visible),
.post-card:has(:focus-visible),
.post-feature:has(:focus-visible) {
  border-color: var(--cyan);
  transform: translateY(-4px);
}
.work-card:has(:focus-visible) { box-shadow: 0 12px 40px rgba(4, 165, 221, 0.22); }
.work-card:has(:focus-visible) img { transform: scale(1.05); opacity: 1; }
.work-card:has(:focus-visible) .work-card__hover { opacity: 1; transform: none; }
.team-card:has(:focus-visible) img { transform: scale(1.05); filter: brightness(1.08); }
.voice-card:has(:focus-visible) .voice-card__photo img { filter: grayscale(0%); transform: scale(1.03); }
.bento__cell:has(:focus-visible) img { opacity: 0.75; transform: scale(1.04); }
.bento__cell:has(:focus-visible) > .bento__art { opacity: 0.7; transform: scale(1.04); }
.offer:has(:focus-visible) .offer__media img { transform: scale(1.04); }
.post-card:has(:focus-visible) .post-card__media img,
.post-feature:has(:focus-visible) .post-feature__media img { transform: scale(1.05); }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero-video__content > .tape,
.hero-video__content > .lead,
.hero-video__content > .btn-group,
.hero-video__content > .btn,
.hero-page > .tape,
.hero-page > .lead,
.hero-page > .btn,
.hero-page > .btn-group {
  animation: hero-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-video__content > .tape,
.hero-page > .tape { animation-delay: 0.05s; }
.hero-video__content > .lead,
.hero-page > .lead { animation-delay: 0.16s; }
.hero-video__content > .btn-group,
.hero-video__content > .btn,
.hero-page > .btn,
.hero-page > .btn-group { animation-delay: 0.26s; }

.js .reveal.has-cascade {
  opacity: 1;
  transform: none;
  transition: none;
}
.js .reveal.has-cascade > * { opacity: 0; }
.js .reveal.has-cascade.is-visible > * {
  animation: card-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(min(var(--i, 0), 6) * 70ms);
}

.player.is-playing .player__wave i:not(.is-played) {
  background: rgba(245, 243, 238, 0.38);
}

.player.is-playing .player__wave i.is-played + i:not(.is-played) {
  background: var(--blanc-chaud);
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) { animation: none !important; }

  .hero-video__content > *,
  .hero-page > * { animation: none !important; opacity: 1 !important; transform: none !important; }

  .js .reveal.has-cascade > * { opacity: 1 !important; animation: none !important; }
}

.stat__num { font-variant-numeric: tabular-nums; }
