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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: clip;
  background: var(--sc-black);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--sc-ivory);
  background:
    radial-gradient(circle at 10% 20%, rgba(216, 182, 106, .08), transparent 30%),
    var(--sc-black);
  font-family: var(--font-body);
  font-size: clamp(.98rem, .28vw + .93rem, 1.1rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.offcanvas-open { overflow: hidden; }

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

img { height: auto; }

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

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

button { color: inherit; }

::selection {
  color: var(--sc-black);
  background: var(--sc-gold-light);
}

.site-container {
  width: 100%;
  max-width: none;
  padding-inline: var(--site-gutter);
}

.screen {
  position: relative;
  min-height: 100svh;
  padding-block: clamp(6.5rem, 10vw, 10.5rem);
  overflow: clip;
  scroll-margin-top: var(--nav-height);
}

.section-night {
  background:
    radial-gradient(circle at 84% 16%, rgba(216, 182, 106, .07), transparent 28%),
    linear-gradient(180deg, #08080a 0%, #0d0d11 100%);
}

.section-soft {
  color: var(--sc-ink);
  background:
    radial-gradient(circle at 82% 12%, rgba(183, 44, 50, .12), transparent 34%),
    linear-gradient(180deg, #f4efe6 0%, #e9e1d3 100%);
}

.section-warm {
  color: var(--sc-ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 182, 106, .28), transparent 34%),
    linear-gradient(180deg, #e9dfcf 0%, #d8c8b1 100%);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  padding: .8rem 1.1rem;
  border-radius: 999px;
  color: var(--sc-black);
  background: var(--sc-gold-light);
  transition: top var(--transition-fast);
}

.skip-link:focus { top: 1rem; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  height: 2px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--sc-gold), #ff826c);
}

/* Navigation */
.site-nav {
  min-height: var(--nav-height);
  padding-block: .75rem;
  transition: background var(--transition-medium), box-shadow var(--transition-medium), backdrop-filter var(--transition-medium);
}

.site-nav.is-scrolled {
  background: rgba(5, 5, 6, .84);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px) saturate(130%);
}

.navbar-brand,
.mobile-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .02em;
}

.navbar-brand img,
.footer-brand img { filter: drop-shadow(0 0 12px rgba(216, 182, 106, .28)); }

.navbar-nav { gap: .1rem; }

.nav-link {
  position: relative;
  padding: .58rem .74rem !important;
  color: rgba(245, 240, 230, .77);
  font-size: .86rem;
  letter-spacing: .025em;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: .74rem;
  right: .74rem;
  bottom: .2rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--sc-gold);
  transition: transform var(--transition-medium);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active { color: var(--sc-ivory); }

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
  padding: .5rem;
}

.menu-lines {
  display: grid;
  gap: 7px;
  width: 30px;
}

.menu-lines i {
  display: block;
  height: 1px;
  background: var(--sc-ivory);
}

.mobile-menu {
  width: min(440px, 94vw);
  border: 0;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  color: var(--sc-ivory);
  background:
    radial-gradient(circle at 85% 10%, rgba(216, 182, 106, .16), transparent 32%),
    #0b0b0d;
}

.mobile-menu .offcanvas-header { padding: 1.5rem 1.5rem .75rem; }

.mobile-menu .offcanvas-body { padding: 1rem 1.5rem 2rem; }

.mobile-brand h2 {
  margin: 0;
  font-size: 1.25rem;
}

.mobile-nav {
  display: grid;
  gap: .35rem;
  margin-top: 1rem;
}

.mobile-nav a {
  padding: .8rem 0;
  border-bottom: 1px solid var(--sc-line);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 5vw, 2rem);
}

/* Buttons */
.btn-sc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 48px;
  padding: .8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: .025em;
  transition:
    transform var(--transition-fast),
    background var(--transition-medium),
    color var(--transition-medium),
    border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.btn-sc:hover,
.btn-sc:focus-visible {
  transform: translateY(-3px);
  outline: 0;
}

.btn-sc-gold {
  color: #18130a;
  background: linear-gradient(135deg, var(--sc-gold-light), var(--sc-gold));
  box-shadow: 0 12px 36px rgba(216, 182, 106, .16);
}

.btn-sc-gold:hover,
.btn-sc-gold:focus-visible {
  color: #080706;
  box-shadow: 0 18px 42px rgba(216, 182, 106, .28);
}

.btn-sc-ghost {
  color: var(--sc-ivory);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(7, 7, 8, .24);
  backdrop-filter: blur(10px);
}

.btn-sc-ghost:hover,
.btn-sc-ghost:focus-visible {
  color: var(--sc-ivory);
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .08);
}

.btn-sc-dark {
  color: var(--sc-ivory);
  background: var(--sc-ink);
}

.btn-sc-dark:hover,
.btn-sc-dark:focus-visible {
  color: var(--sc-ivory);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

/* Generic typography */
.eyebrow {
  margin: 0 0 1rem;
  color: var(--sc-gold);
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.section-soft .eyebrow,
.section-warm .eyebrow { color: #76561f; }

.section-title {
  max-width: 16ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.9vw, 5.75rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.section-lead {
  max-width: 46rem;
  margin: 1.5rem 0 0;
  color: rgba(245, 240, 230, .78);
  font-size: clamp(1.05rem, .7vw + .85rem, 1.38rem);
  line-height: 1.5;
}

.section-soft .section-lead,
.section-warm .section-lead { color: rgba(11, 11, 13, .72); }

.body-copy {
  max-width: 44rem;
  margin: 1.2rem 0 0;
  color: rgba(245, 240, 230, .68);
}

.heading-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.8rem, 6vw, 6rem);
}

.heading-wide .section-lead { margin: 0; }

/* Ambient decoration */
.section-glow {
  position: absolute;
  width: min(55vw, 850px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: .18;
}

.glow-gold {
  top: 8%;
  right: -22%;
  background: radial-gradient(circle, rgba(216, 182, 106, .8), transparent 68%);
}

.glow-red {
  top: 6%;
  left: -18%;
  background: radial-gradient(circle, rgba(183, 44, 50, .65), transparent 70%);
}

.glow-blue {
  bottom: -20%;
  right: -12%;
  background: radial-gradient(circle, rgba(57, 94, 126, .75), transparent 70%);
}

/* Hero */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: #030405;
}

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

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, .92) 0%, rgba(3, 4, 5, .65) 42%, rgba(3, 4, 5, .18) 78%, rgba(3, 4, 5, .52) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, .26), rgba(3, 4, 5, .6) 82%, #08080a 100%);
}

.ambient-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
  animation: ambient-pulse 9s ease-in-out infinite;
}

.ambient-orb-one {
  right: 8vw;
  bottom: 12vh;
  width: clamp(150px, 18vw, 340px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 182, 106, .22);
  box-shadow:
    0 0 80px rgba(216, 182, 106, .07) inset,
    0 0 80px rgba(216, 182, 106, .05);
}

.ambient-orb-two {
  right: 21vw;
  bottom: 28vh;
  width: clamp(70px, 8vw, 150px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.44), rgba(216,182,106,.08) 30%, transparent 70%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 4rem;
  align-items: end;
}

.hero-copy { max-width: 1020px; }

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8.4vw, 9.2rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--sc-gold-light);
  font-weight: 400;
}

.hero-lead {
  max-width: 58rem;
  margin: 2rem 0 0;
  color: rgba(245, 240, 230, .86);
  font-size: clamp(1.08rem, 1vw + .75rem, 1.55rem);
  line-height: 1.48;
}

.hero-note {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: rgba(245, 240, 230, .58);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.hero-signature {
  display: grid;
  gap: .45rem;
  align-self: center;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 32px;
  background: rgba(6, 6, 7, .24);
  backdrop-filter: blur(14px);
}

.hero-signature span {
  color: rgba(245,240,230,.7);
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.video-toggle {
  position: absolute;
  right: var(--site-gutter);
  top: calc(var(--nav-height) + 1.5rem);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--sc-ivory);
  background: rgba(5,5,6,.36);
  backdrop-filter: blur(10px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  display: grid;
  justify-items: center;
  gap: .5rem;
  transform: translateX(-50%);
  color: rgba(245,240,230,.58);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 1px;
  height: 34px;
  background: rgba(245,240,230,.6);
  animation: cue-line 2.2s ease-in-out infinite;
}

/* Method */
.content-cloud {
  padding: clamp(1.5rem, 3vw, 3.5rem);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl) var(--radius-md) var(--radius-xl) var(--radius-lg);
  background:
    radial-gradient(circle at 10% 10%, rgba(216,182,106,.08), transparent 36%),
    rgba(255,255,255,.035);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.signature-quote {
  margin: 2rem 0 0;
  padding: 1.2rem 0 0 1.25rem;
  border-left: 2px solid var(--sc-gold);
  color: var(--sc-gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.5vw, 1.75rem);
  line-height: 1.35;
}

.organic-visual {
  position: relative;
  overflow: hidden;
  border-radius: 43% 57% 37% 63% / 53% 42% 58% 47%;
  box-shadow: var(--shadow-soft);
}

.organic-visual img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
}

.transformation-visual figcaption {
  position: absolute;
  inset: auto 1.5rem 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1rem;
  border-radius: 999px;
  color: rgba(245,240,230,.82);
  background: rgba(5,5,6,.62);
  backdrop-filter: blur(12px);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: clamp(3.5rem, 7vw, 7rem) 0 0;
  list-style: none;
}

.method-flow::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 27px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,182,106,.6), transparent);
}

.method-flow li {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 0 1rem;
  text-align: center;
}

.step-number {
  display: grid;
  place-items: center;
  width: 56px;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  color: #19130b;
  background: linear-gradient(135deg, var(--sc-gold-light), var(--sc-gold));
  font-size: .78rem;
  font-weight: 750;
}

.method-flow h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.method-flow p {
  margin: .5rem 0 0;
  color: rgba(245,240,230,.62);
  font-size: .92rem;
}

/* Audience */
.audience-flow {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(.9rem, 1.7vw, 1.5rem);
}

.audience-bubble {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  isolation: isolate;
  box-shadow: 0 24px 70px rgba(53, 39, 26, .12);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.audience-bubble::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02) 26%, rgba(0,0,0,.76) 100%),
    linear-gradient(90deg, rgba(0,0,0,.2), transparent 52%);
}

.audience-bubble:hover,
.audience-bubble:focus-visible {
  transform: translateY(-7px) scale(1.005);
  box-shadow: 0 32px 90px rgba(53, 39, 26, .22);
  outline: 0;
}

.audience-bubble img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.16,.8,.2,1);
}

.audience-bubble:hover img,
.audience-bubble:focus-visible img { transform: scale(1.055); }

.audience-bubble > div {
  position: absolute;
  left: clamp(1.2rem, 2vw, 2rem);
  right: clamp(1.2rem, 2vw, 2rem);
  bottom: clamp(1.2rem, 2vw, 2rem);
  color: #fff;
}

.audience-bubble h3 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.1vw, 2.75rem);
  font-weight: 400;
  line-height: 1.04;
}

.audience-bubble p {
  max-width: 34rem;
  margin: .75rem 0 0;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

.bubble-index,
.bubble-arrow {
  position: absolute;
  top: 1.2rem;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 42px;
  min-width: 42px;
  padding-inline: .8rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(7,7,8,.38);
  backdrop-filter: blur(10px);
  font-size: .76rem;
}

.bubble-index { left: 1.2rem; }
.bubble-arrow { right: 1.2rem; font-size: 1rem; }

.bubble-tall { grid-column: span 4; min-height: 610px; }
.bubble-wide { grid-column: span 5; min-height: 430px; }
.bubble-medium { grid-column: span 3; min-height: 430px; }

/* Services */
.services-orbit {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: start;
}

.services-visual {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  overflow: hidden;
  min-height: 74vh;
  border-radius: 48% 52% 38% 62% / 46% 42% 58% 54%;
  box-shadow: var(--shadow-soft);
}

.services-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(0,0,0,.76));
}

.services-visual img {
  width: 100%;
  height: 100%;
  min-height: 74vh;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  z-index: 1;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.service-list {
  display: grid;
  gap: .9rem;
}

.service-pill {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.25rem 1.25rem 1.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  transition: transform var(--transition-medium), background var(--transition-medium), box-shadow var(--transition-medium);
}

.service-pill:hover {
  transform: translateX(10px);
  background: rgba(255,255,255,.085);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.service-pill > span {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--sc-gold-light);
  background: rgba(216,182,106,.11);
  font-size: .75rem;
}

.service-pill h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.7vw, 1.9rem);
  font-weight: 400;
}

.service-pill p {
  margin: .25rem 0 0;
  color: rgba(245,240,230,.58);
  font-size: .88rem;
}

.service-pill > a {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--sc-black);
  background: var(--sc-gold);
  transition: transform var(--transition-fast);
}

.service-pill > a:hover,
.service-pill > a:focus-visible {
  transform: rotate(45deg);
  outline: 0;
}

/* Studios */
.studios-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .85fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
}

.studios-intro .section-lead { margin: 0; }

.studio-ribbon {
  display: grid;
  grid-template-columns: 1.25fr .72fr .72fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.studio-shot {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(74, 52, 31, .16);
}

.studio-shot:nth-child(2) { border-radius: 80px 30px 80px 30px; }
.studio-shot:nth-child(3) { border-radius: 30px 80px 30px 80px; }
.studio-shot:nth-child(4) { border-radius: 45% 55% 18% 82% / 42% 38% 62% 58%; }

.studio-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.75));
}

.studio-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.16,.8,.2,1);
}

.studio-shot:hover img { transform: scale(1.04); }

.studio-shot figcaption {
  position: absolute;
  z-index: 1;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  gap: .1rem;
  color: #fff;
}

.studio-shot strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.studio-shot span {
  color: rgba(255,255,255,.66);
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.studio-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 2rem 0;
}

.studio-facts span {
  padding: .72rem 1rem;
  border-radius: 999px;
  color: rgba(11,11,13,.76);
  background: rgba(255,255,255,.45);
  font-size: .85rem;
}

/* Vox Chroma */
.vox-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 39, 66, .28), transparent 33%),
    radial-gradient(circle at 78% 74%, rgba(46, 72, 106, .26), transparent 38%),
    #09090c;
}

.vox-backdrop {
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 18%, rgba(255,255,255,.05) 19%, transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.05), transparent 45%);
}

.vox-collage {
  position: relative;
  min-height: 760px;
}

.vox-main,
.vox-float {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.vox-main {
  inset: 0 18% 4% 0;
  border-radius: 47% 53% 40% 60% / 52% 45% 55% 48%;
}

.vox-float {
  width: 38%;
  right: 0;
  bottom: 0;
  border: 8px solid rgba(9,9,12,.9);
  border-radius: 42px 90px 42px 90px;
}

.vox-main img,
.vox-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vox-copy {
  border-radius: 70px 34px 70px 34px;
}

.soft-list {
  display: grid;
  gap: .65rem;
  padding: 0;
  margin: 1.7rem 0;
  list-style: none;
}

.soft-list li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(245,240,230,.74);
}

.soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sc-gold);
  box-shadow: 0 0 16px rgba(216,182,106,.55);
}

.micro-copy {
  margin: 0 0 1.5rem;
  color: rgba(245,240,230,.48);
  font-size: .78rem;
}

/* Events */
.event-stage {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.event-image {
  position: relative;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
  border-radius: 50% 50% 35% 65% / 42% 58% 42% 58%;
  box-shadow: var(--shadow-soft);
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-copy { max-width: 850px; }

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 2rem 0;
}

.event-tags span {
  padding: .74rem 1rem;
  border-radius: 999px;
  color: rgba(245,240,230,.76);
  background: rgba(255,255,255,.06);
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2rem;
}

.filter-pill {
  padding: .72rem 1rem;
  border: 0;
  border-radius: 999px;
  color: rgba(11,11,13,.72);
  background: rgba(255,255,255,.5);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.filter-pill:hover,
.filter-pill:focus-visible,
.filter-pill.is-active {
  color: var(--sc-ivory);
  background: var(--sc-ink);
  transform: translateY(-2px);
  outline: 0;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  grid-row: span 2;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: #222;
  box-shadow: 0 18px 55px rgba(54, 40, 25, .15);
  cursor: pointer;
  text-align: left;
}

.gallery-item:nth-child(2n) { border-radius: 78px 28px 78px 28px; }
.gallery-item:nth-child(3n) { border-radius: 30px 78px 30px 78px; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item.gallery-tall { grid-row: span 3; }

.gallery-item[hidden] { display: none !important; }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.78));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.16,.8,.2,1);
}

.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.055); }

.gallery-item:focus-visible {
  outline: 3px solid var(--sc-gold);
  outline-offset: 3px;
}

.gallery-item > span {
  position: absolute;
  z-index: 1;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  color: #fff;
}

.gallery-item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
}

.gallery-item small {
  color: rgba(255,255,255,.62);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* About */
.about-section {
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #050506;
}

.about-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5,5,6,.94) 0%, rgba(5,5,6,.78) 46%, rgba(5,5,6,.18) 100%);
}

.about-cloud {
  width: min(980px, 78vw);
  padding: clamp(1.6rem, 4vw, 4rem);
  border-radius: 82px 34px 82px 34px;
  background: rgba(6,6,8,.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}


.values-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.values-flow article {
  padding: 1.25rem;
  border-radius: 30px;
  background: rgba(255,255,255,.055);
}

.values-flow span {
  color: var(--sc-gold);
  font-size: .7rem;
  letter-spacing: .12em;
}

.values-flow h3 {
  margin: .5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.values-flow p {
  margin: .4rem 0 0;
  color: rgba(245,240,230,.58);
  font-size: .86rem;
}

/* Contact */
.contact-section {
  color: var(--sc-ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(216,182,106,.24), transparent 30%),
    linear-gradient(180deg, #eee7db 0%, #d8ccba 100%);
}

.contact-intro,
.contact-form {
  padding: clamp(1.5rem, 3vw, 3rem);
  border-radius: var(--radius-xl) var(--radius-md) var(--radius-xl) var(--radius-md);
}

.contact-intro {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  background: rgba(255,255,255,.36);
}

.contact-section .section-lead { color: rgba(11,11,13,.68); }

.contact-details {
  display: grid;
  gap: .45rem;
  margin: 2rem 0;
}

.contact-details a,
.contact-details span {
  width: fit-content;
  color: rgba(11,11,13,.78);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.social-row a {
  padding: .64rem .9rem;
  border-radius: 999px;
  color: var(--sc-ink);
  background: rgba(255,255,255,.58);
  font-size: .82rem;
}

.contact-form {
  background: rgba(11,11,13,.94);
  box-shadow: 0 24px 80px rgba(49, 35, 20, .18);
}

.contact-form label {
  display: inline-block;
  margin-bottom: .45rem;
  color: rgba(245,240,230,.72);
  font-size: .8rem;
}

.form-control,
.form-select {
  min-height: 51px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  color: var(--sc-ivory);
  background-color: rgba(255,255,255,.055);
}

textarea.form-control { min-height: 160px; }

.form-control:focus,
.form-select:focus {
  border-color: rgba(216,182,106,.72);
  box-shadow: 0 0 0 .22rem rgba(216,182,106,.12);
  color: var(--sc-ivory);
  background-color: rgba(255,255,255,.07);
}

.form-control::placeholder { color: rgba(245,240,230,.34); }

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d8b66a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check-input {
  border-color: rgba(255,255,255,.2);
  background-color: rgba(255,255,255,.06);
}

.form-check-input:checked {
  border-color: var(--sc-gold);
  background-color: var(--sc-gold);
}

.form-check-label { color: rgba(245,240,230,.62) !important; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.form-status {
  color: var(--sc-gold-light);
  font-size: .82rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.faq-block { margin-top: clamp(5rem, 9vw, 9rem); }

.faq-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2rem;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.faq-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 400;
}

.soft-accordion {
  display: grid;
  gap: .65rem;
}

.soft-accordion .accordion-item {
  overflow: hidden;
  border: 0;
  border-radius: 24px !important;
  background: rgba(255,255,255,.46);
}

.soft-accordion .accordion-button {
  padding: 1.25rem 1.4rem;
  color: var(--sc-ink);
  background: transparent;
  box-shadow: none !important;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.soft-accordion .accordion-button:not(.collapsed) { color: #6f4f19; }

.soft-accordion .accordion-button::after {
  border-radius: 50%;
  background-color: rgba(255,255,255,.56);
  background-position: center;
}

.soft-accordion .accordion-body {
  padding: 0 1.4rem 1.4rem;
  color: rgba(11,11,13,.68);
}

/* Footer */
.site-footer {
  padding-block: clamp(4rem, 7vw, 7rem) 2rem;
  background: #050506;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: clamp(2rem, 5vw, 6rem);
}

.footer-grid h2 {
  margin: 0 0 1rem;
  color: var(--sc-gold);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-grid p {
  margin: .8rem 0 0;
  color: rgba(245,240,230,.52);
}

.footer-grid nav,
.footer-grid > div:last-child {
  display: grid;
  align-content: start;
  gap: .5rem;
}

.footer-grid a:not(.footer-brand) {
  width: fit-content;
  color: rgba(245,240,230,.66);
}

.footer-grid a:hover,
.footer-grid a:focus-visible { color: var(--sc-ivory); }

.legal-zone {
  display: grid;
  gap: .6rem;
  margin-top: 3rem;
}

.legal-zone details {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
}

.legal-zone summary {
  padding: 1rem 1.2rem;
  cursor: pointer;
  color: rgba(245,240,230,.72);
}

.legal-zone details > div {
  padding: 0 1.2rem 1.2rem;
  color: rgba(245,240,230,.48);
  font-size: .88rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--sc-line);
  color: rgba(245,240,230,.42);
  font-size: .76rem;
}

/* Modals */
.soft-modal {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 34px;
  background: #0b0b0d;
}

.soft-modal .modal-header { border-color: rgba(255,255,255,.08); }

.soft-modal video,
.soft-modal img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 22px;
}

.modal-note {
  margin: 1rem 0 0;
  color: rgba(245,240,230,.48);
  font-size: .78rem;
}

.noscript-message {
  position: fixed;
  z-index: 99999;
  inset: auto 1rem 1rem;
  padding: 1rem;
  border-radius: 18px;
  color: #111;
  background: var(--sc-gold-light);
}

/* Responsive */
@media (max-width: 1199.98px) {
  :root { --nav-height: 70px; }

  .hero-layout { grid-template-columns: 1fr; }
  .hero-signature {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
  }

  .heading-wide,
  .studios-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .heading-wide .section-lead,
  .studios-intro .section-lead { margin-top: 0; }

  .audience-flow { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .bubble-tall,
  .bubble-wide,
  .bubble-medium { grid-column: span 3; min-height: 500px; }

  .services-orbit { grid-template-columns: 1fr; }
  .services-visual {
    position: relative;
    top: auto;
    min-height: 580px;
  }
  .services-visual img { min-height: 580px; }

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

  .vox-collage { min-height: 680px; }

  .event-stage { grid-template-columns: 1fr 1fr; }

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

  .contact-intro { position: relative; top: auto; }
}

@media (max-width: 991.98px) {
  .screen { min-height: auto; }

  .section-title { max-width: 18ch; }

  .method-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
  }

  .method-flow::before { display: none; }

  .audience-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bubble-tall,
  .bubble-wide,
  .bubble-medium { grid-column: span 1; min-height: 470px; }

  .event-stage { grid-template-columns: 1fr; }
  .event-image {
    min-height: 620px;
    max-width: 700px;
  }

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

  .about-cloud { width: min(100%, 900px); }
  .about-section::after { background: rgba(5,5,6,.72); }

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

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
  :root { --site-gutter: 1rem; }

  .screen { padding-block: 5.5rem; }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-height) + 3rem);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3,4,5,.42), rgba(3,4,5,.54) 38%, rgba(3,4,5,.92) 100%);
  }

  .hero h1 { font-size: clamp(3.2rem, 17vw, 5.6rem); }
  .hero-actions { display: grid; }
  .hero-actions .btn-sc { width: 100%; }

  .hero-signature { display: none; }
  .video-toggle { right: 1rem; }

  .content-cloud { border-radius: 46px 24px 46px 24px; }
  .organic-visual img { min-height: 420px; }

  .method-flow { grid-template-columns: 1fr; }
  .method-flow li {
    grid-template-columns: auto 1fr;
    text-align: left;
    padding: 0;
  }
  .step-number { margin: 0; }
  .method-flow h3 { margin-top: .25rem; }

  .audience-flow { grid-template-columns: 1fr; }
  .bubble-tall,
  .bubble-wide,
  .bubble-medium { grid-column: auto; min-height: 470px; }

  .service-pill {
    grid-template-columns: auto 1fr;
    border-radius: 30px;
  }
  .service-pill > a { grid-column: 2; justify-self: start; }
  .services-visual,
  .services-visual img { min-height: 480px; }

  .studio-ribbon { grid-template-columns: 1fr; }
  .studio-shot { min-height: 520px; }

  .vox-collage { min-height: 560px; }
  .vox-main { inset: 0 10% 6% 0; }
  .vox-float { width: 45%; }

  .event-image { min-height: 560px; }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-item.gallery-wide { grid-column: auto; }

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

  .about-cloud {
    width: 100%;
    border-radius: 48px 24px 48px 24px;
  }

  .faq-heading { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .audience-bubble { min-height: 420px; }
  .studio-shot { min-height: 450px; }
  .vox-collage { min-height: 500px; }
  .event-image { min-height: 500px; }
}

/* ==============================================================
   VERSION 3 — MISE EN PAGE RECENTRÉE ET VISUELS EN ARRIÈRE-PLAN
   ============================================================== */

:root {
  --content-max: 1240px;
  --content-reading: 760px;
}

.site-container {
  width: calc(100% - clamp(2rem, 8vw, 9rem));
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(.5rem, 1.4vw, 1.25rem);
}

.content-narrower {
  max-width: 1100px;
}

.screen {
  min-height: auto;
  padding-block: clamp(6rem, 9vw, 8.5rem);
}

.section-title {
  max-width: 17ch;
  font-size: clamp(2.25rem, 4.1vw, 4.75rem);
  line-height: 1.02;
}

.section-lead {
  max-width: 42rem;
  font-size: clamp(1rem, .55vw + .88rem, 1.25rem);
}

.narrow-copy {
  position: relative;
  z-index: 2;
  width: min(100%, var(--content-reading));
}

.section-with-background {
  position: relative;
  min-height: clamp(650px, 78svh, 820px);
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--sc-ivory);
  background: #070708;
}

.section-bg,
.section-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-bg {
  z-index: -3;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}

.section-overlay { z-index: -2; }

.section-content-layer {
  position: relative;
  z-index: 1;
}

.section-overlay-dark {
  background:
    linear-gradient(90deg, rgba(6,6,8,.96) 0%, rgba(6,6,8,.86) 49%, rgba(6,6,8,.45) 76%, rgba(6,6,8,.62) 100%),
    linear-gradient(180deg, rgba(6,6,8,.25), rgba(6,6,8,.74));
}

.section-overlay-deep {
  background:
    radial-gradient(circle at 76% 48%, rgba(7,7,9,.14), rgba(7,7,9,.62) 44%, rgba(7,7,9,.96) 82%),
    linear-gradient(90deg, rgba(7,7,9,.96), rgba(7,7,9,.75) 55%, rgba(7,7,9,.55));
}

.method-bg {
  background-image: url('../images/transformation-pierre-cristal.jpg');
  background-position: 68% center;
}

.method-copy {
  padding: clamp(1.25rem, 2.6vw, 2.5rem) 0;
}

.method-flow {
  max-width: 1080px;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  gap: .8rem;
}

.method-flow::before { opacity: .42; }

.method-flow li {
  padding: 1.05rem .8rem 1.2rem;
  border-radius: 28px;
  background: rgba(7,7,9,.43);
  backdrop-filter: blur(12px);
}

.method-flow p { font-size: .84rem; }

/* Hero plus contenu et mieux recentré */
.hero-layout-centered {
  max-width: 1180px;
}

.hero-copy { max-width: 780px; }

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3.6rem, 7vw, 7.25rem);
  line-height: .88;
}

.hero-lead { max-width: 47rem; }

/* Les cartes utilisent maintenant les photographies comme backgrounds */
.audience-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
  margin-inline: auto;
  gap: clamp(.85rem, 1.5vw, 1.25rem);
}

.audience-bubble {
  grid-column: auto !important;
  min-height: 330px !important;
  border-radius: 46px;
  background-image: var(--bubble-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 55px rgba(53,39,26,.14);
}

.audience-bubble:nth-child(2),
.audience-bubble:nth-child(5) { background-position: center 28%; }

.audience-bubble::after {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.03) 20%, rgba(0,0,0,.78) 100%),
    linear-gradient(110deg, rgba(0,0,0,.22), transparent 58%);
}

.audience-bubble > div,
.bubble-index,
.bubble-arrow { z-index: 2; }

.audience-bubble h3 { font-size: clamp(1.45rem, 1.75vw, 2rem); }
.audience-bubble p { font-size: .84rem; }

.audience-bubble:hover,
.audience-bubble:focus-visible {
  transform: translateY(-5px);
  background-size: 106%;
}

/* Services : le prisme devient l'arrière-plan de toute la section */
.services-bg {
  background-image: url('../images/prisme-lumiere-couleurs.jpg');
  background-position: center right;
}

.heading-centered {
  max-width: 840px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
}

.heading-centered .section-title,
.heading-centered .section-lead { margin-inline: auto; }

.service-list-centered {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 980px);
  margin-inline: auto;
  gap: .75rem;
}

.service-pill {
  min-height: 120px;
  border-radius: 34px;
  padding: 1.05rem 1.1rem;
  background: rgba(8,8,10,.62);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.06);
}

.service-pill:hover { transform: translateY(-4px); }
.service-pill h3 { font-size: clamp(1.15rem, 1.4vw, 1.55rem); }
.service-pill p { font-size: .8rem; }

/* Studios : photographie principale utilisée comme décor, plus de galerie géante */
.studios-bg {
  background-image: url('../images/studio-son-regie-vue-large.jpg');
  background-position: center;
}

.section-overlay-studio {
  background:
    linear-gradient(90deg, rgba(7,7,8,.94) 0%, rgba(7,7,8,.79) 52%, rgba(7,7,8,.40) 100%),
    linear-gradient(180deg, rgba(7,7,8,.28), rgba(7,7,8,.76));
}

.studio-copy { margin-bottom: 2rem; }

.studio-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1000px);
  gap: .8rem;
  margin-bottom: 1.5rem;
}

.studio-offers article {
  padding: 1.25rem;
  border-radius: 32px;
  background: rgba(7,7,9,.58);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
}

.studio-offers span {
  color: var(--sc-gold-light);
  font-size: .7rem;
  letter-spacing: .12em;
}

.studio-offers h3 {
  margin: .55rem 0 .3rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
}

.studio-offers p {
  margin: 0;
  color: rgba(245,240,230,.65);
  font-size: .84rem;
}

.studios-section .studio-facts { max-width: 980px; }
.studios-section .studio-facts span {
  color: rgba(245,240,230,.76);
  background: rgba(7,7,9,.48);
  backdrop-filter: blur(10px);
}

/* Vox Chroma : portrait en arrière-plan */
.vox-bg {
  background-image: url('../images/vox-chroma-bg.png');
  background-position: 72% center;
}

.section-overlay-vox {
  background:
    linear-gradient(90deg, rgba(8,7,10,.96) 0%, rgba(8,7,10,.83) 46%, rgba(8,7,10,.38) 78%, rgba(8,7,10,.55) 100%),
    linear-gradient(180deg, rgba(75,0,16,.10), rgba(7,7,9,.76));
}

.vox-copy {
  padding: clamp(1.5rem, 3vw, 2.7rem);
  border-radius: 48px;
  background: rgba(8,8,10,.48);
  backdrop-filter: blur(15px);
}

/* Événements : performance utilisée comme fond */
.events-bg {
  background-image: url('../images/event001.jpg');
  background-position: 32% 38%;
}

.section-overlay-events {
  background:
    linear-gradient(90deg, rgba(7,7,9,.48) 0%, rgba(7,7,9,.35) 35%, rgba(7,7,9,.88) 66%, rgba(7,7,9,.97) 100%),
    linear-gradient(180deg, rgba(7,7,9,.18), rgba(7,7,9,.70));
}

.events-section .event-copy {
  margin-left: auto;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border-radius: 48px;
  background: rgba(7,7,9,.50);
  backdrop-filter: blur(15px);
}

/* Galerie plus compacte */
.gallery-mosaic {
  width: min(100%, 1040px);
  margin-inline: auto;
  grid-auto-rows: 155px;
  gap: .8rem;
}

.gallery-filters {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.gallery-item {
  border-radius: 34px !important;
  box-shadow: 0 14px 40px rgba(54,40,25,.13);
}

.gallery-item:nth-child(2n) { border-radius: 46px 28px 46px 28px !important; }
.gallery-item:nth-child(3n) { border-radius: 28px 46px 28px 46px !important; }

/* À propos : image en CSS background, sans balise image encadrée */
.about-bg {
  background-image: url('../images/about-bg-nouveau.png');
  background-position: center;
}

.about-cloud {
  width: min(760px, 100%);
  padding: clamp(1.5rem, 3vw, 2.8rem);
  border-radius: 48px;
}

.values-flow article { border-radius: 26px; }

/* Contact et footer recentrés */
.contact-section .site-container,
.site-footer .site-container { max-width: 1180px; }

.contact-intro,
.contact-form { border-radius: 42px; }

@media (max-width: 1199.98px) {
  .site-container {
    width: calc(100% - clamp(2rem, 5vw, 4rem));
  }

  .service-list-centered { grid-template-columns: 1fr; }
  .studio-offers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  .site-container {
    width: calc(100% - 1.5rem);
    padding-inline: .25rem;
  }

  .screen { padding-block: 5rem; }
  .section-with-background { min-height: 640px; }
  .section-title { font-size: clamp(2.15rem, 10vw, 3.55rem); }

  .hero h1 { font-size: clamp(3.15rem, 16vw, 5.2rem); }

  .audience-flow,
  .studio-offers { grid-template-columns: 1fr; }

  .audience-bubble { min-height: 300px !important; }

  .method-flow { grid-template-columns: 1fr; }
  .method-flow li { grid-template-columns: auto 1fr; text-align: left; }

  .service-pill { min-height: auto; }

  .method-bg { background-position: 63% center; }
  .services-bg { background-position: 68% center; }
  .studios-bg { background-position: 58% center; }
  .vox-bg { background-position: 62% center; }
  .events-bg { background-position: 36% center; }

  .section-overlay-dark,
  .section-overlay-deep,
  .section-overlay-studio,
  .section-overlay-vox,
  .section-overlay-events {
    background: rgba(7,7,9,.78);
  }

  .gallery-mosaic { grid-auto-rows: 145px; }
}


/* ==========================================================
   V4 — IMAGES D’ARRIÈRE-PLAN SANS FILTRE NI SURCOUCHE
   Les photographies gardent leurs couleurs d’origine :
   aucun voile noir/gris, gradient, filtre, mélange ou flou.
   ========================================================== */

.section-with-background,
.about-section {
  background-color: transparent;
}

.section-bg {
  transform: none;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  background-color: transparent;
}

.section-overlay,
.section-overlay-dark,
.section-overlay-deep,
.section-overlay-studio,
.section-overlay-vox,
.section-overlay-events,
.about-section::after {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
  filter: none !important;
  backdrop-filter: none !important;
}

/* Aucun voile sur les cartes dont la photo est utilisée en background. */
.audience-bubble::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* Les blocs de contenu restent transparents pour ne pas recolorer les images. */
.method-flow li,
.service-pill,
.studio-offers article,
.studios-section .studio-facts span,
.vox-copy,
.events-section .event-copy,
.about-cloud,
.values-flow article {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* Lisibilité obtenue uniquement par l’ombre du texte, sans modifier la photo. */
.section-with-background .eyebrow,
.section-with-background .section-title,
.section-with-background .section-lead,
.section-with-background h3,
.section-with-background p,
.section-with-background li,
.section-with-background span,
.about-section .eyebrow,
.about-section .section-title,
.about-section .section-lead,
.about-section h3,
.about-section p,
.about-section span,
.audience-bubble h3,
.audience-bubble p,
.audience-bubble .bubble-index,
.audience-bubble .bubble-arrow {
  text-shadow:
    0 2px 3px rgba(0,0,0,.92),
    0 6px 18px rgba(0,0,0,.82),
    0 0 2px rgba(0,0,0,.95);
}

.audience-bubble .bubble-index,
.audience-bubble .bubble-arrow {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 0 !important;
}

/* Conserve les photographies inchangées au survol. */
.audience-bubble:hover,
.audience-bubble:focus-visible {
  background-size: cover;
}

/* Mobile : ne jamais réintroduire un voile opaque. */
@media (max-width: 767.98px) {
  .section-overlay-dark,
  .section-overlay-deep,
  .section-overlay-studio,
  .section-overlay-vox,
  .section-overlay-events,
  .about-section::after {
    display: none !important;
    background: none !important;
  }
}


/* ==========================================================
   V8 — PREMIER ÉCRAN : VIDÉO 006.MP4 SEULE, SANS SURCOUCHE
   ========================================================== */
.hero-video-only {
  position: relative;
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  isolation: auto;
  background: #000;
  scroll-margin-top: 0;
}

.hero-full-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  background: #000;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  pointer-events: none;
}

/* Aucun menu, aucune barre de progression et aucun effet au-dessus
   de la vidéo. Ils apparaissent uniquement après le premier écran. */
html.js body:not(.is-past-hero) .site-nav,
html.js body:not(.is-past-hero) .scroll-progress {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-110%);
}

.site-nav,
.scroll-progress {
  transition:
    opacity var(--transition-medium),
    visibility var(--transition-medium),
    transform var(--transition-medium),
    background var(--transition-medium),
    box-shadow var(--transition-medium),
    backdrop-filter var(--transition-medium);
}

body.is-past-hero .site-nav,
body.is-past-hero .scroll-progress {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .hero-video-only {
    height: 100svh;
    min-height: 100svh;
    padding: 0;
  }
}

/* ==========================================================
   V9 — VIDÉO WEBM PILOTÉE PAR LE SCROLL DANS LA MÉTHODE
   Fichier : assets/videos/sublime-alpha.webm
   ========================================================== */
.method-scroll-section {
  --method-track-height: 235svh;
  position: relative;
  min-height: 0;
  padding: 0 0 clamp(6rem, 9vw, 9rem);
  overflow: visible;
  background: var(--sc-black, #070708);
  isolation: isolate;
}

.method-scroll-track {
  position: relative;
  height: var(--method-track-height);
}

.method-scroll-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.method-scroll-video-layer {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: max(2vw, calc((100vw - var(--content-max)) / 2));
  width: min(46vw, 640px);
  height: min(92svh, 940px);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: transparent;
}

.method-scroll-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  opacity: 0;
  border: 0;
  filter: none;
  mix-blend-mode: normal;
  transform: translateZ(0);
  will-change: contents;
  transition: opacity 240ms ease;
}

.method-scroll-video.is-ready {
  opacity: 1;
}

.method-scroll-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  align-items: center;
  min-height: 100%;
  padding-top: clamp(5.5rem, 8vw, 7rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.method-scroll-copy {
  grid-column: 1;
  max-width: 720px;
  padding-right: clamp(1rem, 4vw, 4.5rem);
}

.method-scroll-copy .section-title {
  max-width: 14ch;
}

.method-steps-zone {
  position: relative;
  z-index: 3;
  padding-top: clamp(4rem, 7vw, 7rem);
}

.method-steps-zone .method-flow {
  margin-top: 0;
}

.method-scroll-section.scroll-video-error .method-scroll-video-layer {
  display: none;
}

/* La vidéo est décorative : aucun fond, voile, filtre ou colorimétrie ajouté. */
.method-scroll-video-layer,
.method-scroll-video-layer::before,
.method-scroll-video-layer::after {
  background: transparent !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 991.98px) {
  .method-scroll-section {
    --method-track-height: 220svh;
  }

  .method-scroll-content {
    grid-template-columns: minmax(0, 1fr) minmax(220px, .42fr);
  }

  .method-scroll-video-layer {
    right: -5vw;
    width: min(47vw, 500px);
    height: min(78svh, 780px);
  }

  .method-scroll-copy {
    padding-right: clamp(1rem, 3vw, 2.5rem);
  }
}

@media (max-width: 767.98px) {
  .method-scroll-section {
    --method-track-height: 205svh;
  }

  .method-scroll-sticky {
    min-height: 100svh;
    align-items: flex-start;
  }

  .method-scroll-content {
    display: block;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .method-scroll-copy {
    position: relative;
    z-index: 2;
    width: min(88%, 620px);
    max-width: none;
    padding-right: 0;
  }

  .method-scroll-copy .section-title {
    max-width: 13ch;
    font-size: clamp(2.25rem, 10vw, 3.65rem);
  }

  .method-scroll-copy .section-lead,
  .method-scroll-copy .body-copy,
  .method-scroll-copy .signature-quote {
    max-width: 34rem;
  }

  .method-scroll-video-layer {
    top: auto;
    right: -18vw;
    bottom: -5svh;
    width: min(72vw, 470px);
    height: min(64svh, 620px);
    transform: none;
    justify-content: flex-end;
  }

  .method-steps-zone {
    padding-top: 4rem;
  }
}

@media (max-width: 479.98px) {
  .method-scroll-section {
    --method-track-height: 220svh;
  }

  .method-scroll-copy {
    width: 94%;
  }

  .method-scroll-copy .body-copy {
    font-size: .95rem;
  }

  .method-scroll-copy .signature-quote {
    font-size: 1rem;
  }

  .method-scroll-video-layer {
    right: -27vw;
    width: 84vw;
    height: 58svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-scroll-track {
    height: 100svh;
  }

  .method-scroll-video {
    transition: none;
  }
}

/* ==========================================================
   V10 — IDENTITÉ VISUELLE DU BANDEAU ET MÉTHODE RECENTRÉE
   Médias : logoinit.png, logotitre.png, bgspace001.png
   ========================================================== */

/* Le nouveau logo du bandeau remplace le pictogramme SVG et le titre texte. */
:root {
  --nav-height: 92px;
}

.navbar-brand.brand-images,
.mobile-brand.brand-images,
.footer-brand.brand-images {
  display: inline-flex;
  align-items: center;
  gap: clamp(.55rem, 1vw, .9rem);
  line-height: 1;
}

.navbar-brand .brand-mark {
  display: block;
  width: auto;
  height: 60px;
  max-width: 104px;
  object-fit: contain;
  filter: none;
}

.navbar-brand .brand-title-image {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
  filter: none;
}

.mobile-brand .brand-mark {
  width: auto;
  height: 52px;
  max-width: 90px;
  object-fit: contain;
  filter: none;
}

.mobile-brand .brand-title-image {
  width: min(180px, 50vw);
  height: auto;
  object-fit: contain;
}

.footer-brand .footer-brand-mark {
  width: auto;
  height: 42px;
  max-width: 74px;
  object-fit: contain;
  filter: none;
}

.footer-brand .footer-brand-title {
  width: 170px;
  height: auto;
  object-fit: contain;
}

/* La vidéo d'ouverture utilise le média fourni, sans texte ni effet. */
.hero-video-only,
.hero-full-video {
  background: #000;
}

/* Le fond spatial est affiché tel quel, sans filtre, voile ou colorimétrie. */
.method-scroll-sticky {
  background-image: url('../images/bgspace001.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #020613;
}

.method-scroll-sticky::before,
.method-scroll-sticky::after {
  content: none !important;
  display: none !important;
}

/* Trois colonnes nettes : titre à gauche, vidéo au centre, explication à droite. */
.method-scroll-content {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 350px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.6vw, 4.75rem);
  align-items: center;
  padding-top: clamp(6rem, 9vw, 8rem);
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

.method-copy-left {
  grid-column: 1;
  width: 100%;
  max-width: 520px;
  padding: 0;
  justify-self: end;
}

.method-copy-left .section-title {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.3vw, 5.35rem);
  line-height: .98;
}

.method-copy-right {
  grid-column: 3;
  width: 100%;
  max-width: 470px;
  padding: 0;
  justify-self: start;
}

.method-copy-right .section-lead,
.method-copy-right .body-copy,
.method-copy-right .signature-quote {
  max-width: 100%;
}

.method-copy-right .signature-quote {
  margin-top: clamp(1.4rem, 2.4vw, 2.3rem);
}

/* La vidéo transparente reste centrale, plus petite et ne recouvre aucun texte. */
.method-scroll-video-layer {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  grid-column: 2;
  grid-row: 1;
  width: min(25vw, 340px);
  height: min(62svh, 600px);
  min-height: 400px;
  transform: none;
  justify-self: center;
  align-self: center;
  overflow: visible;
}

.method-scroll-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* La suite de la méthode reste lisible sous l'écran sticky. */
.method-steps-zone {
  background: var(--sc-black, #070708);
  padding-bottom: clamp(1rem, 3vw, 3rem);
}

@media (max-width: 1199.98px) {
  :root { --nav-height: 86px; }

  .navbar-brand .brand-mark {
    height: 54px;
    max-width: 94px;
  }

  .navbar-brand .brand-title-image {
    width: 178px;
  }

  .method-scroll-content {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px) minmax(0, 1fr);
    gap: clamp(1.2rem, 2.5vw, 2.5rem);
  }

  .method-scroll-video-layer {
    width: min(26vw, 300px);
    height: min(58svh, 540px);
  }

  .method-copy-left .section-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
  }
}

@media (max-width: 991.98px) {
  .method-scroll-content {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 270px) minmax(0, 1fr);
    gap: 1.25rem;
  }

  .method-scroll-video-layer {
    right: auto;
    width: min(27vw, 270px);
    height: min(53svh, 500px);
  }

  .method-copy-left .section-title {
    max-width: 11ch;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
  }

  .method-copy-right {
    font-size: .94rem;
  }
}

@media (max-width: 767.98px) {
  :root { --nav-height: 78px; }

  .mobile-brand .brand-mark {
    height: 44px;
    max-width: 76px;
  }

  .mobile-brand .brand-title-image {
    width: min(148px, 43vw);
  }

  .method-scroll-sticky {
    align-items: flex-start;
    overflow-y: auto;
    background-position: 42% center;
  }

  .method-scroll-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    min-height: 100svh;
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  .method-copy-left,
  .method-scroll-video-layer,
  .method-copy-right {
    grid-column: 1;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .method-copy-left {
    grid-row: 1;
  }

  .method-copy-left .section-title {
    max-width: 14ch;
    font-size: clamp(2.15rem, 9.4vw, 3.65rem);
  }

  .method-scroll-video-layer {
    position: relative;
    grid-row: 2;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(54vw, 280px);
    height: min(45svh, 430px);
    min-height: 280px;
    margin-inline: auto;
    transform: none;
    justify-self: center;
  }

  .method-copy-right {
    grid-row: 3;
    max-width: 36rem;
  }
}

@media (max-width: 479.98px) {
  .method-scroll-video-layer {
    width: min(61vw, 250px);
    height: min(40svh, 380px);
  }

  .footer-brand .footer-brand-title {
    width: 145px;
  }
}

/* Ajustement mobile V10 : pas de zone de défilement interne dans la section. */
@media (max-width: 767.98px) {
  .method-scroll-sticky {
    overflow: hidden;
  }

  .method-scroll-content {
    gap: 1rem;
    padding-top: 5.5rem;
    padding-bottom: 1.25rem;
  }

  .method-scroll-video-layer {
    width: min(42vw, 210px);
    height: min(30svh, 285px);
    min-height: 210px;
  }

  .method-copy-right .section-lead {
    font-size: clamp(1rem, 4.1vw, 1.12rem);
    line-height: 1.45;
  }

  .method-copy-right .body-copy,
  .method-copy-right .signature-quote {
    font-size: .9rem;
    line-height: 1.45;
  }

  .method-copy-right .signature-quote {
    margin-top: .9rem;
  }
}


/* ==========================================================
   V11 — RÉGLAGES DE LA VIDÉO WEBM CENTRALISÉS DANS LE HTML

   Les valeurs modifiables sont directement dans index.html,
   sur .method-scroll-video-layer, via des variables CSS inline.
   Ce bloc donne la priorité à ces réglages sur tous les breakpoints.
   ========================================================== */
.method-scroll-video-layer {
  width: var(--video-width, clamp(200px, 25vw, 340px)) !important;
  height: auto !important;
  min-height: 0 !important;
  max-width: calc(100vw - 2rem);
  max-height: var(--video-max-height, 62svh);
  aspect-ratio: var(--video-aspect-ratio, 9 / 16);
  transform: translate(
    var(--video-x, 0px),
    var(--video-y, 0px)
  ) !important;
  justify-self: var(--video-horizontal-align, center) !important;
  align-self: var(--video-vertical-align, center) !important;
}

.method-scroll-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: var(--video-object-position, center center) !important;
  transform: scale(var(--video-scale, 1));
  transform-origin: center center;
}

@media (max-width: 767.98px) {
  .method-scroll-video-layer {
    margin-inline: auto;
  }
}

/* ============================================================
   V12 — SECTION STUDIOS : VIDÉO WEBM EN BACKGROUND PILOTÉE
   PAR LE SCROLL. Les réglages rapides restent dans index.html.
============================================================= */
.studio-scroll-section {
  position: relative;
  min-height: var(--studio-track-height, 255svh);
  padding: 0;
  background: #050505;
  color: #fff;
}

.studio-scroll-track {
  height: var(--studio-track-height, 255svh);
  position: relative;
}

.studio-scroll-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.studio-scroll-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--studio-video-position, center center);
  transform: scale(var(--studio-video-scale, 1));
  transform-origin: center;
  opacity: 0;
  background: transparent;
  filter: none;
  transition: opacity 220ms ease;
}

.studio-scroll-video.is-ready {
  opacity: 1;
}

.studio-scroll-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vh, 3rem);
  padding-top: clamp(6.5rem, 12vh, 9rem);
  padding-bottom: clamp(2.25rem, 6vh, 4.5rem);
  pointer-events: none;
}

.studio-scroll-content a,
.studio-scroll-content button {
  pointer-events: auto;
}

.studio-scroll-section .studio-copy {
  max-width: min(700px, 74vw);
  margin: 0;
}

.studio-scroll-section .eyebrow,
.studio-scroll-section .section-title,
.studio-scroll-section .section-lead,
.studio-scroll-section .studio-offers h3,
.studio-scroll-section .studio-offers p,
.studio-scroll-section .studio-offers span,
.studio-scroll-section .studio-facts span {
  color: #fff;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.98),
    0 4px 18px rgba(0, 0, 0, 0.96),
    0 0 34px rgba(0, 0, 0, 0.78);
}

.studio-scroll-section .section-title {
  max-width: 12ch;
}

.studio-offers-on-video {
  display: grid;
  width: min(1080px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-self: center;
}

.studio-offers-on-video article {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.studio-offers-on-video article:nth-child(2) {
  text-align: center;
}

.studio-offers-on-video article:nth-child(3) {
  text-align: right;
}

.studio-offers-on-video article > span {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.studio-offers-on-video h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.25rem, 2.1vw, 2.1rem);
}

.studio-offers-on-video p {
  max-width: 26ch;
  margin-bottom: 0;
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
}

.studio-offers-on-video article:nth-child(2) p {
  margin-inline: auto;
}

.studio-offers-on-video article:nth-child(3) p {
  margin-left: auto;
}

.studio-actions-on-video {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.studio-scroll-section .studio-facts {
  display: flex;
  max-width: 850px;
  flex-wrap: wrap;
  gap: 0.45rem 1.25rem;
}

.studio-scroll-section .studio-facts span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.82rem;
}

.studio-scroll-section.scroll-video-error .studio-scroll-video {
  display: none;
}

.studio-scroll-section.scroll-video-error .studio-scroll-sticky {
  background: url('../images/studio-son-regie-vue-large.jpg') center / cover no-repeat;
}

@media (max-width: 991.98px) {
  .studio-scroll-section {
    --studio-track-height: 230svh;
  }

  .studio-scroll-content {
    padding-top: 7rem;
  }

  .studio-scroll-section .studio-copy {
    max-width: min(620px, 86vw);
  }

  .studio-offers-on-video {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-self: stretch;
  }

  .studio-offers-on-video article,
  .studio-offers-on-video article:nth-child(2),
  .studio-offers-on-video article:nth-child(3) {
    max-width: 480px;
    text-align: left;
  }

  .studio-offers-on-video article:nth-child(2) {
    margin-left: auto;
  }

  .studio-offers-on-video article:nth-child(2) p,
  .studio-offers-on-video article:nth-child(3) p {
    margin-inline: 0;
  }

  .studio-offers-on-video article:nth-child(3) {
    margin-left: clamp(0rem, 9vw, 5rem);
  }

  .studio-actions-on-video {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .studio-scroll-section {
    --studio-track-height: 215svh;
  }

  .studio-scroll-video {
    object-position: var(--studio-video-position-mobile, center center);
  }

  .studio-scroll-content {
    gap: 1.25rem;
    padding-top: 6rem;
    padding-bottom: 1.75rem;
  }

  .studio-scroll-section .studio-copy {
    max-width: 100%;
  }

  .studio-scroll-section .section-title {
    max-width: 13ch;
  }

  .studio-offers-on-video {
    gap: 0.8rem;
  }

  .studio-offers-on-video article,
  .studio-offers-on-video article:nth-child(2),
  .studio-offers-on-video article:nth-child(3) {
    max-width: 86%;
    margin: 0;
  }

  .studio-offers-on-video article:nth-child(2) {
    margin-left: auto;
  }

  .studio-offers-on-video article:nth-child(3) {
    margin-left: 8%;
  }

  .studio-scroll-section .studio-facts {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-scroll-section {
    min-height: 100svh;
  }

  .studio-scroll-track {
    height: 100svh;
  }

  .studio-scroll-video {
    opacity: 1;
  }
}

/* ========================================================================== 
   SECTION 03 — PROFILS VISITEURS INTERACTIFS
   ========================================================================== */
.profile-selector {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: stretch;
  margin-top: clamp(2rem, 4vw, 4rem);
}

.profile-selector__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-selector__button {
  width: 100%;
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) 1.5rem;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0.25rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: padding-left 280ms ease, color 280ms ease, background-color 280ms ease;
}

.profile-selector__button:hover,
.profile-selector__button:focus-visible,
.profile-selector__button[aria-selected="true"] {
  padding-left: 0.75rem;
  color: var(--color-gold-light, #e9d39b);
  background: linear-gradient(90deg, rgba(205, 174, 105, 0.1), transparent 80%);
}

.profile-selector__button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.profile-selector__number {
  align-self: start;
  padding-top: 0.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  opacity: 0.62;
}

.profile-selector__label {
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 550;
  line-height: 1.25;
}

.profile-selector__arrow {
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.profile-selector__button:hover .profile-selector__arrow,
.profile-selector__button:focus-visible .profile-selector__arrow,
.profile-selector__button[aria-selected="true"] .profile-selector__arrow {
  opacity: 1;
  transform: translateX(0);
}

.profile-selector__content {
  position: relative;
  min-height: clamp(560px, 67vh, 720px);
}

.profile-panel {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(1.65rem, 3.3vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(1.5rem, 3vw, 3rem);
  background-image: var(--profile-image, url('../images/intro009.png'));
  background-position: var(--profile-position, center center);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}



.profile-panel__intro,
.profile-panel__details {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.92), 0 1px 3px rgba(0, 0, 0, 0.96);
}

.profile-panel[hidden] {
  display: none;
}

.profile-panel.is-entering {
  animation: profilePanelIn 520ms cubic-bezier(.2,.75,.25,1) both;
}

@keyframes profilePanelIn {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: translateX(0); }
}

.profile-panel__intro {
  max-width: 48rem;
}

.profile-panel__kicker {
  margin: 0 0 0.75rem;
  color: var(--color-gold-light, #e9d39b);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.profile-panel h3 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.98;
}

.profile-panel__lead {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.6;
}

.profile-panel__details {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
  margin-top: 3rem;
}

.profile-panel__column {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.profile-panel__column h4 {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-light, #e9d39b);
}

.profile-panel__column ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-panel__column li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.94rem;
  line-height: 1.42;
}

.profile-panel__column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.35rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.profile-panel__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

@media (max-width: 991.98px) {
  .profile-selector {
    grid-template-columns: 1fr;
  }

  .profile-selector__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
    gap: 0.65rem;
  }

  .profile-selector__button {
    min-height: 92px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.2rem;
  }

  .profile-selector__button:hover,
  .profile-selector__button:focus-visible,
  .profile-selector__button[aria-selected="true"] {
    padding-left: 1rem;
  }

  .profile-selector__content {
    min-height: 650px;
  }
}

@media (max-width: 767.98px) {
  .profile-selector__nav {
    grid-template-columns: 1fr;
  }

  .profile-selector__button {
    min-height: auto;
  }

  .profile-selector__content {
    min-height: 0;
  }

  .profile-panel {
    min-height: 720px;
  }

  .profile-panel__details {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-panel.is-entering { animation: none; }
  .profile-selector__button,
  .profile-selector__arrow { transition: none; }
}


/* ============================================================
   GALERIE V18 — CARROUSEL AUTOMATIQUE + MINIATURES
   Les dimensions principales peuvent être modifiées directement
   dans le style="..." de [data-realisation-carousel] dans index.html.
============================================================= */
.realisation-carousel {
  width: min(100%, 1120px);
  margin: clamp(1.5rem, 4vw, 3rem) auto 0;
  --carousel-interval: 4500ms;
  --gallery-fit: contain;
  --gallery-height: clamp(360px, 58vw, 700px);
}

.realisation-viewport {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  height: var(--gallery-height);
  border-radius: clamp(24px, 4vw, 52px);
  background: #050506;
  box-shadow: 0 24px 70px rgba(20, 17, 13, .18);
  isolation: isolate;
  touch-action: pan-y;
}

.realisation-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 820ms cubic-bezier(.22, .78, .2, 1);
  will-change: transform;
}

.realisation-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050506;
}

.realisation-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: var(--gallery-fit, contain);
  object-position: center;
  opacity: .55;
  transform: scale(.985);
  transition: opacity 700ms ease, transform 1100ms cubic-bezier(.16, .8, .2, 1);
}

.realisation-slide.is-active img {
  opacity: 1;
  transform: scale(1);
}

.realisation-caption {
  position: absolute;
  z-index: 2;
  left: clamp(1rem, 3vw, 2.2rem);
  right: clamp(1rem, 3vw, 2.2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(.9rem, 2vw, 1.35rem) clamp(1rem, 2.2vw, 1.6rem);
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 6, 8, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease 240ms, transform 620ms cubic-bezier(.16, .8, .2, 1) 240ms;
}

.realisation-slide.is-active .realisation-caption {
  opacity: 1;
  transform: translateY(0);
}

.realisation-caption strong {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.1;
}

.realisation-caption span {
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.68rem, 1.2vw, .82rem);
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.realisation-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(44px, 5vw, 60px);
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  color: #fff;
  background: rgba(7, 7, 9, .46);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.realisation-arrow:hover,
.realisation-arrow:focus-visible {
  border-color: rgba(255, 255, 255, .75);
  background: rgba(7, 7, 9, .76);
  outline: none;
  transform: translateY(-50%) scale(1.06);
}

.realisation-arrow-prev { left: clamp(.7rem, 2vw, 1.4rem); }
.realisation-arrow-next { right: clamp(.7rem, 2vw, 1.4rem); }

.realisation-tools {
  position: absolute;
  z-index: 5;
  top: clamp(.7rem, 2vw, 1.3rem);
  right: clamp(.7rem, 2vw, 1.3rem);
  display: flex;
  align-items: center;
  gap: .55rem;
}

.realisation-counter,
.realisation-pause {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 7, 9, .56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.realisation-counter {
  padding: .6rem .85rem;
  font-size: .78rem;
  letter-spacing: .08em;
}

.realisation-pause {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  padding: 0;
}

.realisation-pause:hover,
.realisation-pause:focus-visible {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(7, 7, 9, .82);
  outline: none;
}

.realisation-timer {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.realisation-timer span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--sc-gold);
  transform: scaleX(0);
  transform-origin: left center;
}

.realisation-timer span.is-running {
  animation: realisationTimer var(--carousel-interval) linear forwards;
}

@keyframes realisationTimer {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.realisation-thumbnails {
  display: flex;
  gap: clamp(.55rem, 1.2vw, .9rem);
  margin-top: clamp(.9rem, 2vw, 1.35rem);
  padding: .25rem .1rem .65rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.realisation-thumbnail {
  position: relative;
  flex: 0 0 clamp(92px, 13vw, 146px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: clamp(14px, 2vw, 24px);
  background: #08080a;
  opacity: .58;
  scroll-snap-align: center;
  transition: opacity 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.realisation-thumbnail span {
  position: absolute;
  right: .45rem;
  bottom: .35rem;
  display: grid;
  place-items: center;
  min-width: 2rem;
  min-height: 1.65rem;
  padding: 0 .4rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 5, 6, .72);
  font-size: .67rem;
  letter-spacing: .08em;
}

.realisation-thumbnail:hover,
.realisation-thumbnail:focus-visible,
.realisation-thumbnail.is-active {
  opacity: 1;
  border-color: var(--sc-gold);
  outline: none;
  transform: translateY(-3px);
}

@media (max-width: 767.98px) {
  .realisation-carousel { --gallery-height: clamp(330px, 112vw, 560px); }
  .realisation-viewport { border-radius: 26px; }
  .realisation-caption {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }
  .realisation-caption span { text-align: left; }
  .realisation-arrow {
    top: auto;
    bottom: 5.2rem;
    transform: none;
  }
  .realisation-arrow:hover,
  .realisation-arrow:focus-visible { transform: scale(1.05); }
  .realisation-arrow-prev { left: .8rem; }
  .realisation-arrow-next { right: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .realisation-track,
  .realisation-slide img,
  .realisation-caption,
  .realisation-thumbnail,
  .realisation-arrow { transition-duration: 1ms !important; }
  .realisation-timer span { animation: none !important; }
}

/* ============================================================
   GALERIE V19 — PLEIN ÉCRAN + DÉCLENCHEMENT À L'ARRIVÉE
   - Le diaporama ne démarre que lorsque la section est visible.
   - La molette passe progressivement d'une image à l'autre.
   - Les valeurs de sensibilité restent modifiables dans index.html.
============================================================= */
.gallery-section {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 680px;
  padding: 0 !important;
  overflow: hidden;
  color: #fff;
  background: #050506;
  scroll-margin-top: 0;
}

.gallery-section > .site-container {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

.gallery-section .section-heading {
  position: absolute;
  z-index: 20;
  top: max(calc(var(--nav-height, 76px) + 1.15rem), 2rem);
  left: clamp(1.25rem, 5vw, 5.5rem);
  right: clamp(5.5rem, 15vw, 15rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 32rem);
  align-items: end;
  gap: clamp(1rem, 4vw, 4rem);
  margin: 0;
  pointer-events: none;
  color: #fff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .9);
}

.gallery-section .section-heading .eyebrow,
.gallery-section .section-heading .section-title,
.gallery-section .section-heading .section-lead {
  color: #fff;
}

.gallery-section .section-heading .section-title {
  max-width: 15ch;
  font-size: clamp(2.15rem, 4.3vw, 5.2rem);
}

.gallery-section .section-heading .section-lead {
  justify-self: end;
  max-width: 32rem;
  margin: 0;
  text-align: right;
  color: rgba(255, 255, 255, .88);
}

.gallery-section .realisation-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  --gallery-fit: cover;
}

.gallery-section .realisation-viewport {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  background: #050506;
  box-shadow: none;
  touch-action: pan-y;
}

.gallery-section .realisation-track {
  transition-duration: 1050ms;
  transition-timing-function: cubic-bezier(.2, .72, .18, 1);
}

.gallery-section .realisation-slide img {
  object-fit: var(--gallery-fit, cover);
  object-position: center center;
}

.gallery-section .realisation-caption {
  left: clamp(1.25rem, 5vw, 5.5rem);
  right: auto;
  bottom: clamp(7.7rem, 15vh, 10.5rem);
  width: min(620px, calc(100vw - 2.5rem));
  padding: .9rem 1.25rem;
  background: rgba(5, 5, 7, .58);
  border: 1px solid rgba(255, 255, 255, .16);
}

.gallery-section .realisation-tools {
  top: max(calc(var(--nav-height, 76px) + 1.2rem), 2rem);
  right: clamp(1.2rem, 3vw, 3rem);
}

.gallery-section .realisation-arrow-prev {
  left: clamp(1rem, 2.5vw, 2.5rem);
}

.gallery-section .realisation-arrow-next {
  right: clamp(1rem, 2.5vw, 2.5rem);
}

.gallery-section .realisation-thumbnails {
  position: absolute;
  z-index: 18;
  left: 50%;
  bottom: clamp(1rem, 2.6vh, 2rem);
  width: min(1100px, calc(100% - clamp(2rem, 8vw, 8rem)));
  margin: 0;
  padding: .65rem .75rem .75rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: rgba(5, 5, 7, .48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.gallery-section .realisation-thumbnail {
  flex-basis: clamp(78px, 10vw, 132px);
  border-radius: 16px;
}

.gallery-section .gallery-cta {
  position: absolute;
  z-index: 19;
  right: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(7.2rem, 14vh, 9.5rem);
  margin: 0;
}

.gallery-section .realisation-timer {
  z-index: 25;
}

/* Le timer reste invisible tant que la galerie n'est pas réellement active. */
.gallery-section:not(.is-gallery-active) .realisation-timer span {
  animation: none !important;
  transform: scaleX(0);
}

@media (max-width: 991.98px) {
  .gallery-section {
    min-height: 620px;
  }

  .gallery-section .section-heading {
    top: max(calc(var(--nav-height, 72px) + .75rem), 1.4rem);
    right: 5rem;
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .gallery-section .section-heading .section-lead {
    justify-self: start;
    max-width: 38rem;
    text-align: left;
  }

  .gallery-section .gallery-cta {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .gallery-section {
    height: 100svh;
    min-height: 580px;
  }

  .gallery-section .section-heading {
    left: 1rem;
    right: 4.4rem;
  }

  .gallery-section .section-heading .section-title {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
  }

  .gallery-section .section-heading .section-lead {
    display: none;
  }

  .gallery-section .realisation-caption {
    left: 1rem;
    bottom: 7.2rem;
    width: calc(100% - 2rem);
    border-radius: 20px;
  }

  .gallery-section .realisation-arrow {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .gallery-section .realisation-arrow:hover,
  .gallery-section .realisation-arrow:focus-visible {
    transform: translateY(-50%) scale(1.05);
  }

  .gallery-section .realisation-thumbnails {
    width: calc(100% - 1.25rem);
    bottom: .6rem;
    padding: .5rem;
    border-radius: 20px;
  }

  .gallery-section .realisation-thumbnail {
    flex-basis: 82px;
    border-radius: 12px;
  }
}


/* ============================================================
   V31 — À PROPOS : VIDÉO WEBM EN FOND PILOTÉE PAR LE SCROLL
   Réglages rapides dans index.html via les variables --about-*.
============================================================= */
.about-scroll-section {
  position: relative;
  min-height: var(--about-track-height, 260svh);
  padding: 0;
  background: #050505;
  color: #fff;
}

.about-scroll-track {
  position: relative;
  height: var(--about-track-height, 260svh);
}

.about-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.about-scroll-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--about-video-position, center center);
  transform: scale(var(--about-video-scale, 1));
  transform-origin: center;
  opacity: 0;
  background: transparent;
  filter: none;
  transition: opacity 220ms ease;
}

.about-scroll-video.is-ready {
  opacity: 1;
}

.about-scroll-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  align-items: stretch;
  padding-top: clamp(6.5rem, 12vh, 9rem);
  padding-bottom: clamp(2.25rem, 6vh, 4.5rem);
  pointer-events: none;
}

.about-scroll-content a,
.about-scroll-content button {
  pointer-events: auto;
}

.about-cloud-on-video {
  display: flex;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - clamp(8.75rem, 18vh, 13.5rem));
  margin: 0;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2rem, 6vh, 5rem);
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.about-copy-on-video {
  width: min(760px, 78vw);
}

.about-scroll-section .eyebrow,
.about-scroll-section .section-title,
.about-scroll-section .section-lead,
.about-scroll-section .values-flow h3,
.about-scroll-section .values-flow p,
.about-scroll-section .values-flow span {
  color: #fff;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.98),
    0 4px 18px rgba(0, 0, 0, 0.96),
    0 0 34px rgba(0, 0, 0, 0.78);
}

.about-scroll-section .section-title {
  max-width: 13ch;
}

.values-flow-on-video {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 3.5vw, 4rem);
}

.values-flow-on-video article {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.values-flow-on-video article:nth-child(2),
.values-flow-on-video article:nth-child(3) {
  text-align: center;
}

.values-flow-on-video article:nth-child(4) {
  text-align: right;
}

.values-flow-on-video article > span {
  display: inline-block;
  margin-bottom: .55rem;
  font-size: .78rem;
  letter-spacing: .18em;
}

.values-flow-on-video h3 {
  margin-bottom: .4rem;
  font-size: clamp(1.15rem, 1.7vw, 1.75rem);
}

.values-flow-on-video p {
  max-width: 24ch;
  margin-bottom: 0;
}

.values-flow-on-video article:nth-child(2) p,
.values-flow-on-video article:nth-child(3) p {
  margin-inline: auto;
}

.values-flow-on-video article:nth-child(4) p {
  margin-left: auto;
}

.about-scroll-section.scroll-video-error .about-scroll-video {
  display: none;
}

.about-scroll-section.scroll-video-error .about-scroll-sticky {
  background: url('../images/about-bg-nouveau.png') center / cover no-repeat;
}

@media (max-width: 991.98px) {
  .about-scroll-section {
    --about-track-height: 235svh;
  }

  .about-copy-on-video {
    width: min(680px, 90vw);
  }

  .values-flow-on-video {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2rem;
  }

  .values-flow-on-video article,
  .values-flow-on-video article:nth-child(2),
  .values-flow-on-video article:nth-child(3),
  .values-flow-on-video article:nth-child(4) {
    text-align: left;
  }

  .values-flow-on-video article:nth-child(2) p,
  .values-flow-on-video article:nth-child(3) p,
  .values-flow-on-video article:nth-child(4) p {
    margin-inline: 0;
  }
}

@media (max-width: 767.98px) {
  .about-scroll-section {
    --about-track-height: 220svh;
  }

  .about-scroll-video {
    object-position: var(--about-video-position-mobile, center center);
  }

  .about-scroll-content {
    padding-top: 6rem;
    padding-bottom: 1.75rem;
  }

  .about-cloud-on-video {
    min-height: calc(100svh - 7.75rem);
    gap: 1.5rem;
  }

  .about-copy-on-video {
    width: 100%;
  }

  .values-flow-on-video {
    grid-template-columns: 1fr 1fr;
    gap: .9rem 1.25rem;
  }

  .values-flow-on-video h3 {
    font-size: 1.05rem;
  }

  .values-flow-on-video p {
    font-size: .86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-scroll-section {
    min-height: 100svh;
  }

  .about-scroll-track {
    height: 100svh;
  }

  .about-scroll-video {
    opacity: 1;
  }
}


/* ============================================================
   V32 — NOS SAVOIR-FAIRE : BLACKHOLE.WEBM EN PLEIN ÉCRAN
   PILOTÉE PAR LE SCROLL
   Réglages rapides dans index.html via les variables --services-*.
============================================================= */
.services-scroll-section {
  position: relative;
  min-height: var(--services-track-height, 275svh);
  padding: 0;
  background: #020204;
  color: #fff;
}

.services-scroll-track {
  position: relative;
  height: var(--services-track-height, 275svh);
}

.services-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #020204;
}

.services-scroll-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--services-video-position, center center);
  transform: scale(var(--services-video-scale, 1));
  transform-origin: center;
  opacity: 0;
  background: #020204;
  filter: none;
  transition: opacity 220ms ease;
}

.services-scroll-video.is-ready {
  opacity: 1;
}

.services-scroll-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1rem, 2.6vh, 2.5rem);
  padding-top: clamp(6rem, 10vh, 8rem);
  padding-bottom: clamp(1.25rem, 3.5vh, 3rem);
  pointer-events: none;
}

.services-scroll-content a,
.services-scroll-content button {
  pointer-events: auto;
}

.services-scroll-heading {
  width: min(820px, 100%);
  margin-bottom: 0;
}

.services-scroll-section .eyebrow,
.services-scroll-section .section-title,
.services-scroll-section .section-lead,
.services-scroll-section .service-pill h3,
.services-scroll-section .service-pill p,
.services-scroll-section .service-pill > span {
  color: #fff;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.98),
    0 4px 18px rgba(0, 0, 0, 0.96),
    0 0 34px rgba(0, 0, 0, 0.82);
}

.services-scroll-section .section-title {
  max-width: none;
}

.service-list-on-video {
  display: grid;
  width: min(1120px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.25rem, .8vh, .55rem) clamp(1.25rem, 3vw, 3rem);
}

.service-list-on-video .service-pill {
  min-height: 0;
  grid-template-columns: 40px minmax(0, 1fr) 38px;
  gap: .85rem;
  padding: clamp(.35rem, .8vh, .72rem) 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.service-list-on-video .service-pill:hover {
  transform: translateY(-2px);
  background: transparent !important;
  box-shadow: none !important;
}

.service-list-on-video .service-pill > span {
  width: 34px;
  background: transparent;
  font-size: .72rem;
  letter-spacing: .12em;
}

.service-list-on-video .service-pill h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
}

.service-list-on-video .service-pill p {
  margin-top: .12rem;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(.72rem, .86vw, .84rem);
}

.service-list-on-video .service-pill > a {
  width: 36px;
  color: #050505;
  background: var(--sc-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .28);
}

.service-list-on-video .service-pill:last-child {
  width: min(52%, 540px);
  grid-column: 1 / -1;
  justify-self: center;
}

.services-scroll-section.scroll-video-error .services-scroll-video {
  display: none;
}

.services-scroll-section.scroll-video-error .services-scroll-sticky {
  background: url('../images/hero-trou-noir-cosmique.jpg') center / cover no-repeat;
}

@media (max-width: 991.98px) {
  .services-scroll-section {
    --services-track-height: 250svh;
  }

  .services-scroll-content {
    padding-top: 6.25rem;
  }

  .services-scroll-heading {
    width: min(700px, 92vw);
  }

  .service-list-on-video {
    gap: .15rem 1.25rem;
  }

  .service-list-on-video .service-pill {
    grid-template-columns: 32px minmax(0, 1fr) 34px;
    gap: .65rem;
  }
}

@media (max-width: 767.98px) {
  .services-scroll-section {
    --services-track-height: 230svh;
  }

  .services-scroll-video {
    object-position: var(--services-video-position-mobile, center center);
  }

  .services-scroll-content {
    gap: .65rem;
    padding-top: 5.6rem;
    padding-bottom: .9rem;
  }

  .services-scroll-heading {
    width: 100%;
  }

  .services-scroll-heading .section-lead {
    font-size: .92rem;
  }

  .service-list-on-video {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-list-on-video .service-pill,
  .service-list-on-video .service-pill:last-child {
    width: 100%;
    grid-column: auto;
    padding: .28rem 0;
  }

  .service-list-on-video .service-pill h3 {
    font-size: .98rem;
  }

  .service-list-on-video .service-pill p {
    font-size: .72rem;
  }
}

@media (max-height: 660px) and (max-width: 767.98px) {
  .services-scroll-heading .section-lead,
  .service-list-on-video .service-pill p {
    display: none;
  }

  .service-list-on-video .service-pill {
    padding: .22rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-scroll-section {
    min-height: 100svh;
  }

  .services-scroll-track {
    height: 100svh;
  }

  .services-scroll-video {
    opacity: 1;
  }
}
